Sun Oct 9 14:40:47 2016 UTC ()
PR/51540: Henning Petersen: replace , with ;


(christos)
diff -r1.4 -r1.5 src/sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c

cvs diff -r1.4 -r1.5 src/sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c (switch to unified diff)

--- src/sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c 2011/03/07 11:25:44 1.4
+++ src/sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c 2016/10/09 14:40:47 1.5
@@ -1,845 +1,845 @@ @@ -1,845 +1,845 @@
1/* 1/*
2 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting 2 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3 * Copyright (c) 2002-2008 Atheros Communications, Inc. 3 * Copyright (c) 2002-2008 Atheros Communications, Inc.
4 * 4 *
5 * Permission to use, copy, modify, and/or distribute this software for any 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 6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies. 7 * copyright notice and this permission notice appear in all copies.
8 * 8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 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 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 * 16 *
17 * $Id: ar5416_attach.c,v 1.4 2011/03/07 11:25:44 cegger Exp $ 17 * $Id: ar5416_attach.c,v 1.5 2016/10/09 14:40:47 christos Exp $
18 */ 18 */
19#include "opt_ah.h" 19#include "opt_ah.h"
20 20
21#include "ah.h" 21#include "ah.h"
22#include "ah_internal.h" 22#include "ah_internal.h"
23#include "ah_devid.h" 23#include "ah_devid.h"
24 24
25#include "ah_eeprom_v14.h" 25#include "ah_eeprom_v14.h"
26 26
27#include "ar5416/ar5416.h" 27#include "ar5416/ar5416.h"
28#include "ar5416/ar5416reg.h" 28#include "ar5416/ar5416reg.h"
29#include "ar5416/ar5416phy.h" 29#include "ar5416/ar5416phy.h"
30 30
31#include "ar5416/ar5416.ini" 31#include "ar5416/ar5416.ini"
32 32
33static void ar5416ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore); 33static void ar5416ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore);
34static void ar5416WriteIni(struct ath_hal *ah, 34static void ar5416WriteIni(struct ath_hal *ah,
35 HAL_CHANNEL_INTERNAL *chan); 35 HAL_CHANNEL_INTERNAL *chan);
36static void ar5416SpurMitigate(struct ath_hal *ah, 36static void ar5416SpurMitigate(struct ath_hal *ah,
37 HAL_CHANNEL_INTERNAL *chan); 37 HAL_CHANNEL_INTERNAL *chan);
38 38
39static void 39static void
40ar5416AniSetup(struct ath_hal *ah) 40ar5416AniSetup(struct ath_hal *ah)
41{ 41{
42 static const struct ar5212AniParams aniparams = { 42 static const struct ar5212AniParams aniparams = {
43 .maxNoiseImmunityLevel = 4, /* levels 0..4 */ 43 .maxNoiseImmunityLevel = 4, /* levels 0..4 */
44 .totalSizeDesired = { -55, -55, -55, -55, -62 }, 44 .totalSizeDesired = { -55, -55, -55, -55, -62 },
45 .coarseHigh = { -14, -14, -14, -14, -12 }, 45 .coarseHigh = { -14, -14, -14, -14, -12 },
46 .coarseLow = { -64, -64, -64, -64, -70 }, 46 .coarseLow = { -64, -64, -64, -64, -70 },
47 .firpwr = { -78, -78, -78, -78, -80 }, 47 .firpwr = { -78, -78, -78, -78, -80 },
48 .maxSpurImmunityLevel = 2, 48 .maxSpurImmunityLevel = 2,
49 .cycPwrThr1 = { 2, 4, 6 }, 49 .cycPwrThr1 = { 2, 4, 6 },
50 .maxFirstepLevel = 2, /* levels 0..2 */ 50 .maxFirstepLevel = 2, /* levels 0..2 */
51 .firstep = { 0, 4, 8 }, 51 .firstep = { 0, 4, 8 },
52 .ofdmTrigHigh = 500, 52 .ofdmTrigHigh = 500,
53 .ofdmTrigLow = 200, 53 .ofdmTrigLow = 200,
54 .cckTrigHigh = 200, 54 .cckTrigHigh = 200,
55 .cckTrigLow = 100, 55 .cckTrigLow = 100,
56 .rssiThrHigh = 40, 56 .rssiThrHigh = 40,
57 .rssiThrLow = 7, 57 .rssiThrLow = 7,
58 .period = 100, 58 .period = 100,
59 }; 59 };
60 /* NB: ANI is not enabled yet */ 60 /* NB: ANI is not enabled yet */
61 ar5212AniAttach(ah, &aniparams, &aniparams, AH_FALSE); 61 ar5212AniAttach(ah, &aniparams, &aniparams, AH_FALSE);
62} 62}
63 63
64/* 64/*
65 * Attach for an AR5416 part. 65 * Attach for an AR5416 part.
66 */ 66 */
67void 67void
68ar5416InitState(struct ath_hal_5416 *ahp5416, uint16_t devid, HAL_SOFTC sc, 68ar5416InitState(struct ath_hal_5416 *ahp5416, uint16_t devid, HAL_SOFTC sc,
69 HAL_BUS_TAG st, HAL_BUS_HANDLE sh, HAL_STATUS *status) 69 HAL_BUS_TAG st, HAL_BUS_HANDLE sh, HAL_STATUS *status)
70{ 70{
71 struct ath_hal_5212 *ahp; 71 struct ath_hal_5212 *ahp;
72 struct ath_hal *ah; 72 struct ath_hal *ah;
73 73
74 ahp = &ahp5416->ah_5212; 74 ahp = &ahp5416->ah_5212;
75 ar5212InitState(ahp, devid, sc, st, sh, status); 75 ar5212InitState(ahp, devid, sc, st, sh, status);
76 ah = &ahp->ah_priv.h; 76 ah = &ahp->ah_priv.h;
77 77
78 /* override 5212 methods for our needs */ 78 /* override 5212 methods for our needs */
79 ah->ah_magic = AR5416_MAGIC; 79 ah->ah_magic = AR5416_MAGIC;
80 ah->ah_getRateTable = ar5416GetRateTable; 80 ah->ah_getRateTable = ar5416GetRateTable;
81 ah->ah_detach = ar5416Detach; 81 ah->ah_detach = ar5416Detach;
82 82
83 /* Reset functions */ 83 /* Reset functions */
84 ah->ah_reset = ar5416Reset; 84 ah->ah_reset = ar5416Reset;
85 ah->ah_phyDisable = ar5416PhyDisable; 85 ah->ah_phyDisable = ar5416PhyDisable;
86 ah->ah_disable = ar5416Disable; 86 ah->ah_disable = ar5416Disable;
87 ah->ah_configPCIE = ar5416ConfigPCIE; 87 ah->ah_configPCIE = ar5416ConfigPCIE;
88 ah->ah_perCalibration = ar5416PerCalibration; 88 ah->ah_perCalibration = ar5416PerCalibration;
89 ah->ah_perCalibrationN = ar5416PerCalibrationN, 89 ah->ah_perCalibrationN = ar5416PerCalibrationN;
90 ah->ah_resetCalValid = ar5416ResetCalValid, 90 ah->ah_resetCalValid = ar5416ResetCalValid;
91 ah->ah_setTxPowerLimit = ar5416SetTxPowerLimit; 91 ah->ah_setTxPowerLimit = ar5416SetTxPowerLimit;
92 ah->ah_setTxPower = ar5416SetTransmitPower; 92 ah->ah_setTxPower = ar5416SetTransmitPower;
93 ah->ah_setBoardValues = ar5416SetBoardValues; 93 ah->ah_setBoardValues = ar5416SetBoardValues;
94 94
95 /* Transmit functions */ 95 /* Transmit functions */
96 ah->ah_stopTxDma = ar5416StopTxDma; 96 ah->ah_stopTxDma = ar5416StopTxDma;
97 ah->ah_setupTxDesc = ar5416SetupTxDesc; 97 ah->ah_setupTxDesc = ar5416SetupTxDesc;
98 ah->ah_setupXTxDesc = ar5416SetupXTxDesc; 98 ah->ah_setupXTxDesc = ar5416SetupXTxDesc;
99 ah->ah_fillTxDesc = ar5416FillTxDesc; 99 ah->ah_fillTxDesc = ar5416FillTxDesc;
100 ah->ah_procTxDesc = ar5416ProcTxDesc; 100 ah->ah_procTxDesc = ar5416ProcTxDesc;
101 101
102 /* Receive Functions */ 102 /* Receive Functions */
103 ah->ah_startPcuReceive = ar5416StartPcuReceive; 103 ah->ah_startPcuReceive = ar5416StartPcuReceive;
104 ah->ah_stopPcuReceive = ar5416StopPcuReceive; 104 ah->ah_stopPcuReceive = ar5416StopPcuReceive;
105 ah->ah_setupRxDesc = ar5416SetupRxDesc; 105 ah->ah_setupRxDesc = ar5416SetupRxDesc;
106 ah->ah_procRxDesc = ar5416ProcRxDesc; 106 ah->ah_procRxDesc = ar5416ProcRxDesc;
107 ah->ah_rxMonitor = ar5416AniPoll, 107 ah->ah_rxMonitor = ar5416AniPoll;
108 ah->ah_procMibEvent = ar5416ProcessMibIntr, 108 ah->ah_procMibEvent = ar5416ProcessMibIntr;
109 109
110 /* Misc Functions */ 110 /* Misc Functions */
111 ah->ah_getDiagState = ar5416GetDiagState; 111 ah->ah_getDiagState = ar5416GetDiagState;
112 ah->ah_setLedState = ar5416SetLedState; 112 ah->ah_setLedState = ar5416SetLedState;
113 ah->ah_gpioCfgOutput = ar5416GpioCfgOutput; 113 ah->ah_gpioCfgOutput = ar5416GpioCfgOutput;
114 ah->ah_gpioCfgInput = ar5416GpioCfgInput; 114 ah->ah_gpioCfgInput = ar5416GpioCfgInput;
115 ah->ah_gpioGet = ar5416GpioGet; 115 ah->ah_gpioGet = ar5416GpioGet;
116 ah->ah_gpioSet = ar5416GpioSet; 116 ah->ah_gpioSet = ar5416GpioSet;
117 ah->ah_gpioSetIntr = ar5416GpioSetIntr; 117 ah->ah_gpioSetIntr = ar5416GpioSetIntr;
118 ah->ah_resetTsf = ar5416ResetTsf; 118 ah->ah_resetTsf = ar5416ResetTsf;
119 ah->ah_getRfGain = ar5416GetRfgain; 119 ah->ah_getRfGain = ar5416GetRfgain;
120 ah->ah_setAntennaSwitch = ar5416SetAntennaSwitch; 120 ah->ah_setAntennaSwitch = ar5416SetAntennaSwitch;
121 ah->ah_setDecompMask = ar5416SetDecompMask; 121 ah->ah_setDecompMask = ar5416SetDecompMask;
122 ah->ah_setCoverageClass = ar5416SetCoverageClass; 122 ah->ah_setCoverageClass = ar5416SetCoverageClass;
123 123
124 ah->ah_resetKeyCacheEntry = ar5416ResetKeyCacheEntry; 124 ah->ah_resetKeyCacheEntry = ar5416ResetKeyCacheEntry;
125 ah->ah_setKeyCacheEntry = ar5416SetKeyCacheEntry; 125 ah->ah_setKeyCacheEntry = ar5416SetKeyCacheEntry;
126 126
127 /* Power Management Functions */ 127 /* Power Management Functions */
128 ah->ah_setPowerMode = ar5416SetPowerMode; 128 ah->ah_setPowerMode = ar5416SetPowerMode;
129 129
130 /* Beacon Management Functions */ 130 /* Beacon Management Functions */
131 ah->ah_setBeaconTimers = ar5416SetBeaconTimers; 131 ah->ah_setBeaconTimers = ar5416SetBeaconTimers;
132 ah->ah_beaconInit = ar5416BeaconInit; 132 ah->ah_beaconInit = ar5416BeaconInit;
133 ah->ah_setStationBeaconTimers = ar5416SetStaBeaconTimers; 133 ah->ah_setStationBeaconTimers = ar5416SetStaBeaconTimers;
134 ah->ah_resetStationBeaconTimers = ar5416ResetStaBeaconTimers; 134 ah->ah_resetStationBeaconTimers = ar5416ResetStaBeaconTimers;
135 135
136 /* XXX 802.11n Functions */ 136 /* XXX 802.11n Functions */
137#if 0 137#if 0
138 ah->ah_chainTxDesc = ar5416ChainTxDesc; 138 ah->ah_chainTxDesc = ar5416ChainTxDesc;
139 ah->ah_setupFirstTxDesc = ar5416SetupFirstTxDesc; 139 ah->ah_setupFirstTxDesc = ar5416SetupFirstTxDesc;
140 ah->ah_setupLastTxDesc = ar5416SetupLastTxDesc; 140 ah->ah_setupLastTxDesc = ar5416SetupLastTxDesc;
141 ah->ah_set11nRateScenario = ar5416Set11nRateScenario; 141 ah->ah_set11nRateScenario = ar5416Set11nRateScenario;
142 ah->ah_set11nAggrMiddle = ar5416Set11nAggrMiddle; 142 ah->ah_set11nAggrMiddle = ar5416Set11nAggrMiddle;
143 ah->ah_clr11nAggr = ar5416Clr11nAggr; 143 ah->ah_clr11nAggr = ar5416Clr11nAggr;
144 ah->ah_set11nBurstDuration = ar5416Set11nBurstDuration; 144 ah->ah_set11nBurstDuration = ar5416Set11nBurstDuration;
145 ah->ah_get11nExtBusy = ar5416Get11nExtBusy; 145 ah->ah_get11nExtBusy = ar5416Get11nExtBusy;
146 ah->ah_set11nMac2040 = ar5416Set11nMac2040; 146 ah->ah_set11nMac2040 = ar5416Set11nMac2040;
147 ah->ah_get11nRxClear = ar5416Get11nRxClear; 147 ah->ah_get11nRxClear = ar5416Get11nRxClear;
148 ah->ah_set11nRxClear = ar5416Set11nRxClear; 148 ah->ah_set11nRxClear = ar5416Set11nRxClear;
149#endif 149#endif
150 150
151 /* Interrupt functions */ 151 /* Interrupt functions */
152 ah->ah_isInterruptPending = ar5416IsInterruptPending; 152 ah->ah_isInterruptPending = ar5416IsInterruptPending;
153 ah->ah_getPendingInterrupts = ar5416GetPendingInterrupts; 153 ah->ah_getPendingInterrupts = ar5416GetPendingInterrupts;
154 ah->ah_setInterrupts = ar5416SetInterrupts; 154 ah->ah_setInterrupts = ar5416SetInterrupts;
155 155
156 ahp->ah_priv.ah_getWirelessModes= ar5416GetWirelessModes; 156 ahp->ah_priv.ah_getWirelessModes= ar5416GetWirelessModes;
157 ahp->ah_priv.ah_eepromRead = ar5416EepromRead; 157 ahp->ah_priv.ah_eepromRead = ar5416EepromRead;
158#ifdef AH_SUPPORT_WRITE_EEPROM 158#ifdef AH_SUPPORT_WRITE_EEPROM
159 ahp->ah_priv.ah_eepromWrite = ar5416EepromWrite; 159 ahp->ah_priv.ah_eepromWrite = ar5416EepromWrite;
160#endif 160#endif
161 ahp->ah_priv.ah_gpioCfgOutput = ar5416GpioCfgOutput; 161 ahp->ah_priv.ah_gpioCfgOutput = ar5416GpioCfgOutput;
162 ahp->ah_priv.ah_gpioCfgInput = ar5416GpioCfgInput; 162 ahp->ah_priv.ah_gpioCfgInput = ar5416GpioCfgInput;
163 ahp->ah_priv.ah_gpioGet = ar5416GpioGet; 163 ahp->ah_priv.ah_gpioGet = ar5416GpioGet;
164 ahp->ah_priv.ah_gpioSet = ar5416GpioSet; 164 ahp->ah_priv.ah_gpioSet = ar5416GpioSet;
165 ahp->ah_priv.ah_gpioSetIntr = ar5416GpioSetIntr; 165 ahp->ah_priv.ah_gpioSetIntr = ar5416GpioSetIntr;
166 ahp->ah_priv.ah_getChipPowerLimits = ar5416GetChipPowerLimits; 166 ahp->ah_priv.ah_getChipPowerLimits = ar5416GetChipPowerLimits;
167 167
168 AH5416(ah)->ah_writeIni = ar5416WriteIni; 168 AH5416(ah)->ah_writeIni = ar5416WriteIni;
169 AH5416(ah)->ah_spurMitigate = ar5416SpurMitigate; 169 AH5416(ah)->ah_spurMitigate = ar5416SpurMitigate;
170 /* 170 /*
171 * Start by setting all Owl devices to 2x2 171 * Start by setting all Owl devices to 2x2
172 */ 172 */
173 AH5416(ah)->ah_rx_chainmask = AR5416_DEFAULT_RXCHAINMASK; 173 AH5416(ah)->ah_rx_chainmask = AR5416_DEFAULT_RXCHAINMASK;
174 AH5416(ah)->ah_tx_chainmask = AR5416_DEFAULT_TXCHAINMASK; 174 AH5416(ah)->ah_tx_chainmask = AR5416_DEFAULT_TXCHAINMASK;
175} 175}
176 176
177uint32_t 177uint32_t
178ar5416GetRadioRev(struct ath_hal *ah) 178ar5416GetRadioRev(struct ath_hal *ah)
179{ 179{
180 uint32_t val; 180 uint32_t val;
181 int i; 181 int i;
182 182
183 /* Read Radio Chip Rev Extract */ 183 /* Read Radio Chip Rev Extract */
184 OS_REG_WRITE(ah, AR_PHY(0x36), 0x00007058); 184 OS_REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
185 for (i = 0; i < 8; i++) 185 for (i = 0; i < 8; i++)
186 OS_REG_WRITE(ah, AR_PHY(0x20), 0x00010000); 186 OS_REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
187 val = (OS_REG_READ(ah, AR_PHY(256)) >> 24) & 0xff; 187 val = (OS_REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
188 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4); 188 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
189 return ath_hal_reverseBits(val, 8); 189 return ath_hal_reverseBits(val, 8);
190} 190}
191 191
192/* 192/*
193 * Attach for an AR5416 part. 193 * Attach for an AR5416 part.
194 */ 194 */
195struct ath_hal * 195struct ath_hal *
196ar5416Attach(uint16_t devid, HAL_SOFTC sc, 196ar5416Attach(uint16_t devid, HAL_SOFTC sc,
197 HAL_BUS_TAG st, HAL_BUS_HANDLE sh, HAL_STATUS *status) 197 HAL_BUS_TAG st, HAL_BUS_HANDLE sh, HAL_STATUS *status)
198{ 198{
199 struct ath_hal_5416 *ahp5416; 199 struct ath_hal_5416 *ahp5416;
200 struct ath_hal_5212 *ahp; 200 struct ath_hal_5212 *ahp;
201 struct ath_hal *ah; 201 struct ath_hal *ah;
202 uint32_t val; 202 uint32_t val;
203 HAL_STATUS ecode; 203 HAL_STATUS ecode;
204 HAL_BOOL rfStatus; 204 HAL_BOOL rfStatus;
205 205
206 HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", 206 HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n",
207 __func__, sc, (void*) st, (void*) sh); 207 __func__, sc, (void*) st, (void*) sh);
208 208
209 /* NB: memory is returned zero'd */ 209 /* NB: memory is returned zero'd */
210 ahp5416 = ath_hal_malloc(sizeof (struct ath_hal_5416) + 210 ahp5416 = ath_hal_malloc(sizeof (struct ath_hal_5416) +
211 /* extra space for Owl 2.1/2.2 WAR */ 211 /* extra space for Owl 2.1/2.2 WAR */
212 sizeof(ar5416Addac) 212 sizeof(ar5416Addac)
213 ); 213 );
214 if (ahp5416 == AH_NULL) { 214 if (ahp5416 == AH_NULL) {
215 HALDEBUG(AH_NULL, HAL_DEBUG_ANY, 215 HALDEBUG(AH_NULL, HAL_DEBUG_ANY,
216 "%s: cannot allocate memory for state block\n", __func__); 216 "%s: cannot allocate memory for state block\n", __func__);
217 *status = HAL_ENOMEM; 217 *status = HAL_ENOMEM;
218 return AH_NULL; 218 return AH_NULL;
219 } 219 }
220 ar5416InitState(ahp5416, devid, sc, st, sh, status); 220 ar5416InitState(ahp5416, devid, sc, st, sh, status);
221 ahp = &ahp5416->ah_5212; 221 ahp = &ahp5416->ah_5212;
222 ah = &ahp->ah_priv.h; 222 ah = &ahp->ah_priv.h;
223 223
224 if (!ar5416SetResetReg(ah, HAL_RESET_POWER_ON)) { 224 if (!ar5416SetResetReg(ah, HAL_RESET_POWER_ON)) {
225 /* reset chip */ 225 /* reset chip */
226 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: couldn't reset chip\n", __func__); 226 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: couldn't reset chip\n", __func__);
227 ecode = HAL_EIO; 227 ecode = HAL_EIO;
228 goto bad; 228 goto bad;
229 } 229 }
230 230
231 if (!ar5416SetPowerMode(ah, HAL_PM_AWAKE, AH_TRUE)) { 231 if (!ar5416SetPowerMode(ah, HAL_PM_AWAKE, AH_TRUE)) {
232 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: couldn't wakeup chip\n", __func__); 232 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: couldn't wakeup chip\n", __func__);
233 ecode = HAL_EIO; 233 ecode = HAL_EIO;
234 goto bad; 234 goto bad;
235 } 235 }
236 /* Read Revisions from Chips before taking out of reset */ 236 /* Read Revisions from Chips before taking out of reset */
237 val = OS_REG_READ(ah, AR_SREV) & AR_SREV_ID; 237 val = OS_REG_READ(ah, AR_SREV) & AR_SREV_ID;
238 AH_PRIVATE(ah)->ah_macVersion = val >> AR_SREV_ID_S; 238 AH_PRIVATE(ah)->ah_macVersion = val >> AR_SREV_ID_S;
239 AH_PRIVATE(ah)->ah_macRev = val & AR_SREV_REVISION; 239 AH_PRIVATE(ah)->ah_macRev = val & AR_SREV_REVISION;
240 AH_PRIVATE(ah)->ah_ispcie = (devid == AR5416_DEVID_PCIE); 240 AH_PRIVATE(ah)->ah_ispcie = (devid == AR5416_DEVID_PCIE);
241 241
242 /* setup common ini data; rf backends handle remainder */ 242 /* setup common ini data; rf backends handle remainder */
243 HAL_INI_INIT(&ahp->ah_ini_modes, ar5416Modes, 6); 243 HAL_INI_INIT(&ahp->ah_ini_modes, ar5416Modes, 6);
244 HAL_INI_INIT(&ahp->ah_ini_common, ar5416Common, 2); 244 HAL_INI_INIT(&ahp->ah_ini_common, ar5416Common, 2);
245 245
246 HAL_INI_INIT(&AH5416(ah)->ah_ini_bb_rfgain, ar5416BB_RfGain, 3); 246 HAL_INI_INIT(&AH5416(ah)->ah_ini_bb_rfgain, ar5416BB_RfGain, 3);
247 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank0, ar5416Bank0, 2); 247 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank0, ar5416Bank0, 2);
248 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank1, ar5416Bank1, 2); 248 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank1, ar5416Bank1, 2);
249 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank2, ar5416Bank2, 2); 249 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank2, ar5416Bank2, 2);
250 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank3, ar5416Bank3, 3); 250 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank3, ar5416Bank3, 3);
251 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank6, ar5416Bank6, 3); 251 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank6, ar5416Bank6, 3);
252 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank7, ar5416Bank7, 2); 252 HAL_INI_INIT(&AH5416(ah)->ah_ini_bank7, ar5416Bank7, 2);
253 HAL_INI_INIT(&AH5416(ah)->ah_ini_addac, ar5416Addac, 2); 253 HAL_INI_INIT(&AH5416(ah)->ah_ini_addac, ar5416Addac, 2);
254 254
255 if (!IS_5416V2_2(ah)) { /* Owl 2.1/2.0 */ 255 if (!IS_5416V2_2(ah)) { /* Owl 2.1/2.0 */
256 struct ini { 256 struct ini {
257 uint32_t *data; /* NB: !const */ 257 uint32_t *data; /* NB: !const */
258 int rows, cols; 258 int rows, cols;
259 }; 259 };
260 /* override CLKDRV value */ 260 /* override CLKDRV value */
261 OS_MEMCPY(&AH5416(ah)[1], ar5416Addac, sizeof(ar5416Addac)); 261 OS_MEMCPY(&AH5416(ah)[1], ar5416Addac, sizeof(ar5416Addac));
262 AH5416(ah)->ah_ini_addac.data = (uint32_t *) &AH5416(ah)[1]; 262 AH5416(ah)->ah_ini_addac.data = (uint32_t *) &AH5416(ah)[1];
263 HAL_INI_VAL((struct ini *)&AH5416(ah)->ah_ini_addac, 31, 1) = 0; 263 HAL_INI_VAL((struct ini *)&AH5416(ah)->ah_ini_addac, 31, 1) = 0;
264 } 264 }
265 265
266 HAL_INI_INIT(&AH5416(ah)->ah_ini_pcieserdes, ar5416PciePhy, 2); 266 HAL_INI_INIT(&AH5416(ah)->ah_ini_pcieserdes, ar5416PciePhy, 2);
267 ar5416AttachPCIE(ah); 267 ar5416AttachPCIE(ah);
268 268
269 ecode = ath_hal_v14EepromAttach(ah); 269 ecode = ath_hal_v14EepromAttach(ah);
270 if (ecode != HAL_OK) 270 if (ecode != HAL_OK)
271 goto bad; 271 goto bad;
272 272
273 if (!ar5416ChipReset(ah, AH_NULL)) { /* reset chip */ 273 if (!ar5416ChipReset(ah, AH_NULL)) { /* reset chip */
274 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: chip reset failed\n", 274 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: chip reset failed\n",
275 __func__); 275 __func__);
276 ecode = HAL_EIO; 276 ecode = HAL_EIO;
277 goto bad; 277 goto bad;
278 } 278 }
279 279
280 AH_PRIVATE(ah)->ah_phyRev = OS_REG_READ(ah, AR_PHY_CHIP_ID); 280 AH_PRIVATE(ah)->ah_phyRev = OS_REG_READ(ah, AR_PHY_CHIP_ID);
281 281
282 if (!ar5212ChipTest(ah)) { 282 if (!ar5212ChipTest(ah)) {
283 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: hardware self-test failed\n", 283 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: hardware self-test failed\n",
284 __func__); 284 __func__);
285 ecode = HAL_ESELFTEST; 285 ecode = HAL_ESELFTEST;
286 goto bad; 286 goto bad;
287 } 287 }
288 288
289 /* 289 /*
290 * Set correct Baseband to analog shift 290 * Set correct Baseband to analog shift
291 * setting to access analog chips. 291 * setting to access analog chips.
292 */ 292 */
293 OS_REG_WRITE(ah, AR_PHY(0), 0x00000007); 293 OS_REG_WRITE(ah, AR_PHY(0), 0x00000007);
294 294
295 /* Read Radio Chip Rev Extract */ 295 /* Read Radio Chip Rev Extract */
296 AH_PRIVATE(ah)->ah_analog5GhzRev = ar5212GetRadioRev(ah); 296 AH_PRIVATE(ah)->ah_analog5GhzRev = ar5212GetRadioRev(ah);
297 switch (AH_PRIVATE(ah)->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR) { 297 switch (AH_PRIVATE(ah)->ah_analog5GhzRev & AR_RADIO_SREV_MAJOR) {
298 case AR_RAD5122_SREV_MAJOR: /* Fowl: 5G/2x2 */ 298 case AR_RAD5122_SREV_MAJOR: /* Fowl: 5G/2x2 */
299 case AR_RAD2122_SREV_MAJOR: /* Fowl: 2+5G/2x2 */ 299 case AR_RAD2122_SREV_MAJOR: /* Fowl: 2+5G/2x2 */
300 case AR_RAD2133_SREV_MAJOR: /* Fowl: 2G/3x3 */ 300 case AR_RAD2133_SREV_MAJOR: /* Fowl: 2G/3x3 */
301 case AR_RAD5133_SREV_MAJOR: /* Fowl: 2+5G/3x3 */ 301 case AR_RAD5133_SREV_MAJOR: /* Fowl: 2+5G/3x3 */
302 break; 302 break;
303 default: 303 default:
304 if (AH_PRIVATE(ah)->ah_analog5GhzRev == 0) { 304 if (AH_PRIVATE(ah)->ah_analog5GhzRev == 0) {
305 /* 305 /*
306 * When RF_Silen is used the analog chip is reset. 306 * When RF_Silen is used the analog chip is reset.
307 * So when the system boots with radio switch off 307 * So when the system boots with radio switch off
308 * the RF chip rev reads back as zero and we need 308 * the RF chip rev reads back as zero and we need
309 * to use the mac+phy revs to set the radio rev. 309 * to use the mac+phy revs to set the radio rev.
310 */ 310 */
311 AH_PRIVATE(ah)->ah_analog5GhzRev = 311 AH_PRIVATE(ah)->ah_analog5GhzRev =
312 AR_RAD5133_SREV_MAJOR; 312 AR_RAD5133_SREV_MAJOR;
313 break; 313 break;
314 } 314 }
315 /* NB: silently accept anything in release code per Atheros */ 315 /* NB: silently accept anything in release code per Atheros */
316#ifdef AH_DEBUG 316#ifdef AH_DEBUG
317 HALDEBUG(ah, HAL_DEBUG_ANY, 317 HALDEBUG(ah, HAL_DEBUG_ANY,
318 "%s: 5G Radio Chip Rev 0x%02X is not supported by " 318 "%s: 5G Radio Chip Rev 0x%02X is not supported by "
319 "this driver\n", __func__, 319 "this driver\n", __func__,
320 AH_PRIVATE(ah)->ah_analog5GhzRev); 320 AH_PRIVATE(ah)->ah_analog5GhzRev);
321 ecode = HAL_ENOTSUPP; 321 ecode = HAL_ENOTSUPP;
322 goto bad; 322 goto bad;
323#endif 323#endif
324 } 324 }
325 325
326 /* 326 /*
327 * Got everything we need now to setup the capabilities. 327 * Got everything we need now to setup the capabilities.
328 */ 328 */
329 if (!ar5416FillCapabilityInfo(ah)) { 329 if (!ar5416FillCapabilityInfo(ah)) {
330 ecode = HAL_EEREAD; 330 ecode = HAL_EEREAD;
331 goto bad; 331 goto bad;
332 } 332 }
333 333
334 ecode = ath_hal_eepromGet(ah, AR_EEP_MACADDR, ahp->ah_macaddr); 334 ecode = ath_hal_eepromGet(ah, AR_EEP_MACADDR, ahp->ah_macaddr);
335 if (ecode != HAL_OK) { 335 if (ecode != HAL_OK) {
336 HALDEBUG(ah, HAL_DEBUG_ANY, 336 HALDEBUG(ah, HAL_DEBUG_ANY,
337 "%s: error getting mac address from EEPROM\n", __func__); 337 "%s: error getting mac address from EEPROM\n", __func__);
338 goto bad; 338 goto bad;
339 } 339 }
340 /* XXX How about the serial number ? */ 340 /* XXX How about the serial number ? */
341 /* Read Reg Domain */ 341 /* Read Reg Domain */
342 AH_PRIVATE(ah)->ah_currentRD = 342 AH_PRIVATE(ah)->ah_currentRD =
343 ath_hal_eepromGet(ah, AR_EEP_REGDMN_0, AH_NULL); 343 ath_hal_eepromGet(ah, AR_EEP_REGDMN_0, AH_NULL);
344 344
345 /* 345 /*
346 * ah_miscMode is populated by ar5416FillCapabilityInfo() 346 * ah_miscMode is populated by ar5416FillCapabilityInfo()
347 * starting from griffin. Set here to make sure that 347 * starting from griffin. Set here to make sure that
348 * AR_MISC_MODE_MIC_NEW_LOC_ENABLE is set before a GTK is 348 * AR_MISC_MODE_MIC_NEW_LOC_ENABLE is set before a GTK is
349 * placed into hardware. 349 * placed into hardware.
350 */ 350 */
351 if (ahp->ah_miscMode != 0) 351 if (ahp->ah_miscMode != 0)
352 OS_REG_WRITE(ah, AR_MISC_MODE, ahp->ah_miscMode); 352 OS_REG_WRITE(ah, AR_MISC_MODE, ahp->ah_miscMode);
353 353
354 HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s: Attaching AR2133 radio\n", 354 HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s: Attaching AR2133 radio\n",
355 __func__); 355 __func__);
356 rfStatus = ar2133RfAttach(ah, &ecode); 356 rfStatus = ar2133RfAttach(ah, &ecode);
357 if (!rfStatus) { 357 if (!rfStatus) {
358 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: RF setup failed, status %u\n", 358 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: RF setup failed, status %u\n",
359 __func__, ecode); 359 __func__, ecode);
360 goto bad; 360 goto bad;
361 } 361 }
362 362
363 ar5416AniSetup(ah); /* Anti Noise Immunity */ 363 ar5416AniSetup(ah); /* Anti Noise Immunity */
364 ar5416InitNfHistBuff(AH5416(ah)->ah_cal.nfCalHist); 364 ar5416InitNfHistBuff(AH5416(ah)->ah_cal.nfCalHist);
365 365
366 HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s: return\n", __func__); 366 HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s: return\n", __func__);
367 367
368 return ah; 368 return ah;
369bad: 369bad:
370 if (ahp) 370 if (ahp)
371 ar5416Detach((struct ath_hal *) ahp); 371 ar5416Detach((struct ath_hal *) ahp);
372 if (status) 372 if (status)
373 *status = ecode; 373 *status = ecode;
374 return AH_NULL; 374 return AH_NULL;
375} 375}
376 376
377void 377void
378ar5416Detach(struct ath_hal *ah) 378ar5416Detach(struct ath_hal *ah)
379{ 379{
380 HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s:\n", __func__); 380 HALDEBUG(ah, HAL_DEBUG_ATTACH, "%s:\n", __func__);
381 381
382 HALASSERT(ah != AH_NULL); 382 HALASSERT(ah != AH_NULL);
383 HALASSERT(ah->ah_magic == AR5416_MAGIC); 383 HALASSERT(ah->ah_magic == AR5416_MAGIC);
384 384
385 ar5416AniDetach(ah); 385 ar5416AniDetach(ah);
386 ar5212RfDetach(ah); 386 ar5212RfDetach(ah);
387 ah->ah_disable(ah); 387 ah->ah_disable(ah);
388 ar5416SetPowerMode(ah, HAL_PM_FULL_SLEEP, AH_TRUE); 388 ar5416SetPowerMode(ah, HAL_PM_FULL_SLEEP, AH_TRUE);
389 ath_hal_eepromDetach(ah); 389 ath_hal_eepromDetach(ah);
390 ath_hal_free(ah); 390 ath_hal_free(ah);
391} 391}
392 392
393void 393void
394ar5416AttachPCIE(struct ath_hal *ah) 394ar5416AttachPCIE(struct ath_hal *ah)
395{ 395{
396 if (AH_PRIVATE(ah)->ah_ispcie) 396 if (AH_PRIVATE(ah)->ah_ispcie)
397 ath_hal_configPCIE(ah, AH_FALSE); 397 ath_hal_configPCIE(ah, AH_FALSE);
398 else 398 else
399 ath_hal_disablePCIE(ah); 399 ath_hal_disablePCIE(ah);
400} 400}
401 401
402static void 402static void
403ar5416ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore) 403ar5416ConfigPCIE(struct ath_hal *ah, HAL_BOOL restore)
404{ 404{
405 if (AH_PRIVATE(ah)->ah_ispcie && !restore) { 405 if (AH_PRIVATE(ah)->ah_ispcie && !restore) {
406 ath_hal_ini_write(ah, &AH5416(ah)->ah_ini_pcieserdes, 1, 0); 406 ath_hal_ini_write(ah, &AH5416(ah)->ah_ini_pcieserdes, 1, 0);
407 OS_DELAY(1000); 407 OS_DELAY(1000);
408 OS_REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA); 408 OS_REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
409 OS_REG_WRITE(ah, AR_WA, AR_WA_DEFAULT); 409 OS_REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
410 } 410 }
411} 411}
412 412
413static void 413static void
414ar5416WriteIni(struct ath_hal *ah, HAL_CHANNEL_INTERNAL *chan) 414ar5416WriteIni(struct ath_hal *ah, HAL_CHANNEL_INTERNAL *chan)
415{ 415{
416 u_int modesIndex, freqIndex; 416 u_int modesIndex, freqIndex;
417 int regWrites = 0; 417 int regWrites = 0;
418 418
419 /* Setup the indices for the next set of register array writes */ 419 /* Setup the indices for the next set of register array writes */
420 /* XXX Ignore 11n dynamic mode on the AR5416 for the moment */ 420 /* XXX Ignore 11n dynamic mode on the AR5416 for the moment */
421 if (IS_CHAN_2GHZ(chan)) { 421 if (IS_CHAN_2GHZ(chan)) {
422 freqIndex = 2; 422 freqIndex = 2;
423 if (IS_CHAN_HT40(chan)) 423 if (IS_CHAN_HT40(chan))
424 modesIndex = 3; 424 modesIndex = 3;
425 else if (IS_CHAN_108G(chan)) 425 else if (IS_CHAN_108G(chan))
426 modesIndex = 5; 426 modesIndex = 5;
427 else 427 else
428 modesIndex = 4; 428 modesIndex = 4;
429 } else { 429 } else {
430 freqIndex = 1; 430 freqIndex = 1;
431 if (IS_CHAN_HT40(chan) || 431 if (IS_CHAN_HT40(chan) ||
432 IS_CHAN_TURBO(chan)) 432 IS_CHAN_TURBO(chan))
433 modesIndex = 2; 433 modesIndex = 2;
434 else 434 else
435 modesIndex = 1; 435 modesIndex = 1;
436 } 436 }
437 437
438 /* Set correct Baseband to analog shift setting to access analog chips. */ 438 /* Set correct Baseband to analog shift setting to access analog chips. */
439 OS_REG_WRITE(ah, AR_PHY(0), 0x00000007); 439 OS_REG_WRITE(ah, AR_PHY(0), 0x00000007);
440 440
441 /* 441 /*
442 * Write addac shifts 442 * Write addac shifts
443 */ 443 */
444 OS_REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO); 444 OS_REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
445#if 0 445#if 0
446 /* NB: only required for Sowl */ 446 /* NB: only required for Sowl */
447 ar5416EepromSetAddac(ah, chan); 447 ar5416EepromSetAddac(ah, chan);
448#endif 448#endif
449 regWrites = ath_hal_ini_write(ah, &AH5416(ah)->ah_ini_addac, 1, 449 regWrites = ath_hal_ini_write(ah, &AH5416(ah)->ah_ini_addac, 1,
450 regWrites); 450 regWrites);
451 OS_REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC); 451 OS_REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
452 452
453 regWrites = ath_hal_ini_write(ah, &AH5212(ah)->ah_ini_modes, 453 regWrites = ath_hal_ini_write(ah, &AH5212(ah)->ah_ini_modes,
454 modesIndex, regWrites); 454 modesIndex, regWrites);
455 regWrites = ath_hal_ini_write(ah, &AH5212(ah)->ah_ini_common, 455 regWrites = ath_hal_ini_write(ah, &AH5212(ah)->ah_ini_common,
456 1, regWrites); 456 1, regWrites);
457 457
458 /* XXX updated regWrites? */ 458 /* XXX updated regWrites? */
459 AH5212(ah)->ah_rfHal->writeRegs(ah, modesIndex, freqIndex, regWrites); 459 AH5212(ah)->ah_rfHal->writeRegs(ah, modesIndex, freqIndex, regWrites);
460} 460}
461 461
462/* 462/*
463 * Convert to baseband spur frequency given input channel frequency  463 * Convert to baseband spur frequency given input channel frequency
464 * and compute register settings below. 464 * and compute register settings below.
465 */ 465 */
466 466
467static void 467static void
468ar5416SpurMitigate(struct ath_hal *ah, HAL_CHANNEL_INTERNAL *chan) 468ar5416SpurMitigate(struct ath_hal *ah, HAL_CHANNEL_INTERNAL *chan)
469{ 469{
470 uint16_t freq = ath_hal_gethwchannel(ah, chan); 470 uint16_t freq = ath_hal_gethwchannel(ah, chan);
471 static const int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8, 471 static const int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
472 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60 }; 472 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60 };
473 static const int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10, 473 static const int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
474 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60 }; 474 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60 };
475 static const int inc[4] = { 0, 100, 0, 0 }; 475 static const int inc[4] = { 0, 100, 0, 0 };
476 476
477 int bb_spur = AR_NO_SPUR; 477 int bb_spur = AR_NO_SPUR;
478 int bin, cur_bin; 478 int bin, cur_bin;
479 int spur_freq_sd; 479 int spur_freq_sd;
480 int spur_delta_phase; 480 int spur_delta_phase;
481 int denominator; 481 int denominator;
482 int upper, lower, cur_vit_mask; 482 int upper, lower, cur_vit_mask;
483 int tmp, new; 483 int tmp, new;
484 int i; 484 int i;
485 485
486 int8_t mask_m[123]; 486 int8_t mask_m[123];
487 int8_t mask_p[123]; 487 int8_t mask_p[123];
488 int8_t mask_amt; 488 int8_t mask_amt;
489 int tmp_mask; 489 int tmp_mask;
490 int cur_bb_spur; 490 int cur_bb_spur;
491 HAL_BOOL is2GHz = IS_CHAN_2GHZ(chan); 491 HAL_BOOL is2GHz = IS_CHAN_2GHZ(chan);
492 492
493 OS_MEMZERO(mask_m, sizeof(mask_m)); 493 OS_MEMZERO(mask_m, sizeof(mask_m));
494 OS_MEMZERO(mask_p, sizeof(mask_p)); 494 OS_MEMZERO(mask_p, sizeof(mask_p));
495 495
496 /* 496 /*
497 * Need to verify range +/- 9.5 for static ht20, otherwise spur 497 * Need to verify range +/- 9.5 for static ht20, otherwise spur
498 * is out-of-band and can be ignored. 498 * is out-of-band and can be ignored.
499 */ 499 */
500 /* XXX ath9k changes */ 500 /* XXX ath9k changes */
501 for (i = 0; i < AR5416_EEPROM_MODAL_SPURS; i++) { 501 for (i = 0; i < AR5416_EEPROM_MODAL_SPURS; i++) {
502 cur_bb_spur = ath_hal_getSpurChan(ah, i, is2GHz); 502 cur_bb_spur = ath_hal_getSpurChan(ah, i, is2GHz);
503 if (AR_NO_SPUR == cur_bb_spur) 503 if (AR_NO_SPUR == cur_bb_spur)
504 break; 504 break;
505 cur_bb_spur = cur_bb_spur - (freq * 10); 505 cur_bb_spur = cur_bb_spur - (freq * 10);
506 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) { 506 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
507 bb_spur = cur_bb_spur; 507 bb_spur = cur_bb_spur;
508 break; 508 break;
509 } 509 }
510 } 510 }
511 if (AR_NO_SPUR == bb_spur) 511 if (AR_NO_SPUR == bb_spur)
512 return; 512 return;
513 513
514 bin = bb_spur * 32; 514 bin = bb_spur * 32;
515 515
516 tmp = OS_REG_READ(ah, AR_PHY_TIMING_CTRL4_CHAIN(0)); 516 tmp = OS_REG_READ(ah, AR_PHY_TIMING_CTRL4_CHAIN(0));
517 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI | 517 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
518 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER | 518 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
519 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK | 519 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
520 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK); 520 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
521 521
522 OS_REG_WRITE(ah, AR_PHY_TIMING_CTRL4_CHAIN(0), new); 522 OS_REG_WRITE(ah, AR_PHY_TIMING_CTRL4_CHAIN(0), new);
523 523
524 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL | 524 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
525 AR_PHY_SPUR_REG_ENABLE_MASK_PPM | 525 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
526 AR_PHY_SPUR_REG_MASK_RATE_SELECT | 526 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
527 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI | 527 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
528 SM(AR5416_SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH)); 528 SM(AR5416_SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
529 OS_REG_WRITE(ah, AR_PHY_SPUR_REG, new); 529 OS_REG_WRITE(ah, AR_PHY_SPUR_REG, new);
530 /* 530 /*
531 * Should offset bb_spur by +/- 10 MHz for dynamic 2040 MHz 531 * Should offset bb_spur by +/- 10 MHz for dynamic 2040 MHz
532 * config, no offset for HT20. 532 * config, no offset for HT20.
533 * spur_delta_phase = bb_spur/40 * 2**21 for static ht20, 533 * spur_delta_phase = bb_spur/40 * 2**21 for static ht20,
534 * /80 for dyn2040. 534 * /80 for dyn2040.
535 */ 535 */
536 spur_delta_phase = ((bb_spur * 524288) / 100) & 536 spur_delta_phase = ((bb_spur * 524288) / 100) &
537 AR_PHY_TIMING11_SPUR_DELTA_PHASE; 537 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
538 /* 538 /*
539 * in 11A mode the denominator of spur_freq_sd should be 40 and 539 * in 11A mode the denominator of spur_freq_sd should be 40 and
540 * it should be 44 in 11G 540 * it should be 44 in 11G
541 */ 541 */
542 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400; 542 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
543 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff; 543 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
544 544
545 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC | 545 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
546 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) | 546 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
547 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE)); 547 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
548 OS_REG_WRITE(ah, AR_PHY_TIMING11, new); 548 OS_REG_WRITE(ah, AR_PHY_TIMING11, new);
549 549
550 550
551 /* 551 /*
552 * ============================================ 552 * ============================================
553 * pilot mask 1 [31:0] = +6..-26, no 0 bin 553 * pilot mask 1 [31:0] = +6..-26, no 0 bin
554 * pilot mask 2 [19:0] = +26..+7 554 * pilot mask 2 [19:0] = +26..+7
555 * 555 *
556 * channel mask 1 [31:0] = +6..-26, no 0 bin 556 * channel mask 1 [31:0] = +6..-26, no 0 bin
557 * channel mask 2 [19:0] = +26..+7 557 * channel mask 2 [19:0] = +26..+7
558 */ 558 */
559 //cur_bin = -26; 559 //cur_bin = -26;
560 cur_bin = -6000; 560 cur_bin = -6000;
561 upper = bin + 100; 561 upper = bin + 100;
562 lower = bin - 100; 562 lower = bin - 100;
563 563
564 for (i = 0; i < 4; i++) { 564 for (i = 0; i < 4; i++) {
565 int pilot_mask = 0; 565 int pilot_mask = 0;
566 int chan_mask = 0; 566 int chan_mask = 0;
567 int bp = 0; 567 int bp = 0;
568 for (bp = 0; bp < 30; bp++) { 568 for (bp = 0; bp < 30; bp++) {
569 if ((cur_bin > lower) && (cur_bin < upper)) { 569 if ((cur_bin > lower) && (cur_bin < upper)) {
570 pilot_mask = pilot_mask | 0x1 << bp; 570 pilot_mask = pilot_mask | 0x1 << bp;
571 chan_mask = chan_mask | 0x1 << bp; 571 chan_mask = chan_mask | 0x1 << bp;
572 } 572 }
573 cur_bin += 100; 573 cur_bin += 100;
574 } 574 }
575 cur_bin += inc[i]; 575 cur_bin += inc[i];
576 OS_REG_WRITE(ah, pilot_mask_reg[i], pilot_mask); 576 OS_REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
577 OS_REG_WRITE(ah, chan_mask_reg[i], chan_mask); 577 OS_REG_WRITE(ah, chan_mask_reg[i], chan_mask);
578 } 578 }
579 579
580 /* ================================================= 580 /* =================================================
581 * viterbi mask 1 based on channel magnitude 581 * viterbi mask 1 based on channel magnitude
582 * four levels 0-3 582 * four levels 0-3
583 * - mask (-27 to 27) (reg 64,0x9900 to 67,0x990c) 583 * - mask (-27 to 27) (reg 64,0x9900 to 67,0x990c)
584 * [1 2 2 1] for -9.6 or [1 2 1] for +16 584 * [1 2 2 1] for -9.6 or [1 2 1] for +16
585 * - enable_mask_ppm, all bins move with freq 585 * - enable_mask_ppm, all bins move with freq
586 * 586 *
587 * - mask_select, 8 bits for rates (reg 67,0x990c) 587 * - mask_select, 8 bits for rates (reg 67,0x990c)
588 * - mask_rate_cntl, 8 bits for rates (reg 67,0x990c) 588 * - mask_rate_cntl, 8 bits for rates (reg 67,0x990c)
589 * choose which mask to use mask or mask2 589 * choose which mask to use mask or mask2
590 */ 590 */
591 591
592 /* 592 /*
593 * viterbi mask 2 2nd set for per data rate puncturing 593 * viterbi mask 2 2nd set for per data rate puncturing
594 * four levels 0-3 594 * four levels 0-3
595 * - mask_select, 8 bits for rates (reg 67) 595 * - mask_select, 8 bits for rates (reg 67)
596 * - mask (-27 to 27) (reg 98,0x9988 to 101,0x9994) 596 * - mask (-27 to 27) (reg 98,0x9988 to 101,0x9994)
597 * [1 2 2 1] for -9.6 or [1 2 1] for +16 597 * [1 2 2 1] for -9.6 or [1 2 1] for +16
598 */ 598 */
599 cur_vit_mask = 6100; 599 cur_vit_mask = 6100;
600 upper = bin + 120; 600 upper = bin + 120;
601 lower = bin - 120; 601 lower = bin - 120;
602 602
603 for (i = 0; i < 123; i++) { 603 for (i = 0; i < 123; i++) {
604 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) { 604 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
605 if ((abs(cur_vit_mask - bin)) < 75) { 605 if ((abs(cur_vit_mask - bin)) < 75) {
606 mask_amt = 1; 606 mask_amt = 1;
607 } else { 607 } else {
608 mask_amt = 0; 608 mask_amt = 0;
609 } 609 }
610 if (cur_vit_mask < 0) { 610 if (cur_vit_mask < 0) {
611 mask_m[abs(cur_vit_mask / 100)] = mask_amt; 611 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
612 } else { 612 } else {
613 mask_p[cur_vit_mask / 100] = mask_amt; 613 mask_p[cur_vit_mask / 100] = mask_amt;
614 } 614 }
615 } 615 }
616 cur_vit_mask -= 100; 616 cur_vit_mask -= 100;
617 } 617 }
618 618
619 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28) 619 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
620 | (mask_m[48] << 26) | (mask_m[49] << 24) 620 | (mask_m[48] << 26) | (mask_m[49] << 24)
621 | (mask_m[50] << 22) | (mask_m[51] << 20) 621 | (mask_m[50] << 22) | (mask_m[51] << 20)
622 | (mask_m[52] << 18) | (mask_m[53] << 16) 622 | (mask_m[52] << 18) | (mask_m[53] << 16)
623 | (mask_m[54] << 14) | (mask_m[55] << 12) 623 | (mask_m[54] << 14) | (mask_m[55] << 12)
624 | (mask_m[56] << 10) | (mask_m[57] << 8) 624 | (mask_m[56] << 10) | (mask_m[57] << 8)
625 | (mask_m[58] << 6) | (mask_m[59] << 4) 625 | (mask_m[58] << 6) | (mask_m[59] << 4)
626 | (mask_m[60] << 2) | (mask_m[61] << 0); 626 | (mask_m[60] << 2) | (mask_m[61] << 0);
627 OS_REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask); 627 OS_REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
628 OS_REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask); 628 OS_REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
629 629
630 tmp_mask = (mask_m[31] << 28) 630 tmp_mask = (mask_m[31] << 28)
631 | (mask_m[32] << 26) | (mask_m[33] << 24) 631 | (mask_m[32] << 26) | (mask_m[33] << 24)
632 | (mask_m[34] << 22) | (mask_m[35] << 20) 632 | (mask_m[34] << 22) | (mask_m[35] << 20)
633 | (mask_m[36] << 18) | (mask_m[37] << 16) 633 | (mask_m[36] << 18) | (mask_m[37] << 16)
634 | (mask_m[48] << 14) | (mask_m[39] << 12) 634 | (mask_m[48] << 14) | (mask_m[39] << 12)
635 | (mask_m[40] << 10) | (mask_m[41] << 8) 635 | (mask_m[40] << 10) | (mask_m[41] << 8)
636 | (mask_m[42] << 6) | (mask_m[43] << 4) 636 | (mask_m[42] << 6) | (mask_m[43] << 4)
637 | (mask_m[44] << 2) | (mask_m[45] << 0); 637 | (mask_m[44] << 2) | (mask_m[45] << 0);
638 OS_REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask); 638 OS_REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
639 OS_REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask); 639 OS_REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
640 640
641 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28) 641 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
642 | (mask_m[18] << 26) | (mask_m[18] << 24) 642 | (mask_m[18] << 26) | (mask_m[18] << 24)
643 | (mask_m[20] << 22) | (mask_m[20] << 20) 643 | (mask_m[20] << 22) | (mask_m[20] << 20)
644 | (mask_m[22] << 18) | (mask_m[22] << 16) 644 | (mask_m[22] << 18) | (mask_m[22] << 16)
645 | (mask_m[24] << 14) | (mask_m[24] << 12) 645 | (mask_m[24] << 14) | (mask_m[24] << 12)
646 | (mask_m[25] << 10) | (mask_m[26] << 8) 646 | (mask_m[25] << 10) | (mask_m[26] << 8)
647 | (mask_m[27] << 6) | (mask_m[28] << 4) 647 | (mask_m[27] << 6) | (mask_m[28] << 4)
648 | (mask_m[29] << 2) | (mask_m[30] << 0); 648 | (mask_m[29] << 2) | (mask_m[30] << 0);
649 OS_REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask); 649 OS_REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
650 OS_REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask); 650 OS_REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
651 651
652 tmp_mask = (mask_m[ 0] << 30) | (mask_m[ 1] << 28) 652 tmp_mask = (mask_m[ 0] << 30) | (mask_m[ 1] << 28)
653 | (mask_m[ 2] << 26) | (mask_m[ 3] << 24) 653 | (mask_m[ 2] << 26) | (mask_m[ 3] << 24)
654 | (mask_m[ 4] << 22) | (mask_m[ 5] << 20) 654 | (mask_m[ 4] << 22) | (mask_m[ 5] << 20)
655 | (mask_m[ 6] << 18) | (mask_m[ 7] << 16) 655 | (mask_m[ 6] << 18) | (mask_m[ 7] << 16)
656 | (mask_m[ 8] << 14) | (mask_m[ 9] << 12) 656 | (mask_m[ 8] << 14) | (mask_m[ 9] << 12)
657 | (mask_m[10] << 10) | (mask_m[11] << 8) 657 | (mask_m[10] << 10) | (mask_m[11] << 8)
658 | (mask_m[12] << 6) | (mask_m[13] << 4) 658 | (mask_m[12] << 6) | (mask_m[13] << 4)
659 | (mask_m[14] << 2) | (mask_m[15] << 0); 659 | (mask_m[14] << 2) | (mask_m[15] << 0);
660 OS_REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask); 660 OS_REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
661 OS_REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask); 661 OS_REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
662 662
663 tmp_mask = (mask_p[15] << 28) 663 tmp_mask = (mask_p[15] << 28)
664 | (mask_p[14] << 26) | (mask_p[13] << 24) 664 | (mask_p[14] << 26) | (mask_p[13] << 24)
665 | (mask_p[12] << 22) | (mask_p[11] << 20) 665 | (mask_p[12] << 22) | (mask_p[11] << 20)
666 | (mask_p[10] << 18) | (mask_p[ 9] << 16) 666 | (mask_p[10] << 18) | (mask_p[ 9] << 16)
667 | (mask_p[ 8] << 14) | (mask_p[ 7] << 12) 667 | (mask_p[ 8] << 14) | (mask_p[ 7] << 12)
668 | (mask_p[ 6] << 10) | (mask_p[ 5] << 8) 668 | (mask_p[ 6] << 10) | (mask_p[ 5] << 8)
669 | (mask_p[ 4] << 6) | (mask_p[ 3] << 4) 669 | (mask_p[ 4] << 6) | (mask_p[ 3] << 4)
670 | (mask_p[ 2] << 2) | (mask_p[ 1] << 0); 670 | (mask_p[ 2] << 2) | (mask_p[ 1] << 0);
671 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask); 671 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
672 OS_REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask); 672 OS_REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
673 673
674 tmp_mask = (mask_p[30] << 28) 674 tmp_mask = (mask_p[30] << 28)
675 | (mask_p[29] << 26) | (mask_p[28] << 24) 675 | (mask_p[29] << 26) | (mask_p[28] << 24)
676 | (mask_p[27] << 22) | (mask_p[26] << 20) 676 | (mask_p[27] << 22) | (mask_p[26] << 20)
677 | (mask_p[25] << 18) | (mask_p[24] << 16) 677 | (mask_p[25] << 18) | (mask_p[24] << 16)
678 | (mask_p[23] << 14) | (mask_p[22] << 12) 678 | (mask_p[23] << 14) | (mask_p[22] << 12)
679 | (mask_p[21] << 10) | (mask_p[20] << 8) 679 | (mask_p[21] << 10) | (mask_p[20] << 8)
680 | (mask_p[19] << 6) | (mask_p[18] << 4) 680 | (mask_p[19] << 6) | (mask_p[18] << 4)
681 | (mask_p[17] << 2) | (mask_p[16] << 0); 681 | (mask_p[17] << 2) | (mask_p[16] << 0);
682 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask); 682 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
683 OS_REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask); 683 OS_REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
684 684
685 tmp_mask = (mask_p[45] << 28) 685 tmp_mask = (mask_p[45] << 28)
686 | (mask_p[44] << 26) | (mask_p[43] << 24) 686 | (mask_p[44] << 26) | (mask_p[43] << 24)
687 | (mask_p[42] << 22) | (mask_p[41] << 20) 687 | (mask_p[42] << 22) | (mask_p[41] << 20)
688 | (mask_p[40] << 18) | (mask_p[39] << 16) 688 | (mask_p[40] << 18) | (mask_p[39] << 16)
689 | (mask_p[38] << 14) | (mask_p[37] << 12) 689 | (mask_p[38] << 14) | (mask_p[37] << 12)
690 | (mask_p[36] << 10) | (mask_p[35] << 8) 690 | (mask_p[36] << 10) | (mask_p[35] << 8)
691 | (mask_p[34] << 6) | (mask_p[33] << 4) 691 | (mask_p[34] << 6) | (mask_p[33] << 4)
692 | (mask_p[32] << 2) | (mask_p[31] << 0); 692 | (mask_p[32] << 2) | (mask_p[31] << 0);
693 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask); 693 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
694 OS_REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask); 694 OS_REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
695 695
696 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28) 696 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
697 | (mask_p[59] << 26) | (mask_p[58] << 24) 697 | (mask_p[59] << 26) | (mask_p[58] << 24)
698 | (mask_p[57] << 22) | (mask_p[56] << 20) 698 | (mask_p[57] << 22) | (mask_p[56] << 20)
699 | (mask_p[55] << 18) | (mask_p[54] << 16) 699 | (mask_p[55] << 18) | (mask_p[54] << 16)
700 | (mask_p[53] << 14) | (mask_p[52] << 12) 700 | (mask_p[53] << 14) | (mask_p[52] << 12)
701 | (mask_p[51] << 10) | (mask_p[50] << 8) 701 | (mask_p[51] << 10) | (mask_p[50] << 8)
702 | (mask_p[49] << 6) | (mask_p[48] << 4) 702 | (mask_p[49] << 6) | (mask_p[48] << 4)
703 | (mask_p[47] << 2) | (mask_p[46] << 0); 703 | (mask_p[47] << 2) | (mask_p[46] << 0);
704 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask); 704 OS_REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
705 OS_REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask); 705 OS_REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
706} 706}
707 707
708/* 708/*
709 * Fill all software cached or static hardware state information. 709 * Fill all software cached or static hardware state information.
710 * Return failure if capabilities are to come from EEPROM and 710 * Return failure if capabilities are to come from EEPROM and
711 * cannot be read. 711 * cannot be read.
712 */ 712 */
713HAL_BOOL 713HAL_BOOL
714ar5416FillCapabilityInfo(struct ath_hal *ah) 714ar5416FillCapabilityInfo(struct ath_hal *ah)
715{ 715{
716 struct ath_hal_private *ahpriv = AH_PRIVATE(ah); 716 struct ath_hal_private *ahpriv = AH_PRIVATE(ah);
717 HAL_CAPABILITIES *pCap = &ahpriv->ah_caps; 717 HAL_CAPABILITIES *pCap = &ahpriv->ah_caps;
718 uint16_t val; 718 uint16_t val;
719  719
720 /* Construct wireless mode from EEPROM */ 720 /* Construct wireless mode from EEPROM */
721 pCap->halWirelessModes = 0; 721 pCap->halWirelessModes = 0;
722 if (ath_hal_eepromGetFlag(ah, AR_EEP_AMODE)) { 722 if (ath_hal_eepromGetFlag(ah, AR_EEP_AMODE)) {
723 pCap->halWirelessModes |= HAL_MODE_11A 723 pCap->halWirelessModes |= HAL_MODE_11A
724 | HAL_MODE_11NA_HT20 724 | HAL_MODE_11NA_HT20
725 | HAL_MODE_11NA_HT40PLUS 725 | HAL_MODE_11NA_HT40PLUS
726 | HAL_MODE_11NA_HT40MINUS 726 | HAL_MODE_11NA_HT40MINUS
727 ; 727 ;
728 } 728 }
729 if (ath_hal_eepromGetFlag(ah, AR_EEP_GMODE)) { 729 if (ath_hal_eepromGetFlag(ah, AR_EEP_GMODE)) {
730 pCap->halWirelessModes |= HAL_MODE_11G 730 pCap->halWirelessModes |= HAL_MODE_11G
731 | HAL_MODE_11NG_HT20 731 | HAL_MODE_11NG_HT20
732 | HAL_MODE_11NG_HT40PLUS 732 | HAL_MODE_11NG_HT40PLUS
733 | HAL_MODE_11NG_HT40MINUS 733 | HAL_MODE_11NG_HT40MINUS
734 ; 734 ;
735 pCap->halWirelessModes |= HAL_MODE_11A 735 pCap->halWirelessModes |= HAL_MODE_11A
736 | HAL_MODE_11NA_HT20 736 | HAL_MODE_11NA_HT20
737 | HAL_MODE_11NA_HT40PLUS 737 | HAL_MODE_11NA_HT40PLUS
738 | HAL_MODE_11NA_HT40MINUS 738 | HAL_MODE_11NA_HT40MINUS
739 ; 739 ;
740 } 740 }
741 741
742 pCap->halLow2GhzChan = 2312; 742 pCap->halLow2GhzChan = 2312;
743 pCap->halHigh2GhzChan = 2732; 743 pCap->halHigh2GhzChan = 2732;
744 744
745 pCap->halLow5GhzChan = 4915; 745 pCap->halLow5GhzChan = 4915;
746 pCap->halHigh5GhzChan = 6100; 746 pCap->halHigh5GhzChan = 6100;
747 747
748 pCap->halCipherCkipSupport = AH_FALSE; 748 pCap->halCipherCkipSupport = AH_FALSE;
749 pCap->halCipherTkipSupport = AH_TRUE; 749 pCap->halCipherTkipSupport = AH_TRUE;
750 pCap->halCipherAesCcmSupport = ath_hal_eepromGetFlag(ah, AR_EEP_AES); 750 pCap->halCipherAesCcmSupport = ath_hal_eepromGetFlag(ah, AR_EEP_AES);
751 751
752 pCap->halMicCkipSupport = AH_FALSE; 752 pCap->halMicCkipSupport = AH_FALSE;
753 pCap->halMicTkipSupport = AH_TRUE; 753 pCap->halMicTkipSupport = AH_TRUE;
754 pCap->halMicAesCcmSupport = ath_hal_eepromGetFlag(ah, AR_EEP_AES); 754 pCap->halMicAesCcmSupport = ath_hal_eepromGetFlag(ah, AR_EEP_AES);
755 /* 755 /*
756 * Starting with Griffin TX+RX mic keys can be combined 756 * Starting with Griffin TX+RX mic keys can be combined
757 * in one key cache slot. 757 * in one key cache slot.
758 */ 758 */
759 pCap->halTkipMicTxRxKeySupport = AH_TRUE; 759 pCap->halTkipMicTxRxKeySupport = AH_TRUE;
760 pCap->halChanSpreadSupport = AH_TRUE; 760 pCap->halChanSpreadSupport = AH_TRUE;
761 pCap->halSleepAfterBeaconBroken = AH_TRUE; 761 pCap->halSleepAfterBeaconBroken = AH_TRUE;
762 762
763 pCap->halCompressSupport = AH_FALSE; 763 pCap->halCompressSupport = AH_FALSE;
764 pCap->halBurstSupport = AH_TRUE; 764 pCap->halBurstSupport = AH_TRUE;
765 pCap->halFastFramesSupport = AH_FALSE; /* XXX? */ 765 pCap->halFastFramesSupport = AH_FALSE; /* XXX? */
766 pCap->halChapTuningSupport = AH_TRUE; 766 pCap->halChapTuningSupport = AH_TRUE;
767 pCap->halTurboPrimeSupport = AH_TRUE; 767 pCap->halTurboPrimeSupport = AH_TRUE;
768 768
769 pCap->halTurboGSupport = pCap->halWirelessModes & HAL_MODE_108G; 769 pCap->halTurboGSupport = pCap->halWirelessModes & HAL_MODE_108G;
770 770
771 pCap->halPSPollBroken = AH_TRUE; /* XXX fixed in later revs? */ 771 pCap->halPSPollBroken = AH_TRUE; /* XXX fixed in later revs? */
772 pCap->halVEOLSupport = AH_TRUE; 772 pCap->halVEOLSupport = AH_TRUE;
773 pCap->halBssIdMaskSupport = AH_TRUE; 773 pCap->halBssIdMaskSupport = AH_TRUE;
774 pCap->halMcastKeySrchSupport = AH_FALSE; 774 pCap->halMcastKeySrchSupport = AH_FALSE;
775 pCap->halTsfAddSupport = AH_TRUE; 775 pCap->halTsfAddSupport = AH_TRUE;
776 776
777 if (ath_hal_eepromGet(ah, AR_EEP_MAXQCU, &val) == HAL_OK) 777 if (ath_hal_eepromGet(ah, AR_EEP_MAXQCU, &val) == HAL_OK)
778 pCap->halTotalQueues = val; 778 pCap->halTotalQueues = val;
779 else 779 else
780 pCap->halTotalQueues = HAL_NUM_TX_QUEUES; 780 pCap->halTotalQueues = HAL_NUM_TX_QUEUES;
781 781
782 if (ath_hal_eepromGet(ah, AR_EEP_KCENTRIES, &val) == HAL_OK) 782 if (ath_hal_eepromGet(ah, AR_EEP_KCENTRIES, &val) == HAL_OK)
783 pCap->halKeyCacheSize = val; 783 pCap->halKeyCacheSize = val;
784 else 784 else
785 pCap->halKeyCacheSize = AR5416_KEYTABLE_SIZE; 785 pCap->halKeyCacheSize = AR5416_KEYTABLE_SIZE;
786 786
787 /* XXX not needed */ 787 /* XXX not needed */
788 pCap->halChanHalfRate = AH_FALSE; /* XXX ? */ 788 pCap->halChanHalfRate = AH_FALSE; /* XXX ? */
789 pCap->halChanQuarterRate = AH_FALSE; /* XXX ? */ 789 pCap->halChanQuarterRate = AH_FALSE; /* XXX ? */
790 790
791 pCap->halTstampPrecision = 32; 791 pCap->halTstampPrecision = 32;
792 pCap->halHwPhyCounterSupport = AH_TRUE; 792 pCap->halHwPhyCounterSupport = AH_TRUE;
793 pCap->halIntrMask = HAL_INT_COMMON 793 pCap->halIntrMask = HAL_INT_COMMON
794 | HAL_INT_RX 794 | HAL_INT_RX
795 | HAL_INT_TX 795 | HAL_INT_TX
796 | HAL_INT_FATAL 796 | HAL_INT_FATAL
797 | HAL_INT_BNR 797 | HAL_INT_BNR
798 | HAL_INT_BMISC 798 | HAL_INT_BMISC
799 | HAL_INT_DTIMSYNC 799 | HAL_INT_DTIMSYNC
800 | HAL_INT_TSFOOR 800 | HAL_INT_TSFOOR
801 | HAL_INT_CST 801 | HAL_INT_CST
802 | HAL_INT_GTT 802 | HAL_INT_GTT
803 ; 803 ;
804 804
805 pCap->halFastCCSupport = AH_TRUE; 805 pCap->halFastCCSupport = AH_TRUE;
806 pCap->halNumGpioPins = 6; 806 pCap->halNumGpioPins = 6;
807 pCap->halWowSupport = AH_FALSE; 807 pCap->halWowSupport = AH_FALSE;
808 pCap->halWowMatchPatternExact = AH_FALSE; 808 pCap->halWowMatchPatternExact = AH_FALSE;
809 pCap->halBtCoexSupport = AH_FALSE; /* XXX need support */ 809 pCap->halBtCoexSupport = AH_FALSE; /* XXX need support */
810 pCap->halAutoSleepSupport = AH_FALSE; 810 pCap->halAutoSleepSupport = AH_FALSE;
811#if 0 /* XXX not yet */ 811#if 0 /* XXX not yet */
812 pCap->halNumAntCfg2GHz = ar5416GetNumAntConfig(ahp, HAL_FREQ_BAND_2GHZ); 812 pCap->halNumAntCfg2GHz = ar5416GetNumAntConfig(ahp, HAL_FREQ_BAND_2GHZ);
813 pCap->halNumAntCfg5GHz = ar5416GetNumAntConfig(ahp, HAL_FREQ_BAND_5GHZ); 813 pCap->halNumAntCfg5GHz = ar5416GetNumAntConfig(ahp, HAL_FREQ_BAND_5GHZ);
814#endif 814#endif
815 pCap->halHTSupport = AH_TRUE; 815 pCap->halHTSupport = AH_TRUE;
816 pCap->halTxChainMask = ath_hal_eepromGet(ah, AR_EEP_TXMASK, AH_NULL); 816 pCap->halTxChainMask = ath_hal_eepromGet(ah, AR_EEP_TXMASK, AH_NULL);
817 /* XXX CB71 uses GPIO 0 to indicate 3 rx chains */ 817 /* XXX CB71 uses GPIO 0 to indicate 3 rx chains */
818 pCap->halRxChainMask = ath_hal_eepromGet(ah, AR_EEP_RXMASK, AH_NULL); 818 pCap->halRxChainMask = ath_hal_eepromGet(ah, AR_EEP_RXMASK, AH_NULL);
819 pCap->halRtsAggrLimit = 8*1024; /* Owl 2.0 limit */ 819 pCap->halRtsAggrLimit = 8*1024; /* Owl 2.0 limit */
820 pCap->halMbssidAggrSupport = AH_TRUE; 820 pCap->halMbssidAggrSupport = AH_TRUE;
821 pCap->halForcePpmSupport = AH_TRUE; 821 pCap->halForcePpmSupport = AH_TRUE;
822 pCap->halEnhancedPmSupport = AH_TRUE; 822 pCap->halEnhancedPmSupport = AH_TRUE;
823 pCap->halBssidMatchSupport = AH_TRUE; 823 pCap->halBssidMatchSupport = AH_TRUE;
824 824
825 if (ath_hal_eepromGetFlag(ah, AR_EEP_RFKILL) && 825 if (ath_hal_eepromGetFlag(ah, AR_EEP_RFKILL) &&
826 ath_hal_eepromGet(ah, AR_EEP_RFSILENT, &ahpriv->ah_rfsilent) == HAL_OK) { 826 ath_hal_eepromGet(ah, AR_EEP_RFSILENT, &ahpriv->ah_rfsilent) == HAL_OK) {
827 /* NB: enabled by default */ 827 /* NB: enabled by default */
828 ahpriv->ah_rfkillEnabled = AH_TRUE; 828 ahpriv->ah_rfkillEnabled = AH_TRUE;
829 pCap->halRfSilentSupport = AH_TRUE; 829 pCap->halRfSilentSupport = AH_TRUE;
830 } 830 }
831 831
832 ahpriv->ah_rxornIsFatal = AH_FALSE; 832 ahpriv->ah_rxornIsFatal = AH_FALSE;
833 833
834 return AH_TRUE; 834 return AH_TRUE;
835} 835}
836 836
837static const char* 837static const char*
838ar5416Probe(uint16_t vendorid, uint16_t devid) 838ar5416Probe(uint16_t vendorid, uint16_t devid)
839{ 839{
840 if (vendorid == ATHEROS_VENDOR_ID && 840 if (vendorid == ATHEROS_VENDOR_ID &&
841 (devid == AR5416_DEVID_PCI || devid == AR5416_DEVID_PCIE)) 841 (devid == AR5416_DEVID_PCI || devid == AR5416_DEVID_PCIE))
842 return "Atheros 5416"; 842 return "Atheros 5416";
843 return AH_NULL; 843 return AH_NULL;
844} 844}
845AH_CHIP(AR5416, ar5416Probe, ar5416Attach); 845AH_CHIP(AR5416, ar5416Probe, ar5416Attach);