Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[deliverable/linux.git] / drivers / net / wireless / ath / ath9k / eeprom_def.c
CommitLineData
b5aec950
S
1/*
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
c46917bb 17#include "hw.h"
8fe65368 18#include "ar9002_phy.h"
b5aec950
S
19
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;
b5aec950
S
53}
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))
5bb12791 92 struct ath_common *common = ath9k_hw_common(ah);
b5aec950
S
93 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++) {
5bb12791 97 if (!ath9k_hw_nvram_read(common, addr + ar5416_eep_start_loc,
b5aec950 98 eep_data)) {
c46917bb
LR
99 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
100 "Unable to read eeprom region\n");
b5aec950
S
101 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;
c46917bb 113 struct ath_common *common = ath9k_hw_common(ah);
b5aec950
S
114 u16 *eepdata, temp, magic, magic2;
115 u32 sum = 0, el;
116 bool need_swap = false;
117 int i, addr, size;
118
5bb12791 119 if (!ath9k_hw_nvram_read(common, AR5416_EEPROM_MAGIC_OFFSET, &magic)) {
c46917bb 120 ath_print(common, ATH_DBG_FATAL, "Reading Magic # failed\n");
b5aec950
S
121 return false;
122 }
123
124 if (!ath9k_hw_use_flash(ah)) {
c46917bb
LR
125 ath_print(common, ATH_DBG_EEPROM,
126 "Read Magic = 0x%04X\n", magic);
b5aec950
S
127
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 {
c46917bb
LR
142 ath_print(common, ATH_DBG_FATAL,
143 "Invalid EEPROM Magic. "
144 "Endianness mismatch.\n");
b5aec950
S
145 return -EINVAL;
146 }
147 }
148 }
149
c46917bb
LR
150 ath_print(common, ATH_DBG_EEPROM, "need_swap = %s.\n",
151 need_swap ? "True" : "False");
b5aec950
S
152
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
c46917bb
LR
172 ath_print(common, ATH_DBG_EEPROM,
173 "EEPROM Endianness is not native.. Changing.\n");
b5aec950
S
174
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) {
c46917bb
LR
219 ath_print(common, ATH_DBG_FATAL,
220 "Bad EEPROM checksum 0x%x or revision 0x%04x\n",
b5aec950
S
221 sum, ah->eep_ops->get_eeprom_ver(ah));
222 return -EINVAL;
223 }
224
57b98384 225 /* Enable fixup for AR_AN_TOP2 if necessary */
7a37081e 226 if (AR_SREV_9280_20_OR_LATER(ah) &&
57b98384
FF
227 (eep->baseEepHeader.version & 0xff) > 0x0a &&
228 eep->baseEepHeader.pwdclkind == 0)
229 ah->need_an_top2_fixup = 1;
230
b5aec950
S
231 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];
49101676 246 case EEP_MAC_LSW:
b5aec950 247 return pBase->macAddr[0] << 8 | pBase->macAddr[1];
49101676 248 case EEP_MAC_MID:
b5aec950 249 return pBase->macAddr[2] << 8 | pBase->macAddr[3];
49101676 250 case EEP_MAC_MSW:
b5aec950
S
251 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;
5b75d0fc
FF
276 case EEP_FSTCLK_5G:
277 return pBase->fastClk5g;
b5aec950
S
278 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;
e41f0bfc
SB
302 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;
b5aec950
S
307 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
7a37081e 320 if (AR_SREV_9280_20_OR_LATER(ah)) {
b5aec950
S
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
7a37081e 347 if (AR_SREV_9280_20_OR_LATER(ah)) {
b5aec950
S
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
7a37081e 411 if (AR_SREV_9280_20_OR_LATER(ah)) {
b5aec950
S
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,
f67e07eb
FF
454 !!(pModal->lna_ctl &
455 LNA_CTL_LOCAL_BIAS));
b5aec950 456 REG_RMW_FIELD(ah, AR_PHY_XPA_CFG, AR_PHY_FORCE_XPA_CFG,
f67e07eb 457 !!(pModal->lna_ctl & LNA_CTL_FORCE_XPA));
b5aec950
S
458 }
459
460 REG_RMW_FIELD(ah, AR_PHY_SETTLING, AR_PHY_SETTLING_SWITCH,
461 pModal->switchSettling);
462 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ, AR_PHY_DESIRED_SZ_ADC,
463 pModal->adcDesiredSize);
464
7a37081e 465 if (!AR_SREV_9280_20_OR_LATER(ah))
b5aec950
S
466 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ,
467 AR_PHY_DESIRED_SZ_PGA,
468 pModal->pgaDesiredSize);
469
470 REG_WRITE(ah, AR_PHY_RF_CTL4,
471 SM(pModal->txEndToXpaOff, AR_PHY_RF_CTL4_TX_END_XPAA_OFF)
472 | SM(pModal->txEndToXpaOff,
473 AR_PHY_RF_CTL4_TX_END_XPAB_OFF)
474 | SM(pModal->txFrameToXpaOn,
475 AR_PHY_RF_CTL4_FRAME_XPAA_ON)
476 | SM(pModal->txFrameToXpaOn,
477 AR_PHY_RF_CTL4_FRAME_XPAB_ON));
478
479 REG_RMW_FIELD(ah, AR_PHY_RF_CTL3, AR_PHY_TX_END_TO_A2_RX_ON,
480 pModal->txEndToRxOn);
481
7a37081e 482 if (AR_SREV_9280_20_OR_LATER(ah)) {
b5aec950
S
483 REG_RMW_FIELD(ah, AR_PHY_CCA, AR9280_PHY_CCA_THRESH62,
484 pModal->thresh62);
485 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA0,
486 AR_PHY_EXT_CCA0_THRESH62,
487 pModal->thresh62);
488 } else {
489 REG_RMW_FIELD(ah, AR_PHY_CCA, AR_PHY_CCA_THRESH62,
490 pModal->thresh62);
491 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
492 AR_PHY_EXT_CCA_THRESH62,
493 pModal->thresh62);
494 }
495
496 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_2) {
497 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2,
498 AR_PHY_TX_END_DATA_START,
499 pModal->txFrameToDataStart);
500 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2, AR_PHY_TX_END_PA_ON,
501 pModal->txFrameToPaOn);
502 }
503
504 if (AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_3) {
505 if (IS_CHAN_HT40(chan))
506 REG_RMW_FIELD(ah, AR_PHY_SETTLING,
507 AR_PHY_SETTLING_SWITCH,
508 pModal->swSettleHt40);
509 }
510
511 if (AR_SREV_9280_20_OR_LATER(ah) &&
512 AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_19)
513 REG_RMW_FIELD(ah, AR_PHY_CCK_TX_CTRL,
514 AR_PHY_CCK_TX_CTRL_TX_DAC_SCALE_CCK,
515 pModal->miscBits);
516
517
518 if (AR_SREV_9280_20(ah) && AR5416_VER_MASK >= AR5416_EEP_MINOR_VER_20) {
519 if (IS_CHAN_2GHZ(chan))
520 REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE,
521 eep->baseEepHeader.dacLpMode);
522 else if (eep->baseEepHeader.dacHiPwrMode_5G)
523 REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE, 0);
524 else
525 REG_RMW_FIELD(ah, AR_AN_TOP1, AR_AN_TOP1_DACIPMODE,
526 eep->baseEepHeader.dacLpMode);
527
d865ca6c
SB
528 udelay(100);
529
b5aec950
S
530 REG_RMW_FIELD(ah, AR_PHY_FRAME_CTL, AR_PHY_FRAME_CTL_TX_CLIP,
531 pModal->miscBits >> 2);
532
533 REG_RMW_FIELD(ah, AR_PHY_TX_PWRCTRL9,
534 AR_PHY_TX_DESIRED_SCALE_CCK,
535 eep->baseEepHeader.desiredScaleCCK);
536 }
537}
538
539static void ath9k_hw_def_set_addac(struct ath_hw *ah,
540 struct ath9k_channel *chan)
541{
542#define XPA_LVL_FREQ(cnt) (pModal->xpaBiasLvlFreq[cnt])
543 struct modal_eep_header *pModal;
544 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
545 u8 biaslevel;
546
547 if (ah->hw_version.macVersion != AR_SREV_VERSION_9160)
548 return;
549
550 if (ah->eep_ops->get_eeprom_rev(ah) < AR5416_EEP_MINOR_VER_7)
551 return;
552
553 pModal = &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
554
555 if (pModal->xpaBiasLvl != 0xff) {
556 biaslevel = pModal->xpaBiasLvl;
557 } else {
558 u16 resetFreqBin, freqBin, freqCount = 0;
559 struct chan_centers centers;
560
561 ath9k_hw_get_channel_centers(ah, chan, &centers);
562
563 resetFreqBin = FREQ2FBIN(centers.synth_center,
564 IS_CHAN_2GHZ(chan));
565 freqBin = XPA_LVL_FREQ(0) & 0xff;
566 biaslevel = (u8) (XPA_LVL_FREQ(0) >> 14);
567
568 freqCount++;
569
570 while (freqCount < 3) {
571 if (XPA_LVL_FREQ(freqCount) == 0x0)
572 break;
573
574 freqBin = XPA_LVL_FREQ(freqCount) & 0xff;
575 if (resetFreqBin >= freqBin)
576 biaslevel = (u8)(XPA_LVL_FREQ(freqCount) >> 14);
577 else
578 break;
579 freqCount++;
580 }
581 }
582
583 if (IS_CHAN_2GHZ(chan)) {
584 INI_RA(&ah->iniAddac, 7, 1) = (INI_RA(&ah->iniAddac,
585 7, 1) & (~0x18)) | biaslevel << 3;
586 } else {
587 INI_RA(&ah->iniAddac, 6, 1) = (INI_RA(&ah->iniAddac,
588 6, 1) & (~0xc0)) | biaslevel << 6;
589 }
590#undef XPA_LVL_FREQ
591}
592
593static void ath9k_hw_get_def_gain_boundaries_pdadcs(struct ath_hw *ah,
594 struct ath9k_channel *chan,
595 struct cal_data_per_freq *pRawDataSet,
596 u8 *bChans, u16 availPiers,
6eb90d46 597 u16 tPdGainOverlap,
b5aec950
S
598 u16 *pPdGainBoundaries, u8 *pPDADCValues,
599 u16 numXpdGains)
600{
601 int i, j, k;
602 int16_t ss;
603 u16 idxL = 0, idxR = 0, numPiers;
604 static u8 vpdTableL[AR5416_NUM_PD_GAINS]
605 [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
606 static u8 vpdTableR[AR5416_NUM_PD_GAINS]
607 [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
608 static u8 vpdTableI[AR5416_NUM_PD_GAINS]
609 [AR5416_MAX_PWR_RANGE_IN_HALF_DB];
610
611 u8 *pVpdL, *pVpdR, *pPwrL, *pPwrR;
612 u8 minPwrT4[AR5416_NUM_PD_GAINS];
613 u8 maxPwrT4[AR5416_NUM_PD_GAINS];
614 int16_t vpdStep;
615 int16_t tmpVal;
616 u16 sizeCurrVpdTable, maxIndex, tgtIndex;
617 bool match;
618 int16_t minDelta = 0;
619 struct chan_centers centers;
620
a5fdbcad 621 memset(&minPwrT4, 0, AR9287_NUM_PD_GAINS);
b5aec950
S
622 ath9k_hw_get_channel_centers(ah, chan, &centers);
623
624 for (numPiers = 0; numPiers < availPiers; numPiers++) {
625 if (bChans[numPiers] == AR5416_BCHAN_UNUSED)
626 break;
627 }
628
629 match = ath9k_hw_get_lower_upper_index((u8)FREQ2FBIN(centers.synth_center,
630 IS_CHAN_2GHZ(chan)),
631 bChans, numPiers, &idxL, &idxR);
632
633 if (match) {
634 for (i = 0; i < numXpdGains; i++) {
635 minPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][0];
636 maxPwrT4[i] = pRawDataSet[idxL].pwrPdg[i][4];
637 ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
638 pRawDataSet[idxL].pwrPdg[i],
639 pRawDataSet[idxL].vpdPdg[i],
640 AR5416_PD_GAIN_ICEPTS,
641 vpdTableI[i]);
642 }
643 } else {
644 for (i = 0; i < numXpdGains; i++) {
645 pVpdL = pRawDataSet[idxL].vpdPdg[i];
646 pPwrL = pRawDataSet[idxL].pwrPdg[i];
647 pVpdR = pRawDataSet[idxR].vpdPdg[i];
648 pPwrR = pRawDataSet[idxR].pwrPdg[i];
649
650 minPwrT4[i] = max(pPwrL[0], pPwrR[0]);
651
652 maxPwrT4[i] =
653 min(pPwrL[AR5416_PD_GAIN_ICEPTS - 1],
654 pPwrR[AR5416_PD_GAIN_ICEPTS - 1]);
655
656
657 ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
658 pPwrL, pVpdL,
659 AR5416_PD_GAIN_ICEPTS,
660 vpdTableL[i]);
661 ath9k_hw_fill_vpd_table(minPwrT4[i], maxPwrT4[i],
662 pPwrR, pVpdR,
663 AR5416_PD_GAIN_ICEPTS,
664 vpdTableR[i]);
665
666 for (j = 0; j <= (maxPwrT4[i] - minPwrT4[i]) / 2; j++) {
667 vpdTableI[i][j] =
668 (u8)(ath9k_hw_interpolate((u16)
669 FREQ2FBIN(centers.
670 synth_center,
671 IS_CHAN_2GHZ
672 (chan)),
673 bChans[idxL], bChans[idxR],
674 vpdTableL[i][j], vpdTableR[i][j]));
675 }
676 }
677 }
678
b5aec950
S
679 k = 0;
680
681 for (i = 0; i < numXpdGains; i++) {
682 if (i == (numXpdGains - 1))
683 pPdGainBoundaries[i] =
684 (u16)(maxPwrT4[i] / 2);
685 else
686 pPdGainBoundaries[i] =
687 (u16)((maxPwrT4[i] + minPwrT4[i + 1]) / 4);
688
689 pPdGainBoundaries[i] =
690 min((u16)AR5416_MAX_RATE_POWER, pPdGainBoundaries[i]);
691
692 if ((i == 0) && !AR_SREV_5416_20_OR_LATER(ah)) {
693 minDelta = pPdGainBoundaries[0] - 23;
694 pPdGainBoundaries[0] = 23;
695 } else {
696 minDelta = 0;
697 }
698
699 if (i == 0) {
7a37081e 700 if (AR_SREV_9280_20_OR_LATER(ah))
b5aec950
S
701 ss = (int16_t)(0 - (minPwrT4[i] / 2));
702 else
703 ss = 0;
704 } else {
705 ss = (int16_t)((pPdGainBoundaries[i - 1] -
706 (minPwrT4[i] / 2)) -
707 tPdGainOverlap + 1 + minDelta);
708 }
709 vpdStep = (int16_t)(vpdTableI[i][1] - vpdTableI[i][0]);
710 vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep);
711
712 while ((ss < 0) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
713 tmpVal = (int16_t)(vpdTableI[i][0] + ss * vpdStep);
714 pPDADCValues[k++] = (u8)((tmpVal < 0) ? 0 : tmpVal);
715 ss++;
716 }
717
718 sizeCurrVpdTable = (u8) ((maxPwrT4[i] - minPwrT4[i]) / 2 + 1);
719 tgtIndex = (u8)(pPdGainBoundaries[i] + tPdGainOverlap -
720 (minPwrT4[i] / 2));
721 maxIndex = (tgtIndex < sizeCurrVpdTable) ?
722 tgtIndex : sizeCurrVpdTable;
723
724 while ((ss < maxIndex) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
725 pPDADCValues[k++] = vpdTableI[i][ss++];
726 }
727
728 vpdStep = (int16_t)(vpdTableI[i][sizeCurrVpdTable - 1] -
729 vpdTableI[i][sizeCurrVpdTable - 2]);
730 vpdStep = (int16_t)((vpdStep < 1) ? 1 : vpdStep);
731
03b4776c 732 if (tgtIndex >= maxIndex) {
b5aec950
S
733 while ((ss <= tgtIndex) &&
734 (k < (AR5416_NUM_PDADC_VALUES - 1))) {
735 tmpVal = (int16_t)((vpdTableI[i][sizeCurrVpdTable - 1] +
736 (ss - maxIndex + 1) * vpdStep));
737 pPDADCValues[k++] = (u8)((tmpVal > 255) ?
738 255 : tmpVal);
739 ss++;
740 }
741 }
742 }
743
744 while (i < AR5416_PD_GAINS_IN_MASK) {
745 pPdGainBoundaries[i] = pPdGainBoundaries[i - 1];
746 i++;
747 }
748
749 while (k < AR5416_NUM_PDADC_VALUES) {
750 pPDADCValues[k] = pPDADCValues[k - 1];
751 k++;
752 }
b5aec950
S
753}
754
e41f0bfc
SB
755static int16_t ath9k_change_gain_boundary_setting(struct ath_hw *ah,
756 u16 *gb,
757 u16 numXpdGain,
758 u16 pdGainOverlap_t2,
759 int8_t pwr_table_offset,
760 int16_t *diff)
761
762{
763 u16 k;
764
765 /* Prior to writing the boundaries or the pdadc vs. power table
766 * into the chip registers the default starting point on the pdadc
767 * vs. power table needs to be checked and the curve boundaries
768 * adjusted accordingly
769 */
770 if (AR_SREV_9280_20_OR_LATER(ah)) {
771 u16 gb_limit;
772
773 if (AR5416_PWR_TABLE_OFFSET_DB != pwr_table_offset) {
774 /* get the difference in dB */
775 *diff = (u16)(pwr_table_offset - AR5416_PWR_TABLE_OFFSET_DB);
776 /* get the number of half dB steps */
777 *diff *= 2;
778 /* change the original gain boundary settings
779 * by the number of half dB steps
780 */
781 for (k = 0; k < numXpdGain; k++)
782 gb[k] = (u16)(gb[k] - *diff);
783 }
784 /* Because of a hardware limitation, ensure the gain boundary
785 * is not larger than (63 - overlap)
786 */
787 gb_limit = (u16)(AR5416_MAX_RATE_POWER - pdGainOverlap_t2);
788
789 for (k = 0; k < numXpdGain; k++)
790 gb[k] = (u16)min(gb_limit, gb[k]);
791 }
792
793 return *diff;
794}
795
796static void ath9k_adjust_pdadc_values(struct ath_hw *ah,
797 int8_t pwr_table_offset,
798 int16_t diff,
799 u8 *pdadcValues)
800{
801#define NUM_PDADC(diff) (AR5416_NUM_PDADC_VALUES - diff)
802 u16 k;
803
804 /* If this is a board that has a pwrTableOffset that differs from
805 * the default AR5416_PWR_TABLE_OFFSET_DB then the start of the
806 * pdadc vs pwr table needs to be adjusted prior to writing to the
807 * chip.
808 */
809 if (AR_SREV_9280_20_OR_LATER(ah)) {
810 if (AR5416_PWR_TABLE_OFFSET_DB != pwr_table_offset) {
811 /* shift the table to start at the new offset */
812 for (k = 0; k < (u16)NUM_PDADC(diff); k++ ) {
813 pdadcValues[k] = pdadcValues[k + diff];
814 }
815
816 /* fill the back of the table */
817 for (k = (u16)NUM_PDADC(diff); k < NUM_PDADC(0); k++) {
818 pdadcValues[k] = pdadcValues[NUM_PDADC(diff)];
819 }
820 }
821 }
822#undef NUM_PDADC
823}
824
b5aec950
S
825static void ath9k_hw_set_def_power_cal_table(struct ath_hw *ah,
826 struct ath9k_channel *chan,
827 int16_t *pTxPowerIndexOffset)
828{
829#define SM_PD_GAIN(x) SM(0x38, AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_##x)
830#define SM_PDGAIN_B(x, y) \
831 SM((gainBoundaries[x]), AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_##y)
c46917bb 832 struct ath_common *common = ath9k_hw_common(ah);
b5aec950
S
833 struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
834 struct cal_data_per_freq *pRawDataset;
835 u8 *pCalBChans = NULL;
836 u16 pdGainOverlap_t2;
837 static u8 pdadcValues[AR5416_NUM_PDADC_VALUES];
838 u16 gainBoundaries[AR5416_PD_GAINS_IN_MASK];
839 u16 numPiers, i, j;
6eb90d46 840 int16_t diff = 0;
b5aec950
S
841 u16 numXpdGain, xpdMask;
842 u16 xpdGainValues[AR5416_NUM_PD_GAINS] = { 0, 0, 0, 0 };
843 u32 reg32, regOffset, regChainOffset;
844 int16_t modalIdx;
e41f0bfc 845 int8_t pwr_table_offset;
b5aec950
S
846
847 modalIdx = IS_CHAN_2GHZ(chan) ? 1 : 0;
848 xpdMask = pEepData->modalHeader[modalIdx].xpdGain;
849
e41f0bfc
SB
850 pwr_table_offset = ah->eep_ops->get_eeprom(ah, EEP_PWR_TABLE_OFFSET);
851
b5aec950
S
852 if ((pEepData->baseEepHeader.version & AR5416_EEP_VER_MINOR_MASK) >=
853 AR5416_EEP_MINOR_VER_2) {
854 pdGainOverlap_t2 =
855 pEepData->modalHeader[modalIdx].pdGainOverlap;
856 } else {
857 pdGainOverlap_t2 = (u16)(MS(REG_READ(ah, AR_PHY_TPCRG5),
858 AR_PHY_TPCRG5_PD_GAIN_OVERLAP));
859 }
860
861 if (IS_CHAN_2GHZ(chan)) {
862 pCalBChans = pEepData->calFreqPier2G;
863 numPiers = AR5416_NUM_2G_CAL_PIERS;
864 } else {
865 pCalBChans = pEepData->calFreqPier5G;
866 numPiers = AR5416_NUM_5G_CAL_PIERS;
867 }
868
869 if (OLC_FOR_AR9280_20_LATER && IS_CHAN_2GHZ(chan)) {
870 pRawDataset = pEepData->calPierData2G[0];
871 ah->initPDADC = ((struct calDataPerFreqOpLoop *)
872 pRawDataset)->vpdPdg[0][0];
873 }
874
875 numXpdGain = 0;
876
877 for (i = 1; i <= AR5416_PD_GAINS_IN_MASK; i++) {
878 if ((xpdMask >> (AR5416_PD_GAINS_IN_MASK - i)) & 1) {
879 if (numXpdGain >= AR5416_NUM_PD_GAINS)
880 break;
881 xpdGainValues[numXpdGain] =
882 (u16)(AR5416_PD_GAINS_IN_MASK - i);
883 numXpdGain++;
884 }
885 }
886
887 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_NUM_PD_GAIN,
888 (numXpdGain - 1) & 0x3);
889 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_1,
890 xpdGainValues[0]);
891 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_2,
892 xpdGainValues[1]);
893 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_3,
894 xpdGainValues[2]);
895
896 for (i = 0; i < AR5416_MAX_CHAINS; i++) {
897 if (AR_SREV_5416_20_OR_LATER(ah) &&
898 (ah->rxchainmask == 5 || ah->txchainmask == 5) &&
899 (i != 0)) {
900 regChainOffset = (i == 1) ? 0x2000 : 0x1000;
901 } else
902 regChainOffset = i * 0x1000;
903
904 if (pEepData->baseEepHeader.txMask & (1 << i)) {
905 if (IS_CHAN_2GHZ(chan))
906 pRawDataset = pEepData->calPierData2G[i];
907 else
908 pRawDataset = pEepData->calPierData5G[i];
909
910
911 if (OLC_FOR_AR9280_20_LATER) {
912 u8 pcdacIdx;
913 u8 txPower;
914
915 ath9k_get_txgain_index(ah, chan,
916 (struct calDataPerFreqOpLoop *)pRawDataset,
917 pCalBChans, numPiers, &txPower, &pcdacIdx);
918 ath9k_olc_get_pdadcs(ah, pcdacIdx,
919 txPower/2, pdadcValues);
920 } else {
921 ath9k_hw_get_def_gain_boundaries_pdadcs(ah,
922 chan, pRawDataset,
923 pCalBChans, numPiers,
924 pdGainOverlap_t2,
b5aec950
S
925 gainBoundaries,
926 pdadcValues,
927 numXpdGain);
928 }
929
e41f0bfc
SB
930 diff = ath9k_change_gain_boundary_setting(ah,
931 gainBoundaries,
932 numXpdGain,
933 pdGainOverlap_t2,
934 pwr_table_offset,
935 &diff);
936
b5aec950
S
937 if ((i == 0) || AR_SREV_5416_20_OR_LATER(ah)) {
938 if (OLC_FOR_AR9280_20_LATER) {
939 REG_WRITE(ah,
940 AR_PHY_TPCRG5 + regChainOffset,
941 SM(0x6,
942 AR_PHY_TPCRG5_PD_GAIN_OVERLAP) |
943 SM_PD_GAIN(1) | SM_PD_GAIN(2) |
944 SM_PD_GAIN(3) | SM_PD_GAIN(4));
945 } else {
946 REG_WRITE(ah,
947 AR_PHY_TPCRG5 + regChainOffset,
948 SM(pdGainOverlap_t2,
949 AR_PHY_TPCRG5_PD_GAIN_OVERLAP)|
950 SM_PDGAIN_B(0, 1) |
951 SM_PDGAIN_B(1, 2) |
952 SM_PDGAIN_B(2, 3) |
953 SM_PDGAIN_B(3, 4));
954 }
955 }
956
e41f0bfc
SB
957
958 ath9k_adjust_pdadc_values(ah, pwr_table_offset,
959 diff, pdadcValues);
960
b5aec950
S
961 regOffset = AR_PHY_BASE + (672 << 2) + regChainOffset;
962 for (j = 0; j < 32; j++) {
963 reg32 = ((pdadcValues[4 * j + 0] & 0xFF) << 0) |
964 ((pdadcValues[4 * j + 1] & 0xFF) << 8) |
965 ((pdadcValues[4 * j + 2] & 0xFF) << 16)|
966 ((pdadcValues[4 * j + 3] & 0xFF) << 24);
967 REG_WRITE(ah, regOffset, reg32);
968
c46917bb
LR
969 ath_print(common, ATH_DBG_EEPROM,
970 "PDADC (%d,%4x): %4.4x %8.8x\n",
971 i, regChainOffset, regOffset,
972 reg32);
973 ath_print(common, ATH_DBG_EEPROM,
974 "PDADC: Chain %d | PDADC %3d "
975 "Value %3d | PDADC %3d Value %3d | "
976 "PDADC %3d Value %3d | PDADC %3d "
977 "Value %3d |\n",
978 i, 4 * j, pdadcValues[4 * j],
979 4 * j + 1, pdadcValues[4 * j + 1],
980 4 * j + 2, pdadcValues[4 * j + 2],
981 4 * j + 3,
982 pdadcValues[4 * j + 3]);
b5aec950
S
983
984 regOffset += 4;
985 }
986 }
987 }
988
989 *pTxPowerIndexOffset = 0;
990#undef SM_PD_GAIN
991#undef SM_PDGAIN_B
992}
993
994static void ath9k_hw_set_def_power_per_rate_table(struct ath_hw *ah,
995 struct ath9k_channel *chan,
996 int16_t *ratesArray,
997 u16 cfgCtl,
998 u16 AntennaReduction,
999 u16 twiceMaxRegulatoryPower,
1000 u16 powerLimit)
1001{
1002#define REDUCE_SCALED_POWER_BY_TWO_CHAIN 6 /* 10*log10(2)*2 */
d865ca6c 1003#define REDUCE_SCALED_POWER_BY_THREE_CHAIN 9 /* 10*log10(3)*2 */
b5aec950 1004
608b88cb 1005 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
b5aec950
S
1006 struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
1007 u16 twiceMaxEdgePower = AR5416_MAX_RATE_POWER;
1008 static const u16 tpScaleReductionTable[5] =
1009 { 0, 3, 6, 9, AR5416_MAX_RATE_POWER };
1010
1011 int i;
1012 int16_t twiceLargestAntenna;
1013 struct cal_ctl_data *rep;
1014 struct cal_target_power_leg targetPowerOfdm, targetPowerCck = {
1015 0, { 0, 0, 0, 0}
1016 };
1017 struct cal_target_power_leg targetPowerOfdmExt = {
1018 0, { 0, 0, 0, 0} }, targetPowerCckExt = {
1019 0, { 0, 0, 0, 0 }
1020 };
1021 struct cal_target_power_ht targetPowerHt20, targetPowerHt40 = {
1022 0, {0, 0, 0, 0}
1023 };
1024 u16 scaledPower = 0, minCtlPower, maxRegAllowedPower;
1025 u16 ctlModesFor11a[] =
1026 { CTL_11A, CTL_5GHT20, CTL_11A_EXT, CTL_5GHT40 };
1027 u16 ctlModesFor11g[] =
1028 { CTL_11B, CTL_11G, CTL_2GHT20, CTL_11B_EXT, CTL_11G_EXT,
1029 CTL_2GHT40
1030 };
1031 u16 numCtlModes, *pCtlMode, ctlMode, freq;
1032 struct chan_centers centers;
1033 int tx_chainmask;
1034 u16 twiceMinEdgePower;
1035
1036 tx_chainmask = ah->txchainmask;
1037
1038 ath9k_hw_get_channel_centers(ah, chan, &centers);
1039
1040 twiceLargestAntenna = max(
1041 pEepData->modalHeader
1042 [IS_CHAN_2GHZ(chan)].antennaGainCh[0],
1043 pEepData->modalHeader
1044 [IS_CHAN_2GHZ(chan)].antennaGainCh[1]);
1045
1046 twiceLargestAntenna = max((u8)twiceLargestAntenna,
1047 pEepData->modalHeader
1048 [IS_CHAN_2GHZ(chan)].antennaGainCh[2]);
1049
1050 twiceLargestAntenna = (int16_t)min(AntennaReduction -
1051 twiceLargestAntenna, 0);
1052
1053 maxRegAllowedPower = twiceMaxRegulatoryPower + twiceLargestAntenna;
1054
608b88cb 1055 if (regulatory->tp_scale != ATH9K_TP_SCALE_MAX) {
b5aec950 1056 maxRegAllowedPower -=
608b88cb 1057 (tpScaleReductionTable[(regulatory->tp_scale)] * 2);
b5aec950
S
1058 }
1059
1060 scaledPower = min(powerLimit, maxRegAllowedPower);
1061
1062 switch (ar5416_get_ntxchains(tx_chainmask)) {
1063 case 1:
1064 break;
1065 case 2:
84105160
MC
1066 if (scaledPower > REDUCE_SCALED_POWER_BY_TWO_CHAIN)
1067 scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN;
1068 else
1069 scaledPower = 0;
b5aec950
S
1070 break;
1071 case 3:
84105160
MC
1072 if (scaledPower > REDUCE_SCALED_POWER_BY_THREE_CHAIN)
1073 scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN;
1074 else
1075 scaledPower = 0;
b5aec950
S
1076 break;
1077 }
1078
b5aec950
S
1079 if (IS_CHAN_2GHZ(chan)) {
1080 numCtlModes = ARRAY_SIZE(ctlModesFor11g) -
1081 SUB_NUM_CTL_MODES_AT_2G_40;
1082 pCtlMode = ctlModesFor11g;
1083
1084 ath9k_hw_get_legacy_target_powers(ah, chan,
1085 pEepData->calTargetPowerCck,
1086 AR5416_NUM_2G_CCK_TARGET_POWERS,
1087 &targetPowerCck, 4, false);
1088 ath9k_hw_get_legacy_target_powers(ah, chan,
1089 pEepData->calTargetPower2G,
1090 AR5416_NUM_2G_20_TARGET_POWERS,
1091 &targetPowerOfdm, 4, false);
1092 ath9k_hw_get_target_powers(ah, chan,
1093 pEepData->calTargetPower2GHT20,
1094 AR5416_NUM_2G_20_TARGET_POWERS,
1095 &targetPowerHt20, 8, false);
1096
1097 if (IS_CHAN_HT40(chan)) {
1098 numCtlModes = ARRAY_SIZE(ctlModesFor11g);
1099 ath9k_hw_get_target_powers(ah, chan,
1100 pEepData->calTargetPower2GHT40,
1101 AR5416_NUM_2G_40_TARGET_POWERS,
1102 &targetPowerHt40, 8, true);
1103 ath9k_hw_get_legacy_target_powers(ah, chan,
1104 pEepData->calTargetPowerCck,
1105 AR5416_NUM_2G_CCK_TARGET_POWERS,
1106 &targetPowerCckExt, 4, true);
1107 ath9k_hw_get_legacy_target_powers(ah, chan,
1108 pEepData->calTargetPower2G,
1109 AR5416_NUM_2G_20_TARGET_POWERS,
1110 &targetPowerOfdmExt, 4, true);
1111 }
1112 } else {
1113 numCtlModes = ARRAY_SIZE(ctlModesFor11a) -
1114 SUB_NUM_CTL_MODES_AT_5G_40;
1115 pCtlMode = ctlModesFor11a;
1116
1117 ath9k_hw_get_legacy_target_powers(ah, chan,
1118 pEepData->calTargetPower5G,
1119 AR5416_NUM_5G_20_TARGET_POWERS,
1120 &targetPowerOfdm, 4, false);
1121 ath9k_hw_get_target_powers(ah, chan,
1122 pEepData->calTargetPower5GHT20,
1123 AR5416_NUM_5G_20_TARGET_POWERS,
1124 &targetPowerHt20, 8, false);
1125
1126 if (IS_CHAN_HT40(chan)) {
1127 numCtlModes = ARRAY_SIZE(ctlModesFor11a);
1128 ath9k_hw_get_target_powers(ah, chan,
1129 pEepData->calTargetPower5GHT40,
1130 AR5416_NUM_5G_40_TARGET_POWERS,
1131 &targetPowerHt40, 8, true);
1132 ath9k_hw_get_legacy_target_powers(ah, chan,
1133 pEepData->calTargetPower5G,
1134 AR5416_NUM_5G_20_TARGET_POWERS,
1135 &targetPowerOfdmExt, 4, true);
1136 }
1137 }
1138
1139 for (ctlMode = 0; ctlMode < numCtlModes; ctlMode++) {
1140 bool isHt40CtlMode = (pCtlMode[ctlMode] == CTL_5GHT40) ||
1141 (pCtlMode[ctlMode] == CTL_2GHT40);
1142 if (isHt40CtlMode)
1143 freq = centers.synth_center;
1144 else if (pCtlMode[ctlMode] & EXT_ADDITIVE)
1145 freq = centers.ext_center;
1146 else
1147 freq = centers.ctl_center;
1148
1149 if (ah->eep_ops->get_eeprom_ver(ah) == 14 &&
1150 ah->eep_ops->get_eeprom_rev(ah) <= 2)
1151 twiceMaxEdgePower = AR5416_MAX_RATE_POWER;
1152
1153 for (i = 0; (i < AR5416_NUM_CTLS) && pEepData->ctlIndex[i]; i++) {
1154 if ((((cfgCtl & ~CTL_MODE_M) |
1155 (pCtlMode[ctlMode] & CTL_MODE_M)) ==
1156 pEepData->ctlIndex[i]) ||
1157 (((cfgCtl & ~CTL_MODE_M) |
1158 (pCtlMode[ctlMode] & CTL_MODE_M)) ==
1159 ((pEepData->ctlIndex[i] & CTL_MODE_M) | SD_NO_CTL))) {
1160 rep = &(pEepData->ctlData[i]);
1161
1162 twiceMinEdgePower = ath9k_hw_get_max_edge_power(freq,
1163 rep->ctlEdges[ar5416_get_ntxchains(tx_chainmask) - 1],
1164 IS_CHAN_2GHZ(chan), AR5416_NUM_BAND_EDGES);
1165
1166 if ((cfgCtl & ~CTL_MODE_M) == SD_NO_CTL) {
1167 twiceMaxEdgePower = min(twiceMaxEdgePower,
1168 twiceMinEdgePower);
1169 } else {
1170 twiceMaxEdgePower = twiceMinEdgePower;
1171 break;
1172 }
1173 }
1174 }
1175
1176 minCtlPower = min(twiceMaxEdgePower, scaledPower);
1177
1178 switch (pCtlMode[ctlMode]) {
1179 case CTL_11B:
1180 for (i = 0; i < ARRAY_SIZE(targetPowerCck.tPow2x); i++) {
1181 targetPowerCck.tPow2x[i] =
1182 min((u16)targetPowerCck.tPow2x[i],
1183 minCtlPower);
1184 }
1185 break;
1186 case CTL_11A:
1187 case CTL_11G:
1188 for (i = 0; i < ARRAY_SIZE(targetPowerOfdm.tPow2x); i++) {
1189 targetPowerOfdm.tPow2x[i] =
1190 min((u16)targetPowerOfdm.tPow2x[i],
1191 minCtlPower);
1192 }
1193 break;
1194 case CTL_5GHT20:
1195 case CTL_2GHT20:
1196 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++) {
1197 targetPowerHt20.tPow2x[i] =
1198 min((u16)targetPowerHt20.tPow2x[i],
1199 minCtlPower);
1200 }
1201 break;
1202 case CTL_11B_EXT:
1203 targetPowerCckExt.tPow2x[0] = min((u16)
1204 targetPowerCckExt.tPow2x[0],
1205 minCtlPower);
1206 break;
1207 case CTL_11A_EXT:
1208 case CTL_11G_EXT:
1209 targetPowerOfdmExt.tPow2x[0] = min((u16)
1210 targetPowerOfdmExt.tPow2x[0],
1211 minCtlPower);
1212 break;
1213 case CTL_5GHT40:
1214 case CTL_2GHT40:
1215 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
1216 targetPowerHt40.tPow2x[i] =
1217 min((u16)targetPowerHt40.tPow2x[i],
1218 minCtlPower);
1219 }
1220 break;
1221 default:
1222 break;
1223 }
1224 }
1225
1226 ratesArray[rate6mb] = ratesArray[rate9mb] = ratesArray[rate12mb] =
1227 ratesArray[rate18mb] = ratesArray[rate24mb] =
1228 targetPowerOfdm.tPow2x[0];
1229 ratesArray[rate36mb] = targetPowerOfdm.tPow2x[1];
1230 ratesArray[rate48mb] = targetPowerOfdm.tPow2x[2];
1231 ratesArray[rate54mb] = targetPowerOfdm.tPow2x[3];
1232 ratesArray[rateXr] = targetPowerOfdm.tPow2x[0];
1233
1234 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++)
1235 ratesArray[rateHt20_0 + i] = targetPowerHt20.tPow2x[i];
1236
1237 if (IS_CHAN_2GHZ(chan)) {
1238 ratesArray[rate1l] = targetPowerCck.tPow2x[0];
1239 ratesArray[rate2s] = ratesArray[rate2l] =
1240 targetPowerCck.tPow2x[1];
1241 ratesArray[rate5_5s] = ratesArray[rate5_5l] =
1242 targetPowerCck.tPow2x[2];
1243 ratesArray[rate11s] = ratesArray[rate11l] =
1244 targetPowerCck.tPow2x[3];
1245 }
1246 if (IS_CHAN_HT40(chan)) {
1247 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
1248 ratesArray[rateHt40_0 + i] =
1249 targetPowerHt40.tPow2x[i];
1250 }
1251 ratesArray[rateDupOfdm] = targetPowerHt40.tPow2x[0];
1252 ratesArray[rateDupCck] = targetPowerHt40.tPow2x[0];
1253 ratesArray[rateExtOfdm] = targetPowerOfdmExt.tPow2x[0];
1254 if (IS_CHAN_2GHZ(chan)) {
1255 ratesArray[rateExtCck] =
1256 targetPowerCckExt.tPow2x[0];
1257 }
1258 }
1259}
1260
1261static void ath9k_hw_def_set_txpower(struct ath_hw *ah,
1262 struct ath9k_channel *chan,
1263 u16 cfgCtl,
1264 u8 twiceAntennaReduction,
1265 u8 twiceMaxRegulatoryPower,
1266 u8 powerLimit)
1267{
1268#define RT_AR_DELTA(x) (ratesArray[x] - cck_ofdm_delta)
608b88cb 1269 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
b5aec950
S
1270 struct ar5416_eeprom_def *pEepData = &ah->eeprom.def;
1271 struct modal_eep_header *pModal =
1272 &(pEepData->modalHeader[IS_CHAN_2GHZ(chan)]);
1273 int16_t ratesArray[Ar5416RateSize];
1274 int16_t txPowerIndexOffset = 0;
1275 u8 ht40PowerIncForPdadc = 2;
1276 int i, cck_ofdm_delta = 0;
1277
1278 memset(ratesArray, 0, sizeof(ratesArray));
1279
1280 if ((pEepData->baseEepHeader.version & AR5416_EEP_VER_MINOR_MASK) >=
1281 AR5416_EEP_MINOR_VER_2) {
1282 ht40PowerIncForPdadc = pModal->ht40PowerIncForPdadc;
1283 }
1284
1285 ath9k_hw_set_def_power_per_rate_table(ah, chan,
1286 &ratesArray[0], cfgCtl,
1287 twiceAntennaReduction,
1288 twiceMaxRegulatoryPower,
1289 powerLimit);
1290
1291 ath9k_hw_set_def_power_cal_table(ah, chan, &txPowerIndexOffset);
1292
1293 for (i = 0; i < ARRAY_SIZE(ratesArray); i++) {
1294 ratesArray[i] = (int16_t)(txPowerIndexOffset + ratesArray[i]);
1295 if (ratesArray[i] > AR5416_MAX_RATE_POWER)
1296 ratesArray[i] = AR5416_MAX_RATE_POWER;
1297 }
1298
7a37081e 1299 if (AR_SREV_9280_20_OR_LATER(ah)) {
e41f0bfc
SB
1300 for (i = 0; i < Ar5416RateSize; i++) {
1301 int8_t pwr_table_offset;
1302
1303 pwr_table_offset = ah->eep_ops->get_eeprom(ah,
1304 EEP_PWR_TABLE_OFFSET);
1305 ratesArray[i] -= pwr_table_offset * 2;
1306 }
b5aec950
S
1307 }
1308
1309 REG_WRITE(ah, AR_PHY_POWER_TX_RATE1,
1310 ATH9K_POW_SM(ratesArray[rate18mb], 24)
1311 | ATH9K_POW_SM(ratesArray[rate12mb], 16)
1312 | ATH9K_POW_SM(ratesArray[rate9mb], 8)
1313 | ATH9K_POW_SM(ratesArray[rate6mb], 0));
1314 REG_WRITE(ah, AR_PHY_POWER_TX_RATE2,
1315 ATH9K_POW_SM(ratesArray[rate54mb], 24)
1316 | ATH9K_POW_SM(ratesArray[rate48mb], 16)
1317 | ATH9K_POW_SM(ratesArray[rate36mb], 8)
1318 | ATH9K_POW_SM(ratesArray[rate24mb], 0));
1319
1320 if (IS_CHAN_2GHZ(chan)) {
1321 if (OLC_FOR_AR9280_20_LATER) {
1322 cck_ofdm_delta = 2;
1323 REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
1324 ATH9K_POW_SM(RT_AR_DELTA(rate2s), 24)
1325 | ATH9K_POW_SM(RT_AR_DELTA(rate2l), 16)
1326 | ATH9K_POW_SM(ratesArray[rateXr], 8)
1327 | ATH9K_POW_SM(RT_AR_DELTA(rate1l), 0));
1328 REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
1329 ATH9K_POW_SM(RT_AR_DELTA(rate11s), 24)
1330 | ATH9K_POW_SM(RT_AR_DELTA(rate11l), 16)
1331 | ATH9K_POW_SM(RT_AR_DELTA(rate5_5s), 8)
1332 | ATH9K_POW_SM(RT_AR_DELTA(rate5_5l), 0));
1333 } else {
1334 REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
1335 ATH9K_POW_SM(ratesArray[rate2s], 24)
1336 | ATH9K_POW_SM(ratesArray[rate2l], 16)
1337 | ATH9K_POW_SM(ratesArray[rateXr], 8)
1338 | ATH9K_POW_SM(ratesArray[rate1l], 0));
1339 REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
1340 ATH9K_POW_SM(ratesArray[rate11s], 24)
1341 | ATH9K_POW_SM(ratesArray[rate11l], 16)
1342 | ATH9K_POW_SM(ratesArray[rate5_5s], 8)
1343 | ATH9K_POW_SM(ratesArray[rate5_5l], 0));
1344 }
1345 }
1346
1347 REG_WRITE(ah, AR_PHY_POWER_TX_RATE5,
1348 ATH9K_POW_SM(ratesArray[rateHt20_3], 24)
1349 | ATH9K_POW_SM(ratesArray[rateHt20_2], 16)
1350 | ATH9K_POW_SM(ratesArray[rateHt20_1], 8)
1351 | ATH9K_POW_SM(ratesArray[rateHt20_0], 0));
1352 REG_WRITE(ah, AR_PHY_POWER_TX_RATE6,
1353 ATH9K_POW_SM(ratesArray[rateHt20_7], 24)
1354 | ATH9K_POW_SM(ratesArray[rateHt20_6], 16)
1355 | ATH9K_POW_SM(ratesArray[rateHt20_5], 8)
1356 | ATH9K_POW_SM(ratesArray[rateHt20_4], 0));
1357
1358 if (IS_CHAN_HT40(chan)) {
1359 REG_WRITE(ah, AR_PHY_POWER_TX_RATE7,
1360 ATH9K_POW_SM(ratesArray[rateHt40_3] +
1361 ht40PowerIncForPdadc, 24)
1362 | ATH9K_POW_SM(ratesArray[rateHt40_2] +
1363 ht40PowerIncForPdadc, 16)
1364 | ATH9K_POW_SM(ratesArray[rateHt40_1] +
1365 ht40PowerIncForPdadc, 8)
1366 | ATH9K_POW_SM(ratesArray[rateHt40_0] +
1367 ht40PowerIncForPdadc, 0));
1368 REG_WRITE(ah, AR_PHY_POWER_TX_RATE8,
1369 ATH9K_POW_SM(ratesArray[rateHt40_7] +
1370 ht40PowerIncForPdadc, 24)
1371 | ATH9K_POW_SM(ratesArray[rateHt40_6] +
1372 ht40PowerIncForPdadc, 16)
1373 | ATH9K_POW_SM(ratesArray[rateHt40_5] +
1374 ht40PowerIncForPdadc, 8)
1375 | ATH9K_POW_SM(ratesArray[rateHt40_4] +
1376 ht40PowerIncForPdadc, 0));
1377 if (OLC_FOR_AR9280_20_LATER) {
1378 REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
1379 ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
1380 | ATH9K_POW_SM(RT_AR_DELTA(rateExtCck), 16)
1381 | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
1382 | ATH9K_POW_SM(RT_AR_DELTA(rateDupCck), 0));
1383 } else {
1384 REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
1385 ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
1386 | ATH9K_POW_SM(ratesArray[rateExtCck], 16)
1387 | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
1388 | ATH9K_POW_SM(ratesArray[rateDupCck], 0));
1389 }
1390 }
1391
1392 REG_WRITE(ah, AR_PHY_POWER_TX_SUB,
1393 ATH9K_POW_SM(pModal->pwrDecreaseFor3Chain, 6)
1394 | ATH9K_POW_SM(pModal->pwrDecreaseFor2Chain, 0));
1395
1396 i = rate6mb;
1397
1398 if (IS_CHAN_HT40(chan))
1399 i = rateHt40_0;
1400 else if (IS_CHAN_HT20(chan))
1401 i = rateHt20_0;
1402
7a37081e 1403 if (AR_SREV_9280_20_OR_LATER(ah))
608b88cb 1404 regulatory->max_power_level =
e41f0bfc 1405 ratesArray[i] + AR5416_PWR_TABLE_OFFSET_DB * 2;
b5aec950 1406 else
608b88cb 1407 regulatory->max_power_level = ratesArray[i];
b5aec950
S
1408
1409 switch(ar5416_get_ntxchains(ah->txchainmask)) {
1410 case 1:
1411 break;
1412 case 2:
608b88cb 1413 regulatory->max_power_level += INCREASE_MAXPOW_BY_TWO_CHAIN;
b5aec950
S
1414 break;
1415 case 3:
608b88cb 1416 regulatory->max_power_level += INCREASE_MAXPOW_BY_THREE_CHAIN;
b5aec950
S
1417 break;
1418 default:
c46917bb
LR
1419 ath_print(ath9k_hw_common(ah), ATH_DBG_EEPROM,
1420 "Invalid chainmask configuration\n");
b5aec950
S
1421 break;
1422 }
1423}
1424
1425static u8 ath9k_hw_def_get_num_ant_config(struct ath_hw *ah,
f799a301 1426 enum ath9k_hal_freq_band freq_band)
b5aec950
S
1427{
1428 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
1429 struct modal_eep_header *pModal =
f799a301 1430 &(eep->modalHeader[freq_band]);
b5aec950
S
1431 struct base_eep_header *pBase = &eep->baseEepHeader;
1432 u8 num_ant_config;
1433
1434 num_ant_config = 1;
1435
f67e07eb
FF
1436 if (pBase->version >= 0x0E0D &&
1437 (pModal->lna_ctl & LNA_CTL_USE_ANT1))
1438 num_ant_config += 1;
b5aec950
S
1439
1440 return num_ant_config;
1441}
1442
601e0cb1 1443static u32 ath9k_hw_def_get_eeprom_antenna_cfg(struct ath_hw *ah,
b5aec950
S
1444 struct ath9k_channel *chan)
1445{
1446 struct ar5416_eeprom_def *eep = &ah->eeprom.def;
1447 struct modal_eep_header *pModal =
1448 &(eep->modalHeader[IS_CHAN_2GHZ(chan)]);
1449
601e0cb1 1450 return pModal->antCtrlCommon;
b5aec950
S
1451}
1452
1453static u16 ath9k_hw_def_get_spur_channel(struct ath_hw *ah, u16 i, bool is2GHz)
1454{
1455#define EEP_DEF_SPURCHAN \
1456 (ah->eeprom.def.modalHeader[is2GHz].spurChans[i].spurChan)
c46917bb 1457 struct ath_common *common = ath9k_hw_common(ah);
b5aec950
S
1458
1459 u16 spur_val = AR_NO_SPUR;
1460
c46917bb
LR
1461 ath_print(common, ATH_DBG_ANI,
1462 "Getting spur idx %d is2Ghz. %d val %x\n",
1463 i, is2GHz, ah->config.spurchans[i][is2GHz]);
b5aec950
S
1464
1465 switch (ah->config.spurmode) {
1466 case SPUR_DISABLE:
1467 break;
1468 case SPUR_ENABLE_IOCTL:
1469 spur_val = ah->config.spurchans[i][is2GHz];
c46917bb
LR
1470 ath_print(common, ATH_DBG_ANI,
1471 "Getting spur val from new loc. %d\n", spur_val);
b5aec950
S
1472 break;
1473 case SPUR_ENABLE_EEPROM:
1474 spur_val = EEP_DEF_SPURCHAN;
1475 break;
1476 }
1477
1478 return spur_val;
1479
1480#undef EEP_DEF_SPURCHAN
1481}
1482
1483const struct eeprom_ops eep_def_ops = {
1484 .check_eeprom = ath9k_hw_def_check_eeprom,
1485 .get_eeprom = ath9k_hw_def_get_eeprom,
1486 .fill_eeprom = ath9k_hw_def_fill_eeprom,
1487 .get_eeprom_ver = ath9k_hw_def_get_eeprom_ver,
1488 .get_eeprom_rev = ath9k_hw_def_get_eeprom_rev,
1489 .get_num_ant_config = ath9k_hw_def_get_num_ant_config,
1490 .get_eeprom_antenna_cfg = ath9k_hw_def_get_eeprom_antenna_cfg,
1491 .set_board_values = ath9k_hw_def_set_board_values,
1492 .set_addac = ath9k_hw_def_set_addac,
1493 .set_txpower = ath9k_hw_def_set_txpower,
1494 .get_spur_channel = ath9k_hw_def_get_spur_channel
1495};
This page took 0.243874 seconds and 5 git commands to generate.