blob: 94acce59f51d59293e51488d1ef631746cbcff4a [file] [log] [blame]
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001/*
2 * Copyright (c) 2008-2010 Atheros Communications Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
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
47/**
48 * ar5008_hw_phy_modify_rx_buffer() - perform analog swizzling of parameters
49 * @rfbuf:
50 * @reg32:
51 * @numBits:
52 * @firstBit:
53 * @column:
54 *
55 * Performs analog "swizzling" of parameters into their location.
56 * Used on external AR2133/AR5133 radios.
57 */
58static void ar5008_hw_phy_modify_rx_buffer(u32 *rfBuf, u32 reg32,
59 u32 numBits, u32 firstBit,
60 u32 column)
61{
62 u32 tmp32, mask, arrayEntry, lastBit;
63 int32_t bitPosition, bitsLeft;
64
65 tmp32 = ath9k_hw_reverse_bits(reg32, numBits);
66 arrayEntry = (firstBit - 1) / 8;
67 bitPosition = (firstBit - 1) % 8;
68 bitsLeft = numBits;
69 while (bitsLeft > 0) {
70 lastBit = (bitPosition + bitsLeft > 8) ?
71 8 : bitPosition + bitsLeft;
72 mask = (((1 << lastBit) - 1) ^ ((1 << bitPosition) - 1)) <<
73 (column * 8);
74 rfBuf[arrayEntry] &= ~mask;
75 rfBuf[arrayEntry] |= ((tmp32 << bitPosition) <<
76 (column * 8)) & mask;
77 bitsLeft -= 8 - bitPosition;
78 tmp32 = tmp32 >> (8 - bitPosition);
79 bitPosition = 0;
80 arrayEntry++;
81 }
82}
83
84/*
85 * Fix on 2.4 GHz band for orientation sensitivity issue by increasing
86 * rf_pwd_icsyndiv.
87 *
88 * Theoretical Rules:
89 * if 2 GHz band
90 * if forceBiasAuto
91 * if synth_freq < 2412
92 * bias = 0
93 * else if 2412 <= synth_freq <= 2422
94 * bias = 1
95 * else // synth_freq > 2422
96 * bias = 2
97 * else if forceBias > 0
98 * bias = forceBias & 7
99 * else
100 * no change, use value from ini file
101 * else
102 * no change, invalid band
103 *
104 * 1st Mod:
105 * 2422 also uses value of 2
106 * <approved>
107 *
108 * 2nd Mod:
109 * Less than 2412 uses value of 0, 2412 and above uses value of 2
110 */
111static void ar5008_hw_force_bias(struct ath_hw *ah, u16 synth_freq)
112{
113 struct ath_common *common = ath9k_hw_common(ah);
114 u32 tmp_reg;
115 int reg_writes = 0;
116 u32 new_bias = 0;
117
118 if (!AR_SREV_5416(ah) || synth_freq >= 3000)
119 return;
120
Felix Fietkau7a370812010-09-22 12:34:52 +0200121 BUG_ON(AR_SREV_9280_20_OR_LATER(ah));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400122
123 if (synth_freq < 2412)
124 new_bias = 0;
125 else if (synth_freq < 2422)
126 new_bias = 1;
127 else
128 new_bias = 2;
129
130 /* pre-reverse this field */
131 tmp_reg = ath9k_hw_reverse_bits(new_bias, 3);
132
Joe Perches226afe62010-12-02 19:12:37 -0800133 ath_dbg(common, ATH_DBG_CONFIG, "Force rf_pwd_icsyndiv to %1d on %4d\n",
134 new_bias, synth_freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400135
136 /* swizzle rf_pwd_icsyndiv */
137 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data, tmp_reg, 3, 181, 3);
138
139 /* write Bank 6 with new params */
140 REG_WRITE_RF_ARRAY(&ah->iniBank6, ah->analogBank6Data, reg_writes);
141}
142
143/**
144 * ar5008_hw_set_channel - tune to a channel on the external AR2133/AR5133 radios
145 * @ah: atheros hardware stucture
146 * @chan:
147 *
148 * For the external AR2133/AR5133 radios, takes the MHz channel value and set
149 * the channel value. Assumes writes enabled to analog bus and bank6 register
150 * cache in ah->analogBank6Data.
151 */
152static int ar5008_hw_set_channel(struct ath_hw *ah, struct ath9k_channel *chan)
153{
154 struct ath_common *common = ath9k_hw_common(ah);
155 u32 channelSel = 0;
156 u32 bModeSynth = 0;
157 u32 aModeRefSel = 0;
158 u32 reg32 = 0;
159 u16 freq;
160 struct chan_centers centers;
161
162 ath9k_hw_get_channel_centers(ah, chan, &centers);
163 freq = centers.synth_center;
164
165 if (freq < 4800) {
166 u32 txctl;
167
168 if (((freq - 2192) % 5) == 0) {
169 channelSel = ((freq - 672) * 2 - 3040) / 10;
170 bModeSynth = 0;
171 } else if (((freq - 2224) % 5) == 0) {
172 channelSel = ((freq - 704) * 2 - 3040) / 10;
173 bModeSynth = 1;
174 } else {
Joe Perches38002762010-12-02 19:12:36 -0800175 ath_err(common, "Invalid channel %u MHz\n", freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400176 return -EINVAL;
177 }
178
179 channelSel = (channelSel << 2) & 0xff;
180 channelSel = ath9k_hw_reverse_bits(channelSel, 8);
181
182 txctl = REG_READ(ah, AR_PHY_CCK_TX_CTRL);
183 if (freq == 2484) {
184
185 REG_WRITE(ah, AR_PHY_CCK_TX_CTRL,
186 txctl | AR_PHY_CCK_TX_CTRL_JAPAN);
187 } else {
188 REG_WRITE(ah, AR_PHY_CCK_TX_CTRL,
189 txctl & ~AR_PHY_CCK_TX_CTRL_JAPAN);
190 }
191
192 } else if ((freq % 20) == 0 && freq >= 5120) {
193 channelSel =
194 ath9k_hw_reverse_bits(((freq - 4800) / 20 << 2), 8);
195 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
196 } else if ((freq % 10) == 0) {
197 channelSel =
198 ath9k_hw_reverse_bits(((freq - 4800) / 10 << 1), 8);
199 if (AR_SREV_9100(ah) || AR_SREV_9160_10_OR_LATER(ah))
200 aModeRefSel = ath9k_hw_reverse_bits(2, 2);
201 else
202 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
203 } else if ((freq % 5) == 0) {
204 channelSel = ath9k_hw_reverse_bits((freq - 4800) / 5, 8);
205 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
206 } else {
Joe Perches38002762010-12-02 19:12:36 -0800207 ath_err(common, "Invalid channel %u MHz\n", freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400208 return -EINVAL;
209 }
210
211 ar5008_hw_force_bias(ah, freq);
212
213 reg32 =
214 (channelSel << 8) | (aModeRefSel << 2) | (bModeSynth << 1) |
215 (1 << 5) | 0x1;
216
217 REG_WRITE(ah, AR_PHY(0x37), reg32);
218
219 ah->curchan = chan;
220 ah->curchan_rad_index = -1;
221
222 return 0;
223}
224
225/**
226 * ar5008_hw_spur_mitigate - convert baseband spur frequency for external radios
227 * @ah: atheros hardware structure
228 * @chan:
229 *
230 * For non single-chip solutions. Converts to baseband spur frequency given the
231 * input channel frequency and compute register settings below.
232 */
233static void ar5008_hw_spur_mitigate(struct ath_hw *ah,
234 struct ath9k_channel *chan)
235{
236 int bb_spur = AR_NO_SPUR;
237 int bin, cur_bin;
238 int spur_freq_sd;
239 int spur_delta_phase;
240 int denominator;
241 int upper, lower, cur_vit_mask;
242 int tmp, new;
243 int i;
Joe Perches07b2fa52010-11-20 18:38:53 -0800244 static int pilot_mask_reg[4] = {
245 AR_PHY_TIMING7, AR_PHY_TIMING8,
246 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400247 };
Joe Perches07b2fa52010-11-20 18:38:53 -0800248 static int chan_mask_reg[4] = {
249 AR_PHY_TIMING9, AR_PHY_TIMING10,
250 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400251 };
Joe Perches07b2fa52010-11-20 18:38:53 -0800252 static int inc[4] = { 0, 100, 0, 0 };
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400253
254 int8_t mask_m[123];
255 int8_t mask_p[123];
256 int8_t mask_amt;
257 int tmp_mask;
258 int cur_bb_spur;
259 bool is2GHz = IS_CHAN_2GHZ(chan);
260
261 memset(&mask_m, 0, sizeof(int8_t) * 123);
262 memset(&mask_p, 0, sizeof(int8_t) * 123);
263
264 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
265 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
266 if (AR_NO_SPUR == cur_bb_spur)
267 break;
268 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
269 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
270 bb_spur = cur_bb_spur;
271 break;
272 }
273 }
274
275 if (AR_NO_SPUR == bb_spur)
276 return;
277
278 bin = bb_spur * 32;
279
280 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
281 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
282 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
283 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
284 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
285
286 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
287
288 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
289 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
290 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
291 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
292 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
293 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
294
295 spur_delta_phase = ((bb_spur * 524288) / 100) &
296 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
297
298 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
299 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
300
301 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
302 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
303 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
304 REG_WRITE(ah, AR_PHY_TIMING11, new);
305
306 cur_bin = -6000;
307 upper = bin + 100;
308 lower = bin - 100;
309
310 for (i = 0; i < 4; i++) {
311 int pilot_mask = 0;
312 int chan_mask = 0;
313 int bp = 0;
314 for (bp = 0; bp < 30; bp++) {
315 if ((cur_bin > lower) && (cur_bin < upper)) {
316 pilot_mask = pilot_mask | 0x1 << bp;
317 chan_mask = chan_mask | 0x1 << bp;
318 }
319 cur_bin += 100;
320 }
321 cur_bin += inc[i];
322 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
323 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
324 }
325
326 cur_vit_mask = 6100;
327 upper = bin + 120;
328 lower = bin - 120;
329
330 for (i = 0; i < 123; i++) {
331 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
332
333 /* workaround for gcc bug #37014 */
334 volatile int tmp_v = abs(cur_vit_mask - bin);
335
336 if (tmp_v < 75)
337 mask_amt = 1;
338 else
339 mask_amt = 0;
340 if (cur_vit_mask < 0)
341 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
342 else
343 mask_p[cur_vit_mask / 100] = mask_amt;
344 }
345 cur_vit_mask -= 100;
346 }
347
348 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
349 | (mask_m[48] << 26) | (mask_m[49] << 24)
350 | (mask_m[50] << 22) | (mask_m[51] << 20)
351 | (mask_m[52] << 18) | (mask_m[53] << 16)
352 | (mask_m[54] << 14) | (mask_m[55] << 12)
353 | (mask_m[56] << 10) | (mask_m[57] << 8)
354 | (mask_m[58] << 6) | (mask_m[59] << 4)
355 | (mask_m[60] << 2) | (mask_m[61] << 0);
356 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
357 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
358
359 tmp_mask = (mask_m[31] << 28)
360 | (mask_m[32] << 26) | (mask_m[33] << 24)
361 | (mask_m[34] << 22) | (mask_m[35] << 20)
362 | (mask_m[36] << 18) | (mask_m[37] << 16)
363 | (mask_m[48] << 14) | (mask_m[39] << 12)
364 | (mask_m[40] << 10) | (mask_m[41] << 8)
365 | (mask_m[42] << 6) | (mask_m[43] << 4)
366 | (mask_m[44] << 2) | (mask_m[45] << 0);
367 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
368 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
369
370 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
371 | (mask_m[18] << 26) | (mask_m[18] << 24)
372 | (mask_m[20] << 22) | (mask_m[20] << 20)
373 | (mask_m[22] << 18) | (mask_m[22] << 16)
374 | (mask_m[24] << 14) | (mask_m[24] << 12)
375 | (mask_m[25] << 10) | (mask_m[26] << 8)
376 | (mask_m[27] << 6) | (mask_m[28] << 4)
377 | (mask_m[29] << 2) | (mask_m[30] << 0);
378 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
379 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
380
381 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
382 | (mask_m[2] << 26) | (mask_m[3] << 24)
383 | (mask_m[4] << 22) | (mask_m[5] << 20)
384 | (mask_m[6] << 18) | (mask_m[7] << 16)
385 | (mask_m[8] << 14) | (mask_m[9] << 12)
386 | (mask_m[10] << 10) | (mask_m[11] << 8)
387 | (mask_m[12] << 6) | (mask_m[13] << 4)
388 | (mask_m[14] << 2) | (mask_m[15] << 0);
389 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
390 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
391
392 tmp_mask = (mask_p[15] << 28)
393 | (mask_p[14] << 26) | (mask_p[13] << 24)
394 | (mask_p[12] << 22) | (mask_p[11] << 20)
395 | (mask_p[10] << 18) | (mask_p[9] << 16)
396 | (mask_p[8] << 14) | (mask_p[7] << 12)
397 | (mask_p[6] << 10) | (mask_p[5] << 8)
398 | (mask_p[4] << 6) | (mask_p[3] << 4)
399 | (mask_p[2] << 2) | (mask_p[1] << 0);
400 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
401 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
402
403 tmp_mask = (mask_p[30] << 28)
404 | (mask_p[29] << 26) | (mask_p[28] << 24)
405 | (mask_p[27] << 22) | (mask_p[26] << 20)
406 | (mask_p[25] << 18) | (mask_p[24] << 16)
407 | (mask_p[23] << 14) | (mask_p[22] << 12)
408 | (mask_p[21] << 10) | (mask_p[20] << 8)
409 | (mask_p[19] << 6) | (mask_p[18] << 4)
410 | (mask_p[17] << 2) | (mask_p[16] << 0);
411 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
412 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
413
414 tmp_mask = (mask_p[45] << 28)
415 | (mask_p[44] << 26) | (mask_p[43] << 24)
416 | (mask_p[42] << 22) | (mask_p[41] << 20)
417 | (mask_p[40] << 18) | (mask_p[39] << 16)
418 | (mask_p[38] << 14) | (mask_p[37] << 12)
419 | (mask_p[36] << 10) | (mask_p[35] << 8)
420 | (mask_p[34] << 6) | (mask_p[33] << 4)
421 | (mask_p[32] << 2) | (mask_p[31] << 0);
422 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
423 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
424
425 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
426 | (mask_p[59] << 26) | (mask_p[58] << 24)
427 | (mask_p[57] << 22) | (mask_p[56] << 20)
428 | (mask_p[55] << 18) | (mask_p[54] << 16)
429 | (mask_p[53] << 14) | (mask_p[52] << 12)
430 | (mask_p[51] << 10) | (mask_p[50] << 8)
431 | (mask_p[49] << 6) | (mask_p[48] << 4)
432 | (mask_p[47] << 2) | (mask_p[46] << 0);
433 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
434 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
435}
436
437/**
438 * ar5008_hw_rf_alloc_ext_banks - allocates banks for external radio programming
439 * @ah: atheros hardware structure
440 *
441 * Only required for older devices with external AR2133/AR5133 radios.
442 */
443static int ar5008_hw_rf_alloc_ext_banks(struct ath_hw *ah)
444{
445#define ATH_ALLOC_BANK(bank, size) do { \
446 bank = kzalloc((sizeof(u32) * size), GFP_KERNEL); \
447 if (!bank) { \
Joe Perches38002762010-12-02 19:12:36 -0800448 ath_err(common, "Cannot allocate RF banks\n"); \
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400449 return -ENOMEM; \
450 } \
451 } while (0);
452
453 struct ath_common *common = ath9k_hw_common(ah);
454
Felix Fietkau7a370812010-09-22 12:34:52 +0200455 BUG_ON(AR_SREV_9280_20_OR_LATER(ah));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400456
457 ATH_ALLOC_BANK(ah->analogBank0Data, ah->iniBank0.ia_rows);
458 ATH_ALLOC_BANK(ah->analogBank1Data, ah->iniBank1.ia_rows);
459 ATH_ALLOC_BANK(ah->analogBank2Data, ah->iniBank2.ia_rows);
460 ATH_ALLOC_BANK(ah->analogBank3Data, ah->iniBank3.ia_rows);
461 ATH_ALLOC_BANK(ah->analogBank6Data, ah->iniBank6.ia_rows);
462 ATH_ALLOC_BANK(ah->analogBank6TPCData, ah->iniBank6TPC.ia_rows);
463 ATH_ALLOC_BANK(ah->analogBank7Data, ah->iniBank7.ia_rows);
464 ATH_ALLOC_BANK(ah->addac5416_21,
465 ah->iniAddac.ia_rows * ah->iniAddac.ia_columns);
466 ATH_ALLOC_BANK(ah->bank6Temp, ah->iniBank6.ia_rows);
467
468 return 0;
469#undef ATH_ALLOC_BANK
470}
471
472
473/**
474 * ar5008_hw_rf_free_ext_banks - Free memory for analog bank scratch buffers
475 * @ah: atheros hardware struture
476 * For the external AR2133/AR5133 radios banks.
477 */
478static void ar5008_hw_rf_free_ext_banks(struct ath_hw *ah)
479{
480#define ATH_FREE_BANK(bank) do { \
481 kfree(bank); \
482 bank = NULL; \
483 } while (0);
484
Felix Fietkau7a370812010-09-22 12:34:52 +0200485 BUG_ON(AR_SREV_9280_20_OR_LATER(ah));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400486
487 ATH_FREE_BANK(ah->analogBank0Data);
488 ATH_FREE_BANK(ah->analogBank1Data);
489 ATH_FREE_BANK(ah->analogBank2Data);
490 ATH_FREE_BANK(ah->analogBank3Data);
491 ATH_FREE_BANK(ah->analogBank6Data);
492 ATH_FREE_BANK(ah->analogBank6TPCData);
493 ATH_FREE_BANK(ah->analogBank7Data);
494 ATH_FREE_BANK(ah->addac5416_21);
495 ATH_FREE_BANK(ah->bank6Temp);
496
497#undef ATH_FREE_BANK
498}
499
500/* *
501 * ar5008_hw_set_rf_regs - programs rf registers based on EEPROM
502 * @ah: atheros hardware structure
503 * @chan:
504 * @modesIndex:
505 *
506 * Used for the external AR2133/AR5133 radios.
507 *
508 * Reads the EEPROM header info from the device structure and programs
509 * all rf registers. This routine requires access to the analog
510 * rf device. This is not required for single-chip devices.
511 */
512static bool ar5008_hw_set_rf_regs(struct ath_hw *ah,
513 struct ath9k_channel *chan,
514 u16 modesIndex)
515{
516 u32 eepMinorRev;
517 u32 ob5GHz = 0, db5GHz = 0;
518 u32 ob2GHz = 0, db2GHz = 0;
519 int regWrites = 0;
520
521 /*
522 * Software does not need to program bank data
523 * for single chip devices, that is AR9280 or anything
524 * after that.
525 */
Felix Fietkau7a370812010-09-22 12:34:52 +0200526 if (AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400527 return true;
528
529 /* Setup rf parameters */
530 eepMinorRev = ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV);
531
532 /* Setup Bank 0 Write */
533 RF_BANK_SETUP(ah->analogBank0Data, &ah->iniBank0, 1);
534
535 /* Setup Bank 1 Write */
536 RF_BANK_SETUP(ah->analogBank1Data, &ah->iniBank1, 1);
537
538 /* Setup Bank 2 Write */
539 RF_BANK_SETUP(ah->analogBank2Data, &ah->iniBank2, 1);
540
541 /* Setup Bank 6 Write */
542 RF_BANK_SETUP(ah->analogBank3Data, &ah->iniBank3,
543 modesIndex);
544 {
545 int i;
546 for (i = 0; i < ah->iniBank6TPC.ia_rows; i++) {
547 ah->analogBank6Data[i] =
548 INI_RA(&ah->iniBank6TPC, i, modesIndex);
549 }
550 }
551
552 /* Only the 5 or 2 GHz OB/DB need to be set for a mode */
553 if (eepMinorRev >= 2) {
554 if (IS_CHAN_2GHZ(chan)) {
555 ob2GHz = ah->eep_ops->get_eeprom(ah, EEP_OB_2);
556 db2GHz = ah->eep_ops->get_eeprom(ah, EEP_DB_2);
557 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
558 ob2GHz, 3, 197, 0);
559 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
560 db2GHz, 3, 194, 0);
561 } else {
562 ob5GHz = ah->eep_ops->get_eeprom(ah, EEP_OB_5);
563 db5GHz = ah->eep_ops->get_eeprom(ah, EEP_DB_5);
564 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
565 ob5GHz, 3, 203, 0);
566 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
567 db5GHz, 3, 200, 0);
568 }
569 }
570
571 /* Setup Bank 7 Setup */
572 RF_BANK_SETUP(ah->analogBank7Data, &ah->iniBank7, 1);
573
574 /* Write Analog registers */
575 REG_WRITE_RF_ARRAY(&ah->iniBank0, ah->analogBank0Data,
576 regWrites);
577 REG_WRITE_RF_ARRAY(&ah->iniBank1, ah->analogBank1Data,
578 regWrites);
579 REG_WRITE_RF_ARRAY(&ah->iniBank2, ah->analogBank2Data,
580 regWrites);
581 REG_WRITE_RF_ARRAY(&ah->iniBank3, ah->analogBank3Data,
582 regWrites);
583 REG_WRITE_RF_ARRAY(&ah->iniBank6TPC, ah->analogBank6Data,
584 regWrites);
585 REG_WRITE_RF_ARRAY(&ah->iniBank7, ah->analogBank7Data,
586 regWrites);
587
588 return true;
589}
590
591static void ar5008_hw_init_bb(struct ath_hw *ah,
592 struct ath9k_channel *chan)
593{
594 u32 synthDelay;
595
596 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
597 if (IS_CHAN_B(chan))
598 synthDelay = (4 * synthDelay) / 22;
599 else
600 synthDelay /= 10;
601
602 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
603
604 udelay(synthDelay + BASE_ACTIVATE_DELAY);
605}
606
607static void ar5008_hw_init_chain_masks(struct ath_hw *ah)
608{
609 int rx_chainmask, tx_chainmask;
610
611 rx_chainmask = ah->rxchainmask;
612 tx_chainmask = ah->txchainmask;
613
Sujith7d0d0df2010-04-16 11:53:57 +0530614
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400615 switch (rx_chainmask) {
616 case 0x5:
617 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
618 AR_PHY_SWAP_ALT_CHAIN);
619 case 0x3:
620 if (ah->hw_version.macVersion == AR_SREV_REVISION_5416_10) {
621 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
622 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
623 break;
624 }
625 case 0x1:
626 case 0x2:
627 case 0x7:
Felix Fietkau435c1612010-10-05 12:03:42 +0200628 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400629 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
630 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
631 break;
632 default:
Felix Fietkau435c1612010-10-05 12:03:42 +0200633 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400634 break;
635 }
636
637 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
Sujith7d0d0df2010-04-16 11:53:57 +0530638
639 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530640
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400641 if (tx_chainmask == 0x5) {
642 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
643 AR_PHY_SWAP_ALT_CHAIN);
644 }
645 if (AR_SREV_9100(ah))
646 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
647 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
648}
649
650static void ar5008_hw_override_ini(struct ath_hw *ah,
651 struct ath9k_channel *chan)
652{
653 u32 val;
654
655 /*
656 * Set the RX_ABORT and RX_DIS and clear if off only after
657 * RXE is set for MAC. This prevents frames with corrupted
658 * descriptor status.
659 */
660 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
661
Felix Fietkau7a370812010-09-22 12:34:52 +0200662 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400663 val = REG_READ(ah, AR_PCU_MISC_MODE2);
664
665 if (!AR_SREV_9271(ah))
666 val &= ~AR_PCU_MISC_MODE2_HWWAR1;
667
Felix Fietkaua42acef2010-09-22 12:34:54 +0200668 if (AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400669 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
670
671 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
672 }
673
674 if (!AR_SREV_5416_20_OR_LATER(ah) ||
Felix Fietkau7a370812010-09-22 12:34:52 +0200675 AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400676 return;
677 /*
678 * Disable BB clock gating
679 * Necessary to avoid issues on AR5416 2.0
680 */
681 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
682
683 /*
684 * Disable RIFS search on some chips to avoid baseband
685 * hang issues.
686 */
687 if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
688 val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
689 val &= ~AR_PHY_RIFS_INIT_DELAY;
690 REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
691 }
692}
693
694static void ar5008_hw_set_channel_regs(struct ath_hw *ah,
695 struct ath9k_channel *chan)
696{
697 u32 phymode;
698 u32 enableDacFifo = 0;
699
Felix Fietkaue17f83e2010-09-22 12:34:53 +0200700 if (AR_SREV_9285_12_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400701 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
702 AR_PHY_FC_ENABLE_DAC_FIFO);
703
704 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
705 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
706
707 if (IS_CHAN_HT40(chan)) {
708 phymode |= AR_PHY_FC_DYN2040_EN;
709
710 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
711 (chan->chanmode == CHANNEL_G_HT40PLUS))
712 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
713
714 }
715 REG_WRITE(ah, AR_PHY_TURBO, phymode);
716
717 ath9k_hw_set11nmac2040(ah);
718
Sujith7d0d0df2010-04-16 11:53:57 +0530719 ENABLE_REGWRITE_BUFFER(ah);
720
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400721 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
722 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
Sujith7d0d0df2010-04-16 11:53:57 +0530723
724 REGWRITE_BUFFER_FLUSH(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400725}
726
727
728static int ar5008_hw_process_ini(struct ath_hw *ah,
729 struct ath9k_channel *chan)
730{
731 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530732 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400733 int i, regWrites = 0;
734 struct ieee80211_channel *channel = chan->chan;
735 u32 modesIndex, freqIndex;
736
737 switch (chan->chanmode) {
738 case CHANNEL_A:
739 case CHANNEL_A_HT20:
740 modesIndex = 1;
741 freqIndex = 1;
742 break;
743 case CHANNEL_A_HT40PLUS:
744 case CHANNEL_A_HT40MINUS:
745 modesIndex = 2;
746 freqIndex = 1;
747 break;
748 case CHANNEL_G:
749 case CHANNEL_G_HT20:
750 case CHANNEL_B:
751 modesIndex = 4;
752 freqIndex = 2;
753 break;
754 case CHANNEL_G_HT40PLUS:
755 case CHANNEL_G_HT40MINUS:
756 modesIndex = 3;
757 freqIndex = 2;
758 break;
759
760 default:
761 return -EINVAL;
762 }
763
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400764 /*
765 * Set correct baseband to analog shift setting to
766 * access analog chips.
767 */
768 REG_WRITE(ah, AR_PHY(0), 0x00000007);
769
770 /* Write ADDAC shifts */
771 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
772 ah->eep_ops->set_addac(ah, chan);
773
774 if (AR_SREV_5416_22_OR_LATER(ah)) {
775 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
776 } else {
777 struct ar5416IniArray temp;
778 u32 addacSize =
779 sizeof(u32) * ah->iniAddac.ia_rows *
780 ah->iniAddac.ia_columns;
781
782 /* For AR5416 2.0/2.1 */
783 memcpy(ah->addac5416_21,
784 ah->iniAddac.ia_array, addacSize);
785
786 /* override CLKDRV value at [row, column] = [31, 1] */
787 (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
788
789 temp.ia_array = ah->addac5416_21;
790 temp.ia_columns = ah->iniAddac.ia_columns;
791 temp.ia_rows = ah->iniAddac.ia_rows;
792 REG_WRITE_ARRAY(&temp, 1, regWrites);
793 }
794
795 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
796
Sujith7d0d0df2010-04-16 11:53:57 +0530797 ENABLE_REGWRITE_BUFFER(ah);
798
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400799 for (i = 0; i < ah->iniModes.ia_rows; i++) {
800 u32 reg = INI_RA(&ah->iniModes, i, 0);
801 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
802
803 if (reg == AR_AN_TOP2 && ah->need_an_top2_fixup)
804 val &= ~AR_AN_TOP2_PWDCLKIND;
805
806 REG_WRITE(ah, reg, val);
807
808 if (reg >= 0x7800 && reg < 0x78a0
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530809 && ah->config.analog_shiftreg
810 && (common->bus_ops->ath_bus_type != ATH_USB)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400811 udelay(100);
812 }
813
814 DO_DELAY(regWrites);
815 }
816
Sujith7d0d0df2010-04-16 11:53:57 +0530817 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530818
Felix Fietkaua42acef2010-09-22 12:34:54 +0200819 if (AR_SREV_9280(ah) || AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400820 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
821
822 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
Felix Fietkaua42acef2010-09-22 12:34:54 +0200823 AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400824 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
825
826 if (AR_SREV_9271_10(ah))
827 REG_WRITE_ARRAY(&ah->iniModes_9271_1_0_only,
828 modesIndex, regWrites);
829
Sujith7d0d0df2010-04-16 11:53:57 +0530830 ENABLE_REGWRITE_BUFFER(ah);
831
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400832 /* Write common array parameters */
833 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
834 u32 reg = INI_RA(&ah->iniCommon, i, 0);
835 u32 val = INI_RA(&ah->iniCommon, i, 1);
836
837 REG_WRITE(ah, reg, val);
838
839 if (reg >= 0x7800 && reg < 0x78a0
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530840 && ah->config.analog_shiftreg
841 && (common->bus_ops->ath_bus_type != ATH_USB)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400842 udelay(100);
843 }
844
845 DO_DELAY(regWrites);
846 }
847
Sujith7d0d0df2010-04-16 11:53:57 +0530848 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530849
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400850 if (AR_SREV_9271(ah)) {
851 if (ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE) == 1)
852 REG_WRITE_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
853 modesIndex, regWrites);
854 else
855 REG_WRITE_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
856 modesIndex, regWrites);
857 }
858
859 REG_WRITE_ARRAY(&ah->iniBB_RfGain, freqIndex, regWrites);
860
Felix Fietkau6b42e8d2010-04-26 15:04:35 -0400861 if (IS_CHAN_A_FAST_CLOCK(ah, chan)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400862 REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
863 regWrites);
864 }
865
866 ar5008_hw_override_ini(ah, chan);
867 ar5008_hw_set_channel_regs(ah, chan);
868 ar5008_hw_init_chain_masks(ah);
869 ath9k_olc_init(ah);
870
871 /* Set TX power */
872 ah->eep_ops->set_txpower(ah, chan,
873 ath9k_regd_get_ctl(regulatory, chan),
874 channel->max_antenna_gain * 2,
875 channel->max_power * 2,
876 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +0200877 (u32) regulatory->power_limit), false);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400878
879 /* Write analog registers */
880 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Joe Perches38002762010-12-02 19:12:36 -0800881 ath_err(ath9k_hw_common(ah), "ar5416SetRfRegs failed\n");
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400882 return -EIO;
883 }
884
885 return 0;
886}
887
888static void ar5008_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
889{
890 u32 rfMode = 0;
891
892 if (chan == NULL)
893 return;
894
895 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
896 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
897
Felix Fietkau7a370812010-09-22 12:34:52 +0200898 if (!AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400899 rfMode |= (IS_CHAN_5GHZ(chan)) ?
900 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
901
Felix Fietkau6b42e8d2010-04-26 15:04:35 -0400902 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400903 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
904
905 REG_WRITE(ah, AR_PHY_MODE, rfMode);
906}
907
908static void ar5008_hw_mark_phy_inactive(struct ath_hw *ah)
909{
910 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
911}
912
913static void ar5008_hw_set_delta_slope(struct ath_hw *ah,
914 struct ath9k_channel *chan)
915{
916 u32 coef_scaled, ds_coef_exp, ds_coef_man;
917 u32 clockMhzScaled = 0x64000000;
918 struct chan_centers centers;
919
920 if (IS_CHAN_HALF_RATE(chan))
921 clockMhzScaled = clockMhzScaled >> 1;
922 else if (IS_CHAN_QUARTER_RATE(chan))
923 clockMhzScaled = clockMhzScaled >> 2;
924
925 ath9k_hw_get_channel_centers(ah, chan, &centers);
926 coef_scaled = clockMhzScaled / centers.synth_center;
927
928 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
929 &ds_coef_exp);
930
931 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
932 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
933 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
934 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
935
936 coef_scaled = (9 * coef_scaled) / 10;
937
938 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
939 &ds_coef_exp);
940
941 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
942 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
943 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
944 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
945}
946
947static bool ar5008_hw_rfbus_req(struct ath_hw *ah)
948{
949 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
950 return ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
951 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT);
952}
953
954static void ar5008_hw_rfbus_done(struct ath_hw *ah)
955{
956 u32 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
957 if (IS_CHAN_B(ah->curchan))
958 synthDelay = (4 * synthDelay) / 22;
959 else
960 synthDelay /= 10;
961
962 udelay(synthDelay + BASE_ACTIVATE_DELAY);
963
964 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
965}
966
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400967static void ar5008_restore_chainmask(struct ath_hw *ah)
968{
969 int rx_chainmask = ah->rxchainmask;
970
971 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
972 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
973 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
974 }
975}
976
977static void ar5008_set_diversity(struct ath_hw *ah, bool value)
978{
979 u32 v = REG_READ(ah, AR_PHY_CCK_DETECT);
980 if (value)
981 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
982 else
983 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
984 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
985}
986
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400987static u32 ar9100_hw_compute_pll_control(struct ath_hw *ah,
988 struct ath9k_channel *chan)
989{
990 if (chan && IS_CHAN_5GHZ(chan))
991 return 0x1450;
992 return 0x1458;
993}
994
995static u32 ar9160_hw_compute_pll_control(struct ath_hw *ah,
996 struct ath9k_channel *chan)
997{
998 u32 pll;
999
1000 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
1001
1002 if (chan && IS_CHAN_HALF_RATE(chan))
1003 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
1004 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1005 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
1006
1007 if (chan && IS_CHAN_5GHZ(chan))
1008 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
1009 else
1010 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
1011
1012 return pll;
1013}
1014
1015static u32 ar5008_hw_compute_pll_control(struct ath_hw *ah,
1016 struct ath9k_channel *chan)
1017{
1018 u32 pll;
1019
1020 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
1021
1022 if (chan && IS_CHAN_HALF_RATE(chan))
1023 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
1024 else if (chan && IS_CHAN_QUARTER_RATE(chan))
1025 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
1026
1027 if (chan && IS_CHAN_5GHZ(chan))
1028 pll |= SM(0xa, AR_RTC_PLL_DIV);
1029 else
1030 pll |= SM(0xb, AR_RTC_PLL_DIV);
1031
1032 return pll;
1033}
1034
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001035static bool ar5008_hw_ani_control_old(struct ath_hw *ah,
1036 enum ath9k_ani_cmd cmd,
1037 int param)
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001038{
Felix Fietkau093115b2010-10-04 20:09:47 +02001039 struct ar5416AniState *aniState = &ah->curchan->ani;
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001040 struct ath_common *common = ath9k_hw_common(ah);
1041
1042 switch (cmd & ah->ani_function) {
1043 case ATH9K_ANI_NOISE_IMMUNITY_LEVEL:{
1044 u32 level = param;
1045
1046 if (level >= ARRAY_SIZE(ah->totalSizeDesired)) {
Joe Perches226afe62010-12-02 19:12:37 -08001047 ath_dbg(common, ATH_DBG_ANI,
1048 "level out of range (%u > %zu)\n",
1049 level, ARRAY_SIZE(ah->totalSizeDesired));
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001050 return false;
1051 }
1052
1053 REG_RMW_FIELD(ah, AR_PHY_DESIRED_SZ,
1054 AR_PHY_DESIRED_SZ_TOT_DES,
1055 ah->totalSizeDesired[level]);
1056 REG_RMW_FIELD(ah, AR_PHY_AGC_CTL1,
1057 AR_PHY_AGC_CTL1_COARSE_LOW,
1058 ah->coarse_low[level]);
1059 REG_RMW_FIELD(ah, AR_PHY_AGC_CTL1,
1060 AR_PHY_AGC_CTL1_COARSE_HIGH,
1061 ah->coarse_high[level]);
1062 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
1063 AR_PHY_FIND_SIG_FIRPWR,
1064 ah->firpwr[level]);
1065
1066 if (level > aniState->noiseImmunityLevel)
1067 ah->stats.ast_ani_niup++;
1068 else if (level < aniState->noiseImmunityLevel)
1069 ah->stats.ast_ani_nidown++;
1070 aniState->noiseImmunityLevel = level;
1071 break;
1072 }
1073 case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001074 static const int m1ThreshLow[] = { 127, 50 };
1075 static const int m2ThreshLow[] = { 127, 40 };
1076 static const int m1Thresh[] = { 127, 0x4d };
1077 static const int m2Thresh[] = { 127, 0x40 };
1078 static const int m2CountThr[] = { 31, 16 };
1079 static const int m2CountThrLow[] = { 63, 48 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001080 u32 on = param ? 1 : 0;
1081
1082 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1083 AR_PHY_SFCORR_LOW_M1_THRESH_LOW,
1084 m1ThreshLow[on]);
1085 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1086 AR_PHY_SFCORR_LOW_M2_THRESH_LOW,
1087 m2ThreshLow[on]);
1088 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1089 AR_PHY_SFCORR_M1_THRESH,
1090 m1Thresh[on]);
1091 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1092 AR_PHY_SFCORR_M2_THRESH,
1093 m2Thresh[on]);
1094 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1095 AR_PHY_SFCORR_M2COUNT_THR,
1096 m2CountThr[on]);
1097 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1098 AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW,
1099 m2CountThrLow[on]);
1100
1101 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1102 AR_PHY_SFCORR_EXT_M1_THRESH_LOW,
1103 m1ThreshLow[on]);
1104 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1105 AR_PHY_SFCORR_EXT_M2_THRESH_LOW,
1106 m2ThreshLow[on]);
1107 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1108 AR_PHY_SFCORR_EXT_M1_THRESH,
1109 m1Thresh[on]);
1110 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1111 AR_PHY_SFCORR_EXT_M2_THRESH,
1112 m2Thresh[on]);
1113
1114 if (on)
1115 REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
1116 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1117 else
1118 REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
1119 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1120
1121 if (!on != aniState->ofdmWeakSigDetectOff) {
1122 if (on)
1123 ah->stats.ast_ani_ofdmon++;
1124 else
1125 ah->stats.ast_ani_ofdmoff++;
1126 aniState->ofdmWeakSigDetectOff = !on;
1127 }
1128 break;
1129 }
1130 case ATH9K_ANI_CCK_WEAK_SIGNAL_THR:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001131 static const int weakSigThrCck[] = { 8, 6 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001132 u32 high = param ? 1 : 0;
1133
1134 REG_RMW_FIELD(ah, AR_PHY_CCK_DETECT,
1135 AR_PHY_CCK_DETECT_WEAK_SIG_THR_CCK,
1136 weakSigThrCck[high]);
1137 if (high != aniState->cckWeakSigThreshold) {
1138 if (high)
1139 ah->stats.ast_ani_cckhigh++;
1140 else
1141 ah->stats.ast_ani_ccklow++;
1142 aniState->cckWeakSigThreshold = high;
1143 }
1144 break;
1145 }
1146 case ATH9K_ANI_FIRSTEP_LEVEL:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001147 static const int firstep[] = { 0, 4, 8 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001148 u32 level = param;
1149
1150 if (level >= ARRAY_SIZE(firstep)) {
Joe Perches226afe62010-12-02 19:12:37 -08001151 ath_dbg(common, ATH_DBG_ANI,
1152 "level out of range (%u > %zu)\n",
1153 level, ARRAY_SIZE(firstep));
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001154 return false;
1155 }
1156 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
1157 AR_PHY_FIND_SIG_FIRSTEP,
1158 firstep[level]);
1159 if (level > aniState->firstepLevel)
1160 ah->stats.ast_ani_stepup++;
1161 else if (level < aniState->firstepLevel)
1162 ah->stats.ast_ani_stepdown++;
1163 aniState->firstepLevel = level;
1164 break;
1165 }
1166 case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
Joe Perches07b2fa52010-11-20 18:38:53 -08001167 static const int cycpwrThr1[] = { 2, 4, 6, 8, 10, 12, 14, 16 };
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001168 u32 level = param;
1169
1170 if (level >= ARRAY_SIZE(cycpwrThr1)) {
Joe Perches226afe62010-12-02 19:12:37 -08001171 ath_dbg(common, ATH_DBG_ANI,
1172 "level out of range (%u > %zu)\n",
1173 level, ARRAY_SIZE(cycpwrThr1));
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001174 return false;
1175 }
1176 REG_RMW_FIELD(ah, AR_PHY_TIMING5,
1177 AR_PHY_TIMING5_CYCPWR_THR1,
1178 cycpwrThr1[level]);
1179 if (level > aniState->spurImmunityLevel)
1180 ah->stats.ast_ani_spurup++;
1181 else if (level < aniState->spurImmunityLevel)
1182 ah->stats.ast_ani_spurdown++;
1183 aniState->spurImmunityLevel = level;
1184 break;
1185 }
1186 case ATH9K_ANI_PRESENT:
1187 break;
1188 default:
Joe Perches226afe62010-12-02 19:12:37 -08001189 ath_dbg(common, ATH_DBG_ANI, "invalid cmd %u\n", cmd);
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001190 return false;
1191 }
1192
Joe Perches226afe62010-12-02 19:12:37 -08001193 ath_dbg(common, ATH_DBG_ANI, "ANI parameters:\n");
1194 ath_dbg(common, ATH_DBG_ANI,
1195 "noiseImmunityLevel=%d, spurImmunityLevel=%d, ofdmWeakSigDetectOff=%d\n",
1196 aniState->noiseImmunityLevel,
1197 aniState->spurImmunityLevel,
1198 !aniState->ofdmWeakSigDetectOff);
1199 ath_dbg(common, ATH_DBG_ANI,
1200 "cckWeakSigThreshold=%d, firstepLevel=%d, listenTime=%d\n",
1201 aniState->cckWeakSigThreshold,
1202 aniState->firstepLevel,
1203 aniState->listenTime);
1204 ath_dbg(common, ATH_DBG_ANI,
Felix Fietkau9dbebc72010-10-03 19:07:17 +02001205 "ofdmPhyErrCount=%d, cckPhyErrCount=%d\n\n",
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001206 aniState->ofdmPhyErrCount,
1207 aniState->cckPhyErrCount);
1208
1209 return true;
1210}
1211
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001212static bool ar5008_hw_ani_control_new(struct ath_hw *ah,
1213 enum ath9k_ani_cmd cmd,
1214 int param)
1215{
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001216 struct ath_common *common = ath9k_hw_common(ah);
1217 struct ath9k_channel *chan = ah->curchan;
Felix Fietkau093115b2010-10-04 20:09:47 +02001218 struct ar5416AniState *aniState = &chan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001219 s32 value, value2;
1220
1221 switch (cmd & ah->ani_function) {
1222 case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
1223 /*
1224 * on == 1 means ofdm weak signal detection is ON
1225 * on == 1 is the default, for less noise immunity
1226 *
1227 * on == 0 means ofdm weak signal detection is OFF
1228 * on == 0 means more noise imm
1229 */
1230 u32 on = param ? 1 : 0;
1231 /*
1232 * make register setting for default
1233 * (weak sig detect ON) come from INI file
1234 */
1235 int m1ThreshLow = on ?
1236 aniState->iniDef.m1ThreshLow : m1ThreshLow_off;
1237 int m2ThreshLow = on ?
1238 aniState->iniDef.m2ThreshLow : m2ThreshLow_off;
1239 int m1Thresh = on ?
1240 aniState->iniDef.m1Thresh : m1Thresh_off;
1241 int m2Thresh = on ?
1242 aniState->iniDef.m2Thresh : m2Thresh_off;
1243 int m2CountThr = on ?
1244 aniState->iniDef.m2CountThr : m2CountThr_off;
1245 int m2CountThrLow = on ?
1246 aniState->iniDef.m2CountThrLow : m2CountThrLow_off;
1247 int m1ThreshLowExt = on ?
1248 aniState->iniDef.m1ThreshLowExt : m1ThreshLowExt_off;
1249 int m2ThreshLowExt = on ?
1250 aniState->iniDef.m2ThreshLowExt : m2ThreshLowExt_off;
1251 int m1ThreshExt = on ?
1252 aniState->iniDef.m1ThreshExt : m1ThreshExt_off;
1253 int m2ThreshExt = on ?
1254 aniState->iniDef.m2ThreshExt : m2ThreshExt_off;
1255
1256 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1257 AR_PHY_SFCORR_LOW_M1_THRESH_LOW,
1258 m1ThreshLow);
1259 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1260 AR_PHY_SFCORR_LOW_M2_THRESH_LOW,
1261 m2ThreshLow);
1262 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1263 AR_PHY_SFCORR_M1_THRESH, m1Thresh);
1264 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1265 AR_PHY_SFCORR_M2_THRESH, m2Thresh);
1266 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
1267 AR_PHY_SFCORR_M2COUNT_THR, m2CountThr);
1268 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
1269 AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW,
1270 m2CountThrLow);
1271
1272 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1273 AR_PHY_SFCORR_EXT_M1_THRESH_LOW, m1ThreshLowExt);
1274 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1275 AR_PHY_SFCORR_EXT_M2_THRESH_LOW, m2ThreshLowExt);
1276 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1277 AR_PHY_SFCORR_EXT_M1_THRESH, m1ThreshExt);
1278 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1279 AR_PHY_SFCORR_EXT_M2_THRESH, m2ThreshExt);
1280
1281 if (on)
1282 REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
1283 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1284 else
1285 REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
1286 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1287
1288 if (!on != aniState->ofdmWeakSigDetectOff) {
Joe Perches226afe62010-12-02 19:12:37 -08001289 ath_dbg(common, ATH_DBG_ANI,
1290 "** ch %d: ofdm weak signal: %s=>%s\n",
1291 chan->channel,
1292 !aniState->ofdmWeakSigDetectOff ?
1293 "on" : "off",
1294 on ? "on" : "off");
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001295 if (on)
1296 ah->stats.ast_ani_ofdmon++;
1297 else
1298 ah->stats.ast_ani_ofdmoff++;
1299 aniState->ofdmWeakSigDetectOff = !on;
1300 }
1301 break;
1302 }
1303 case ATH9K_ANI_FIRSTEP_LEVEL:{
1304 u32 level = param;
1305
1306 if (level >= ARRAY_SIZE(firstep_table)) {
Joe Perches226afe62010-12-02 19:12:37 -08001307 ath_dbg(common, ATH_DBG_ANI,
1308 "ATH9K_ANI_FIRSTEP_LEVEL: level out of range (%u > %zu)\n",
1309 level, ARRAY_SIZE(firstep_table));
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001310 return false;
1311 }
1312
1313 /*
1314 * make register setting relative to default
1315 * from INI file & cap value
1316 */
1317 value = firstep_table[level] -
1318 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
1319 aniState->iniDef.firstep;
1320 if (value < ATH9K_SIG_FIRSTEP_SETTING_MIN)
1321 value = ATH9K_SIG_FIRSTEP_SETTING_MIN;
1322 if (value > ATH9K_SIG_FIRSTEP_SETTING_MAX)
1323 value = ATH9K_SIG_FIRSTEP_SETTING_MAX;
1324 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
1325 AR_PHY_FIND_SIG_FIRSTEP,
1326 value);
1327 /*
1328 * we need to set first step low register too
1329 * make register setting relative to default
1330 * from INI file & cap value
1331 */
1332 value2 = firstep_table[level] -
1333 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
1334 aniState->iniDef.firstepLow;
1335 if (value2 < ATH9K_SIG_FIRSTEP_SETTING_MIN)
1336 value2 = ATH9K_SIG_FIRSTEP_SETTING_MIN;
1337 if (value2 > ATH9K_SIG_FIRSTEP_SETTING_MAX)
1338 value2 = ATH9K_SIG_FIRSTEP_SETTING_MAX;
1339
1340 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG_LOW,
1341 AR_PHY_FIND_SIG_FIRSTEP_LOW, value2);
1342
1343 if (level != aniState->firstepLevel) {
Joe Perches226afe62010-12-02 19:12:37 -08001344 ath_dbg(common, ATH_DBG_ANI,
1345 "** ch %d: level %d=>%d[def:%d] firstep[level]=%d ini=%d\n",
1346 chan->channel,
1347 aniState->firstepLevel,
1348 level,
1349 ATH9K_ANI_FIRSTEP_LVL_NEW,
1350 value,
1351 aniState->iniDef.firstep);
1352 ath_dbg(common, ATH_DBG_ANI,
1353 "** ch %d: level %d=>%d[def:%d] firstep_low[level]=%d ini=%d\n",
1354 chan->channel,
1355 aniState->firstepLevel,
1356 level,
1357 ATH9K_ANI_FIRSTEP_LVL_NEW,
1358 value2,
1359 aniState->iniDef.firstepLow);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001360 if (level > aniState->firstepLevel)
1361 ah->stats.ast_ani_stepup++;
1362 else if (level < aniState->firstepLevel)
1363 ah->stats.ast_ani_stepdown++;
1364 aniState->firstepLevel = level;
1365 }
1366 break;
1367 }
1368 case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
1369 u32 level = param;
1370
1371 if (level >= ARRAY_SIZE(cycpwrThr1_table)) {
Joe Perches226afe62010-12-02 19:12:37 -08001372 ath_dbg(common, ATH_DBG_ANI,
1373 "ATH9K_ANI_SPUR_IMMUNITY_LEVEL: level out of range (%u > %zu)\n",
1374 level, ARRAY_SIZE(cycpwrThr1_table));
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001375 return false;
1376 }
1377 /*
1378 * make register setting relative to default
1379 * from INI file & cap value
1380 */
1381 value = cycpwrThr1_table[level] -
1382 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
1383 aniState->iniDef.cycpwrThr1;
1384 if (value < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
1385 value = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
1386 if (value > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
1387 value = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
1388 REG_RMW_FIELD(ah, AR_PHY_TIMING5,
1389 AR_PHY_TIMING5_CYCPWR_THR1,
1390 value);
1391
1392 /*
1393 * set AR_PHY_EXT_CCA for extension channel
1394 * make register setting relative to default
1395 * from INI file & cap value
1396 */
1397 value2 = cycpwrThr1_table[level] -
1398 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
1399 aniState->iniDef.cycpwrThr1Ext;
1400 if (value2 < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
1401 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
1402 if (value2 > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
1403 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
1404 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
1405 AR_PHY_EXT_TIMING5_CYCPWR_THR1, value2);
1406
1407 if (level != aniState->spurImmunityLevel) {
Joe Perches226afe62010-12-02 19:12:37 -08001408 ath_dbg(common, ATH_DBG_ANI,
1409 "** ch %d: level %d=>%d[def:%d] cycpwrThr1[level]=%d ini=%d\n",
1410 chan->channel,
1411 aniState->spurImmunityLevel,
1412 level,
1413 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
1414 value,
1415 aniState->iniDef.cycpwrThr1);
1416 ath_dbg(common, ATH_DBG_ANI,
1417 "** ch %d: level %d=>%d[def:%d] cycpwrThr1Ext[level]=%d ini=%d\n",
1418 chan->channel,
1419 aniState->spurImmunityLevel,
1420 level,
1421 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
1422 value2,
1423 aniState->iniDef.cycpwrThr1Ext);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001424 if (level > aniState->spurImmunityLevel)
1425 ah->stats.ast_ani_spurup++;
1426 else if (level < aniState->spurImmunityLevel)
1427 ah->stats.ast_ani_spurdown++;
1428 aniState->spurImmunityLevel = level;
1429 }
1430 break;
1431 }
1432 case ATH9K_ANI_MRC_CCK:
1433 /*
1434 * You should not see this as AR5008, AR9001, AR9002
1435 * does not have hardware support for MRC CCK.
1436 */
1437 WARN_ON(1);
1438 break;
1439 case ATH9K_ANI_PRESENT:
1440 break;
1441 default:
Joe Perches226afe62010-12-02 19:12:37 -08001442 ath_dbg(common, ATH_DBG_ANI, "invalid cmd %u\n", cmd);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001443 return false;
1444 }
1445
Joe Perches226afe62010-12-02 19:12:37 -08001446 ath_dbg(common, ATH_DBG_ANI,
1447 "ANI parameters: SI=%d, ofdmWS=%s FS=%d MRCcck=%s listenTime=%d ofdmErrs=%d cckErrs=%d\n",
1448 aniState->spurImmunityLevel,
1449 !aniState->ofdmWeakSigDetectOff ? "on" : "off",
1450 aniState->firstepLevel,
1451 !aniState->mrcCCKOff ? "on" : "off",
1452 aniState->listenTime,
1453 aniState->ofdmPhyErrCount,
1454 aniState->cckPhyErrCount);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001455 return true;
1456}
1457
Felix Fietkau641d9922010-04-15 17:38:49 -04001458static void ar5008_hw_do_getnf(struct ath_hw *ah,
1459 int16_t nfarray[NUM_NF_READINGS])
1460{
Felix Fietkau641d9922010-04-15 17:38:49 -04001461 int16_t nf;
1462
1463 nf = MS(REG_READ(ah, AR_PHY_CCA), AR_PHY_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001464 nfarray[0] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001465
1466 nf = MS(REG_READ(ah, AR_PHY_CH1_CCA), AR_PHY_CH1_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001467 nfarray[1] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001468
1469 nf = MS(REG_READ(ah, AR_PHY_CH2_CCA), AR_PHY_CH2_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001470 nfarray[2] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001471
Felix Fietkau866b7782010-07-23 04:07:48 +02001472 if (!IS_CHAN_HT40(ah->curchan))
1473 return;
1474
Felix Fietkau641d9922010-04-15 17:38:49 -04001475 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA), AR_PHY_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001476 nfarray[3] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001477
1478 nf = MS(REG_READ(ah, AR_PHY_CH1_EXT_CCA), AR_PHY_CH1_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001479 nfarray[4] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001480
1481 nf = MS(REG_READ(ah, AR_PHY_CH2_EXT_CCA), AR_PHY_CH2_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001482 nfarray[5] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001483}
1484
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001485/*
1486 * Initialize the ANI register values with default (ini) values.
1487 * This routine is called during a (full) hardware reset after
1488 * all the registers are initialised from the INI.
1489 */
1490static void ar5008_hw_ani_cache_ini_regs(struct ath_hw *ah)
1491{
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001492 struct ath_common *common = ath9k_hw_common(ah);
1493 struct ath9k_channel *chan = ah->curchan;
Felix Fietkau093115b2010-10-04 20:09:47 +02001494 struct ar5416AniState *aniState = &chan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001495 struct ath9k_ani_default *iniDef;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001496 u32 val;
1497
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001498 iniDef = &aniState->iniDef;
1499
Joe Perches226afe62010-12-02 19:12:37 -08001500 ath_dbg(common, ATH_DBG_ANI, "ver %d.%d opmode %u chan %d Mhz/0x%x\n",
1501 ah->hw_version.macVersion,
1502 ah->hw_version.macRev,
1503 ah->opmode,
1504 chan->channel,
1505 chan->channelFlags);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001506
1507 val = REG_READ(ah, AR_PHY_SFCORR);
1508 iniDef->m1Thresh = MS(val, AR_PHY_SFCORR_M1_THRESH);
1509 iniDef->m2Thresh = MS(val, AR_PHY_SFCORR_M2_THRESH);
1510 iniDef->m2CountThr = MS(val, AR_PHY_SFCORR_M2COUNT_THR);
1511
1512 val = REG_READ(ah, AR_PHY_SFCORR_LOW);
1513 iniDef->m1ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M1_THRESH_LOW);
1514 iniDef->m2ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M2_THRESH_LOW);
1515 iniDef->m2CountThrLow = MS(val, AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW);
1516
1517 val = REG_READ(ah, AR_PHY_SFCORR_EXT);
1518 iniDef->m1ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH);
1519 iniDef->m2ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH);
1520 iniDef->m1ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH_LOW);
1521 iniDef->m2ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH_LOW);
1522 iniDef->firstep = REG_READ_FIELD(ah,
1523 AR_PHY_FIND_SIG,
1524 AR_PHY_FIND_SIG_FIRSTEP);
1525 iniDef->firstepLow = REG_READ_FIELD(ah,
1526 AR_PHY_FIND_SIG_LOW,
1527 AR_PHY_FIND_SIG_FIRSTEP_LOW);
1528 iniDef->cycpwrThr1 = REG_READ_FIELD(ah,
1529 AR_PHY_TIMING5,
1530 AR_PHY_TIMING5_CYCPWR_THR1);
1531 iniDef->cycpwrThr1Ext = REG_READ_FIELD(ah,
1532 AR_PHY_EXT_CCA,
1533 AR_PHY_EXT_TIMING5_CYCPWR_THR1);
1534
1535 /* these levels just got reset to defaults by the INI */
1536 aniState->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL_NEW;
1537 aniState->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW;
1538 aniState->ofdmWeakSigDetectOff = !ATH9K_ANI_USE_OFDM_WEAK_SIG;
1539 aniState->mrcCCKOff = true; /* not available on pre AR9003 */
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001540}
1541
Felix Fietkauf2552e22010-07-02 00:09:50 +02001542static void ar5008_hw_set_nf_limits(struct ath_hw *ah)
1543{
1544 ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_5416_2GHZ;
1545 ah->nf_2g.min = AR_PHY_CCA_MIN_GOOD_VAL_5416_2GHZ;
1546 ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_5416_2GHZ;
1547 ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_5416_5GHZ;
1548 ah->nf_5g.min = AR_PHY_CCA_MIN_GOOD_VAL_5416_5GHZ;
1549 ah->nf_5g.nominal = AR_PHY_CCA_NOM_VAL_5416_5GHZ;
1550}
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001551
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001552static void ar5008_hw_set_radar_params(struct ath_hw *ah,
1553 struct ath_hw_radar_conf *conf)
1554{
1555 u32 radar_0 = 0, radar_1 = 0;
1556
1557 if (!conf) {
1558 REG_CLR_BIT(ah, AR_PHY_RADAR_0, AR_PHY_RADAR_0_ENA);
1559 return;
1560 }
1561
1562 radar_0 |= AR_PHY_RADAR_0_ENA | AR_PHY_RADAR_0_FFT_ENA;
1563 radar_0 |= SM(conf->fir_power, AR_PHY_RADAR_0_FIRPWR);
1564 radar_0 |= SM(conf->radar_rssi, AR_PHY_RADAR_0_RRSSI);
1565 radar_0 |= SM(conf->pulse_height, AR_PHY_RADAR_0_HEIGHT);
1566 radar_0 |= SM(conf->pulse_rssi, AR_PHY_RADAR_0_PRSSI);
1567 radar_0 |= SM(conf->pulse_inband, AR_PHY_RADAR_0_INBAND);
1568
1569 radar_1 |= AR_PHY_RADAR_1_MAX_RRSSI;
1570 radar_1 |= AR_PHY_RADAR_1_BLOCK_CHECK;
1571 radar_1 |= SM(conf->pulse_maxlen, AR_PHY_RADAR_1_MAXLEN);
1572 radar_1 |= SM(conf->pulse_inband_step, AR_PHY_RADAR_1_RELSTEP_THRESH);
1573 radar_1 |= SM(conf->radar_inband, AR_PHY_RADAR_1_RELPWR_THRESH);
1574
1575 REG_WRITE(ah, AR_PHY_RADAR_0, radar_0);
1576 REG_WRITE(ah, AR_PHY_RADAR_1, radar_1);
1577 if (conf->ext_channel)
1578 REG_SET_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1579 else
1580 REG_CLR_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1581}
1582
Felix Fietkauc5d08552010-11-13 20:22:41 +01001583static void ar5008_hw_set_radar_conf(struct ath_hw *ah)
1584{
1585 struct ath_hw_radar_conf *conf = &ah->radar_conf;
1586
1587 conf->fir_power = -33;
1588 conf->radar_rssi = 20;
1589 conf->pulse_height = 10;
1590 conf->pulse_rssi = 24;
1591 conf->pulse_inband = 15;
1592 conf->pulse_maxlen = 255;
1593 conf->pulse_inband_step = 12;
1594 conf->radar_inband = 8;
1595}
1596
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001597void ar5008_hw_attach_phy_ops(struct ath_hw *ah)
1598{
1599 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
Joe Perches07b2fa52010-11-20 18:38:53 -08001600 static const u32 ar5416_cca_regs[6] = {
Felix Fietkaubbacee12010-07-11 15:44:42 +02001601 AR_PHY_CCA,
1602 AR_PHY_CH1_CCA,
1603 AR_PHY_CH2_CCA,
1604 AR_PHY_EXT_CCA,
1605 AR_PHY_CH1_EXT_CCA,
1606 AR_PHY_CH2_EXT_CCA
1607 };
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001608
1609 priv_ops->rf_set_freq = ar5008_hw_set_channel;
1610 priv_ops->spur_mitigate_freq = ar5008_hw_spur_mitigate;
1611
1612 priv_ops->rf_alloc_ext_banks = ar5008_hw_rf_alloc_ext_banks;
1613 priv_ops->rf_free_ext_banks = ar5008_hw_rf_free_ext_banks;
1614 priv_ops->set_rf_regs = ar5008_hw_set_rf_regs;
1615 priv_ops->set_channel_regs = ar5008_hw_set_channel_regs;
1616 priv_ops->init_bb = ar5008_hw_init_bb;
1617 priv_ops->process_ini = ar5008_hw_process_ini;
1618 priv_ops->set_rfmode = ar5008_hw_set_rfmode;
1619 priv_ops->mark_phy_inactive = ar5008_hw_mark_phy_inactive;
1620 priv_ops->set_delta_slope = ar5008_hw_set_delta_slope;
1621 priv_ops->rfbus_req = ar5008_hw_rfbus_req;
1622 priv_ops->rfbus_done = ar5008_hw_rfbus_done;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001623 priv_ops->restore_chainmask = ar5008_restore_chainmask;
1624 priv_ops->set_diversity = ar5008_set_diversity;
Felix Fietkau641d9922010-04-15 17:38:49 -04001625 priv_ops->do_getnf = ar5008_hw_do_getnf;
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001626 priv_ops->set_radar_params = ar5008_hw_set_radar_params;
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001627
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001628 if (modparam_force_new_ani) {
1629 priv_ops->ani_control = ar5008_hw_ani_control_new;
1630 priv_ops->ani_cache_ini_regs = ar5008_hw_ani_cache_ini_regs;
1631 } else
1632 priv_ops->ani_control = ar5008_hw_ani_control_old;
1633
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001634 if (AR_SREV_9100(ah))
1635 priv_ops->compute_pll_control = ar9100_hw_compute_pll_control;
1636 else if (AR_SREV_9160_10_OR_LATER(ah))
1637 priv_ops->compute_pll_control = ar9160_hw_compute_pll_control;
1638 else
1639 priv_ops->compute_pll_control = ar5008_hw_compute_pll_control;
Felix Fietkauf2552e22010-07-02 00:09:50 +02001640
1641 ar5008_hw_set_nf_limits(ah);
Felix Fietkauc5d08552010-11-13 20:22:41 +01001642 ar5008_hw_set_radar_conf(ah);
Felix Fietkaubbacee12010-07-11 15:44:42 +02001643 memcpy(ah->nf_regs, ar5416_cca_regs, sizeof(ah->nf_regs));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001644}