blob: 0a749c8fa634830cbb90239e13ebc7ed8a343685 [file] [log] [blame]
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04003 *
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
17#include "hw.h"
18#include "hw-ops.h"
19#include "../regd.h"
20#include "ar9002_phy.h"
21
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040022/* All code below is for AR5008, AR9001, AR9002 */
23
24static const int firstep_table[] =
25/* level: 0 1 2 3 4 5 6 7 8 */
26 { -4, -2, 0, 2, 4, 6, 8, 10, 12 }; /* lvl 0-8, default 2 */
27
28static const int cycpwrThr1_table[] =
29/* level: 0 1 2 3 4 5 6 7 8 */
30 { -6, -4, -2, 0, 2, 4, 6, 8 }; /* lvl 0-7, default 3 */
31
32/*
33 * register values to turn OFDM weak signal detection OFF
34 */
35static const int m1ThreshLow_off = 127;
36static const int m2ThreshLow_off = 127;
37static const int m1Thresh_off = 127;
38static const int m2Thresh_off = 127;
39static const int m2CountThr_off = 31;
40static const int m2CountThrLow_off = 63;
41static const int m1ThreshLowExt_off = 127;
42static const int m2ThreshLowExt_off = 127;
43static const int m1ThreshExt_off = 127;
44static const int m2ThreshExt_off = 127;
45
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040046
Felix Fietkaua9b6b252011-03-23 20:57:27 +010047static void ar5008_rf_bank_setup(u32 *bank, struct ar5416IniArray *array,
48 int col)
49{
50 int i;
51
52 for (i = 0; i < array->ia_rows; i++)
53 bank[i] = INI_RA(array, i, col);
54}
55
56
57#define REG_WRITE_RF_ARRAY(iniarray, regData, regWr) \
58 ar5008_write_rf_array(ah, iniarray, regData, &(regWr))
59
60static void ar5008_write_rf_array(struct ath_hw *ah, struct ar5416IniArray *array,
61 u32 *data, unsigned int *writecnt)
62{
63 int r;
64
65 ENABLE_REGWRITE_BUFFER(ah);
66
67 for (r = 0; r < array->ia_rows; r++) {
68 REG_WRITE(ah, INI_RA(array, r, 0), data[r]);
69 DO_DELAY(*writecnt);
70 }
71
72 REGWRITE_BUFFER_FLUSH(ah);
73}
74
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040075/**
76 * ar5008_hw_phy_modify_rx_buffer() - perform analog swizzling of parameters
77 * @rfbuf:
78 * @reg32:
79 * @numBits:
80 * @firstBit:
81 * @column:
82 *
83 * Performs analog "swizzling" of parameters into their location.
84 * Used on external AR2133/AR5133 radios.
85 */
86static void ar5008_hw_phy_modify_rx_buffer(u32 *rfBuf, u32 reg32,
87 u32 numBits, u32 firstBit,
88 u32 column)
89{
90 u32 tmp32, mask, arrayEntry, lastBit;
91 int32_t bitPosition, bitsLeft;
92
93 tmp32 = ath9k_hw_reverse_bits(reg32, numBits);
94 arrayEntry = (firstBit - 1) / 8;
95 bitPosition = (firstBit - 1) % 8;
96 bitsLeft = numBits;
97 while (bitsLeft > 0) {
98 lastBit = (bitPosition + bitsLeft > 8) ?
99 8 : bitPosition + bitsLeft;
100 mask = (((1 << lastBit) - 1) ^ ((1 << bitPosition) - 1)) <<
101 (column * 8);
102 rfBuf[arrayEntry] &= ~mask;
103 rfBuf[arrayEntry] |= ((tmp32 << bitPosition) <<
104 (column * 8)) & mask;
105 bitsLeft -= 8 - bitPosition;
106 tmp32 = tmp32 >> (8 - bitPosition);
107 bitPosition = 0;
108 arrayEntry++;
109 }
110}
111
112/*
113 * Fix on 2.4 GHz band for orientation sensitivity issue by increasing
114 * rf_pwd_icsyndiv.
115 *
116 * Theoretical Rules:
117 * if 2 GHz band
118 * if forceBiasAuto
119 * if synth_freq < 2412
120 * bias = 0
121 * else if 2412 <= synth_freq <= 2422
122 * bias = 1
123 * else // synth_freq > 2422
124 * bias = 2
125 * else if forceBias > 0
126 * bias = forceBias & 7
127 * else
128 * no change, use value from ini file
129 * else
130 * no change, invalid band
131 *
132 * 1st Mod:
133 * 2422 also uses value of 2
134 * <approved>
135 *
136 * 2nd Mod:
137 * Less than 2412 uses value of 0, 2412 and above uses value of 2
138 */
139static void ar5008_hw_force_bias(struct ath_hw *ah, u16 synth_freq)
140{
141 struct ath_common *common = ath9k_hw_common(ah);
142 u32 tmp_reg;
143 int reg_writes = 0;
144 u32 new_bias = 0;
145
146 if (!AR_SREV_5416(ah) || synth_freq >= 3000)
147 return;
148
Felix Fietkau7a370812010-09-22 12:34:52 +0200149 BUG_ON(AR_SREV_9280_20_OR_LATER(ah));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400150
151 if (synth_freq < 2412)
152 new_bias = 0;
153 else if (synth_freq < 2422)
154 new_bias = 1;
155 else
156 new_bias = 2;
157
158 /* pre-reverse this field */
159 tmp_reg = ath9k_hw_reverse_bits(new_bias, 3);
160
Joe Perches226afe62010-12-02 19:12:37 -0800161 ath_dbg(common, ATH_DBG_CONFIG, "Force rf_pwd_icsyndiv to %1d on %4d\n",
162 new_bias, synth_freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400163
164 /* swizzle rf_pwd_icsyndiv */
165 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data, tmp_reg, 3, 181, 3);
166
167 /* write Bank 6 with new params */
168 REG_WRITE_RF_ARRAY(&ah->iniBank6, ah->analogBank6Data, reg_writes);
169}
170
171/**
172 * ar5008_hw_set_channel - tune to a channel on the external AR2133/AR5133 radios
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300173 * @ah: atheros hardware structure
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400174 * @chan:
175 *
176 * For the external AR2133/AR5133 radios, takes the MHz channel value and set
177 * the channel value. Assumes writes enabled to analog bus and bank6 register
178 * cache in ah->analogBank6Data.
179 */
180static int ar5008_hw_set_channel(struct ath_hw *ah, struct ath9k_channel *chan)
181{
182 struct ath_common *common = ath9k_hw_common(ah);
183 u32 channelSel = 0;
184 u32 bModeSynth = 0;
185 u32 aModeRefSel = 0;
186 u32 reg32 = 0;
187 u16 freq;
188 struct chan_centers centers;
189
190 ath9k_hw_get_channel_centers(ah, chan, &centers);
191 freq = centers.synth_center;
192
193 if (freq < 4800) {
194 u32 txctl;
195
196 if (((freq - 2192) % 5) == 0) {
197 channelSel = ((freq - 672) * 2 - 3040) / 10;
198 bModeSynth = 0;
199 } else if (((freq - 2224) % 5) == 0) {
200 channelSel = ((freq - 704) * 2 - 3040) / 10;
201 bModeSynth = 1;
202 } else {
Joe Perches38002762010-12-02 19:12:36 -0800203 ath_err(common, "Invalid channel %u MHz\n", freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400204 return -EINVAL;
205 }
206
207 channelSel = (channelSel << 2) & 0xff;
208 channelSel = ath9k_hw_reverse_bits(channelSel, 8);
209
210 txctl = REG_READ(ah, AR_PHY_CCK_TX_CTRL);
211 if (freq == 2484) {
212
213 REG_WRITE(ah, AR_PHY_CCK_TX_CTRL,
214 txctl | AR_PHY_CCK_TX_CTRL_JAPAN);
215 } else {
216 REG_WRITE(ah, AR_PHY_CCK_TX_CTRL,
217 txctl & ~AR_PHY_CCK_TX_CTRL_JAPAN);
218 }
219
220 } else if ((freq % 20) == 0 && freq >= 5120) {
221 channelSel =
222 ath9k_hw_reverse_bits(((freq - 4800) / 20 << 2), 8);
223 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
224 } else if ((freq % 10) == 0) {
225 channelSel =
226 ath9k_hw_reverse_bits(((freq - 4800) / 10 << 1), 8);
227 if (AR_SREV_9100(ah) || AR_SREV_9160_10_OR_LATER(ah))
228 aModeRefSel = ath9k_hw_reverse_bits(2, 2);
229 else
230 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
231 } else if ((freq % 5) == 0) {
232 channelSel = ath9k_hw_reverse_bits((freq - 4800) / 5, 8);
233 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
234 } else {
Joe Perches38002762010-12-02 19:12:36 -0800235 ath_err(common, "Invalid channel %u MHz\n", freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400236 return -EINVAL;
237 }
238
239 ar5008_hw_force_bias(ah, freq);
240
241 reg32 =
242 (channelSel << 8) | (aModeRefSel << 2) | (bModeSynth << 1) |
243 (1 << 5) | 0x1;
244
245 REG_WRITE(ah, AR_PHY(0x37), reg32);
246
247 ah->curchan = chan;
248 ah->curchan_rad_index = -1;
249
250 return 0;
251}
252
253/**
254 * ar5008_hw_spur_mitigate - convert baseband spur frequency for external radios
255 * @ah: atheros hardware structure
256 * @chan:
257 *
258 * For non single-chip solutions. Converts to baseband spur frequency given the
259 * input channel frequency and compute register settings below.
260 */
261static void ar5008_hw_spur_mitigate(struct ath_hw *ah,
262 struct ath9k_channel *chan)
263{
264 int bb_spur = AR_NO_SPUR;
265 int bin, cur_bin;
266 int spur_freq_sd;
267 int spur_delta_phase;
268 int denominator;
269 int upper, lower, cur_vit_mask;
270 int tmp, new;
271 int i;
Joe Perches07b2fa52010-11-20 18:38:53 -0800272 static int pilot_mask_reg[4] = {
273 AR_PHY_TIMING7, AR_PHY_TIMING8,
274 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400275 };
Joe Perches07b2fa52010-11-20 18:38:53 -0800276 static int chan_mask_reg[4] = {
277 AR_PHY_TIMING9, AR_PHY_TIMING10,
278 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400279 };
Joe Perches07b2fa52010-11-20 18:38:53 -0800280 static int inc[4] = { 0, 100, 0, 0 };
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400281
282 int8_t mask_m[123];
283 int8_t mask_p[123];
284 int8_t mask_amt;
285 int tmp_mask;
286 int cur_bb_spur;
287 bool is2GHz = IS_CHAN_2GHZ(chan);
288
289 memset(&mask_m, 0, sizeof(int8_t) * 123);
290 memset(&mask_p, 0, sizeof(int8_t) * 123);
291
292 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
293 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
294 if (AR_NO_SPUR == cur_bb_spur)
295 break;
296 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
297 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
298 bb_spur = cur_bb_spur;
299 break;
300 }
301 }
302
303 if (AR_NO_SPUR == bb_spur)
304 return;
305
306 bin = bb_spur * 32;
307
308 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
309 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
310 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
311 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
312 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
313
314 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
315
316 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
317 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
318 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
319 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
320 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
321 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
322
323 spur_delta_phase = ((bb_spur * 524288) / 100) &
324 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
325
326 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
327 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
328
329 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
330 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
331 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
332 REG_WRITE(ah, AR_PHY_TIMING11, new);
333
334 cur_bin = -6000;
335 upper = bin + 100;
336 lower = bin - 100;
337
338 for (i = 0; i < 4; i++) {
339 int pilot_mask = 0;
340 int chan_mask = 0;
341 int bp = 0;
342 for (bp = 0; bp < 30; bp++) {
343 if ((cur_bin > lower) && (cur_bin < upper)) {
344 pilot_mask = pilot_mask | 0x1 << bp;
345 chan_mask = chan_mask | 0x1 << bp;
346 }
347 cur_bin += 100;
348 }
349 cur_bin += inc[i];
350 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
351 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
352 }
353
354 cur_vit_mask = 6100;
355 upper = bin + 120;
356 lower = bin - 120;
357
358 for (i = 0; i < 123; i++) {
359 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
360
361 /* workaround for gcc bug #37014 */
362 volatile int tmp_v = abs(cur_vit_mask - bin);
363
364 if (tmp_v < 75)
365 mask_amt = 1;
366 else
367 mask_amt = 0;
368 if (cur_vit_mask < 0)
369 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
370 else
371 mask_p[cur_vit_mask / 100] = mask_amt;
372 }
373 cur_vit_mask -= 100;
374 }
375
376 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
377 | (mask_m[48] << 26) | (mask_m[49] << 24)
378 | (mask_m[50] << 22) | (mask_m[51] << 20)
379 | (mask_m[52] << 18) | (mask_m[53] << 16)
380 | (mask_m[54] << 14) | (mask_m[55] << 12)
381 | (mask_m[56] << 10) | (mask_m[57] << 8)
382 | (mask_m[58] << 6) | (mask_m[59] << 4)
383 | (mask_m[60] << 2) | (mask_m[61] << 0);
384 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
385 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
386
387 tmp_mask = (mask_m[31] << 28)
388 | (mask_m[32] << 26) | (mask_m[33] << 24)
389 | (mask_m[34] << 22) | (mask_m[35] << 20)
390 | (mask_m[36] << 18) | (mask_m[37] << 16)
391 | (mask_m[48] << 14) | (mask_m[39] << 12)
392 | (mask_m[40] << 10) | (mask_m[41] << 8)
393 | (mask_m[42] << 6) | (mask_m[43] << 4)
394 | (mask_m[44] << 2) | (mask_m[45] << 0);
395 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
396 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
397
398 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
399 | (mask_m[18] << 26) | (mask_m[18] << 24)
400 | (mask_m[20] << 22) | (mask_m[20] << 20)
401 | (mask_m[22] << 18) | (mask_m[22] << 16)
402 | (mask_m[24] << 14) | (mask_m[24] << 12)
403 | (mask_m[25] << 10) | (mask_m[26] << 8)
404 | (mask_m[27] << 6) | (mask_m[28] << 4)
405 | (mask_m[29] << 2) | (mask_m[30] << 0);
406 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
407 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
408
409 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
410 | (mask_m[2] << 26) | (mask_m[3] << 24)
411 | (mask_m[4] << 22) | (mask_m[5] << 20)
412 | (mask_m[6] << 18) | (mask_m[7] << 16)
413 | (mask_m[8] << 14) | (mask_m[9] << 12)
414 | (mask_m[10] << 10) | (mask_m[11] << 8)
415 | (mask_m[12] << 6) | (mask_m[13] << 4)
416 | (mask_m[14] << 2) | (mask_m[15] << 0);
417 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
418 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
419
420 tmp_mask = (mask_p[15] << 28)
421 | (mask_p[14] << 26) | (mask_p[13] << 24)
422 | (mask_p[12] << 22) | (mask_p[11] << 20)
423 | (mask_p[10] << 18) | (mask_p[9] << 16)
424 | (mask_p[8] << 14) | (mask_p[7] << 12)
425 | (mask_p[6] << 10) | (mask_p[5] << 8)
426 | (mask_p[4] << 6) | (mask_p[3] << 4)
427 | (mask_p[2] << 2) | (mask_p[1] << 0);
428 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
429 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
430
431 tmp_mask = (mask_p[30] << 28)
432 | (mask_p[29] << 26) | (mask_p[28] << 24)
433 | (mask_p[27] << 22) | (mask_p[26] << 20)
434 | (mask_p[25] << 18) | (mask_p[24] << 16)
435 | (mask_p[23] << 14) | (mask_p[22] << 12)
436 | (mask_p[21] << 10) | (mask_p[20] << 8)
437 | (mask_p[19] << 6) | (mask_p[18] << 4)
438 | (mask_p[17] << 2) | (mask_p[16] << 0);
439 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
440 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
441
442 tmp_mask = (mask_p[45] << 28)
443 | (mask_p[44] << 26) | (mask_p[43] << 24)
444 | (mask_p[42] << 22) | (mask_p[41] << 20)
445 | (mask_p[40] << 18) | (mask_p[39] << 16)
446 | (mask_p[38] << 14) | (mask_p[37] << 12)
447 | (mask_p[36] << 10) | (mask_p[35] << 8)
448 | (mask_p[34] << 6) | (mask_p[33] << 4)
449 | (mask_p[32] << 2) | (mask_p[31] << 0);
450 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
451 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
452
453 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
454 | (mask_p[59] << 26) | (mask_p[58] << 24)
455 | (mask_p[57] << 22) | (mask_p[56] << 20)
456 | (mask_p[55] << 18) | (mask_p[54] << 16)
457 | (mask_p[53] << 14) | (mask_p[52] << 12)
458 | (mask_p[51] << 10) | (mask_p[50] << 8)
459 | (mask_p[49] << 6) | (mask_p[48] << 4)
460 | (mask_p[47] << 2) | (mask_p[46] << 0);
461 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
462 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
463}
464
465/**
466 * ar5008_hw_rf_alloc_ext_banks - allocates banks for external radio programming
467 * @ah: atheros hardware structure
468 *
469 * Only required for older devices with external AR2133/AR5133 radios.
470 */
471static int ar5008_hw_rf_alloc_ext_banks(struct ath_hw *ah)
472{
473#define ATH_ALLOC_BANK(bank, size) do { \
474 bank = kzalloc((sizeof(u32) * size), GFP_KERNEL); \
475 if (!bank) { \
Joe Perches38002762010-12-02 19:12:36 -0800476 ath_err(common, "Cannot allocate RF banks\n"); \
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400477 return -ENOMEM; \
478 } \
479 } while (0);
480
481 struct ath_common *common = ath9k_hw_common(ah);
482
Felix Fietkau7a370812010-09-22 12:34:52 +0200483 BUG_ON(AR_SREV_9280_20_OR_LATER(ah));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400484
485 ATH_ALLOC_BANK(ah->analogBank0Data, ah->iniBank0.ia_rows);
486 ATH_ALLOC_BANK(ah->analogBank1Data, ah->iniBank1.ia_rows);
487 ATH_ALLOC_BANK(ah->analogBank2Data, ah->iniBank2.ia_rows);
488 ATH_ALLOC_BANK(ah->analogBank3Data, ah->iniBank3.ia_rows);
489 ATH_ALLOC_BANK(ah->analogBank6Data, ah->iniBank6.ia_rows);
490 ATH_ALLOC_BANK(ah->analogBank6TPCData, ah->iniBank6TPC.ia_rows);
491 ATH_ALLOC_BANK(ah->analogBank7Data, ah->iniBank7.ia_rows);
492 ATH_ALLOC_BANK(ah->addac5416_21,
493 ah->iniAddac.ia_rows * ah->iniAddac.ia_columns);
494 ATH_ALLOC_BANK(ah->bank6Temp, ah->iniBank6.ia_rows);
495
496 return 0;
497#undef ATH_ALLOC_BANK
498}
499
500
501/**
502 * ar5008_hw_rf_free_ext_banks - Free memory for analog bank scratch buffers
503 * @ah: atheros hardware struture
504 * For the external AR2133/AR5133 radios banks.
505 */
506static void ar5008_hw_rf_free_ext_banks(struct ath_hw *ah)
507{
508#define ATH_FREE_BANK(bank) do { \
509 kfree(bank); \
510 bank = NULL; \
511 } while (0);
512
Felix Fietkau7a370812010-09-22 12:34:52 +0200513 BUG_ON(AR_SREV_9280_20_OR_LATER(ah));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400514
515 ATH_FREE_BANK(ah->analogBank0Data);
516 ATH_FREE_BANK(ah->analogBank1Data);
517 ATH_FREE_BANK(ah->analogBank2Data);
518 ATH_FREE_BANK(ah->analogBank3Data);
519 ATH_FREE_BANK(ah->analogBank6Data);
520 ATH_FREE_BANK(ah->analogBank6TPCData);
521 ATH_FREE_BANK(ah->analogBank7Data);
522 ATH_FREE_BANK(ah->addac5416_21);
523 ATH_FREE_BANK(ah->bank6Temp);
524
525#undef ATH_FREE_BANK
526}
527
528/* *
529 * ar5008_hw_set_rf_regs - programs rf registers based on EEPROM
530 * @ah: atheros hardware structure
531 * @chan:
532 * @modesIndex:
533 *
534 * Used for the external AR2133/AR5133 radios.
535 *
536 * Reads the EEPROM header info from the device structure and programs
537 * all rf registers. This routine requires access to the analog
538 * rf device. This is not required for single-chip devices.
539 */
540static bool ar5008_hw_set_rf_regs(struct ath_hw *ah,
541 struct ath9k_channel *chan,
542 u16 modesIndex)
543{
544 u32 eepMinorRev;
545 u32 ob5GHz = 0, db5GHz = 0;
546 u32 ob2GHz = 0, db2GHz = 0;
547 int regWrites = 0;
548
549 /*
550 * Software does not need to program bank data
551 * for single chip devices, that is AR9280 or anything
552 * after that.
553 */
Felix Fietkau7a370812010-09-22 12:34:52 +0200554 if (AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400555 return true;
556
557 /* Setup rf parameters */
558 eepMinorRev = ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV);
559
560 /* Setup Bank 0 Write */
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100561 ar5008_rf_bank_setup(ah->analogBank0Data, &ah->iniBank0, 1);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400562
563 /* Setup Bank 1 Write */
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100564 ar5008_rf_bank_setup(ah->analogBank1Data, &ah->iniBank1, 1);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400565
566 /* Setup Bank 2 Write */
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100567 ar5008_rf_bank_setup(ah->analogBank2Data, &ah->iniBank2, 1);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400568
569 /* Setup Bank 6 Write */
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100570 ar5008_rf_bank_setup(ah->analogBank3Data, &ah->iniBank3,
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400571 modesIndex);
572 {
573 int i;
574 for (i = 0; i < ah->iniBank6TPC.ia_rows; i++) {
575 ah->analogBank6Data[i] =
576 INI_RA(&ah->iniBank6TPC, i, modesIndex);
577 }
578 }
579
580 /* Only the 5 or 2 GHz OB/DB need to be set for a mode */
581 if (eepMinorRev >= 2) {
582 if (IS_CHAN_2GHZ(chan)) {
583 ob2GHz = ah->eep_ops->get_eeprom(ah, EEP_OB_2);
584 db2GHz = ah->eep_ops->get_eeprom(ah, EEP_DB_2);
585 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
586 ob2GHz, 3, 197, 0);
587 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
588 db2GHz, 3, 194, 0);
589 } else {
590 ob5GHz = ah->eep_ops->get_eeprom(ah, EEP_OB_5);
591 db5GHz = ah->eep_ops->get_eeprom(ah, EEP_DB_5);
592 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
593 ob5GHz, 3, 203, 0);
594 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
595 db5GHz, 3, 200, 0);
596 }
597 }
598
599 /* Setup Bank 7 Setup */
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100600 ar5008_rf_bank_setup(ah->analogBank7Data, &ah->iniBank7, 1);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400601
602 /* Write Analog registers */
603 REG_WRITE_RF_ARRAY(&ah->iniBank0, ah->analogBank0Data,
604 regWrites);
605 REG_WRITE_RF_ARRAY(&ah->iniBank1, ah->analogBank1Data,
606 regWrites);
607 REG_WRITE_RF_ARRAY(&ah->iniBank2, ah->analogBank2Data,
608 regWrites);
609 REG_WRITE_RF_ARRAY(&ah->iniBank3, ah->analogBank3Data,
610 regWrites);
611 REG_WRITE_RF_ARRAY(&ah->iniBank6TPC, ah->analogBank6Data,
612 regWrites);
613 REG_WRITE_RF_ARRAY(&ah->iniBank7, ah->analogBank7Data,
614 regWrites);
615
616 return true;
617}
618
619static void ar5008_hw_init_bb(struct ath_hw *ah,
620 struct ath9k_channel *chan)
621{
622 u32 synthDelay;
623
624 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
625 if (IS_CHAN_B(chan))
626 synthDelay = (4 * synthDelay) / 22;
627 else
628 synthDelay /= 10;
629
Felix Fietkau7d865c72011-07-09 11:12:53 +0700630 if (IS_CHAN_HALF_RATE(chan))
631 synthDelay *= 2;
632 else if (IS_CHAN_QUARTER_RATE(chan))
633 synthDelay *= 4;
634
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400635 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
636
637 udelay(synthDelay + BASE_ACTIVATE_DELAY);
638}
639
640static void ar5008_hw_init_chain_masks(struct ath_hw *ah)
641{
642 int rx_chainmask, tx_chainmask;
643
644 rx_chainmask = ah->rxchainmask;
645 tx_chainmask = ah->txchainmask;
646
Sujith7d0d0df2010-04-16 11:53:57 +0530647
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400648 switch (rx_chainmask) {
649 case 0x5:
650 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
651 AR_PHY_SWAP_ALT_CHAIN);
652 case 0x3:
653 if (ah->hw_version.macVersion == AR_SREV_REVISION_5416_10) {
654 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
655 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
656 break;
657 }
658 case 0x1:
659 case 0x2:
660 case 0x7:
Felix Fietkau435c1612010-10-05 12:03:42 +0200661 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400662 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
663 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
664 break;
665 default:
Felix Fietkau435c1612010-10-05 12:03:42 +0200666 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400667 break;
668 }
669
670 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
Sujith7d0d0df2010-04-16 11:53:57 +0530671
672 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530673
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400674 if (tx_chainmask == 0x5) {
675 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
676 AR_PHY_SWAP_ALT_CHAIN);
677 }
678 if (AR_SREV_9100(ah))
679 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
680 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
681}
682
683static void ar5008_hw_override_ini(struct ath_hw *ah,
684 struct ath9k_channel *chan)
685{
686 u32 val;
687
688 /*
689 * Set the RX_ABORT and RX_DIS and clear if off only after
690 * RXE is set for MAC. This prevents frames with corrupted
691 * descriptor status.
692 */
693 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
694
Felix Fietkau7a370812010-09-22 12:34:52 +0200695 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400696 val = REG_READ(ah, AR_PCU_MISC_MODE2);
697
698 if (!AR_SREV_9271(ah))
699 val &= ~AR_PCU_MISC_MODE2_HWWAR1;
700
Felix Fietkaua42acef2010-09-22 12:34:54 +0200701 if (AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400702 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
703
704 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
705 }
706
Felix Fietkaubf3f2042011-09-15 14:25:37 +0200707 REG_SET_BIT(ah, AR_PHY_CCK_DETECT,
708 AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV);
709
Felix Fietkau1b8714f2011-09-15 14:25:35 +0200710 if (AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400711 return;
712 /*
713 * Disable BB clock gating
714 * Necessary to avoid issues on AR5416 2.0
715 */
716 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
717
718 /*
719 * Disable RIFS search on some chips to avoid baseband
720 * hang issues.
721 */
722 if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
723 val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
724 val &= ~AR_PHY_RIFS_INIT_DELAY;
725 REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
726 }
727}
728
729static void ar5008_hw_set_channel_regs(struct ath_hw *ah,
730 struct ath9k_channel *chan)
731{
732 u32 phymode;
733 u32 enableDacFifo = 0;
734
Felix Fietkaue17f83e2010-09-22 12:34:53 +0200735 if (AR_SREV_9285_12_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400736 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
737 AR_PHY_FC_ENABLE_DAC_FIFO);
738
739 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
740 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
741
742 if (IS_CHAN_HT40(chan)) {
743 phymode |= AR_PHY_FC_DYN2040_EN;
744
745 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
746 (chan->chanmode == CHANNEL_G_HT40PLUS))
747 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
748
749 }
750 REG_WRITE(ah, AR_PHY_TURBO, phymode);
751
752 ath9k_hw_set11nmac2040(ah);
753
Sujith7d0d0df2010-04-16 11:53:57 +0530754 ENABLE_REGWRITE_BUFFER(ah);
755
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400756 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
757 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
Sujith7d0d0df2010-04-16 11:53:57 +0530758
759 REGWRITE_BUFFER_FLUSH(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400760}
761
762
763static int ar5008_hw_process_ini(struct ath_hw *ah,
764 struct ath9k_channel *chan)
765{
766 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530767 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400768 int i, regWrites = 0;
769 struct ieee80211_channel *channel = chan->chan;
770 u32 modesIndex, freqIndex;
771
772 switch (chan->chanmode) {
773 case CHANNEL_A:
774 case CHANNEL_A_HT20:
775 modesIndex = 1;
776 freqIndex = 1;
777 break;
778 case CHANNEL_A_HT40PLUS:
779 case CHANNEL_A_HT40MINUS:
780 modesIndex = 2;
781 freqIndex = 1;
782 break;
783 case CHANNEL_G:
784 case CHANNEL_G_HT20:
785 case CHANNEL_B:
786 modesIndex = 4;
787 freqIndex = 2;
788 break;
789 case CHANNEL_G_HT40PLUS:
790 case CHANNEL_G_HT40MINUS:
791 modesIndex = 3;
792 freqIndex = 2;
793 break;
794
795 default:
796 return -EINVAL;
797 }
798
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400799 /*
800 * Set correct baseband to analog shift setting to
801 * access analog chips.
802 */
803 REG_WRITE(ah, AR_PHY(0), 0x00000007);
804
805 /* Write ADDAC shifts */
806 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Felix Fietkaud7084da2011-09-15 14:25:36 +0200807 if (ah->eep_ops->set_addac)
808 ah->eep_ops->set_addac(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400809
810 if (AR_SREV_5416_22_OR_LATER(ah)) {
811 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
812 } else {
813 struct ar5416IniArray temp;
814 u32 addacSize =
815 sizeof(u32) * ah->iniAddac.ia_rows *
816 ah->iniAddac.ia_columns;
817
818 /* For AR5416 2.0/2.1 */
819 memcpy(ah->addac5416_21,
820 ah->iniAddac.ia_array, addacSize);
821
822 /* override CLKDRV value at [row, column] = [31, 1] */
823 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
824
825 temp.ia_array = ah->addac5416_21;
826 temp.ia_columns = ah->iniAddac.ia_columns;
827 temp.ia_rows = ah->iniAddac.ia_rows;
828 REG_WRITE_ARRAY(&temp, 1, regWrites);
829 }
830
831 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
832
Sujith7d0d0df2010-04-16 11:53:57 +0530833 ENABLE_REGWRITE_BUFFER(ah);
834
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400835 for (i = 0; i < ah->iniModes.ia_rows; i++) {
836 u32 reg = INI_RA(&ah->iniModes, i, 0);
837 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
838
839 if (reg == AR_AN_TOP2 && ah->need_an_top2_fixup)
840 val &= ~AR_AN_TOP2_PWDCLKIND;
841
842 REG_WRITE(ah, reg, val);
843
844 if (reg >= 0x7800 && reg < 0x78a0
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530845 && ah->config.analog_shiftreg
846 && (common->bus_ops->ath_bus_type != ATH_USB)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400847 udelay(100);
848 }
849
850 DO_DELAY(regWrites);
851 }
852
Sujith7d0d0df2010-04-16 11:53:57 +0530853 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530854
Felix Fietkaua42acef2010-09-22 12:34:54 +0200855 if (AR_SREV_9280(ah) || AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400856 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
857
858 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
Felix Fietkaua42acef2010-09-22 12:34:54 +0200859 AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400860 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
861
862 if (AR_SREV_9271_10(ah))
863 REG_WRITE_ARRAY(&ah->iniModes_9271_1_0_only,
864 modesIndex, regWrites);
865
Sujith7d0d0df2010-04-16 11:53:57 +0530866 ENABLE_REGWRITE_BUFFER(ah);
867
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400868 /* Write common array parameters */
869 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
870 u32 reg = INI_RA(&ah->iniCommon, i, 0);
871 u32 val = INI_RA(&ah->iniCommon, i, 1);
872
873 REG_WRITE(ah, reg, val);
874
875 if (reg >= 0x7800 && reg < 0x78a0
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530876 && ah->config.analog_shiftreg
877 && (common->bus_ops->ath_bus_type != ATH_USB)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400878 udelay(100);
879 }
880
881 DO_DELAY(regWrites);
882 }
883
Sujith7d0d0df2010-04-16 11:53:57 +0530884 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530885
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400886 if (AR_SREV_9271(ah)) {
887 if (ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE) == 1)
888 REG_WRITE_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
889 modesIndex, regWrites);
890 else
891 REG_WRITE_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
892 modesIndex, regWrites);
893 }
894
895 REG_WRITE_ARRAY(&ah->iniBB_RfGain, freqIndex, regWrites);
896
Felix Fietkau6b42e8d2010-04-26 15:04:35 -0400897 if (IS_CHAN_A_FAST_CLOCK(ah, chan)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400898 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
899 regWrites);
900 }
901
902 ar5008_hw_override_ini(ah, chan);
903 ar5008_hw_set_channel_regs(ah, chan);
904 ar5008_hw_init_chain_masks(ah);
905 ath9k_olc_init(ah);
906
907 /* Set TX power */
908 ah->eep_ops->set_txpower(ah, chan,
909 ath9k_regd_get_ctl(regulatory, chan),
910 channel->max_antenna_gain * 2,
911 channel->max_power * 2,
912 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +0200913 (u32) regulatory->power_limit), false);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400914
915 /* Write analog registers */
916 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Joe Perches38002762010-12-02 19:12:36 -0800917 ath_err(ath9k_hw_common(ah), "ar5416SetRfRegs failed\n");
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400918 return -EIO;
919 }
920
921 return 0;
922}
923
924static void ar5008_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
925{
926 u32 rfMode = 0;
927
928 if (chan == NULL)
929 return;
930
931 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
932 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
933
Felix Fietkau7a370812010-09-22 12:34:52 +0200934 if (!AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400935 rfMode |= (IS_CHAN_5GHZ(chan)) ?
936 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
937
Felix Fietkau6b42e8d2010-04-26 15:04:35 -0400938 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400939 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
940
941 REG_WRITE(ah, AR_PHY_MODE, rfMode);
942}
943
944static void ar5008_hw_mark_phy_inactive(struct ath_hw *ah)
945{
946 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
947}
948
949static void ar5008_hw_set_delta_slope(struct ath_hw *ah,
950 struct ath9k_channel *chan)
951{
952 u32 coef_scaled, ds_coef_exp, ds_coef_man;
953 u32 clockMhzScaled = 0x64000000;
954 struct chan_centers centers;
955
956 if (IS_CHAN_HALF_RATE(chan))
957 clockMhzScaled = clockMhzScaled >> 1;
958 else if (IS_CHAN_QUARTER_RATE(chan))
959 clockMhzScaled = clockMhzScaled >> 2;
960
961 ath9k_hw_get_channel_centers(ah, chan, &centers);
962 coef_scaled = clockMhzScaled / centers.synth_center;
963
964 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
965 &ds_coef_exp);
966
967 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
968 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
969 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
970 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
971
972 coef_scaled = (9 * coef_scaled) / 10;
973
974 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
975 &ds_coef_exp);
976
977 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
978 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
979 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
980 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
981}
982
983static bool ar5008_hw_rfbus_req(struct ath_hw *ah)
984{
985 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
986 return ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
987 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT);
988}
989
990static void ar5008_hw_rfbus_done(struct ath_hw *ah)
991{
992 u32 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
993 if (IS_CHAN_B(ah->curchan))
994 synthDelay = (4 * synthDelay) / 22;
995 else
996 synthDelay /= 10;
997
998 udelay(synthDelay + BASE_ACTIVATE_DELAY);
999
1000 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
1001}
1002
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001003static void ar5008_restore_chainmask(struct ath_hw *ah)
1004{
1005 int rx_chainmask = ah->rxchainmask;
1006
1007 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
1008 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
1009 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
1010 }
1011}
1012
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001013static u32 ar9160_hw_compute_pll_control(struct ath_hw *ah,
1014 struct ath9k_channel *chan)
1015{
1016 u32 pll;
1017
1018 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1019
1020 if (chan && IS_CHAN_HALF_RATE(chan))
1021 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1022 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1023 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1024
1025 if (chan && IS_CHAN_5GHZ(chan))
1026 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1027 else
1028 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1029
1030 return pll;
1031}
1032
1033static u32 ar5008_hw_compute_pll_control(struct ath_hw *ah,
1034 struct ath9k_channel *chan)
1035{
1036 u32 pll;
1037
1038 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1039
1040 if (chan && IS_CHAN_HALF_RATE(chan))
1041 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1042 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1043 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1044
1045 if (chan && IS_CHAN_5GHZ(chan))
1046 pll |= SM(0xa, AR_RTC_PLL_DIV);
1047 else
1048 pll |= SM(0xb, AR_RTC_PLL_DIV);
1049
1050 return pll;
1051}
1052
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001053static bool ar5008_hw_ani_control_old(struct ath_hw *ah,
1054 enum ath9k_ani_cmd cmd,
1055 int param)
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001056{
Felix Fietkau093115b2010-10-04 20:09:47 +02001057 struct ar5416AniState *aniState = &ah->curchan->ani;
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001058 struct ath_common *common = ath9k_hw_common(ah);
1059
1060 switch (cmd & ah->ani_function) {
1061 case ATH9K_ANI_NOISE_IMMUNITY_LEVEL:{
1062 u32 level = param;
1063
1064 if (level >= ARRAY_SIZE(ah->totalSizeDesired)) {
Joe Perches226afe62010-12-02 19:12:37 -08001065 ath_dbg(common, ATH_DBG_ANI,
1066 "level out of range (%u > %zu)\n",
1067 level, ARRAY_SIZE(ah->totalSizeDesired));
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001068 return false;
1069 }
1070
1071 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ,
1072 AR_PHY_DESIRED_SZ_TOT_DES,
1073 ah->totalSizeDesired[level]);
1074 REG_RMW_FIELD(ah, AR_PHY_AGC_CTL1,
1075 AR_PHY_AGC_CTL1_COARSE_LOW,
1076 ah->coarse_low[level]);
1077 REG_RMW_FIELD(ah, AR_PHY_AGC_CTL1,
1078 AR_PHY_AGC_CTL1_COARSE_HIGH,
1079 ah->coarse_high[level]);
1080 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
1081 AR_PHY_FIND_SIG_FIRPWR,
1082 ah->firpwr[level]);
1083
1084 if (level > aniState->noiseImmunityLevel)
1085 ah->stats.ast_ani_niup++;
1086 else if (level < aniState->noiseImmunityLevel)
1087 ah->stats.ast_ani_nidown++;
1088 aniState->noiseImmunityLevel = level;
1089 break;
1090 }
1091 case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001092 static const int m1ThreshLow[] = { 127, 50 };
1093 static const int m2ThreshLow[] = { 127, 40 };
1094 static const int m1Thresh[] = { 127, 0x4d };
1095 static const int m2Thresh[] = { 127, 0x40 };
1096 static const int m2CountThr[] = { 31, 16 };
1097 static const int m2CountThrLow[] = { 63, 48 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001098 u32 on = param ? 1 : 0;
1099
1100 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1101 AR_PHY_SFCORR_LOW_M1_THRESH_LOW,
1102 m1ThreshLow[on]);
1103 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1104 AR_PHY_SFCORR_LOW_M2_THRESH_LOW,
1105 m2ThreshLow[on]);
1106 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1107 AR_PHY_SFCORR_M1_THRESH,
1108 m1Thresh[on]);
1109 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1110 AR_PHY_SFCORR_M2_THRESH,
1111 m2Thresh[on]);
1112 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1113 AR_PHY_SFCORR_M2COUNT_THR,
1114 m2CountThr[on]);
1115 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1116 AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW,
1117 m2CountThrLow[on]);
1118
1119 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1120 AR_PHY_SFCORR_EXT_M1_THRESH_LOW,
1121 m1ThreshLow[on]);
1122 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1123 AR_PHY_SFCORR_EXT_M2_THRESH_LOW,
1124 m2ThreshLow[on]);
1125 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1126 AR_PHY_SFCORR_EXT_M1_THRESH,
1127 m1Thresh[on]);
1128 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1129 AR_PHY_SFCORR_EXT_M2_THRESH,
1130 m2Thresh[on]);
1131
1132 if (on)
1133 REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
1134 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1135 else
1136 REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
1137 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1138
1139 if (!on != aniState->ofdmWeakSigDetectOff) {
1140 if (on)
1141 ah->stats.ast_ani_ofdmon++;
1142 else
1143 ah->stats.ast_ani_ofdmoff++;
1144 aniState->ofdmWeakSigDetectOff = !on;
1145 }
1146 break;
1147 }
1148 case ATH9K_ANI_CCK_WEAK_SIGNAL_THR:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001149 static const int weakSigThrCck[] = { 8, 6 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001150 u32 high = param ? 1 : 0;
1151
1152 REG_RMW_FIELD(ah, AR_PHY_CCK_DETECT,
1153 AR_PHY_CCK_DETECT_WEAK_SIG_THR_CCK,
1154 weakSigThrCck[high]);
1155 if (high != aniState->cckWeakSigThreshold) {
1156 if (high)
1157 ah->stats.ast_ani_cckhigh++;
1158 else
1159 ah->stats.ast_ani_ccklow++;
1160 aniState->cckWeakSigThreshold = high;
1161 }
1162 break;
1163 }
1164 case ATH9K_ANI_FIRSTEP_LEVEL:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001165 static const int firstep[] = { 0, 4, 8 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001166 u32 level = param;
1167
1168 if (level >= ARRAY_SIZE(firstep)) {
Joe Perches226afe62010-12-02 19:12:37 -08001169 ath_dbg(common, ATH_DBG_ANI,
1170 "level out of range (%u > %zu)\n",
1171 level, ARRAY_SIZE(firstep));
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001172 return false;
1173 }
1174 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
1175 AR_PHY_FIND_SIG_FIRSTEP,
1176 firstep[level]);
1177 if (level > aniState->firstepLevel)
1178 ah->stats.ast_ani_stepup++;
1179 else if (level < aniState->firstepLevel)
1180 ah->stats.ast_ani_stepdown++;
1181 aniState->firstepLevel = level;
1182 break;
1183 }
1184 case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001185 static const int cycpwrThr1[] = { 2, 4, 6, 8, 10, 12, 14, 16 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001186 u32 level = param;
1187
1188 if (level >= ARRAY_SIZE(cycpwrThr1)) {
Joe Perches226afe62010-12-02 19:12:37 -08001189 ath_dbg(common, ATH_DBG_ANI,
1190 "level out of range (%u > %zu)\n",
1191 level, ARRAY_SIZE(cycpwrThr1));
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001192 return false;
1193 }
1194 REG_RMW_FIELD(ah, AR_PHY_TIMING5,
1195 AR_PHY_TIMING5_CYCPWR_THR1,
1196 cycpwrThr1[level]);
1197 if (level > aniState->spurImmunityLevel)
1198 ah->stats.ast_ani_spurup++;
1199 else if (level < aniState->spurImmunityLevel)
1200 ah->stats.ast_ani_spurdown++;
1201 aniState->spurImmunityLevel = level;
1202 break;
1203 }
1204 case ATH9K_ANI_PRESENT:
1205 break;
1206 default:
Joe Perches226afe62010-12-02 19:12:37 -08001207 ath_dbg(common, ATH_DBG_ANI, "invalid cmd %u\n", cmd);
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001208 return false;
1209 }
1210
Joe Perches226afe62010-12-02 19:12:37 -08001211 ath_dbg(common, ATH_DBG_ANI, "ANI parameters:\n");
1212 ath_dbg(common, ATH_DBG_ANI,
1213 "noiseImmunityLevel=%d, spurImmunityLevel=%d, ofdmWeakSigDetectOff=%d\n",
1214 aniState->noiseImmunityLevel,
1215 aniState->spurImmunityLevel,
1216 !aniState->ofdmWeakSigDetectOff);
1217 ath_dbg(common, ATH_DBG_ANI,
1218 "cckWeakSigThreshold=%d, firstepLevel=%d, listenTime=%d\n",
1219 aniState->cckWeakSigThreshold,
1220 aniState->firstepLevel,
1221 aniState->listenTime);
1222 ath_dbg(common, ATH_DBG_ANI,
Felix Fietkau9dbebc72010-10-03 19:07:17 +02001223 "ofdmPhyErrCount=%d, cckPhyErrCount=%d\n\n",
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001224 aniState->ofdmPhyErrCount,
1225 aniState->cckPhyErrCount);
1226
1227 return true;
1228}
1229
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001230static bool ar5008_hw_ani_control_new(struct ath_hw *ah,
1231 enum ath9k_ani_cmd cmd,
1232 int param)
1233{
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001234 struct ath_common *common = ath9k_hw_common(ah);
1235 struct ath9k_channel *chan = ah->curchan;
Felix Fietkau093115b2010-10-04 20:09:47 +02001236 struct ar5416AniState *aniState = &chan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001237 s32 value, value2;
1238
1239 switch (cmd & ah->ani_function) {
1240 case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
1241 /*
1242 * on == 1 means ofdm weak signal detection is ON
1243 * on == 1 is the default, for less noise immunity
1244 *
1245 * on == 0 means ofdm weak signal detection is OFF
1246 * on == 0 means more noise imm
1247 */
1248 u32 on = param ? 1 : 0;
1249 /*
1250 * make register setting for default
1251 * (weak sig detect ON) come from INI file
1252 */
1253 int m1ThreshLow = on ?
1254 aniState->iniDef.m1ThreshLow : m1ThreshLow_off;
1255 int m2ThreshLow = on ?
1256 aniState->iniDef.m2ThreshLow : m2ThreshLow_off;
1257 int m1Thresh = on ?
1258 aniState->iniDef.m1Thresh : m1Thresh_off;
1259 int m2Thresh = on ?
1260 aniState->iniDef.m2Thresh : m2Thresh_off;
1261 int m2CountThr = on ?
1262 aniState->iniDef.m2CountThr : m2CountThr_off;
1263 int m2CountThrLow = on ?
1264 aniState->iniDef.m2CountThrLow : m2CountThrLow_off;
1265 int m1ThreshLowExt = on ?
1266 aniState->iniDef.m1ThreshLowExt : m1ThreshLowExt_off;
1267 int m2ThreshLowExt = on ?
1268 aniState->iniDef.m2ThreshLowExt : m2ThreshLowExt_off;
1269 int m1ThreshExt = on ?
1270 aniState->iniDef.m1ThreshExt : m1ThreshExt_off;
1271 int m2ThreshExt = on ?
1272 aniState->iniDef.m2ThreshExt : m2ThreshExt_off;
1273
1274 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1275 AR_PHY_SFCORR_LOW_M1_THRESH_LOW,
1276 m1ThreshLow);
1277 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1278 AR_PHY_SFCORR_LOW_M2_THRESH_LOW,
1279 m2ThreshLow);
1280 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1281 AR_PHY_SFCORR_M1_THRESH, m1Thresh);
1282 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1283 AR_PHY_SFCORR_M2_THRESH, m2Thresh);
1284 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1285 AR_PHY_SFCORR_M2COUNT_THR, m2CountThr);
1286 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1287 AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW,
1288 m2CountThrLow);
1289
1290 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1291 AR_PHY_SFCORR_EXT_M1_THRESH_LOW, m1ThreshLowExt);
1292 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1293 AR_PHY_SFCORR_EXT_M2_THRESH_LOW, m2ThreshLowExt);
1294 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1295 AR_PHY_SFCORR_EXT_M1_THRESH, m1ThreshExt);
1296 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1297 AR_PHY_SFCORR_EXT_M2_THRESH, m2ThreshExt);
1298
1299 if (on)
1300 REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
1301 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1302 else
1303 REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
1304 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1305
1306 if (!on != aniState->ofdmWeakSigDetectOff) {
Joe Perches226afe62010-12-02 19:12:37 -08001307 ath_dbg(common, ATH_DBG_ANI,
1308 "** ch %d: ofdm weak signal: %s=>%s\n",
1309 chan->channel,
1310 !aniState->ofdmWeakSigDetectOff ?
1311 "on" : "off",
1312 on ? "on" : "off");
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001313 if (on)
1314 ah->stats.ast_ani_ofdmon++;
1315 else
1316 ah->stats.ast_ani_ofdmoff++;
1317 aniState->ofdmWeakSigDetectOff = !on;
1318 }
1319 break;
1320 }
1321 case ATH9K_ANI_FIRSTEP_LEVEL:{
1322 u32 level = param;
1323
1324 if (level >= ARRAY_SIZE(firstep_table)) {
Joe Perches226afe62010-12-02 19:12:37 -08001325 ath_dbg(common, ATH_DBG_ANI,
1326 "ATH9K_ANI_FIRSTEP_LEVEL: level out of range (%u > %zu)\n",
1327 level, ARRAY_SIZE(firstep_table));
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001328 return false;
1329 }
1330
1331 /*
1332 * make register setting relative to default
1333 * from INI file & cap value
1334 */
1335 value = firstep_table[level] -
1336 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
1337 aniState->iniDef.firstep;
1338 if (value < ATH9K_SIG_FIRSTEP_SETTING_MIN)
1339 value = ATH9K_SIG_FIRSTEP_SETTING_MIN;
1340 if (value > ATH9K_SIG_FIRSTEP_SETTING_MAX)
1341 value = ATH9K_SIG_FIRSTEP_SETTING_MAX;
1342 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
1343 AR_PHY_FIND_SIG_FIRSTEP,
1344 value);
1345 /*
1346 * we need to set first step low register too
1347 * make register setting relative to default
1348 * from INI file & cap value
1349 */
1350 value2 = firstep_table[level] -
1351 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
1352 aniState->iniDef.firstepLow;
1353 if (value2 < ATH9K_SIG_FIRSTEP_SETTING_MIN)
1354 value2 = ATH9K_SIG_FIRSTEP_SETTING_MIN;
1355 if (value2 > ATH9K_SIG_FIRSTEP_SETTING_MAX)
1356 value2 = ATH9K_SIG_FIRSTEP_SETTING_MAX;
1357
1358 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG_LOW,
1359 AR_PHY_FIND_SIG_FIRSTEP_LOW, value2);
1360
1361 if (level != aniState->firstepLevel) {
Joe Perches226afe62010-12-02 19:12:37 -08001362 ath_dbg(common, ATH_DBG_ANI,
1363 "** ch %d: level %d=>%d[def:%d] firstep[level]=%d ini=%d\n",
1364 chan->channel,
1365 aniState->firstepLevel,
1366 level,
1367 ATH9K_ANI_FIRSTEP_LVL_NEW,
1368 value,
1369 aniState->iniDef.firstep);
1370 ath_dbg(common, ATH_DBG_ANI,
1371 "** ch %d: level %d=>%d[def:%d] firstep_low[level]=%d ini=%d\n",
1372 chan->channel,
1373 aniState->firstepLevel,
1374 level,
1375 ATH9K_ANI_FIRSTEP_LVL_NEW,
1376 value2,
1377 aniState->iniDef.firstepLow);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001378 if (level > aniState->firstepLevel)
1379 ah->stats.ast_ani_stepup++;
1380 else if (level < aniState->firstepLevel)
1381 ah->stats.ast_ani_stepdown++;
1382 aniState->firstepLevel = level;
1383 }
1384 break;
1385 }
1386 case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
1387 u32 level = param;
1388
1389 if (level >= ARRAY_SIZE(cycpwrThr1_table)) {
Joe Perches226afe62010-12-02 19:12:37 -08001390 ath_dbg(common, ATH_DBG_ANI,
1391 "ATH9K_ANI_SPUR_IMMUNITY_LEVEL: level out of range (%u > %zu)\n",
1392 level, ARRAY_SIZE(cycpwrThr1_table));
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001393 return false;
1394 }
1395 /*
1396 * make register setting relative to default
1397 * from INI file & cap value
1398 */
1399 value = cycpwrThr1_table[level] -
1400 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
1401 aniState->iniDef.cycpwrThr1;
1402 if (value < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
1403 value = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
1404 if (value > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
1405 value = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
1406 REG_RMW_FIELD(ah, AR_PHY_TIMING5,
1407 AR_PHY_TIMING5_CYCPWR_THR1,
1408 value);
1409
1410 /*
1411 * set AR_PHY_EXT_CCA for extension channel
1412 * make register setting relative to default
1413 * from INI file & cap value
1414 */
1415 value2 = cycpwrThr1_table[level] -
1416 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
1417 aniState->iniDef.cycpwrThr1Ext;
1418 if (value2 < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
1419 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
1420 if (value2 > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
1421 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
1422 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
1423 AR_PHY_EXT_TIMING5_CYCPWR_THR1, value2);
1424
1425 if (level != aniState->spurImmunityLevel) {
Joe Perches226afe62010-12-02 19:12:37 -08001426 ath_dbg(common, ATH_DBG_ANI,
1427 "** ch %d: level %d=>%d[def:%d] cycpwrThr1[level]=%d ini=%d\n",
1428 chan->channel,
1429 aniState->spurImmunityLevel,
1430 level,
1431 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
1432 value,
1433 aniState->iniDef.cycpwrThr1);
1434 ath_dbg(common, ATH_DBG_ANI,
1435 "** ch %d: level %d=>%d[def:%d] cycpwrThr1Ext[level]=%d ini=%d\n",
1436 chan->channel,
1437 aniState->spurImmunityLevel,
1438 level,
1439 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
1440 value2,
1441 aniState->iniDef.cycpwrThr1Ext);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001442 if (level > aniState->spurImmunityLevel)
1443 ah->stats.ast_ani_spurup++;
1444 else if (level < aniState->spurImmunityLevel)
1445 ah->stats.ast_ani_spurdown++;
1446 aniState->spurImmunityLevel = level;
1447 }
1448 break;
1449 }
1450 case ATH9K_ANI_MRC_CCK:
1451 /*
1452 * You should not see this as AR5008, AR9001, AR9002
1453 * does not have hardware support for MRC CCK.
1454 */
1455 WARN_ON(1);
1456 break;
1457 case ATH9K_ANI_PRESENT:
1458 break;
1459 default:
Joe Perches226afe62010-12-02 19:12:37 -08001460 ath_dbg(common, ATH_DBG_ANI, "invalid cmd %u\n", cmd);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001461 return false;
1462 }
1463
Joe Perches226afe62010-12-02 19:12:37 -08001464 ath_dbg(common, ATH_DBG_ANI,
1465 "ANI parameters: SI=%d, ofdmWS=%s FS=%d MRCcck=%s listenTime=%d ofdmErrs=%d cckErrs=%d\n",
1466 aniState->spurImmunityLevel,
1467 !aniState->ofdmWeakSigDetectOff ? "on" : "off",
1468 aniState->firstepLevel,
1469 !aniState->mrcCCKOff ? "on" : "off",
1470 aniState->listenTime,
1471 aniState->ofdmPhyErrCount,
1472 aniState->cckPhyErrCount);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001473 return true;
1474}
1475
Felix Fietkau641d9922010-04-15 17:38:49 -04001476static void ar5008_hw_do_getnf(struct ath_hw *ah,
1477 int16_t nfarray[NUM_NF_READINGS])
1478{
Felix Fietkau641d9922010-04-15 17:38:49 -04001479 int16_t nf;
1480
1481 nf = MS(REG_READ(ah, AR_PHY_CCA), AR_PHY_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001482 nfarray[0] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001483
1484 nf = MS(REG_READ(ah, AR_PHY_CH1_CCA), AR_PHY_CH1_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001485 nfarray[1] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001486
1487 nf = MS(REG_READ(ah, AR_PHY_CH2_CCA), AR_PHY_CH2_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001488 nfarray[2] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001489
Felix Fietkau866b7782010-07-23 04:07:48 +02001490 if (!IS_CHAN_HT40(ah->curchan))
1491 return;
1492
Felix Fietkau641d9922010-04-15 17:38:49 -04001493 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA), AR_PHY_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001494 nfarray[3] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001495
1496 nf = MS(REG_READ(ah, AR_PHY_CH1_EXT_CCA), AR_PHY_CH1_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001497 nfarray[4] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001498
1499 nf = MS(REG_READ(ah, AR_PHY_CH2_EXT_CCA), AR_PHY_CH2_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001500 nfarray[5] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001501}
1502
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001503/*
1504 * Initialize the ANI register values with default (ini) values.
1505 * This routine is called during a (full) hardware reset after
1506 * all the registers are initialised from the INI.
1507 */
1508static void ar5008_hw_ani_cache_ini_regs(struct ath_hw *ah)
1509{
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001510 struct ath_common *common = ath9k_hw_common(ah);
1511 struct ath9k_channel *chan = ah->curchan;
Felix Fietkau093115b2010-10-04 20:09:47 +02001512 struct ar5416AniState *aniState = &chan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001513 struct ath9k_ani_default *iniDef;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001514 u32 val;
1515
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001516 iniDef = &aniState->iniDef;
1517
Joe Perches226afe62010-12-02 19:12:37 -08001518 ath_dbg(common, ATH_DBG_ANI, "ver %d.%d opmode %u chan %d Mhz/0x%x\n",
1519 ah->hw_version.macVersion,
1520 ah->hw_version.macRev,
1521 ah->opmode,
1522 chan->channel,
1523 chan->channelFlags);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001524
1525 val = REG_READ(ah, AR_PHY_SFCORR);
1526 iniDef->m1Thresh = MS(val, AR_PHY_SFCORR_M1_THRESH);
1527 iniDef->m2Thresh = MS(val, AR_PHY_SFCORR_M2_THRESH);
1528 iniDef->m2CountThr = MS(val, AR_PHY_SFCORR_M2COUNT_THR);
1529
1530 val = REG_READ(ah, AR_PHY_SFCORR_LOW);
1531 iniDef->m1ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M1_THRESH_LOW);
1532 iniDef->m2ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M2_THRESH_LOW);
1533 iniDef->m2CountThrLow = MS(val, AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW);
1534
1535 val = REG_READ(ah, AR_PHY_SFCORR_EXT);
1536 iniDef->m1ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH);
1537 iniDef->m2ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH);
1538 iniDef->m1ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH_LOW);
1539 iniDef->m2ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH_LOW);
1540 iniDef->firstep = REG_READ_FIELD(ah,
1541 AR_PHY_FIND_SIG,
1542 AR_PHY_FIND_SIG_FIRSTEP);
1543 iniDef->firstepLow = REG_READ_FIELD(ah,
1544 AR_PHY_FIND_SIG_LOW,
1545 AR_PHY_FIND_SIG_FIRSTEP_LOW);
1546 iniDef->cycpwrThr1 = REG_READ_FIELD(ah,
1547 AR_PHY_TIMING5,
1548 AR_PHY_TIMING5_CYCPWR_THR1);
1549 iniDef->cycpwrThr1Ext = REG_READ_FIELD(ah,
1550 AR_PHY_EXT_CCA,
1551 AR_PHY_EXT_TIMING5_CYCPWR_THR1);
1552
1553 /* these levels just got reset to defaults by the INI */
1554 aniState->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL_NEW;
1555 aniState->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW;
1556 aniState->ofdmWeakSigDetectOff = !ATH9K_ANI_USE_OFDM_WEAK_SIG;
1557 aniState->mrcCCKOff = true; /* not available on pre AR9003 */
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001558}
1559
Felix Fietkauf2552e22010-07-02 00:09:50 +02001560static void ar5008_hw_set_nf_limits(struct ath_hw *ah)
1561{
1562 ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_5416_2GHZ;
1563 ah->nf_2g.min = AR_PHY_CCA_MIN_GOOD_VAL_5416_2GHZ;
1564 ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_5416_2GHZ;
1565 ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_5416_5GHZ;
1566 ah->nf_5g.min = AR_PHY_CCA_MIN_GOOD_VAL_5416_5GHZ;
1567 ah->nf_5g.nominal = AR_PHY_CCA_NOM_VAL_5416_5GHZ;
1568}
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001569
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001570static void ar5008_hw_set_radar_params(struct ath_hw *ah,
1571 struct ath_hw_radar_conf *conf)
1572{
1573 u32 radar_0 = 0, radar_1 = 0;
1574
1575 if (!conf) {
1576 REG_CLR_BIT(ah, AR_PHY_RADAR_0, AR_PHY_RADAR_0_ENA);
1577 return;
1578 }
1579
1580 radar_0 |= AR_PHY_RADAR_0_ENA | AR_PHY_RADAR_0_FFT_ENA;
1581 radar_0 |= SM(conf->fir_power, AR_PHY_RADAR_0_FIRPWR);
1582 radar_0 |= SM(conf->radar_rssi, AR_PHY_RADAR_0_RRSSI);
1583 radar_0 |= SM(conf->pulse_height, AR_PHY_RADAR_0_HEIGHT);
1584 radar_0 |= SM(conf->pulse_rssi, AR_PHY_RADAR_0_PRSSI);
1585 radar_0 |= SM(conf->pulse_inband, AR_PHY_RADAR_0_INBAND);
1586
1587 radar_1 |= AR_PHY_RADAR_1_MAX_RRSSI;
1588 radar_1 |= AR_PHY_RADAR_1_BLOCK_CHECK;
1589 radar_1 |= SM(conf->pulse_maxlen, AR_PHY_RADAR_1_MAXLEN);
1590 radar_1 |= SM(conf->pulse_inband_step, AR_PHY_RADAR_1_RELSTEP_THRESH);
1591 radar_1 |= SM(conf->radar_inband, AR_PHY_RADAR_1_RELPWR_THRESH);
1592
1593 REG_WRITE(ah, AR_PHY_RADAR_0, radar_0);
1594 REG_WRITE(ah, AR_PHY_RADAR_1, radar_1);
1595 if (conf->ext_channel)
1596 REG_SET_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1597 else
1598 REG_CLR_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1599}
1600
Felix Fietkauc5d08552010-11-13 20:22:41 +01001601static void ar5008_hw_set_radar_conf(struct ath_hw *ah)
1602{
1603 struct ath_hw_radar_conf *conf = &ah->radar_conf;
1604
1605 conf->fir_power = -33;
1606 conf->radar_rssi = 20;
1607 conf->pulse_height = 10;
1608 conf->pulse_rssi = 24;
1609 conf->pulse_inband = 15;
1610 conf->pulse_maxlen = 255;
1611 conf->pulse_inband_step = 12;
1612 conf->radar_inband = 8;
1613}
1614
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001615void ar5008_hw_attach_phy_ops(struct ath_hw *ah)
1616{
1617 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
Joe Perches07b2fa52010-11-20 18:38:53 -08001618 static const u32 ar5416_cca_regs[6] = {
Felix Fietkaubbacee12010-07-11 15:44:42 +02001619 AR_PHY_CCA,
1620 AR_PHY_CH1_CCA,
1621 AR_PHY_CH2_CCA,
1622 AR_PHY_EXT_CCA,
1623 AR_PHY_CH1_EXT_CCA,
1624 AR_PHY_CH2_EXT_CCA
1625 };
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001626
1627 priv_ops->rf_set_freq = ar5008_hw_set_channel;
1628 priv_ops->spur_mitigate_freq = ar5008_hw_spur_mitigate;
1629
1630 priv_ops->rf_alloc_ext_banks = ar5008_hw_rf_alloc_ext_banks;
1631 priv_ops->rf_free_ext_banks = ar5008_hw_rf_free_ext_banks;
1632 priv_ops->set_rf_regs = ar5008_hw_set_rf_regs;
1633 priv_ops->set_channel_regs = ar5008_hw_set_channel_regs;
1634 priv_ops->init_bb = ar5008_hw_init_bb;
1635 priv_ops->process_ini = ar5008_hw_process_ini;
1636 priv_ops->set_rfmode = ar5008_hw_set_rfmode;
1637 priv_ops->mark_phy_inactive = ar5008_hw_mark_phy_inactive;
1638 priv_ops->set_delta_slope = ar5008_hw_set_delta_slope;
1639 priv_ops->rfbus_req = ar5008_hw_rfbus_req;
1640 priv_ops->rfbus_done = ar5008_hw_rfbus_done;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001641 priv_ops->restore_chainmask = ar5008_restore_chainmask;
Felix Fietkau641d9922010-04-15 17:38:49 -04001642 priv_ops->do_getnf = ar5008_hw_do_getnf;
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001643 priv_ops->set_radar_params = ar5008_hw_set_radar_params;
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001644
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001645 if (modparam_force_new_ani) {
1646 priv_ops->ani_control = ar5008_hw_ani_control_new;
1647 priv_ops->ani_cache_ini_regs = ar5008_hw_ani_cache_ini_regs;
1648 } else
1649 priv_ops->ani_control = ar5008_hw_ani_control_old;
1650
Felix Fietkau491b2092011-09-15 14:25:38 +02001651 if (AR_SREV_9100(ah) || AR_SREV_9160_10_OR_LATER(ah))
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001652 priv_ops->compute_pll_control = ar9160_hw_compute_pll_control;
1653 else
1654 priv_ops->compute_pll_control = ar5008_hw_compute_pll_control;
Felix Fietkauf2552e22010-07-02 00:09:50 +02001655
1656 ar5008_hw_set_nf_limits(ah);
Felix Fietkauc5d08552010-11-13 20:22:41 +01001657 ar5008_hw_set_radar_conf(ah);
Felix Fietkaubbacee12010-07-11 15:44:42 +02001658 memcpy(ah->nf_regs, ar5416_cca_regs, sizeof(ah->nf_regs));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001659}