blob: b87db4763098bad950f78824102d2626b598aa38 [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
Sujith Manoharan04cf53f2011-01-04 13:17:28 +053020#define SIZE_EEPROM_AR9287 (sizeof(struct ar9287_eeprom) / sizeof(u16))
Sujith16c94ac2010-06-01 15:14:04 +053021
22static int ath9k_hw_ar9287_get_eeprom_ver(struct ath_hw *ah)
Sujithb5aec952009-08-07 09:45:15 +053023{
24 return (ah->eeprom.map9287.baseEepHeader.version >> 12) & 0xF;
25}
26
Sujith16c94ac2010-06-01 15:14:04 +053027static int ath9k_hw_ar9287_get_eeprom_rev(struct ath_hw *ah)
Sujithb5aec952009-08-07 09:45:15 +053028{
29 return (ah->eeprom.map9287.baseEepHeader.version) & 0xFFF;
30}
31
Sujith Manoharan04cf53f2011-01-04 13:17:28 +053032static bool __ath9k_hw_ar9287_fill_eeprom(struct ath_hw *ah)
Sujithb5aec952009-08-07 09:45:15 +053033{
34 struct ar9287_eeprom *eep = &ah->eeprom.map9287;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070035 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +053036 u16 *eep_data;
Sujith Manoharan04cf53f2011-01-04 13:17:28 +053037 int addr, eep_start_loc = AR9287_EEP_START_LOC;
Sujithb5aec952009-08-07 09:45:15 +053038 eep_data = (u16 *)eep;
39
Sujith Manoharan04cf53f2011-01-04 13:17:28 +053040 for (addr = 0; addr < SIZE_EEPROM_AR9287; addr++) {
Sujith16c94ac2010-06-01 15:14:04 +053041 if (!ath9k_hw_nvram_read(common, addr + eep_start_loc,
42 eep_data)) {
Joe Perches226afe62010-12-02 19:12:37 -080043 ath_dbg(common, ATH_DBG_EEPROM,
44 "Unable to read eeprom region\n");
Sujithb5aec952009-08-07 09:45:15 +053045 return false;
46 }
47 eep_data++;
48 }
Sujith16c94ac2010-06-01 15:14:04 +053049
Sujithb5aec952009-08-07 09:45:15 +053050 return true;
51}
52
Sujith Manoharan04cf53f2011-01-04 13:17:28 +053053static bool __ath9k_hw_usb_ar9287_fill_eeprom(struct ath_hw *ah)
54{
55 u16 *eep_data = (u16 *)&ah->eeprom.map9287;
56
57 ath9k_hw_usb_gen_fill_eeprom(ah, eep_data,
58 AR9287_HTC_EEP_START_LOC,
59 SIZE_EEPROM_AR9287);
60 return true;
61}
62
63static bool ath9k_hw_ar9287_fill_eeprom(struct ath_hw *ah)
64{
65 struct ath_common *common = ath9k_hw_common(ah);
66
67 if (!ath9k_hw_use_flash(ah)) {
68 ath_dbg(common, ATH_DBG_EEPROM,
69 "Reading from EEPROM, not flash\n");
70 }
71
72 if (common->bus_ops->ath_bus_type == ATH_USB)
73 return __ath9k_hw_usb_ar9287_fill_eeprom(ah);
74 else
75 return __ath9k_hw_ar9287_fill_eeprom(ah);
76}
77
Sujith16c94ac2010-06-01 15:14:04 +053078static int ath9k_hw_ar9287_check_eeprom(struct ath_hw *ah)
Sujithb5aec952009-08-07 09:45:15 +053079{
80 u32 sum = 0, el, integer;
81 u16 temp, word, magic, magic2, *eepdata;
82 int i, addr;
83 bool need_swap = false;
84 struct ar9287_eeprom *eep = &ah->eeprom.map9287;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070085 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +053086
87 if (!ath9k_hw_use_flash(ah)) {
Sujith16c94ac2010-06-01 15:14:04 +053088 if (!ath9k_hw_nvram_read(common, AR5416_EEPROM_MAGIC_OFFSET,
89 &magic)) {
Joe Perches38002762010-12-02 19:12:36 -080090 ath_err(common, "Reading Magic # failed\n");
Sujithb5aec952009-08-07 09:45:15 +053091 return false;
92 }
93
Joe Perches226afe62010-12-02 19:12:37 -080094 ath_dbg(common, ATH_DBG_EEPROM,
95 "Read Magic = 0x%04X\n", magic);
Sujith16c94ac2010-06-01 15:14:04 +053096
Sujithb5aec952009-08-07 09:45:15 +053097 if (magic != AR5416_EEPROM_MAGIC) {
98 magic2 = swab16(magic);
99
100 if (magic2 == AR5416_EEPROM_MAGIC) {
101 need_swap = true;
102 eepdata = (u16 *)(&ah->eeprom);
103
Sujith Manoharan04cf53f2011-01-04 13:17:28 +0530104 for (addr = 0; addr < SIZE_EEPROM_AR9287; addr++) {
Sujithb5aec952009-08-07 09:45:15 +0530105 temp = swab16(*eepdata);
106 *eepdata = temp;
107 eepdata++;
108 }
109 } else {
Joe Perches38002762010-12-02 19:12:36 -0800110 ath_err(common,
111 "Invalid EEPROM Magic. Endianness mismatch.\n");
Sujithb5aec952009-08-07 09:45:15 +0530112 return -EINVAL;
113 }
114 }
115 }
Sujith16c94ac2010-06-01 15:14:04 +0530116
Joe Perches226afe62010-12-02 19:12:37 -0800117 ath_dbg(common, ATH_DBG_EEPROM, "need_swap = %s.\n",
118 need_swap ? "True" : "False");
Sujithb5aec952009-08-07 09:45:15 +0530119
120 if (need_swap)
121 el = swab16(ah->eeprom.map9287.baseEepHeader.length);
122 else
123 el = ah->eeprom.map9287.baseEepHeader.length;
124
125 if (el > sizeof(struct ar9287_eeprom))
126 el = sizeof(struct ar9287_eeprom) / sizeof(u16);
127 else
128 el = el / sizeof(u16);
129
130 eepdata = (u16 *)(&ah->eeprom);
Sujith16c94ac2010-06-01 15:14:04 +0530131
Sujithb5aec952009-08-07 09:45:15 +0530132 for (i = 0; i < el; i++)
133 sum ^= *eepdata++;
134
135 if (need_swap) {
136 word = swab16(eep->baseEepHeader.length);
137 eep->baseEepHeader.length = word;
138
139 word = swab16(eep->baseEepHeader.checksum);
140 eep->baseEepHeader.checksum = word;
141
142 word = swab16(eep->baseEepHeader.version);
143 eep->baseEepHeader.version = word;
144
145 word = swab16(eep->baseEepHeader.regDmn[0]);
146 eep->baseEepHeader.regDmn[0] = word;
147
148 word = swab16(eep->baseEepHeader.regDmn[1]);
149 eep->baseEepHeader.regDmn[1] = word;
150
151 word = swab16(eep->baseEepHeader.rfSilent);
152 eep->baseEepHeader.rfSilent = word;
153
154 word = swab16(eep->baseEepHeader.blueToothOptions);
155 eep->baseEepHeader.blueToothOptions = word;
156
157 word = swab16(eep->baseEepHeader.deviceCap);
158 eep->baseEepHeader.deviceCap = word;
159
160 integer = swab32(eep->modalHeader.antCtrlCommon);
161 eep->modalHeader.antCtrlCommon = integer;
162
163 for (i = 0; i < AR9287_MAX_CHAINS; i++) {
164 integer = swab32(eep->modalHeader.antCtrlChain[i]);
165 eep->modalHeader.antCtrlChain[i] = integer;
166 }
167
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100168 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujithb5aec952009-08-07 09:45:15 +0530169 word = swab16(eep->modalHeader.spurChans[i].spurChan);
170 eep->modalHeader.spurChans[i].spurChan = word;
171 }
172 }
173
174 if (sum != 0xffff || ah->eep_ops->get_eeprom_ver(ah) != AR9287_EEP_VER
175 || ah->eep_ops->get_eeprom_rev(ah) < AR5416_EEP_NO_BACK_VER) {
Joe Perches38002762010-12-02 19:12:36 -0800176 ath_err(common, "Bad EEPROM checksum 0x%x or revision 0x%04x\n",
177 sum, ah->eep_ops->get_eeprom_ver(ah));
Sujithb5aec952009-08-07 09:45:15 +0530178 return -EINVAL;
179 }
180
181 return 0;
182}
183
Sujith16c94ac2010-06-01 15:14:04 +0530184static u32 ath9k_hw_ar9287_get_eeprom(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530185 enum eeprom_param param)
186{
187 struct ar9287_eeprom *eep = &ah->eeprom.map9287;
188 struct modal_eep_ar9287_header *pModal = &eep->modalHeader;
189 struct base_eep_ar9287_header *pBase = &eep->baseEepHeader;
190 u16 ver_minor;
191
192 ver_minor = pBase->version & AR9287_EEP_VER_MINOR_MASK;
Sujith16c94ac2010-06-01 15:14:04 +0530193
Sujithb5aec952009-08-07 09:45:15 +0530194 switch (param) {
195 case EEP_NFTHRESH_2:
196 return pModal->noiseFloorThreshCh[0];
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400197 case EEP_MAC_LSW:
Sujithb5aec952009-08-07 09:45:15 +0530198 return pBase->macAddr[0] << 8 | pBase->macAddr[1];
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400199 case EEP_MAC_MID:
Sujithb5aec952009-08-07 09:45:15 +0530200 return pBase->macAddr[2] << 8 | pBase->macAddr[3];
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400201 case EEP_MAC_MSW:
Sujithb5aec952009-08-07 09:45:15 +0530202 return pBase->macAddr[4] << 8 | pBase->macAddr[5];
203 case EEP_REG_0:
204 return pBase->regDmn[0];
205 case EEP_REG_1:
206 return pBase->regDmn[1];
207 case EEP_OP_CAP:
208 return pBase->deviceCap;
209 case EEP_OP_MODE:
210 return pBase->opCapFlags;
211 case EEP_RF_SILENT:
212 return pBase->rfSilent;
213 case EEP_MINOR_REV:
214 return ver_minor;
215 case EEP_TX_MASK:
216 return pBase->txMask;
217 case EEP_RX_MASK:
218 return pBase->rxMask;
219 case EEP_DEV_TYPE:
220 return pBase->deviceType;
221 case EEP_OL_PWRCTRL:
222 return pBase->openLoopPwrCntl;
223 case EEP_TEMPSENSE_SLOPE:
224 if (ver_minor >= AR9287_EEP_MINOR_VER_2)
225 return pBase->tempSensSlope;
226 else
227 return 0;
228 case EEP_TEMPSENSE_SLOPE_PAL_ON:
229 if (ver_minor >= AR9287_EEP_MINOR_VER_3)
230 return pBase->tempSensSlopePalOn;
231 else
232 return 0;
233 default:
234 return 0;
235 }
236}
237
Sujithb5aec952009-08-07 09:45:15 +0530238static void ar9287_eeprom_get_tx_gain_index(struct ath_hw *ah,
239 struct ath9k_channel *chan,
240 struct cal_data_op_loop_ar9287 *pRawDatasetOpLoop,
Sujith16c94ac2010-06-01 15:14:04 +0530241 u8 *pCalChans, u16 availPiers, int8_t *pPwr)
Sujithb5aec952009-08-07 09:45:15 +0530242{
Sujith16c94ac2010-06-01 15:14:04 +0530243 u16 idxL = 0, idxR = 0, numPiers;
Sujithb5aec952009-08-07 09:45:15 +0530244 bool match;
245 struct chan_centers centers;
246
247 ath9k_hw_get_channel_centers(ah, chan, &centers);
248
249 for (numPiers = 0; numPiers < availPiers; numPiers++) {
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100250 if (pCalChans[numPiers] == AR5416_BCHAN_UNUSED)
Sujithb5aec952009-08-07 09:45:15 +0530251 break;
252 }
253
254 match = ath9k_hw_get_lower_upper_index(
Sujitha55f8582010-06-01 15:14:07 +0530255 (u8)FREQ2FBIN(centers.synth_center, IS_CHAN_2GHZ(chan)),
256 pCalChans, numPiers, &idxL, &idxR);
Sujithb5aec952009-08-07 09:45:15 +0530257
258 if (match) {
Vivek Natarajand4fe5af2009-08-14 11:32:04 +0530259 *pPwr = (int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0];
Sujithb5aec952009-08-07 09:45:15 +0530260 } else {
Vivek Natarajand4fe5af2009-08-14 11:32:04 +0530261 *pPwr = ((int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0] +
Sujith16c94ac2010-06-01 15:14:04 +0530262 (int8_t) pRawDatasetOpLoop[idxR].pwrPdg[0][0])/2;
Sujithb5aec952009-08-07 09:45:15 +0530263 }
264
Sujithb5aec952009-08-07 09:45:15 +0530265}
266
267static void ar9287_eeprom_olpc_set_pdadcs(struct ath_hw *ah,
268 int32_t txPower, u16 chain)
269{
270 u32 tmpVal;
271 u32 a;
272
Sujith16c94ac2010-06-01 15:14:04 +0530273 /* Enable OLPC for chain 0 */
274
Sujithb5aec952009-08-07 09:45:15 +0530275 tmpVal = REG_READ(ah, 0xa270);
276 tmpVal = tmpVal & 0xFCFFFFFF;
277 tmpVal = tmpVal | (0x3 << 24);
278 REG_WRITE(ah, 0xa270, tmpVal);
279
Sujith16c94ac2010-06-01 15:14:04 +0530280 /* Enable OLPC for chain 1 */
281
Sujithb5aec952009-08-07 09:45:15 +0530282 tmpVal = REG_READ(ah, 0xb270);
283 tmpVal = tmpVal & 0xFCFFFFFF;
284 tmpVal = tmpVal | (0x3 << 24);
285 REG_WRITE(ah, 0xb270, tmpVal);
286
Sujith16c94ac2010-06-01 15:14:04 +0530287 /* Write the OLPC ref power for chain 0 */
288
Sujithb5aec952009-08-07 09:45:15 +0530289 if (chain == 0) {
290 tmpVal = REG_READ(ah, 0xa398);
291 tmpVal = tmpVal & 0xff00ffff;
292 a = (txPower)&0xff;
293 tmpVal = tmpVal | (a << 16);
294 REG_WRITE(ah, 0xa398, tmpVal);
295 }
296
Sujith16c94ac2010-06-01 15:14:04 +0530297 /* Write the OLPC ref power for chain 1 */
298
Sujithb5aec952009-08-07 09:45:15 +0530299 if (chain == 1) {
300 tmpVal = REG_READ(ah, 0xb398);
301 tmpVal = tmpVal & 0xff00ffff;
302 a = (txPower)&0xff;
303 tmpVal = tmpVal | (a << 16);
304 REG_WRITE(ah, 0xb398, tmpVal);
305 }
306}
307
Sujith16c94ac2010-06-01 15:14:04 +0530308static void ath9k_hw_set_ar9287_power_cal_table(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530309 struct ath9k_channel *chan,
310 int16_t *pTxPowerIndexOffset)
311{
312 struct cal_data_per_freq_ar9287 *pRawDataset;
313 struct cal_data_op_loop_ar9287 *pRawDatasetOpenLoop;
Sujith16c94ac2010-06-01 15:14:04 +0530314 u8 *pCalBChans = NULL;
Sujithb5aec952009-08-07 09:45:15 +0530315 u16 pdGainOverlap_t2;
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100316 u8 pdadcValues[AR5416_NUM_PDADC_VALUES];
317 u16 gainBoundaries[AR5416_PD_GAINS_IN_MASK];
Sujithb5aec952009-08-07 09:45:15 +0530318 u16 numPiers = 0, i, j;
Sujithb5aec952009-08-07 09:45:15 +0530319 u16 numXpdGain, xpdMask;
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100320 u16 xpdGainValues[AR5416_NUM_PD_GAINS] = {0, 0, 0, 0};
Sujitha55f8582010-06-01 15:14:07 +0530321 u32 reg32, regOffset, regChainOffset, regval;
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +0530322 int16_t diff = 0;
Sujithb5aec952009-08-07 09:45:15 +0530323 struct ar9287_eeprom *pEepData = &ah->eeprom.map9287;
Sujith16c94ac2010-06-01 15:14:04 +0530324
Sujithb5aec952009-08-07 09:45:15 +0530325 xpdMask = pEepData->modalHeader.xpdGain;
Sujith16c94ac2010-06-01 15:14:04 +0530326
Sujithb5aec952009-08-07 09:45:15 +0530327 if ((pEepData->baseEepHeader.version & AR9287_EEP_VER_MINOR_MASK) >=
Sujitha55f8582010-06-01 15:14:07 +0530328 AR9287_EEP_MINOR_VER_2)
Sujithb5aec952009-08-07 09:45:15 +0530329 pdGainOverlap_t2 = pEepData->modalHeader.pdGainOverlap;
330 else
331 pdGainOverlap_t2 = (u16)(MS(REG_READ(ah, AR_PHY_TPCRG5),
332 AR_PHY_TPCRG5_PD_GAIN_OVERLAP));
333
334 if (IS_CHAN_2GHZ(chan)) {
335 pCalBChans = pEepData->calFreqPier2G;
336 numPiers = AR9287_NUM_2G_CAL_PIERS;
Sujith16c94ac2010-06-01 15:14:04 +0530337 if (ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) {
Sujithb5aec952009-08-07 09:45:15 +0530338 pRawDatasetOpenLoop =
Sujitha55f8582010-06-01 15:14:07 +0530339 (struct cal_data_op_loop_ar9287 *)pEepData->calPierData2G[0];
Sujithb5aec952009-08-07 09:45:15 +0530340 ah->initPDADC = pRawDatasetOpenLoop->vpdPdg[0][0];
341 }
342 }
343
344 numXpdGain = 0;
Sujith16c94ac2010-06-01 15:14:04 +0530345
Sujitha55f8582010-06-01 15:14:07 +0530346 /* Calculate the value of xpdgains from the xpdGain Mask */
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100347 for (i = 1; i <= AR5416_PD_GAINS_IN_MASK; i++) {
348 if ((xpdMask >> (AR5416_PD_GAINS_IN_MASK - i)) & 1) {
349 if (numXpdGain >= AR5416_NUM_PD_GAINS)
Sujithb5aec952009-08-07 09:45:15 +0530350 break;
351 xpdGainValues[numXpdGain] =
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100352 (u16)(AR5416_PD_GAINS_IN_MASK-i);
Sujithb5aec952009-08-07 09:45:15 +0530353 numXpdGain++;
354 }
355 }
356
357 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_NUM_PD_GAIN,
358 (numXpdGain - 1) & 0x3);
359 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_1,
360 xpdGainValues[0]);
361 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_2,
362 xpdGainValues[1]);
363 REG_RMW_FIELD(ah, AR_PHY_TPCRG1, AR_PHY_TPCRG1_PD_GAIN_3,
364 xpdGainValues[2]);
365
366 for (i = 0; i < AR9287_MAX_CHAINS; i++) {
367 regChainOffset = i * 0x1000;
Sujitha55f8582010-06-01 15:14:07 +0530368
Sujithb5aec952009-08-07 09:45:15 +0530369 if (pEepData->baseEepHeader.txMask & (1 << i)) {
Sujitha55f8582010-06-01 15:14:07 +0530370 pRawDatasetOpenLoop =
371 (struct cal_data_op_loop_ar9287 *)pEepData->calPierData2G[i];
372
Sujith16c94ac2010-06-01 15:14:04 +0530373 if (ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) {
Sujithb5aec952009-08-07 09:45:15 +0530374 int8_t txPower;
375 ar9287_eeprom_get_tx_gain_index(ah, chan,
Sujitha55f8582010-06-01 15:14:07 +0530376 pRawDatasetOpenLoop,
377 pCalBChans, numPiers,
378 &txPower);
Sujithb5aec952009-08-07 09:45:15 +0530379 ar9287_eeprom_olpc_set_pdadcs(ah, txPower, i);
380 } else {
381 pRawDataset =
382 (struct cal_data_per_freq_ar9287 *)
383 pEepData->calPierData2G[i];
Sujitha55f8582010-06-01 15:14:07 +0530384
Felix Fietkau940cd2c2010-12-12 00:51:10 +0100385 ath9k_hw_get_gain_boundaries_pdadcs(ah, chan,
Sujitha55f8582010-06-01 15:14:07 +0530386 pRawDataset,
387 pCalBChans, numPiers,
388 pdGainOverlap_t2,
Sujitha55f8582010-06-01 15:14:07 +0530389 gainBoundaries,
390 pdadcValues,
391 numXpdGain);
Sujithb5aec952009-08-07 09:45:15 +0530392 }
393
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530394 ENABLE_REGWRITE_BUFFER(ah);
395
Sujithb5aec952009-08-07 09:45:15 +0530396 if (i == 0) {
Sujitha55f8582010-06-01 15:14:07 +0530397 if (!ath9k_hw_ar9287_get_eeprom(ah,
398 EEP_OL_PWRCTRL)) {
399
400 regval = SM(pdGainOverlap_t2,
401 AR_PHY_TPCRG5_PD_GAIN_OVERLAP)
402 | SM(gainBoundaries[0],
403 AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_1)
404 | SM(gainBoundaries[1],
405 AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_2)
406 | SM(gainBoundaries[2],
407 AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_3)
408 | SM(gainBoundaries[3],
409 AR_PHY_TPCRG5_PD_GAIN_BOUNDARY_4);
410
411 REG_WRITE(ah,
412 AR_PHY_TPCRG5 + regChainOffset,
413 regval);
Sujithb5aec952009-08-07 09:45:15 +0530414 }
415 }
416
417 if ((int32_t)AR9287_PWR_TABLE_OFFSET_DB !=
Sujitha55f8582010-06-01 15:14:07 +0530418 pEepData->baseEepHeader.pwrTableOffset) {
419 diff = (u16)(pEepData->baseEepHeader.pwrTableOffset -
420 (int32_t)AR9287_PWR_TABLE_OFFSET_DB);
Sujithb5aec952009-08-07 09:45:15 +0530421 diff *= 2;
422
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100423 for (j = 0; j < ((u16)AR5416_NUM_PDADC_VALUES-diff); j++)
Sujithb5aec952009-08-07 09:45:15 +0530424 pdadcValues[j] = pdadcValues[j+diff];
425
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100426 for (j = (u16)(AR5416_NUM_PDADC_VALUES-diff);
427 j < AR5416_NUM_PDADC_VALUES; j++)
Sujithb5aec952009-08-07 09:45:15 +0530428 pdadcValues[j] =
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100429 pdadcValues[AR5416_NUM_PDADC_VALUES-diff];
Sujithb5aec952009-08-07 09:45:15 +0530430 }
431
Sujith16c94ac2010-06-01 15:14:04 +0530432 if (!ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) {
Sujitha55f8582010-06-01 15:14:07 +0530433 regOffset = AR_PHY_BASE +
434 (672 << 2) + regChainOffset;
435
Sujithb5aec952009-08-07 09:45:15 +0530436 for (j = 0; j < 32; j++) {
Sujitha55f8582010-06-01 15:14:07 +0530437 reg32 = ((pdadcValues[4*j + 0] & 0xFF) << 0)
438 | ((pdadcValues[4*j + 1] & 0xFF) << 8)
439 | ((pdadcValues[4*j + 2] & 0xFF) << 16)
440 | ((pdadcValues[4*j + 3] & 0xFF) << 24);
441
Sujithb5aec952009-08-07 09:45:15 +0530442 REG_WRITE(ah, regOffset, reg32);
Sujithb5aec952009-08-07 09:45:15 +0530443 regOffset += 4;
444 }
445 }
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530446 REGWRITE_BUFFER_FLUSH(ah);
Sujithb5aec952009-08-07 09:45:15 +0530447 }
448 }
449
450 *pTxPowerIndexOffset = 0;
451}
452
Sujith16c94ac2010-06-01 15:14:04 +0530453static void ath9k_hw_set_ar9287_power_per_rate_table(struct ath_hw *ah,
454 struct ath9k_channel *chan,
455 int16_t *ratesArray,
456 u16 cfgCtl,
457 u16 AntennaReduction,
458 u16 twiceMaxRegulatoryPower,
459 u16 powerLimit)
Sujithb5aec952009-08-07 09:45:15 +0530460{
Sujitha55f8582010-06-01 15:14:07 +0530461#define CMP_CTL \
462 (((cfgCtl & ~CTL_MODE_M) | (pCtlMode[ctlMode] & CTL_MODE_M)) == \
463 pEepData->ctlIndex[i])
464
465#define CMP_NO_CTL \
466 (((cfgCtl & ~CTL_MODE_M) | (pCtlMode[ctlMode] & CTL_MODE_M)) == \
467 ((pEepData->ctlIndex[i] & CTL_MODE_M) | SD_NO_CTL))
468
Sujithb5aec952009-08-07 09:45:15 +0530469#define REDUCE_SCALED_POWER_BY_TWO_CHAIN 6
470#define REDUCE_SCALED_POWER_BY_THREE_CHAIN 10
Sujith16c94ac2010-06-01 15:14:04 +0530471
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700472 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100473 u16 twiceMaxEdgePower = MAX_RATE_POWER;
Sujithb5aec952009-08-07 09:45:15 +0530474 static const u16 tpScaleReductionTable[5] =
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100475 { 0, 3, 6, 9, MAX_RATE_POWER };
Sujithb5aec952009-08-07 09:45:15 +0530476 int i;
Sujith16c94ac2010-06-01 15:14:04 +0530477 int16_t twiceLargestAntenna;
Sujithb5aec952009-08-07 09:45:15 +0530478 struct cal_ctl_data_ar9287 *rep;
479 struct cal_target_power_leg targetPowerOfdm = {0, {0, 0, 0, 0} },
480 targetPowerCck = {0, {0, 0, 0, 0} };
481 struct cal_target_power_leg targetPowerOfdmExt = {0, {0, 0, 0, 0} },
482 targetPowerCckExt = {0, {0, 0, 0, 0} };
Sujith16c94ac2010-06-01 15:14:04 +0530483 struct cal_target_power_ht targetPowerHt20,
Sujithb5aec952009-08-07 09:45:15 +0530484 targetPowerHt40 = {0, {0, 0, 0, 0} };
485 u16 scaledPower = 0, minCtlPower, maxRegAllowedPower;
Joe Perches07b2fa52010-11-20 18:38:53 -0800486 static const u16 ctlModesFor11g[] = {
487 CTL_11B, CTL_11G, CTL_2GHT20,
488 CTL_11B_EXT, CTL_11G_EXT, CTL_2GHT40
489 };
490 u16 numCtlModes = 0;
491 const u16 *pCtlMode = NULL;
492 u16 ctlMode, freq;
Sujithb5aec952009-08-07 09:45:15 +0530493 struct chan_centers centers;
494 int tx_chainmask;
495 u16 twiceMinEdgePower;
496 struct ar9287_eeprom *pEepData = &ah->eeprom.map9287;
497 tx_chainmask = ah->txchainmask;
498
499 ath9k_hw_get_channel_centers(ah, chan, &centers);
500
Sujitha55f8582010-06-01 15:14:07 +0530501 /* Compute TxPower reduction due to Antenna Gain */
Sujithb5aec952009-08-07 09:45:15 +0530502 twiceLargestAntenna = max(pEepData->modalHeader.antennaGainCh[0],
503 pEepData->modalHeader.antennaGainCh[1]);
Sujith16c94ac2010-06-01 15:14:04 +0530504 twiceLargestAntenna = (int16_t)min((AntennaReduction) -
505 twiceLargestAntenna, 0);
Sujithb5aec952009-08-07 09:45:15 +0530506
Sujitha55f8582010-06-01 15:14:07 +0530507 /*
508 * scaledPower is the minimum of the user input power level
509 * and the regulatory allowed power level.
510 */
Sujithb5aec952009-08-07 09:45:15 +0530511 maxRegAllowedPower = twiceMaxRegulatoryPower + twiceLargestAntenna;
Sujitha55f8582010-06-01 15:14:07 +0530512
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700513 if (regulatory->tp_scale != ATH9K_TP_SCALE_MAX)
Sujithb5aec952009-08-07 09:45:15 +0530514 maxRegAllowedPower -=
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700515 (tpScaleReductionTable[(regulatory->tp_scale)] * 2);
Sujithb5aec952009-08-07 09:45:15 +0530516
517 scaledPower = min(powerLimit, maxRegAllowedPower);
518
Sujitha55f8582010-06-01 15:14:07 +0530519 /*
520 * Reduce scaled Power by number of chains active
521 * to get the per chain tx power level.
522 */
Sujithb5aec952009-08-07 09:45:15 +0530523 switch (ar5416_get_ntxchains(tx_chainmask)) {
524 case 1:
525 break;
526 case 2:
527 scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN;
528 break;
529 case 3:
530 scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN;
531 break;
532 }
533 scaledPower = max((u16)0, scaledPower);
534
Sujitha55f8582010-06-01 15:14:07 +0530535 /*
536 * Get TX power from EEPROM.
537 */
Sujithb5aec952009-08-07 09:45:15 +0530538 if (IS_CHAN_2GHZ(chan)) {
Sujitha55f8582010-06-01 15:14:07 +0530539 /* CTL_11B, CTL_11G, CTL_2GHT20 */
Sujithb5aec952009-08-07 09:45:15 +0530540 numCtlModes =
541 ARRAY_SIZE(ctlModesFor11g) - SUB_NUM_CTL_MODES_AT_2G_40;
Sujith16c94ac2010-06-01 15:14:04 +0530542
Sujithb5aec952009-08-07 09:45:15 +0530543 pCtlMode = ctlModesFor11g;
544
545 ath9k_hw_get_legacy_target_powers(ah, chan,
546 pEepData->calTargetPowerCck,
547 AR9287_NUM_2G_CCK_TARGET_POWERS,
548 &targetPowerCck, 4, false);
549 ath9k_hw_get_legacy_target_powers(ah, chan,
550 pEepData->calTargetPower2G,
551 AR9287_NUM_2G_20_TARGET_POWERS,
552 &targetPowerOfdm, 4, false);
553 ath9k_hw_get_target_powers(ah, chan,
554 pEepData->calTargetPower2GHT20,
555 AR9287_NUM_2G_20_TARGET_POWERS,
556 &targetPowerHt20, 8, false);
557
558 if (IS_CHAN_HT40(chan)) {
Sujitha55f8582010-06-01 15:14:07 +0530559 /* All 2G CTLs */
Sujithb5aec952009-08-07 09:45:15 +0530560 numCtlModes = ARRAY_SIZE(ctlModesFor11g);
561 ath9k_hw_get_target_powers(ah, chan,
562 pEepData->calTargetPower2GHT40,
563 AR9287_NUM_2G_40_TARGET_POWERS,
564 &targetPowerHt40, 8, true);
565 ath9k_hw_get_legacy_target_powers(ah, chan,
566 pEepData->calTargetPowerCck,
567 AR9287_NUM_2G_CCK_TARGET_POWERS,
568 &targetPowerCckExt, 4, true);
569 ath9k_hw_get_legacy_target_powers(ah, chan,
570 pEepData->calTargetPower2G,
571 AR9287_NUM_2G_20_TARGET_POWERS,
572 &targetPowerOfdmExt, 4, true);
573 }
574 }
575
576 for (ctlMode = 0; ctlMode < numCtlModes; ctlMode++) {
Sujitha55f8582010-06-01 15:14:07 +0530577 bool isHt40CtlMode =
578 (pCtlMode[ctlMode] == CTL_2GHT40) ? true : false;
579
Sujithb5aec952009-08-07 09:45:15 +0530580 if (isHt40CtlMode)
581 freq = centers.synth_center;
582 else if (pCtlMode[ctlMode] & EXT_ADDITIVE)
583 freq = centers.ext_center;
584 else
585 freq = centers.ctl_center;
586
Sujitha55f8582010-06-01 15:14:07 +0530587 /* Walk through the CTL indices stored in EEPROM */
Sujithb5aec952009-08-07 09:45:15 +0530588 for (i = 0; (i < AR9287_NUM_CTLS) && pEepData->ctlIndex[i]; i++) {
Sujitha55f8582010-06-01 15:14:07 +0530589 struct cal_ctl_edges *pRdEdgesPower;
Sujithb5aec952009-08-07 09:45:15 +0530590
Sujitha55f8582010-06-01 15:14:07 +0530591 /*
592 * Compare test group from regulatory channel list
593 * with test mode from pCtlMode list
594 */
595 if (CMP_CTL || CMP_NO_CTL) {
Sujithb5aec952009-08-07 09:45:15 +0530596 rep = &(pEepData->ctlData[i]);
Sujitha55f8582010-06-01 15:14:07 +0530597 pRdEdgesPower =
598 rep->ctlEdges[ar5416_get_ntxchains(tx_chainmask) - 1];
Sujithb5aec952009-08-07 09:45:15 +0530599
Sujitha55f8582010-06-01 15:14:07 +0530600 twiceMinEdgePower = ath9k_hw_get_max_edge_power(freq,
601 pRdEdgesPower,
602 IS_CHAN_2GHZ(chan),
603 AR5416_NUM_BAND_EDGES);
604
605 if ((cfgCtl & ~CTL_MODE_M) == SD_NO_CTL) {
606 twiceMaxEdgePower = min(twiceMaxEdgePower,
607 twiceMinEdgePower);
608 } else {
Sujithb5aec952009-08-07 09:45:15 +0530609 twiceMaxEdgePower = twiceMinEdgePower;
610 break;
611 }
612 }
613 }
614
615 minCtlPower = (u8)min(twiceMaxEdgePower, scaledPower);
616
Sujitha55f8582010-06-01 15:14:07 +0530617 /* Apply ctl mode to correct target power set */
Sujithb5aec952009-08-07 09:45:15 +0530618 switch (pCtlMode[ctlMode]) {
619 case CTL_11B:
Sujitha55f8582010-06-01 15:14:07 +0530620 for (i = 0; i < ARRAY_SIZE(targetPowerCck.tPow2x); i++) {
621 targetPowerCck.tPow2x[i] =
622 (u8)min((u16)targetPowerCck.tPow2x[i],
623 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530624 }
625 break;
626 case CTL_11A:
627 case CTL_11G:
Sujitha55f8582010-06-01 15:14:07 +0530628 for (i = 0; i < ARRAY_SIZE(targetPowerOfdm.tPow2x); i++) {
629 targetPowerOfdm.tPow2x[i] =
630 (u8)min((u16)targetPowerOfdm.tPow2x[i],
631 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530632 }
633 break;
634 case CTL_5GHT20:
635 case CTL_2GHT20:
Sujitha55f8582010-06-01 15:14:07 +0530636 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++) {
637 targetPowerHt20.tPow2x[i] =
638 (u8)min((u16)targetPowerHt20.tPow2x[i],
639 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530640 }
641 break;
642 case CTL_11B_EXT:
Sujitha55f8582010-06-01 15:14:07 +0530643 targetPowerCckExt.tPow2x[0] =
644 (u8)min((u16)targetPowerCckExt.tPow2x[0],
645 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530646 break;
647 case CTL_11A_EXT:
648 case CTL_11G_EXT:
Sujitha55f8582010-06-01 15:14:07 +0530649 targetPowerOfdmExt.tPow2x[0] =
650 (u8)min((u16)targetPowerOfdmExt.tPow2x[0],
651 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530652 break;
653 case CTL_5GHT40:
654 case CTL_2GHT40:
Sujitha55f8582010-06-01 15:14:07 +0530655 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
656 targetPowerHt40.tPow2x[i] =
657 (u8)min((u16)targetPowerHt40.tPow2x[i],
658 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530659 }
660 break;
661 default:
662 break;
663 }
664 }
665
Sujitha55f8582010-06-01 15:14:07 +0530666 /* Now set the rates array */
667
Sujithb5aec952009-08-07 09:45:15 +0530668 ratesArray[rate6mb] =
669 ratesArray[rate9mb] =
670 ratesArray[rate12mb] =
671 ratesArray[rate18mb] =
Sujitha55f8582010-06-01 15:14:07 +0530672 ratesArray[rate24mb] = targetPowerOfdm.tPow2x[0];
Sujithb5aec952009-08-07 09:45:15 +0530673
674 ratesArray[rate36mb] = targetPowerOfdm.tPow2x[1];
675 ratesArray[rate48mb] = targetPowerOfdm.tPow2x[2];
676 ratesArray[rate54mb] = targetPowerOfdm.tPow2x[3];
677 ratesArray[rateXr] = targetPowerOfdm.tPow2x[0];
678
679 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++)
680 ratesArray[rateHt20_0 + i] = targetPowerHt20.tPow2x[i];
681
682 if (IS_CHAN_2GHZ(chan)) {
683 ratesArray[rate1l] = targetPowerCck.tPow2x[0];
Sujitha55f8582010-06-01 15:14:07 +0530684 ratesArray[rate2s] =
685 ratesArray[rate2l] = targetPowerCck.tPow2x[1];
686 ratesArray[rate5_5s] =
687 ratesArray[rate5_5l] = targetPowerCck.tPow2x[2];
688 ratesArray[rate11s] =
689 ratesArray[rate11l] = targetPowerCck.tPow2x[3];
Sujithb5aec952009-08-07 09:45:15 +0530690 }
691 if (IS_CHAN_HT40(chan)) {
692 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++)
693 ratesArray[rateHt40_0 + i] = targetPowerHt40.tPow2x[i];
694
695 ratesArray[rateDupOfdm] = targetPowerHt40.tPow2x[0];
696 ratesArray[rateDupCck] = targetPowerHt40.tPow2x[0];
697 ratesArray[rateExtOfdm] = targetPowerOfdmExt.tPow2x[0];
Sujitha55f8582010-06-01 15:14:07 +0530698
Sujithb5aec952009-08-07 09:45:15 +0530699 if (IS_CHAN_2GHZ(chan))
700 ratesArray[rateExtCck] = targetPowerCckExt.tPow2x[0];
701 }
702
Sujitha55f8582010-06-01 15:14:07 +0530703#undef CMP_CTL
704#undef CMP_NO_CTL
Sujithb5aec952009-08-07 09:45:15 +0530705#undef REDUCE_SCALED_POWER_BY_TWO_CHAIN
706#undef REDUCE_SCALED_POWER_BY_THREE_CHAIN
707}
708
Sujith16c94ac2010-06-01 15:14:04 +0530709static void ath9k_hw_ar9287_set_txpower(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530710 struct ath9k_channel *chan, u16 cfgCtl,
711 u8 twiceAntennaReduction,
712 u8 twiceMaxRegulatoryPower,
Felix Fietkaude40f312010-10-20 03:08:53 +0200713 u8 powerLimit, bool test)
Sujithb5aec952009-08-07 09:45:15 +0530714{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700715 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithb5aec952009-08-07 09:45:15 +0530716 struct ar9287_eeprom *pEepData = &ah->eeprom.map9287;
717 struct modal_eep_ar9287_header *pModal = &pEepData->modalHeader;
718 int16_t ratesArray[Ar5416RateSize];
Sujith16c94ac2010-06-01 15:14:04 +0530719 int16_t txPowerIndexOffset = 0;
Sujithb5aec952009-08-07 09:45:15 +0530720 u8 ht40PowerIncForPdadc = 2;
721 int i;
722
723 memset(ratesArray, 0, sizeof(ratesArray));
724
725 if ((pEepData->baseEepHeader.version & AR9287_EEP_VER_MINOR_MASK) >=
726 AR9287_EEP_MINOR_VER_2)
727 ht40PowerIncForPdadc = pModal->ht40PowerIncForPdadc;
728
Sujith16c94ac2010-06-01 15:14:04 +0530729 ath9k_hw_set_ar9287_power_per_rate_table(ah, chan,
Sujithb5aec952009-08-07 09:45:15 +0530730 &ratesArray[0], cfgCtl,
731 twiceAntennaReduction,
732 twiceMaxRegulatoryPower,
733 powerLimit);
734
Sujith16c94ac2010-06-01 15:14:04 +0530735 ath9k_hw_set_ar9287_power_cal_table(ah, chan, &txPowerIndexOffset);
Sujithb5aec952009-08-07 09:45:15 +0530736
Felix Fietkaude40f312010-10-20 03:08:53 +0200737 regulatory->max_power_level = 0;
Sujithb5aec952009-08-07 09:45:15 +0530738 for (i = 0; i < ARRAY_SIZE(ratesArray); i++) {
739 ratesArray[i] = (int16_t)(txPowerIndexOffset + ratesArray[i]);
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100740 if (ratesArray[i] > MAX_RATE_POWER)
741 ratesArray[i] = MAX_RATE_POWER;
Felix Fietkaude40f312010-10-20 03:08:53 +0200742
743 if (ratesArray[i] > regulatory->max_power_level)
744 regulatory->max_power_level = ratesArray[i];
Sujithb5aec952009-08-07 09:45:15 +0530745 }
746
Felix Fietkaude40f312010-10-20 03:08:53 +0200747 if (test)
748 return;
749
750 if (IS_CHAN_2GHZ(chan))
751 i = rate1l;
752 else
753 i = rate6mb;
754
755 regulatory->max_power_level = ratesArray[i];
756
Felix Fietkau7a370812010-09-22 12:34:52 +0200757 if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujithb5aec952009-08-07 09:45:15 +0530758 for (i = 0; i < Ar5416RateSize; i++)
759 ratesArray[i] -= AR9287_PWR_TABLE_OFFSET_DB * 2;
760 }
761
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530762 ENABLE_REGWRITE_BUFFER(ah);
763
Sujitha55f8582010-06-01 15:14:07 +0530764 /* OFDM power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530765 REG_WRITE(ah, AR_PHY_POWER_TX_RATE1,
766 ATH9K_POW_SM(ratesArray[rate18mb], 24)
767 | ATH9K_POW_SM(ratesArray[rate12mb], 16)
768 | ATH9K_POW_SM(ratesArray[rate9mb], 8)
769 | ATH9K_POW_SM(ratesArray[rate6mb], 0));
770
771 REG_WRITE(ah, AR_PHY_POWER_TX_RATE2,
772 ATH9K_POW_SM(ratesArray[rate54mb], 24)
773 | ATH9K_POW_SM(ratesArray[rate48mb], 16)
774 | ATH9K_POW_SM(ratesArray[rate36mb], 8)
775 | ATH9K_POW_SM(ratesArray[rate24mb], 0));
776
Sujitha55f8582010-06-01 15:14:07 +0530777 /* CCK power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530778 if (IS_CHAN_2GHZ(chan)) {
779 REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
780 ATH9K_POW_SM(ratesArray[rate2s], 24)
781 | ATH9K_POW_SM(ratesArray[rate2l], 16)
782 | ATH9K_POW_SM(ratesArray[rateXr], 8)
783 | ATH9K_POW_SM(ratesArray[rate1l], 0));
784 REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
785 ATH9K_POW_SM(ratesArray[rate11s], 24)
786 | ATH9K_POW_SM(ratesArray[rate11l], 16)
787 | ATH9K_POW_SM(ratesArray[rate5_5s], 8)
788 | ATH9K_POW_SM(ratesArray[rate5_5l], 0));
789 }
790
Sujitha55f8582010-06-01 15:14:07 +0530791 /* HT20 power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530792 REG_WRITE(ah, AR_PHY_POWER_TX_RATE5,
793 ATH9K_POW_SM(ratesArray[rateHt20_3], 24)
794 | ATH9K_POW_SM(ratesArray[rateHt20_2], 16)
795 | ATH9K_POW_SM(ratesArray[rateHt20_1], 8)
796 | ATH9K_POW_SM(ratesArray[rateHt20_0], 0));
797
798 REG_WRITE(ah, AR_PHY_POWER_TX_RATE6,
799 ATH9K_POW_SM(ratesArray[rateHt20_7], 24)
800 | ATH9K_POW_SM(ratesArray[rateHt20_6], 16)
801 | ATH9K_POW_SM(ratesArray[rateHt20_5], 8)
802 | ATH9K_POW_SM(ratesArray[rateHt20_4], 0));
803
Sujitha55f8582010-06-01 15:14:07 +0530804 /* HT40 power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530805 if (IS_CHAN_HT40(chan)) {
Sujith16c94ac2010-06-01 15:14:04 +0530806 if (ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) {
Sujithb5aec952009-08-07 09:45:15 +0530807 REG_WRITE(ah, AR_PHY_POWER_TX_RATE7,
808 ATH9K_POW_SM(ratesArray[rateHt40_3], 24)
809 | ATH9K_POW_SM(ratesArray[rateHt40_2], 16)
810 | ATH9K_POW_SM(ratesArray[rateHt40_1], 8)
811 | ATH9K_POW_SM(ratesArray[rateHt40_0], 0));
812
813 REG_WRITE(ah, AR_PHY_POWER_TX_RATE8,
814 ATH9K_POW_SM(ratesArray[rateHt40_7], 24)
815 | ATH9K_POW_SM(ratesArray[rateHt40_6], 16)
816 | ATH9K_POW_SM(ratesArray[rateHt40_5], 8)
817 | ATH9K_POW_SM(ratesArray[rateHt40_4], 0));
818 } else {
819 REG_WRITE(ah, AR_PHY_POWER_TX_RATE7,
820 ATH9K_POW_SM(ratesArray[rateHt40_3] +
821 ht40PowerIncForPdadc, 24)
822 | ATH9K_POW_SM(ratesArray[rateHt40_2] +
823 ht40PowerIncForPdadc, 16)
824 | ATH9K_POW_SM(ratesArray[rateHt40_1] +
825 ht40PowerIncForPdadc, 8)
826 | ATH9K_POW_SM(ratesArray[rateHt40_0] +
827 ht40PowerIncForPdadc, 0));
828
829 REG_WRITE(ah, AR_PHY_POWER_TX_RATE8,
830 ATH9K_POW_SM(ratesArray[rateHt40_7] +
831 ht40PowerIncForPdadc, 24)
832 | ATH9K_POW_SM(ratesArray[rateHt40_6] +
833 ht40PowerIncForPdadc, 16)
834 | ATH9K_POW_SM(ratesArray[rateHt40_5] +
835 ht40PowerIncForPdadc, 8)
836 | ATH9K_POW_SM(ratesArray[rateHt40_4] +
837 ht40PowerIncForPdadc, 0));
838 }
839
Sujitha55f8582010-06-01 15:14:07 +0530840 /* Dup/Ext power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530841 REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
842 ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
843 | ATH9K_POW_SM(ratesArray[rateExtCck], 16)
844 | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
845 | ATH9K_POW_SM(ratesArray[rateDupCck], 0));
846 }
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530847 REGWRITE_BUFFER_FLUSH(ah);
Sujithb5aec952009-08-07 09:45:15 +0530848}
849
Sujith16c94ac2010-06-01 15:14:04 +0530850static void ath9k_hw_ar9287_set_addac(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530851 struct ath9k_channel *chan)
852{
853}
854
Sujith16c94ac2010-06-01 15:14:04 +0530855static void ath9k_hw_ar9287_set_board_values(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530856 struct ath9k_channel *chan)
857{
858 struct ar9287_eeprom *eep = &ah->eeprom.map9287;
859 struct modal_eep_ar9287_header *pModal = &eep->modalHeader;
Sujith79d7f4b2010-06-01 15:14:06 +0530860 u32 regChainOffset, regval;
Sujithb5aec952009-08-07 09:45:15 +0530861 u8 txRxAttenLocal;
Rajkumar Manoharan2d05a0c2011-04-11 20:22:28 +0530862 int i;
Sujithb5aec952009-08-07 09:45:15 +0530863
864 pModal = &eep->modalHeader;
865
Felix Fietkaudf3c8b22010-12-12 00:51:11 +0100866 REG_WRITE(ah, AR_PHY_SWITCH_COM, pModal->antCtrlCommon);
Sujithb5aec952009-08-07 09:45:15 +0530867
868 for (i = 0; i < AR9287_MAX_CHAINS; i++) {
869 regChainOffset = i * 0x1000;
870
871 REG_WRITE(ah, AR_PHY_SWITCH_CHAIN_0 + regChainOffset,
872 pModal->antCtrlChain[i]);
873
874 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset,
875 (REG_READ(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset)
876 & ~(AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF |
877 AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF)) |
878 SM(pModal->iqCalICh[i],
879 AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF) |
880 SM(pModal->iqCalQCh[i],
881 AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF));
882
883 txRxAttenLocal = pModal->txRxAttenCh[i];
884
885 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
886 AR_PHY_GAIN_2GHZ_XATTEN1_MARGIN,
887 pModal->bswMargin[i]);
888 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
889 AR_PHY_GAIN_2GHZ_XATTEN1_DB,
890 pModal->bswAtten[i]);
891 REG_RMW_FIELD(ah, AR_PHY_RXGAIN + regChainOffset,
892 AR9280_PHY_RXGAIN_TXRX_ATTEN,
893 txRxAttenLocal);
894 REG_RMW_FIELD(ah, AR_PHY_RXGAIN + regChainOffset,
895 AR9280_PHY_RXGAIN_TXRX_MARGIN,
896 pModal->rxTxMarginCh[i]);
897 }
898
899
900 if (IS_CHAN_HT40(chan))
901 REG_RMW_FIELD(ah, AR_PHY_SETTLING,
902 AR_PHY_SETTLING_SWITCH, pModal->swSettleHt40);
903 else
904 REG_RMW_FIELD(ah, AR_PHY_SETTLING,
905 AR_PHY_SETTLING_SWITCH, pModal->switchSettling);
906
907 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ,
908 AR_PHY_DESIRED_SZ_ADC, pModal->adcDesiredSize);
909
910 REG_WRITE(ah, AR_PHY_RF_CTL4,
911 SM(pModal->txEndToXpaOff, AR_PHY_RF_CTL4_TX_END_XPAA_OFF)
912 | SM(pModal->txEndToXpaOff, AR_PHY_RF_CTL4_TX_END_XPAB_OFF)
913 | SM(pModal->txFrameToXpaOn, AR_PHY_RF_CTL4_FRAME_XPAA_ON)
914 | SM(pModal->txFrameToXpaOn, AR_PHY_RF_CTL4_FRAME_XPAB_ON));
915
916 REG_RMW_FIELD(ah, AR_PHY_RF_CTL3,
917 AR_PHY_TX_END_TO_A2_RX_ON, pModal->txEndToRxOn);
918
919 REG_RMW_FIELD(ah, AR_PHY_CCA,
920 AR9280_PHY_CCA_THRESH62, pModal->thresh62);
921 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA0,
922 AR_PHY_EXT_CCA0_THRESH62, pModal->thresh62);
923
Sujith79d7f4b2010-06-01 15:14:06 +0530924 regval = REG_READ(ah, AR9287_AN_RF2G3_CH0);
925 regval &= ~(AR9287_AN_RF2G3_DB1 |
926 AR9287_AN_RF2G3_DB2 |
927 AR9287_AN_RF2G3_OB_CCK |
928 AR9287_AN_RF2G3_OB_PSK |
929 AR9287_AN_RF2G3_OB_QAM |
930 AR9287_AN_RF2G3_OB_PAL_OFF);
931 regval |= (SM(pModal->db1, AR9287_AN_RF2G3_DB1) |
932 SM(pModal->db2, AR9287_AN_RF2G3_DB2) |
933 SM(pModal->ob_cck, AR9287_AN_RF2G3_OB_CCK) |
934 SM(pModal->ob_psk, AR9287_AN_RF2G3_OB_PSK) |
935 SM(pModal->ob_qam, AR9287_AN_RF2G3_OB_QAM) |
936 SM(pModal->ob_pal_off, AR9287_AN_RF2G3_OB_PAL_OFF));
Sujithb5aec952009-08-07 09:45:15 +0530937
Sujith79d7f4b2010-06-01 15:14:06 +0530938 ath9k_hw_analog_shift_regwrite(ah, AR9287_AN_RF2G3_CH0, regval);
939
940 regval = REG_READ(ah, AR9287_AN_RF2G3_CH1);
941 regval &= ~(AR9287_AN_RF2G3_DB1 |
942 AR9287_AN_RF2G3_DB2 |
943 AR9287_AN_RF2G3_OB_CCK |
944 AR9287_AN_RF2G3_OB_PSK |
945 AR9287_AN_RF2G3_OB_QAM |
946 AR9287_AN_RF2G3_OB_PAL_OFF);
947 regval |= (SM(pModal->db1, AR9287_AN_RF2G3_DB1) |
948 SM(pModal->db2, AR9287_AN_RF2G3_DB2) |
949 SM(pModal->ob_cck, AR9287_AN_RF2G3_OB_CCK) |
950 SM(pModal->ob_psk, AR9287_AN_RF2G3_OB_PSK) |
951 SM(pModal->ob_qam, AR9287_AN_RF2G3_OB_QAM) |
952 SM(pModal->ob_pal_off, AR9287_AN_RF2G3_OB_PAL_OFF));
953
954 ath9k_hw_analog_shift_regwrite(ah, AR9287_AN_RF2G3_CH1, regval);
Sujithb5aec952009-08-07 09:45:15 +0530955
956 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2,
957 AR_PHY_TX_END_DATA_START, pModal->txFrameToDataStart);
958 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2,
959 AR_PHY_TX_END_PA_ON, pModal->txFrameToPaOn);
960
961 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TOP2,
962 AR9287_AN_TOP2_XPABIAS_LVL,
963 AR9287_AN_TOP2_XPABIAS_LVL_S,
964 pModal->xpaBiasLvl);
965}
966
Sujith16c94ac2010-06-01 15:14:04 +0530967static u16 ath9k_hw_ar9287_get_spur_channel(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530968 u16 i, bool is2GHz)
969{
970#define EEP_MAP9287_SPURCHAN \
971 (ah->eeprom.map9287.modalHeader.spurChans[i].spurChan)
Sujith16c94ac2010-06-01 15:14:04 +0530972
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700973 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +0530974 u16 spur_val = AR_NO_SPUR;
975
Joe Perches226afe62010-12-02 19:12:37 -0800976 ath_dbg(common, ATH_DBG_ANI,
977 "Getting spur idx:%d is2Ghz:%d val:%x\n",
978 i, is2GHz, ah->config.spurchans[i][is2GHz]);
Sujithb5aec952009-08-07 09:45:15 +0530979
980 switch (ah->config.spurmode) {
981 case SPUR_DISABLE:
982 break;
983 case SPUR_ENABLE_IOCTL:
984 spur_val = ah->config.spurchans[i][is2GHz];
Joe Perches226afe62010-12-02 19:12:37 -0800985 ath_dbg(common, ATH_DBG_ANI,
986 "Getting spur val from new loc. %d\n", spur_val);
Sujithb5aec952009-08-07 09:45:15 +0530987 break;
988 case SPUR_ENABLE_EEPROM:
989 spur_val = EEP_MAP9287_SPURCHAN;
990 break;
991 }
992
993 return spur_val;
994
995#undef EEP_MAP9287_SPURCHAN
996}
997
Luis R. Rodriguez0b8f6f2b12010-04-15 17:39:12 -0400998const struct eeprom_ops eep_ar9287_ops = {
Sujith16c94ac2010-06-01 15:14:04 +0530999 .check_eeprom = ath9k_hw_ar9287_check_eeprom,
1000 .get_eeprom = ath9k_hw_ar9287_get_eeprom,
1001 .fill_eeprom = ath9k_hw_ar9287_fill_eeprom,
1002 .get_eeprom_ver = ath9k_hw_ar9287_get_eeprom_ver,
1003 .get_eeprom_rev = ath9k_hw_ar9287_get_eeprom_rev,
Sujith16c94ac2010-06-01 15:14:04 +05301004 .set_board_values = ath9k_hw_ar9287_set_board_values,
1005 .set_addac = ath9k_hw_ar9287_set_addac,
1006 .set_txpower = ath9k_hw_ar9287_set_txpower,
1007 .get_spur_channel = ath9k_hw_ar9287_get_spur_channel
Sujithb5aec952009-08-07 09:45:15 +05301008};