Searched refs:_ah (Results 1 – 5 of 5) sorted by relevance
/titanic_50/usr/src/uts/common/io/ath/ |
H A D | ath_hal.h | 1126 #define ATH_HAL_RESET(_ah, _opmode, _chan, _outdoor, _pstatus) \ argument 1127 ((*(_ah)->ah_reset)((_ah), (_opmode), (_chan), (_outdoor), (_pstatus))) 1128 #define ATH_HAL_PHYDISABLE(_ah) \ argument 1129 ((*(_ah)->ah_phyDisable)((_ah))) 1130 #define ATH_HAL_GETCAPABILITY(_ah, _cap, _param, _result) \ argument 1131 ((*(_ah)->ah_getCapability)((_ah), (_cap), (_param), (_result))) 1132 #define ATH_HAL_SETCAPABILITY(_ah, _type, _cap, _param, _status) \ argument 1133 ((*(_ah)->ah_setCapability)((_ah), (_type), (_cap), (_param), \ 1135 #define ATH_HAL_GETREGDOMAIN(_ah, _prd) \ argument 1136 ATH_HAL_GETCAPABILITY(_ah, HAL_CAP_REG_DMN, 0, (_prd)) [all …]
|
/titanic_50/usr/src/uts/common/io/arn/ |
H A D | arn_reg.h | 172 #define AR_SREV_5416_V20_OR_LATER(_ah) \ argument 173 (AR_SREV_9100((_ah)) || AR_SREV_5416_20_OR_LATER(_ah)) 174 #define AR_SREV_5416_V22_OR_LATER(_ah) \ argument 175 (AR_SREV_9100((_ah)) || AR_SREV_5416_22_OR_LATER(_ah)) 756 #define AR_SREV_9100_OR_LATER(_ah) \ argument 757 (((_ah)->ah_macVersion >= AR_SREV_VERSION_5416_PCIE)) 758 #define AR_SREV_5416_20_OR_LATER(_ah) \ argument 759 (((_ah)->ah_macVersion >= AR_SREV_VERSION_9160) || \ 760 ((_ah)->ah_macRev >= AR_SREV_REVISION_5416_20)) 761 #define AR_SREV_5416_22_OR_LATER(_ah) \ argument [all …]
|
H A D | arn_regd.h | 116 #define isWwrSKU(_ah) \ argument 117 (((ath9k_regd_get_eepromRD((_ah)) & WORLD_SKU_MASK) == \ 119 (ath9k_regd_get_eepromRD(_ah) == WORLD)) 121 #define isWwrSKU_NoMidband(_ah) \ argument 122 ((ath9k_regd_get_eepromRD((_ah)) == WOR3_WORLD) || \ 123 (ath9k_regd_get_eepromRD(_ah) == WOR4_WORLD) || \ 124 (ath9k_regd_get_eepromRD(_ah) == WOR5_ETSIC))
|
H A D | arn_ath9k.h | 612 #define REG_WRITE(_ah, _reg, _val) arn_iowrite32((_ah), (_reg), (_val)) argument 613 #define REG_READ(_ah, _reg) arn_ioread32((_ah), (_reg)) argument 614 #define FLASH_READ(_ah, _reg) \ argument 615 ddi_get16((_ah->ah_sc)->sc_io_handle, \ 616 (uint16_t *)((uintptr_t)(_ah)->ah_sh + (_reg)))
|
H A D | arn_hw.h | 960 #define AH5416(_ah) ((struct ath_hal_5416 *)(_ah)) argument 969 #define ath9k_hw_use_flash(_ah) \ argument 970 (!(_ah->ah_flags & AH_USE_EEPROM))
|