blob: 02e6c2a55fe46e5dfb8b26ba4a760c92b9fb71ce [file] [log] [blame]
Sujithb5aec952009-08-07 09:45:15 +05301/*
2 * Copyright (c) 2008-2009 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070017#include "hw.h"
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040018#include "ar9002_phy.h"
Sujithb5aec952009-08-07 09:45:15 +053019
20static void ath9k_get_txgain_index(struct ath_hw *ah,
21 struct ath9k_channel *chan,
22 struct calDataPerFreqOpLoop *rawDatasetOpLoop,
23 u8 *calChans, u16 availPiers, u8 *pwr, u8 *pcdacIdx)
24{
25 u8 pcdac, i = 0;
26 u16 idxL = 0, idxR = 0, numPiers;
27 bool match;
28 struct chan_centers centers;
29
30 ath9k_hw_get_channel_centers(ah, chan, &centers);
31
32 for (numPiers = 0; numPiers < availPiers; numPiers++)
33 if (calChans[numPiers] == AR5416_BCHAN_UNUSED)
34 break;
35
36 match = ath9k_hw_get_lower_upper_index(
37 (u8)FREQ2FBIN(centers.synth_center, IS_CHAN_2GHZ(chan)),
38 calChans, numPiers, &idxL, &idxR);
39 if (match) {
40 pcdac = rawDatasetOpLoop[idxL].pcdac[0][0];
41 *pwr = rawDatasetOpLoop[idxL].pwrPdg[0][0];
42 } else {
43 pcdac = rawDatasetOpLoop[idxR].pcdac[0][0];
44 *pwr = (rawDatasetOpLoop[idxL].pwrPdg[0][0] +
45 rawDatasetOpLoop[idxR].pwrPdg[0][0])/2;
46 }
47
48 while (pcdac > ah->originalGain[i] &&
49 i < (AR9280_TX_GAIN_TABLE_SIZE - 1))
50 i++;
51
52 *pcdacIdx = i;
Sujithb5aec952009-08-07 09:45:15 +053053}
54
55static void ath9k_olc_get_pdadcs(struct ath_hw *ah,
56 u32 initTxGain,
57 int txPower,
58 u8 *pPDADCValues)
59{
60 u32 i;
61 u32 offset;
62
63 REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL6_0,
64 AR_PHY_TX_PWRCTRL_ERR_EST_MODE, 3);
65 REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL6_1,
66 AR_PHY_TX_PWRCTRL_ERR_EST_MODE, 3);
67
68 REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL7,
69 AR_PHY_TX_PWRCTRL_INIT_TX_GAIN, initTxGain);
70
71 offset = txPower;
72 for (i = 0; i < AR5416_NUM_PDADC_VALUES; i++)
73 if (i < offset)
74 pPDADCValues[i] = 0x0;
75 else
76 pPDADCValues[i] = 0xFF;
77}
78
79static int ath9k_hw_def_get_eeprom_ver(struct ath_hw *ah)
80{
81 return ((ah->eeprom.def.baseEepHeader.version >> 12) & 0xF);
82}
83
84static int ath9k_hw_def_get_eeprom_rev(struct ath_hw *ah)
85{
86 return ((ah->eeprom.def.baseEepHeader.version) & 0xFFF);
87}
88
89static bool ath9k_hw_def_fill_eeprom(struct ath_hw *ah)
90{
91#define SIZE_EEPROM_DEF (sizeof(struct ar5416_eeprom_def) / sizeof(u16))
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -070092 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +053093 u16 *eep_data = (u16 *)&ah->eeprom.def;
94 int addr, ar5416_eep_start_loc = 0x100;
95
96 for (addr = 0; addr < SIZE_EEPROM_DEF; addr++) {
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -070097 if (!ath9k_hw_nvram_read(common, addr + ar5416_eep_start_loc,
Sujithb5aec952009-08-07 09:45:15 +053098 eep_data)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070099 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
100 "Unable to read eeprom region\n");
Sujithb5aec952009-08-07 09:45:15 +0530101 return false;
102 }
103 eep_data++;
104 }
105 return true;
106#undef SIZE_EEPROM_DEF
107}
108
109static int ath9k_hw_def_check_eeprom(struct ath_hw *ah)
110{
111 struct ar5416_eeprom_def *eep =
112 (struct ar5416_eeprom_def *) &ah->eeprom.def;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700113 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +0530114 u16 *eepdata, temp, magic, magic2;
115 u32 sum = 0, el;
116 bool need_swap = false;
117 int i, addr, size;
118
Luis R. Rodriguez5bb12792009-09-14 00:55:09 -0700119 if (!ath9k_hw_nvram_read(common, AR5416_EEPROM_MAGIC_OFFSET, &magic)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700120 ath_print(common, ATH_DBG_FATAL, "Reading Magic # failed\n");
Sujithb5aec952009-08-07 09:45:15 +0530121 return false;
122 }
123
124 if (!ath9k_hw_use_flash(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700125 ath_print(common, ATH_DBG_EEPROM,
126 "Read Magic = 0x%04X\n", magic);
Sujithb5aec952009-08-07 09:45:15 +0530127
128 if (magic != AR5416_EEPROM_MAGIC) {
129 magic2 = swab16(magic);
130
131 if (magic2 == AR5416_EEPROM_MAGIC) {
132 size = sizeof(struct ar5416_eeprom_def);
133 need_swap = true;
134 eepdata = (u16 *) (&ah->eeprom);
135
136 for (addr = 0; addr < size / sizeof(u16); addr++) {
137 temp = swab16(*eepdata);
138 *eepdata = temp;
139 eepdata++;
140 }
141 } else {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700142 ath_print(common, ATH_DBG_FATAL,
143 "Invalid EEPROM Magic. "
144 "Endianness mismatch.\n");
Sujithb5aec952009-08-07 09:45:15 +0530145 return -EINVAL;
146 }
147 }
148 }
149
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700150 ath_print(common, ATH_DBG_EEPROM, "need_swap = %s.\n",
151 need_swap ? "True" : "False");
Sujithb5aec952009-08-07 09:45:15 +0530152
153 if (need_swap)
154 el = swab16(ah->eeprom.def.baseEepHeader.length);
155 else
156 el = ah->eeprom.def.baseEepHeader.length;
157
158 if (el > sizeof(struct ar5416_eeprom_def))
159 el = sizeof(struct ar5416_eeprom_def) / sizeof(u16);
160 else
161 el = el / sizeof(u16);
162
163 eepdata = (u16 *)(&ah->eeprom);
164
165 for (i = 0; i < el; i++)
166 sum ^= *eepdata++;
167
168 if (need_swap) {
169 u32 integer, j;
170 u16 word;
171
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700172 ath_print(common, ATH_DBG_EEPROM,
173 "EEPROM Endianness is not native.. Changing.\n");
Sujithb5aec952009-08-07 09:45:15 +0530174
175 word = swab16(eep->baseEepHeader.length);
176 eep->baseEepHeader.length = word;
177
178 word = swab16(eep->baseEepHeader.checksum);
179 eep->baseEepHeader.checksum = word;
180
181 word = swab16(eep->baseEepHeader.version);
182 eep->baseEepHeader.version = word;
183
184 word = swab16(eep->baseEepHeader.regDmn[0]);
185 eep->baseEepHeader.regDmn[0] = word;
186
187 word = swab16(eep->baseEepHeader.regDmn[1]);
188 eep->baseEepHeader.regDmn[1] = word;
189
190 word = swab16(eep->baseEepHeader.rfSilent);
191 eep->baseEepHeader.rfSilent = word;
192
193 word = swab16(eep->baseEepHeader.blueToothOptions);
194 eep->baseEepHeader.blueToothOptions = word;
195
196 word = swab16(eep->baseEepHeader.deviceCap);
197 eep->baseEepHeader.deviceCap = word;
198
199 for (j = 0; j < ARRAY_SIZE(eep->modalHeader); j++) {
200 struct modal_eep_header *pModal =
201 &eep->modalHeader[j];
202 integer = swab32(pModal->antCtrlCommon);
203 pModal->antCtrlCommon = integer;
204
205 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
206 integer = swab32(pModal->antCtrlChain[i]);
207 pModal->antCtrlChain[i] = integer;
208 }
209
210 for (i = 0; i < AR5416_EEPROM_MODAL_SPURS; i++) {
211 word = swab16(pModal->spurChans[i].spurChan);
212 pModal->spurChans[i].spurChan = word;
213 }
214 }
215 }
216
217 if (sum != 0xffff || ah->eep_ops->get_eeprom_ver(ah) != AR5416_EEP_VER ||
218 ah->eep_ops->get_eeprom_rev(ah) < AR5416_EEP_NO_BACK_VER) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700219 ath_print(common, ATH_DBG_FATAL,
220 "Bad EEPROM checksum 0x%x or revision 0x%04x\n",
Sujithb5aec952009-08-07 09:45:15 +0530221 sum, ah->eep_ops->get_eeprom_ver(ah));
222 return -EINVAL;
223 }
224
Felix Fietkau57b98382010-04-15 17:39:17 -0400225 /* Enable fixup for AR_AN_TOP2 if necessary */
226 if (AR_SREV_9280_10_OR_LATER(ah) &&
227 (eep->baseEepHeader.version & 0xff) > 0x0a &&
228 eep->baseEepHeader.pwdclkind == 0)
229 ah->need_an_top2_fixup = 1;
230
Sujithb5aec952009-08-07 09:45:15 +0530231 return 0;
232}
233
234static u32 ath9k_hw_def_get_eeprom(struct ath_hw *ah,
235 enum eeprom_param param)
236{
237 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
238 struct modal_eep_header *pModal = eep->modalHeader;
239 struct base_eep_header *pBase = &eep->baseEepHeader;
240
241 switch (param) {
242 case EEP_NFTHRESH_5:
243 return pModal[0].noiseFloorThreshCh[0];
244 case EEP_NFTHRESH_2:
245 return pModal[1].noiseFloorThreshCh[0];
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400246 case EEP_MAC_LSW:
Sujithb5aec952009-08-07 09:45:15 +0530247 return pBase->macAddr[0] << 8 | pBase->macAddr[1];
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400248 case EEP_MAC_MID:
Sujithb5aec952009-08-07 09:45:15 +0530249 return pBase->macAddr[2] << 8 | pBase->macAddr[3];
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400250 case EEP_MAC_MSW:
Sujithb5aec952009-08-07 09:45:15 +0530251 return pBase->macAddr[4] << 8 | pBase->macAddr[5];
252 case EEP_REG_0:
253 return pBase->regDmn[0];
254 case EEP_REG_1:
255 return pBase->regDmn[1];
256 case EEP_OP_CAP:
257 return pBase->deviceCap;
258 case EEP_OP_MODE:
259 return pBase->opCapFlags;
260 case EEP_RF_SILENT:
261 return pBase->rfSilent;
262 case EEP_OB_5:
263 return pModal[0].ob;
264 case EEP_DB_5:
265 return pModal[0].db;
266 case EEP_OB_2:
267 return pModal[1].ob;
268 case EEP_DB_2:
269 return pModal[1].db;
270 case EEP_MINOR_REV:
271 return AR5416_VER_MASK;
272 case EEP_TX_MASK:
273 return pBase->txMask;
274 case EEP_RX_MASK:
275 return pBase->rxMask;
Felix Fietkau5b75d0f2010-04-26 15:04:34 -0400276 case EEP_FSTCLK_5G:
277 return pBase->fastClk5g;
Sujithb5aec952009-08-07 09:45:15 +0530278 case EEP_RXGAIN_TYPE:
279 return pBase->rxGainType;
280 case EEP_TXGAIN_TYPE:
281 return pBase->txGainType;
282 case EEP_OL_PWRCTRL:
283 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_19)
284 return pBase->openLoopPwrCntl ? true : false;
285 else
286 return false;
287 case EEP_RC_CHAIN_MASK:
288 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_19)
289 return pBase->rcChainMask;
290 else
291 return 0;
292 case EEP_DAC_HPWR_5G:
293 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_20)
294 return pBase->dacHiPwrMode_5G;
295 else
296 return 0;
297 case EEP_FRAC_N_5G:
298 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_22)
299 return pBase->frac_n_5g;
300 else
301 return 0;
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +0530302 case EEP_PWR_TABLE_OFFSET:
303 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_21)
304 return pBase->pwr_table_offset;
305 else
306 return AR5416_PWR_TABLE_OFFSET_DB;
Sujithb5aec952009-08-07 09:45:15 +0530307 default:
308 return 0;
309 }
310}
311
312static void ath9k_hw_def_set_gain(struct ath_hw *ah,
313 struct modal_eep_header *pModal,
314 struct ar5416_eeprom_def *eep,
315 u8 txRxAttenLocal, int regChainOffset, int i)
316{
317 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_3) {
318 txRxAttenLocal = pModal->txRxAttenCh[i];
319
320 if (AR_SREV_9280_10_OR_LATER(ah)) {
321 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
322 AR_PHY_GAIN_2GHZ_XATTEN1_MARGIN,
323 pModal->bswMargin[i]);
324 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
325 AR_PHY_GAIN_2GHZ_XATTEN1_DB,
326 pModal->bswAtten[i]);
327 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
328 AR_PHY_GAIN_2GHZ_XATTEN2_MARGIN,
329 pModal->xatten2Margin[i]);
330 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
331 AR_PHY_GAIN_2GHZ_XATTEN2_DB,
332 pModal->xatten2Db[i]);
333 } else {
334 REG_WRITE(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
335 (REG_READ(ah, AR_PHY_GAIN_2GHZ + regChainOffset) &
336 ~AR_PHY_GAIN_2GHZ_BSW_MARGIN)
337 | SM(pModal-> bswMargin[i],
338 AR_PHY_GAIN_2GHZ_BSW_MARGIN));
339 REG_WRITE(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
340 (REG_READ(ah, AR_PHY_GAIN_2GHZ + regChainOffset) &
341 ~AR_PHY_GAIN_2GHZ_BSW_ATTEN)
342 | SM(pModal->bswAtten[i],
343 AR_PHY_GAIN_2GHZ_BSW_ATTEN));
344 }
345 }
346
347 if (AR_SREV_9280_10_OR_LATER(ah)) {
348 REG_RMW_FIELD(ah,
349 AR_PHY_RXGAIN + regChainOffset,
350 AR9280_PHY_RXGAIN_TXRX_ATTEN, txRxAttenLocal);
351 REG_RMW_FIELD(ah,
352 AR_PHY_RXGAIN + regChainOffset,
353 AR9280_PHY_RXGAIN_TXRX_MARGIN, pModal->rxTxMarginCh[i]);
354 } else {
355 REG_WRITE(ah,
356 AR_PHY_RXGAIN + regChainOffset,
357 (REG_READ(ah, AR_PHY_RXGAIN + regChainOffset) &
358 ~AR_PHY_RXGAIN_TXRX_ATTEN)
359 | SM(txRxAttenLocal, AR_PHY_RXGAIN_TXRX_ATTEN));
360 REG_WRITE(ah,
361 AR_PHY_GAIN_2GHZ + regChainOffset,
362 (REG_READ(ah, AR_PHY_GAIN_2GHZ + regChainOffset) &
363 ~AR_PHY_GAIN_2GHZ_RXTX_MARGIN) |
364 SM(pModal->rxTxMarginCh[i], AR_PHY_GAIN_2GHZ_RXTX_MARGIN));
365 }
366}
367
368static void ath9k_hw_def_set_board_values(struct ath_hw *ah,
369 struct ath9k_channel *chan)
370{
371 struct modal_eep_header *pModal;
372 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
373 int i, regChainOffset;
374 u8 txRxAttenLocal;
375
376 pModal = &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
377 txRxAttenLocal = IS_CHAN_2GHZ(chan) ? 23 : 44;
378
379 REG_WRITE(ah, AR_PHY_SWITCH_COM,
380 ah->eep_ops->get_eeprom_antenna_cfg(ah, chan));
381
382 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
383 if (AR_SREV_9280(ah)) {
384 if (i >= 2)
385 break;
386 }
387
388 if (AR_SREV_5416_20_OR_LATER(ah) &&
389 (ah->rxchainmask == 5 || ah->txchainmask == 5) && (i != 0))
390 regChainOffset = (i == 1) ? 0x2000 : 0x1000;
391 else
392 regChainOffset = i * 0x1000;
393
394 REG_WRITE(ah, AR_PHY_SWITCH_CHAIN_0 + regChainOffset,
395 pModal->antCtrlChain[i]);
396
397 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset,
398 (REG_READ(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset) &
399 ~(AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF |
400 AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF)) |
401 SM(pModal->iqCalICh[i],
402 AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF) |
403 SM(pModal->iqCalQCh[i],
404 AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF));
405
406 if ((i == 0) || AR_SREV_5416_20_OR_LATER(ah))
407 ath9k_hw_def_set_gain(ah, pModal, eep, txRxAttenLocal,
408 regChainOffset, i);
409 }
410
411 if (AR_SREV_9280_10_OR_LATER(ah)) {
412 if (IS_CHAN_2GHZ(chan)) {
413 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH0,
414 AR_AN_RF2G1_CH0_OB,
415 AR_AN_RF2G1_CH0_OB_S,
416 pModal->ob);
417 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH0,
418 AR_AN_RF2G1_CH0_DB,
419 AR_AN_RF2G1_CH0_DB_S,
420 pModal->db);
421 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH1,
422 AR_AN_RF2G1_CH1_OB,
423 AR_AN_RF2G1_CH1_OB_S,
424 pModal->ob_ch1);
425 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF2G1_CH1,
426 AR_AN_RF2G1_CH1_DB,
427 AR_AN_RF2G1_CH1_DB_S,
428 pModal->db_ch1);
429 } else {
430 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH0,
431 AR_AN_RF5G1_CH0_OB5,
432 AR_AN_RF5G1_CH0_OB5_S,
433 pModal->ob);
434 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH0,
435 AR_AN_RF5G1_CH0_DB5,
436 AR_AN_RF5G1_CH0_DB5_S,
437 pModal->db);
438 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH1,
439 AR_AN_RF5G1_CH1_OB5,
440 AR_AN_RF5G1_CH1_OB5_S,
441 pModal->ob_ch1);
442 ath9k_hw_analog_shift_rmw(ah, AR_AN_RF5G1_CH1,
443 AR_AN_RF5G1_CH1_DB5,
444 AR_AN_RF5G1_CH1_DB5_S,
445 pModal->db_ch1);
446 }
447 ath9k_hw_analog_shift_rmw(ah, AR_AN_TOP2,
448 AR_AN_TOP2_XPABIAS_LVL,
449 AR_AN_TOP2_XPABIAS_LVL_S,
450 pModal->xpaBiasLvl);
451 ath9k_hw_analog_shift_rmw(ah, AR_AN_TOP2,
452 AR_AN_TOP2_LOCALBIAS,
453 AR_AN_TOP2_LOCALBIAS_S,
454 pModal->local_bias);
455 REG_RMW_FIELD(ah, AR_PHY_XPA_CFG, AR_PHY_FORCE_XPA_CFG,
456 pModal->force_xpaon);
457 }
458
459 REG_RMW_FIELD(ah, AR_PHY_SETTLING, AR_PHY_SETTLING_SWITCH,
460 pModal->switchSettling);
461 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ, AR_PHY_DESIRED_SZ_ADC,
462 pModal->adcDesiredSize);
463
464 if (!AR_SREV_9280_10_OR_LATER(ah))
465 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ,
466 AR_PHY_DESIRED_SZ_PGA,
467 pModal->pgaDesiredSize);
468
469 REG_WRITE(ah, AR_PHY_RF_CTL4,
470 SM(pModal->txEndToXpaOff, AR_PHY_RF_CTL4_TX_END_XPAA_OFF)
471 | SM(pModal->txEndToXpaOff,
472 AR_PHY_RF_CTL4_TX_END_XPAB_OFF)
473 | SM(pModal->txFrameToXpaOn,
474 AR_PHY_RF_CTL4_FRAME_XPAA_ON)
475 | SM(pModal->txFrameToXpaOn,
476 AR_PHY_RF_CTL4_FRAME_XPAB_ON));
477
478 REG_RMW_FIELD(ah, AR_PHY_RF_CTL3, AR_PHY_TX_END_TO_A2_RX_ON,
479 pModal->txEndToRxOn);
480
481 if (AR_SREV_9280_10_OR_LATER(ah)) {
482 REG_RMW_FIELD(ah, AR_PHY_CCA, AR9280_PHY_CCA_THRESH62,
483 pModal->thresh62);
484 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA0,
485 AR_PHY_EXT_CCA0_THRESH62,
486 pModal->thresh62);
487 } else {
488 REG_RMW_FIELD(ah, AR_PHY_CCA, AR_PHY_CCA_THRESH62,
489 pModal->thresh62);
490 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
491 AR_PHY_EXT_CCA_THRESH62,
492 pModal->thresh62);
493 }
494
495 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_2) {
496 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2,
497 AR_PHY_TX_END_DATA_START,
498 pModal->txFrameToDataStart);
499 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2, AR_PHY_TX_END_PA_ON,
500 pModal->txFrameToPaOn);
501 }
502
503 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_3) {
504 if (IS_CHAN_HT40(chan))
505 REG_RMW_FIELD(ah, AR_PHY_SETTLING,
506 AR_PHY_SETTLING_SWITCH,
507 pModal->swSettleHt40);
508 }
509
510 if (AR_SREV_9280_20_OR_LATER(ah) &&
511 AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_19)
512 REG_RMW_FIELD(ah, AR_PHY_CCK_TX_CTRL,
513 AR_PHY_CCK_TX_CTRL_TX_DAC_SCALE_CCK,
514 pModal->miscBits);
515
516
517 if (AR_SREV_9280_20(ah) && AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_20) {
518 if (IS_CHAN_2GHZ(chan))
519 REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE,
520 eep->baseEepHeader.dacLpMode);
521 else if (eep->baseEepHeader.dacHiPwrMode_5G)
522 REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE, 0);
523 else
524 REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE,
525 eep->baseEepHeader.dacLpMode);
526
Senthil Balasubramaniand865ca6c2009-09-17 09:28:21 +0530527 udelay(100);
528
Sujithb5aec952009-08-07 09:45:15 +0530529 REG_RMW_FIELD(ah, AR_PHY_FRAME_CTL, AR_PHY_FRAME_CTL_TX_CLIP,
530 pModal->miscBits >> 2);
531
532 REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL9,
533 AR_PHY_TX_DESIRED_SCALE_CCK,
534 eep->baseEepHeader.desiredScaleCCK);
535 }
536}
537
538static void ath9k_hw_def_set_addac(struct ath_hw *ah,
539 struct ath9k_channel *chan)
540{
541#define XPA_LVL_FREQ(cnt) (pModal->xpaBiasLvlFreq[cnt])
542 struct modal_eep_header *pModal;
543 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
544 u8 biaslevel;
545
546 if (ah->hw_version.macVersion != AR_SREV_VERSION_9160)
547 return;
548
549 if (ah->eep_ops->get_eeprom_rev(ah) < AR5416_EEP_MINOR_VER_7)
550 return;
551
552 pModal = &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
553
554 if (pModal->xpaBiasLvl != 0xff) {
555 biaslevel = pModal->xpaBiasLvl;
556 } else {
557 u16 resetFreqBin, freqBin, freqCount = 0;
558 struct chan_centers centers;
559
560 ath9k_hw_get_channel_centers(ah, chan, &centers);
561
562 resetFreqBin = FREQ2FBIN(centers.synth_center,
563 IS_CHAN_2GHZ(chan));
564 freqBin = XPA_LVL_FREQ(0) & 0xff;
565 biaslevel = (u8) (XPA_LVL_FREQ(0) >> 14);
566
567 freqCount++;
568
569 while (freqCount < 3) {
570 if (XPA_LVL_FREQ(freqCount) == 0x0)
571 break;
572
573 freqBin = XPA_LVL_FREQ(freqCount) & 0xff;
574 if (resetFreqBin >= freqBin)
575 biaslevel = (u8)(XPA_LVL_FREQ(freqCount) >> 14);
576 else
577 break;
578 freqCount++;
579 }
580 }
581
582 if (IS_CHAN_2GHZ(chan)) {
583 INI_RA(&ah->iniAddac, 7, 1) = (INI_RA(&ah->iniAddac,
584 7, 1) & (~0x18)) | biaslevel << 3;
585 } else {
586 INI_RA(&ah->iniAddac, 6, 1) = (INI_RA(&ah->iniAddac,
587 6, 1) & (~0xc0)) | biaslevel << 6;
588 }
589#undef XPA_LVL_FREQ
590}
591
592static void ath9k_hw_get_def_gain_boundaries_pdadcs(struct ath_hw *ah,
593 struct ath9k_channel *chan,
594 struct cal_data_per_freq *pRawDataSet,
595 u8 *bChans, u16 availPiers,
596 u16 tPdGainOverlap, int16_t *pMinCalPower,
597 u16 *pPdGainBoundaries, u8 *pPDADCValues,
598 u16 numXpdGains)
599{
600 int i, j, k;
601 int16_t ss;
602 u16 idxL = 0, idxR = 0, numPiers;
603 static u8 vpdTableL[AR5416_NUM_PD_GAINS]
604 [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
605 static u8 vpdTableR[AR5416_NUM_PD_GAINS]
606 [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
607 static u8 vpdTableI[AR5416_NUM_PD_GAINS]
608 [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
609
610 u8 *pVpdL, *pVpdR, *pPwrL, *pPwrR;
611 u8 minPwrT4[AR5416_NUM_PD_GAINS];
612 u8 maxPwrT4[AR5416_NUM_PD_GAINS];
613 int16_t vpdStep;
614 int16_t tmpVal;
615 u16 sizeCurrVpdTable, maxIndex, tgtIndex;
616 bool match;
617 int16_t minDelta = 0;
618 struct chan_centers centers;
619
Prarit Bhargavaa5fdbca2010-05-27 14:14:54 -0400620 memset(&minPwrT4, 0, AR9287_NUM_PD_GAINS);
Sujithb5aec952009-08-07 09:45:15 +0530621 ath9k_hw_get_channel_centers(ah, chan, &centers);
622
623 for (numPiers = 0; numPiers < availPiers; numPiers++) {
624 if (bChans[numPiers] == AR5416_BCHAN_UNUSED)
625 break;
626 }
627
628 match = ath9k_hw_get_lower_upper_index((u8)FREQ2FBIN(centers.synth_center,
629 IS_CHAN_2GHZ(chan)),
630 bChans, numPiers, &idxL, &idxR);
631
632 if (match) {
633 for (i = 0; i < numXpdGains; i++) {
634 minPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][0];
635 maxPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][4];
636 ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
637 pRawDataSet[idxL].pwrPdg[i],
638 pRawDataSet[idxL].vpdPdg[i],
639 AR5416_PD_GAIN_ICEPTS,
640 vpdTableI[i]);
641 }
642 } else {
643 for (i = 0; i < numXpdGains; i++) {
644 pVpdL = pRawDataSet[idxL].vpdPdg[i];
645 pPwrL = pRawDataSet[idxL].pwrPdg[i];
646 pVpdR = pRawDataSet[idxR].vpdPdg[i];
647 pPwrR = pRawDataSet[idxR].pwrPdg[i];
648
649 minPwrT4[i] = max(pPwrL[0], pPwrR[0]);
650
651 maxPwrT4[i] =
652 min(pPwrL[AR5416_PD_GAIN_ICEPTS - 1],
653 pPwrR[AR5416_PD_GAIN_ICEPTS - 1]);
654
655
656 ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
657 pPwrL, pVpdL,
658 AR5416_PD_GAIN_ICEPTS,
659 vpdTableL[i]);
660 ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
661 pPwrR, pVpdR,
662 AR5416_PD_GAIN_ICEPTS,
663 vpdTableR[i]);
664
665 for (j = 0; j <= (maxPwrT4[i] - minPwrT4[i]) / 2; j++) {
666 vpdTableI[i][j] =
667 (u8)(ath9k_hw_interpolate((u16)
668 FREQ2FBIN(centers.
669 synth_center,
670 IS_CHAN_2GHZ
671 (chan)),
672 bChans[idxL], bChans[idxR],
673 vpdTableL[i][j], vpdTableR[i][j]));
674 }
675 }
676 }
677
678 *pMinCalPower = (int16_t)(minPwrT4[0] / 2);
679
680 k = 0;
681
682 for (i = 0; i < numXpdGains; i++) {
683 if (i == (numXpdGains - 1))
684 pPdGainBoundaries[i] =
685 (u16)(maxPwrT4[i] / 2);
686 else
687 pPdGainBoundaries[i] =
688 (u16)((maxPwrT4[i] + minPwrT4[i + 1]) / 4);
689
690 pPdGainBoundaries[i] =
691 min((u16)AR5416_MAX_RATE_POWER, pPdGainBoundaries[i]);
692
693 if ((i == 0) && !AR_SREV_5416_20_OR_LATER(ah)) {
694 minDelta = pPdGainBoundaries[0] - 23;
695 pPdGainBoundaries[0] = 23;
696 } else {
697 minDelta = 0;
698 }
699
700 if (i == 0) {
701 if (AR_SREV_9280_10_OR_LATER(ah))
702 ss = (int16_t)(0 - (minPwrT4[i] / 2));
703 else
704 ss = 0;
705 } else {
706 ss = (int16_t)((pPdGainBoundaries[i - 1] -
707 (minPwrT4[i] / 2)) -
708 tPdGainOverlap + 1 + minDelta);
709 }
710 vpdStep = (int16_t)(vpdTableI[i][1] - vpdTableI[i][0]);
711 vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep);
712
713 while ((ss < 0) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
714 tmpVal = (int16_t)(vpdTableI[i][0] + ss * vpdStep);
715 pPDADCValues[k++] = (u8)((tmpVal < 0) ? 0 : tmpVal);
716 ss++;
717 }
718
719 sizeCurrVpdTable = (u8) ((maxPwrT4[i] - minPwrT4[i]) / 2 + 1);
720 tgtIndex = (u8)(pPdGainBoundaries[i] + tPdGainOverlap -
721 (minPwrT4[i] / 2));
722 maxIndex = (tgtIndex < sizeCurrVpdTable) ?
723 tgtIndex : sizeCurrVpdTable;
724
725 while ((ss < maxIndex) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
726 pPDADCValues[k++] = vpdTableI[i][ss++];
727 }
728
729 vpdStep = (int16_t)(vpdTableI[i][sizeCurrVpdTable - 1] -
730 vpdTableI[i][sizeCurrVpdTable - 2]);
731 vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep);
732
Felix Fietkau03b47762010-07-11 12:48:41 +0200733 if (tgtIndex >= maxIndex) {
Sujithb5aec952009-08-07 09:45:15 +0530734 while ((ss <= tgtIndex) &&
735 (k < (AR5416_NUM_PDADC_VALUES - 1))) {
736 tmpVal = (int16_t)((vpdTableI[i][sizeCurrVpdTable - 1] +
737 (ss - maxIndex + 1) * vpdStep));
738 pPDADCValues[k++] = (u8)((tmpVal > 255) ?
739 255 : tmpVal);
740 ss++;
741 }
742 }
743 }
744
745 while (i < AR5416_PD_GAINS_IN_MASK) {
746 pPdGainBoundaries[i] = pPdGainBoundaries[i - 1];
747 i++;
748 }
749
750 while (k < AR5416_NUM_PDADC_VALUES) {
751 pPDADCValues[k] = pPDADCValues[k - 1];
752 k++;
753 }
Sujithb5aec952009-08-07 09:45:15 +0530754}
755
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +0530756static int16_t ath9k_change_gain_boundary_setting(struct ath_hw *ah,
757 u16 *gb,
758 u16 numXpdGain,
759 u16 pdGainOverlap_t2,
760 int8_t pwr_table_offset,
761 int16_t *diff)
762
763{
764 u16 k;
765
766 /* Prior to writing the boundaries or the pdadc vs. power table
767 * into the chip registers the default starting point on the pdadc
768 * vs. power table needs to be checked and the curve boundaries
769 * adjusted accordingly
770 */
771 if (AR_SREV_9280_20_OR_LATER(ah)) {
772 u16 gb_limit;
773
774 if (AR5416_PWR_TABLE_OFFSET_DB != pwr_table_offset) {
775 /* get the difference in dB */
776 *diff = (u16)(pwr_table_offset - AR5416_PWR_TABLE_OFFSET_DB);
777 /* get the number of half dB steps */
778 *diff *= 2;
779 /* change the original gain boundary settings
780 * by the number of half dB steps
781 */
782 for (k = 0; k < numXpdGain; k++)
783 gb[k] = (u16)(gb[k] - *diff);
784 }
785 /* Because of a hardware limitation, ensure the gain boundary
786 * is not larger than (63 - overlap)
787 */
788 gb_limit = (u16)(AR5416_MAX_RATE_POWER - pdGainOverlap_t2);
789
790 for (k = 0; k < numXpdGain; k++)
791 gb[k] = (u16)min(gb_limit, gb[k]);
792 }
793
794 return *diff;
795}
796
797static void ath9k_adjust_pdadc_values(struct ath_hw *ah,
798 int8_t pwr_table_offset,
799 int16_t diff,
800 u8 *pdadcValues)
801{
802#define NUM_PDADC(diff) (AR5416_NUM_PDADC_VALUES - diff)
803 u16 k;
804
805 /* If this is a board that has a pwrTableOffset that differs from
806 * the default AR5416_PWR_TABLE_OFFSET_DB then the start of the
807 * pdadc vs pwr table needs to be adjusted prior to writing to the
808 * chip.
809 */
810 if (AR_SREV_9280_20_OR_LATER(ah)) {
811 if (AR5416_PWR_TABLE_OFFSET_DB != pwr_table_offset) {
812 /* shift the table to start at the new offset */
813 for (k = 0; k < (u16)NUM_PDADC(diff); k++ ) {
814 pdadcValues[k] = pdadcValues[k + diff];
815 }
816
817 /* fill the back of the table */
818 for (k = (u16)NUM_PDADC(diff); k < NUM_PDADC(0); k++) {
819 pdadcValues[k] = pdadcValues[NUM_PDADC(diff)];
820 }
821 }
822 }
823#undef NUM_PDADC
824}
825
Sujithb5aec952009-08-07 09:45:15 +0530826static void ath9k_hw_set_def_power_cal_table(struct ath_hw *ah,
827 struct ath9k_channel *chan,
828 int16_t *pTxPowerIndexOffset)
829{
830#define SM_PD_GAIN(x) SM(0x38, AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_##x)
831#define SM_PDGAIN_B(x, y) \
832 SM((gainBoundaries[x]), AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_##y)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700833 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +0530834 struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
835 struct cal_data_per_freq *pRawDataset;
836 u8 *pCalBChans = NULL;
837 u16 pdGainOverlap_t2;
838 static u8 pdadcValues[AR5416_NUM_PDADC_VALUES];
839 u16 gainBoundaries[AR5416_PD_GAINS_IN_MASK];
840 u16 numPiers, i, j;
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +0530841 int16_t tMinCalPower, diff = 0;
Sujithb5aec952009-08-07 09:45:15 +0530842 u16 numXpdGain, xpdMask;
843 u16 xpdGainValues[AR5416_NUM_PD_GAINS] = { 0, 0, 0, 0 };
844 u32 reg32, regOffset, regChainOffset;
845 int16_t modalIdx;
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +0530846 int8_t pwr_table_offset;
Sujithb5aec952009-08-07 09:45:15 +0530847
848 modalIdx = IS_CHAN_2GHZ(chan) ? 1 : 0;
849 xpdMask = pEepData->modalHeader[modalIdx].xpdGain;
850
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +0530851 pwr_table_offset = ah->eep_ops->get_eeprom(ah, EEP_PWR_TABLE_OFFSET);
852
Sujithb5aec952009-08-07 09:45:15 +0530853 if ((pEepData->baseEepHeader.version & AR5416_EEP_VER_MINOR_MASK) >=
854 AR5416_EEP_MINOR_VER_2) {
855 pdGainOverlap_t2 =
856 pEepData->modalHeader[modalIdx].pdGainOverlap;
857 } else {
858 pdGainOverlap_t2 = (u16)(MS(REG_READ(ah, AR_PHY_TPCRG5),
859 AR_PHY_TPCRG5_PD_GAIN_OVERLAP));
860 }
861
862 if (IS_CHAN_2GHZ(chan)) {
863 pCalBChans = pEepData->calFreqPier2G;
864 numPiers = AR5416_NUM_2G_CAL_PIERS;
865 } else {
866 pCalBChans = pEepData->calFreqPier5G;
867 numPiers = AR5416_NUM_5G_CAL_PIERS;
868 }
869
870 if (OLC_FOR_AR9280_20_LATER && IS_CHAN_2GHZ(chan)) {
871 pRawDataset = pEepData->calPierData2G[0];
872 ah->initPDADC = ((struct calDataPerFreqOpLoop *)
873 pRawDataset)->vpdPdg[0][0];
874 }
875
876 numXpdGain = 0;
877
878 for (i = 1; i <= AR5416_PD_GAINS_IN_MASK; i++) {
879 if ((xpdMask >> (AR5416_PD_GAINS_IN_MASK - i)) & 1) {
880 if (numXpdGain >= AR5416_NUM_PD_GAINS)
881 break;
882 xpdGainValues[numXpdGain] =
883 (u16)(AR5416_PD_GAINS_IN_MASK - i);
884 numXpdGain++;
885 }
886 }
887
888 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_NUM_PD_GAIN,
889 (numXpdGain - 1) & 0x3);
890 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_1,
891 xpdGainValues[0]);
892 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_2,
893 xpdGainValues[1]);
894 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_3,
895 xpdGainValues[2]);
896
897 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
898 if (AR_SREV_5416_20_OR_LATER(ah) &&
899 (ah->rxchainmask == 5 || ah->txchainmask == 5) &&
900 (i != 0)) {
901 regChainOffset = (i == 1) ? 0x2000 : 0x1000;
902 } else
903 regChainOffset = i * 0x1000;
904
905 if (pEepData->baseEepHeader.txMask & (1 << i)) {
906 if (IS_CHAN_2GHZ(chan))
907 pRawDataset = pEepData->calPierData2G[i];
908 else
909 pRawDataset = pEepData->calPierData5G[i];
910
911
912 if (OLC_FOR_AR9280_20_LATER) {
913 u8 pcdacIdx;
914 u8 txPower;
915
916 ath9k_get_txgain_index(ah, chan,
917 (struct calDataPerFreqOpLoop *)pRawDataset,
918 pCalBChans, numPiers, &txPower, &pcdacIdx);
919 ath9k_olc_get_pdadcs(ah, pcdacIdx,
920 txPower/2, pdadcValues);
921 } else {
922 ath9k_hw_get_def_gain_boundaries_pdadcs(ah,
923 chan, pRawDataset,
924 pCalBChans, numPiers,
925 pdGainOverlap_t2,
926 &tMinCalPower,
927 gainBoundaries,
928 pdadcValues,
929 numXpdGain);
930 }
931
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +0530932 diff = ath9k_change_gain_boundary_setting(ah,
933 gainBoundaries,
934 numXpdGain,
935 pdGainOverlap_t2,
936 pwr_table_offset,
937 &diff);
938
Sujithb5aec952009-08-07 09:45:15 +0530939 if ((i == 0) || AR_SREV_5416_20_OR_LATER(ah)) {
940 if (OLC_FOR_AR9280_20_LATER) {
941 REG_WRITE(ah,
942 AR_PHY_TPCRG5 + regChainOffset,
943 SM(0x6,
944 AR_PHY_TPCRG5_PD_GAIN_OVERLAP) |
945 SM_PD_GAIN(1) | SM_PD_GAIN(2) |
946 SM_PD_GAIN(3) | SM_PD_GAIN(4));
947 } else {
948 REG_WRITE(ah,
949 AR_PHY_TPCRG5 + regChainOffset,
950 SM(pdGainOverlap_t2,
951 AR_PHY_TPCRG5_PD_GAIN_OVERLAP)|
952 SM_PDGAIN_B(0, 1) |
953 SM_PDGAIN_B(1, 2) |
954 SM_PDGAIN_B(2, 3) |
955 SM_PDGAIN_B(3, 4));
956 }
957 }
958
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +0530959
960 ath9k_adjust_pdadc_values(ah, pwr_table_offset,
961 diff, pdadcValues);
962
Sujithb5aec952009-08-07 09:45:15 +0530963 regOffset = AR_PHY_BASE + (672 << 2) + regChainOffset;
964 for (j = 0; j < 32; j++) {
965 reg32 = ((pdadcValues[4 * j + 0] & 0xFF) << 0) |
966 ((pdadcValues[4 * j + 1] & 0xFF) << 8) |
967 ((pdadcValues[4 * j + 2] & 0xFF) << 16)|
968 ((pdadcValues[4 * j + 3] & 0xFF) << 24);
969 REG_WRITE(ah, regOffset, reg32);
970
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700971 ath_print(common, ATH_DBG_EEPROM,
972 "PDADC (%d,%4x): %4.4x %8.8x\n",
973 i, regChainOffset, regOffset,
974 reg32);
975 ath_print(common, ATH_DBG_EEPROM,
976 "PDADC: Chain %d | PDADC %3d "
977 "Value %3d | PDADC %3d Value %3d | "
978 "PDADC %3d Value %3d | PDADC %3d "
979 "Value %3d |\n",
980 i, 4 * j, pdadcValues[4 * j],
981 4 * j + 1, pdadcValues[4 * j + 1],
982 4 * j + 2, pdadcValues[4 * j + 2],
983 4 * j + 3,
984 pdadcValues[4 * j + 3]);
Sujithb5aec952009-08-07 09:45:15 +0530985
986 regOffset += 4;
987 }
988 }
989 }
990
991 *pTxPowerIndexOffset = 0;
992#undef SM_PD_GAIN
993#undef SM_PDGAIN_B
994}
995
996static void ath9k_hw_set_def_power_per_rate_table(struct ath_hw *ah,
997 struct ath9k_channel *chan,
998 int16_t *ratesArray,
999 u16 cfgCtl,
1000 u16 AntennaReduction,
1001 u16 twiceMaxRegulatoryPower,
1002 u16 powerLimit)
1003{
1004#define REDUCE_SCALED_POWER_BY_TWO_CHAIN 6 /* 10*log10(2)*2 */
Senthil Balasubramaniand865ca6c2009-09-17 09:28:21 +05301005#define REDUCE_SCALED_POWER_BY_THREE_CHAIN 9 /* 10*log10(3)*2 */
Sujithb5aec952009-08-07 09:45:15 +05301006
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001007 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithb5aec952009-08-07 09:45:15 +05301008 struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
1009 u16 twiceMaxEdgePower = AR5416_MAX_RATE_POWER;
1010 static const u16 tpScaleReductionTable[5] =
1011 { 0, 3, 6, 9, AR5416_MAX_RATE_POWER };
1012
1013 int i;
1014 int16_t twiceLargestAntenna;
1015 struct cal_ctl_data *rep;
1016 struct cal_target_power_leg targetPowerOfdm, targetPowerCck = {
1017 0, { 0, 0, 0, 0}
1018 };
1019 struct cal_target_power_leg targetPowerOfdmExt = {
1020 0, { 0, 0, 0, 0} }, targetPowerCckExt = {
1021 0, { 0, 0, 0, 0 }
1022 };
1023 struct cal_target_power_ht targetPowerHt20, targetPowerHt40 = {
1024 0, {0, 0, 0, 0}
1025 };
1026 u16 scaledPower = 0, minCtlPower, maxRegAllowedPower;
1027 u16 ctlModesFor11a[] =
1028 { CTL_11A, CTL_5GHT20, CTL_11A_EXT, CTL_5GHT40 };
1029 u16 ctlModesFor11g[] =
1030 { CTL_11B, CTL_11G, CTL_2GHT20, CTL_11B_EXT, CTL_11G_EXT,
1031 CTL_2GHT40
1032 };
1033 u16 numCtlModes, *pCtlMode, ctlMode, freq;
1034 struct chan_centers centers;
1035 int tx_chainmask;
1036 u16 twiceMinEdgePower;
1037
1038 tx_chainmask = ah->txchainmask;
1039
1040 ath9k_hw_get_channel_centers(ah, chan, &centers);
1041
1042 twiceLargestAntenna = max(
1043 pEepData->modalHeader
1044 [IS_CHAN_2GHZ(chan)].antennaGainCh[0],
1045 pEepData->modalHeader
1046 [IS_CHAN_2GHZ(chan)].antennaGainCh[1]);
1047
1048 twiceLargestAntenna = max((u8)twiceLargestAntenna,
1049 pEepData->modalHeader
1050 [IS_CHAN_2GHZ(chan)].antennaGainCh[2]);
1051
1052 twiceLargestAntenna = (int16_t)min(AntennaReduction -
1053 twiceLargestAntenna, 0);
1054
1055 maxRegAllowedPower = twiceMaxRegulatoryPower + twiceLargestAntenna;
1056
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001057 if (regulatory->tp_scale != ATH9K_TP_SCALE_MAX) {
Sujithb5aec952009-08-07 09:45:15 +05301058 maxRegAllowedPower -=
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001059 (tpScaleReductionTable[(regulatory->tp_scale)] * 2);
Sujithb5aec952009-08-07 09:45:15 +05301060 }
1061
1062 scaledPower = min(powerLimit, maxRegAllowedPower);
1063
1064 switch (ar5416_get_ntxchains(tx_chainmask)) {
1065 case 1:
1066 break;
1067 case 2:
1068 scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN;
1069 break;
1070 case 3:
1071 scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN;
1072 break;
1073 }
1074
1075 scaledPower = max((u16)0, scaledPower);
1076
1077 if (IS_CHAN_2GHZ(chan)) {
1078 numCtlModes = ARRAY_SIZE(ctlModesFor11g) -
1079 SUB_NUM_CTL_MODES_AT_2G_40;
1080 pCtlMode = ctlModesFor11g;
1081
1082 ath9k_hw_get_legacy_target_powers(ah, chan,
1083 pEepData->calTargetPowerCck,
1084 AR5416_NUM_2G_CCK_TARGET_POWERS,
1085 &targetPowerCck, 4, false);
1086 ath9k_hw_get_legacy_target_powers(ah, chan,
1087 pEepData->calTargetPower2G,
1088 AR5416_NUM_2G_20_TARGET_POWERS,
1089 &targetPowerOfdm, 4, false);
1090 ath9k_hw_get_target_powers(ah, chan,
1091 pEepData->calTargetPower2GHT20,
1092 AR5416_NUM_2G_20_TARGET_POWERS,
1093 &targetPowerHt20, 8, false);
1094
1095 if (IS_CHAN_HT40(chan)) {
1096 numCtlModes = ARRAY_SIZE(ctlModesFor11g);
1097 ath9k_hw_get_target_powers(ah, chan,
1098 pEepData->calTargetPower2GHT40,
1099 AR5416_NUM_2G_40_TARGET_POWERS,
1100 &targetPowerHt40, 8, true);
1101 ath9k_hw_get_legacy_target_powers(ah, chan,
1102 pEepData->calTargetPowerCck,
1103 AR5416_NUM_2G_CCK_TARGET_POWERS,
1104 &targetPowerCckExt, 4, true);
1105 ath9k_hw_get_legacy_target_powers(ah, chan,
1106 pEepData->calTargetPower2G,
1107 AR5416_NUM_2G_20_TARGET_POWERS,
1108 &targetPowerOfdmExt, 4, true);
1109 }
1110 } else {
1111 numCtlModes = ARRAY_SIZE(ctlModesFor11a) -
1112 SUB_NUM_CTL_MODES_AT_5G_40;
1113 pCtlMode = ctlModesFor11a;
1114
1115 ath9k_hw_get_legacy_target_powers(ah, chan,
1116 pEepData->calTargetPower5G,
1117 AR5416_NUM_5G_20_TARGET_POWERS,
1118 &targetPowerOfdm, 4, false);
1119 ath9k_hw_get_target_powers(ah, chan,
1120 pEepData->calTargetPower5GHT20,
1121 AR5416_NUM_5G_20_TARGET_POWERS,
1122 &targetPowerHt20, 8, false);
1123
1124 if (IS_CHAN_HT40(chan)) {
1125 numCtlModes = ARRAY_SIZE(ctlModesFor11a);
1126 ath9k_hw_get_target_powers(ah, chan,
1127 pEepData->calTargetPower5GHT40,
1128 AR5416_NUM_5G_40_TARGET_POWERS,
1129 &targetPowerHt40, 8, true);
1130 ath9k_hw_get_legacy_target_powers(ah, chan,
1131 pEepData->calTargetPower5G,
1132 AR5416_NUM_5G_20_TARGET_POWERS,
1133 &targetPowerOfdmExt, 4, true);
1134 }
1135 }
1136
1137 for (ctlMode = 0; ctlMode < numCtlModes; ctlMode++) {
1138 bool isHt40CtlMode = (pCtlMode[ctlMode] == CTL_5GHT40) ||
1139 (pCtlMode[ctlMode] == CTL_2GHT40);
1140 if (isHt40CtlMode)
1141 freq = centers.synth_center;
1142 else if (pCtlMode[ctlMode] & EXT_ADDITIVE)
1143 freq = centers.ext_center;
1144 else
1145 freq = centers.ctl_center;
1146
1147 if (ah->eep_ops->get_eeprom_ver(ah) == 14 &&
1148 ah->eep_ops->get_eeprom_rev(ah) <= 2)
1149 twiceMaxEdgePower = AR5416_MAX_RATE_POWER;
1150
1151 for (i = 0; (i < AR5416_NUM_CTLS) && pEepData->ctlIndex[i]; i++) {
1152 if ((((cfgCtl & ~CTL_MODE_M) |
1153 (pCtlMode[ctlMode] & CTL_MODE_M)) ==
1154 pEepData->ctlIndex[i]) ||
1155 (((cfgCtl & ~CTL_MODE_M) |
1156 (pCtlMode[ctlMode] & CTL_MODE_M)) ==
1157 ((pEepData->ctlIndex[i] & CTL_MODE_M) | SD_NO_CTL))) {
1158 rep = &(pEepData->ctlData[i]);
1159
1160 twiceMinEdgePower = ath9k_hw_get_max_edge_power(freq,
1161 rep->ctlEdges[ar5416_get_ntxchains(tx_chainmask) - 1],
1162 IS_CHAN_2GHZ(chan), AR5416_NUM_BAND_EDGES);
1163
1164 if ((cfgCtl & ~CTL_MODE_M) == SD_NO_CTL) {
1165 twiceMaxEdgePower = min(twiceMaxEdgePower,
1166 twiceMinEdgePower);
1167 } else {
1168 twiceMaxEdgePower = twiceMinEdgePower;
1169 break;
1170 }
1171 }
1172 }
1173
1174 minCtlPower = min(twiceMaxEdgePower, scaledPower);
1175
1176 switch (pCtlMode[ctlMode]) {
1177 case CTL_11B:
1178 for (i = 0; i < ARRAY_SIZE(targetPowerCck.tPow2x); i++) {
1179 targetPowerCck.tPow2x[i] =
1180 min((u16)targetPowerCck.tPow2x[i],
1181 minCtlPower);
1182 }
1183 break;
1184 case CTL_11A:
1185 case CTL_11G:
1186 for (i = 0; i < ARRAY_SIZE(targetPowerOfdm.tPow2x); i++) {
1187 targetPowerOfdm.tPow2x[i] =
1188 min((u16)targetPowerOfdm.tPow2x[i],
1189 minCtlPower);
1190 }
1191 break;
1192 case CTL_5GHT20:
1193 case CTL_2GHT20:
1194 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++) {
1195 targetPowerHt20.tPow2x[i] =
1196 min((u16)targetPowerHt20.tPow2x[i],
1197 minCtlPower);
1198 }
1199 break;
1200 case CTL_11B_EXT:
1201 targetPowerCckExt.tPow2x[0] = min((u16)
1202 targetPowerCckExt.tPow2x[0],
1203 minCtlPower);
1204 break;
1205 case CTL_11A_EXT:
1206 case CTL_11G_EXT:
1207 targetPowerOfdmExt.tPow2x[0] = min((u16)
1208 targetPowerOfdmExt.tPow2x[0],
1209 minCtlPower);
1210 break;
1211 case CTL_5GHT40:
1212 case CTL_2GHT40:
1213 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
1214 targetPowerHt40.tPow2x[i] =
1215 min((u16)targetPowerHt40.tPow2x[i],
1216 minCtlPower);
1217 }
1218 break;
1219 default:
1220 break;
1221 }
1222 }
1223
1224 ratesArray[rate6mb] = ratesArray[rate9mb] = ratesArray[rate12mb] =
1225 ratesArray[rate18mb] = ratesArray[rate24mb] =
1226 targetPowerOfdm.tPow2x[0];
1227 ratesArray[rate36mb] = targetPowerOfdm.tPow2x[1];
1228 ratesArray[rate48mb] = targetPowerOfdm.tPow2x[2];
1229 ratesArray[rate54mb] = targetPowerOfdm.tPow2x[3];
1230 ratesArray[rateXr] = targetPowerOfdm.tPow2x[0];
1231
1232 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++)
1233 ratesArray[rateHt20_0 + i] = targetPowerHt20.tPow2x[i];
1234
1235 if (IS_CHAN_2GHZ(chan)) {
1236 ratesArray[rate1l] = targetPowerCck.tPow2x[0];
1237 ratesArray[rate2s] = ratesArray[rate2l] =
1238 targetPowerCck.tPow2x[1];
1239 ratesArray[rate5_5s] = ratesArray[rate5_5l] =
1240 targetPowerCck.tPow2x[2];
1241 ratesArray[rate11s] = ratesArray[rate11l] =
1242 targetPowerCck.tPow2x[3];
1243 }
1244 if (IS_CHAN_HT40(chan)) {
1245 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
1246 ratesArray[rateHt40_0 + i] =
1247 targetPowerHt40.tPow2x[i];
1248 }
1249 ratesArray[rateDupOfdm] = targetPowerHt40.tPow2x[0];
1250 ratesArray[rateDupCck] = targetPowerHt40.tPow2x[0];
1251 ratesArray[rateExtOfdm] = targetPowerOfdmExt.tPow2x[0];
1252 if (IS_CHAN_2GHZ(chan)) {
1253 ratesArray[rateExtCck] =
1254 targetPowerCckExt.tPow2x[0];
1255 }
1256 }
1257}
1258
1259static void ath9k_hw_def_set_txpower(struct ath_hw *ah,
1260 struct ath9k_channel *chan,
1261 u16 cfgCtl,
1262 u8 twiceAntennaReduction,
1263 u8 twiceMaxRegulatoryPower,
1264 u8 powerLimit)
1265{
1266#define RT_AR_DELTA(x) (ratesArray[x] - cck_ofdm_delta)
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001267 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithb5aec952009-08-07 09:45:15 +05301268 struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
1269 struct modal_eep_header *pModal =
1270 &(pEepData->modalHeader[IS_CHAN_2GHZ(chan)]);
1271 int16_t ratesArray[Ar5416RateSize];
1272 int16_t txPowerIndexOffset = 0;
1273 u8 ht40PowerIncForPdadc = 2;
1274 int i, cck_ofdm_delta = 0;
1275
1276 memset(ratesArray, 0, sizeof(ratesArray));
1277
1278 if ((pEepData->baseEepHeader.version & AR5416_EEP_VER_MINOR_MASK) >=
1279 AR5416_EEP_MINOR_VER_2) {
1280 ht40PowerIncForPdadc = pModal->ht40PowerIncForPdadc;
1281 }
1282
1283 ath9k_hw_set_def_power_per_rate_table(ah, chan,
1284 &ratesArray[0], cfgCtl,
1285 twiceAntennaReduction,
1286 twiceMaxRegulatoryPower,
1287 powerLimit);
1288
1289 ath9k_hw_set_def_power_cal_table(ah, chan, &txPowerIndexOffset);
1290
1291 for (i = 0; i < ARRAY_SIZE(ratesArray); i++) {
1292 ratesArray[i] = (int16_t)(txPowerIndexOffset + ratesArray[i]);
1293 if (ratesArray[i] > AR5416_MAX_RATE_POWER)
1294 ratesArray[i] = AR5416_MAX_RATE_POWER;
1295 }
1296
1297 if (AR_SREV_9280_10_OR_LATER(ah)) {
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +05301298 for (i = 0; i < Ar5416RateSize; i++) {
1299 int8_t pwr_table_offset;
1300
1301 pwr_table_offset = ah->eep_ops->get_eeprom(ah,
1302 EEP_PWR_TABLE_OFFSET);
1303 ratesArray[i] -= pwr_table_offset * 2;
1304 }
Sujithb5aec952009-08-07 09:45:15 +05301305 }
1306
1307 REG_WRITE(ah, AR_PHY_POWER_TX_RATE1,
1308 ATH9K_POW_SM(ratesArray[rate18mb], 24)
1309 | ATH9K_POW_SM(ratesArray[rate12mb], 16)
1310 | ATH9K_POW_SM(ratesArray[rate9mb], 8)
1311 | ATH9K_POW_SM(ratesArray[rate6mb], 0));
1312 REG_WRITE(ah, AR_PHY_POWER_TX_RATE2,
1313 ATH9K_POW_SM(ratesArray[rate54mb], 24)
1314 | ATH9K_POW_SM(ratesArray[rate48mb], 16)
1315 | ATH9K_POW_SM(ratesArray[rate36mb], 8)
1316 | ATH9K_POW_SM(ratesArray[rate24mb], 0));
1317
1318 if (IS_CHAN_2GHZ(chan)) {
1319 if (OLC_FOR_AR9280_20_LATER) {
1320 cck_ofdm_delta = 2;
1321 REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
1322 ATH9K_POW_SM(RT_AR_DELTA(rate2s), 24)
1323 | ATH9K_POW_SM(RT_AR_DELTA(rate2l), 16)
1324 | ATH9K_POW_SM(ratesArray[rateXr], 8)
1325 | ATH9K_POW_SM(RT_AR_DELTA(rate1l), 0));
1326 REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
1327 ATH9K_POW_SM(RT_AR_DELTA(rate11s), 24)
1328 | ATH9K_POW_SM(RT_AR_DELTA(rate11l), 16)
1329 | ATH9K_POW_SM(RT_AR_DELTA(rate5_5s), 8)
1330 | ATH9K_POW_SM(RT_AR_DELTA(rate5_5l), 0));
1331 } else {
1332 REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
1333 ATH9K_POW_SM(ratesArray[rate2s], 24)
1334 | ATH9K_POW_SM(ratesArray[rate2l], 16)
1335 | ATH9K_POW_SM(ratesArray[rateXr], 8)
1336 | ATH9K_POW_SM(ratesArray[rate1l], 0));
1337 REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
1338 ATH9K_POW_SM(ratesArray[rate11s], 24)
1339 | ATH9K_POW_SM(ratesArray[rate11l], 16)
1340 | ATH9K_POW_SM(ratesArray[rate5_5s], 8)
1341 | ATH9K_POW_SM(ratesArray[rate5_5l], 0));
1342 }
1343 }
1344
1345 REG_WRITE(ah, AR_PHY_POWER_TX_RATE5,
1346 ATH9K_POW_SM(ratesArray[rateHt20_3], 24)
1347 | ATH9K_POW_SM(ratesArray[rateHt20_2], 16)
1348 | ATH9K_POW_SM(ratesArray[rateHt20_1], 8)
1349 | ATH9K_POW_SM(ratesArray[rateHt20_0], 0));
1350 REG_WRITE(ah, AR_PHY_POWER_TX_RATE6,
1351 ATH9K_POW_SM(ratesArray[rateHt20_7], 24)
1352 | ATH9K_POW_SM(ratesArray[rateHt20_6], 16)
1353 | ATH9K_POW_SM(ratesArray[rateHt20_5], 8)
1354 | ATH9K_POW_SM(ratesArray[rateHt20_4], 0));
1355
1356 if (IS_CHAN_HT40(chan)) {
1357 REG_WRITE(ah, AR_PHY_POWER_TX_RATE7,
1358 ATH9K_POW_SM(ratesArray[rateHt40_3] +
1359 ht40PowerIncForPdadc, 24)
1360 | ATH9K_POW_SM(ratesArray[rateHt40_2] +
1361 ht40PowerIncForPdadc, 16)
1362 | ATH9K_POW_SM(ratesArray[rateHt40_1] +
1363 ht40PowerIncForPdadc, 8)
1364 | ATH9K_POW_SM(ratesArray[rateHt40_0] +
1365 ht40PowerIncForPdadc, 0));
1366 REG_WRITE(ah, AR_PHY_POWER_TX_RATE8,
1367 ATH9K_POW_SM(ratesArray[rateHt40_7] +
1368 ht40PowerIncForPdadc, 24)
1369 | ATH9K_POW_SM(ratesArray[rateHt40_6] +
1370 ht40PowerIncForPdadc, 16)
1371 | ATH9K_POW_SM(ratesArray[rateHt40_5] +
1372 ht40PowerIncForPdadc, 8)
1373 | ATH9K_POW_SM(ratesArray[rateHt40_4] +
1374 ht40PowerIncForPdadc, 0));
1375 if (OLC_FOR_AR9280_20_LATER) {
1376 REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
1377 ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
1378 | ATH9K_POW_SM(RT_AR_DELTA(rateExtCck), 16)
1379 | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
1380 | ATH9K_POW_SM(RT_AR_DELTA(rateDupCck), 0));
1381 } else {
1382 REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
1383 ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
1384 | ATH9K_POW_SM(ratesArray[rateExtCck], 16)
1385 | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
1386 | ATH9K_POW_SM(ratesArray[rateDupCck], 0));
1387 }
1388 }
1389
1390 REG_WRITE(ah, AR_PHY_POWER_TX_SUB,
1391 ATH9K_POW_SM(pModal->pwrDecreaseFor3Chain, 6)
1392 | ATH9K_POW_SM(pModal->pwrDecreaseFor2Chain, 0));
1393
1394 i = rate6mb;
1395
1396 if (IS_CHAN_HT40(chan))
1397 i = rateHt40_0;
1398 else if (IS_CHAN_HT20(chan))
1399 i = rateHt20_0;
1400
1401 if (AR_SREV_9280_10_OR_LATER(ah))
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001402 regulatory->max_power_level =
Senthil Balasubramaniane41f0bf2009-09-18 15:08:20 +05301403 ratesArray[i] + AR5416_PWR_TABLE_OFFSET_DB * 2;
Sujithb5aec952009-08-07 09:45:15 +05301404 else
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001405 regulatory->max_power_level = ratesArray[i];
Sujithb5aec952009-08-07 09:45:15 +05301406
1407 switch(ar5416_get_ntxchains(ah->txchainmask)) {
1408 case 1:
1409 break;
1410 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001411 regulatory->max_power_level += INCREASE_MAXPOW_BY_TWO_CHAIN;
Sujithb5aec952009-08-07 09:45:15 +05301412 break;
1413 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001414 regulatory->max_power_level += INCREASE_MAXPOW_BY_THREE_CHAIN;
Sujithb5aec952009-08-07 09:45:15 +05301415 break;
1416 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001417 ath_print(ath9k_hw_common(ah), ATH_DBG_EEPROM,
1418 "Invalid chainmask configuration\n");
Sujithb5aec952009-08-07 09:45:15 +05301419 break;
1420 }
1421}
1422
1423static u8 ath9k_hw_def_get_num_ant_config(struct ath_hw *ah,
1424 enum ieee80211_band freq_band)
1425{
1426 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
1427 struct modal_eep_header *pModal =
1428 &(eep->modalHeader[ATH9K_HAL_FREQ_BAND_2GHZ == freq_band]);
1429 struct base_eep_header *pBase = &eep->baseEepHeader;
1430 u8 num_ant_config;
1431
1432 num_ant_config = 1;
1433
1434 if (pBase->version >= 0x0E0D)
1435 if (pModal->useAnt1)
1436 num_ant_config += 1;
1437
1438 return num_ant_config;
1439}
1440
Felix Fietkau601e0cb2010-07-11 12:48:39 +02001441static u32 ath9k_hw_def_get_eeprom_antenna_cfg(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +05301442 struct ath9k_channel *chan)
1443{
1444 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
1445 struct modal_eep_header *pModal =
1446 &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
1447
Felix Fietkau601e0cb2010-07-11 12:48:39 +02001448 return pModal->antCtrlCommon;
Sujithb5aec952009-08-07 09:45:15 +05301449}
1450
1451static u16 ath9k_hw_def_get_spur_channel(struct ath_hw *ah, u16 i, bool is2GHz)
1452{
1453#define EEP_DEF_SPURCHAN \
1454 (ah->eeprom.def.modalHeader[is2GHz].spurChans[i].spurChan)
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001455 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +05301456
1457 u16 spur_val = AR_NO_SPUR;
1458
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001459 ath_print(common, ATH_DBG_ANI,
1460 "Getting spur idx %d is2Ghz. %d val %x\n",
1461 i, is2GHz, ah->config.spurchans[i][is2GHz]);
Sujithb5aec952009-08-07 09:45:15 +05301462
1463 switch (ah->config.spurmode) {
1464 case SPUR_DISABLE:
1465 break;
1466 case SPUR_ENABLE_IOCTL:
1467 spur_val = ah->config.spurchans[i][is2GHz];
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001468 ath_print(common, ATH_DBG_ANI,
1469 "Getting spur val from new loc. %d\n", spur_val);
Sujithb5aec952009-08-07 09:45:15 +05301470 break;
1471 case SPUR_ENABLE_EEPROM:
1472 spur_val = EEP_DEF_SPURCHAN;
1473 break;
1474 }
1475
1476 return spur_val;
1477
1478#undef EEP_DEF_SPURCHAN
1479}
1480
1481const struct eeprom_ops eep_def_ops = {
1482 .check_eeprom = ath9k_hw_def_check_eeprom,
1483 .get_eeprom = ath9k_hw_def_get_eeprom,
1484 .fill_eeprom = ath9k_hw_def_fill_eeprom,
1485 .get_eeprom_ver = ath9k_hw_def_get_eeprom_ver,
1486 .get_eeprom_rev = ath9k_hw_def_get_eeprom_rev,
1487 .get_num_ant_config = ath9k_hw_def_get_num_ant_config,
1488 .get_eeprom_antenna_cfg = ath9k_hw_def_get_eeprom_antenna_cfg,
1489 .set_board_values = ath9k_hw_def_set_board_values,
1490 .set_addac = ath9k_hw_def_set_addac,
1491 .set_txpower = ath9k_hw_def_set_txpower,
1492 .get_spur_channel = ath9k_hw_def_get_spur_channel
1493};