blob: cb6435e7c6f52afb44b74ebebccbcba5ddb2f673 [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"
Felix Fietkaua043dfb2013-04-08 00:04:08 +020021#include "ar5008_initvals.h"
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040022
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040023/* All code below is for AR5008, AR9001, AR9002 */
24
25static const int firstep_table[] =
26/* level: 0 1 2 3 4 5 6 7 8 */
27 { -4, -2, 0, 2, 4, 6, 8, 10, 12 }; /* lvl 0-8, default 2 */
28
29static const int cycpwrThr1_table[] =
30/* level: 0 1 2 3 4 5 6 7 8 */
31 { -6, -4, -2, 0, 2, 4, 6, 8 }; /* lvl 0-7, default 3 */
32
33/*
34 * register values to turn OFDM weak signal detection OFF
35 */
36static const int m1ThreshLow_off = 127;
37static const int m2ThreshLow_off = 127;
38static const int m1Thresh_off = 127;
39static const int m2Thresh_off = 127;
40static const int m2CountThr_off = 31;
41static const int m2CountThrLow_off = 63;
42static const int m1ThreshLowExt_off = 127;
43static const int m2ThreshLowExt_off = 127;
44static const int m1ThreshExt_off = 127;
45static const int m2ThreshExt_off = 127;
46
Felix Fietkaua043dfb2013-04-08 00:04:08 +020047static const struct ar5416IniArray bank0 = STATIC_INI_ARRAY(ar5416Bank0);
48static const struct ar5416IniArray bank1 = STATIC_INI_ARRAY(ar5416Bank1);
49static const struct ar5416IniArray bank2 = STATIC_INI_ARRAY(ar5416Bank2);
50static const struct ar5416IniArray bank3 = STATIC_INI_ARRAY(ar5416Bank3);
51static const struct ar5416IniArray bank7 = STATIC_INI_ARRAY(ar5416Bank7);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040052
Felix Fietkaua043dfb2013-04-08 00:04:08 +020053static void ar5008_write_bank6(struct ath_hw *ah, unsigned int *writecnt)
Felix Fietkaua9b6b252011-03-23 20:57:27 +010054{
Felix Fietkaua043dfb2013-04-08 00:04:08 +020055 struct ar5416IniArray *array = &ah->iniBank6;
56 u32 *data = ah->analogBank6Data;
Felix Fietkaua9b6b252011-03-23 20:57:27 +010057 int r;
58
59 ENABLE_REGWRITE_BUFFER(ah);
60
61 for (r = 0; r < array->ia_rows; r++) {
62 REG_WRITE(ah, INI_RA(array, r, 0), data[r]);
63 DO_DELAY(*writecnt);
64 }
65
66 REGWRITE_BUFFER_FLUSH(ah);
67}
68
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040069/**
70 * ar5008_hw_phy_modify_rx_buffer() - perform analog swizzling of parameters
71 * @rfbuf:
72 * @reg32:
73 * @numBits:
74 * @firstBit:
75 * @column:
76 *
77 * Performs analog "swizzling" of parameters into their location.
78 * Used on external AR2133/AR5133 radios.
79 */
80static void ar5008_hw_phy_modify_rx_buffer(u32 *rfBuf, u32 reg32,
81 u32 numBits, u32 firstBit,
82 u32 column)
83{
84 u32 tmp32, mask, arrayEntry, lastBit;
85 int32_t bitPosition, bitsLeft;
86
87 tmp32 = ath9k_hw_reverse_bits(reg32, numBits);
88 arrayEntry = (firstBit - 1) / 8;
89 bitPosition = (firstBit - 1) % 8;
90 bitsLeft = numBits;
91 while (bitsLeft > 0) {
92 lastBit = (bitPosition + bitsLeft > 8) ?
93 8 : bitPosition + bitsLeft;
94 mask = (((1 << lastBit) - 1) ^ ((1 << bitPosition) - 1)) <<
95 (column * 8);
96 rfBuf[arrayEntry] &= ~mask;
97 rfBuf[arrayEntry] |= ((tmp32 << bitPosition) <<
98 (column * 8)) & mask;
99 bitsLeft -= 8 - bitPosition;
100 tmp32 = tmp32 >> (8 - bitPosition);
101 bitPosition = 0;
102 arrayEntry++;
103 }
104}
105
106/*
107 * Fix on 2.4 GHz band for orientation sensitivity issue by increasing
108 * rf_pwd_icsyndiv.
109 *
110 * Theoretical Rules:
111 * if 2 GHz band
112 * if forceBiasAuto
113 * if synth_freq < 2412
114 * bias = 0
115 * else if 2412 <= synth_freq <= 2422
116 * bias = 1
117 * else // synth_freq > 2422
118 * bias = 2
119 * else if forceBias > 0
120 * bias = forceBias & 7
121 * else
122 * no change, use value from ini file
123 * else
124 * no change, invalid band
125 *
126 * 1st Mod:
127 * 2422 also uses value of 2
128 * <approved>
129 *
130 * 2nd Mod:
131 * Less than 2412 uses value of 0, 2412 and above uses value of 2
132 */
133static void ar5008_hw_force_bias(struct ath_hw *ah, u16 synth_freq)
134{
135 struct ath_common *common = ath9k_hw_common(ah);
136 u32 tmp_reg;
137 int reg_writes = 0;
138 u32 new_bias = 0;
139
140 if (!AR_SREV_5416(ah) || synth_freq >= 3000)
141 return;
142
Felix Fietkau7a370812010-09-22 12:34:52 +0200143 BUG_ON(AR_SREV_9280_20_OR_LATER(ah));
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400144
145 if (synth_freq < 2412)
146 new_bias = 0;
147 else if (synth_freq < 2422)
148 new_bias = 1;
149 else
150 new_bias = 2;
151
152 /* pre-reverse this field */
153 tmp_reg = ath9k_hw_reverse_bits(new_bias, 3);
154
Joe Perchesd2182b62011-12-15 14:55:53 -0800155 ath_dbg(common, CONFIG, "Force rf_pwd_icsyndiv to %1d on %4d\n",
Joe Perches226afe62010-12-02 19:12:37 -0800156 new_bias, synth_freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400157
158 /* swizzle rf_pwd_icsyndiv */
159 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data, tmp_reg, 3, 181, 3);
160
161 /* write Bank 6 with new params */
Felix Fietkaua043dfb2013-04-08 00:04:08 +0200162 ar5008_write_bank6(ah, &reg_writes);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400163}
164
165/**
166 * ar5008_hw_set_channel - tune to a channel on the external AR2133/AR5133 radios
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300167 * @ah: atheros hardware structure
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400168 * @chan:
169 *
170 * For the external AR2133/AR5133 radios, takes the MHz channel value and set
171 * the channel value. Assumes writes enabled to analog bus and bank6 register
172 * cache in ah->analogBank6Data.
173 */
174static int ar5008_hw_set_channel(struct ath_hw *ah, struct ath9k_channel *chan)
175{
176 struct ath_common *common = ath9k_hw_common(ah);
177 u32 channelSel = 0;
178 u32 bModeSynth = 0;
179 u32 aModeRefSel = 0;
180 u32 reg32 = 0;
181 u16 freq;
182 struct chan_centers centers;
183
184 ath9k_hw_get_channel_centers(ah, chan, &centers);
185 freq = centers.synth_center;
186
187 if (freq < 4800) {
188 u32 txctl;
189
190 if (((freq - 2192) % 5) == 0) {
191 channelSel = ((freq - 672) * 2 - 3040) / 10;
192 bModeSynth = 0;
193 } else if (((freq - 2224) % 5) == 0) {
194 channelSel = ((freq - 704) * 2 - 3040) / 10;
195 bModeSynth = 1;
196 } else {
Joe Perches38002762010-12-02 19:12:36 -0800197 ath_err(common, "Invalid channel %u MHz\n", freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400198 return -EINVAL;
199 }
200
201 channelSel = (channelSel << 2) & 0xff;
202 channelSel = ath9k_hw_reverse_bits(channelSel, 8);
203
204 txctl = REG_READ(ah, AR_PHY_CCK_TX_CTRL);
205 if (freq == 2484) {
206
207 REG_WRITE(ah, AR_PHY_CCK_TX_CTRL,
208 txctl | AR_PHY_CCK_TX_CTRL_JAPAN);
209 } else {
210 REG_WRITE(ah, AR_PHY_CCK_TX_CTRL,
211 txctl & ~AR_PHY_CCK_TX_CTRL_JAPAN);
212 }
213
214 } else if ((freq % 20) == 0 && freq >= 5120) {
215 channelSel =
216 ath9k_hw_reverse_bits(((freq - 4800) / 20 << 2), 8);
217 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
218 } else if ((freq % 10) == 0) {
219 channelSel =
220 ath9k_hw_reverse_bits(((freq - 4800) / 10 << 1), 8);
221 if (AR_SREV_9100(ah) || AR_SREV_9160_10_OR_LATER(ah))
222 aModeRefSel = ath9k_hw_reverse_bits(2, 2);
223 else
224 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
225 } else if ((freq % 5) == 0) {
226 channelSel = ath9k_hw_reverse_bits((freq - 4800) / 5, 8);
227 aModeRefSel = ath9k_hw_reverse_bits(1, 2);
228 } else {
Joe Perches38002762010-12-02 19:12:36 -0800229 ath_err(common, "Invalid channel %u MHz\n", freq);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400230 return -EINVAL;
231 }
232
233 ar5008_hw_force_bias(ah, freq);
234
235 reg32 =
236 (channelSel << 8) | (aModeRefSel << 2) | (bModeSynth << 1) |
237 (1 << 5) | 0x1;
238
239 REG_WRITE(ah, AR_PHY(0x37), reg32);
240
241 ah->curchan = chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400242
243 return 0;
244}
245
246/**
247 * ar5008_hw_spur_mitigate - convert baseband spur frequency for external radios
248 * @ah: atheros hardware structure
249 * @chan:
250 *
251 * For non single-chip solutions. Converts to baseband spur frequency given the
252 * input channel frequency and compute register settings below.
253 */
254static void ar5008_hw_spur_mitigate(struct ath_hw *ah,
255 struct ath9k_channel *chan)
256{
257 int bb_spur = AR_NO_SPUR;
258 int bin, cur_bin;
259 int spur_freq_sd;
260 int spur_delta_phase;
261 int denominator;
262 int upper, lower, cur_vit_mask;
263 int tmp, new;
264 int i;
Joe Perches07b2fa52010-11-20 18:38:53 -0800265 static int pilot_mask_reg[4] = {
266 AR_PHY_TIMING7, AR_PHY_TIMING8,
267 AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400268 };
Joe Perches07b2fa52010-11-20 18:38:53 -0800269 static int chan_mask_reg[4] = {
270 AR_PHY_TIMING9, AR_PHY_TIMING10,
271 AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400272 };
Joe Perches07b2fa52010-11-20 18:38:53 -0800273 static int inc[4] = { 0, 100, 0, 0 };
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400274
275 int8_t mask_m[123];
276 int8_t mask_p[123];
277 int8_t mask_amt;
278 int tmp_mask;
279 int cur_bb_spur;
280 bool is2GHz = IS_CHAN_2GHZ(chan);
281
282 memset(&mask_m, 0, sizeof(int8_t) * 123);
283 memset(&mask_p, 0, sizeof(int8_t) * 123);
284
285 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
286 cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
287 if (AR_NO_SPUR == cur_bb_spur)
288 break;
289 cur_bb_spur = cur_bb_spur - (chan->channel * 10);
290 if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
291 bb_spur = cur_bb_spur;
292 break;
293 }
294 }
295
296 if (AR_NO_SPUR == bb_spur)
297 return;
298
299 bin = bb_spur * 32;
300
301 tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
302 new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
303 AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
304 AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
305 AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
306
307 REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
308
309 new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
310 AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
311 AR_PHY_SPUR_REG_MASK_RATE_SELECT |
312 AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
313 SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
314 REG_WRITE(ah, AR_PHY_SPUR_REG, new);
315
316 spur_delta_phase = ((bb_spur * 524288) / 100) &
317 AR_PHY_TIMING11_SPUR_DELTA_PHASE;
318
319 denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
320 spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
321
322 new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
323 SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
324 SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
325 REG_WRITE(ah, AR_PHY_TIMING11, new);
326
327 cur_bin = -6000;
328 upper = bin + 100;
329 lower = bin - 100;
330
331 for (i = 0; i < 4; i++) {
332 int pilot_mask = 0;
333 int chan_mask = 0;
334 int bp = 0;
335 for (bp = 0; bp < 30; bp++) {
336 if ((cur_bin > lower) && (cur_bin < upper)) {
337 pilot_mask = pilot_mask | 0x1 << bp;
338 chan_mask = chan_mask | 0x1 << bp;
339 }
340 cur_bin += 100;
341 }
342 cur_bin += inc[i];
343 REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
344 REG_WRITE(ah, chan_mask_reg[i], chan_mask);
345 }
346
347 cur_vit_mask = 6100;
348 upper = bin + 120;
349 lower = bin - 120;
350
351 for (i = 0; i < 123; i++) {
352 if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
353
354 /* workaround for gcc bug #37014 */
355 volatile int tmp_v = abs(cur_vit_mask - bin);
356
357 if (tmp_v < 75)
358 mask_amt = 1;
359 else
360 mask_amt = 0;
361 if (cur_vit_mask < 0)
362 mask_m[abs(cur_vit_mask / 100)] = mask_amt;
363 else
364 mask_p[cur_vit_mask / 100] = mask_amt;
365 }
366 cur_vit_mask -= 100;
367 }
368
369 tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
370 | (mask_m[48] << 26) | (mask_m[49] << 24)
371 | (mask_m[50] << 22) | (mask_m[51] << 20)
372 | (mask_m[52] << 18) | (mask_m[53] << 16)
373 | (mask_m[54] << 14) | (mask_m[55] << 12)
374 | (mask_m[56] << 10) | (mask_m[57] << 8)
375 | (mask_m[58] << 6) | (mask_m[59] << 4)
376 | (mask_m[60] << 2) | (mask_m[61] << 0);
377 REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
378 REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
379
380 tmp_mask = (mask_m[31] << 28)
381 | (mask_m[32] << 26) | (mask_m[33] << 24)
382 | (mask_m[34] << 22) | (mask_m[35] << 20)
383 | (mask_m[36] << 18) | (mask_m[37] << 16)
384 | (mask_m[48] << 14) | (mask_m[39] << 12)
385 | (mask_m[40] << 10) | (mask_m[41] << 8)
386 | (mask_m[42] << 6) | (mask_m[43] << 4)
387 | (mask_m[44] << 2) | (mask_m[45] << 0);
388 REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
389 REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
390
391 tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
392 | (mask_m[18] << 26) | (mask_m[18] << 24)
393 | (mask_m[20] << 22) | (mask_m[20] << 20)
394 | (mask_m[22] << 18) | (mask_m[22] << 16)
395 | (mask_m[24] << 14) | (mask_m[24] << 12)
396 | (mask_m[25] << 10) | (mask_m[26] << 8)
397 | (mask_m[27] << 6) | (mask_m[28] << 4)
398 | (mask_m[29] << 2) | (mask_m[30] << 0);
399 REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
400 REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
401
402 tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
403 | (mask_m[2] << 26) | (mask_m[3] << 24)
404 | (mask_m[4] << 22) | (mask_m[5] << 20)
405 | (mask_m[6] << 18) | (mask_m[7] << 16)
406 | (mask_m[8] << 14) | (mask_m[9] << 12)
407 | (mask_m[10] << 10) | (mask_m[11] << 8)
408 | (mask_m[12] << 6) | (mask_m[13] << 4)
409 | (mask_m[14] << 2) | (mask_m[15] << 0);
410 REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
411 REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
412
413 tmp_mask = (mask_p[15] << 28)
414 | (mask_p[14] << 26) | (mask_p[13] << 24)
415 | (mask_p[12] << 22) | (mask_p[11] << 20)
416 | (mask_p[10] << 18) | (mask_p[9] << 16)
417 | (mask_p[8] << 14) | (mask_p[7] << 12)
418 | (mask_p[6] << 10) | (mask_p[5] << 8)
419 | (mask_p[4] << 6) | (mask_p[3] << 4)
420 | (mask_p[2] << 2) | (mask_p[1] << 0);
421 REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
422 REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
423
424 tmp_mask = (mask_p[30] << 28)
425 | (mask_p[29] << 26) | (mask_p[28] << 24)
426 | (mask_p[27] << 22) | (mask_p[26] << 20)
427 | (mask_p[25] << 18) | (mask_p[24] << 16)
428 | (mask_p[23] << 14) | (mask_p[22] << 12)
429 | (mask_p[21] << 10) | (mask_p[20] << 8)
430 | (mask_p[19] << 6) | (mask_p[18] << 4)
431 | (mask_p[17] << 2) | (mask_p[16] << 0);
432 REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
433 REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
434
435 tmp_mask = (mask_p[45] << 28)
436 | (mask_p[44] << 26) | (mask_p[43] << 24)
437 | (mask_p[42] << 22) | (mask_p[41] << 20)
438 | (mask_p[40] << 18) | (mask_p[39] << 16)
439 | (mask_p[38] << 14) | (mask_p[37] << 12)
440 | (mask_p[36] << 10) | (mask_p[35] << 8)
441 | (mask_p[34] << 6) | (mask_p[33] << 4)
442 | (mask_p[32] << 2) | (mask_p[31] << 0);
443 REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
444 REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
445
446 tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
447 | (mask_p[59] << 26) | (mask_p[58] << 24)
448 | (mask_p[57] << 22) | (mask_p[56] << 20)
449 | (mask_p[55] << 18) | (mask_p[54] << 16)
450 | (mask_p[53] << 14) | (mask_p[52] << 12)
451 | (mask_p[51] << 10) | (mask_p[50] << 8)
452 | (mask_p[49] << 6) | (mask_p[48] << 4)
453 | (mask_p[47] << 2) | (mask_p[46] << 0);
454 REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
455 REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
456}
457
458/**
459 * ar5008_hw_rf_alloc_ext_banks - allocates banks for external radio programming
460 * @ah: atheros hardware structure
461 *
462 * Only required for older devices with external AR2133/AR5133 radios.
463 */
464static int ar5008_hw_rf_alloc_ext_banks(struct ath_hw *ah)
465{
Felix Fietkaua043dfb2013-04-08 00:04:08 +0200466 int size = ah->iniBank6.ia_rows * sizeof(u32);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400467
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100468 if (AR_SREV_9280_20_OR_LATER(ah))
469 return 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400470
Felix Fietkaua043dfb2013-04-08 00:04:08 +0200471 ah->analogBank6Data = devm_kzalloc(ah->dev, size, GFP_KERNEL);
472 if (!ah->analogBank6Data)
473 return -ENOMEM;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400474
475 return 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400476}
477
478
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400479/* *
480 * ar5008_hw_set_rf_regs - programs rf registers based on EEPROM
481 * @ah: atheros hardware structure
482 * @chan:
483 * @modesIndex:
484 *
485 * Used for the external AR2133/AR5133 radios.
486 *
487 * Reads the EEPROM header info from the device structure and programs
488 * all rf registers. This routine requires access to the analog
489 * rf device. This is not required for single-chip devices.
490 */
491static bool ar5008_hw_set_rf_regs(struct ath_hw *ah,
492 struct ath9k_channel *chan,
493 u16 modesIndex)
494{
495 u32 eepMinorRev;
496 u32 ob5GHz = 0, db5GHz = 0;
497 u32 ob2GHz = 0, db2GHz = 0;
498 int regWrites = 0;
Felix Fietkau37c62fe2013-04-08 00:04:07 +0200499 int i;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400500
501 /*
502 * Software does not need to program bank data
503 * for single chip devices, that is AR9280 or anything
504 * after that.
505 */
Felix Fietkau7a370812010-09-22 12:34:52 +0200506 if (AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400507 return true;
508
509 /* Setup rf parameters */
510 eepMinorRev = ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV);
511
Felix Fietkau37c62fe2013-04-08 00:04:07 +0200512 for (i = 0; i < ah->iniBank6.ia_rows; i++)
513 ah->analogBank6Data[i] = INI_RA(&ah->iniBank6, i, modesIndex);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400514
515 /* Only the 5 or 2 GHz OB/DB need to be set for a mode */
516 if (eepMinorRev >= 2) {
517 if (IS_CHAN_2GHZ(chan)) {
518 ob2GHz = ah->eep_ops->get_eeprom(ah, EEP_OB_2);
519 db2GHz = ah->eep_ops->get_eeprom(ah, EEP_DB_2);
520 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
521 ob2GHz, 3, 197, 0);
522 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
523 db2GHz, 3, 194, 0);
524 } else {
525 ob5GHz = ah->eep_ops->get_eeprom(ah, EEP_OB_5);
526 db5GHz = ah->eep_ops->get_eeprom(ah, EEP_DB_5);
527 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
528 ob5GHz, 3, 203, 0);
529 ar5008_hw_phy_modify_rx_buffer(ah->analogBank6Data,
530 db5GHz, 3, 200, 0);
531 }
532 }
533
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400534 /* Write Analog registers */
Felix Fietkaua043dfb2013-04-08 00:04:08 +0200535 REG_WRITE_ARRAY(&bank0, 1, regWrites);
536 REG_WRITE_ARRAY(&bank1, 1, regWrites);
537 REG_WRITE_ARRAY(&bank2, 1, regWrites);
538 REG_WRITE_ARRAY(&bank3, modesIndex, regWrites);
539 ar5008_write_bank6(ah, &regWrites);
540 REG_WRITE_ARRAY(&bank7, 1, regWrites);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400541
542 return true;
543}
544
545static void ar5008_hw_init_bb(struct ath_hw *ah,
546 struct ath9k_channel *chan)
547{
548 u32 synthDelay;
549
550 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Felix Fietkau7d865c72011-07-09 11:12:53 +0700551
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400552 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
553
Felix Fietkau7c5adc82012-04-19 21:18:26 +0200554 ath9k_hw_synth_delay(ah, chan, synthDelay);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400555}
556
557static void ar5008_hw_init_chain_masks(struct ath_hw *ah)
558{
559 int rx_chainmask, tx_chainmask;
560
561 rx_chainmask = ah->rxchainmask;
562 tx_chainmask = ah->txchainmask;
563
Sujith7d0d0df2010-04-16 11:53:57 +0530564
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400565 switch (rx_chainmask) {
566 case 0x5:
567 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
568 AR_PHY_SWAP_ALT_CHAIN);
569 case 0x3:
570 if (ah->hw_version.macVersion == AR_SREV_REVISION_5416_10) {
571 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
572 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
573 break;
574 }
575 case 0x1:
576 case 0x2:
577 case 0x7:
Felix Fietkau435c1612010-10-05 12:03:42 +0200578 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400579 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
580 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
581 break;
582 default:
Felix Fietkau435c1612010-10-05 12:03:42 +0200583 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400584 break;
585 }
586
587 REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
Sujith7d0d0df2010-04-16 11:53:57 +0530588
589 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530590
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400591 if (tx_chainmask == 0x5) {
592 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
593 AR_PHY_SWAP_ALT_CHAIN);
594 }
595 if (AR_SREV_9100(ah))
596 REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
597 REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
598}
599
600static void ar5008_hw_override_ini(struct ath_hw *ah,
601 struct ath9k_channel *chan)
602{
603 u32 val;
604
605 /*
606 * Set the RX_ABORT and RX_DIS and clear if off only after
607 * RXE is set for MAC. This prevents frames with corrupted
608 * descriptor status.
609 */
610 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
611
Felix Fietkau7a370812010-09-22 12:34:52 +0200612 if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith Manoharan64b6f462013-07-15 11:03:57 +0530613 /*
614 * For AR9280 and above, there is a new feature that allows
615 * Multicast search based on both MAC Address and Key ID.
616 * By default, this feature is enabled. But since the driver
617 * is not using this feature, we switch it off; otherwise
618 * multicast search based on MAC addr only will fail.
619 */
620 val = REG_READ(ah, AR_PCU_MISC_MODE2) &
621 (~AR_ADHOC_MCAST_KEYID_ENABLE);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400622
623 if (!AR_SREV_9271(ah))
624 val &= ~AR_PCU_MISC_MODE2_HWWAR1;
625
Felix Fietkaua42acef2010-09-22 12:34:54 +0200626 if (AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400627 val = val & (~AR_PCU_MISC_MODE2_HWWAR2);
628
Sujith Manoharan9ef48932013-09-11 11:40:58 +0530629 val |= AR_PCU_MISC_MODE2_CFP_IGNORE;
630
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400631 REG_WRITE(ah, AR_PCU_MISC_MODE2, val);
632 }
633
Felix Fietkau1b8714f2011-09-15 14:25:35 +0200634 if (AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400635 return;
636 /*
637 * Disable BB clock gating
638 * Necessary to avoid issues on AR5416 2.0
639 */
640 REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
641
642 /*
643 * Disable RIFS search on some chips to avoid baseband
644 * hang issues.
645 */
646 if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
647 val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
648 val &= ~AR_PHY_RIFS_INIT_DELAY;
649 REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
650 }
651}
652
653static void ar5008_hw_set_channel_regs(struct ath_hw *ah,
654 struct ath9k_channel *chan)
655{
656 u32 phymode;
657 u32 enableDacFifo = 0;
658
Felix Fietkaue17f83e2010-09-22 12:34:53 +0200659 if (AR_SREV_9285_12_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400660 enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
661 AR_PHY_FC_ENABLE_DAC_FIFO);
662
663 phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
664 | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
665
666 if (IS_CHAN_HT40(chan)) {
667 phymode |= AR_PHY_FC_DYN2040_EN;
668
669 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
670 (chan->chanmode == CHANNEL_G_HT40PLUS))
671 phymode |= AR_PHY_FC_DYN2040_PRI_CH;
672
673 }
674 REG_WRITE(ah, AR_PHY_TURBO, phymode);
675
676 ath9k_hw_set11nmac2040(ah);
677
Sujith7d0d0df2010-04-16 11:53:57 +0530678 ENABLE_REGWRITE_BUFFER(ah);
679
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400680 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
681 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
Sujith7d0d0df2010-04-16 11:53:57 +0530682
683 REGWRITE_BUFFER_FLUSH(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400684}
685
686
687static int ar5008_hw_process_ini(struct ath_hw *ah,
688 struct ath9k_channel *chan)
689{
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530690 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400691 int i, regWrites = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400692 u32 modesIndex, freqIndex;
693
694 switch (chan->chanmode) {
695 case CHANNEL_A:
696 case CHANNEL_A_HT20:
697 modesIndex = 1;
698 freqIndex = 1;
699 break;
700 case CHANNEL_A_HT40PLUS:
701 case CHANNEL_A_HT40MINUS:
702 modesIndex = 2;
703 freqIndex = 1;
704 break;
705 case CHANNEL_G:
706 case CHANNEL_G_HT20:
707 case CHANNEL_B:
708 modesIndex = 4;
709 freqIndex = 2;
710 break;
711 case CHANNEL_G_HT40PLUS:
712 case CHANNEL_G_HT40MINUS:
713 modesIndex = 3;
714 freqIndex = 2;
715 break;
716
717 default:
718 return -EINVAL;
719 }
720
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400721 /*
722 * Set correct baseband to analog shift setting to
723 * access analog chips.
724 */
725 REG_WRITE(ah, AR_PHY(0), 0x00000007);
726
727 /* Write ADDAC shifts */
728 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
Felix Fietkaud7084da2011-09-15 14:25:36 +0200729 if (ah->eep_ops->set_addac)
730 ah->eep_ops->set_addac(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400731
Felix Fietkau9bbb8162012-02-15 19:31:20 +0100732 REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400733 REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
734
Sujith7d0d0df2010-04-16 11:53:57 +0530735 ENABLE_REGWRITE_BUFFER(ah);
736
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400737 for (i = 0; i < ah->iniModes.ia_rows; i++) {
738 u32 reg = INI_RA(&ah->iniModes, i, 0);
739 u32 val = INI_RA(&ah->iniModes, i, modesIndex);
740
741 if (reg == AR_AN_TOP2 && ah->need_an_top2_fixup)
742 val &= ~AR_AN_TOP2_PWDCLKIND;
743
744 REG_WRITE(ah, reg, val);
745
746 if (reg >= 0x7800 && reg < 0x78a0
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530747 && ah->config.analog_shiftreg
748 && (common->bus_ops->ath_bus_type != ATH_USB)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400749 udelay(100);
750 }
751
752 DO_DELAY(regWrites);
753 }
754
Sujith7d0d0df2010-04-16 11:53:57 +0530755 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530756
Felix Fietkaua42acef2010-09-22 12:34:54 +0200757 if (AR_SREV_9280(ah) || AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400758 REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
759
760 if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
Felix Fietkaua42acef2010-09-22 12:34:54 +0200761 AR_SREV_9287_11_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400762 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
763
Felix Fietkauc7effd32012-03-14 16:40:33 +0100764 if (AR_SREV_9271_10(ah)) {
765 REG_SET_BIT(ah, AR_PHY_SPECTRAL_SCAN, AR_PHY_SPECTRAL_SCAN_ENA);
766 REG_RMW_FIELD(ah, AR_PHY_RF_CTL3, AR_PHY_TX_END_TO_ADC_ON, 0xa);
767 }
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400768
Sujith7d0d0df2010-04-16 11:53:57 +0530769 ENABLE_REGWRITE_BUFFER(ah);
770
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400771 /* Write common array parameters */
772 for (i = 0; i < ah->iniCommon.ia_rows; i++) {
773 u32 reg = INI_RA(&ah->iniCommon, i, 0);
774 u32 val = INI_RA(&ah->iniCommon, i, 1);
775
776 REG_WRITE(ah, reg, val);
777
778 if (reg >= 0x7800 && reg < 0x78a0
Rajkumar Manoharane7fc6332011-03-15 23:11:35 +0530779 && ah->config.analog_shiftreg
780 && (common->bus_ops->ath_bus_type != ATH_USB)) {
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400781 udelay(100);
782 }
783
784 DO_DELAY(regWrites);
785 }
786
Sujith7d0d0df2010-04-16 11:53:57 +0530787 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530788
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400789 REG_WRITE_ARRAY(&ah->iniBB_RfGain, freqIndex, regWrites);
790
Felix Fietkauc7d36f92012-03-14 16:40:31 +0100791 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
792 REG_WRITE_ARRAY(&ah->iniModesFastClock, modesIndex,
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400793 regWrites);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400794
795 ar5008_hw_override_ini(ah, chan);
796 ar5008_hw_set_channel_regs(ah, chan);
797 ar5008_hw_init_chain_masks(ah);
798 ath9k_olc_init(ah);
Gabor Juhos64ea57d2012-04-15 20:38:05 +0200799 ath9k_hw_apply_txpower(ah, chan, false);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400800
801 /* Write analog registers */
802 if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
Joe Perches38002762010-12-02 19:12:36 -0800803 ath_err(ath9k_hw_common(ah), "ar5416SetRfRegs failed\n");
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400804 return -EIO;
805 }
806
807 return 0;
808}
809
810static void ar5008_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
811{
812 u32 rfMode = 0;
813
814 if (chan == NULL)
815 return;
816
817 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
818 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
819
Felix Fietkau7a370812010-09-22 12:34:52 +0200820 if (!AR_SREV_9280_20_OR_LATER(ah))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400821 rfMode |= (IS_CHAN_5GHZ(chan)) ?
822 AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
823
Felix Fietkau6b42e8d2010-04-26 15:04:35 -0400824 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400825 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
826
827 REG_WRITE(ah, AR_PHY_MODE, rfMode);
828}
829
830static void ar5008_hw_mark_phy_inactive(struct ath_hw *ah)
831{
832 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
833}
834
835static void ar5008_hw_set_delta_slope(struct ath_hw *ah,
836 struct ath9k_channel *chan)
837{
838 u32 coef_scaled, ds_coef_exp, ds_coef_man;
839 u32 clockMhzScaled = 0x64000000;
840 struct chan_centers centers;
841
842 if (IS_CHAN_HALF_RATE(chan))
843 clockMhzScaled = clockMhzScaled >> 1;
844 else if (IS_CHAN_QUARTER_RATE(chan))
845 clockMhzScaled = clockMhzScaled >> 2;
846
847 ath9k_hw_get_channel_centers(ah, chan, &centers);
848 coef_scaled = clockMhzScaled / centers.synth_center;
849
850 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
851 &ds_coef_exp);
852
853 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
854 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
855 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
856 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
857
858 coef_scaled = (9 * coef_scaled) / 10;
859
860 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
861 &ds_coef_exp);
862
863 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
864 AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
865 REG_RMW_FIELD(ah, AR_PHY_HALFGI,
866 AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
867}
868
869static bool ar5008_hw_rfbus_req(struct ath_hw *ah)
870{
871 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
872 return ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
873 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT);
874}
875
876static void ar5008_hw_rfbus_done(struct ath_hw *ah)
877{
878 u32 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400879
Felix Fietkau7c5adc82012-04-19 21:18:26 +0200880 ath9k_hw_synth_delay(ah, ah->curchan, synthDelay);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400881
882 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
883}
884
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400885static void ar5008_restore_chainmask(struct ath_hw *ah)
886{
887 int rx_chainmask = ah->rxchainmask;
888
889 if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
890 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
891 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
892 }
893}
894
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400895static u32 ar9160_hw_compute_pll_control(struct ath_hw *ah,
896 struct ath9k_channel *chan)
897{
898 u32 pll;
899
900 pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
901
902 if (chan && IS_CHAN_HALF_RATE(chan))
903 pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
904 else if (chan && IS_CHAN_QUARTER_RATE(chan))
905 pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
906
907 if (chan && IS_CHAN_5GHZ(chan))
908 pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
909 else
910 pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
911
912 return pll;
913}
914
915static u32 ar5008_hw_compute_pll_control(struct ath_hw *ah,
916 struct ath9k_channel *chan)
917{
918 u32 pll;
919
920 pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
921
922 if (chan && IS_CHAN_HALF_RATE(chan))
923 pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
924 else if (chan && IS_CHAN_QUARTER_RATE(chan))
925 pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
926
927 if (chan && IS_CHAN_5GHZ(chan))
928 pll |= SM(0xa, AR_RTC_PLL_DIV);
929 else
930 pll |= SM(0xb, AR_RTC_PLL_DIV);
931
932 return pll;
933}
934
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400935static bool ar5008_hw_ani_control_new(struct ath_hw *ah,
936 enum ath9k_ani_cmd cmd,
937 int param)
938{
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400939 struct ath_common *common = ath9k_hw_common(ah);
940 struct ath9k_channel *chan = ah->curchan;
Sujith Manoharanc24bd362013-06-03 09:19:29 +0530941 struct ar5416AniState *aniState = &ah->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400942 s32 value, value2;
943
944 switch (cmd & ah->ani_function) {
945 case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
946 /*
947 * on == 1 means ofdm weak signal detection is ON
948 * on == 1 is the default, for less noise immunity
949 *
950 * on == 0 means ofdm weak signal detection is OFF
951 * on == 0 means more noise imm
952 */
953 u32 on = param ? 1 : 0;
954 /*
955 * make register setting for default
956 * (weak sig detect ON) come from INI file
957 */
958 int m1ThreshLow = on ?
959 aniState->iniDef.m1ThreshLow : m1ThreshLow_off;
960 int m2ThreshLow = on ?
961 aniState->iniDef.m2ThreshLow : m2ThreshLow_off;
962 int m1Thresh = on ?
963 aniState->iniDef.m1Thresh : m1Thresh_off;
964 int m2Thresh = on ?
965 aniState->iniDef.m2Thresh : m2Thresh_off;
966 int m2CountThr = on ?
967 aniState->iniDef.m2CountThr : m2CountThr_off;
968 int m2CountThrLow = on ?
969 aniState->iniDef.m2CountThrLow : m2CountThrLow_off;
970 int m1ThreshLowExt = on ?
971 aniState->iniDef.m1ThreshLowExt : m1ThreshLowExt_off;
972 int m2ThreshLowExt = on ?
973 aniState->iniDef.m2ThreshLowExt : m2ThreshLowExt_off;
974 int m1ThreshExt = on ?
975 aniState->iniDef.m1ThreshExt : m1ThreshExt_off;
976 int m2ThreshExt = on ?
977 aniState->iniDef.m2ThreshExt : m2ThreshExt_off;
978
979 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
980 AR_PHY_SFCORR_LOW_M1_THRESH_LOW,
981 m1ThreshLow);
982 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
983 AR_PHY_SFCORR_LOW_M2_THRESH_LOW,
984 m2ThreshLow);
985 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
986 AR_PHY_SFCORR_M1_THRESH, m1Thresh);
987 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
988 AR_PHY_SFCORR_M2_THRESH, m2Thresh);
989 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
990 AR_PHY_SFCORR_M2COUNT_THR, m2CountThr);
991 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
992 AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW,
993 m2CountThrLow);
994
995 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
996 AR_PHY_SFCORR_EXT_M1_THRESH_LOW, m1ThreshLowExt);
997 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
998 AR_PHY_SFCORR_EXT_M2_THRESH_LOW, m2ThreshLowExt);
999 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1000 AR_PHY_SFCORR_EXT_M1_THRESH, m1ThreshExt);
1001 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
1002 AR_PHY_SFCORR_EXT_M2_THRESH, m2ThreshExt);
1003
1004 if (on)
1005 REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
1006 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1007 else
1008 REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
1009 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
1010
Felix Fietkau7067e702012-06-15 15:25:21 +02001011 if (on != aniState->ofdmWeakSigDetect) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001012 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001013 "** ch %d: ofdm weak signal: %s=>%s\n",
1014 chan->channel,
Felix Fietkau7067e702012-06-15 15:25:21 +02001015 aniState->ofdmWeakSigDetect ?
Joe Perches226afe62010-12-02 19:12:37 -08001016 "on" : "off",
1017 on ? "on" : "off");
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001018 if (on)
1019 ah->stats.ast_ani_ofdmon++;
1020 else
1021 ah->stats.ast_ani_ofdmoff++;
Felix Fietkau7067e702012-06-15 15:25:21 +02001022 aniState->ofdmWeakSigDetect = on;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001023 }
1024 break;
1025 }
1026 case ATH9K_ANI_FIRSTEP_LEVEL:{
1027 u32 level = param;
1028
1029 if (level >= ARRAY_SIZE(firstep_table)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001030 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001031 "ATH9K_ANI_FIRSTEP_LEVEL: level out of range (%u > %zu)\n",
1032 level, ARRAY_SIZE(firstep_table));
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001033 return false;
1034 }
1035
1036 /*
1037 * make register setting relative to default
1038 * from INI file & cap value
1039 */
1040 value = firstep_table[level] -
Felix Fietkau465dce62012-06-15 15:25:24 +02001041 firstep_table[ATH9K_ANI_FIRSTEP_LVL] +
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001042 aniState->iniDef.firstep;
1043 if (value < ATH9K_SIG_FIRSTEP_SETTING_MIN)
1044 value = ATH9K_SIG_FIRSTEP_SETTING_MIN;
1045 if (value > ATH9K_SIG_FIRSTEP_SETTING_MAX)
1046 value = ATH9K_SIG_FIRSTEP_SETTING_MAX;
1047 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
1048 AR_PHY_FIND_SIG_FIRSTEP,
1049 value);
1050 /*
1051 * we need to set first step low register too
1052 * make register setting relative to default
1053 * from INI file & cap value
1054 */
1055 value2 = firstep_table[level] -
Felix Fietkau465dce62012-06-15 15:25:24 +02001056 firstep_table[ATH9K_ANI_FIRSTEP_LVL] +
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001057 aniState->iniDef.firstepLow;
1058 if (value2 < ATH9K_SIG_FIRSTEP_SETTING_MIN)
1059 value2 = ATH9K_SIG_FIRSTEP_SETTING_MIN;
1060 if (value2 > ATH9K_SIG_FIRSTEP_SETTING_MAX)
1061 value2 = ATH9K_SIG_FIRSTEP_SETTING_MAX;
1062
1063 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG_LOW,
1064 AR_PHY_FIND_SIG_FIRSTEP_LOW, value2);
1065
1066 if (level != aniState->firstepLevel) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001067 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001068 "** ch %d: level %d=>%d[def:%d] firstep[level]=%d ini=%d\n",
1069 chan->channel,
1070 aniState->firstepLevel,
1071 level,
Felix Fietkau465dce62012-06-15 15:25:24 +02001072 ATH9K_ANI_FIRSTEP_LVL,
Joe Perches226afe62010-12-02 19:12:37 -08001073 value,
1074 aniState->iniDef.firstep);
Joe Perchesd2182b62011-12-15 14:55:53 -08001075 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001076 "** ch %d: level %d=>%d[def:%d] firstep_low[level]=%d ini=%d\n",
1077 chan->channel,
1078 aniState->firstepLevel,
1079 level,
Felix Fietkau465dce62012-06-15 15:25:24 +02001080 ATH9K_ANI_FIRSTEP_LVL,
Joe Perches226afe62010-12-02 19:12:37 -08001081 value2,
1082 aniState->iniDef.firstepLow);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001083 if (level > aniState->firstepLevel)
1084 ah->stats.ast_ani_stepup++;
1085 else if (level < aniState->firstepLevel)
1086 ah->stats.ast_ani_stepdown++;
1087 aniState->firstepLevel = level;
1088 }
1089 break;
1090 }
1091 case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
1092 u32 level = param;
1093
1094 if (level >= ARRAY_SIZE(cycpwrThr1_table)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001095 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001096 "ATH9K_ANI_SPUR_IMMUNITY_LEVEL: level out of range (%u > %zu)\n",
1097 level, ARRAY_SIZE(cycpwrThr1_table));
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001098 return false;
1099 }
1100 /*
1101 * make register setting relative to default
1102 * from INI file & cap value
1103 */
1104 value = cycpwrThr1_table[level] -
Felix Fietkau465dce62012-06-15 15:25:24 +02001105 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL] +
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001106 aniState->iniDef.cycpwrThr1;
1107 if (value < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
1108 value = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
1109 if (value > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
1110 value = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
1111 REG_RMW_FIELD(ah, AR_PHY_TIMING5,
1112 AR_PHY_TIMING5_CYCPWR_THR1,
1113 value);
1114
1115 /*
1116 * set AR_PHY_EXT_CCA for extension channel
1117 * make register setting relative to default
1118 * from INI file & cap value
1119 */
1120 value2 = cycpwrThr1_table[level] -
Felix Fietkau465dce62012-06-15 15:25:24 +02001121 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL] +
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001122 aniState->iniDef.cycpwrThr1Ext;
1123 if (value2 < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
1124 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
1125 if (value2 > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
1126 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
1127 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
1128 AR_PHY_EXT_TIMING5_CYCPWR_THR1, value2);
1129
1130 if (level != aniState->spurImmunityLevel) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001131 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001132 "** ch %d: level %d=>%d[def:%d] cycpwrThr1[level]=%d ini=%d\n",
1133 chan->channel,
1134 aniState->spurImmunityLevel,
1135 level,
Felix Fietkau465dce62012-06-15 15:25:24 +02001136 ATH9K_ANI_SPUR_IMMUNE_LVL,
Joe Perches226afe62010-12-02 19:12:37 -08001137 value,
1138 aniState->iniDef.cycpwrThr1);
Joe Perchesd2182b62011-12-15 14:55:53 -08001139 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001140 "** ch %d: level %d=>%d[def:%d] cycpwrThr1Ext[level]=%d ini=%d\n",
1141 chan->channel,
1142 aniState->spurImmunityLevel,
1143 level,
Felix Fietkau465dce62012-06-15 15:25:24 +02001144 ATH9K_ANI_SPUR_IMMUNE_LVL,
Joe Perches226afe62010-12-02 19:12:37 -08001145 value2,
1146 aniState->iniDef.cycpwrThr1Ext);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001147 if (level > aniState->spurImmunityLevel)
1148 ah->stats.ast_ani_spurup++;
1149 else if (level < aniState->spurImmunityLevel)
1150 ah->stats.ast_ani_spurdown++;
1151 aniState->spurImmunityLevel = level;
1152 }
1153 break;
1154 }
1155 case ATH9K_ANI_MRC_CCK:
1156 /*
1157 * You should not see this as AR5008, AR9001, AR9002
1158 * does not have hardware support for MRC CCK.
1159 */
1160 WARN_ON(1);
1161 break;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001162 default:
Joe Perchesd2182b62011-12-15 14:55:53 -08001163 ath_dbg(common, ANI, "invalid cmd %u\n", cmd);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001164 return false;
1165 }
1166
Joe Perchesd2182b62011-12-15 14:55:53 -08001167 ath_dbg(common, ANI,
Joe Perches226afe62010-12-02 19:12:37 -08001168 "ANI parameters: SI=%d, ofdmWS=%s FS=%d MRCcck=%s listenTime=%d ofdmErrs=%d cckErrs=%d\n",
1169 aniState->spurImmunityLevel,
Felix Fietkau7067e702012-06-15 15:25:21 +02001170 aniState->ofdmWeakSigDetect ? "on" : "off",
Joe Perches226afe62010-12-02 19:12:37 -08001171 aniState->firstepLevel,
Rajkumar Manoharan81b67fd62012-06-21 20:33:59 +05301172 aniState->mrcCCK ? "on" : "off",
Joe Perches226afe62010-12-02 19:12:37 -08001173 aniState->listenTime,
1174 aniState->ofdmPhyErrCount,
1175 aniState->cckPhyErrCount);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001176 return true;
1177}
1178
Felix Fietkau641d9922010-04-15 17:38:49 -04001179static void ar5008_hw_do_getnf(struct ath_hw *ah,
1180 int16_t nfarray[NUM_NF_READINGS])
1181{
Felix Fietkau641d9922010-04-15 17:38:49 -04001182 int16_t nf;
1183
1184 nf = MS(REG_READ(ah, AR_PHY_CCA), AR_PHY_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001185 nfarray[0] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001186
1187 nf = MS(REG_READ(ah, AR_PHY_CH1_CCA), AR_PHY_CH1_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001188 nfarray[1] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001189
1190 nf = MS(REG_READ(ah, AR_PHY_CH2_CCA), AR_PHY_CH2_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001191 nfarray[2] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001192
Felix Fietkau866b7782010-07-23 04:07:48 +02001193 if (!IS_CHAN_HT40(ah->curchan))
1194 return;
1195
Felix Fietkau641d9922010-04-15 17:38:49 -04001196 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA), AR_PHY_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001197 nfarray[3] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001198
1199 nf = MS(REG_READ(ah, AR_PHY_CH1_EXT_CCA), AR_PHY_CH1_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001200 nfarray[4] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001201
1202 nf = MS(REG_READ(ah, AR_PHY_CH2_EXT_CCA), AR_PHY_CH2_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001203 nfarray[5] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001204}
1205
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001206/*
1207 * Initialize the ANI register values with default (ini) values.
1208 * This routine is called during a (full) hardware reset after
1209 * all the registers are initialised from the INI.
1210 */
1211static void ar5008_hw_ani_cache_ini_regs(struct ath_hw *ah)
1212{
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001213 struct ath_common *common = ath9k_hw_common(ah);
1214 struct ath9k_channel *chan = ah->curchan;
Sujith Manoharanc24bd362013-06-03 09:19:29 +05301215 struct ar5416AniState *aniState = &ah->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001216 struct ath9k_ani_default *iniDef;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001217 u32 val;
1218
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001219 iniDef = &aniState->iniDef;
1220
Joe Perchesd2182b62011-12-15 14:55:53 -08001221 ath_dbg(common, ANI, "ver %d.%d opmode %u chan %d Mhz/0x%x\n",
Joe Perches226afe62010-12-02 19:12:37 -08001222 ah->hw_version.macVersion,
1223 ah->hw_version.macRev,
1224 ah->opmode,
1225 chan->channel,
1226 chan->channelFlags);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001227
1228 val = REG_READ(ah, AR_PHY_SFCORR);
1229 iniDef->m1Thresh = MS(val, AR_PHY_SFCORR_M1_THRESH);
1230 iniDef->m2Thresh = MS(val, AR_PHY_SFCORR_M2_THRESH);
1231 iniDef->m2CountThr = MS(val, AR_PHY_SFCORR_M2COUNT_THR);
1232
1233 val = REG_READ(ah, AR_PHY_SFCORR_LOW);
1234 iniDef->m1ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M1_THRESH_LOW);
1235 iniDef->m2ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M2_THRESH_LOW);
1236 iniDef->m2CountThrLow = MS(val, AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW);
1237
1238 val = REG_READ(ah, AR_PHY_SFCORR_EXT);
1239 iniDef->m1ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH);
1240 iniDef->m2ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH);
1241 iniDef->m1ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH_LOW);
1242 iniDef->m2ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH_LOW);
1243 iniDef->firstep = REG_READ_FIELD(ah,
1244 AR_PHY_FIND_SIG,
1245 AR_PHY_FIND_SIG_FIRSTEP);
1246 iniDef->firstepLow = REG_READ_FIELD(ah,
1247 AR_PHY_FIND_SIG_LOW,
1248 AR_PHY_FIND_SIG_FIRSTEP_LOW);
1249 iniDef->cycpwrThr1 = REG_READ_FIELD(ah,
1250 AR_PHY_TIMING5,
1251 AR_PHY_TIMING5_CYCPWR_THR1);
1252 iniDef->cycpwrThr1Ext = REG_READ_FIELD(ah,
1253 AR_PHY_EXT_CCA,
1254 AR_PHY_EXT_TIMING5_CYCPWR_THR1);
1255
1256 /* these levels just got reset to defaults by the INI */
Felix Fietkau465dce62012-06-15 15:25:24 +02001257 aniState->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL;
1258 aniState->firstepLevel = ATH9K_ANI_FIRSTEP_LVL;
Sujith Manoharan4f4395c2013-06-03 09:19:27 +05301259 aniState->ofdmWeakSigDetect = true;
Rajkumar Manoharan81b67fd62012-06-21 20:33:59 +05301260 aniState->mrcCCK = false; /* not available on pre AR9003 */
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001261}
1262
Felix Fietkauf2552e22010-07-02 00:09:50 +02001263static void ar5008_hw_set_nf_limits(struct ath_hw *ah)
1264{
1265 ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_5416_2GHZ;
1266 ah->nf_2g.min = AR_PHY_CCA_MIN_GOOD_VAL_5416_2GHZ;
1267 ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_5416_2GHZ;
1268 ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_5416_5GHZ;
1269 ah->nf_5g.min = AR_PHY_CCA_MIN_GOOD_VAL_5416_5GHZ;
1270 ah->nf_5g.nominal = AR_PHY_CCA_NOM_VAL_5416_5GHZ;
1271}
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001272
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001273static void ar5008_hw_set_radar_params(struct ath_hw *ah,
1274 struct ath_hw_radar_conf *conf)
1275{
1276 u32 radar_0 = 0, radar_1 = 0;
1277
1278 if (!conf) {
1279 REG_CLR_BIT(ah, AR_PHY_RADAR_0, AR_PHY_RADAR_0_ENA);
1280 return;
1281 }
1282
1283 radar_0 |= AR_PHY_RADAR_0_ENA | AR_PHY_RADAR_0_FFT_ENA;
1284 radar_0 |= SM(conf->fir_power, AR_PHY_RADAR_0_FIRPWR);
1285 radar_0 |= SM(conf->radar_rssi, AR_PHY_RADAR_0_RRSSI);
1286 radar_0 |= SM(conf->pulse_height, AR_PHY_RADAR_0_HEIGHT);
1287 radar_0 |= SM(conf->pulse_rssi, AR_PHY_RADAR_0_PRSSI);
1288 radar_0 |= SM(conf->pulse_inband, AR_PHY_RADAR_0_INBAND);
1289
1290 radar_1 |= AR_PHY_RADAR_1_MAX_RRSSI;
1291 radar_1 |= AR_PHY_RADAR_1_BLOCK_CHECK;
1292 radar_1 |= SM(conf->pulse_maxlen, AR_PHY_RADAR_1_MAXLEN);
1293 radar_1 |= SM(conf->pulse_inband_step, AR_PHY_RADAR_1_RELSTEP_THRESH);
1294 radar_1 |= SM(conf->radar_inband, AR_PHY_RADAR_1_RELPWR_THRESH);
1295
1296 REG_WRITE(ah, AR_PHY_RADAR_0, radar_0);
1297 REG_WRITE(ah, AR_PHY_RADAR_1, radar_1);
1298 if (conf->ext_channel)
1299 REG_SET_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1300 else
1301 REG_CLR_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1302}
1303
Felix Fietkauc5d08552010-11-13 20:22:41 +01001304static void ar5008_hw_set_radar_conf(struct ath_hw *ah)
1305{
1306 struct ath_hw_radar_conf *conf = &ah->radar_conf;
1307
1308 conf->fir_power = -33;
1309 conf->radar_rssi = 20;
1310 conf->pulse_height = 10;
1311 conf->pulse_rssi = 24;
1312 conf->pulse_inband = 15;
1313 conf->pulse_maxlen = 255;
1314 conf->pulse_inband_step = 12;
1315 conf->radar_inband = 8;
1316}
1317
Felix Fietkauc1b976d2012-12-12 13:14:23 +01001318int ar5008_hw_attach_phy_ops(struct ath_hw *ah)
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001319{
1320 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
Joe Perches07b2fa52010-11-20 18:38:53 -08001321 static const u32 ar5416_cca_regs[6] = {
Felix Fietkaubbacee12010-07-11 15:44:42 +02001322 AR_PHY_CCA,
1323 AR_PHY_CH1_CCA,
1324 AR_PHY_CH2_CCA,
1325 AR_PHY_EXT_CCA,
1326 AR_PHY_CH1_EXT_CCA,
1327 AR_PHY_CH2_EXT_CCA
1328 };
Felix Fietkauc1b976d2012-12-12 13:14:23 +01001329 int ret;
1330
1331 ret = ar5008_hw_rf_alloc_ext_banks(ah);
1332 if (ret)
1333 return ret;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001334
1335 priv_ops->rf_set_freq = ar5008_hw_set_channel;
1336 priv_ops->spur_mitigate_freq = ar5008_hw_spur_mitigate;
1337
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001338 priv_ops->set_rf_regs = ar5008_hw_set_rf_regs;
1339 priv_ops->set_channel_regs = ar5008_hw_set_channel_regs;
1340 priv_ops->init_bb = ar5008_hw_init_bb;
1341 priv_ops->process_ini = ar5008_hw_process_ini;
1342 priv_ops->set_rfmode = ar5008_hw_set_rfmode;
1343 priv_ops->mark_phy_inactive = ar5008_hw_mark_phy_inactive;
1344 priv_ops->set_delta_slope = ar5008_hw_set_delta_slope;
1345 priv_ops->rfbus_req = ar5008_hw_rfbus_req;
1346 priv_ops->rfbus_done = ar5008_hw_rfbus_done;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001347 priv_ops->restore_chainmask = ar5008_restore_chainmask;
Felix Fietkau641d9922010-04-15 17:38:49 -04001348 priv_ops->do_getnf = ar5008_hw_do_getnf;
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001349 priv_ops->set_radar_params = ar5008_hw_set_radar_params;
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001350
Felix Fietkau6790ae72012-06-15 15:25:23 +02001351 priv_ops->ani_control = ar5008_hw_ani_control_new;
1352 priv_ops->ani_cache_ini_regs = ar5008_hw_ani_cache_ini_regs;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001353
Felix Fietkau491b2092011-09-15 14:25:38 +02001354 if (AR_SREV_9100(ah) || AR_SREV_9160_10_OR_LATER(ah))
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001355 priv_ops->compute_pll_control = ar9160_hw_compute_pll_control;
1356 else
1357 priv_ops->compute_pll_control = ar5008_hw_compute_pll_control;
Felix Fietkauf2552e22010-07-02 00:09:50 +02001358
1359 ar5008_hw_set_nf_limits(ah);
Felix Fietkauc5d08552010-11-13 20:22:41 +01001360 ar5008_hw_set_radar_conf(ah);
Felix Fietkaubbacee12010-07-11 15:44:42 +02001361 memcpy(ah->nf_regs, ar5416_cca_regs, sizeof(ah->nf_regs));
Felix Fietkauc1b976d2012-12-12 13:14:23 +01001362 return 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001363}