| /src/sys/dev/ic/ | 
| athvar.h | 338 #define	ath_hal_detach(_ah) \ 339 	((*(_ah)->ah_detach)((_ah)))
 340 #define	ath_hal_reset(_ah, _opmode, _chan, _outdoor, _pstatus) \
 341 	((*(_ah)->ah_reset)((_ah), (_opmode), (_chan), (_outdoor), (_pstatus)))
 342 #define	ath_hal_getratetable(_ah, _mode) \
 343 	((*(_ah)->ah_getRateTable)((_ah), (_mode)))
 344 #define	ath_hal_getmac(_ah, _mac)
 [all...]
 | 
| /src/sys/arch/hpc/stand/hpcboot/ | 
| load_coff.cpp | 44 	_ah = &_eh.a; 65 	size_t sz = _ah->a_tsize + _ah->a_dsize;
 68 	    _ah->a_tsize, _ah->a_dsize, sz));
 76 	DPRINTF((TEXT("kernel entry address: 0x%08x\n"), _ah->a_entry));
 78 	return _ah->a_entry;
 93 	filesz = memsz = _ah->a_tsize;
 94 	kv = _ah->a_tstart;
 95 	fileofs = COFF_ROUND(N_TXTOFF(_fh, _ah), 16)
 [all...]
 | 
| load_coff.h | 49 	struct coff_aouthdr *_ah;  member in class:CoffLoader 
 | 
| /src/sys/external/isc/atheros_hal/ic/ | 
| ah_osdep.h | 58 #define	OS_GETUPTIME(_ah)	ath_hal_getuptime(_ah) 93 #define	OS_REG_WRITE(_ah, _reg, _val)	ath_hal_reg_write(_ah, _reg, _val)
 94 #define	OS_REG_READ(_ah, _reg)		ath_hal_reg_read(_ah, _reg)
 112 #define OS_REG_WRITE(_ah, _reg, _val) do {				\
 114 		bus_space_write_4((_ah)->ah_st, (_ah)->ah_sh,		\
 117 		bus_space_write_stream_4((_ah)->ah_st, (_ah)->ah_sh,
 [all...]
 | 
| /src/sys/external/isc/atheros_hal/dist/ar5416/ | 
| ar9280.h | 30 #define	AH9280(_ah)	((struct ath_hal_9280 *)(_ah)) 
 | 
| ar9285.h | 29 #define	AH9285(_ah)	((struct ath_hal_9285 *)(_ah)) 
 | 
| ar5416reg.h | 557 #define	IS_5416V1(_ah)	((_ah)->ah_macRev == AR_SREV_REVISION_OWL_10) 558 #define	IS_5416V2(_ah)	((_ah)->ah_macRev >= AR_SREV_REVISION_OWL_20)
 559 #define	IS_5416V2_2(_ah)	((_ah)->ah_macRev == AR_SREV_REVISION_OWL_22)
 591 #define	AR_SREV_OWL_20_OR_LATER(_ah) \
 592 	(AH_PRIVATE((_ah))->ah_macVersion >= AR_XSREV_VERSION_SOWL || \
 593 	 AH_PRIVATE((_ah))->ah_macRev >= AR_XSREV_REVISION_OWL_20)
 594 #define	AR_SREV_OWL_22_OR_LATER(_ah) \
 [all...]
 | 
| ar5416desc.h | 30 #define _get_index(_ah) ( IS_5416V1(_ah)  ? -4 : 0 ) 31 #define AR5416_DS_TXSTATUS(_ah, _ads) \
 32 	((uint32_t*)(&(_ads)->u.tx.status[_get_index(_ah)]))
 33 #define AR5416_DS_TXSTATUS_CONST(_ah, _ads) \
 34 	((const uint32_t*)(&(_ads)->u.tx.status[_get_index(_ah)]))
 
 | 
| ar5416.h | 86 #define	AH5416(_ah)	((struct ath_hal_5416 *)(_ah)) 107 #define	IS_5GHZ_FAST_CLOCK_EN(_ah, _c) \
 
 | 
| ar9285_reset.c | 40 #define	EEP_MINOR(_ah) \ 41 	(AH_PRIVATE(_ah)->ah_eeversion & AR5416_EEP_VER_MINOR_MASK)
 42 #define IS_EEP_MINOR_V2(_ah)	(EEP_MINOR(_ah) >= AR5416_EEP_MINOR_VER_2)
 43 #define IS_EEP_MINOR_V3(_ah)	(EEP_MINOR(_ah) >= AR5416_EEP_MINOR_VER_3)
 
 | 
| ar5416_reset.c | 32 #define	EEP_MINOR(_ah) \ 33 	(AH_PRIVATE(_ah)->ah_eeversion & AR5416_EEP_VER_MINOR_MASK)
 34 #define IS_EEP_MINOR_V2(_ah)	(EEP_MINOR(_ah) >= AR5416_EEP_MINOR_VER_2)
 35 #define IS_EEP_MINOR_V3(_ah)	(EEP_MINOR(_ah) >= AR5416_EEP_MINOR_VER_3)
 
 | 
| /src/sys/external/isc/atheros_hal/dist/ | 
| ah_internal.h | 309 #define	AH_PRIVATE(_ah)	((struct ath_hal_private *)(_ah)) 311 #define	ath_hal_getChannelEdges(_ah, _cf, _lc, _hc) \
 312 	AH_PRIVATE(_ah)->ah_getChannelEdges(_ah, _cf, _lc, _hc)
 313 #define	ath_hal_getWirelessModes(_ah) \
 314 	AH_PRIVATE(_ah)->ah_getWirelessModes(_ah)
 315 #define	ath_hal_eepromRead(_ah, _off, _data) \
 316 	AH_PRIVATE(_ah)->ah_eepromRead(_ah, _off, _data
 [all...]
 | 
| ah_regdomain.c | 2778 #define isWwrSKU(_ah) \ 2779 	((getEepromRD((_ah)) & WORLD_SKU_MASK) == WORLD_SKU_PREFIX || \
 2780 	  getEepromRD(_ah) == WORLD)
 
 | 
| /src/sys/external/isc/atheros_hal/dist/ar5312/ | 
| ar5312.h | 25 #define AR5312_UNIT(_ah) \ 26 	(((const struct ar531x_config *)((_ah)->ah_st))->unit)
 27 #define AR5312_BOARDCONFIG(_ah) \
 28 	(((const struct ar531x_config *)((_ah)->ah_st))->board)
 29 #define AR5312_RADIOCONFIG(_ah) \
 30 	(((const struct ar531x_config *)((_ah)->ah_st))->radio)
 
 | 
| /src/sys/external/isc/atheros_hal/dist/ar5212/ | 
| ar5212.h | 335 #define	AH5212(_ah)	((struct ath_hal_5212 *)(_ah)) 397 #define SAVE_CCK(_ah, _chan, _flag) do {			\
 398 	if ((IS_2425(_ah) || IS_2417(_ah)) &&			\
 406 #define RESTORE_CCK(_ah, _chan, _flag) do {                     \
 407 	if ((IS_2425(_ah) || IS_2417(_ah)) && (_flag) == AH_TRUE) {\
 
 | 
| ar5212_reset.c | 1481 #define	AR_PHY_BIS(_ah, _reg, _mask, _val) \ 1482 	OS_REG_WRITE(_ah, AR_PHY(_reg), \
 1483 		(OS_REG_READ(_ah, AR_PHY(_reg)) & _mask) | (_val));
 
 |