blob: 343fc9f946dbc7dcb6b613cad3cff3b2bb12e84e [file] [log] [blame]
Sujithb5aec952009-08-07 09:45:15 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Sujithb5aec952009-08-07 09:45:15 +05303 *
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:
Daniel Halperin21fdc872011-05-31 11:59:30 -0700527 if (scaledPower > REDUCE_SCALED_POWER_BY_TWO_CHAIN)
528 scaledPower -= REDUCE_SCALED_POWER_BY_TWO_CHAIN;
529 else
530 scaledPower = 0;
Sujithb5aec952009-08-07 09:45:15 +0530531 break;
532 case 3:
Daniel Halperin21fdc872011-05-31 11:59:30 -0700533 if (scaledPower > REDUCE_SCALED_POWER_BY_THREE_CHAIN)
534 scaledPower -= REDUCE_SCALED_POWER_BY_THREE_CHAIN;
535 else
536 scaledPower = 0;
Sujithb5aec952009-08-07 09:45:15 +0530537 break;
538 }
539 scaledPower = max((u16)0, scaledPower);
540
Sujitha55f8582010-06-01 15:14:07 +0530541 /*
542 * Get TX power from EEPROM.
543 */
Sujithb5aec952009-08-07 09:45:15 +0530544 if (IS_CHAN_2GHZ(chan)) {
Sujitha55f8582010-06-01 15:14:07 +0530545 /* CTL_11B, CTL_11G, CTL_2GHT20 */
Sujithb5aec952009-08-07 09:45:15 +0530546 numCtlModes =
547 ARRAY_SIZE(ctlModesFor11g) - SUB_NUM_CTL_MODES_AT_2G_40;
Sujith16c94ac2010-06-01 15:14:04 +0530548
Sujithb5aec952009-08-07 09:45:15 +0530549 pCtlMode = ctlModesFor11g;
550
551 ath9k_hw_get_legacy_target_powers(ah, chan,
552 pEepData->calTargetPowerCck,
553 AR9287_NUM_2G_CCK_TARGET_POWERS,
554 &targetPowerCck, 4, false);
555 ath9k_hw_get_legacy_target_powers(ah, chan,
556 pEepData->calTargetPower2G,
557 AR9287_NUM_2G_20_TARGET_POWERS,
558 &targetPowerOfdm, 4, false);
559 ath9k_hw_get_target_powers(ah, chan,
560 pEepData->calTargetPower2GHT20,
561 AR9287_NUM_2G_20_TARGET_POWERS,
562 &targetPowerHt20, 8, false);
563
564 if (IS_CHAN_HT40(chan)) {
Sujitha55f8582010-06-01 15:14:07 +0530565 /* All 2G CTLs */
Sujithb5aec952009-08-07 09:45:15 +0530566 numCtlModes = ARRAY_SIZE(ctlModesFor11g);
567 ath9k_hw_get_target_powers(ah, chan,
568 pEepData->calTargetPower2GHT40,
569 AR9287_NUM_2G_40_TARGET_POWERS,
570 &targetPowerHt40, 8, true);
571 ath9k_hw_get_legacy_target_powers(ah, chan,
572 pEepData->calTargetPowerCck,
573 AR9287_NUM_2G_CCK_TARGET_POWERS,
574 &targetPowerCckExt, 4, true);
575 ath9k_hw_get_legacy_target_powers(ah, chan,
576 pEepData->calTargetPower2G,
577 AR9287_NUM_2G_20_TARGET_POWERS,
578 &targetPowerOfdmExt, 4, true);
579 }
580 }
581
582 for (ctlMode = 0; ctlMode < numCtlModes; ctlMode++) {
Sujitha55f8582010-06-01 15:14:07 +0530583 bool isHt40CtlMode =
584 (pCtlMode[ctlMode] == CTL_2GHT40) ? true : false;
585
Sujithb5aec952009-08-07 09:45:15 +0530586 if (isHt40CtlMode)
587 freq = centers.synth_center;
588 else if (pCtlMode[ctlMode] & EXT_ADDITIVE)
589 freq = centers.ext_center;
590 else
591 freq = centers.ctl_center;
592
Sujitha55f8582010-06-01 15:14:07 +0530593 /* Walk through the CTL indices stored in EEPROM */
Sujithb5aec952009-08-07 09:45:15 +0530594 for (i = 0; (i < AR9287_NUM_CTLS) && pEepData->ctlIndex[i]; i++) {
Sujitha55f8582010-06-01 15:14:07 +0530595 struct cal_ctl_edges *pRdEdgesPower;
Sujithb5aec952009-08-07 09:45:15 +0530596
Sujitha55f8582010-06-01 15:14:07 +0530597 /*
598 * Compare test group from regulatory channel list
599 * with test mode from pCtlMode list
600 */
601 if (CMP_CTL || CMP_NO_CTL) {
Sujithb5aec952009-08-07 09:45:15 +0530602 rep = &(pEepData->ctlData[i]);
Sujitha55f8582010-06-01 15:14:07 +0530603 pRdEdgesPower =
604 rep->ctlEdges[ar5416_get_ntxchains(tx_chainmask) - 1];
Sujithb5aec952009-08-07 09:45:15 +0530605
Sujitha55f8582010-06-01 15:14:07 +0530606 twiceMinEdgePower = ath9k_hw_get_max_edge_power(freq,
607 pRdEdgesPower,
608 IS_CHAN_2GHZ(chan),
609 AR5416_NUM_BAND_EDGES);
610
611 if ((cfgCtl & ~CTL_MODE_M) == SD_NO_CTL) {
612 twiceMaxEdgePower = min(twiceMaxEdgePower,
613 twiceMinEdgePower);
614 } else {
Sujithb5aec952009-08-07 09:45:15 +0530615 twiceMaxEdgePower = twiceMinEdgePower;
616 break;
617 }
618 }
619 }
620
621 minCtlPower = (u8)min(twiceMaxEdgePower, scaledPower);
622
Sujitha55f8582010-06-01 15:14:07 +0530623 /* Apply ctl mode to correct target power set */
Sujithb5aec952009-08-07 09:45:15 +0530624 switch (pCtlMode[ctlMode]) {
625 case CTL_11B:
Sujitha55f8582010-06-01 15:14:07 +0530626 for (i = 0; i < ARRAY_SIZE(targetPowerCck.tPow2x); i++) {
627 targetPowerCck.tPow2x[i] =
628 (u8)min((u16)targetPowerCck.tPow2x[i],
629 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530630 }
631 break;
632 case CTL_11A:
633 case CTL_11G:
Sujitha55f8582010-06-01 15:14:07 +0530634 for (i = 0; i < ARRAY_SIZE(targetPowerOfdm.tPow2x); i++) {
635 targetPowerOfdm.tPow2x[i] =
636 (u8)min((u16)targetPowerOfdm.tPow2x[i],
637 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530638 }
639 break;
640 case CTL_5GHT20:
641 case CTL_2GHT20:
Sujitha55f8582010-06-01 15:14:07 +0530642 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++) {
643 targetPowerHt20.tPow2x[i] =
644 (u8)min((u16)targetPowerHt20.tPow2x[i],
645 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530646 }
647 break;
648 case CTL_11B_EXT:
Sujitha55f8582010-06-01 15:14:07 +0530649 targetPowerCckExt.tPow2x[0] =
650 (u8)min((u16)targetPowerCckExt.tPow2x[0],
651 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530652 break;
653 case CTL_11A_EXT:
654 case CTL_11G_EXT:
Sujitha55f8582010-06-01 15:14:07 +0530655 targetPowerOfdmExt.tPow2x[0] =
656 (u8)min((u16)targetPowerOfdmExt.tPow2x[0],
657 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530658 break;
659 case CTL_5GHT40:
660 case CTL_2GHT40:
Sujitha55f8582010-06-01 15:14:07 +0530661 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
662 targetPowerHt40.tPow2x[i] =
663 (u8)min((u16)targetPowerHt40.tPow2x[i],
664 minCtlPower);
Sujithb5aec952009-08-07 09:45:15 +0530665 }
666 break;
667 default:
668 break;
669 }
670 }
671
Sujitha55f8582010-06-01 15:14:07 +0530672 /* Now set the rates array */
673
Sujithb5aec952009-08-07 09:45:15 +0530674 ratesArray[rate6mb] =
675 ratesArray[rate9mb] =
676 ratesArray[rate12mb] =
677 ratesArray[rate18mb] =
Sujitha55f8582010-06-01 15:14:07 +0530678 ratesArray[rate24mb] = targetPowerOfdm.tPow2x[0];
Sujithb5aec952009-08-07 09:45:15 +0530679
680 ratesArray[rate36mb] = targetPowerOfdm.tPow2x[1];
681 ratesArray[rate48mb] = targetPowerOfdm.tPow2x[2];
682 ratesArray[rate54mb] = targetPowerOfdm.tPow2x[3];
683 ratesArray[rateXr] = targetPowerOfdm.tPow2x[0];
684
685 for (i = 0; i < ARRAY_SIZE(targetPowerHt20.tPow2x); i++)
686 ratesArray[rateHt20_0 + i] = targetPowerHt20.tPow2x[i];
687
688 if (IS_CHAN_2GHZ(chan)) {
689 ratesArray[rate1l] = targetPowerCck.tPow2x[0];
Sujitha55f8582010-06-01 15:14:07 +0530690 ratesArray[rate2s] =
691 ratesArray[rate2l] = targetPowerCck.tPow2x[1];
692 ratesArray[rate5_5s] =
693 ratesArray[rate5_5l] = targetPowerCck.tPow2x[2];
694 ratesArray[rate11s] =
695 ratesArray[rate11l] = targetPowerCck.tPow2x[3];
Sujithb5aec952009-08-07 09:45:15 +0530696 }
697 if (IS_CHAN_HT40(chan)) {
698 for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++)
699 ratesArray[rateHt40_0 + i] = targetPowerHt40.tPow2x[i];
700
701 ratesArray[rateDupOfdm] = targetPowerHt40.tPow2x[0];
702 ratesArray[rateDupCck] = targetPowerHt40.tPow2x[0];
703 ratesArray[rateExtOfdm] = targetPowerOfdmExt.tPow2x[0];
Sujitha55f8582010-06-01 15:14:07 +0530704
Sujithb5aec952009-08-07 09:45:15 +0530705 if (IS_CHAN_2GHZ(chan))
706 ratesArray[rateExtCck] = targetPowerCckExt.tPow2x[0];
707 }
708
Sujitha55f8582010-06-01 15:14:07 +0530709#undef CMP_CTL
710#undef CMP_NO_CTL
Sujithb5aec952009-08-07 09:45:15 +0530711#undef REDUCE_SCALED_POWER_BY_TWO_CHAIN
712#undef REDUCE_SCALED_POWER_BY_THREE_CHAIN
713}
714
Sujith16c94ac2010-06-01 15:14:04 +0530715static void ath9k_hw_ar9287_set_txpower(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530716 struct ath9k_channel *chan, u16 cfgCtl,
717 u8 twiceAntennaReduction,
718 u8 twiceMaxRegulatoryPower,
Felix Fietkaude40f312010-10-20 03:08:53 +0200719 u8 powerLimit, bool test)
Sujithb5aec952009-08-07 09:45:15 +0530720{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700721 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithb5aec952009-08-07 09:45:15 +0530722 struct ar9287_eeprom *pEepData = &ah->eeprom.map9287;
723 struct modal_eep_ar9287_header *pModal = &pEepData->modalHeader;
724 int16_t ratesArray[Ar5416RateSize];
Sujith16c94ac2010-06-01 15:14:04 +0530725 int16_t txPowerIndexOffset = 0;
Sujithb5aec952009-08-07 09:45:15 +0530726 u8 ht40PowerIncForPdadc = 2;
727 int i;
728
729 memset(ratesArray, 0, sizeof(ratesArray));
730
731 if ((pEepData->baseEepHeader.version & AR9287_EEP_VER_MINOR_MASK) >=
732 AR9287_EEP_MINOR_VER_2)
733 ht40PowerIncForPdadc = pModal->ht40PowerIncForPdadc;
734
Sujith16c94ac2010-06-01 15:14:04 +0530735 ath9k_hw_set_ar9287_power_per_rate_table(ah, chan,
Sujithb5aec952009-08-07 09:45:15 +0530736 &ratesArray[0], cfgCtl,
737 twiceAntennaReduction,
738 twiceMaxRegulatoryPower,
739 powerLimit);
740
Sujith16c94ac2010-06-01 15:14:04 +0530741 ath9k_hw_set_ar9287_power_cal_table(ah, chan, &txPowerIndexOffset);
Sujithb5aec952009-08-07 09:45:15 +0530742
Felix Fietkaude40f312010-10-20 03:08:53 +0200743 regulatory->max_power_level = 0;
Sujithb5aec952009-08-07 09:45:15 +0530744 for (i = 0; i < ARRAY_SIZE(ratesArray); i++) {
745 ratesArray[i] = (int16_t)(txPowerIndexOffset + ratesArray[i]);
Felix Fietkau4ddfcd72010-12-12 00:51:08 +0100746 if (ratesArray[i] > MAX_RATE_POWER)
747 ratesArray[i] = MAX_RATE_POWER;
Felix Fietkaude40f312010-10-20 03:08:53 +0200748
749 if (ratesArray[i] > regulatory->max_power_level)
750 regulatory->max_power_level = ratesArray[i];
Sujithb5aec952009-08-07 09:45:15 +0530751 }
752
Felix Fietkaude40f312010-10-20 03:08:53 +0200753 if (test)
754 return;
755
756 if (IS_CHAN_2GHZ(chan))
757 i = rate1l;
758 else
759 i = rate6mb;
760
761 regulatory->max_power_level = ratesArray[i];
762
Felix Fietkau7a370812010-09-22 12:34:52 +0200763 if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujithb5aec952009-08-07 09:45:15 +0530764 for (i = 0; i < Ar5416RateSize; i++)
765 ratesArray[i] -= AR9287_PWR_TABLE_OFFSET_DB * 2;
766 }
767
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530768 ENABLE_REGWRITE_BUFFER(ah);
769
Sujitha55f8582010-06-01 15:14:07 +0530770 /* OFDM power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530771 REG_WRITE(ah, AR_PHY_POWER_TX_RATE1,
772 ATH9K_POW_SM(ratesArray[rate18mb], 24)
773 | ATH9K_POW_SM(ratesArray[rate12mb], 16)
774 | ATH9K_POW_SM(ratesArray[rate9mb], 8)
775 | ATH9K_POW_SM(ratesArray[rate6mb], 0));
776
777 REG_WRITE(ah, AR_PHY_POWER_TX_RATE2,
778 ATH9K_POW_SM(ratesArray[rate54mb], 24)
779 | ATH9K_POW_SM(ratesArray[rate48mb], 16)
780 | ATH9K_POW_SM(ratesArray[rate36mb], 8)
781 | ATH9K_POW_SM(ratesArray[rate24mb], 0));
782
Sujitha55f8582010-06-01 15:14:07 +0530783 /* CCK power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530784 if (IS_CHAN_2GHZ(chan)) {
785 REG_WRITE(ah, AR_PHY_POWER_TX_RATE3,
786 ATH9K_POW_SM(ratesArray[rate2s], 24)
787 | ATH9K_POW_SM(ratesArray[rate2l], 16)
788 | ATH9K_POW_SM(ratesArray[rateXr], 8)
789 | ATH9K_POW_SM(ratesArray[rate1l], 0));
790 REG_WRITE(ah, AR_PHY_POWER_TX_RATE4,
791 ATH9K_POW_SM(ratesArray[rate11s], 24)
792 | ATH9K_POW_SM(ratesArray[rate11l], 16)
793 | ATH9K_POW_SM(ratesArray[rate5_5s], 8)
794 | ATH9K_POW_SM(ratesArray[rate5_5l], 0));
795 }
796
Sujitha55f8582010-06-01 15:14:07 +0530797 /* HT20 power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530798 REG_WRITE(ah, AR_PHY_POWER_TX_RATE5,
799 ATH9K_POW_SM(ratesArray[rateHt20_3], 24)
800 | ATH9K_POW_SM(ratesArray[rateHt20_2], 16)
801 | ATH9K_POW_SM(ratesArray[rateHt20_1], 8)
802 | ATH9K_POW_SM(ratesArray[rateHt20_0], 0));
803
804 REG_WRITE(ah, AR_PHY_POWER_TX_RATE6,
805 ATH9K_POW_SM(ratesArray[rateHt20_7], 24)
806 | ATH9K_POW_SM(ratesArray[rateHt20_6], 16)
807 | ATH9K_POW_SM(ratesArray[rateHt20_5], 8)
808 | ATH9K_POW_SM(ratesArray[rateHt20_4], 0));
809
Sujitha55f8582010-06-01 15:14:07 +0530810 /* HT40 power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530811 if (IS_CHAN_HT40(chan)) {
Sujith16c94ac2010-06-01 15:14:04 +0530812 if (ath9k_hw_ar9287_get_eeprom(ah, EEP_OL_PWRCTRL)) {
Sujithb5aec952009-08-07 09:45:15 +0530813 REG_WRITE(ah, AR_PHY_POWER_TX_RATE7,
814 ATH9K_POW_SM(ratesArray[rateHt40_3], 24)
815 | ATH9K_POW_SM(ratesArray[rateHt40_2], 16)
816 | ATH9K_POW_SM(ratesArray[rateHt40_1], 8)
817 | ATH9K_POW_SM(ratesArray[rateHt40_0], 0));
818
819 REG_WRITE(ah, AR_PHY_POWER_TX_RATE8,
820 ATH9K_POW_SM(ratesArray[rateHt40_7], 24)
821 | ATH9K_POW_SM(ratesArray[rateHt40_6], 16)
822 | ATH9K_POW_SM(ratesArray[rateHt40_5], 8)
823 | ATH9K_POW_SM(ratesArray[rateHt40_4], 0));
824 } else {
825 REG_WRITE(ah, AR_PHY_POWER_TX_RATE7,
826 ATH9K_POW_SM(ratesArray[rateHt40_3] +
827 ht40PowerIncForPdadc, 24)
828 | ATH9K_POW_SM(ratesArray[rateHt40_2] +
829 ht40PowerIncForPdadc, 16)
830 | ATH9K_POW_SM(ratesArray[rateHt40_1] +
831 ht40PowerIncForPdadc, 8)
832 | ATH9K_POW_SM(ratesArray[rateHt40_0] +
833 ht40PowerIncForPdadc, 0));
834
835 REG_WRITE(ah, AR_PHY_POWER_TX_RATE8,
836 ATH9K_POW_SM(ratesArray[rateHt40_7] +
837 ht40PowerIncForPdadc, 24)
838 | ATH9K_POW_SM(ratesArray[rateHt40_6] +
839 ht40PowerIncForPdadc, 16)
840 | ATH9K_POW_SM(ratesArray[rateHt40_5] +
841 ht40PowerIncForPdadc, 8)
842 | ATH9K_POW_SM(ratesArray[rateHt40_4] +
843 ht40PowerIncForPdadc, 0));
844 }
845
Sujitha55f8582010-06-01 15:14:07 +0530846 /* Dup/Ext power per rate */
Sujithb5aec952009-08-07 09:45:15 +0530847 REG_WRITE(ah, AR_PHY_POWER_TX_RATE9,
848 ATH9K_POW_SM(ratesArray[rateExtOfdm], 24)
849 | ATH9K_POW_SM(ratesArray[rateExtCck], 16)
850 | ATH9K_POW_SM(ratesArray[rateDupOfdm], 8)
851 | ATH9K_POW_SM(ratesArray[rateDupCck], 0));
852 }
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530853 REGWRITE_BUFFER_FLUSH(ah);
Sujithb5aec952009-08-07 09:45:15 +0530854}
855
Sujith16c94ac2010-06-01 15:14:04 +0530856static void ath9k_hw_ar9287_set_addac(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530857 struct ath9k_channel *chan)
858{
859}
860
Sujith16c94ac2010-06-01 15:14:04 +0530861static void ath9k_hw_ar9287_set_board_values(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530862 struct ath9k_channel *chan)
863{
864 struct ar9287_eeprom *eep = &ah->eeprom.map9287;
865 struct modal_eep_ar9287_header *pModal = &eep->modalHeader;
Sujith79d7f4b2010-06-01 15:14:06 +0530866 u32 regChainOffset, regval;
Sujithb5aec952009-08-07 09:45:15 +0530867 u8 txRxAttenLocal;
Rajkumar Manoharan2d05a0c2011-04-11 20:22:28 +0530868 int i;
Sujithb5aec952009-08-07 09:45:15 +0530869
870 pModal = &eep->modalHeader;
871
Felix Fietkaudf3c8b22010-12-12 00:51:11 +0100872 REG_WRITE(ah, AR_PHY_SWITCH_COM, pModal->antCtrlCommon);
Sujithb5aec952009-08-07 09:45:15 +0530873
874 for (i = 0; i < AR9287_MAX_CHAINS; i++) {
875 regChainOffset = i * 0x1000;
876
877 REG_WRITE(ah, AR_PHY_SWITCH_CHAIN_0 + regChainOffset,
878 pModal->antCtrlChain[i]);
879
880 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset,
881 (REG_READ(ah, AR_PHY_TIMING_CTRL4(0) + regChainOffset)
882 & ~(AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF |
883 AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF)) |
884 SM(pModal->iqCalICh[i],
885 AR_PHY_TIMING_CTRL4_IQCORR_Q_I_COFF) |
886 SM(pModal->iqCalQCh[i],
887 AR_PHY_TIMING_CTRL4_IQCORR_Q_Q_COFF));
888
889 txRxAttenLocal = pModal->txRxAttenCh[i];
890
891 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
892 AR_PHY_GAIN_2GHZ_XATTEN1_MARGIN,
893 pModal->bswMargin[i]);
894 REG_RMW_FIELD(ah, AR_PHY_GAIN_2GHZ + regChainOffset,
895 AR_PHY_GAIN_2GHZ_XATTEN1_DB,
896 pModal->bswAtten[i]);
897 REG_RMW_FIELD(ah, AR_PHY_RXGAIN + regChainOffset,
898 AR9280_PHY_RXGAIN_TXRX_ATTEN,
899 txRxAttenLocal);
900 REG_RMW_FIELD(ah, AR_PHY_RXGAIN + regChainOffset,
901 AR9280_PHY_RXGAIN_TXRX_MARGIN,
902 pModal->rxTxMarginCh[i]);
903 }
904
905
906 if (IS_CHAN_HT40(chan))
907 REG_RMW_FIELD(ah, AR_PHY_SETTLING,
908 AR_PHY_SETTLING_SWITCH, pModal->swSettleHt40);
909 else
910 REG_RMW_FIELD(ah, AR_PHY_SETTLING,
911 AR_PHY_SETTLING_SWITCH, pModal->switchSettling);
912
913 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ,
914 AR_PHY_DESIRED_SZ_ADC, pModal->adcDesiredSize);
915
916 REG_WRITE(ah, AR_PHY_RF_CTL4,
917 SM(pModal->txEndToXpaOff, AR_PHY_RF_CTL4_TX_END_XPAA_OFF)
918 | SM(pModal->txEndToXpaOff, AR_PHY_RF_CTL4_TX_END_XPAB_OFF)
919 | SM(pModal->txFrameToXpaOn, AR_PHY_RF_CTL4_FRAME_XPAA_ON)
920 | SM(pModal->txFrameToXpaOn, AR_PHY_RF_CTL4_FRAME_XPAB_ON));
921
922 REG_RMW_FIELD(ah, AR_PHY_RF_CTL3,
923 AR_PHY_TX_END_TO_A2_RX_ON, pModal->txEndToRxOn);
924
925 REG_RMW_FIELD(ah, AR_PHY_CCA,
926 AR9280_PHY_CCA_THRESH62, pModal->thresh62);
927 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA0,
928 AR_PHY_EXT_CCA0_THRESH62, pModal->thresh62);
929
Sujith79d7f4b2010-06-01 15:14:06 +0530930 regval = REG_READ(ah, AR9287_AN_RF2G3_CH0);
931 regval &= ~(AR9287_AN_RF2G3_DB1 |
932 AR9287_AN_RF2G3_DB2 |
933 AR9287_AN_RF2G3_OB_CCK |
934 AR9287_AN_RF2G3_OB_PSK |
935 AR9287_AN_RF2G3_OB_QAM |
936 AR9287_AN_RF2G3_OB_PAL_OFF);
937 regval |= (SM(pModal->db1, AR9287_AN_RF2G3_DB1) |
938 SM(pModal->db2, AR9287_AN_RF2G3_DB2) |
939 SM(pModal->ob_cck, AR9287_AN_RF2G3_OB_CCK) |
940 SM(pModal->ob_psk, AR9287_AN_RF2G3_OB_PSK) |
941 SM(pModal->ob_qam, AR9287_AN_RF2G3_OB_QAM) |
942 SM(pModal->ob_pal_off, AR9287_AN_RF2G3_OB_PAL_OFF));
Sujithb5aec952009-08-07 09:45:15 +0530943
Sujith79d7f4b2010-06-01 15:14:06 +0530944 ath9k_hw_analog_shift_regwrite(ah, AR9287_AN_RF2G3_CH0, regval);
945
946 regval = REG_READ(ah, AR9287_AN_RF2G3_CH1);
947 regval &= ~(AR9287_AN_RF2G3_DB1 |
948 AR9287_AN_RF2G3_DB2 |
949 AR9287_AN_RF2G3_OB_CCK |
950 AR9287_AN_RF2G3_OB_PSK |
951 AR9287_AN_RF2G3_OB_QAM |
952 AR9287_AN_RF2G3_OB_PAL_OFF);
953 regval |= (SM(pModal->db1, AR9287_AN_RF2G3_DB1) |
954 SM(pModal->db2, AR9287_AN_RF2G3_DB2) |
955 SM(pModal->ob_cck, AR9287_AN_RF2G3_OB_CCK) |
956 SM(pModal->ob_psk, AR9287_AN_RF2G3_OB_PSK) |
957 SM(pModal->ob_qam, AR9287_AN_RF2G3_OB_QAM) |
958 SM(pModal->ob_pal_off, AR9287_AN_RF2G3_OB_PAL_OFF));
959
960 ath9k_hw_analog_shift_regwrite(ah, AR9287_AN_RF2G3_CH1, regval);
Sujithb5aec952009-08-07 09:45:15 +0530961
962 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2,
963 AR_PHY_TX_END_DATA_START, pModal->txFrameToDataStart);
964 REG_RMW_FIELD(ah, AR_PHY_RF_CTL2,
965 AR_PHY_TX_END_PA_ON, pModal->txFrameToPaOn);
966
967 ath9k_hw_analog_shift_rmw(ah, AR9287_AN_TOP2,
968 AR9287_AN_TOP2_XPABIAS_LVL,
969 AR9287_AN_TOP2_XPABIAS_LVL_S,
970 pModal->xpaBiasLvl);
971}
972
Sujith16c94ac2010-06-01 15:14:04 +0530973static u16 ath9k_hw_ar9287_get_spur_channel(struct ath_hw *ah,
Sujithb5aec952009-08-07 09:45:15 +0530974 u16 i, bool is2GHz)
975{
976#define EEP_MAP9287_SPURCHAN \
977 (ah->eeprom.map9287.modalHeader.spurChans[i].spurChan)
Sujith16c94ac2010-06-01 15:14:04 +0530978
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700979 struct ath_common *common = ath9k_hw_common(ah);
Sujithb5aec952009-08-07 09:45:15 +0530980 u16 spur_val = AR_NO_SPUR;
981
Joe Perches226afe62010-12-02 19:12:37 -0800982 ath_dbg(common, ATH_DBG_ANI,
983 "Getting spur idx:%d is2Ghz:%d val:%x\n",
984 i, is2GHz, ah->config.spurchans[i][is2GHz]);
Sujithb5aec952009-08-07 09:45:15 +0530985
986 switch (ah->config.spurmode) {
987 case SPUR_DISABLE:
988 break;
989 case SPUR_ENABLE_IOCTL:
990 spur_val = ah->config.spurchans[i][is2GHz];
Joe Perches226afe62010-12-02 19:12:37 -0800991 ath_dbg(common, ATH_DBG_ANI,
992 "Getting spur val from new loc. %d\n", spur_val);
Sujithb5aec952009-08-07 09:45:15 +0530993 break;
994 case SPUR_ENABLE_EEPROM:
995 spur_val = EEP_MAP9287_SPURCHAN;
996 break;
997 }
998
999 return spur_val;
1000
1001#undef EEP_MAP9287_SPURCHAN
1002}
1003
Luis R. Rodriguez0b8f6f2b12010-04-15 17:39:12 -04001004const struct eeprom_ops eep_ar9287_ops = {
Sujith16c94ac2010-06-01 15:14:04 +05301005 .check_eeprom = ath9k_hw_ar9287_check_eeprom,
1006 .get_eeprom = ath9k_hw_ar9287_get_eeprom,
1007 .fill_eeprom = ath9k_hw_ar9287_fill_eeprom,
1008 .get_eeprom_ver = ath9k_hw_ar9287_get_eeprom_ver,
1009 .get_eeprom_rev = ath9k_hw_ar9287_get_eeprom_rev,
Sujith16c94ac2010-06-01 15:14:04 +05301010 .set_board_values = ath9k_hw_ar9287_set_board_values,
1011 .set_addac = ath9k_hw_ar9287_set_addac,
1012 .set_txpower = ath9k_hw_ar9287_set_txpower,
1013 .get_spur_channel = ath9k_hw_ar9287_get_spur_channel
Sujithb5aec952009-08-07 09:45:15 +05301014};