blob: 07b44cec7739699fc770a24764f622f9ee82d016 [file] [log] [blame]
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04001/*
2 * Copyright (c) 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"
Felix Fietkauda6f1d72010-04-15 17:38:31 -040018#include "ar9003_phy.h"
Luis R. Rodriguez8525f282010-04-15 17:38:19 -040019
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040020static const int firstep_table[] =
21/* level: 0 1 2 3 4 5 6 7 8 */
22 { -4, -2, 0, 2, 4, 6, 8, 10, 12 }; /* lvl 0-8, default 2 */
23
24static const int cycpwrThr1_table[] =
25/* level: 0 1 2 3 4 5 6 7 8 */
26 { -6, -4, -2, 0, 2, 4, 6, 8 }; /* lvl 0-7, default 3 */
27
28/*
29 * register values to turn OFDM weak signal detection OFF
30 */
31static const int m1ThreshLow_off = 127;
32static const int m2ThreshLow_off = 127;
33static const int m1Thresh_off = 127;
34static const int m2Thresh_off = 127;
35static const int m2CountThr_off = 31;
36static const int m2CountThrLow_off = 63;
37static const int m1ThreshLowExt_off = 127;
38static const int m2ThreshLowExt_off = 127;
39static const int m1ThreshExt_off = 127;
40static const int m2ThreshExt_off = 127;
41
Luis R. Rodriguez8525f282010-04-15 17:38:19 -040042/**
43 * ar9003_hw_set_channel - set channel on single-chip device
44 * @ah: atheros hardware structure
45 * @chan:
46 *
47 * This is the function to change channel on single-chip devices, that is
48 * all devices after ar9280.
49 *
50 * This function takes the channel value in MHz and sets
51 * hardware channel value. Assumes writes have been enabled to analog bus.
52 *
53 * Actual Expression,
54 *
55 * For 2GHz channel,
56 * Channel Frequency = (3/4) * freq_ref * (chansel[8:0] + chanfrac[16:0]/2^17)
57 * (freq_ref = 40MHz)
58 *
59 * For 5GHz channel,
60 * Channel Frequency = (3/2) * freq_ref * (chansel[8:0] + chanfrac[16:0]/2^10)
61 * (freq_ref = 40MHz/(24>>amodeRefSel))
62 *
63 * For 5GHz channels which are 5MHz spaced,
64 * Channel Frequency = (3/2) * freq_ref * (chansel[8:0] + chanfrac[16:0]/2^17)
65 * (freq_ref = 40MHz)
66 */
67static int ar9003_hw_set_channel(struct ath_hw *ah, struct ath9k_channel *chan)
68{
Felix Fietkauf7abf0c2010-04-15 17:38:33 -040069 u16 bMode, fracMode = 0, aModeRefSel = 0;
70 u32 freq, channelSel = 0, reg32 = 0;
71 struct chan_centers centers;
72 int loadSynthChannel;
73
74 ath9k_hw_get_channel_centers(ah, chan, &centers);
75 freq = centers.synth_center;
76
77 if (freq < 4800) { /* 2 GHz, fractional mode */
Vasanthakumar Thiagarajan85dd0922010-12-06 04:27:45 -080078 if (AR_SREV_9485(ah))
79 channelSel = CHANSEL_2G_9485(freq);
80 else
81 channelSel = CHANSEL_2G(freq);
Felix Fietkauf7abf0c2010-04-15 17:38:33 -040082 /* Set to 2G mode */
83 bMode = 1;
84 } else {
85 channelSel = CHANSEL_5G(freq);
86 /* Doubler is ON, so, divide channelSel by 2. */
87 channelSel >>= 1;
88 /* Set to 5G mode */
89 bMode = 0;
90 }
91
92 /* Enable fractional mode for all channels */
93 fracMode = 1;
94 aModeRefSel = 0;
95 loadSynthChannel = 0;
96
97 reg32 = (bMode << 29);
98 REG_WRITE(ah, AR_PHY_SYNTH_CONTROL, reg32);
99
100 /* Enable Long shift Select for Synthesizer */
101 REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_SYNTH4,
102 AR_PHY_SYNTH4_LONG_SHIFT_SELECT, 1);
103
104 /* Program Synth. setting */
105 reg32 = (channelSel << 2) | (fracMode << 30) |
106 (aModeRefSel << 28) | (loadSynthChannel << 31);
107 REG_WRITE(ah, AR_PHY_65NM_CH0_SYNTH7, reg32);
108
109 /* Toggle Load Synth channel bit */
110 loadSynthChannel = 1;
111 reg32 = (channelSel << 2) | (fracMode << 30) |
112 (aModeRefSel << 28) | (loadSynthChannel << 31);
113 REG_WRITE(ah, AR_PHY_65NM_CH0_SYNTH7, reg32);
114
115 ah->curchan = chan;
116 ah->curchan_rad_index = -1;
117
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400118 return 0;
119}
120
121/**
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400122 * ar9003_hw_spur_mitigate_mrc_cck - convert baseband spur frequency
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400123 * @ah: atheros hardware structure
124 * @chan:
125 *
126 * For single-chip solutions. Converts to baseband spur frequency given the
127 * input channel frequency and compute register settings below.
128 *
129 * Spur mitigation for MRC CCK
130 */
Luis R. Rodriguez1547da32010-04-15 17:39:15 -0400131static void ar9003_hw_spur_mitigate_mrc_cck(struct ath_hw *ah,
132 struct ath9k_channel *chan)
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400133{
Joe Perches07b2fa52010-11-20 18:38:53 -0800134 static const u32 spur_freq[4] = { 2420, 2440, 2464, 2480 };
Felix Fietkauca375552010-04-15 17:38:35 -0400135 int cur_bb_spur, negative = 0, cck_spur_freq;
136 int i;
Vasanthakumar Thiagarajand9a25452010-12-06 04:27:47 -0800137 int range, max_spur_cnts, synth_freq;
138 u8 *spur_fbin_ptr = NULL;
Felix Fietkauca375552010-04-15 17:38:35 -0400139
140 /*
141 * Need to verify range +/- 10 MHz in control channel, otherwise spur
142 * is out-of-band and can be ignored.
143 */
144
Vasanthakumar Thiagarajand9a25452010-12-06 04:27:47 -0800145 if (AR_SREV_9485(ah)) {
146 spur_fbin_ptr = ar9003_get_spur_chan_ptr(ah,
147 IS_CHAN_2GHZ(chan));
148 if (spur_fbin_ptr[0] == 0) /* No spur */
149 return;
150 max_spur_cnts = 5;
151 if (IS_CHAN_HT40(chan)) {
152 range = 19;
153 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
154 AR_PHY_GC_DYN2040_PRI_CH) == 0)
155 synth_freq = chan->channel + 10;
156 else
157 synth_freq = chan->channel - 10;
158 } else {
159 range = 10;
160 synth_freq = chan->channel;
161 }
162 } else {
163 range = 10;
164 max_spur_cnts = 4;
165 synth_freq = chan->channel;
166 }
167
168 for (i = 0; i < max_spur_cnts; i++) {
Felix Fietkauca375552010-04-15 17:38:35 -0400169 negative = 0;
Vasanthakumar Thiagarajand9a25452010-12-06 04:27:47 -0800170 if (AR_SREV_9485(ah))
171 cur_bb_spur = FBIN2FREQ(spur_fbin_ptr[i],
172 IS_CHAN_2GHZ(chan)) - synth_freq;
173 else
174 cur_bb_spur = spur_freq[i] - synth_freq;
Felix Fietkauca375552010-04-15 17:38:35 -0400175
176 if (cur_bb_spur < 0) {
177 negative = 1;
178 cur_bb_spur = -cur_bb_spur;
179 }
Vasanthakumar Thiagarajand9a25452010-12-06 04:27:47 -0800180 if (cur_bb_spur < range) {
Felix Fietkauca375552010-04-15 17:38:35 -0400181 cck_spur_freq = (int)((cur_bb_spur << 19) / 11);
182
183 if (negative == 1)
184 cck_spur_freq = -cck_spur_freq;
185
186 cck_spur_freq = cck_spur_freq & 0xfffff;
187
188 REG_RMW_FIELD(ah, AR_PHY_AGC_CONTROL,
189 AR_PHY_AGC_CONTROL_YCOK_MAX, 0x7);
190 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
191 AR_PHY_CCK_SPUR_MIT_SPUR_RSSI_THR, 0x7f);
192 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
193 AR_PHY_CCK_SPUR_MIT_SPUR_FILTER_TYPE,
194 0x2);
195 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
196 AR_PHY_CCK_SPUR_MIT_USE_CCK_SPUR_MIT,
197 0x1);
198 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
199 AR_PHY_CCK_SPUR_MIT_CCK_SPUR_FREQ,
200 cck_spur_freq);
201
202 return;
203 }
204 }
205
206 REG_RMW_FIELD(ah, AR_PHY_AGC_CONTROL,
207 AR_PHY_AGC_CONTROL_YCOK_MAX, 0x5);
208 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
209 AR_PHY_CCK_SPUR_MIT_USE_CCK_SPUR_MIT, 0x0);
210 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
211 AR_PHY_CCK_SPUR_MIT_CCK_SPUR_FREQ, 0x0);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400212}
213
Luis R. Rodriguez1547da32010-04-15 17:39:15 -0400214/* Clean all spur register fields */
215static void ar9003_hw_spur_ofdm_clear(struct ath_hw *ah)
216{
217 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
218 AR_PHY_TIMING4_ENABLE_SPUR_FILTER, 0);
219 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
220 AR_PHY_TIMING11_SPUR_FREQ_SD, 0);
221 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
222 AR_PHY_TIMING11_SPUR_DELTA_PHASE, 0);
223 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
224 AR_PHY_SFCORR_EXT_SPUR_SUBCHANNEL_SD, 0);
225 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
226 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_AGC, 0);
227 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
228 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_SELFCOR, 0);
229 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
230 AR_PHY_TIMING4_ENABLE_SPUR_RSSI, 0);
231 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
232 AR_PHY_SPUR_REG_EN_VIT_SPUR_RSSI, 0);
233 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
234 AR_PHY_SPUR_REG_ENABLE_NF_RSSI_SPUR_MIT, 0);
235
236 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
237 AR_PHY_SPUR_REG_ENABLE_MASK_PPM, 0);
238 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
239 AR_PHY_TIMING4_ENABLE_PILOT_MASK, 0);
240 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
241 AR_PHY_TIMING4_ENABLE_CHAN_MASK, 0);
242 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
243 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_IDX_A, 0);
244 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
245 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_IDX_A, 0);
246 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
247 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_IDX_A, 0);
248 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
249 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_A, 0);
250 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
251 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_A, 0);
252 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
253 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_A, 0);
254 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
255 AR_PHY_SPUR_REG_MASK_RATE_CNTL, 0);
256}
257
258static void ar9003_hw_spur_ofdm(struct ath_hw *ah,
259 int freq_offset,
260 int spur_freq_sd,
261 int spur_delta_phase,
262 int spur_subchannel_sd)
263{
264 int mask_index = 0;
265
266 /* OFDM Spur mitigation */
267 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
268 AR_PHY_TIMING4_ENABLE_SPUR_FILTER, 0x1);
269 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
270 AR_PHY_TIMING11_SPUR_FREQ_SD, spur_freq_sd);
271 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
272 AR_PHY_TIMING11_SPUR_DELTA_PHASE, spur_delta_phase);
273 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
274 AR_PHY_SFCORR_EXT_SPUR_SUBCHANNEL_SD, spur_subchannel_sd);
275 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
276 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_AGC, 0x1);
277 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
278 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_SELFCOR, 0x1);
279 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
280 AR_PHY_TIMING4_ENABLE_SPUR_RSSI, 0x1);
281 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
282 AR_PHY_SPUR_REG_SPUR_RSSI_THRESH, 34);
283 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
284 AR_PHY_SPUR_REG_EN_VIT_SPUR_RSSI, 1);
285
286 if (REG_READ_FIELD(ah, AR_PHY_MODE,
287 AR_PHY_MODE_DYNAMIC) == 0x1)
288 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
289 AR_PHY_SPUR_REG_ENABLE_NF_RSSI_SPUR_MIT, 1);
290
291 mask_index = (freq_offset << 4) / 5;
292 if (mask_index < 0)
293 mask_index = mask_index - 1;
294
295 mask_index = mask_index & 0x7f;
296
297 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
298 AR_PHY_SPUR_REG_ENABLE_MASK_PPM, 0x1);
299 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
300 AR_PHY_TIMING4_ENABLE_PILOT_MASK, 0x1);
301 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
302 AR_PHY_TIMING4_ENABLE_CHAN_MASK, 0x1);
303 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
304 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_IDX_A, mask_index);
305 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
306 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_IDX_A, mask_index);
307 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
308 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_IDX_A, mask_index);
309 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
310 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_A, 0xc);
311 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
312 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_A, 0xc);
313 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
314 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_A, 0xa0);
315 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
316 AR_PHY_SPUR_REG_MASK_RATE_CNTL, 0xff);
317}
318
319static void ar9003_hw_spur_ofdm_work(struct ath_hw *ah,
320 struct ath9k_channel *chan,
321 int freq_offset)
322{
323 int spur_freq_sd = 0;
324 int spur_subchannel_sd = 0;
325 int spur_delta_phase = 0;
326
327 if (IS_CHAN_HT40(chan)) {
328 if (freq_offset < 0) {
329 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
330 AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
331 spur_subchannel_sd = 1;
332 else
333 spur_subchannel_sd = 0;
334
335 spur_freq_sd = ((freq_offset + 10) << 9) / 11;
336
337 } else {
338 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
339 AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
340 spur_subchannel_sd = 0;
341 else
342 spur_subchannel_sd = 1;
343
344 spur_freq_sd = ((freq_offset - 10) << 9) / 11;
345
346 }
347
348 spur_delta_phase = (freq_offset << 17) / 5;
349
350 } else {
351 spur_subchannel_sd = 0;
352 spur_freq_sd = (freq_offset << 9) /11;
353 spur_delta_phase = (freq_offset << 18) / 5;
354 }
355
356 spur_freq_sd = spur_freq_sd & 0x3ff;
357 spur_delta_phase = spur_delta_phase & 0xfffff;
358
359 ar9003_hw_spur_ofdm(ah,
360 freq_offset,
361 spur_freq_sd,
362 spur_delta_phase,
363 spur_subchannel_sd);
364}
365
366/* Spur mitigation for OFDM */
367static void ar9003_hw_spur_mitigate_ofdm(struct ath_hw *ah,
368 struct ath9k_channel *chan)
369{
370 int synth_freq;
371 int range = 10;
372 int freq_offset = 0;
373 int mode;
374 u8* spurChansPtr;
375 unsigned int i;
376 struct ar9300_eeprom *eep = &ah->eeprom.ar9300_eep;
377
378 if (IS_CHAN_5GHZ(chan)) {
379 spurChansPtr = &(eep->modalHeader5G.spurChans[0]);
380 mode = 0;
381 }
382 else {
383 spurChansPtr = &(eep->modalHeader2G.spurChans[0]);
384 mode = 1;
385 }
386
387 if (spurChansPtr[0] == 0)
388 return; /* No spur in the mode */
389
390 if (IS_CHAN_HT40(chan)) {
391 range = 19;
392 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
393 AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
394 synth_freq = chan->channel - 10;
395 else
396 synth_freq = chan->channel + 10;
397 } else {
398 range = 10;
399 synth_freq = chan->channel;
400 }
401
402 ar9003_hw_spur_ofdm_clear(ah);
403
404 for (i = 0; spurChansPtr[i] && i < 5; i++) {
405 freq_offset = FBIN2FREQ(spurChansPtr[i], mode) - synth_freq;
406 if (abs(freq_offset) < range) {
407 ar9003_hw_spur_ofdm_work(ah, chan, freq_offset);
408 break;
409 }
410 }
411}
412
413static void ar9003_hw_spur_mitigate(struct ath_hw *ah,
414 struct ath9k_channel *chan)
415{
416 ar9003_hw_spur_mitigate_mrc_cck(ah, chan);
417 ar9003_hw_spur_mitigate_ofdm(ah, chan);
418}
419
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400420static u32 ar9003_hw_compute_pll_control(struct ath_hw *ah,
421 struct ath9k_channel *chan)
422{
Felix Fietkau317d3322010-04-15 17:38:34 -0400423 u32 pll;
424
425 pll = SM(0x5, AR_RTC_9300_PLL_REFDIV);
426
427 if (chan && IS_CHAN_HALF_RATE(chan))
428 pll |= SM(0x1, AR_RTC_9300_PLL_CLKSEL);
429 else if (chan && IS_CHAN_QUARTER_RATE(chan))
430 pll |= SM(0x2, AR_RTC_9300_PLL_CLKSEL);
431
Felix Fietkau14bc1102010-04-26 15:04:30 -0400432 pll |= SM(0x2c, AR_RTC_9300_PLL_DIV);
Felix Fietkau317d3322010-04-15 17:38:34 -0400433
434 return pll;
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400435}
436
437static void ar9003_hw_set_channel_regs(struct ath_hw *ah,
438 struct ath9k_channel *chan)
439{
Luis R. Rodriguezcffb5e42010-04-15 17:38:38 -0400440 u32 phymode;
441 u32 enableDacFifo = 0;
442
443 enableDacFifo =
444 (REG_READ(ah, AR_PHY_GEN_CTRL) & AR_PHY_GC_ENABLE_DAC_FIFO);
445
446 /* Enable 11n HT, 20 MHz */
447 phymode = AR_PHY_GC_HT_EN | AR_PHY_GC_SINGLE_HT_LTF1 | AR_PHY_GC_WALSH |
448 AR_PHY_GC_SHORT_GI_40 | enableDacFifo;
449
450 /* Configure baseband for dynamic 20/40 operation */
451 if (IS_CHAN_HT40(chan)) {
452 phymode |= AR_PHY_GC_DYN2040_EN;
453 /* Configure control (primary) channel at +-10MHz */
454 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
455 (chan->chanmode == CHANNEL_G_HT40PLUS))
456 phymode |= AR_PHY_GC_DYN2040_PRI_CH;
457
458 }
459
460 /* make sure we preserve INI settings */
461 phymode |= REG_READ(ah, AR_PHY_GEN_CTRL);
462 /* turn off Green Field detection for STA for now */
463 phymode &= ~AR_PHY_GC_GF_DETECT_EN;
464
465 REG_WRITE(ah, AR_PHY_GEN_CTRL, phymode);
466
467 /* Configure MAC for 20/40 operation */
468 ath9k_hw_set11nmac2040(ah);
469
470 /* global transmit timeout (25 TUs default)*/
471 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
472 /* carrier sense timeout */
473 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400474}
475
476static void ar9003_hw_init_bb(struct ath_hw *ah,
477 struct ath9k_channel *chan)
478{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400479 u32 synthDelay;
480
481 /*
482 * Wait for the frequency synth to settle (synth goes on
483 * via AR_PHY_ACTIVE_EN). Read the phy active delay register.
484 * Value is in 100ns increments.
485 */
486 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
487 if (IS_CHAN_B(chan))
488 synthDelay = (4 * synthDelay) / 22;
489 else
490 synthDelay /= 10;
491
492 /* Activate the PHY (includes baseband activate + synthesizer on) */
493 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
494
495 /*
496 * There is an issue if the AP starts the calibration before
497 * the base band timeout completes. This could result in the
498 * rx_clear false triggering. As a workaround we add delay an
499 * extra BASE_ACTIVATE_DELAY usecs to ensure this condition
500 * does not happen.
501 */
502 udelay(synthDelay + BASE_ACTIVATE_DELAY);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400503}
504
Luis R. Rodriguezcffb5e42010-04-15 17:38:38 -0400505void ar9003_hw_set_chain_masks(struct ath_hw *ah, u8 rx, u8 tx)
506{
507 switch (rx) {
508 case 0x5:
509 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
510 AR_PHY_SWAP_ALT_CHAIN);
511 case 0x3:
512 case 0x1:
513 case 0x2:
514 case 0x7:
515 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx);
516 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx);
517 break;
518 default:
519 break;
520 }
521
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +0530522 if ((ah->caps.hw_caps & ATH9K_HW_CAP_APM) && (tx == 0x7))
523 REG_WRITE(ah, AR_SELFGEN_MASK, 0x3);
524 else
525 REG_WRITE(ah, AR_SELFGEN_MASK, tx);
526
Luis R. Rodriguezcffb5e42010-04-15 17:38:38 -0400527 if (tx == 0x5) {
528 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
529 AR_PHY_SWAP_ALT_CHAIN);
530 }
531}
532
533/*
534 * Override INI values with chip specific configuration.
535 */
536static void ar9003_hw_override_ini(struct ath_hw *ah)
537{
538 u32 val;
539
540 /*
541 * Set the RX_ABORT and RX_DIS and clear it only after
542 * RXE is set for MAC. This prevents frames with
543 * corrupted descriptor status.
544 */
545 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
546
547 /*
548 * For AR9280 and above, there is a new feature that allows
549 * Multicast search based on both MAC Address and Key ID. By default,
550 * this feature is enabled. But since the driver is not using this
551 * feature, we switch it off; otherwise multicast search based on
552 * MAC addr only will fail.
553 */
554 val = REG_READ(ah, AR_PCU_MISC_MODE2) & (~AR_ADHOC_MCAST_KEYID_ENABLE);
555 REG_WRITE(ah, AR_PCU_MISC_MODE2,
556 val | AR_AGG_WEP_ENABLE_FIX | AR_AGG_WEP_ENABLE);
557}
558
559static void ar9003_hw_prog_ini(struct ath_hw *ah,
560 struct ar5416IniArray *iniArr,
561 int column)
562{
563 unsigned int i, regWrites = 0;
564
565 /* New INI format: Array may be undefined (pre, core, post arrays) */
566 if (!iniArr->ia_array)
567 return;
568
569 /*
570 * New INI format: Pre, core, and post arrays for a given subsystem
571 * may be modal (> 2 columns) or non-modal (2 columns). Determine if
572 * the array is non-modal and force the column to 1.
573 */
574 if (column >= iniArr->ia_columns)
575 column = 1;
576
577 for (i = 0; i < iniArr->ia_rows; i++) {
578 u32 reg = INI_RA(iniArr, i, 0);
579 u32 val = INI_RA(iniArr, i, column);
580
Vasanthakumar Thiagarajan7e68b742010-12-15 07:30:47 -0800581 REG_WRITE(ah, reg, val);
Felix Fietkaub2ccc502010-07-30 21:02:12 +0200582
Luis R. Rodriguezcffb5e42010-04-15 17:38:38 -0400583 DO_DELAY(regWrites);
584 }
585}
586
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400587static int ar9003_hw_process_ini(struct ath_hw *ah,
588 struct ath9k_channel *chan)
589{
Luis R. Rodriguezcffb5e42010-04-15 17:38:38 -0400590 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
591 unsigned int regWrites = 0, i;
592 struct ieee80211_channel *channel = chan->chan;
593 u32 modesIndex, freqIndex;
594
595 switch (chan->chanmode) {
596 case CHANNEL_A:
597 case CHANNEL_A_HT20:
598 modesIndex = 1;
599 freqIndex = 1;
600 break;
601 case CHANNEL_A_HT40PLUS:
602 case CHANNEL_A_HT40MINUS:
603 modesIndex = 2;
604 freqIndex = 1;
605 break;
606 case CHANNEL_G:
607 case CHANNEL_G_HT20:
608 case CHANNEL_B:
609 modesIndex = 4;
610 freqIndex = 2;
611 break;
612 case CHANNEL_G_HT40PLUS:
613 case CHANNEL_G_HT40MINUS:
614 modesIndex = 3;
615 freqIndex = 2;
616 break;
617
618 default:
619 return -EINVAL;
620 }
621
622 for (i = 0; i < ATH_INI_NUM_SPLIT; i++) {
623 ar9003_hw_prog_ini(ah, &ah->iniSOC[i], modesIndex);
624 ar9003_hw_prog_ini(ah, &ah->iniMac[i], modesIndex);
625 ar9003_hw_prog_ini(ah, &ah->iniBB[i], modesIndex);
626 ar9003_hw_prog_ini(ah, &ah->iniRadio[i], modesIndex);
627 }
628
629 REG_WRITE_ARRAY(&ah->iniModesRxGain, 1, regWrites);
630 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
631
632 /*
633 * For 5GHz channels requiring Fast Clock, apply
634 * different modal values.
635 */
Felix Fietkau6b42e8d2010-04-26 15:04:35 -0400636 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
Luis R. Rodriguezcffb5e42010-04-15 17:38:38 -0400637 REG_WRITE_ARRAY(&ah->iniModesAdditional,
638 modesIndex, regWrites);
639
640 ar9003_hw_override_ini(ah);
641 ar9003_hw_set_channel_regs(ah, chan);
642 ar9003_hw_set_chain_masks(ah, ah->rxchainmask, ah->txchainmask);
643
644 /* Set TX power */
645 ah->eep_ops->set_txpower(ah, chan,
646 ath9k_regd_get_ctl(regulatory, chan),
647 channel->max_antenna_gain * 2,
648 channel->max_power * 2,
649 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +0200650 (u32) regulatory->power_limit), false);
Luis R. Rodriguezcffb5e42010-04-15 17:38:38 -0400651
652 return 0;
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400653}
654
655static void ar9003_hw_set_rfmode(struct ath_hw *ah,
656 struct ath9k_channel *chan)
657{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400658 u32 rfMode = 0;
659
660 if (chan == NULL)
661 return;
662
663 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
664 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
665
Felix Fietkau6b42e8d2010-04-26 15:04:35 -0400666 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400667 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
668
669 REG_WRITE(ah, AR_PHY_MODE, rfMode);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400670}
671
672static void ar9003_hw_mark_phy_inactive(struct ath_hw *ah)
673{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400674 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400675}
676
677static void ar9003_hw_set_delta_slope(struct ath_hw *ah,
678 struct ath9k_channel *chan)
679{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400680 u32 coef_scaled, ds_coef_exp, ds_coef_man;
681 u32 clockMhzScaled = 0x64000000;
682 struct chan_centers centers;
683
684 /*
685 * half and quarter rate can divide the scaled clock by 2 or 4
686 * scale for selected channel bandwidth
687 */
688 if (IS_CHAN_HALF_RATE(chan))
689 clockMhzScaled = clockMhzScaled >> 1;
690 else if (IS_CHAN_QUARTER_RATE(chan))
691 clockMhzScaled = clockMhzScaled >> 2;
692
693 /*
694 * ALGO -> coef = 1e8/fcarrier*fclock/40;
695 * scaled coef to provide precision for this floating calculation
696 */
697 ath9k_hw_get_channel_centers(ah, chan, &centers);
698 coef_scaled = clockMhzScaled / centers.synth_center;
699
700 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
701 &ds_coef_exp);
702
703 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
704 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
705 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
706 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
707
708 /*
709 * For Short GI,
710 * scaled coeff is 9/10 that of normal coeff
711 */
712 coef_scaled = (9 * coef_scaled) / 10;
713
714 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
715 &ds_coef_exp);
716
717 /* for short gi */
718 REG_RMW_FIELD(ah, AR_PHY_SGI_DELTA,
719 AR_PHY_SGI_DSC_MAN, ds_coef_man);
720 REG_RMW_FIELD(ah, AR_PHY_SGI_DELTA,
721 AR_PHY_SGI_DSC_EXP, ds_coef_exp);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400722}
723
724static bool ar9003_hw_rfbus_req(struct ath_hw *ah)
725{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400726 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
727 return ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
728 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400729}
730
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400731/*
732 * Wait for the frequency synth to settle (synth goes on via PHY_ACTIVE_EN).
733 * Read the phy active delay register. Value is in 100ns increments.
734 */
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400735static void ar9003_hw_rfbus_done(struct ath_hw *ah)
736{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400737 u32 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
738 if (IS_CHAN_B(ah->curchan))
739 synthDelay = (4 * synthDelay) / 22;
740 else
741 synthDelay /= 10;
742
743 udelay(synthDelay + BASE_ACTIVATE_DELAY);
744
745 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400746}
747
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400748/*
749 * Set the interrupt and GPIO values so the ISR can disable RF
750 * on a switch signal. Assumes GPIO port and interrupt polarity
751 * are set prior to call.
752 */
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400753static void ar9003_hw_enable_rfkill(struct ath_hw *ah)
754{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400755 /* Connect rfsilent_bb_l to baseband */
756 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
757 AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
758 /* Set input mux for rfsilent_bb_l to GPIO #0 */
759 REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
760 AR_GPIO_INPUT_MUX2_RFSILENT);
761
762 /*
763 * Configure the desired GPIO port for input and
764 * enable baseband rf silence.
765 */
766 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
767 REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400768}
769
770static void ar9003_hw_set_diversity(struct ath_hw *ah, bool value)
771{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400772 u32 v = REG_READ(ah, AR_PHY_CCK_DETECT);
773 if (value)
774 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
775 else
776 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
777 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400778}
779
Felix Fietkauc16fcb42010-04-15 17:38:39 -0400780static bool ar9003_hw_ani_control(struct ath_hw *ah,
781 enum ath9k_ani_cmd cmd, int param)
782{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400783 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400784 struct ath9k_channel *chan = ah->curchan;
Felix Fietkau093115b2010-10-04 20:09:47 +0200785 struct ar5416AniState *aniState = &chan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400786 s32 value, value2;
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400787
788 switch (cmd & ah->ani_function) {
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400789 case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400790 /*
791 * on == 1 means ofdm weak signal detection is ON
792 * on == 1 is the default, for less noise immunity
793 *
794 * on == 0 means ofdm weak signal detection is OFF
795 * on == 0 means more noise imm
796 */
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400797 u32 on = param ? 1 : 0;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400798 /*
799 * make register setting for default
800 * (weak sig detect ON) come from INI file
801 */
802 int m1ThreshLow = on ?
803 aniState->iniDef.m1ThreshLow : m1ThreshLow_off;
804 int m2ThreshLow = on ?
805 aniState->iniDef.m2ThreshLow : m2ThreshLow_off;
806 int m1Thresh = on ?
807 aniState->iniDef.m1Thresh : m1Thresh_off;
808 int m2Thresh = on ?
809 aniState->iniDef.m2Thresh : m2Thresh_off;
810 int m2CountThr = on ?
811 aniState->iniDef.m2CountThr : m2CountThr_off;
812 int m2CountThrLow = on ?
813 aniState->iniDef.m2CountThrLow : m2CountThrLow_off;
814 int m1ThreshLowExt = on ?
815 aniState->iniDef.m1ThreshLowExt : m1ThreshLowExt_off;
816 int m2ThreshLowExt = on ?
817 aniState->iniDef.m2ThreshLowExt : m2ThreshLowExt_off;
818 int m1ThreshExt = on ?
819 aniState->iniDef.m1ThreshExt : m1ThreshExt_off;
820 int m2ThreshExt = on ?
821 aniState->iniDef.m2ThreshExt : m2ThreshExt_off;
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400822
823 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
824 AR_PHY_SFCORR_LOW_M1_THRESH_LOW,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400825 m1ThreshLow);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400826 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
827 AR_PHY_SFCORR_LOW_M2_THRESH_LOW,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400828 m2ThreshLow);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400829 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400830 AR_PHY_SFCORR_M1_THRESH, m1Thresh);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400831 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400832 AR_PHY_SFCORR_M2_THRESH, m2Thresh);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400833 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400834 AR_PHY_SFCORR_M2COUNT_THR, m2CountThr);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400835 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
836 AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400837 m2CountThrLow);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400838
839 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400840 AR_PHY_SFCORR_EXT_M1_THRESH_LOW, m1ThreshLowExt);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400841 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400842 AR_PHY_SFCORR_EXT_M2_THRESH_LOW, m2ThreshLowExt);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400843 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400844 AR_PHY_SFCORR_EXT_M1_THRESH, m1ThreshExt);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400845 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400846 AR_PHY_SFCORR_EXT_M2_THRESH, m2ThreshExt);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400847
848 if (on)
849 REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
850 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
851 else
852 REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
853 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
854
855 if (!on != aniState->ofdmWeakSigDetectOff) {
Joe Perches226afe62010-12-02 19:12:37 -0800856 ath_dbg(common, ATH_DBG_ANI,
857 "** ch %d: ofdm weak signal: %s=>%s\n",
858 chan->channel,
859 !aniState->ofdmWeakSigDetectOff ?
860 "on" : "off",
861 on ? "on" : "off");
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400862 if (on)
863 ah->stats.ast_ani_ofdmon++;
864 else
865 ah->stats.ast_ani_ofdmoff++;
866 aniState->ofdmWeakSigDetectOff = !on;
867 }
868 break;
869 }
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400870 case ATH9K_ANI_FIRSTEP_LEVEL:{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400871 u32 level = param;
872
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400873 if (level >= ARRAY_SIZE(firstep_table)) {
Joe Perches226afe62010-12-02 19:12:37 -0800874 ath_dbg(common, ATH_DBG_ANI,
875 "ATH9K_ANI_FIRSTEP_LEVEL: level out of range (%u > %zu)\n",
876 level, ARRAY_SIZE(firstep_table));
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400877 return false;
878 }
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400879
880 /*
881 * make register setting relative to default
882 * from INI file & cap value
883 */
884 value = firstep_table[level] -
885 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
886 aniState->iniDef.firstep;
887 if (value < ATH9K_SIG_FIRSTEP_SETTING_MIN)
888 value = ATH9K_SIG_FIRSTEP_SETTING_MIN;
889 if (value > ATH9K_SIG_FIRSTEP_SETTING_MAX)
890 value = ATH9K_SIG_FIRSTEP_SETTING_MAX;
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400891 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
892 AR_PHY_FIND_SIG_FIRSTEP,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400893 value);
894 /*
895 * we need to set first step low register too
896 * make register setting relative to default
897 * from INI file & cap value
898 */
899 value2 = firstep_table[level] -
900 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
901 aniState->iniDef.firstepLow;
902 if (value2 < ATH9K_SIG_FIRSTEP_SETTING_MIN)
903 value2 = ATH9K_SIG_FIRSTEP_SETTING_MIN;
904 if (value2 > ATH9K_SIG_FIRSTEP_SETTING_MAX)
905 value2 = ATH9K_SIG_FIRSTEP_SETTING_MAX;
906
907 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG_LOW,
908 AR_PHY_FIND_SIG_LOW_FIRSTEP_LOW, value2);
909
910 if (level != aniState->firstepLevel) {
Joe Perches226afe62010-12-02 19:12:37 -0800911 ath_dbg(common, ATH_DBG_ANI,
912 "** ch %d: level %d=>%d[def:%d] firstep[level]=%d ini=%d\n",
913 chan->channel,
914 aniState->firstepLevel,
915 level,
916 ATH9K_ANI_FIRSTEP_LVL_NEW,
917 value,
918 aniState->iniDef.firstep);
919 ath_dbg(common, ATH_DBG_ANI,
920 "** ch %d: level %d=>%d[def:%d] firstep_low[level]=%d ini=%d\n",
921 chan->channel,
922 aniState->firstepLevel,
923 level,
924 ATH9K_ANI_FIRSTEP_LVL_NEW,
925 value2,
926 aniState->iniDef.firstepLow);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400927 if (level > aniState->firstepLevel)
928 ah->stats.ast_ani_stepup++;
929 else if (level < aniState->firstepLevel)
930 ah->stats.ast_ani_stepdown++;
931 aniState->firstepLevel = level;
932 }
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400933 break;
934 }
935 case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400936 u32 level = param;
937
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400938 if (level >= ARRAY_SIZE(cycpwrThr1_table)) {
Joe Perches226afe62010-12-02 19:12:37 -0800939 ath_dbg(common, ATH_DBG_ANI,
940 "ATH9K_ANI_SPUR_IMMUNITY_LEVEL: level out of range (%u > %zu)\n",
941 level, ARRAY_SIZE(cycpwrThr1_table));
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400942 return false;
943 }
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400944 /*
945 * make register setting relative to default
946 * from INI file & cap value
947 */
948 value = cycpwrThr1_table[level] -
949 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
950 aniState->iniDef.cycpwrThr1;
951 if (value < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
952 value = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
953 if (value > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
954 value = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400955 REG_RMW_FIELD(ah, AR_PHY_TIMING5,
956 AR_PHY_TIMING5_CYCPWR_THR1,
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400957 value);
958
959 /*
960 * set AR_PHY_EXT_CCA for extension channel
961 * make register setting relative to default
962 * from INI file & cap value
963 */
964 value2 = cycpwrThr1_table[level] -
965 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
966 aniState->iniDef.cycpwrThr1Ext;
967 if (value2 < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
968 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
969 if (value2 > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
970 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
971 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
972 AR_PHY_EXT_CYCPWR_THR1, value2);
973
974 if (level != aniState->spurImmunityLevel) {
Joe Perches226afe62010-12-02 19:12:37 -0800975 ath_dbg(common, ATH_DBG_ANI,
976 "** ch %d: level %d=>%d[def:%d] cycpwrThr1[level]=%d ini=%d\n",
977 chan->channel,
978 aniState->spurImmunityLevel,
979 level,
980 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
981 value,
982 aniState->iniDef.cycpwrThr1);
983 ath_dbg(common, ATH_DBG_ANI,
984 "** ch %d: level %d=>%d[def:%d] cycpwrThr1Ext[level]=%d ini=%d\n",
985 chan->channel,
986 aniState->spurImmunityLevel,
987 level,
988 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
989 value2,
990 aniState->iniDef.cycpwrThr1Ext);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400991 if (level > aniState->spurImmunityLevel)
992 ah->stats.ast_ani_spurup++;
993 else if (level < aniState->spurImmunityLevel)
994 ah->stats.ast_ani_spurdown++;
995 aniState->spurImmunityLevel = level;
996 }
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -0400997 break;
998 }
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400999 case ATH9K_ANI_MRC_CCK:{
1000 /*
1001 * is_on == 1 means MRC CCK ON (default, less noise imm)
1002 * is_on == 0 means MRC CCK is OFF (more noise imm)
1003 */
1004 bool is_on = param ? 1 : 0;
1005 REG_RMW_FIELD(ah, AR_PHY_MRC_CCK_CTRL,
1006 AR_PHY_MRC_CCK_ENABLE, is_on);
1007 REG_RMW_FIELD(ah, AR_PHY_MRC_CCK_CTRL,
1008 AR_PHY_MRC_CCK_MUX_REG, is_on);
1009 if (!is_on != aniState->mrcCCKOff) {
Joe Perches226afe62010-12-02 19:12:37 -08001010 ath_dbg(common, ATH_DBG_ANI,
1011 "** ch %d: MRC CCK: %s=>%s\n",
1012 chan->channel,
1013 !aniState->mrcCCKOff ? "on" : "off",
1014 is_on ? "on" : "off");
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001015 if (is_on)
1016 ah->stats.ast_ani_ccklow++;
1017 else
1018 ah->stats.ast_ani_cckhigh++;
1019 aniState->mrcCCKOff = !is_on;
1020 }
1021 break;
1022 }
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -04001023 case ATH9K_ANI_PRESENT:
1024 break;
1025 default:
Joe Perches226afe62010-12-02 19:12:37 -08001026 ath_dbg(common, ATH_DBG_ANI, "invalid cmd %u\n", cmd);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -04001027 return false;
1028 }
1029
Joe Perches226afe62010-12-02 19:12:37 -08001030 ath_dbg(common, ATH_DBG_ANI,
1031 "ANI parameters: SI=%d, ofdmWS=%s FS=%d MRCcck=%s listenTime=%d ofdmErrs=%d cckErrs=%d\n",
1032 aniState->spurImmunityLevel,
1033 !aniState->ofdmWeakSigDetectOff ? "on" : "off",
1034 aniState->firstepLevel,
1035 !aniState->mrcCCKOff ? "on" : "off",
1036 aniState->listenTime,
1037 aniState->ofdmPhyErrCount,
1038 aniState->cckPhyErrCount);
Luis R. Rodriguezaf914a92010-04-15 17:38:40 -04001039 return true;
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001040}
1041
Felix Fietkau641d9922010-04-15 17:38:49 -04001042static void ar9003_hw_do_getnf(struct ath_hw *ah,
1043 int16_t nfarray[NUM_NF_READINGS])
1044{
Felix Fietkau641d9922010-04-15 17:38:49 -04001045 int16_t nf;
1046
1047 nf = MS(REG_READ(ah, AR_PHY_CCA_0), AR_PHY_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001048 nfarray[0] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001049
1050 nf = MS(REG_READ(ah, AR_PHY_CCA_1), AR_PHY_CH1_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001051 nfarray[1] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001052
1053 nf = MS(REG_READ(ah, AR_PHY_CCA_2), AR_PHY_CH2_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001054 nfarray[2] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001055
Felix Fietkau866b7782010-07-23 04:07:48 +02001056 if (!IS_CHAN_HT40(ah->curchan))
1057 return;
1058
Felix Fietkau641d9922010-04-15 17:38:49 -04001059 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA), AR_PHY_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001060 nfarray[3] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001061
1062 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA_1), AR_PHY_CH1_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001063 nfarray[4] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001064
1065 nf = MS(REG_READ(ah, AR_PHY_EXT_CCA_2), AR_PHY_CH2_EXT_MINCCA_PWR);
Andreas Herrmann7919a572010-08-30 19:04:01 +00001066 nfarray[5] = sign_extend32(nf, 8);
Felix Fietkau641d9922010-04-15 17:38:49 -04001067}
1068
Felix Fietkauf2552e22010-07-02 00:09:50 +02001069static void ar9003_hw_set_nf_limits(struct ath_hw *ah)
Felix Fietkau641d9922010-04-15 17:38:49 -04001070{
Felix Fietkauf2552e22010-07-02 00:09:50 +02001071 ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_2GHZ;
1072 ah->nf_2g.min = AR_PHY_CCA_MIN_GOOD_VAL_9300_2GHZ;
1073 ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_9300_2GHZ;
1074 ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_5GHZ;
1075 ah->nf_5g.min = AR_PHY_CCA_MIN_GOOD_VAL_9300_5GHZ;
1076 ah->nf_5g.nominal = AR_PHY_CCA_NOM_VAL_9300_5GHZ;
Felix Fietkau641d9922010-04-15 17:38:49 -04001077}
1078
Luis R. Rodriguezdf23aca2010-04-15 17:39:11 -04001079/*
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001080 * Initialize the ANI register values with default (ini) values.
1081 * This routine is called during a (full) hardware reset after
1082 * all the registers are initialised from the INI.
1083 */
1084static void ar9003_hw_ani_cache_ini_regs(struct ath_hw *ah)
1085{
1086 struct ar5416AniState *aniState;
1087 struct ath_common *common = ath9k_hw_common(ah);
1088 struct ath9k_channel *chan = ah->curchan;
1089 struct ath9k_ani_default *iniDef;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001090 u32 val;
1091
Felix Fietkau093115b2010-10-04 20:09:47 +02001092 aniState = &ah->curchan->ani;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001093 iniDef = &aniState->iniDef;
1094
Joe Perches226afe62010-12-02 19:12:37 -08001095 ath_dbg(common, ATH_DBG_ANI,
1096 "ver %d.%d opmode %u chan %d Mhz/0x%x\n",
1097 ah->hw_version.macVersion,
1098 ah->hw_version.macRev,
1099 ah->opmode,
1100 chan->channel,
1101 chan->channelFlags);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001102
1103 val = REG_READ(ah, AR_PHY_SFCORR);
1104 iniDef->m1Thresh = MS(val, AR_PHY_SFCORR_M1_THRESH);
1105 iniDef->m2Thresh = MS(val, AR_PHY_SFCORR_M2_THRESH);
1106 iniDef->m2CountThr = MS(val, AR_PHY_SFCORR_M2COUNT_THR);
1107
1108 val = REG_READ(ah, AR_PHY_SFCORR_LOW);
1109 iniDef->m1ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M1_THRESH_LOW);
1110 iniDef->m2ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M2_THRESH_LOW);
1111 iniDef->m2CountThrLow = MS(val, AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW);
1112
1113 val = REG_READ(ah, AR_PHY_SFCORR_EXT);
1114 iniDef->m1ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH);
1115 iniDef->m2ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH);
1116 iniDef->m1ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH_LOW);
1117 iniDef->m2ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH_LOW);
1118 iniDef->firstep = REG_READ_FIELD(ah,
1119 AR_PHY_FIND_SIG,
1120 AR_PHY_FIND_SIG_FIRSTEP);
1121 iniDef->firstepLow = REG_READ_FIELD(ah,
1122 AR_PHY_FIND_SIG_LOW,
1123 AR_PHY_FIND_SIG_LOW_FIRSTEP_LOW);
1124 iniDef->cycpwrThr1 = REG_READ_FIELD(ah,
1125 AR_PHY_TIMING5,
1126 AR_PHY_TIMING5_CYCPWR_THR1);
1127 iniDef->cycpwrThr1Ext = REG_READ_FIELD(ah,
1128 AR_PHY_EXT_CCA,
1129 AR_PHY_EXT_CYCPWR_THR1);
1130
1131 /* these levels just got reset to defaults by the INI */
1132 aniState->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL_NEW;
1133 aniState->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW;
1134 aniState->ofdmWeakSigDetectOff = !ATH9K_ANI_USE_OFDM_WEAK_SIG;
1135 aniState->mrcCCKOff = !ATH9K_ANI_ENABLE_MRC_CCK;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001136}
1137
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001138static void ar9003_hw_set_radar_params(struct ath_hw *ah,
1139 struct ath_hw_radar_conf *conf)
1140{
1141 u32 radar_0 = 0, radar_1 = 0;
1142
1143 if (!conf) {
1144 REG_CLR_BIT(ah, AR_PHY_RADAR_0, AR_PHY_RADAR_0_ENA);
1145 return;
1146 }
1147
1148 radar_0 |= AR_PHY_RADAR_0_ENA | AR_PHY_RADAR_0_FFT_ENA;
1149 radar_0 |= SM(conf->fir_power, AR_PHY_RADAR_0_FIRPWR);
1150 radar_0 |= SM(conf->radar_rssi, AR_PHY_RADAR_0_RRSSI);
1151 radar_0 |= SM(conf->pulse_height, AR_PHY_RADAR_0_HEIGHT);
1152 radar_0 |= SM(conf->pulse_rssi, AR_PHY_RADAR_0_PRSSI);
1153 radar_0 |= SM(conf->pulse_inband, AR_PHY_RADAR_0_INBAND);
1154
1155 radar_1 |= AR_PHY_RADAR_1_MAX_RRSSI;
1156 radar_1 |= AR_PHY_RADAR_1_BLOCK_CHECK;
1157 radar_1 |= SM(conf->pulse_maxlen, AR_PHY_RADAR_1_MAXLEN);
1158 radar_1 |= SM(conf->pulse_inband_step, AR_PHY_RADAR_1_RELSTEP_THRESH);
1159 radar_1 |= SM(conf->radar_inband, AR_PHY_RADAR_1_RELPWR_THRESH);
1160
1161 REG_WRITE(ah, AR_PHY_RADAR_0, radar_0);
1162 REG_WRITE(ah, AR_PHY_RADAR_1, radar_1);
1163 if (conf->ext_channel)
1164 REG_SET_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1165 else
1166 REG_CLR_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1167}
1168
Felix Fietkauc5d08552010-11-13 20:22:41 +01001169static void ar9003_hw_set_radar_conf(struct ath_hw *ah)
1170{
1171 struct ath_hw_radar_conf *conf = &ah->radar_conf;
1172
1173 conf->fir_power = -28;
1174 conf->radar_rssi = 0;
1175 conf->pulse_height = 10;
1176 conf->pulse_rssi = 24;
1177 conf->pulse_inband = 8;
1178 conf->pulse_maxlen = 255;
1179 conf->pulse_inband_step = 12;
1180 conf->radar_inband = 8;
1181}
1182
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04001183void ar9003_hw_attach_phy_ops(struct ath_hw *ah)
1184{
1185 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
Joe Perches07b2fa52010-11-20 18:38:53 -08001186 static const u32 ar9300_cca_regs[6] = {
Felix Fietkaubbacee12010-07-11 15:44:42 +02001187 AR_PHY_CCA_0,
1188 AR_PHY_CCA_1,
1189 AR_PHY_CCA_2,
1190 AR_PHY_EXT_CCA,
1191 AR_PHY_EXT_CCA_1,
1192 AR_PHY_EXT_CCA_2,
1193 };
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04001194
1195 priv_ops->rf_set_freq = ar9003_hw_set_channel;
1196 priv_ops->spur_mitigate_freq = ar9003_hw_spur_mitigate;
1197 priv_ops->compute_pll_control = ar9003_hw_compute_pll_control;
1198 priv_ops->set_channel_regs = ar9003_hw_set_channel_regs;
1199 priv_ops->init_bb = ar9003_hw_init_bb;
1200 priv_ops->process_ini = ar9003_hw_process_ini;
1201 priv_ops->set_rfmode = ar9003_hw_set_rfmode;
1202 priv_ops->mark_phy_inactive = ar9003_hw_mark_phy_inactive;
1203 priv_ops->set_delta_slope = ar9003_hw_set_delta_slope;
1204 priv_ops->rfbus_req = ar9003_hw_rfbus_req;
1205 priv_ops->rfbus_done = ar9003_hw_rfbus_done;
1206 priv_ops->enable_rfkill = ar9003_hw_enable_rfkill;
1207 priv_ops->set_diversity = ar9003_hw_set_diversity;
Felix Fietkauc16fcb42010-04-15 17:38:39 -04001208 priv_ops->ani_control = ar9003_hw_ani_control;
Felix Fietkau641d9922010-04-15 17:38:49 -04001209 priv_ops->do_getnf = ar9003_hw_do_getnf;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001210 priv_ops->ani_cache_ini_regs = ar9003_hw_ani_cache_ini_regs;
Felix Fietkau4e8c14e2010-11-11 03:18:38 +01001211 priv_ops->set_radar_params = ar9003_hw_set_radar_params;
Felix Fietkauf2552e22010-07-02 00:09:50 +02001212
1213 ar9003_hw_set_nf_limits(ah);
Felix Fietkauc5d08552010-11-13 20:22:41 +01001214 ar9003_hw_set_radar_conf(ah);
Felix Fietkaubbacee12010-07-11 15:44:42 +02001215 memcpy(ah->nf_regs, ar9300_cca_regs, sizeof(ah->nf_regs));
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04001216}
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001217
1218void ar9003_hw_bb_watchdog_config(struct ath_hw *ah)
1219{
1220 struct ath_common *common = ath9k_hw_common(ah);
1221 u32 idle_tmo_ms = ah->bb_watchdog_timeout_ms;
1222 u32 val, idle_count;
1223
1224 if (!idle_tmo_ms) {
1225 /* disable IRQ, disable chip-reset for BB panic */
1226 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2,
1227 REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) &
1228 ~(AR_PHY_WATCHDOG_RST_ENABLE |
1229 AR_PHY_WATCHDOG_IRQ_ENABLE));
1230
1231 /* disable watchdog in non-IDLE mode, disable in IDLE mode */
1232 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1,
1233 REG_READ(ah, AR_PHY_WATCHDOG_CTL_1) &
1234 ~(AR_PHY_WATCHDOG_NON_IDLE_ENABLE |
1235 AR_PHY_WATCHDOG_IDLE_ENABLE));
1236
Joe Perches226afe62010-12-02 19:12:37 -08001237 ath_dbg(common, ATH_DBG_RESET, "Disabled BB Watchdog\n");
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001238 return;
1239 }
1240
1241 /* enable IRQ, disable chip-reset for BB watchdog */
1242 val = REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) & AR_PHY_WATCHDOG_CNTL2_MASK;
1243 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2,
1244 (val | AR_PHY_WATCHDOG_IRQ_ENABLE) &
1245 ~AR_PHY_WATCHDOG_RST_ENABLE);
1246
1247 /* bound limit to 10 secs */
1248 if (idle_tmo_ms > 10000)
1249 idle_tmo_ms = 10000;
1250
1251 /*
1252 * The time unit for watchdog event is 2^15 44/88MHz cycles.
1253 *
1254 * For HT20 we have a time unit of 2^15/44 MHz = .74 ms per tick
1255 * For HT40 we have a time unit of 2^15/88 MHz = .37 ms per tick
1256 *
1257 * Given we use fast clock now in 5 GHz, these time units should
1258 * be common for both 2 GHz and 5 GHz.
1259 */
1260 idle_count = (100 * idle_tmo_ms) / 74;
1261 if (ah->curchan && IS_CHAN_HT40(ah->curchan))
1262 idle_count = (100 * idle_tmo_ms) / 37;
1263
1264 /*
1265 * enable watchdog in non-IDLE mode, disable in IDLE mode,
1266 * set idle time-out.
1267 */
1268 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1,
1269 AR_PHY_WATCHDOG_NON_IDLE_ENABLE |
1270 AR_PHY_WATCHDOG_IDLE_MASK |
1271 (AR_PHY_WATCHDOG_NON_IDLE_MASK & (idle_count << 2)));
1272
Joe Perches226afe62010-12-02 19:12:37 -08001273 ath_dbg(common, ATH_DBG_RESET,
1274 "Enabled BB Watchdog timeout (%u ms)\n",
1275 idle_tmo_ms);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001276}
1277
1278void ar9003_hw_bb_watchdog_read(struct ath_hw *ah)
1279{
1280 /*
1281 * we want to avoid printing in ISR context so we save the
1282 * watchdog status to be printed later in bottom half context.
1283 */
1284 ah->bb_watchdog_last_status = REG_READ(ah, AR_PHY_WATCHDOG_STATUS);
1285
1286 /*
1287 * the watchdog timer should reset on status read but to be sure
1288 * sure we write 0 to the watchdog status bit.
1289 */
1290 REG_WRITE(ah, AR_PHY_WATCHDOG_STATUS,
1291 ah->bb_watchdog_last_status & ~AR_PHY_WATCHDOG_STATUS_CLR);
1292}
1293
1294void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah)
1295{
1296 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau9dbebc72010-10-03 19:07:17 +02001297 u32 status;
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001298
1299 if (likely(!(common->debug_mask & ATH_DBG_RESET)))
1300 return;
1301
1302 status = ah->bb_watchdog_last_status;
Joe Perches226afe62010-12-02 19:12:37 -08001303 ath_dbg(common, ATH_DBG_RESET,
1304 "\n==== BB update: BB status=0x%08x ====\n", status);
1305 ath_dbg(common, ATH_DBG_RESET,
1306 "** BB state: wd=%u det=%u rdar=%u rOFDM=%d rCCK=%u tOFDM=%u tCCK=%u agc=%u src=%u **\n",
1307 MS(status, AR_PHY_WATCHDOG_INFO),
1308 MS(status, AR_PHY_WATCHDOG_DET_HANG),
1309 MS(status, AR_PHY_WATCHDOG_RADAR_SM),
1310 MS(status, AR_PHY_WATCHDOG_RX_OFDM_SM),
1311 MS(status, AR_PHY_WATCHDOG_RX_CCK_SM),
1312 MS(status, AR_PHY_WATCHDOG_TX_OFDM_SM),
1313 MS(status, AR_PHY_WATCHDOG_TX_CCK_SM),
1314 MS(status, AR_PHY_WATCHDOG_AGC_SM),
1315 MS(status, AR_PHY_WATCHDOG_SRCH_SM));
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001316
Joe Perches226afe62010-12-02 19:12:37 -08001317 ath_dbg(common, ATH_DBG_RESET,
1318 "** BB WD cntl: cntl1=0x%08x cntl2=0x%08x **\n",
1319 REG_READ(ah, AR_PHY_WATCHDOG_CTL_1),
1320 REG_READ(ah, AR_PHY_WATCHDOG_CTL_2));
1321 ath_dbg(common, ATH_DBG_RESET,
1322 "** BB mode: BB_gen_controls=0x%08x **\n",
1323 REG_READ(ah, AR_PHY_GEN_CTRL));
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001324
Felix Fietkaub5bfc562010-10-08 22:13:53 +02001325#define PCT(_field) (common->cc_survey._field * 100 / common->cc_survey.cycles)
1326 if (common->cc_survey.cycles)
Joe Perches226afe62010-12-02 19:12:37 -08001327 ath_dbg(common, ATH_DBG_RESET,
1328 "** BB busy times: rx_clear=%d%%, rx_frame=%d%%, tx_frame=%d%% **\n",
1329 PCT(rx_busy), PCT(rx_frame), PCT(tx_frame));
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001330
Joe Perches226afe62010-12-02 19:12:37 -08001331 ath_dbg(common, ATH_DBG_RESET,
1332 "==== BB update: done ====\n\n");
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001333}
1334EXPORT_SYMBOL(ar9003_hw_bb_watchdog_dbg_info);