diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-04-18 18:42:57 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-04-18 18:42:57 +0000 |
commit | 731017c23843505e08ecdbd623a754bc6bea2a40 (patch) | |
tree | dcfe759c123da2b37c852ddf8eb95734739ae842 /sys/dev/ic/ar5xxx.h | |
parent | 5671b3297c9917eb80761fc0db85a9c6ffab0104 (diff) |
beautify the code by renaming HAL functions with capitalized words (i
always wanted to do that). this breaks HAL compatibility but porting
should be easy, have a look at athvar.h. no functional changes.
Diffstat (limited to 'sys/dev/ic/ar5xxx.h')
-rw-r--r-- | sys/dev/ic/ar5xxx.h | 156 |
1 files changed, 78 insertions, 78 deletions
diff --git a/sys/dev/ic/ar5xxx.h b/sys/dev/ic/ar5xxx.h index af08b56d732..52232c8c625 100644 --- a/sys/dev/ic/ar5xxx.h +++ b/sys/dev/ic/ar5xxx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ar5xxx.h,v 1.18 2005/04/09 00:20:42 reyk Exp $ */ +/* $OpenBSD: ar5xxx.h,v 1.19 2005/04/18 18:42:55 reyk Exp $ */ /* * Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net> @@ -927,141 +927,141 @@ struct ath_desc { #define AR5K_HAL_FUNCTION(_hal, _n, _f) (_hal)->ah_##_f = ar5k_##_n##_##_f #define AR5K_HAL_FUNCTIONS(_t, _n, _a) \ - _t const HAL_RATE_TABLE *(_a _n##_getRateTable)(struct ath_hal *, \ + _t const HAL_RATE_TABLE *(_a _n##_get_rate_table)(struct ath_hal *, \ u_int mode); \ _t void (_a _n##_detach)(struct ath_hal *); \ /* Reset functions */ \ _t HAL_BOOL (_a _n##_reset)(struct ath_hal *, HAL_OPMODE, \ HAL_CHANNEL *, HAL_BOOL change_channel, HAL_STATUS *status); \ - _t void (_a _n##_setPCUConfig)(struct ath_hal *); \ - _t HAL_BOOL (_a _n##_perCalibration)(struct ath_hal*, \ + _t void (_a _n##_set_opmode)(struct ath_hal *); \ + _t HAL_BOOL (_a _n##_calibrate)(struct ath_hal*, \ HAL_CHANNEL *); \ /* Transmit functions */ \ - _t HAL_BOOL (_a _n##_updateTxTrigLevel)(struct ath_hal*, \ + _t HAL_BOOL (_a _n##_update_tx_triglevel)(struct ath_hal*, \ HAL_BOOL level); \ - _t int (_a _n##_setupTxQueue)(struct ath_hal *, HAL_TX_QUEUE, \ + _t int (_a _n##_setup_tx_queue)(struct ath_hal *, HAL_TX_QUEUE, \ const HAL_TXQ_INFO *); \ - _t HAL_BOOL (_a _n##_setTxQueueProps)(struct ath_hal *, int queue, \ + _t HAL_BOOL (_a _n##_setup_tx_queueprops)(struct ath_hal *, int queue, \ const HAL_TXQ_INFO *); \ - _t HAL_BOOL (_a _n##_releaseTxQueue)(struct ath_hal *, u_int queue); \ - _t HAL_BOOL (_a _n##_resetTxQueue)(struct ath_hal *, u_int queue); \ - _t u_int32_t (_a _n##_getTxDP)(struct ath_hal *, u_int queue); \ - _t HAL_BOOL (_a _n##_setTxDP)(struct ath_hal *, u_int, \ + _t HAL_BOOL (_a _n##_release_tx_queue)(struct ath_hal *, u_int queue); \ + _t HAL_BOOL (_a _n##_reset_tx_queue)(struct ath_hal *, u_int queue); \ + _t u_int32_t (_a _n##_get_tx_buf)(struct ath_hal *, u_int queue); \ + _t HAL_BOOL (_a _n##_put_tx_buf)(struct ath_hal *, u_int, \ u_int32_t phys_addr); \ - _t HAL_BOOL (_a _n##_startTxDma)(struct ath_hal *, u_int queue); \ - _t HAL_BOOL (_a _n##_stopTxDma)(struct ath_hal *, u_int queue); \ - _t HAL_BOOL (_a _n##_setupTxDesc)(struct ath_hal *, \ + _t HAL_BOOL (_a _n##_tx_start)(struct ath_hal *, u_int queue); \ + _t HAL_BOOL (_a _n##_stop_tx_dma)(struct ath_hal *, u_int queue); \ + _t HAL_BOOL (_a _n##_setup_tx_desc)(struct ath_hal *, \ struct ath_desc *, \ u_int packet_length, u_int header_length, HAL_PKT_TYPE type, \ u_int txPower, u_int tx_rate0, u_int tx_tries0, u_int key_index, \ u_int antenna_mode, u_int flags, u_int rtscts_rate, \ u_int rtscts_duration); \ - _t HAL_BOOL (_a _n##_setupXTxDesc)(struct ath_hal *, \ + _t HAL_BOOL (_a _n##_setup_xtx_desc)(struct ath_hal *, \ struct ath_desc *, \ u_int tx_rate1, u_int tx_tries1, u_int tx_rate2, u_int tx_tries2, \ u_int tx_rate3, u_int tx_tries3); \ - _t HAL_BOOL (_a _n##_fillTxDesc)(struct ath_hal *, \ + _t HAL_BOOL (_a _n##_fill_tx_desc)(struct ath_hal *, \ struct ath_desc *, \ u_int segLen, HAL_BOOL firstSeg, HAL_BOOL lastSeg); \ - _t HAL_STATUS (_a _n##_procTxDesc)(struct ath_hal *, \ + _t HAL_STATUS (_a _n##_proc_tx_desc)(struct ath_hal *, \ struct ath_desc *); \ - _t HAL_BOOL (_a _n##_hasVEOL)(struct ath_hal *); \ + _t HAL_BOOL (_a _n##_has_veol)(struct ath_hal *); \ /* Receive Functions */ \ - _t u_int32_t (_a _n##_getRxDP)(struct ath_hal*); \ - _t void (_a _n##_setRxDP)(struct ath_hal*, u_int32_t rxdp); \ - _t void (_a _n##_enableReceive)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_stopDmaReceive)(struct ath_hal*); \ - _t void (_a _n##_startPcuReceive)(struct ath_hal*); \ - _t void (_a _n##_stopPcuReceive)(struct ath_hal*); \ - _t void (_a _n##_setMulticastFilter)(struct ath_hal*, \ + _t u_int32_t (_a _n##_get_rx_buf)(struct ath_hal*); \ + _t void (_a _n##_put_rx_buf)(struct ath_hal*, u_int32_t rxdp); \ + _t void (_a _n##_start_rx)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_stop_rx_dma)(struct ath_hal*); \ + _t void (_a _n##_start_rx_pcu)(struct ath_hal*); \ + _t void (_a _n##_stop_pcu_recv)(struct ath_hal*); \ + _t void (_a _n##_set_mcast_filter)(struct ath_hal*, \ u_int32_t filter0, u_int32_t filter1); \ - _t HAL_BOOL (_a _n##_setMulticastFilterIndex)(struct ath_hal*, \ + _t HAL_BOOL (_a _n##_set_mcast_filterindex)(struct ath_hal*, \ u_int32_t index); \ - _t HAL_BOOL (_a _n##_clrMulticastFilterIndex)(struct ath_hal*, \ + _t HAL_BOOL (_a _n##_clear_mcast_filter_idx)(struct ath_hal*, \ u_int32_t index); \ - _t u_int32_t (_a _n##_getRxFilter)(struct ath_hal*); \ - _t void (_a _n##_setRxFilter)(struct ath_hal*, u_int32_t); \ - _t HAL_BOOL (_a _n##_setupRxDesc)(struct ath_hal *, \ + _t u_int32_t (_a _n##_get_rx_filter)(struct ath_hal*); \ + _t void (_a _n##_set_rx_filter)(struct ath_hal*, u_int32_t); \ + _t HAL_BOOL (_a _n##_setup_rx_desc)(struct ath_hal *, \ struct ath_desc *, u_int32_t size, u_int flags); \ - _t HAL_STATUS (_a _n##_procRxDesc)(struct ath_hal *, \ + _t HAL_STATUS (_a _n##_proc_rx_desc)(struct ath_hal *, \ struct ath_desc *, u_int32_t phyAddr, struct ath_desc *next); \ - _t void (_a _n##_rxMonitor)(struct ath_hal *); \ + _t void (_a _n##_set_rx_monitor)(struct ath_hal *); \ /* Misc Functions */ \ - _t void (_a _n##_dumpState)(struct ath_hal *); \ - _t HAL_BOOL (_a _n##_getDiagState)(struct ath_hal *, int, void **, \ + _t void (_a _n##_dump_state)(struct ath_hal *); \ + _t HAL_BOOL (_a _n##_get_diag_state)(struct ath_hal *, int, void **, \ u_int *); \ - _t void (_a _n##_getMacAddress)(struct ath_hal *, u_int8_t *); \ - _t HAL_BOOL (_a _n##_setMacAddress)(struct ath_hal *, \ + _t void (_a _n##_get_lladdr)(struct ath_hal *, u_int8_t *); \ + _t HAL_BOOL (_a _n##_set_lladdr)(struct ath_hal *, \ const u_int8_t*); \ - _t HAL_BOOL (_a _n##_setRegulatoryDomain)(struct ath_hal*, \ + _t HAL_BOOL (_a _n##_set_regdomain)(struct ath_hal*, \ u_int16_t, HAL_STATUS *); \ - _t void (_a _n##_setLedState)(struct ath_hal*, HAL_LED_STATE); \ - _t void (_a _n##_writeAssocid)(struct ath_hal*, \ + _t void (_a _n##_set_ledstate)(struct ath_hal*, HAL_LED_STATE); \ + _t void (_a _n##_set_associd)(struct ath_hal*, \ const u_int8_t *bssid, u_int16_t assocId, u_int16_t timOffset); \ - _t HAL_BOOL (_a _n##_gpioCfgOutput)(struct ath_hal *, \ + _t HAL_BOOL (_a _n##_set_gpio_output)(struct ath_hal *, \ u_int32_t gpio); \ - _t HAL_BOOL (_a _n##_gpioCfgInput)(struct ath_hal *, \ + _t HAL_BOOL (_a _n##_set_gpio_input)(struct ath_hal *, \ u_int32_t gpio); \ - _t u_int32_t (_a _n##_gpioGet)(struct ath_hal *, u_int32_t gpio); \ - _t HAL_BOOL (_a _n##_gpioSet)(struct ath_hal *, u_int32_t gpio, \ + _t u_int32_t (_a _n##_get_gpio)(struct ath_hal *, u_int32_t gpio); \ + _t HAL_BOOL (_a _n##_set_gpio)(struct ath_hal *, u_int32_t gpio, \ u_int32_t val); \ - _t void (_a _n##_gpioSetIntr)(struct ath_hal*, u_int, u_int32_t); \ - _t u_int32_t (_a _n##_getTsf32)(struct ath_hal*); \ - _t u_int64_t (_a _n##_getTsf64)(struct ath_hal*); \ - _t void (_a _n##_resetTsf)(struct ath_hal*); \ - _t u_int16_t (_a _n##_getRegDomain)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_detectCardPresent)(struct ath_hal*); \ - _t void (_a _n##_updateMibCounters)(struct ath_hal*, \ + _t void (_a _n##_set_gpio_intr)(struct ath_hal*, u_int, u_int32_t); \ + _t u_int32_t (_a _n##_get_tsf32)(struct ath_hal*); \ + _t u_int64_t (_a _n##_get_tsf64)(struct ath_hal*); \ + _t void (_a _n##_reset_tsf)(struct ath_hal*); \ + _t u_int16_t (_a _n##_get_regdomain)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_detect_card_present)(struct ath_hal*); \ + _t void (_a _n##_update_mib_counters)(struct ath_hal*, \ HAL_MIB_STATS*); \ - _t HAL_BOOL (_a _n##_isHwCipherSupported)(struct ath_hal*, \ + _t HAL_BOOL (_a _n##_is_cipher_supported)(struct ath_hal*, \ HAL_CIPHER); \ - _t HAL_RFGAIN (_a _n##_getRfGain)(struct ath_hal*); \ + _t HAL_RFGAIN (_a _n##_get_rf_gain)(struct ath_hal*); \ /* \ u_int32_t (_a _n##_getCurRssi)(struct ath_hal*); \ u_int32_t (_a _n##_getDefAntenna)(struct ath_hal*); \ void (_a _n##_setDefAntenna)(struct ath_hal*, u_int32_t ant); \ */ \ - _t HAL_BOOL (_a _n##_setSlotTime)(struct ath_hal*, u_int); \ - _t u_int (_a _n##_getSlotTime)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_setAckTimeout)(struct ath_hal *, u_int); \ - _t u_int (_a _n##_getAckTimeout)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_setCTSTimeout)(struct ath_hal*, u_int); \ - _t u_int (_a _n##_getCTSTimeout)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_set_slot_time)(struct ath_hal*, u_int); \ + _t u_int (_a _n##_get_slot_time)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_set_ack_timeout)(struct ath_hal *, u_int); \ + _t u_int (_a _n##_get_ack_timeout)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_set_cts_timeout)(struct ath_hal*, u_int); \ + _t u_int (_a _n##_get_cts_timeout)(struct ath_hal*); \ /* Key Cache Functions */ \ - _t u_int32_t (_a _n##_getKeyCacheSize)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_resetKeyCacheEntry)(struct ath_hal*, \ + _t u_int32_t (_a _n##_get_keycache_size)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_reset_key)(struct ath_hal*, \ u_int16_t); \ - _t HAL_BOOL (_a _n##_isKeyCacheEntryValid)(struct ath_hal *, \ + _t HAL_BOOL (_a _n##_is_key_valid)(struct ath_hal *, \ u_int16_t); \ - _t HAL_BOOL (_a _n##_setKeyCacheEntry)(struct ath_hal*, u_int16_t, \ + _t HAL_BOOL (_a _n##_set_key)(struct ath_hal*, u_int16_t, \ const HAL_KEYVAL *, const u_int8_t *, int); \ - _t HAL_BOOL (_a _n##_setKeyCacheEntryMac)(struct ath_hal*, \ + _t HAL_BOOL (_a _n##_set_key_lladdr)(struct ath_hal*, \ u_int16_t, const u_int8_t *); \ /* Power Management Functions */ \ - _t HAL_BOOL (_a _n##_setPowerMode)(struct ath_hal*, \ + _t HAL_BOOL (_a _n##_set_power)(struct ath_hal*, \ HAL_POWER_MODE mode, \ HAL_BOOL set_chip, u_int16_t sleep_duration); \ - _t HAL_POWER_MODE (_a _n##_getPowerMode)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_queryPSPollSupport)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_initPSPoll)(struct ath_hal*); \ - _t HAL_BOOL (_a _n##_enablePSPoll)(struct ath_hal *, u_int8_t *, \ + _t HAL_POWER_MODE (_a _n##_get_power_mode)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_query_pspoll_support)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_init_pspoll)(struct ath_hal*); \ + _t HAL_BOOL (_a _n##_enable_pspoll)(struct ath_hal *, u_int8_t *, \ u_int16_t); \ - _t HAL_BOOL (_a _n##_disablePSPoll)(struct ath_hal *); \ + _t HAL_BOOL (_a _n##_disable_pspoll)(struct ath_hal *); \ /* Beacon Management Functions */ \ - _t void (_a _n##_beaconInit)(struct ath_hal *, u_int32_t nexttbtt, \ + _t void (_a _n##_init_beacon)(struct ath_hal *, u_int32_t nexttbtt, \ u_int32_t intval); \ - _t void (_a _n##_setStationBeaconTimers)(struct ath_hal *, \ + _t void (_a _n##_set_beacon_timers)(struct ath_hal *, \ const HAL_BEACON_STATE *, u_int32_t tsf, u_int32_t dtimCount, \ u_int32_t cfpCcount); \ - _t void (_a _n##_resetStationBeaconTimers)(struct ath_hal *); \ - _t HAL_BOOL (_a _n##_waitForBeaconDone)(struct ath_hal *, \ + _t void (_a _n##_reset_beacon)(struct ath_hal *); \ + _t HAL_BOOL (_a _n##_wait_for_beacon)(struct ath_hal *, \ bus_addr_t); \ /* Interrupt functions */ \ - _t HAL_BOOL (_a _n##_isInterruptPending)(struct ath_hal *); \ - _t HAL_BOOL (_a _n##_getPendingInterrupts)(struct ath_hal *, \ + _t HAL_BOOL (_a _n##_is_intr_pending)(struct ath_hal *); \ + _t HAL_BOOL (_a _n##_get_isr)(struct ath_hal *, \ u_int32_t *); \ - _t u_int32_t (_a _n##_getInterrupts)(struct ath_hal *); \ - _t HAL_INT (_a _n##_setInterrupts)(struct ath_hal *, HAL_INT); \ + _t u_int32_t (_a _n##_get_intr)(struct ath_hal *); \ + _t HAL_INT (_a _n##_set_intr)(struct ath_hal *, HAL_INT); \ /* Chipset functions (ar5k-specific, non-HAL) */ \ _t HAL_BOOL (_a _n##_get_capabilities)(struct ath_hal *); \ _t void (_a _n##_radar_alert)(struct ath_hal *, HAL_BOOL enable); \ @@ -1095,7 +1095,7 @@ struct ath_hal { HAL_BOOL ah_running; HAL_RFGAIN ah_rf_gain; -#define ah_countryCode ah_country_code +#define ah_getcountrycode ah_country_code HAL_RATE_TABLE ah_rt_11a; HAL_RATE_TABLE ah_rt_11b; |