ath9k: Fix warnings from -Wunused-but-set-variable
[linux/fpc-iii.git] / drivers / net / wireless / ath / ath9k / ar9003_phy.c
blobc83be2dd5718d16057f0ec84a7b92e2aa23ea656
1 /*
2 * Copyright (c) 2010 Atheros Communications Inc.
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.
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.
17 #include "hw.h"
18 #include "ar9003_phy.h"
20 static 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 */
24 static 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 */
29 * register values to turn OFDM weak signal detection OFF
31 static const int m1ThreshLow_off = 127;
32 static const int m2ThreshLow_off = 127;
33 static const int m1Thresh_off = 127;
34 static const int m2Thresh_off = 127;
35 static const int m2CountThr_off = 31;
36 static const int m2CountThrLow_off = 63;
37 static const int m1ThreshLowExt_off = 127;
38 static const int m2ThreshLowExt_off = 127;
39 static const int m1ThreshExt_off = 127;
40 static const int m2ThreshExt_off = 127;
42 /**
43 * ar9003_hw_set_channel - set channel on single-chip device
44 * @ah: atheros hardware structure
45 * @chan:
47 * This is the function to change channel on single-chip devices, that is
48 * all devices after ar9280.
50 * This function takes the channel value in MHz and sets
51 * hardware channel value. Assumes writes have been enabled to analog bus.
53 * Actual Expression,
55 * For 2GHz channel,
56 * Channel Frequency = (3/4) * freq_ref * (chansel[8:0] + chanfrac[16:0]/2^17)
57 * (freq_ref = 40MHz)
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))
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)
67 static int ar9003_hw_set_channel(struct ath_hw *ah, struct ath9k_channel *chan)
69 u16 bMode, fracMode = 0, aModeRefSel = 0;
70 u32 freq, channelSel = 0, reg32 = 0;
71 struct chan_centers centers;
72 int loadSynthChannel;
74 ath9k_hw_get_channel_centers(ah, chan, &centers);
75 freq = centers.synth_center;
77 if (freq < 4800) { /* 2 GHz, fractional mode */
78 if (AR_SREV_9485(ah)) {
79 u32 chan_frac;
82 * freq_ref = 40 / (refdiva >> amoderefsel); where refdiva=1 and amoderefsel=0
83 * ndiv = ((chan_mhz * 4) / 3) / freq_ref;
84 * chansel = int(ndiv), chanfrac = (ndiv - chansel) * 0x20000
86 channelSel = (freq * 4) / 120;
87 chan_frac = (((freq * 4) % 120) * 0x20000) / 120;
88 channelSel = (channelSel << 17) | chan_frac;
89 } else if (AR_SREV_9340(ah)) {
90 if (ah->is_clk_25mhz) {
91 u32 chan_frac;
93 channelSel = (freq * 2) / 75;
94 chan_frac = (((freq * 2) % 75) * 0x20000) / 75;
95 channelSel = (channelSel << 17) | chan_frac;
96 } else
97 channelSel = CHANSEL_2G(freq) >> 1;
98 } else
99 channelSel = CHANSEL_2G(freq);
100 /* Set to 2G mode */
101 bMode = 1;
102 } else {
103 if (AR_SREV_9340(ah) && ah->is_clk_25mhz) {
104 u32 chan_frac;
106 channelSel = (freq * 2) / 75;
107 chan_frac = ((freq % 75) * 0x20000) / 75;
108 channelSel = (channelSel << 17) | chan_frac;
109 } else {
110 channelSel = CHANSEL_5G(freq);
111 /* Doubler is ON, so, divide channelSel by 2. */
112 channelSel >>= 1;
114 /* Set to 5G mode */
115 bMode = 0;
118 /* Enable fractional mode for all channels */
119 fracMode = 1;
120 aModeRefSel = 0;
121 loadSynthChannel = 0;
123 reg32 = (bMode << 29);
124 REG_WRITE(ah, AR_PHY_SYNTH_CONTROL, reg32);
126 /* Enable Long shift Select for Synthesizer */
127 REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_SYNTH4,
128 AR_PHY_SYNTH4_LONG_SHIFT_SELECT, 1);
130 /* Program Synth. setting */
131 reg32 = (channelSel << 2) | (fracMode << 30) |
132 (aModeRefSel << 28) | (loadSynthChannel << 31);
133 REG_WRITE(ah, AR_PHY_65NM_CH0_SYNTH7, reg32);
135 /* Toggle Load Synth channel bit */
136 loadSynthChannel = 1;
137 reg32 = (channelSel << 2) | (fracMode << 30) |
138 (aModeRefSel << 28) | (loadSynthChannel << 31);
139 REG_WRITE(ah, AR_PHY_65NM_CH0_SYNTH7, reg32);
141 ah->curchan = chan;
142 ah->curchan_rad_index = -1;
144 return 0;
148 * ar9003_hw_spur_mitigate_mrc_cck - convert baseband spur frequency
149 * @ah: atheros hardware structure
150 * @chan:
152 * For single-chip solutions. Converts to baseband spur frequency given the
153 * input channel frequency and compute register settings below.
155 * Spur mitigation for MRC CCK
157 static void ar9003_hw_spur_mitigate_mrc_cck(struct ath_hw *ah,
158 struct ath9k_channel *chan)
160 static const u32 spur_freq[4] = { 2420, 2440, 2464, 2480 };
161 int cur_bb_spur, negative = 0, cck_spur_freq;
162 int i;
163 int range, max_spur_cnts, synth_freq;
164 u8 *spur_fbin_ptr = NULL;
167 * Need to verify range +/- 10 MHz in control channel, otherwise spur
168 * is out-of-band and can be ignored.
171 if (AR_SREV_9485(ah) || AR_SREV_9340(ah)) {
172 spur_fbin_ptr = ar9003_get_spur_chan_ptr(ah,
173 IS_CHAN_2GHZ(chan));
174 if (spur_fbin_ptr[0] == 0) /* No spur */
175 return;
176 max_spur_cnts = 5;
177 if (IS_CHAN_HT40(chan)) {
178 range = 19;
179 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
180 AR_PHY_GC_DYN2040_PRI_CH) == 0)
181 synth_freq = chan->channel + 10;
182 else
183 synth_freq = chan->channel - 10;
184 } else {
185 range = 10;
186 synth_freq = chan->channel;
188 } else {
189 range = 10;
190 max_spur_cnts = 4;
191 synth_freq = chan->channel;
194 for (i = 0; i < max_spur_cnts; i++) {
195 negative = 0;
196 if (AR_SREV_9485(ah) || AR_SREV_9340(ah))
197 cur_bb_spur = FBIN2FREQ(spur_fbin_ptr[i],
198 IS_CHAN_2GHZ(chan)) - synth_freq;
199 else
200 cur_bb_spur = spur_freq[i] - synth_freq;
202 if (cur_bb_spur < 0) {
203 negative = 1;
204 cur_bb_spur = -cur_bb_spur;
206 if (cur_bb_spur < range) {
207 cck_spur_freq = (int)((cur_bb_spur << 19) / 11);
209 if (negative == 1)
210 cck_spur_freq = -cck_spur_freq;
212 cck_spur_freq = cck_spur_freq & 0xfffff;
214 REG_RMW_FIELD(ah, AR_PHY_AGC_CONTROL,
215 AR_PHY_AGC_CONTROL_YCOK_MAX, 0x7);
216 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
217 AR_PHY_CCK_SPUR_MIT_SPUR_RSSI_THR, 0x7f);
218 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
219 AR_PHY_CCK_SPUR_MIT_SPUR_FILTER_TYPE,
220 0x2);
221 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
222 AR_PHY_CCK_SPUR_MIT_USE_CCK_SPUR_MIT,
223 0x1);
224 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
225 AR_PHY_CCK_SPUR_MIT_CCK_SPUR_FREQ,
226 cck_spur_freq);
228 return;
232 REG_RMW_FIELD(ah, AR_PHY_AGC_CONTROL,
233 AR_PHY_AGC_CONTROL_YCOK_MAX, 0x5);
234 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
235 AR_PHY_CCK_SPUR_MIT_USE_CCK_SPUR_MIT, 0x0);
236 REG_RMW_FIELD(ah, AR_PHY_CCK_SPUR_MIT,
237 AR_PHY_CCK_SPUR_MIT_CCK_SPUR_FREQ, 0x0);
240 /* Clean all spur register fields */
241 static void ar9003_hw_spur_ofdm_clear(struct ath_hw *ah)
243 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
244 AR_PHY_TIMING4_ENABLE_SPUR_FILTER, 0);
245 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
246 AR_PHY_TIMING11_SPUR_FREQ_SD, 0);
247 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
248 AR_PHY_TIMING11_SPUR_DELTA_PHASE, 0);
249 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
250 AR_PHY_SFCORR_EXT_SPUR_SUBCHANNEL_SD, 0);
251 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
252 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_AGC, 0);
253 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
254 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_SELFCOR, 0);
255 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
256 AR_PHY_TIMING4_ENABLE_SPUR_RSSI, 0);
257 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
258 AR_PHY_SPUR_REG_EN_VIT_SPUR_RSSI, 0);
259 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
260 AR_PHY_SPUR_REG_ENABLE_NF_RSSI_SPUR_MIT, 0);
262 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
263 AR_PHY_SPUR_REG_ENABLE_MASK_PPM, 0);
264 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
265 AR_PHY_TIMING4_ENABLE_PILOT_MASK, 0);
266 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
267 AR_PHY_TIMING4_ENABLE_CHAN_MASK, 0);
268 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
269 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_IDX_A, 0);
270 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
271 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_IDX_A, 0);
272 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
273 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_IDX_A, 0);
274 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
275 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_A, 0);
276 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
277 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_A, 0);
278 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
279 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_A, 0);
280 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
281 AR_PHY_SPUR_REG_MASK_RATE_CNTL, 0);
284 static void ar9003_hw_spur_ofdm(struct ath_hw *ah,
285 int freq_offset,
286 int spur_freq_sd,
287 int spur_delta_phase,
288 int spur_subchannel_sd)
290 int mask_index = 0;
292 /* OFDM Spur mitigation */
293 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
294 AR_PHY_TIMING4_ENABLE_SPUR_FILTER, 0x1);
295 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
296 AR_PHY_TIMING11_SPUR_FREQ_SD, spur_freq_sd);
297 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
298 AR_PHY_TIMING11_SPUR_DELTA_PHASE, spur_delta_phase);
299 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
300 AR_PHY_SFCORR_EXT_SPUR_SUBCHANNEL_SD, spur_subchannel_sd);
301 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
302 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_AGC, 0x1);
303 REG_RMW_FIELD(ah, AR_PHY_TIMING11,
304 AR_PHY_TIMING11_USE_SPUR_FILTER_IN_SELFCOR, 0x1);
305 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
306 AR_PHY_TIMING4_ENABLE_SPUR_RSSI, 0x1);
307 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
308 AR_PHY_SPUR_REG_SPUR_RSSI_THRESH, 34);
309 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
310 AR_PHY_SPUR_REG_EN_VIT_SPUR_RSSI, 1);
312 if (REG_READ_FIELD(ah, AR_PHY_MODE,
313 AR_PHY_MODE_DYNAMIC) == 0x1)
314 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
315 AR_PHY_SPUR_REG_ENABLE_NF_RSSI_SPUR_MIT, 1);
317 mask_index = (freq_offset << 4) / 5;
318 if (mask_index < 0)
319 mask_index = mask_index - 1;
321 mask_index = mask_index & 0x7f;
323 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
324 AR_PHY_SPUR_REG_ENABLE_MASK_PPM, 0x1);
325 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
326 AR_PHY_TIMING4_ENABLE_PILOT_MASK, 0x1);
327 REG_RMW_FIELD(ah, AR_PHY_TIMING4,
328 AR_PHY_TIMING4_ENABLE_CHAN_MASK, 0x1);
329 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
330 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_IDX_A, mask_index);
331 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
332 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_IDX_A, mask_index);
333 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
334 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_IDX_A, mask_index);
335 REG_RMW_FIELD(ah, AR_PHY_PILOT_SPUR_MASK,
336 AR_PHY_PILOT_SPUR_MASK_CF_PILOT_MASK_A, 0xc);
337 REG_RMW_FIELD(ah, AR_PHY_CHAN_SPUR_MASK,
338 AR_PHY_CHAN_SPUR_MASK_CF_CHAN_MASK_A, 0xc);
339 REG_RMW_FIELD(ah, AR_PHY_SPUR_MASK_A,
340 AR_PHY_SPUR_MASK_A_CF_PUNC_MASK_A, 0xa0);
341 REG_RMW_FIELD(ah, AR_PHY_SPUR_REG,
342 AR_PHY_SPUR_REG_MASK_RATE_CNTL, 0xff);
345 static void ar9003_hw_spur_ofdm_work(struct ath_hw *ah,
346 struct ath9k_channel *chan,
347 int freq_offset)
349 int spur_freq_sd = 0;
350 int spur_subchannel_sd = 0;
351 int spur_delta_phase = 0;
353 if (IS_CHAN_HT40(chan)) {
354 if (freq_offset < 0) {
355 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
356 AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
357 spur_subchannel_sd = 1;
358 else
359 spur_subchannel_sd = 0;
361 spur_freq_sd = ((freq_offset + 10) << 9) / 11;
363 } else {
364 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
365 AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
366 spur_subchannel_sd = 0;
367 else
368 spur_subchannel_sd = 1;
370 spur_freq_sd = ((freq_offset - 10) << 9) / 11;
374 spur_delta_phase = (freq_offset << 17) / 5;
376 } else {
377 spur_subchannel_sd = 0;
378 spur_freq_sd = (freq_offset << 9) /11;
379 spur_delta_phase = (freq_offset << 18) / 5;
382 spur_freq_sd = spur_freq_sd & 0x3ff;
383 spur_delta_phase = spur_delta_phase & 0xfffff;
385 ar9003_hw_spur_ofdm(ah,
386 freq_offset,
387 spur_freq_sd,
388 spur_delta_phase,
389 spur_subchannel_sd);
392 /* Spur mitigation for OFDM */
393 static void ar9003_hw_spur_mitigate_ofdm(struct ath_hw *ah,
394 struct ath9k_channel *chan)
396 int synth_freq;
397 int range = 10;
398 int freq_offset = 0;
399 int mode;
400 u8* spurChansPtr;
401 unsigned int i;
402 struct ar9300_eeprom *eep = &ah->eeprom.ar9300_eep;
404 if (IS_CHAN_5GHZ(chan)) {
405 spurChansPtr = &(eep->modalHeader5G.spurChans[0]);
406 mode = 0;
408 else {
409 spurChansPtr = &(eep->modalHeader2G.spurChans[0]);
410 mode = 1;
413 if (spurChansPtr[0] == 0)
414 return; /* No spur in the mode */
416 if (IS_CHAN_HT40(chan)) {
417 range = 19;
418 if (REG_READ_FIELD(ah, AR_PHY_GEN_CTRL,
419 AR_PHY_GC_DYN2040_PRI_CH) == 0x0)
420 synth_freq = chan->channel - 10;
421 else
422 synth_freq = chan->channel + 10;
423 } else {
424 range = 10;
425 synth_freq = chan->channel;
428 ar9003_hw_spur_ofdm_clear(ah);
430 for (i = 0; i < AR_EEPROM_MODAL_SPURS && spurChansPtr[i]; i++) {
431 freq_offset = FBIN2FREQ(spurChansPtr[i], mode) - synth_freq;
432 if (abs(freq_offset) < range) {
433 ar9003_hw_spur_ofdm_work(ah, chan, freq_offset);
434 break;
439 static void ar9003_hw_spur_mitigate(struct ath_hw *ah,
440 struct ath9k_channel *chan)
442 ar9003_hw_spur_mitigate_mrc_cck(ah, chan);
443 ar9003_hw_spur_mitigate_ofdm(ah, chan);
446 static u32 ar9003_hw_compute_pll_control(struct ath_hw *ah,
447 struct ath9k_channel *chan)
449 u32 pll;
451 pll = SM(0x5, AR_RTC_9300_PLL_REFDIV);
453 if (chan && IS_CHAN_HALF_RATE(chan))
454 pll |= SM(0x1, AR_RTC_9300_PLL_CLKSEL);
455 else if (chan && IS_CHAN_QUARTER_RATE(chan))
456 pll |= SM(0x2, AR_RTC_9300_PLL_CLKSEL);
458 pll |= SM(0x2c, AR_RTC_9300_PLL_DIV);
460 return pll;
463 static void ar9003_hw_set_channel_regs(struct ath_hw *ah,
464 struct ath9k_channel *chan)
466 u32 phymode;
467 u32 enableDacFifo = 0;
469 enableDacFifo =
470 (REG_READ(ah, AR_PHY_GEN_CTRL) & AR_PHY_GC_ENABLE_DAC_FIFO);
472 /* Enable 11n HT, 20 MHz */
473 phymode = AR_PHY_GC_HT_EN | AR_PHY_GC_SINGLE_HT_LTF1 | AR_PHY_GC_WALSH |
474 AR_PHY_GC_SHORT_GI_40 | enableDacFifo;
476 /* Configure baseband for dynamic 20/40 operation */
477 if (IS_CHAN_HT40(chan)) {
478 phymode |= AR_PHY_GC_DYN2040_EN;
479 /* Configure control (primary) channel at +-10MHz */
480 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
481 (chan->chanmode == CHANNEL_G_HT40PLUS))
482 phymode |= AR_PHY_GC_DYN2040_PRI_CH;
486 /* make sure we preserve INI settings */
487 phymode |= REG_READ(ah, AR_PHY_GEN_CTRL);
488 /* turn off Green Field detection for STA for now */
489 phymode &= ~AR_PHY_GC_GF_DETECT_EN;
491 REG_WRITE(ah, AR_PHY_GEN_CTRL, phymode);
493 /* Configure MAC for 20/40 operation */
494 ath9k_hw_set11nmac2040(ah);
496 /* global transmit timeout (25 TUs default)*/
497 REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
498 /* carrier sense timeout */
499 REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
502 static void ar9003_hw_init_bb(struct ath_hw *ah,
503 struct ath9k_channel *chan)
505 u32 synthDelay;
508 * Wait for the frequency synth to settle (synth goes on
509 * via AR_PHY_ACTIVE_EN). Read the phy active delay register.
510 * Value is in 100ns increments.
512 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
513 if (IS_CHAN_B(chan))
514 synthDelay = (4 * synthDelay) / 22;
515 else
516 synthDelay /= 10;
518 /* Activate the PHY (includes baseband activate + synthesizer on) */
519 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
522 * There is an issue if the AP starts the calibration before
523 * the base band timeout completes. This could result in the
524 * rx_clear false triggering. As a workaround we add delay an
525 * extra BASE_ACTIVATE_DELAY usecs to ensure this condition
526 * does not happen.
528 udelay(synthDelay + BASE_ACTIVATE_DELAY);
531 void ar9003_hw_set_chain_masks(struct ath_hw *ah, u8 rx, u8 tx)
533 switch (rx) {
534 case 0x5:
535 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
536 AR_PHY_SWAP_ALT_CHAIN);
537 case 0x3:
538 case 0x1:
539 case 0x2:
540 case 0x7:
541 REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx);
542 REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx);
543 break;
544 default:
545 break;
548 if ((ah->caps.hw_caps & ATH9K_HW_CAP_APM) && (tx == 0x7))
549 REG_WRITE(ah, AR_SELFGEN_MASK, 0x3);
550 else
551 REG_WRITE(ah, AR_SELFGEN_MASK, tx);
553 if (tx == 0x5) {
554 REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
555 AR_PHY_SWAP_ALT_CHAIN);
560 * Override INI values with chip specific configuration.
562 static void ar9003_hw_override_ini(struct ath_hw *ah)
564 u32 val;
567 * Set the RX_ABORT and RX_DIS and clear it only after
568 * RXE is set for MAC. This prevents frames with
569 * corrupted descriptor status.
571 REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
574 * For AR9280 and above, there is a new feature that allows
575 * Multicast search based on both MAC Address and Key ID. By default,
576 * this feature is enabled. But since the driver is not using this
577 * feature, we switch it off; otherwise multicast search based on
578 * MAC addr only will fail.
580 val = REG_READ(ah, AR_PCU_MISC_MODE2) & (~AR_ADHOC_MCAST_KEYID_ENABLE);
581 REG_WRITE(ah, AR_PCU_MISC_MODE2,
582 val | AR_AGG_WEP_ENABLE_FIX | AR_AGG_WEP_ENABLE);
585 static void ar9003_hw_prog_ini(struct ath_hw *ah,
586 struct ar5416IniArray *iniArr,
587 int column)
589 unsigned int i, regWrites = 0;
591 /* New INI format: Array may be undefined (pre, core, post arrays) */
592 if (!iniArr->ia_array)
593 return;
596 * New INI format: Pre, core, and post arrays for a given subsystem
597 * may be modal (> 2 columns) or non-modal (2 columns). Determine if
598 * the array is non-modal and force the column to 1.
600 if (column >= iniArr->ia_columns)
601 column = 1;
603 for (i = 0; i < iniArr->ia_rows; i++) {
604 u32 reg = INI_RA(iniArr, i, 0);
605 u32 val = INI_RA(iniArr, i, column);
607 REG_WRITE(ah, reg, val);
609 DO_DELAY(regWrites);
613 static int ar9003_hw_process_ini(struct ath_hw *ah,
614 struct ath9k_channel *chan)
616 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
617 unsigned int regWrites = 0, i;
618 struct ieee80211_channel *channel = chan->chan;
619 u32 modesIndex;
621 switch (chan->chanmode) {
622 case CHANNEL_A:
623 case CHANNEL_A_HT20:
624 modesIndex = 1;
625 break;
626 case CHANNEL_A_HT40PLUS:
627 case CHANNEL_A_HT40MINUS:
628 modesIndex = 2;
629 break;
630 case CHANNEL_G:
631 case CHANNEL_G_HT20:
632 case CHANNEL_B:
633 modesIndex = 4;
634 break;
635 case CHANNEL_G_HT40PLUS:
636 case CHANNEL_G_HT40MINUS:
637 modesIndex = 3;
638 break;
640 default:
641 return -EINVAL;
644 for (i = 0; i < ATH_INI_NUM_SPLIT; i++) {
645 ar9003_hw_prog_ini(ah, &ah->iniSOC[i], modesIndex);
646 ar9003_hw_prog_ini(ah, &ah->iniMac[i], modesIndex);
647 ar9003_hw_prog_ini(ah, &ah->iniBB[i], modesIndex);
648 ar9003_hw_prog_ini(ah, &ah->iniRadio[i], modesIndex);
651 REG_WRITE_ARRAY(&ah->iniModesRxGain, 1, regWrites);
652 REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
655 * For 5GHz channels requiring Fast Clock, apply
656 * different modal values.
658 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
659 REG_WRITE_ARRAY(&ah->iniModesAdditional,
660 modesIndex, regWrites);
662 if (AR_SREV_9340(ah) && !ah->is_clk_25mhz)
663 REG_WRITE_ARRAY(&ah->iniModesAdditional_40M, 1, regWrites);
665 ar9003_hw_override_ini(ah);
666 ar9003_hw_set_channel_regs(ah, chan);
667 ar9003_hw_set_chain_masks(ah, ah->rxchainmask, ah->txchainmask);
669 /* Set TX power */
670 ah->eep_ops->set_txpower(ah, chan,
671 ath9k_regd_get_ctl(regulatory, chan),
672 channel->max_antenna_gain * 2,
673 channel->max_power * 2,
674 min((u32) MAX_RATE_POWER,
675 (u32) regulatory->power_limit), false);
677 return 0;
680 static void ar9003_hw_set_rfmode(struct ath_hw *ah,
681 struct ath9k_channel *chan)
683 u32 rfMode = 0;
685 if (chan == NULL)
686 return;
688 rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
689 ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
691 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
692 rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
694 REG_WRITE(ah, AR_PHY_MODE, rfMode);
697 static void ar9003_hw_mark_phy_inactive(struct ath_hw *ah)
699 REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
702 static void ar9003_hw_set_delta_slope(struct ath_hw *ah,
703 struct ath9k_channel *chan)
705 u32 coef_scaled, ds_coef_exp, ds_coef_man;
706 u32 clockMhzScaled = 0x64000000;
707 struct chan_centers centers;
710 * half and quarter rate can divide the scaled clock by 2 or 4
711 * scale for selected channel bandwidth
713 if (IS_CHAN_HALF_RATE(chan))
714 clockMhzScaled = clockMhzScaled >> 1;
715 else if (IS_CHAN_QUARTER_RATE(chan))
716 clockMhzScaled = clockMhzScaled >> 2;
719 * ALGO -> coef = 1e8/fcarrier*fclock/40;
720 * scaled coef to provide precision for this floating calculation
722 ath9k_hw_get_channel_centers(ah, chan, &centers);
723 coef_scaled = clockMhzScaled / centers.synth_center;
725 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
726 &ds_coef_exp);
728 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
729 AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
730 REG_RMW_FIELD(ah, AR_PHY_TIMING3,
731 AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
734 * For Short GI,
735 * scaled coeff is 9/10 that of normal coeff
737 coef_scaled = (9 * coef_scaled) / 10;
739 ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
740 &ds_coef_exp);
742 /* for short gi */
743 REG_RMW_FIELD(ah, AR_PHY_SGI_DELTA,
744 AR_PHY_SGI_DSC_MAN, ds_coef_man);
745 REG_RMW_FIELD(ah, AR_PHY_SGI_DELTA,
746 AR_PHY_SGI_DSC_EXP, ds_coef_exp);
749 static bool ar9003_hw_rfbus_req(struct ath_hw *ah)
751 REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
752 return ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
753 AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT);
757 * Wait for the frequency synth to settle (synth goes on via PHY_ACTIVE_EN).
758 * Read the phy active delay register. Value is in 100ns increments.
760 static void ar9003_hw_rfbus_done(struct ath_hw *ah)
762 u32 synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
763 if (IS_CHAN_B(ah->curchan))
764 synthDelay = (4 * synthDelay) / 22;
765 else
766 synthDelay /= 10;
768 udelay(synthDelay + BASE_ACTIVATE_DELAY);
770 REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
773 static void ar9003_hw_set_diversity(struct ath_hw *ah, bool value)
775 u32 v = REG_READ(ah, AR_PHY_CCK_DETECT);
776 if (value)
777 v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
778 else
779 v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
780 REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
783 static bool ar9003_hw_ani_control(struct ath_hw *ah,
784 enum ath9k_ani_cmd cmd, int param)
786 struct ath_common *common = ath9k_hw_common(ah);
787 struct ath9k_channel *chan = ah->curchan;
788 struct ar5416AniState *aniState = &chan->ani;
789 s32 value, value2;
791 switch (cmd & ah->ani_function) {
792 case ATH9K_ANI_OFDM_WEAK_SIGNAL_DETECTION:{
794 * on == 1 means ofdm weak signal detection is ON
795 * on == 1 is the default, for less noise immunity
797 * on == 0 means ofdm weak signal detection is OFF
798 * on == 0 means more noise imm
800 u32 on = param ? 1 : 0;
802 * make register setting for default
803 * (weak sig detect ON) come from INI file
805 int m1ThreshLow = on ?
806 aniState->iniDef.m1ThreshLow : m1ThreshLow_off;
807 int m2ThreshLow = on ?
808 aniState->iniDef.m2ThreshLow : m2ThreshLow_off;
809 int m1Thresh = on ?
810 aniState->iniDef.m1Thresh : m1Thresh_off;
811 int m2Thresh = on ?
812 aniState->iniDef.m2Thresh : m2Thresh_off;
813 int m2CountThr = on ?
814 aniState->iniDef.m2CountThr : m2CountThr_off;
815 int m2CountThrLow = on ?
816 aniState->iniDef.m2CountThrLow : m2CountThrLow_off;
817 int m1ThreshLowExt = on ?
818 aniState->iniDef.m1ThreshLowExt : m1ThreshLowExt_off;
819 int m2ThreshLowExt = on ?
820 aniState->iniDef.m2ThreshLowExt : m2ThreshLowExt_off;
821 int m1ThreshExt = on ?
822 aniState->iniDef.m1ThreshExt : m1ThreshExt_off;
823 int m2ThreshExt = on ?
824 aniState->iniDef.m2ThreshExt : m2ThreshExt_off;
826 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
827 AR_PHY_SFCORR_LOW_M1_THRESH_LOW,
828 m1ThreshLow);
829 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
830 AR_PHY_SFCORR_LOW_M2_THRESH_LOW,
831 m2ThreshLow);
832 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
833 AR_PHY_SFCORR_M1_THRESH, m1Thresh);
834 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
835 AR_PHY_SFCORR_M2_THRESH, m2Thresh);
836 REG_RMW_FIELD(ah, AR_PHY_SFCORR,
837 AR_PHY_SFCORR_M2COUNT_THR, m2CountThr);
838 REG_RMW_FIELD(ah, AR_PHY_SFCORR_LOW,
839 AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW,
840 m2CountThrLow);
842 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
843 AR_PHY_SFCORR_EXT_M1_THRESH_LOW, m1ThreshLowExt);
844 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
845 AR_PHY_SFCORR_EXT_M2_THRESH_LOW, m2ThreshLowExt);
846 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
847 AR_PHY_SFCORR_EXT_M1_THRESH, m1ThreshExt);
848 REG_RMW_FIELD(ah, AR_PHY_SFCORR_EXT,
849 AR_PHY_SFCORR_EXT_M2_THRESH, m2ThreshExt);
851 if (on)
852 REG_SET_BIT(ah, AR_PHY_SFCORR_LOW,
853 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
854 else
855 REG_CLR_BIT(ah, AR_PHY_SFCORR_LOW,
856 AR_PHY_SFCORR_LOW_USE_SELF_CORR_LOW);
858 if (!on != aniState->ofdmWeakSigDetectOff) {
859 ath_dbg(common, ATH_DBG_ANI,
860 "** ch %d: ofdm weak signal: %s=>%s\n",
861 chan->channel,
862 !aniState->ofdmWeakSigDetectOff ?
863 "on" : "off",
864 on ? "on" : "off");
865 if (on)
866 ah->stats.ast_ani_ofdmon++;
867 else
868 ah->stats.ast_ani_ofdmoff++;
869 aniState->ofdmWeakSigDetectOff = !on;
871 break;
873 case ATH9K_ANI_FIRSTEP_LEVEL:{
874 u32 level = param;
876 if (level >= ARRAY_SIZE(firstep_table)) {
877 ath_dbg(common, ATH_DBG_ANI,
878 "ATH9K_ANI_FIRSTEP_LEVEL: level out of range (%u > %zu)\n",
879 level, ARRAY_SIZE(firstep_table));
880 return false;
884 * make register setting relative to default
885 * from INI file & cap value
887 value = firstep_table[level] -
888 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
889 aniState->iniDef.firstep;
890 if (value < ATH9K_SIG_FIRSTEP_SETTING_MIN)
891 value = ATH9K_SIG_FIRSTEP_SETTING_MIN;
892 if (value > ATH9K_SIG_FIRSTEP_SETTING_MAX)
893 value = ATH9K_SIG_FIRSTEP_SETTING_MAX;
894 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG,
895 AR_PHY_FIND_SIG_FIRSTEP,
896 value);
898 * we need to set first step low register too
899 * make register setting relative to default
900 * from INI file & cap value
902 value2 = firstep_table[level] -
903 firstep_table[ATH9K_ANI_FIRSTEP_LVL_NEW] +
904 aniState->iniDef.firstepLow;
905 if (value2 < ATH9K_SIG_FIRSTEP_SETTING_MIN)
906 value2 = ATH9K_SIG_FIRSTEP_SETTING_MIN;
907 if (value2 > ATH9K_SIG_FIRSTEP_SETTING_MAX)
908 value2 = ATH9K_SIG_FIRSTEP_SETTING_MAX;
910 REG_RMW_FIELD(ah, AR_PHY_FIND_SIG_LOW,
911 AR_PHY_FIND_SIG_LOW_FIRSTEP_LOW, value2);
913 if (level != aniState->firstepLevel) {
914 ath_dbg(common, ATH_DBG_ANI,
915 "** ch %d: level %d=>%d[def:%d] firstep[level]=%d ini=%d\n",
916 chan->channel,
917 aniState->firstepLevel,
918 level,
919 ATH9K_ANI_FIRSTEP_LVL_NEW,
920 value,
921 aniState->iniDef.firstep);
922 ath_dbg(common, ATH_DBG_ANI,
923 "** ch %d: level %d=>%d[def:%d] firstep_low[level]=%d ini=%d\n",
924 chan->channel,
925 aniState->firstepLevel,
926 level,
927 ATH9K_ANI_FIRSTEP_LVL_NEW,
928 value2,
929 aniState->iniDef.firstepLow);
930 if (level > aniState->firstepLevel)
931 ah->stats.ast_ani_stepup++;
932 else if (level < aniState->firstepLevel)
933 ah->stats.ast_ani_stepdown++;
934 aniState->firstepLevel = level;
936 break;
938 case ATH9K_ANI_SPUR_IMMUNITY_LEVEL:{
939 u32 level = param;
941 if (level >= ARRAY_SIZE(cycpwrThr1_table)) {
942 ath_dbg(common, ATH_DBG_ANI,
943 "ATH9K_ANI_SPUR_IMMUNITY_LEVEL: level out of range (%u > %zu)\n",
944 level, ARRAY_SIZE(cycpwrThr1_table));
945 return false;
948 * make register setting relative to default
949 * from INI file & cap value
951 value = cycpwrThr1_table[level] -
952 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
953 aniState->iniDef.cycpwrThr1;
954 if (value < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
955 value = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
956 if (value > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
957 value = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
958 REG_RMW_FIELD(ah, AR_PHY_TIMING5,
959 AR_PHY_TIMING5_CYCPWR_THR1,
960 value);
963 * set AR_PHY_EXT_CCA for extension channel
964 * make register setting relative to default
965 * from INI file & cap value
967 value2 = cycpwrThr1_table[level] -
968 cycpwrThr1_table[ATH9K_ANI_SPUR_IMMUNE_LVL_NEW] +
969 aniState->iniDef.cycpwrThr1Ext;
970 if (value2 < ATH9K_SIG_SPUR_IMM_SETTING_MIN)
971 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MIN;
972 if (value2 > ATH9K_SIG_SPUR_IMM_SETTING_MAX)
973 value2 = ATH9K_SIG_SPUR_IMM_SETTING_MAX;
974 REG_RMW_FIELD(ah, AR_PHY_EXT_CCA,
975 AR_PHY_EXT_CYCPWR_THR1, value2);
977 if (level != aniState->spurImmunityLevel) {
978 ath_dbg(common, ATH_DBG_ANI,
979 "** ch %d: level %d=>%d[def:%d] cycpwrThr1[level]=%d ini=%d\n",
980 chan->channel,
981 aniState->spurImmunityLevel,
982 level,
983 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
984 value,
985 aniState->iniDef.cycpwrThr1);
986 ath_dbg(common, ATH_DBG_ANI,
987 "** ch %d: level %d=>%d[def:%d] cycpwrThr1Ext[level]=%d ini=%d\n",
988 chan->channel,
989 aniState->spurImmunityLevel,
990 level,
991 ATH9K_ANI_SPUR_IMMUNE_LVL_NEW,
992 value2,
993 aniState->iniDef.cycpwrThr1Ext);
994 if (level > aniState->spurImmunityLevel)
995 ah->stats.ast_ani_spurup++;
996 else if (level < aniState->spurImmunityLevel)
997 ah->stats.ast_ani_spurdown++;
998 aniState->spurImmunityLevel = level;
1000 break;
1002 case ATH9K_ANI_MRC_CCK:{
1004 * is_on == 1 means MRC CCK ON (default, less noise imm)
1005 * is_on == 0 means MRC CCK is OFF (more noise imm)
1007 bool is_on = param ? 1 : 0;
1008 REG_RMW_FIELD(ah, AR_PHY_MRC_CCK_CTRL,
1009 AR_PHY_MRC_CCK_ENABLE, is_on);
1010 REG_RMW_FIELD(ah, AR_PHY_MRC_CCK_CTRL,
1011 AR_PHY_MRC_CCK_MUX_REG, is_on);
1012 if (!is_on != aniState->mrcCCKOff) {
1013 ath_dbg(common, ATH_DBG_ANI,
1014 "** ch %d: MRC CCK: %s=>%s\n",
1015 chan->channel,
1016 !aniState->mrcCCKOff ? "on" : "off",
1017 is_on ? "on" : "off");
1018 if (is_on)
1019 ah->stats.ast_ani_ccklow++;
1020 else
1021 ah->stats.ast_ani_cckhigh++;
1022 aniState->mrcCCKOff = !is_on;
1024 break;
1026 case ATH9K_ANI_PRESENT:
1027 break;
1028 default:
1029 ath_dbg(common, ATH_DBG_ANI, "invalid cmd %u\n", cmd);
1030 return false;
1033 ath_dbg(common, ATH_DBG_ANI,
1034 "ANI parameters: SI=%d, ofdmWS=%s FS=%d MRCcck=%s listenTime=%d ofdmErrs=%d cckErrs=%d\n",
1035 aniState->spurImmunityLevel,
1036 !aniState->ofdmWeakSigDetectOff ? "on" : "off",
1037 aniState->firstepLevel,
1038 !aniState->mrcCCKOff ? "on" : "off",
1039 aniState->listenTime,
1040 aniState->ofdmPhyErrCount,
1041 aniState->cckPhyErrCount);
1042 return true;
1045 static void ar9003_hw_do_getnf(struct ath_hw *ah,
1046 int16_t nfarray[NUM_NF_READINGS])
1048 #define AR_PHY_CH_MINCCA_PWR 0x1FF00000
1049 #define AR_PHY_CH_MINCCA_PWR_S 20
1050 #define AR_PHY_CH_EXT_MINCCA_PWR 0x01FF0000
1051 #define AR_PHY_CH_EXT_MINCCA_PWR_S 16
1053 int16_t nf;
1054 int i;
1056 for (i = 0; i < AR9300_MAX_CHAINS; i++) {
1057 if (ah->rxchainmask & BIT(i)) {
1058 nf = MS(REG_READ(ah, ah->nf_regs[i]),
1059 AR_PHY_CH_MINCCA_PWR);
1060 nfarray[i] = sign_extend32(nf, 8);
1062 if (IS_CHAN_HT40(ah->curchan)) {
1063 u8 ext_idx = AR9300_MAX_CHAINS + i;
1065 nf = MS(REG_READ(ah, ah->nf_regs[ext_idx]),
1066 AR_PHY_CH_EXT_MINCCA_PWR);
1067 nfarray[ext_idx] = sign_extend32(nf, 8);
1073 static void ar9003_hw_set_nf_limits(struct ath_hw *ah)
1075 ah->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_2GHZ;
1076 ah->nf_2g.min = AR_PHY_CCA_MIN_GOOD_VAL_9300_2GHZ;
1077 ah->nf_2g.nominal = AR_PHY_CCA_NOM_VAL_9300_2GHZ;
1078 ah->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_9300_5GHZ;
1079 ah->nf_5g.min = AR_PHY_CCA_MIN_GOOD_VAL_9300_5GHZ;
1080 ah->nf_5g.nominal = AR_PHY_CCA_NOM_VAL_9300_5GHZ;
1084 * Initialize the ANI register values with default (ini) values.
1085 * This routine is called during a (full) hardware reset after
1086 * all the registers are initialised from the INI.
1088 static void ar9003_hw_ani_cache_ini_regs(struct ath_hw *ah)
1090 struct ar5416AniState *aniState;
1091 struct ath_common *common = ath9k_hw_common(ah);
1092 struct ath9k_channel *chan = ah->curchan;
1093 struct ath9k_ani_default *iniDef;
1094 u32 val;
1096 aniState = &ah->curchan->ani;
1097 iniDef = &aniState->iniDef;
1099 ath_dbg(common, ATH_DBG_ANI,
1100 "ver %d.%d opmode %u chan %d Mhz/0x%x\n",
1101 ah->hw_version.macVersion,
1102 ah->hw_version.macRev,
1103 ah->opmode,
1104 chan->channel,
1105 chan->channelFlags);
1107 val = REG_READ(ah, AR_PHY_SFCORR);
1108 iniDef->m1Thresh = MS(val, AR_PHY_SFCORR_M1_THRESH);
1109 iniDef->m2Thresh = MS(val, AR_PHY_SFCORR_M2_THRESH);
1110 iniDef->m2CountThr = MS(val, AR_PHY_SFCORR_M2COUNT_THR);
1112 val = REG_READ(ah, AR_PHY_SFCORR_LOW);
1113 iniDef->m1ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M1_THRESH_LOW);
1114 iniDef->m2ThreshLow = MS(val, AR_PHY_SFCORR_LOW_M2_THRESH_LOW);
1115 iniDef->m2CountThrLow = MS(val, AR_PHY_SFCORR_LOW_M2COUNT_THR_LOW);
1117 val = REG_READ(ah, AR_PHY_SFCORR_EXT);
1118 iniDef->m1ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH);
1119 iniDef->m2ThreshExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH);
1120 iniDef->m1ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M1_THRESH_LOW);
1121 iniDef->m2ThreshLowExt = MS(val, AR_PHY_SFCORR_EXT_M2_THRESH_LOW);
1122 iniDef->firstep = REG_READ_FIELD(ah,
1123 AR_PHY_FIND_SIG,
1124 AR_PHY_FIND_SIG_FIRSTEP);
1125 iniDef->firstepLow = REG_READ_FIELD(ah,
1126 AR_PHY_FIND_SIG_LOW,
1127 AR_PHY_FIND_SIG_LOW_FIRSTEP_LOW);
1128 iniDef->cycpwrThr1 = REG_READ_FIELD(ah,
1129 AR_PHY_TIMING5,
1130 AR_PHY_TIMING5_CYCPWR_THR1);
1131 iniDef->cycpwrThr1Ext = REG_READ_FIELD(ah,
1132 AR_PHY_EXT_CCA,
1133 AR_PHY_EXT_CYCPWR_THR1);
1135 /* these levels just got reset to defaults by the INI */
1136 aniState->spurImmunityLevel = ATH9K_ANI_SPUR_IMMUNE_LVL_NEW;
1137 aniState->firstepLevel = ATH9K_ANI_FIRSTEP_LVL_NEW;
1138 aniState->ofdmWeakSigDetectOff = !ATH9K_ANI_USE_OFDM_WEAK_SIG;
1139 aniState->mrcCCKOff = !ATH9K_ANI_ENABLE_MRC_CCK;
1142 static void ar9003_hw_set_radar_params(struct ath_hw *ah,
1143 struct ath_hw_radar_conf *conf)
1145 u32 radar_0 = 0, radar_1 = 0;
1147 if (!conf) {
1148 REG_CLR_BIT(ah, AR_PHY_RADAR_0, AR_PHY_RADAR_0_ENA);
1149 return;
1152 radar_0 |= AR_PHY_RADAR_0_ENA | AR_PHY_RADAR_0_FFT_ENA;
1153 radar_0 |= SM(conf->fir_power, AR_PHY_RADAR_0_FIRPWR);
1154 radar_0 |= SM(conf->radar_rssi, AR_PHY_RADAR_0_RRSSI);
1155 radar_0 |= SM(conf->pulse_height, AR_PHY_RADAR_0_HEIGHT);
1156 radar_0 |= SM(conf->pulse_rssi, AR_PHY_RADAR_0_PRSSI);
1157 radar_0 |= SM(conf->pulse_inband, AR_PHY_RADAR_0_INBAND);
1159 radar_1 |= AR_PHY_RADAR_1_MAX_RRSSI;
1160 radar_1 |= AR_PHY_RADAR_1_BLOCK_CHECK;
1161 radar_1 |= SM(conf->pulse_maxlen, AR_PHY_RADAR_1_MAXLEN);
1162 radar_1 |= SM(conf->pulse_inband_step, AR_PHY_RADAR_1_RELSTEP_THRESH);
1163 radar_1 |= SM(conf->radar_inband, AR_PHY_RADAR_1_RELPWR_THRESH);
1165 REG_WRITE(ah, AR_PHY_RADAR_0, radar_0);
1166 REG_WRITE(ah, AR_PHY_RADAR_1, radar_1);
1167 if (conf->ext_channel)
1168 REG_SET_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1169 else
1170 REG_CLR_BIT(ah, AR_PHY_RADAR_EXT, AR_PHY_RADAR_EXT_ENA);
1173 static void ar9003_hw_set_radar_conf(struct ath_hw *ah)
1175 struct ath_hw_radar_conf *conf = &ah->radar_conf;
1177 conf->fir_power = -28;
1178 conf->radar_rssi = 0;
1179 conf->pulse_height = 10;
1180 conf->pulse_rssi = 24;
1181 conf->pulse_inband = 8;
1182 conf->pulse_maxlen = 255;
1183 conf->pulse_inband_step = 12;
1184 conf->radar_inband = 8;
1187 void ar9003_hw_attach_phy_ops(struct ath_hw *ah)
1189 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
1190 static const u32 ar9300_cca_regs[6] = {
1191 AR_PHY_CCA_0,
1192 AR_PHY_CCA_1,
1193 AR_PHY_CCA_2,
1194 AR_PHY_EXT_CCA,
1195 AR_PHY_EXT_CCA_1,
1196 AR_PHY_EXT_CCA_2,
1199 priv_ops->rf_set_freq = ar9003_hw_set_channel;
1200 priv_ops->spur_mitigate_freq = ar9003_hw_spur_mitigate;
1201 priv_ops->compute_pll_control = ar9003_hw_compute_pll_control;
1202 priv_ops->set_channel_regs = ar9003_hw_set_channel_regs;
1203 priv_ops->init_bb = ar9003_hw_init_bb;
1204 priv_ops->process_ini = ar9003_hw_process_ini;
1205 priv_ops->set_rfmode = ar9003_hw_set_rfmode;
1206 priv_ops->mark_phy_inactive = ar9003_hw_mark_phy_inactive;
1207 priv_ops->set_delta_slope = ar9003_hw_set_delta_slope;
1208 priv_ops->rfbus_req = ar9003_hw_rfbus_req;
1209 priv_ops->rfbus_done = ar9003_hw_rfbus_done;
1210 priv_ops->set_diversity = ar9003_hw_set_diversity;
1211 priv_ops->ani_control = ar9003_hw_ani_control;
1212 priv_ops->do_getnf = ar9003_hw_do_getnf;
1213 priv_ops->ani_cache_ini_regs = ar9003_hw_ani_cache_ini_regs;
1214 priv_ops->set_radar_params = ar9003_hw_set_radar_params;
1216 ar9003_hw_set_nf_limits(ah);
1217 ar9003_hw_set_radar_conf(ah);
1218 memcpy(ah->nf_regs, ar9300_cca_regs, sizeof(ah->nf_regs));
1221 void ar9003_hw_bb_watchdog_config(struct ath_hw *ah)
1223 struct ath_common *common = ath9k_hw_common(ah);
1224 u32 idle_tmo_ms = ah->bb_watchdog_timeout_ms;
1225 u32 val, idle_count;
1227 if (!idle_tmo_ms) {
1228 /* disable IRQ, disable chip-reset for BB panic */
1229 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2,
1230 REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) &
1231 ~(AR_PHY_WATCHDOG_RST_ENABLE |
1232 AR_PHY_WATCHDOG_IRQ_ENABLE));
1234 /* disable watchdog in non-IDLE mode, disable in IDLE mode */
1235 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1,
1236 REG_READ(ah, AR_PHY_WATCHDOG_CTL_1) &
1237 ~(AR_PHY_WATCHDOG_NON_IDLE_ENABLE |
1238 AR_PHY_WATCHDOG_IDLE_ENABLE));
1240 ath_dbg(common, ATH_DBG_RESET, "Disabled BB Watchdog\n");
1241 return;
1244 /* enable IRQ, disable chip-reset for BB watchdog */
1245 val = REG_READ(ah, AR_PHY_WATCHDOG_CTL_2) & AR_PHY_WATCHDOG_CNTL2_MASK;
1246 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_2,
1247 (val | AR_PHY_WATCHDOG_IRQ_ENABLE) &
1248 ~AR_PHY_WATCHDOG_RST_ENABLE);
1250 /* bound limit to 10 secs */
1251 if (idle_tmo_ms > 10000)
1252 idle_tmo_ms = 10000;
1255 * The time unit for watchdog event is 2^15 44/88MHz cycles.
1257 * For HT20 we have a time unit of 2^15/44 MHz = .74 ms per tick
1258 * For HT40 we have a time unit of 2^15/88 MHz = .37 ms per tick
1260 * Given we use fast clock now in 5 GHz, these time units should
1261 * be common for both 2 GHz and 5 GHz.
1263 idle_count = (100 * idle_tmo_ms) / 74;
1264 if (ah->curchan && IS_CHAN_HT40(ah->curchan))
1265 idle_count = (100 * idle_tmo_ms) / 37;
1268 * enable watchdog in non-IDLE mode, disable in IDLE mode,
1269 * set idle time-out.
1271 REG_WRITE(ah, AR_PHY_WATCHDOG_CTL_1,
1272 AR_PHY_WATCHDOG_NON_IDLE_ENABLE |
1273 AR_PHY_WATCHDOG_IDLE_MASK |
1274 (AR_PHY_WATCHDOG_NON_IDLE_MASK & (idle_count << 2)));
1276 ath_dbg(common, ATH_DBG_RESET,
1277 "Enabled BB Watchdog timeout (%u ms)\n",
1278 idle_tmo_ms);
1281 void ar9003_hw_bb_watchdog_read(struct ath_hw *ah)
1284 * we want to avoid printing in ISR context so we save the
1285 * watchdog status to be printed later in bottom half context.
1287 ah->bb_watchdog_last_status = REG_READ(ah, AR_PHY_WATCHDOG_STATUS);
1290 * the watchdog timer should reset on status read but to be sure
1291 * sure we write 0 to the watchdog status bit.
1293 REG_WRITE(ah, AR_PHY_WATCHDOG_STATUS,
1294 ah->bb_watchdog_last_status & ~AR_PHY_WATCHDOG_STATUS_CLR);
1297 void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah)
1299 struct ath_common *common = ath9k_hw_common(ah);
1300 u32 status;
1302 if (likely(!(common->debug_mask & ATH_DBG_RESET)))
1303 return;
1305 status = ah->bb_watchdog_last_status;
1306 ath_dbg(common, ATH_DBG_RESET,
1307 "\n==== BB update: BB status=0x%08x ====\n", status);
1308 ath_dbg(common, ATH_DBG_RESET,
1309 "** BB state: wd=%u det=%u rdar=%u rOFDM=%d rCCK=%u tOFDM=%u tCCK=%u agc=%u src=%u **\n",
1310 MS(status, AR_PHY_WATCHDOG_INFO),
1311 MS(status, AR_PHY_WATCHDOG_DET_HANG),
1312 MS(status, AR_PHY_WATCHDOG_RADAR_SM),
1313 MS(status, AR_PHY_WATCHDOG_RX_OFDM_SM),
1314 MS(status, AR_PHY_WATCHDOG_RX_CCK_SM),
1315 MS(status, AR_PHY_WATCHDOG_TX_OFDM_SM),
1316 MS(status, AR_PHY_WATCHDOG_TX_CCK_SM),
1317 MS(status, AR_PHY_WATCHDOG_AGC_SM),
1318 MS(status, AR_PHY_WATCHDOG_SRCH_SM));
1320 ath_dbg(common, ATH_DBG_RESET,
1321 "** BB WD cntl: cntl1=0x%08x cntl2=0x%08x **\n",
1322 REG_READ(ah, AR_PHY_WATCHDOG_CTL_1),
1323 REG_READ(ah, AR_PHY_WATCHDOG_CTL_2));
1324 ath_dbg(common, ATH_DBG_RESET,
1325 "** BB mode: BB_gen_controls=0x%08x **\n",
1326 REG_READ(ah, AR_PHY_GEN_CTRL));
1328 #define PCT(_field) (common->cc_survey._field * 100 / common->cc_survey.cycles)
1329 if (common->cc_survey.cycles)
1330 ath_dbg(common, ATH_DBG_RESET,
1331 "** BB busy times: rx_clear=%d%%, rx_frame=%d%%, tx_frame=%d%% **\n",
1332 PCT(rx_busy), PCT(rx_frame), PCT(tx_frame));
1334 ath_dbg(common, ATH_DBG_RESET,
1335 "==== BB update: done ====\n\n");
1337 EXPORT_SYMBOL(ar9003_hw_bb_watchdog_dbg_info);