ar5211_attach.c revision 234873
1/*
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * Copyright (c) 2002-2006 Atheros Communications, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 *
17 * $FreeBSD: head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c 234873 2012-05-01 14:48:51Z adrian $
18 */
19#include "opt_ah.h"
20
21#include "ah.h"
22#include "ah_internal.h"
23#include "ah_devid.h"
24
25#include "ar5211/ar5211.h"
26#include "ar5211/ar5211reg.h"
27#include "ar5211/ar5211phy.h"
28
29#include "ah_eeprom_v3.h"
30
31static HAL_BOOL ar5211GetChannelEdges(struct ath_hal *ah,
32		uint16_t flags, uint16_t *low, uint16_t *high);
33static HAL_BOOL ar5211GetChipPowerLimits(struct ath_hal *ah,
34		struct ieee80211_channel *chan);
35
36static void ar5211ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore);
37static void ar5211DisablePCIE(struct ath_hal *ah);
38
39static const struct ath_hal_private ar5211hal = {{
40	.ah_magic			= AR5211_MAGIC,
41
42	.ah_getRateTable		= ar5211GetRateTable,
43	.ah_detach			= ar5211Detach,
44
45	/* Reset Functions */
46	.ah_reset			= ar5211Reset,
47	.ah_phyDisable			= ar5211PhyDisable,
48	.ah_disable			= ar5211Disable,
49	.ah_configPCIE			= ar5211ConfigPCIE,
50	.ah_disablePCIE			= ar5211DisablePCIE,
51	.ah_setPCUConfig		= ar5211SetPCUConfig,
52	.ah_perCalibration		= ar5211PerCalibration,
53	.ah_perCalibrationN		= ar5211PerCalibrationN,
54	.ah_resetCalValid		= ar5211ResetCalValid,
55	.ah_setTxPowerLimit		= ar5211SetTxPowerLimit,
56	.ah_getChanNoise		= ath_hal_getChanNoise,
57
58	/* Transmit functions */
59	.ah_updateTxTrigLevel		= ar5211UpdateTxTrigLevel,
60	.ah_setupTxQueue		= ar5211SetupTxQueue,
61	.ah_setTxQueueProps             = ar5211SetTxQueueProps,
62	.ah_getTxQueueProps             = ar5211GetTxQueueProps,
63	.ah_releaseTxQueue		= ar5211ReleaseTxQueue,
64	.ah_resetTxQueue		= ar5211ResetTxQueue,
65	.ah_getTxDP			= ar5211GetTxDP,
66	.ah_setTxDP			= ar5211SetTxDP,
67	.ah_numTxPending		= ar5211NumTxPending,
68	.ah_startTxDma			= ar5211StartTxDma,
69	.ah_stopTxDma			= ar5211StopTxDma,
70	.ah_setupTxDesc			= ar5211SetupTxDesc,
71	.ah_setupXTxDesc		= ar5211SetupXTxDesc,
72	.ah_fillTxDesc			= ar5211FillTxDesc,
73	.ah_procTxDesc			= ar5211ProcTxDesc,
74	.ah_getTxIntrQueue		= ar5211GetTxIntrQueue,
75	.ah_reqTxIntrDesc 		= ar5211IntrReqTxDesc,
76	.ah_getTxCompletionRates	= ar5211GetTxCompletionRates,
77
78	/* RX Functions */
79	.ah_getRxDP			= ar5211GetRxDP,
80	.ah_setRxDP			= ar5211SetRxDP,
81	.ah_enableReceive		= ar5211EnableReceive,
82	.ah_stopDmaReceive		= ar5211StopDmaReceive,
83	.ah_startPcuReceive		= ar5211StartPcuReceive,
84	.ah_stopPcuReceive		= ar5211StopPcuReceive,
85	.ah_setMulticastFilter		= ar5211SetMulticastFilter,
86	.ah_setMulticastFilterIndex	= ar5211SetMulticastFilterIndex,
87	.ah_clrMulticastFilterIndex	= ar5211ClrMulticastFilterIndex,
88	.ah_getRxFilter			= ar5211GetRxFilter,
89	.ah_setRxFilter			= ar5211SetRxFilter,
90	.ah_setupRxDesc			= ar5211SetupRxDesc,
91	.ah_procRxDesc			= ar5211ProcRxDesc,
92	.ah_rxMonitor			= ar5211RxMonitor,
93	.ah_aniPoll			= ar5211AniPoll,
94	.ah_procMibEvent		= ar5211MibEvent,
95
96	/* Misc Functions */
97	.ah_getCapability		= ar5211GetCapability,
98	.ah_setCapability		= ar5211SetCapability,
99	.ah_getDiagState		= ar5211GetDiagState,
100	.ah_getMacAddress		= ar5211GetMacAddress,
101	.ah_setMacAddress		= ar5211SetMacAddress,
102	.ah_getBssIdMask		= ar5211GetBssIdMask,
103	.ah_setBssIdMask		= ar5211SetBssIdMask,
104	.ah_setRegulatoryDomain		= ar5211SetRegulatoryDomain,
105	.ah_setLedState			= ar5211SetLedState,
106	.ah_writeAssocid		= ar5211WriteAssocid,
107	.ah_gpioCfgInput		= ar5211GpioCfgInput,
108	.ah_gpioCfgOutput		= ar5211GpioCfgOutput,
109	.ah_gpioGet			= ar5211GpioGet,
110	.ah_gpioSet			= ar5211GpioSet,
111	.ah_gpioSetIntr			= ar5211GpioSetIntr,
112	.ah_getTsf32			= ar5211GetTsf32,
113	.ah_getTsf64			= ar5211GetTsf64,
114	.ah_resetTsf			= ar5211ResetTsf,
115	.ah_detectCardPresent		= ar5211DetectCardPresent,
116	.ah_updateMibCounters		= ar5211UpdateMibCounters,
117	.ah_getRfGain			= ar5211GetRfgain,
118	.ah_getDefAntenna		= ar5211GetDefAntenna,
119	.ah_setDefAntenna		= ar5211SetDefAntenna,
120	.ah_getAntennaSwitch		= ar5211GetAntennaSwitch,
121	.ah_setAntennaSwitch		= ar5211SetAntennaSwitch,
122	.ah_setSifsTime			= ar5211SetSifsTime,
123	.ah_getSifsTime			= ar5211GetSifsTime,
124	.ah_setSlotTime			= ar5211SetSlotTime,
125	.ah_getSlotTime			= ar5211GetSlotTime,
126	.ah_setAckTimeout		= ar5211SetAckTimeout,
127	.ah_getAckTimeout		= ar5211GetAckTimeout,
128	.ah_setAckCTSRate		= ar5211SetAckCTSRate,
129	.ah_getAckCTSRate		= ar5211GetAckCTSRate,
130	.ah_setCTSTimeout		= ar5211SetCTSTimeout,
131	.ah_getCTSTimeout		= ar5211GetCTSTimeout,
132	.ah_setDecompMask		= ar5211SetDecompMask,
133	.ah_setCoverageClass		= ar5211SetCoverageClass,
134	.ah_get11nExtBusy		= ar5211Get11nExtBusy,
135	.ah_getMibCycleCounts		= ar5211GetMibCycleCounts,
136
137	/* Key Cache Functions */
138	.ah_getKeyCacheSize		= ar5211GetKeyCacheSize,
139	.ah_resetKeyCacheEntry		= ar5211ResetKeyCacheEntry,
140	.ah_isKeyCacheEntryValid	= ar5211IsKeyCacheEntryValid,
141	.ah_setKeyCacheEntry		= ar5211SetKeyCacheEntry,
142	.ah_setKeyCacheEntryMac		= ar5211SetKeyCacheEntryMac,
143
144	/* Power Management Functions */
145	.ah_setPowerMode		= ar5211SetPowerMode,
146	.ah_getPowerMode		= ar5211GetPowerMode,
147
148	/* Beacon Functions */
149	.ah_setBeaconTimers		= ar5211SetBeaconTimers,
150	.ah_beaconInit			= ar5211BeaconInit,
151	.ah_setStationBeaconTimers	= ar5211SetStaBeaconTimers,
152	.ah_resetStationBeaconTimers	= ar5211ResetStaBeaconTimers,
153	.ah_getNextTBTT			= ar5211GetNextTBTT,
154
155	/* Interrupt Functions */
156	.ah_isInterruptPending		= ar5211IsInterruptPending,
157	.ah_getPendingInterrupts	= ar5211GetPendingInterrupts,
158	.ah_getInterrupts		= ar5211GetInterrupts,
159	.ah_setInterrupts		= ar5211SetInterrupts },
160
161	.ah_getChannelEdges		= ar5211GetChannelEdges,
162	.ah_getWirelessModes		= ar5211GetWirelessModes,
163	.ah_eepromRead			= ar5211EepromRead,
164#ifdef AH_SUPPORT_WRITE_EEPROM
165	.ah_eepromWrite			= ar5211EepromWrite,
166#endif
167	.ah_getChipPowerLimits		= ar5211GetChipPowerLimits,
168};
169
170static HAL_BOOL ar5211ChipTest(struct ath_hal *);
171static HAL_BOOL ar5211FillCapabilityInfo(struct ath_hal *ah);
172
173/*
174 * Return the revsion id for the radio chip.  This
175 * fetched via the PHY.
176 */
177static uint32_t
178ar5211GetRadioRev(struct ath_hal *ah)
179{
180	uint32_t val;
181	int i;
182
183	OS_REG_WRITE(ah, (AR_PHY_BASE + (0x34 << 2)), 0x00001c16);
184	for (i = 0; i < 8; i++)
185		OS_REG_WRITE(ah, (AR_PHY_BASE + (0x20 << 2)), 0x00010000);
186	val = (OS_REG_READ(ah, AR_PHY_BASE + (256 << 2)) >> 24) & 0xff;
187	val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
188	return ath_hal_reverseBits(val, 8);
189}
190
191/*
192 * Attach for an AR5211 part.
193 */
194static struct ath_hal *
195ar5211Attach(uint16_t devid, HAL_SOFTC sc,
196	HAL_BUS_TAG st, HAL_BUS_HANDLE sh, uint16_t *eepromdata,
197	HAL_STATUS *status)
198{
199#define	N(a)	(sizeof(a)/sizeof(a[0]))
200	struct ath_hal_5211 *ahp;
201	struct ath_hal *ah;
202	uint32_t val;
203	uint16_t eeval;
204	HAL_STATUS ecode;
205
206	HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n",
207	    __func__, sc, (void*) st, (void*) sh);
208
209	/* NB: memory is returned zero'd */
210	ahp = ath_hal_malloc(sizeof (struct ath_hal_5211));
211	if (ahp == AH_NULL) {
212		HALDEBUG(AH_NULL, HAL_DEBUG_ANY,
213		    "%s: cannot allocate memory for state block\n", __func__);
214		ecode = HAL_ENOMEM;
215		goto bad;
216	}
217	ah = &ahp->ah_priv.h;
218	/* set initial values */
219	OS_MEMCPY(&ahp->ah_priv, &ar5211hal, sizeof(struct ath_hal_private));
220	ah->ah_sc = sc;
221	ah->ah_st = st;
222	ah->ah_sh = sh;
223
224	ah->ah_devid = devid;			/* NB: for AH_DEBUG_ALQ */
225	AH_PRIVATE(ah)->ah_devid = devid;
226	AH_PRIVATE(ah)->ah_subvendorid = 0;	/* XXX */
227
228	AH_PRIVATE(ah)->ah_powerLimit = MAX_RATE_POWER;
229	AH_PRIVATE(ah)->ah_tpScale = HAL_TP_SCALE_MAX;	/* no scaling */
230
231	ahp->ah_diversityControl = HAL_ANT_VARIABLE;
232	ahp->ah_staId1Defaults = 0;
233	ahp->ah_rssiThr = INIT_RSSI_THR;
234	ahp->ah_sifstime = (u_int) -1;
235	ahp->ah_slottime = (u_int) -1;
236	ahp->ah_acktimeout = (u_int) -1;
237	ahp->ah_ctstimeout = (u_int) -1;
238
239	if (!ar5211ChipReset(ah, AH_NULL)) {	/* reset chip */
240		HALDEBUG(ah, HAL_DEBUG_ANY, "%s: chip reset failed\n", __func__);
241		ecode = HAL_EIO;
242		goto bad;
243	}
244	if (AH_PRIVATE(ah)->ah_devid == AR5211_FPGA11B) {
245		/* set it back to OFDM mode to be able to read analog rev id */
246		OS_REG_WRITE(ah, AR5211_PHY_MODE, AR5211_PHY_MODE_OFDM);
247		OS_REG_WRITE(ah, AR_PHY_PLL_CTL, AR_PHY_PLL_CTL_44);
248		OS_DELAY(1000);
249	}
250
251	/* Read Revisions from Chips */
252	val = OS_REG_READ(ah, AR_SREV) & AR_SREV_ID_M;
253	AH_PRIVATE(ah)->ah_macVersion = val >> AR_SREV_ID_S;
254	AH_PRIVATE(ah)->ah_macRev = val & AR_SREV_REVISION_M;
255
256	if (AH_PRIVATE(ah)->ah_macVersion < AR_SREV_VERSION_MAUI_2 ||
257	    AH_PRIVATE(ah)->ah_macVersion > AR_SREV_VERSION_OAHU) {
258		HALDEBUG(ah, HAL_DEBUG_ANY,
259		    "%s: Mac Chip Rev 0x%x is not supported by this driver\n",
260		    __func__, AH_PRIVATE(ah)->ah_macVersion);
261		ecode = HAL_ENOTSUPP;
262		goto bad;
263	}
264
265	AH_PRIVATE(ah)->ah_phyRev = OS_REG_READ(ah, AR_PHY_CHIP_ID);
266
267	if (!ar5211ChipTest(ah)) {
268		HALDEBUG(ah, HAL_DEBUG_ANY, "%s: hardware self-test failed\n",
269		    __func__);
270		ecode = HAL_ESELFTEST;
271		goto bad;
272	}
273
274	/* Set correct Baseband to analog shift setting to access analog chips. */
275	if (AH_PRIVATE(ah)->ah_macVersion >= AR_SREV_VERSION_OAHU) {
276		OS_REG_WRITE(ah, AR_PHY_BASE, 0x00000007);
277	} else {
278		OS_REG_WRITE(ah, AR_PHY_BASE, 0x00000047);
279	}
280	OS_DELAY(2000);
281
282	/* Read Radio Chip Rev Extract */
283	AH_PRIVATE(ah)->ah_analog5GhzRev = ar5211GetRadioRev(ah);
284	if ((AH_PRIVATE(ah)->ah_analog5GhzRev & 0xf0) != RAD5_SREV_MAJOR) {
285		HALDEBUG(ah, HAL_DEBUG_ANY,
286		    "%s: 5G Radio Chip Rev 0x%02X is not supported by this "
287		    "driver\n", __func__, AH_PRIVATE(ah)->ah_analog5GhzRev);
288		ecode = HAL_ENOTSUPP;
289		goto bad;
290	}
291
292	val = (OS_REG_READ(ah, AR_PCICFG) & AR_PCICFG_EEPROM_SIZE_M) >>
293               AR_PCICFG_EEPROM_SIZE_S;
294	if (val != AR_PCICFG_EEPROM_SIZE_16K) {
295		HALDEBUG(ah, HAL_DEBUG_ANY, "%s: unsupported EEPROM size "
296		    "%u (0x%x) found\n", __func__, val, val);
297		ecode = HAL_EESIZE;
298		goto bad;
299	}
300	ecode = ath_hal_legacyEepromAttach(ah);
301	if (ecode != HAL_OK) {
302		goto bad;
303	}
304
305        /* If Bmode and AR5211, verify 2.4 analog exists */
306	if (AH_PRIVATE(ah)->ah_macVersion >= AR_SREV_VERSION_OAHU &&
307	    ath_hal_eepromGetFlag(ah, AR_EEP_BMODE)) {
308		/* Set correct Baseband to analog shift setting to access analog chips. */
309		OS_REG_WRITE(ah, AR_PHY_BASE, 0x00004007);
310		OS_DELAY(2000);
311		AH_PRIVATE(ah)->ah_analog2GhzRev = ar5211GetRadioRev(ah);
312
313		/* Set baseband for 5GHz chip */
314		OS_REG_WRITE(ah, AR_PHY_BASE, 0x00000007);
315		OS_DELAY(2000);
316		if ((AH_PRIVATE(ah)->ah_analog2GhzRev & 0xF0) != RAD2_SREV_MAJOR) {
317			HALDEBUG(ah, HAL_DEBUG_ANY,
318			    "%s: 2G Radio Chip Rev 0x%x is not supported by "
319			    "this driver\n", __func__,
320			    AH_PRIVATE(ah)->ah_analog2GhzRev);
321			ecode = HAL_ENOTSUPP;
322			goto bad;
323		}
324	} else {
325		ath_hal_eepromSet(ah, AR_EEP_BMODE, AH_FALSE);
326        }
327
328	ecode = ath_hal_eepromGet(ah, AR_EEP_REGDMN_0, &eeval);
329	if (ecode != HAL_OK) {
330		HALDEBUG(ah, HAL_DEBUG_ANY,
331		    "%s: cannot read regulatory domain from EEPROM\n",
332		    __func__);
333		goto bad;
334        }
335	AH_PRIVATE(ah)->ah_currentRD = eeval;
336	AH_PRIVATE(ah)->ah_getNfAdjust = ar5211GetNfAdjust;
337
338	/*
339	 * Got everything we need now to setup the capabilities.
340	 */
341	(void) ar5211FillCapabilityInfo(ah);
342
343	/* Initialize gain ladder thermal calibration structure */
344	ar5211InitializeGainValues(ah);
345
346	ecode = ath_hal_eepromGet(ah, AR_EEP_MACADDR, ahp->ah_macaddr);
347	if (ecode != HAL_OK) {
348		HALDEBUG(ah, HAL_DEBUG_ANY,
349		    "%s: error getting mac address from EEPROM\n", __func__);
350		goto bad;
351        }
352
353	HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s: return\n", __func__);
354
355	return ah;
356bad:
357	if (ahp)
358		ar5211Detach((struct ath_hal *) ahp);
359	if (status)
360		*status = ecode;
361	return AH_NULL;
362#undef N
363}
364
365void
366ar5211Detach(struct ath_hal *ah)
367{
368	HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s:\n", __func__);
369
370	HALASSERT(ah != AH_NULL);
371	HALASSERT(ah->ah_magic == AR5211_MAGIC);
372
373	ath_hal_eepromDetach(ah);
374	ath_hal_free(ah);
375}
376
377static HAL_BOOL
378ar5211ChipTest(struct ath_hal *ah)
379{
380	uint32_t regAddr[2] = { AR_STA_ID0, AR_PHY_BASE+(8 << 2) };
381	uint32_t regHold[2];
382	uint32_t patternData[4] =
383	    { 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999 };
384	int i, j;
385
386	/* Test PHY & MAC registers */
387	for (i = 0; i < 2; i++) {
388		uint32_t addr = regAddr[i];
389		uint32_t wrData, rdData;
390
391		regHold[i] = OS_REG_READ(ah, addr);
392		for (j = 0; j < 0x100; j++) {
393			wrData = (j << 16) | j;
394			OS_REG_WRITE(ah, addr, wrData);
395			rdData = OS_REG_READ(ah, addr);
396			if (rdData != wrData) {
397				HALDEBUG(ah, HAL_DEBUG_ANY,
398"%s: address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
399				__func__, addr, wrData, rdData);
400				return AH_FALSE;
401			}
402		}
403		for (j = 0; j < 4; j++) {
404			wrData = patternData[j];
405			OS_REG_WRITE(ah, addr, wrData);
406			rdData = OS_REG_READ(ah, addr);
407			if (wrData != rdData) {
408				HALDEBUG(ah, HAL_DEBUG_ANY,
409"%s: address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
410					__func__, addr, wrData, rdData);
411				return AH_FALSE;
412			}
413		}
414		OS_REG_WRITE(ah, regAddr[i], regHold[i]);
415	}
416	OS_DELAY(100);
417	return AH_TRUE;
418}
419
420/*
421 * Store the channel edges for the requested operational mode
422 */
423static HAL_BOOL
424ar5211GetChannelEdges(struct ath_hal *ah,
425	uint16_t flags, uint16_t *low, uint16_t *high)
426{
427	if (flags & IEEE80211_CHAN_5GHZ) {
428		*low = 4920;
429		*high = 6100;
430		return AH_TRUE;
431	}
432	if (flags & IEEE80211_CHAN_2GHZ &&
433	    ath_hal_eepromGetFlag(ah, AR_EEP_BMODE)) {
434		*low = 2312;
435		*high = 2732;
436		return AH_TRUE;
437	}
438	return AH_FALSE;
439}
440
441static HAL_BOOL
442ar5211GetChipPowerLimits(struct ath_hal *ah, struct ieee80211_channel *chan)
443{
444	/* XXX fill in, this is just a placeholder */
445	HALDEBUG(ah, HAL_DEBUG_ATTACH,
446	    "%s: no min/max power for %u/0x%x\n",
447	    __func__, chan->ic_freq, chan->ic_flags);
448	chan->ic_maxpower = MAX_RATE_POWER;
449	chan->ic_minpower = 0;
450	return AH_TRUE;
451}
452
453static void
454ar5211ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore)
455{
456}
457
458static void
459ar5211DisablePCIE(struct ath_hal *ah)
460{
461}
462
463/*
464 * Fill all software cached or static hardware state information.
465 */
466static HAL_BOOL
467ar5211FillCapabilityInfo(struct ath_hal *ah)
468{
469	struct ath_hal_private *ahpriv = AH_PRIVATE(ah);
470	HAL_CAPABILITIES *pCap = &ahpriv->ah_caps;
471
472	/* Construct wireless mode from EEPROM */
473	pCap->halWirelessModes = 0;
474	if (ath_hal_eepromGetFlag(ah, AR_EEP_AMODE)) {
475		pCap->halWirelessModes |= HAL_MODE_11A;
476		if (!ath_hal_eepromGetFlag(ah, AR_EEP_TURBO5DISABLE))
477			pCap->halWirelessModes |= HAL_MODE_TURBO;
478	}
479	if (ath_hal_eepromGetFlag(ah, AR_EEP_BMODE))
480		pCap->halWirelessModes |= HAL_MODE_11B;
481
482	pCap->halLow2GhzChan = 2312;
483	pCap->halHigh2GhzChan = 2732;
484	pCap->halLow5GhzChan = 4920;
485	pCap->halHigh5GhzChan = 6100;
486
487	pCap->halChanSpreadSupport = AH_TRUE;
488	pCap->halSleepAfterBeaconBroken = AH_TRUE;
489	pCap->halPSPollBroken = AH_TRUE;
490	pCap->halVEOLSupport = AH_TRUE;
491
492	pCap->halTotalQueues = HAL_NUM_TX_QUEUES;
493	pCap->halKeyCacheSize = 128;
494
495	/* XXX not needed */
496	pCap->halChanHalfRate = AH_FALSE;
497	pCap->halChanQuarterRate = AH_FALSE;
498
499	/*
500	 * RSSI uses the combined field; some 11n NICs may use
501	 * the control chain RSSI.
502	 */
503	pCap->halUseCombinedRadarRssi = AH_TRUE;
504
505	if (ath_hal_eepromGetFlag(ah, AR_EEP_RFKILL) &&
506	    ath_hal_eepromGet(ah, AR_EEP_RFSILENT, &ahpriv->ah_rfsilent) == HAL_OK) {
507		/* NB: enabled by default */
508		ahpriv->ah_rfkillEnabled = AH_TRUE;
509		pCap->halRfSilentSupport = AH_TRUE;
510	}
511
512	pCap->halTstampPrecision = 13;
513	pCap->halIntrMask = HAL_INT_COMMON
514			| HAL_INT_RX
515			| HAL_INT_TX
516			| HAL_INT_FATAL
517			| HAL_INT_BNR
518			| HAL_INT_TIM
519			;
520
521	pCap->hal4kbSplitTransSupport = AH_TRUE;
522	pCap->halHasRxSelfLinkedTail = AH_TRUE;
523
524	/* XXX might be ok w/ some chip revs */
525	ahpriv->ah_rxornIsFatal = AH_TRUE;
526	return AH_TRUE;
527}
528
529static const char*
530ar5211Probe(uint16_t vendorid, uint16_t devid)
531{
532	if (vendorid == ATHEROS_VENDOR_ID) {
533		if (devid == AR5211_DEVID || devid == AR5311_DEVID ||
534		    devid == AR5211_DEFAULT)
535			return "Atheros 5211";
536		if (devid == AR5211_FPGA11B)
537			return "Atheros 5211 (FPGA)";
538	}
539	return AH_NULL;
540}
541AH_CHIP(AR5211, ar5211Probe, ar5211Attach);
542