xref: /freebsd/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c (revision 5944f899a2519c6321bac3c17cc076418643a088)
1 /*
2  * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3  * Copyright (c) 2002-2004 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$
18  */
19 #include "opt_ah.h"
20 
21 #include "ah.h"
22 #include "ah_internal.h"
23 #include "ah_devid.h"
24 
25 #include "ar5210/ar5210.h"
26 #include "ar5210/ar5210reg.h"
27 #include "ar5210/ar5210phy.h"
28 
29 #include "ah_eeprom_v1.h"
30 
31 static	HAL_BOOL ar5210GetChannelEdges(struct ath_hal *,
32 		uint16_t flags, uint16_t *low, uint16_t *high);
33 static	HAL_BOOL ar5210GetChipPowerLimits(struct ath_hal *ah,
34 		struct ieee80211_channel *chan);
35 
36 static void ar5210ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore,
37 		HAL_BOOL power_on);
38 static void ar5210DisablePCIE(struct ath_hal *ah);
39 
40 static const struct ath_hal_private ar5210hal = {{
41 	.ah_magic			= AR5210_MAGIC,
42 
43 	.ah_getRateTable		= ar5210GetRateTable,
44 	.ah_detach			= ar5210Detach,
45 
46 	/* Reset Functions */
47 	.ah_reset			= ar5210Reset,
48 	.ah_phyDisable			= ar5210PhyDisable,
49 	.ah_disable			= ar5210Disable,
50 	.ah_configPCIE			= ar5210ConfigPCIE,
51 	.ah_disablePCIE			= ar5210DisablePCIE,
52 	.ah_setPCUConfig		= ar5210SetPCUConfig,
53 	.ah_perCalibration		= ar5210PerCalibration,
54 	.ah_perCalibrationN		= ar5210PerCalibrationN,
55 	.ah_resetCalValid		= ar5210ResetCalValid,
56 	.ah_setTxPowerLimit		= ar5210SetTxPowerLimit,
57 	.ah_getChanNoise		= ath_hal_getChanNoise,
58 
59 	/* Transmit functions */
60 	.ah_updateTxTrigLevel		= ar5210UpdateTxTrigLevel,
61 	.ah_setupTxQueue		= ar5210SetupTxQueue,
62 	.ah_setTxQueueProps             = ar5210SetTxQueueProps,
63 	.ah_getTxQueueProps             = ar5210GetTxQueueProps,
64 	.ah_releaseTxQueue		= ar5210ReleaseTxQueue,
65 	.ah_resetTxQueue		= ar5210ResetTxQueue,
66 	.ah_getTxDP			= ar5210GetTxDP,
67 	.ah_setTxDP			= ar5210SetTxDP,
68 	.ah_numTxPending		= ar5210NumTxPending,
69 	.ah_startTxDma			= ar5210StartTxDma,
70 	.ah_stopTxDma			= ar5210StopTxDma,
71 	.ah_setupTxDesc			= ar5210SetupTxDesc,
72 	.ah_setupXTxDesc		= ar5210SetupXTxDesc,
73 	.ah_fillTxDesc			= ar5210FillTxDesc,
74 	.ah_procTxDesc			= ar5210ProcTxDesc,
75 	.ah_getTxIntrQueue		= ar5210GetTxIntrQueue,
76 	.ah_reqTxIntrDesc 		= ar5210IntrReqTxDesc,
77 	.ah_getTxCompletionRates	= ar5210GetTxCompletionRates,
78 	.ah_setTxDescLink		= ar5210SetTxDescLink,
79 	.ah_getTxDescLink		= ar5210GetTxDescLink,
80 	.ah_getTxDescLinkPtr		= ar5210GetTxDescLinkPtr,
81 
82 	/* RX Functions */
83 	.ah_getRxDP			= ar5210GetRxDP,
84 	.ah_setRxDP			= ar5210SetRxDP,
85 	.ah_enableReceive		= ar5210EnableReceive,
86 	.ah_stopDmaReceive		= ar5210StopDmaReceive,
87 	.ah_startPcuReceive		= ar5210StartPcuReceive,
88 	.ah_stopPcuReceive		= ar5210StopPcuReceive,
89 	.ah_setMulticastFilter		= ar5210SetMulticastFilter,
90 	.ah_setMulticastFilterIndex	= ar5210SetMulticastFilterIndex,
91 	.ah_clrMulticastFilterIndex	= ar5210ClrMulticastFilterIndex,
92 	.ah_getRxFilter			= ar5210GetRxFilter,
93 	.ah_setRxFilter			= ar5210SetRxFilter,
94 	.ah_setupRxDesc			= ar5210SetupRxDesc,
95 	.ah_procRxDesc			= ar5210ProcRxDesc,
96 	.ah_rxMonitor			= ar5210RxMonitor,
97 	.ah_aniPoll			= ar5210AniPoll,
98 	.ah_procMibEvent		= ar5210MibEvent,
99 
100 	/* Misc Functions */
101 	.ah_getCapability		= ar5210GetCapability,
102 	.ah_setCapability		= ar5210SetCapability,
103 	.ah_getDiagState		= ar5210GetDiagState,
104 	.ah_getMacAddress		= ar5210GetMacAddress,
105 	.ah_setMacAddress		= ar5210SetMacAddress,
106 	.ah_getBssIdMask		= ar5210GetBssIdMask,
107 	.ah_setBssIdMask		= ar5210SetBssIdMask,
108 	.ah_setRegulatoryDomain		= ar5210SetRegulatoryDomain,
109 	.ah_setLedState			= ar5210SetLedState,
110 	.ah_writeAssocid		= ar5210WriteAssocid,
111 	.ah_gpioCfgInput		= ar5210GpioCfgInput,
112 	.ah_gpioCfgOutput		= ar5210GpioCfgOutput,
113 	.ah_gpioGet			= ar5210GpioGet,
114 	.ah_gpioSet			= ar5210GpioSet,
115 	.ah_gpioSetIntr			= ar5210Gpio0SetIntr,
116 	.ah_getTsf32			= ar5210GetTsf32,
117 	.ah_getTsf64			= ar5210GetTsf64,
118 	.ah_resetTsf			= ar5210ResetTsf,
119 	.ah_detectCardPresent		= ar5210DetectCardPresent,
120 	.ah_updateMibCounters		= ar5210UpdateMibCounters,
121 	.ah_getRfGain			= ar5210GetRfgain,
122 	.ah_getDefAntenna		= ar5210GetDefAntenna,
123 	.ah_setDefAntenna		= ar5210SetDefAntenna,
124 	.ah_getAntennaSwitch		= ar5210GetAntennaSwitch,
125 	.ah_setAntennaSwitch		= ar5210SetAntennaSwitch,
126 	.ah_setSifsTime			= ar5210SetSifsTime,
127 	.ah_getSifsTime			= ar5210GetSifsTime,
128 	.ah_setSlotTime			= ar5210SetSlotTime,
129 	.ah_getSlotTime			= ar5210GetSlotTime,
130 	.ah_setAckTimeout		= ar5210SetAckTimeout,
131 	.ah_getAckTimeout		= ar5210GetAckTimeout,
132 	.ah_setAckCTSRate		= ar5210SetAckCTSRate,
133 	.ah_getAckCTSRate		= ar5210GetAckCTSRate,
134 	.ah_setCTSTimeout		= ar5210SetCTSTimeout,
135 	.ah_getCTSTimeout		= ar5210GetCTSTimeout,
136 	.ah_setDecompMask		= ar5210SetDecompMask,
137 	.ah_setCoverageClass		= ar5210SetCoverageClass,
138 	.ah_setQuiet			= ar5210SetQuiet,
139 	.ah_get11nExtBusy		= ar5210Get11nExtBusy,
140 	.ah_getMibCycleCounts		= ar5210GetMibCycleCounts,
141 	.ah_setChainMasks		= ar5210SetChainMasks,
142 	.ah_enableDfs			= ar5210EnableDfs,
143 	.ah_getDfsThresh		= ar5210GetDfsThresh,
144 	/* XXX procRadarEvent */
145 	/* XXX isFastClockEnabled */
146 
147 	/* Key Cache Functions */
148 	.ah_getKeyCacheSize		= ar5210GetKeyCacheSize,
149 	.ah_resetKeyCacheEntry		= ar5210ResetKeyCacheEntry,
150 	.ah_isKeyCacheEntryValid	= ar5210IsKeyCacheEntryValid,
151 	.ah_setKeyCacheEntry		= ar5210SetKeyCacheEntry,
152 	.ah_setKeyCacheEntryMac		= ar5210SetKeyCacheEntryMac,
153 
154 	/* Power Management Functions */
155 	.ah_setPowerMode		= ar5210SetPowerMode,
156 	.ah_getPowerMode		= ar5210GetPowerMode,
157 
158 	/* Beacon Functions */
159 	.ah_setBeaconTimers		= ar5210SetBeaconTimers,
160 	.ah_beaconInit			= ar5210BeaconInit,
161 	.ah_setStationBeaconTimers	= ar5210SetStaBeaconTimers,
162 	.ah_resetStationBeaconTimers	= ar5210ResetStaBeaconTimers,
163 	.ah_getNextTBTT			= ar5210GetNextTBTT,
164 
165 	/* Interrupt Functions */
166 	.ah_isInterruptPending		= ar5210IsInterruptPending,
167 	.ah_getPendingInterrupts	= ar5210GetPendingInterrupts,
168 	.ah_getInterrupts		= ar5210GetInterrupts,
169 	.ah_setInterrupts		= ar5210SetInterrupts },
170 
171 	.ah_getChannelEdges		= ar5210GetChannelEdges,
172 	.ah_getWirelessModes		= ar5210GetWirelessModes,
173 	.ah_eepromRead			= ar5210EepromRead,
174 #ifdef AH_SUPPORT_WRITE_EEPROM
175 	.ah_eepromWrite			= ar5210EepromWrite,
176 #endif
177 	.ah_getChipPowerLimits		= ar5210GetChipPowerLimits,
178 };
179 
180 static HAL_BOOL ar5210FillCapabilityInfo(struct ath_hal *ah);
181 
182 /*
183  * Attach for an AR5210 part.
184  */
185 static struct ath_hal *
186 ar5210Attach(uint16_t devid, HAL_SOFTC sc, HAL_BUS_TAG st, HAL_BUS_HANDLE sh,
187 	uint16_t *eepromdata, HAL_OPS_CONFIG *ah_config, HAL_STATUS *status)
188 {
189 #define	N(a)	(sizeof(a)/sizeof(a[0]))
190 	struct ath_hal_5210 *ahp;
191 	struct ath_hal *ah;
192 	uint32_t revid, pcicfg;
193 	uint16_t eeval;
194 	HAL_STATUS ecode;
195 	int i;
196 
197 	HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH,
198 	    "%s: devid 0x%x sc %p st %p sh %p\n", __func__, devid,
199 	    sc, (void*) st, (void*) sh);
200 
201 	/* NB: memory is returned zero'd */
202 	ahp = ath_hal_malloc(sizeof (struct ath_hal_5210));
203 	if (ahp == AH_NULL) {
204 		HALDEBUG(AH_NULL, HAL_DEBUG_ANY,
205 		    "%s: no memory for state block\n", __func__);
206 		ecode = HAL_ENOMEM;
207 		goto bad;
208 	}
209 	ah = &ahp->ah_priv.h;
210 	/* set initial values */
211 	OS_MEMCPY(&ahp->ah_priv, &ar5210hal, sizeof(struct ath_hal_private));
212 	ah->ah_sc = sc;
213 	ah->ah_st = st;
214 	ah->ah_sh = sh;
215 
216 	ah->ah_devid = devid;			/* NB: for AH_DEBUG_ALQ */
217 	AH_PRIVATE(ah)->ah_devid = devid;
218 	AH_PRIVATE(ah)->ah_subvendorid = 0;	/* XXX */
219 
220 	AH_PRIVATE(ah)->ah_powerLimit = AR5210_MAX_RATE_POWER;
221 	AH_PRIVATE(ah)->ah_tpScale = HAL_TP_SCALE_MAX;	/* no scaling */
222 
223 	ah->ah_powerMode = HAL_PM_UNDEFINED;
224 	ahp->ah_staId1Defaults = 0;
225 	ahp->ah_rssiThr = INIT_RSSI_THR;
226 	ahp->ah_sifstime = (u_int) -1;
227 	ahp->ah_slottime = (u_int) -1;
228 	ahp->ah_acktimeout = (u_int) -1;
229 	ahp->ah_ctstimeout = (u_int) -1;
230 
231 	if (!ar5210ChipReset(ah, AH_NULL)) {	/* reset chip */
232 		HALDEBUG(ah, HAL_DEBUG_ANY, "%s: chip reset failed\n",
233 		    __func__);
234 		ecode = HAL_EIO;
235 		goto bad;
236 	}
237 
238 	/* Read Revisions from Chips */
239 	AH_PRIVATE(ah)->ah_macVersion = 1;
240 	AH_PRIVATE(ah)->ah_macRev = OS_REG_READ(ah, AR_SREV) & 0xff;
241 	AH_PRIVATE(ah)->ah_phyRev = OS_REG_READ(ah, AR_PHY_CHIPID);
242 	AH_PRIVATE(ah)->ah_analog2GhzRev = 0;
243 
244 	/* Read Radio Chip Rev Extract */
245 	OS_REG_WRITE(ah, (AR_PHY_BASE + (0x34 << 2)), 0x00001c16);
246 	for (i = 0; i < 4; i++)
247 		OS_REG_WRITE(ah, (AR_PHY_BASE + (0x20 << 2)), 0x00010000);
248 	revid = (OS_REG_READ(ah, AR_PHY_BASE + (256 << 2)) >> 28) & 0xf;
249 
250 	/* Chip labelling is 1 greater than revision register for AR5110 */
251 	AH_PRIVATE(ah)->ah_analog5GhzRev = ath_hal_reverseBits(revid, 4) + 1;
252 
253 	/*
254 	 * Read all the settings from the EEPROM and stash
255 	 * ones we'll use later.
256 	 */
257 	pcicfg = OS_REG_READ(ah, AR_PCICFG);
258 	OS_REG_WRITE(ah, AR_PCICFG, pcicfg | AR_PCICFG_EEPROMSEL);
259 	ecode = ath_hal_v1EepromAttach(ah);
260 	if (ecode != HAL_OK) {
261 		goto eebad;
262 	}
263 	ecode = ath_hal_eepromGet(ah, AR_EEP_REGDMN_0, &eeval);
264 	if (ecode != HAL_OK) {
265 		HALDEBUG(ah, HAL_DEBUG_ANY,
266 		    "%s: cannot read regulatory domain from EEPROM\n",
267 		    __func__);
268 		goto eebad;
269         }
270 	AH_PRIVATE(ah)->ah_currentRD = eeval;
271 	ecode = ath_hal_eepromGet(ah, AR_EEP_MACADDR, ahp->ah_macaddr);
272 	if (ecode != HAL_OK) {
273 		HALDEBUG(ah, HAL_DEBUG_ANY,
274 		    "%s: error getting mac address from EEPROM\n", __func__);
275 		goto eebad;
276         }
277 	OS_REG_WRITE(ah, AR_PCICFG, pcicfg);	/* disable EEPROM access */
278 
279 	AH_PRIVATE(ah)->ah_getNfAdjust = ar5210GetNfAdjust;
280 
281 	/*
282 	 * Got everything we need now to setup the capabilities.
283 	 */
284 	(void) ar5210FillCapabilityInfo(ah);
285 
286 	HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s: return\n", __func__);
287 
288 	return ah;
289 eebad:
290 	OS_REG_WRITE(ah, AR_PCICFG, pcicfg);	/* disable EEPROM access */
291 bad:
292 	if (ahp)
293 		ath_hal_free(ahp);
294 	if (status)
295 		*status = ecode;
296 	return AH_NULL;
297 #undef N
298 }
299 
300 void
301 ar5210Detach(struct ath_hal *ah)
302 {
303 	HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s:\n", __func__);
304 
305 	HALASSERT(ah != AH_NULL);
306 	HALASSERT(ah->ah_magic == AR5210_MAGIC);
307 
308 	ath_hal_eepromDetach(ah);
309 	ath_hal_free(ah);
310 }
311 
312 /*
313  * Store the channel edges for the requested operational mode
314  */
315 static HAL_BOOL
316 ar5210GetChannelEdges(struct ath_hal *ah,
317 	uint16_t flags, uint16_t *low, uint16_t *high)
318 {
319 	if (flags & IEEE80211_CHAN_5GHZ) {
320 		*low = 5120;
321 		*high = 5430;
322 		return AH_TRUE;
323 	} else {
324 		return AH_FALSE;
325 	}
326 }
327 
328 static HAL_BOOL
329 ar5210GetChipPowerLimits(struct ath_hal *ah, struct ieee80211_channel *chan)
330 {
331 	/* XXX fill in, this is just a placeholder */
332 	HALDEBUG(ah, HAL_DEBUG_ATTACH,
333 	    "%s: no min/max power for %u/0x%x\n",
334 	    __func__, chan->ic_freq, chan->ic_flags);
335 	chan->ic_maxpower = AR5210_MAX_RATE_POWER;
336 	chan->ic_minpower = 0;
337 	return AH_TRUE;
338 }
339 
340 static void
341 ar5210ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore, HAL_BOOL power_off)
342 {
343 }
344 
345 static void
346 ar5210DisablePCIE(struct ath_hal *ah)
347 {
348 }
349 
350 /*
351  * Fill all software cached or static hardware state information.
352  */
353 static HAL_BOOL
354 ar5210FillCapabilityInfo(struct ath_hal *ah)
355 {
356 	struct ath_hal_private *ahpriv = AH_PRIVATE(ah);
357 	HAL_CAPABILITIES *pCap = &ahpriv->ah_caps;
358 
359 	pCap->halWirelessModes |= HAL_MODE_11A;
360 
361 	pCap->halLow5GhzChan = 5120;
362 	pCap->halHigh5GhzChan = 5430;
363 
364 	pCap->halSleepAfterBeaconBroken = AH_TRUE;
365 	pCap->halPSPollBroken = AH_FALSE;
366 	pCap->halNumMRRetries = 1;		/* No hardware MRR support */
367 	pCap->halNumTxMaps = 1;			/* Single TX ptr per descr */
368 
369 	pCap->halTotalQueues = HAL_NUM_TX_QUEUES;
370 	pCap->halKeyCacheSize = 64;
371 
372 	/* XXX not needed */
373 	pCap->halChanHalfRate = AH_FALSE;
374 	pCap->halChanQuarterRate = AH_FALSE;
375 
376 	/*
377 	 * RSSI uses the combined field; some 11n NICs may use
378 	 * the control chain RSSI.
379 	 */
380 	pCap->halUseCombinedRadarRssi = AH_TRUE;
381 
382 	if (ath_hal_eepromGetFlag(ah, AR_EEP_RFKILL)) {
383 		/*
384 		 * Setup initial rfsilent settings based on the EEPROM
385 		 * contents.  Pin 0, polarity 0 is fixed; record this
386 		 * using the EEPROM format found in later parts.
387 		 */
388 		ahpriv->ah_rfsilent = SM(0, AR_EEPROM_RFSILENT_GPIO_SEL)
389 				    | SM(0, AR_EEPROM_RFSILENT_POLARITY);
390 		ahpriv->ah_rfkillEnabled = AH_TRUE;
391 		pCap->halRfSilentSupport = AH_TRUE;
392 	}
393 
394 	pCap->halTxTstampPrecision = 16;
395 	pCap->halRxTstampPrecision = 15;	/* NB: s/w extended from 13 */
396 	pCap->halIntrMask = (HAL_INT_COMMON - HAL_INT_BNR)
397 			| HAL_INT_RX
398 			| HAL_INT_TX
399 			| HAL_INT_FATAL
400 			;
401 
402 	pCap->hal4kbSplitTransSupport = AH_TRUE;
403 	pCap->halHasRxSelfLinkedTail = AH_TRUE;
404 
405 	ahpriv->ah_rxornIsFatal = AH_TRUE;
406 	return AH_TRUE;
407 }
408 
409 static const char*
410 ar5210Probe(uint16_t vendorid, uint16_t devid)
411 {
412 	if (vendorid == ATHEROS_VENDOR_ID &&
413 	    (devid == AR5210_PROD || devid == AR5210_DEFAULT))
414 		return "Atheros 5210";
415 	return AH_NULL;
416 }
417 AH_CHIP(AR5210, ar5210Probe, ar5210Attach);
418