blob: a1bc01528ab5fcf0fff64c1718f358de6511496f [file] [log] [blame]
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001/*
2 * Copyright (c) 2004-2008 Reyk Floeter <reyk@openbsd.org>
3 * Copyright (c) 2006-2008 Nick Kossifidis <mickflemm@gmail.com>
4 * Copyright (c) 2007-2008 Luis Rodriguez <mcgrof@winlab.rutgers.edu>
5 * Copyright (c) 2007-2008 Pavel Roskin <proski@gnu.org>
6 * Copyright (c) 2007-2008 Jiri Slaby <jirislaby@gmail.com>
7 *
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 *
20 */
21
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030022/*****************************\
23 Reset functions and helpers
24\*****************************/
25
Luis R. Rodriguezbcd8f542009-09-09 22:43:17 -070026#include <asm/unaligned.h>
27
Nick Kossifidise8f055f2009-02-09 06:12:58 +020028#include <linux/pci.h> /* To determine if a card is pci-e */
Forrest Zhanga54be5d2009-05-13 11:14:39 -040029#include <linux/log2.h>
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030030#include "ath5k.h"
31#include "reg.h"
32#include "base.h"
33#include "debug.h"
34
Pavel Roskinec182d92010-02-18 20:28:41 -050035/*
36 * Check if a register write has been completed
37 */
38int ath5k_hw_register_timeout(struct ath5k_hw *ah, u32 reg, u32 flag, u32 val,
39 bool is_set)
40{
41 int i;
42 u32 data;
43
44 for (i = AR5K_TUNE_REGISTER_TIMEOUT; i > 0; i--) {
45 data = ath5k_hw_reg_read(ah, reg);
46 if (is_set && (data & flag))
47 break;
48 else if ((data & flag) == val)
49 break;
50 udelay(15);
51 }
52
53 return (i <= 0) ? -EAGAIN : 0;
54}
55
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030056/**
57 * ath5k_hw_write_ofdm_timings - set OFDM timings on AR5212
58 *
59 * @ah: the &struct ath5k_hw
60 * @channel: the currently set channel upon reset
61 *
Nick Kossifidise8f055f2009-02-09 06:12:58 +020062 * Write the delta slope coefficient (used on pilot tracking ?) for OFDM
63 * operation on the AR5212 upon reset. This is a helper for ath5k_hw_reset().
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030064 *
Nick Kossifidise8f055f2009-02-09 06:12:58 +020065 * Since delta slope is floating point we split it on its exponent and
66 * mantissa and provide these values on hw.
67 *
68 * For more infos i think this patent is related
69 * http://www.freepatentsonline.com/7184495.html
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030070 */
71static inline int ath5k_hw_write_ofdm_timings(struct ath5k_hw *ah,
72 struct ieee80211_channel *channel)
73{
74 /* Get exponent and mantissa and set it */
75 u32 coef_scaled, coef_exp, coef_man,
76 ds_coef_exp, ds_coef_man, clock;
77
Alexander Beregalov0ee904c2009-04-11 14:50:23 +000078 BUG_ON(!(ah->ah_version == AR5K_AR5212) ||
79 !(channel->hw_value & CHANNEL_OFDM));
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030080
Nick Kossifidise8f055f2009-02-09 06:12:58 +020081 /* Get coefficient
Lukáš Turek3578e6e2009-12-21 22:50:50 +010082 * ALGO: coef = (5 * clock / carrier_freq) / 2
Nick Kossifidise8f055f2009-02-09 06:12:58 +020083 * we scale coef by shifting clock value by 24 for
84 * better precision since we use integers */
85 /* TODO: Half/quarter rate */
Lukáš Turek3578e6e2009-12-21 22:50:50 +010086 clock = (channel->hw_value & CHANNEL_TURBO) ? 80 : 40;
Nick Kossifidise8f055f2009-02-09 06:12:58 +020087 coef_scaled = ((5 * (clock << 24)) / 2) / channel->center_freq;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030088
Nick Kossifidise8f055f2009-02-09 06:12:58 +020089 /* Get exponent
90 * ALGO: coef_exp = 14 - highest set bit position */
Forrest Zhanga54be5d2009-05-13 11:14:39 -040091 coef_exp = ilog2(coef_scaled);
Nick Kossifidise8f055f2009-02-09 06:12:58 +020092
93 /* Doesn't make sense if it's zero*/
Forrest Zhanga54be5d2009-05-13 11:14:39 -040094 if (!coef_scaled || !coef_exp)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030095 return -EINVAL;
96
Nick Kossifidise8f055f2009-02-09 06:12:58 +020097 /* Note: we've shifted coef_scaled by 24 */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030098 coef_exp = 14 - (coef_exp - 24);
Nick Kossifidise8f055f2009-02-09 06:12:58 +020099
100
101 /* Get mantissa (significant digits)
102 * ALGO: coef_mant = floor(coef_scaled* 2^coef_exp+0.5) */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300103 coef_man = coef_scaled +
104 (1 << (24 - coef_exp - 1));
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200105
106 /* Calculate delta slope coefficient exponent
107 * and mantissa (remove scaling) and set them on hw */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300108 ds_coef_man = coef_man >> (24 - coef_exp);
109 ds_coef_exp = coef_exp - 16;
110
111 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_3,
112 AR5K_PHY_TIMING_3_DSC_MAN, ds_coef_man);
113 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_TIMING_3,
114 AR5K_PHY_TIMING_3_DSC_EXP, ds_coef_exp);
115
116 return 0;
117}
118
119
120/*
121 * index into rates for control rates, we can set it up like this because
122 * this is only used for AR5212 and we know it supports G mode
123 */
Jiri Slaby2c91108c2009-03-07 10:26:41 +0100124static const unsigned int control_rates[] =
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300125 { 0, 1, 1, 1, 4, 4, 6, 6, 8, 8, 8, 8 };
126
127/**
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200128 * ath5k_hw_write_rate_duration - fill rate code to duration table
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300129 *
130 * @ah: the &struct ath5k_hw
131 * @mode: one of enum ath5k_driver_mode
132 *
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200133 * Write the rate code to duration table upon hw reset. This is a helper for
134 * ath5k_hw_reset(). It seems all this is doing is setting an ACK timeout on
135 * the hardware, based on current mode, for each rate. The rates which are
136 * capable of short preamble (802.11b rates 2Mbps, 5.5Mbps, and 11Mbps) have
137 * different rate code so we write their value twice (one for long preample
138 * and one for short).
139 *
140 * Note: Band doesn't matter here, if we set the values for OFDM it works
141 * on both a and g modes. So all we have to do is set values for all g rates
142 * that include all OFDM and CCK rates. If we operate in turbo or xr/half/
143 * quarter rate mode, we need to use another set of bitrates (that's why we
144 * need the mode parameter) but we don't handle these proprietary modes yet.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300145 */
146static inline void ath5k_hw_write_rate_duration(struct ath5k_hw *ah,
147 unsigned int mode)
148{
149 struct ath5k_softc *sc = ah->ah_sc;
150 struct ieee80211_rate *rate;
151 unsigned int i;
152
153 /* Write rate duration table */
154 for (i = 0; i < sc->sbands[IEEE80211_BAND_2GHZ].n_bitrates; i++) {
155 u32 reg;
156 u16 tx_time;
157
158 rate = &sc->sbands[IEEE80211_BAND_2GHZ].bitrates[control_rates[i]];
159
160 /* Set ACK timeout */
161 reg = AR5K_RATE_DUR(rate->hw_value);
162
163 /* An ACK frame consists of 10 bytes. If you add the FCS,
164 * which ieee80211_generic_frame_duration() adds,
165 * its 14 bytes. Note we use the control rate and not the
166 * actual rate for this rate. See mac80211 tx.c
167 * ieee80211_duration() for a brief description of
168 * what rate we should choose to TX ACKs. */
169 tx_time = le16_to_cpu(ieee80211_generic_frame_duration(sc->hw,
170 sc->vif, 10, rate));
171
172 ath5k_hw_reg_write(ah, tx_time, reg);
173
174 if (!(rate->flags & IEEE80211_RATE_SHORT_PREAMBLE))
175 continue;
176
177 /*
178 * We're not distinguishing short preamble here,
179 * This is true, all we'll get is a longer value here
180 * which is not necessarilly bad. We could use
181 * export ieee80211_frame_duration() but that needs to be
182 * fixed first to be properly used by mac802111 drivers:
183 *
184 * - remove erp stuff and let the routine figure ofdm
185 * erp rates
186 * - remove passing argument ieee80211_local as
187 * drivers don't have access to it
188 * - move drivers using ieee80211_generic_frame_duration()
189 * to this
190 */
191 ath5k_hw_reg_write(ah, tx_time,
192 reg + (AR5K_SET_SHORT_PREAMBLE << 2));
193 }
194}
195
196/*
197 * Reset chipset
198 */
199static int ath5k_hw_nic_reset(struct ath5k_hw *ah, u32 val)
200{
201 int ret;
202 u32 mask = val ? val : ~0U;
203
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300204 /* Read-and-clear RX Descriptor Pointer*/
205 ath5k_hw_reg_read(ah, AR5K_RXDP);
206
207 /*
208 * Reset the device and wait until success
209 */
210 ath5k_hw_reg_write(ah, val, AR5K_RESET_CTL);
211
212 /* Wait at least 128 PCI clocks */
213 udelay(15);
214
215 if (ah->ah_version == AR5K_AR5210) {
Nick Kossifidis84e463f2008-09-17 03:33:19 +0300216 val &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA
217 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY;
218 mask &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA
219 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300220 } else {
221 val &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND;
222 mask &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND;
223 }
224
225 ret = ath5k_hw_register_timeout(ah, AR5K_RESET_CTL, mask, val, false);
226
227 /*
228 * Reset configuration register (for hw byte-swap). Note that this
229 * is only set for big endian. We do the necessary magic in
230 * AR5K_INIT_CFG.
231 */
232 if ((val & AR5K_RESET_CTL_PCU) == 0)
233 ath5k_hw_reg_write(ah, AR5K_INIT_CFG, AR5K_CFG);
234
235 return ret;
236}
237
238/*
239 * Sleep control
240 */
Pavel Roskin626ede62010-02-18 20:28:02 -0500241static int ath5k_hw_set_power(struct ath5k_hw *ah, enum ath5k_power_mode mode,
242 bool set_chip, u16 sleep_duration)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300243{
244 unsigned int i;
245 u32 staid, data;
246
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300247 staid = ath5k_hw_reg_read(ah, AR5K_STA_ID1);
248
249 switch (mode) {
250 case AR5K_PM_AUTO:
251 staid &= ~AR5K_STA_ID1_DEFAULT_ANTENNA;
252 /* fallthrough */
253 case AR5K_PM_NETWORK_SLEEP:
254 if (set_chip)
255 ath5k_hw_reg_write(ah,
256 AR5K_SLEEP_CTL_SLE_ALLOW |
257 sleep_duration,
258 AR5K_SLEEP_CTL);
259
260 staid |= AR5K_STA_ID1_PWR_SV;
261 break;
262
263 case AR5K_PM_FULL_SLEEP:
264 if (set_chip)
265 ath5k_hw_reg_write(ah, AR5K_SLEEP_CTL_SLE_SLP,
266 AR5K_SLEEP_CTL);
267
268 staid |= AR5K_STA_ID1_PWR_SV;
269 break;
270
271 case AR5K_PM_AWAKE:
272
273 staid &= ~AR5K_STA_ID1_PWR_SV;
274
275 if (!set_chip)
276 goto commit;
277
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300278 data = ath5k_hw_reg_read(ah, AR5K_SLEEP_CTL);
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300279
280 /* If card is down we 'll get 0xffff... so we
281 * need to clean this up before we write the register
282 */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300283 if (data & 0xffc00000)
284 data = 0;
285 else
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300286 /* Preserve sleep duration etc */
287 data = data & ~AR5K_SLEEP_CTL_SLE;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300288
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300289 ath5k_hw_reg_write(ah, data | AR5K_SLEEP_CTL_SLE_WAKE,
290 AR5K_SLEEP_CTL);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300291 udelay(15);
292
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300293 for (i = 200; i > 0; i--) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300294 /* Check if the chip did wake up */
295 if ((ath5k_hw_reg_read(ah, AR5K_PCICFG) &
296 AR5K_PCICFG_SPWR_DN) == 0)
297 break;
298
299 /* Wait a bit and retry */
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300300 udelay(50);
301 ath5k_hw_reg_write(ah, data | AR5K_SLEEP_CTL_SLE_WAKE,
302 AR5K_SLEEP_CTL);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300303 }
304
305 /* Fail if the chip didn't wake up */
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300306 if (i == 0)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300307 return -EIO;
308
309 break;
310
311 default:
312 return -EINVAL;
313 }
314
315commit:
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300316 ath5k_hw_reg_write(ah, staid, AR5K_STA_ID1);
317
318 return 0;
319}
320
321/*
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300322 * Put device on hold
323 *
324 * Put MAC and Baseband on warm reset and
325 * keep that state (don't clean sleep control
326 * register). After this MAC and Baseband are
327 * disabled and a full reset is needed to come
328 * back. This way we save as much power as possible
329 * without puting the card on full sleep.
330 */
331int ath5k_hw_on_hold(struct ath5k_hw *ah)
332{
333 struct pci_dev *pdev = ah->ah_sc->pdev;
334 u32 bus_flags;
335 int ret;
336
337 /* Make sure device is awake */
338 ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
339 if (ret) {
340 ATH5K_ERR(ah->ah_sc, "failed to wakeup the MAC Chip\n");
341 return ret;
342 }
343
344 /*
345 * Put chipset on warm reset...
346 *
347 * Note: puting PCI core on warm reset on PCI-E cards
348 * results card to hang and always return 0xffff... so
349 * we ingore that flag for PCI-E cards. On PCI cards
350 * this flag gets cleared after 64 PCI clocks.
351 */
352 bus_flags = (pdev->is_pcie) ? 0 : AR5K_RESET_CTL_PCI;
353
354 if (ah->ah_version == AR5K_AR5210) {
355 ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
356 AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA |
357 AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI);
358 mdelay(2);
359 } else {
360 ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
361 AR5K_RESET_CTL_BASEBAND | bus_flags);
362 }
363
364 if (ret) {
365 ATH5K_ERR(ah->ah_sc, "failed to put device on warm reset\n");
366 return -EIO;
367 }
368
369 /* ...wakeup again!*/
370 ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
371 if (ret) {
372 ATH5K_ERR(ah->ah_sc, "failed to put device on hold\n");
373 return ret;
374 }
375
376 return ret;
377}
378
379/*
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200380 * Bring up MAC + PHY Chips and program PLL
381 * TODO: Half/Quarter rate support
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300382 */
383int ath5k_hw_nic_wakeup(struct ath5k_hw *ah, int flags, bool initial)
384{
385 struct pci_dev *pdev = ah->ah_sc->pdev;
386 u32 turbo, mode, clock, bus_flags;
387 int ret;
388
389 turbo = 0;
390 mode = 0;
391 clock = 0;
392
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300393 /* Wakeup the device */
394 ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
395 if (ret) {
396 ATH5K_ERR(ah->ah_sc, "failed to wakeup the MAC Chip\n");
397 return ret;
398 }
399
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300400 /*
401 * Put chipset on warm reset...
402 *
403 * Note: puting PCI core on warm reset on PCI-E cards
404 * results card to hang and always return 0xffff... so
405 * we ingore that flag for PCI-E cards. On PCI cards
406 * this flag gets cleared after 64 PCI clocks.
407 */
408 bus_flags = (pdev->is_pcie) ? 0 : AR5K_RESET_CTL_PCI;
409
410 if (ah->ah_version == AR5K_AR5210) {
411 ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
412 AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA |
413 AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI);
414 mdelay(2);
415 } else {
416 ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU |
417 AR5K_RESET_CTL_BASEBAND | bus_flags);
418 }
419
420 if (ret) {
421 ATH5K_ERR(ah->ah_sc, "failed to reset the MAC Chip\n");
422 return -EIO;
423 }
424
425 /* ...wakeup again!...*/
426 ret = ath5k_hw_set_power(ah, AR5K_PM_AWAKE, true, 0);
427 if (ret) {
428 ATH5K_ERR(ah->ah_sc, "failed to resume the MAC Chip\n");
429 return ret;
430 }
431
432 /* ...clear reset control register and pull device out of
433 * warm reset */
434 if (ath5k_hw_nic_reset(ah, 0)) {
435 ATH5K_ERR(ah->ah_sc, "failed to warm reset the MAC Chip\n");
436 return -EIO;
437 }
438
439 /* On initialization skip PLL programming since we don't have
440 * a channel / mode set yet */
441 if (initial)
442 return 0;
443
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300444 if (ah->ah_version != AR5K_AR5210) {
445 /*
446 * Get channel mode flags
447 */
448
449 if (ah->ah_radio >= AR5K_RF5112) {
450 mode = AR5K_PHY_MODE_RAD_RF5112;
451 clock = AR5K_PHY_PLL_RF5112;
452 } else {
453 mode = AR5K_PHY_MODE_RAD_RF5111; /*Zero*/
454 clock = AR5K_PHY_PLL_RF5111; /*Zero*/
455 }
456
457 if (flags & CHANNEL_2GHZ) {
458 mode |= AR5K_PHY_MODE_FREQ_2GHZ;
459 clock |= AR5K_PHY_PLL_44MHZ;
460
461 if (flags & CHANNEL_CCK) {
462 mode |= AR5K_PHY_MODE_MOD_CCK;
463 } else if (flags & CHANNEL_OFDM) {
464 /* XXX Dynamic OFDM/CCK is not supported by the
465 * AR5211 so we set MOD_OFDM for plain g (no
466 * CCK headers) operation. We need to test
467 * this, 5211 might support ofdm-only g after
468 * all, there are also initial register values
469 * in the code for g mode (see initvals.c). */
470 if (ah->ah_version == AR5K_AR5211)
471 mode |= AR5K_PHY_MODE_MOD_OFDM;
472 else
473 mode |= AR5K_PHY_MODE_MOD_DYN;
474 } else {
475 ATH5K_ERR(ah->ah_sc,
476 "invalid radio modulation mode\n");
477 return -EINVAL;
478 }
479 } else if (flags & CHANNEL_5GHZ) {
480 mode |= AR5K_PHY_MODE_FREQ_5GHZ;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200481
482 if (ah->ah_radio == AR5K_RF5413)
Pavel Roskin807e3732009-03-27 17:47:27 -0400483 clock = AR5K_PHY_PLL_40MHZ_5413;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200484 else
485 clock |= AR5K_PHY_PLL_40MHZ;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300486
487 if (flags & CHANNEL_OFDM)
488 mode |= AR5K_PHY_MODE_MOD_OFDM;
489 else {
490 ATH5K_ERR(ah->ah_sc,
491 "invalid radio modulation mode\n");
492 return -EINVAL;
493 }
494 } else {
495 ATH5K_ERR(ah->ah_sc, "invalid radio frequency mode\n");
496 return -EINVAL;
497 }
498
499 if (flags & CHANNEL_TURBO)
500 turbo = AR5K_PHY_TURBO_MODE | AR5K_PHY_TURBO_SHORT;
501 } else { /* Reset the device */
502
503 /* ...enable Atheros turbo mode if requested */
504 if (flags & CHANNEL_TURBO)
505 ath5k_hw_reg_write(ah, AR5K_PHY_TURBO_MODE,
506 AR5K_PHY_TURBO);
507 }
508
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300509 if (ah->ah_version != AR5K_AR5210) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300510
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200511 /* ...update PLL if needed */
512 if (ath5k_hw_reg_read(ah, AR5K_PHY_PLL) != clock) {
513 ath5k_hw_reg_write(ah, clock, AR5K_PHY_PLL);
514 udelay(300);
515 }
516
517 /* ...set the PHY operating mode */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300518 ath5k_hw_reg_write(ah, mode, AR5K_PHY_MODE);
519 ath5k_hw_reg_write(ah, turbo, AR5K_PHY_TURBO);
520 }
521
522 return 0;
523}
524
525/*
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200526 * If there is an external 32KHz crystal available, use it
527 * as ref. clock instead of 32/40MHz clock and baseband clocks
528 * to save power during sleep or restore normal 32/40MHz
529 * operation.
530 *
531 * XXX: When operating on 32KHz certain PHY registers (27 - 31,
532 * 123 - 127) require delay on access.
533 */
534static void ath5k_hw_set_sleep_clock(struct ath5k_hw *ah, bool enable)
535{
536 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
537 u32 scal, spending, usec32;
538
539 /* Only set 32KHz settings if we have an external
540 * 32KHz crystal present */
541 if ((AR5K_EEPROM_HAS32KHZCRYSTAL(ee->ee_misc1) ||
542 AR5K_EEPROM_HAS32KHZCRYSTAL_OLD(ee->ee_misc1)) &&
543 enable) {
544
545 /* 1 usec/cycle */
546 AR5K_REG_WRITE_BITS(ah, AR5K_USEC_5211, AR5K_USEC_32, 1);
547 /* Set up tsf increment on each cycle */
548 AR5K_REG_WRITE_BITS(ah, AR5K_TSF_PARM, AR5K_TSF_PARM_INC, 61);
549
550 /* Set baseband sleep control registers
551 * and sleep control rate */
552 ath5k_hw_reg_write(ah, 0x1f, AR5K_PHY_SCR);
553
554 if ((ah->ah_radio == AR5K_RF5112) ||
555 (ah->ah_radio == AR5K_RF5413) ||
556 (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4)))
557 spending = 0x14;
558 else
559 spending = 0x18;
560 ath5k_hw_reg_write(ah, spending, AR5K_PHY_SPENDING);
561
562 if ((ah->ah_radio == AR5K_RF5112) ||
563 (ah->ah_radio == AR5K_RF5413) ||
564 (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) {
565 ath5k_hw_reg_write(ah, 0x26, AR5K_PHY_SLMT);
566 ath5k_hw_reg_write(ah, 0x0d, AR5K_PHY_SCAL);
567 ath5k_hw_reg_write(ah, 0x07, AR5K_PHY_SCLOCK);
568 ath5k_hw_reg_write(ah, 0x3f, AR5K_PHY_SDELAY);
569 AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG,
570 AR5K_PCICFG_SLEEP_CLOCK_RATE, 0x02);
571 } else {
572 ath5k_hw_reg_write(ah, 0x0a, AR5K_PHY_SLMT);
573 ath5k_hw_reg_write(ah, 0x0c, AR5K_PHY_SCAL);
574 ath5k_hw_reg_write(ah, 0x03, AR5K_PHY_SCLOCK);
575 ath5k_hw_reg_write(ah, 0x20, AR5K_PHY_SDELAY);
576 AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG,
577 AR5K_PCICFG_SLEEP_CLOCK_RATE, 0x03);
578 }
579
580 /* Enable sleep clock operation */
581 AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG,
582 AR5K_PCICFG_SLEEP_CLOCK_EN);
583
584 } else {
585
586 /* Disable sleep clock operation and
587 * restore default parameters */
588 AR5K_REG_DISABLE_BITS(ah, AR5K_PCICFG,
589 AR5K_PCICFG_SLEEP_CLOCK_EN);
590
591 AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG,
592 AR5K_PCICFG_SLEEP_CLOCK_RATE, 0);
593
594 ath5k_hw_reg_write(ah, 0x1f, AR5K_PHY_SCR);
595 ath5k_hw_reg_write(ah, AR5K_PHY_SLMT_32MHZ, AR5K_PHY_SLMT);
596
597 if (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))
598 scal = AR5K_PHY_SCAL_32MHZ_2417;
Nick Kossifidis1889ba02009-04-30 15:55:46 -0400599 else if (ee->ee_is_hb63)
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200600 scal = AR5K_PHY_SCAL_32MHZ_HB63;
601 else
602 scal = AR5K_PHY_SCAL_32MHZ;
603 ath5k_hw_reg_write(ah, scal, AR5K_PHY_SCAL);
604
605 ath5k_hw_reg_write(ah, AR5K_PHY_SCLOCK_32MHZ, AR5K_PHY_SCLOCK);
606 ath5k_hw_reg_write(ah, AR5K_PHY_SDELAY_32MHZ, AR5K_PHY_SDELAY);
607
608 if ((ah->ah_radio == AR5K_RF5112) ||
609 (ah->ah_radio == AR5K_RF5413) ||
610 (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4)))
611 spending = 0x14;
612 else
613 spending = 0x18;
614 ath5k_hw_reg_write(ah, spending, AR5K_PHY_SPENDING);
615
616 if ((ah->ah_radio == AR5K_RF5112) ||
617 (ah->ah_radio == AR5K_RF5413))
618 usec32 = 39;
619 else
620 usec32 = 31;
621 AR5K_REG_WRITE_BITS(ah, AR5K_USEC_5211, AR5K_USEC_32, usec32);
622
623 AR5K_REG_WRITE_BITS(ah, AR5K_TSF_PARM, AR5K_TSF_PARM_INC, 1);
624 }
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200625}
626
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200627/* TODO: Half/Quarter rate */
628static void ath5k_hw_tweak_initval_settings(struct ath5k_hw *ah,
629 struct ieee80211_channel *channel)
630{
631 if (ah->ah_version == AR5K_AR5212 &&
632 ah->ah_phy_revision >= AR5K_SREV_PHY_5212A) {
633
634 /* Setup ADC control */
635 ath5k_hw_reg_write(ah,
636 (AR5K_REG_SM(2,
637 AR5K_PHY_ADC_CTL_INBUFGAIN_OFF) |
638 AR5K_REG_SM(2,
639 AR5K_PHY_ADC_CTL_INBUFGAIN_ON) |
640 AR5K_PHY_ADC_CTL_PWD_DAC_OFF |
641 AR5K_PHY_ADC_CTL_PWD_ADC_OFF),
642 AR5K_PHY_ADC_CTL);
643
644
645
646 /* Disable barker RSSI threshold */
647 AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_DAG_CCK_CTL,
648 AR5K_PHY_DAG_CCK_CTL_EN_RSSI_THR);
649
650 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DAG_CCK_CTL,
651 AR5K_PHY_DAG_CCK_CTL_RSSI_THR, 2);
652
653 /* Set the mute mask */
654 ath5k_hw_reg_write(ah, 0x0000000f, AR5K_SEQ_MASK);
655 }
656
657 /* Clear PHY_BLUETOOTH to allow RX_CLEAR line debug */
658 if (ah->ah_phy_revision >= AR5K_SREV_PHY_5212B)
659 ath5k_hw_reg_write(ah, 0, AR5K_PHY_BLUETOOTH);
660
661 /* Enable DCU double buffering */
662 if (ah->ah_phy_revision > AR5K_SREV_PHY_5212B)
663 AR5K_REG_DISABLE_BITS(ah, AR5K_TXCFG,
664 AR5K_TXCFG_DCU_DBL_BUF_DIS);
665
666 /* Set DAC/ADC delays */
667 if (ah->ah_version == AR5K_AR5212) {
668 u32 scal;
Nick Kossifidis1889ba02009-04-30 15:55:46 -0400669 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200670 if (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))
671 scal = AR5K_PHY_SCAL_32MHZ_2417;
Nick Kossifidis1889ba02009-04-30 15:55:46 -0400672 else if (ee->ee_is_hb63)
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200673 scal = AR5K_PHY_SCAL_32MHZ_HB63;
674 else
675 scal = AR5K_PHY_SCAL_32MHZ;
676 ath5k_hw_reg_write(ah, scal, AR5K_PHY_SCAL);
677 }
678
679 /* Set fast ADC */
680 if ((ah->ah_radio == AR5K_RF5413) ||
681 (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) {
682 u32 fast_adc = true;
683
684 if (channel->center_freq == 2462 ||
685 channel->center_freq == 2467)
686 fast_adc = 0;
687
688 /* Only update if needed */
689 if (ath5k_hw_reg_read(ah, AR5K_PHY_FAST_ADC) != fast_adc)
690 ath5k_hw_reg_write(ah, fast_adc,
691 AR5K_PHY_FAST_ADC);
692 }
693
694 /* Fix for first revision of the RF5112 RF chipset */
695 if (ah->ah_radio == AR5K_RF5112 &&
696 ah->ah_radio_5ghz_revision <
697 AR5K_SREV_RAD_5112A) {
698 u32 data;
699 ath5k_hw_reg_write(ah, AR5K_PHY_CCKTXCTL_WORLD,
700 AR5K_PHY_CCKTXCTL);
701 if (channel->hw_value & CHANNEL_5GHZ)
702 data = 0xffb81020;
703 else
704 data = 0xffb80d20;
705 ath5k_hw_reg_write(ah, data, AR5K_PHY_FRAME_CTL);
706 }
707
708 if (ah->ah_mac_srev < AR5K_SREV_AR5211) {
709 u32 usec_reg;
710 /* 5311 has different tx/rx latency masks
711 * from 5211, since we deal 5311 the same
712 * as 5211 when setting initvals, shift
713 * values here to their proper locations */
714 usec_reg = ath5k_hw_reg_read(ah, AR5K_USEC_5211);
715 ath5k_hw_reg_write(ah, usec_reg & (AR5K_USEC_1 |
716 AR5K_USEC_32 |
717 AR5K_USEC_TX_LATENCY_5211 |
718 AR5K_REG_SM(29,
719 AR5K_USEC_RX_LATENCY_5210)),
720 AR5K_USEC_5211);
721 /* Clear QCU/DCU clock gating register */
722 ath5k_hw_reg_write(ah, 0, AR5K_QCUDCU_CLKGT);
723 /* Set DAC/ADC delays */
724 ath5k_hw_reg_write(ah, 0x08, AR5K_PHY_SCAL);
725 /* Enable PCU FIFO corruption ECO */
726 AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW_5211,
727 AR5K_DIAG_SW_ECO_ENABLE);
728 }
729}
730
731static void ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah,
732 struct ieee80211_channel *channel, u8 *ant, u8 ee_mode)
733{
734 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200735 s16 cck_ofdm_pwr_delta;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200736
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200737 /* Adjust power delta for channel 14 */
738 if (channel->center_freq == 2484)
739 cck_ofdm_pwr_delta =
740 ((ee->ee_cck_ofdm_power_delta -
741 ee->ee_scaled_cck_delta) * 2) / 10;
742 else
743 cck_ofdm_pwr_delta =
744 (ee->ee_cck_ofdm_power_delta * 2) / 10;
745
746 /* Set CCK to OFDM power delta on tx power
747 * adjustment register */
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200748 if (ah->ah_phy_revision >= AR5K_SREV_PHY_5212A) {
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200749 if (channel->hw_value == CHANNEL_G)
750 ath5k_hw_reg_write(ah,
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200751 AR5K_REG_SM((ee->ee_cck_ofdm_gain_delta * -1),
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200752 AR5K_PHY_TX_PWR_ADJ_CCK_GAIN_DELTA) |
753 AR5K_REG_SM((cck_ofdm_pwr_delta * -1),
754 AR5K_PHY_TX_PWR_ADJ_CCK_PCDAC_INDEX),
755 AR5K_PHY_TX_PWR_ADJ);
756 else
757 ath5k_hw_reg_write(ah, 0, AR5K_PHY_TX_PWR_ADJ);
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200758 } else {
759 /* For older revs we scale power on sw during tx power
760 * setup */
761 ah->ah_txpower.txp_cck_ofdm_pwr_delta = cck_ofdm_pwr_delta;
762 ah->ah_txpower.txp_cck_ofdm_gainf_delta =
763 ee->ee_cck_ofdm_gain_delta;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200764 }
765
766 /* Set antenna idle switch table */
767 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_ANT_CTL,
768 AR5K_PHY_ANT_CTL_SWTABLE_IDLE,
Nick Kossifidis2bed03e2009-04-30 15:55:49 -0400769 (ah->ah_ant_ctl[ee_mode][0] |
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200770 AR5K_PHY_ANT_CTL_TXRX_EN));
771
Nick Kossifidis2bed03e2009-04-30 15:55:49 -0400772 /* Set antenna switch tables */
773 ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant[0]],
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200774 AR5K_PHY_ANT_SWITCH_TABLE_0);
Nick Kossifidis2bed03e2009-04-30 15:55:49 -0400775 ath5k_hw_reg_write(ah, ah->ah_ant_ctl[ee_mode][ant[1]],
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200776 AR5K_PHY_ANT_SWITCH_TABLE_1);
777
778 /* Noise floor threshold */
779 ath5k_hw_reg_write(ah,
780 AR5K_PHY_NF_SVAL(ee->ee_noise_floor_thr[ee_mode]),
781 AR5K_PHY_NFTHRES);
782
783 if ((channel->hw_value & CHANNEL_TURBO) &&
784 (ah->ah_ee_version >= AR5K_EEPROM_VERSION_5_0)) {
785 /* Switch settling time (Turbo) */
786 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING,
787 AR5K_PHY_SETTLING_SWITCH,
788 ee->ee_switch_settling_turbo[ee_mode]);
789
790 /* Tx/Rx attenuation (Turbo) */
791 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN,
792 AR5K_PHY_GAIN_TXRX_ATTEN,
793 ee->ee_atn_tx_rx_turbo[ee_mode]);
794
795 /* ADC/PGA desired size (Turbo) */
796 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
797 AR5K_PHY_DESIRED_SIZE_ADC,
798 ee->ee_adc_desired_size_turbo[ee_mode]);
799
800 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
801 AR5K_PHY_DESIRED_SIZE_PGA,
802 ee->ee_pga_desired_size_turbo[ee_mode]);
803
804 /* Tx/Rx margin (Turbo) */
805 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN_2GHZ,
806 AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX,
807 ee->ee_margin_tx_rx_turbo[ee_mode]);
808
809 } else {
810 /* Switch settling time */
811 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING,
812 AR5K_PHY_SETTLING_SWITCH,
813 ee->ee_switch_settling[ee_mode]);
814
815 /* Tx/Rx attenuation */
816 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN,
817 AR5K_PHY_GAIN_TXRX_ATTEN,
818 ee->ee_atn_tx_rx[ee_mode]);
819
820 /* ADC/PGA desired size */
821 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
822 AR5K_PHY_DESIRED_SIZE_ADC,
823 ee->ee_adc_desired_size[ee_mode]);
824
825 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE,
826 AR5K_PHY_DESIRED_SIZE_PGA,
827 ee->ee_pga_desired_size[ee_mode]);
828
829 /* Tx/Rx margin */
830 if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_4_1)
831 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN_2GHZ,
832 AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX,
833 ee->ee_margin_tx_rx[ee_mode]);
834 }
835
836 /* XPA delays */
837 ath5k_hw_reg_write(ah,
838 (ee->ee_tx_end2xpa_disable[ee_mode] << 24) |
839 (ee->ee_tx_end2xpa_disable[ee_mode] << 16) |
840 (ee->ee_tx_frm2xpa_enable[ee_mode] << 8) |
841 (ee->ee_tx_frm2xpa_enable[ee_mode]), AR5K_PHY_RF_CTL4);
842
843 /* XLNA delay */
844 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RF_CTL3,
845 AR5K_PHY_RF_CTL3_TXE2XLNA_ON,
846 ee->ee_tx_end2xlna_enable[ee_mode]);
847
848 /* Thresh64 (ANI) */
849 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_NF,
850 AR5K_PHY_NF_THRESH62,
851 ee->ee_thr_62[ee_mode]);
852
853
854 /* False detect backoff for channels
855 * that have spur noise. Write the new
856 * cyclic power RSSI threshold. */
857 if (ath5k_hw_chan_has_spur_noise(ah, channel))
858 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_OFDM_SELFCORR,
859 AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1,
860 AR5K_INIT_CYCRSSI_THR1 +
861 ee->ee_false_detect[ee_mode]);
862 else
863 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_OFDM_SELFCORR,
864 AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1,
865 AR5K_INIT_CYCRSSI_THR1);
866
Bruno Randolf5f13bfa2010-03-09 16:56:10 +0900867 /* I/Q correction (set enable bit last to match HAL sources) */
868 /* TODO: Per channel i/q infos ? */
869 if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_4_0) {
870 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_I_COFF,
871 ee->ee_i_cal[ee_mode]);
872 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_Q_COFF,
873 ee->ee_q_cal[ee_mode]);
874 AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_ENABLE);
875 }
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200876
877 /* Heavy clipping -disable for now */
878 if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_5_1)
879 ath5k_hw_reg_write(ah, 0, AR5K_PHY_HEAVY_CLIP_ENABLE);
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200880}
881
882/*
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300883 * Main reset function
884 */
Johannes Berg05c914f2008-09-11 00:01:58 +0200885int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode,
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300886 struct ieee80211_channel *channel, bool change_channel)
887{
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700888 struct ath_common *common = ath5k_hw_common(ah);
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200889 u32 s_seq[10], s_ant, s_led[3], staid1_flags, tsf_up, tsf_lo;
890 u32 phy_tst1;
891 u8 mode, freq, ee_mode, ant[2];
892 int i, ret;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300893
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300894 s_ant = 0;
895 ee_mode = 0;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200896 staid1_flags = 0;
897 tsf_up = 0;
898 tsf_lo = 0;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300899 freq = 0;
900 mode = 0;
901
902 /*
903 * Save some registers before a reset
904 */
905 /*DCU/Antenna selection not available on 5210*/
906 if (ah->ah_version != AR5K_AR5210) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300907
908 switch (channel->hw_value & CHANNEL_MODES) {
909 case CHANNEL_A:
910 mode = AR5K_MODE_11A;
911 freq = AR5K_INI_RFGAIN_5GHZ;
912 ee_mode = AR5K_EEPROM_MODE_11A;
913 break;
914 case CHANNEL_G:
915 mode = AR5K_MODE_11G;
916 freq = AR5K_INI_RFGAIN_2GHZ;
917 ee_mode = AR5K_EEPROM_MODE_11G;
918 break;
919 case CHANNEL_B:
920 mode = AR5K_MODE_11B;
921 freq = AR5K_INI_RFGAIN_2GHZ;
922 ee_mode = AR5K_EEPROM_MODE_11B;
923 break;
924 case CHANNEL_T:
925 mode = AR5K_MODE_11A_TURBO;
926 freq = AR5K_INI_RFGAIN_5GHZ;
927 ee_mode = AR5K_EEPROM_MODE_11A;
928 break;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300929 case CHANNEL_TG:
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200930 if (ah->ah_version == AR5K_AR5211) {
931 ATH5K_ERR(ah->ah_sc,
932 "TurboG mode not available on 5211");
933 return -EINVAL;
934 }
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300935 mode = AR5K_MODE_11G_TURBO;
936 freq = AR5K_INI_RFGAIN_2GHZ;
937 ee_mode = AR5K_EEPROM_MODE_11G;
938 break;
939 case CHANNEL_XR:
940 if (ah->ah_version == AR5K_AR5211) {
941 ATH5K_ERR(ah->ah_sc,
942 "XR mode not available on 5211");
943 return -EINVAL;
944 }
945 mode = AR5K_MODE_XR;
946 freq = AR5K_INI_RFGAIN_5GHZ;
947 ee_mode = AR5K_EEPROM_MODE_11A;
948 break;
949 default:
950 ATH5K_ERR(ah->ah_sc,
951 "invalid channel: %d\n", channel->center_freq);
952 return -EINVAL;
953 }
954
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200955 if (change_channel) {
956 /*
957 * Save frame sequence count
958 * For revs. after Oahu, only save
959 * seq num for DCU 0 (Global seq num)
960 */
961 if (ah->ah_mac_srev < AR5K_SREV_AR5211) {
962
963 for (i = 0; i < 10; i++)
964 s_seq[i] = ath5k_hw_reg_read(ah,
965 AR5K_QUEUE_DCU_SEQNUM(i));
966
967 } else {
968 s_seq[0] = ath5k_hw_reg_read(ah,
969 AR5K_QUEUE_DCU_SEQNUM(0));
970 }
971
972 /* TSF accelerates on AR5211 durring reset
973 * As a workaround save it here and restore
974 * it later so that it's back in time after
975 * reset. This way it'll get re-synced on the
976 * next beacon without breaking ad-hoc.
977 *
978 * On AR5212 TSF is almost preserved across a
979 * reset so it stays back in time anyway and
980 * we don't have to save/restore it.
981 *
982 * XXX: Since this breaks power saving we have
983 * to disable power saving until we receive the
984 * next beacon, so we can resync beacon timers */
985 if (ah->ah_version == AR5K_AR5211) {
986 tsf_up = ath5k_hw_reg_read(ah, AR5K_TSF_U32);
987 tsf_lo = ath5k_hw_reg_read(ah, AR5K_TSF_L32);
988 }
989 }
990
991 /* Save default antenna */
992 s_ant = ath5k_hw_reg_read(ah, AR5K_DEFAULT_ANTENNA);
993
994 if (ah->ah_version == AR5K_AR5212) {
995 /* Restore normal 32/40MHz clock operation
996 * to avoid register access delay on certain
997 * PHY registers */
998 ath5k_hw_set_sleep_clock(ah, false);
999
1000 /* Since we are going to write rf buffer
1001 * check if we have any pending gain_F
1002 * optimization settings */
1003 if (change_channel && ah->ah_rf_banks != NULL)
1004 ath5k_hw_gainf_calibrate(ah);
1005 }
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001006 }
1007
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001008 /*GPIOs*/
1009 s_led[0] = ath5k_hw_reg_read(ah, AR5K_PCICFG) &
1010 AR5K_PCICFG_LEDSTATE;
1011 s_led[1] = ath5k_hw_reg_read(ah, AR5K_GPIOCR);
1012 s_led[2] = ath5k_hw_reg_read(ah, AR5K_GPIODO);
Nick Kossifidisa406c132009-02-09 06:08:51 +02001013
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001014 /* AR5K_STA_ID1 flags, only preserve antenna
1015 * settings and ack/cts rate mode */
1016 staid1_flags = ath5k_hw_reg_read(ah, AR5K_STA_ID1) &
1017 (AR5K_STA_ID1_DEFAULT_ANTENNA |
1018 AR5K_STA_ID1_DESC_ANTENNA |
1019 AR5K_STA_ID1_RTS_DEF_ANTENNA |
1020 AR5K_STA_ID1_ACKCTS_6MB |
1021 AR5K_STA_ID1_BASE_RATE_11B |
1022 AR5K_STA_ID1_SELFGEN_DEF_ANT);
1023
1024 /* Wakeup the device */
1025 ret = ath5k_hw_nic_wakeup(ah, channel->hw_value, false);
1026 if (ret)
1027 return ret;
1028
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001029 /* PHY access enable */
1030 if (ah->ah_mac_srev >= AR5K_SREV_AR5211)
1031 ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ, AR5K_PHY(0));
1032 else
1033 ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ | 0x40,
1034 AR5K_PHY(0));
1035
1036 /* Write initial settings */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001037 ret = ath5k_hw_write_initvals(ah, mode, change_channel);
1038 if (ret)
1039 return ret;
1040
1041 /*
1042 * 5211/5212 Specific
1043 */
1044 if (ah->ah_version != AR5K_AR5210) {
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001045
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001046 /*
1047 * Write initial RF gain settings
1048 * This should work for both 5111/5112
1049 */
Nick Kossifidis6f3b4142009-02-09 06:03:41 +02001050 ret = ath5k_hw_rfgain_init(ah, freq);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001051 if (ret)
1052 return ret;
1053
1054 mdelay(1);
1055
1056 /*
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001057 * Tweak initval settings for revised
1058 * chipsets and add some more config
1059 * bits
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001060 */
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001061 ath5k_hw_tweak_initval_settings(ah, channel);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001062
1063 /*
Nick Kossifidis57e6c562009-04-30 15:55:50 -04001064 * Set TX power
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001065 */
Nick Kossifidis8f655dd2009-03-15 22:20:35 +02001066 ret = ath5k_hw_txpower(ah, channel, ee_mode,
Nick Kossifidisa0823812009-04-30 15:55:44 -04001067 ah->ah_txpower.txp_max_pwr / 2);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001068 if (ret)
1069 return ret;
1070
1071 /* Write rate duration table only on AR5212 and if
1072 * virtual interface has already been brought up
1073 * XXX: rethink this after new mode changes to
1074 * mac80211 are integrated */
1075 if (ah->ah_version == AR5K_AR5212 &&
1076 ah->ah_sc->vif != NULL)
1077 ath5k_hw_write_rate_duration(ah, mode);
1078
1079 /*
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001080 * Write RF buffer
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001081 */
Nick Kossifidis8892e4e2009-02-09 06:06:34 +02001082 ret = ath5k_hw_rfregs_init(ah, channel, mode);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001083 if (ret)
1084 return ret;
1085
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001086
1087 /* Write OFDM timings on 5212*/
1088 if (ah->ah_version == AR5K_AR5212 &&
1089 channel->hw_value & CHANNEL_OFDM) {
Nick Kossifidis57e6c562009-04-30 15:55:50 -04001090
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001091 ret = ath5k_hw_write_ofdm_timings(ah, channel);
1092 if (ret)
1093 return ret;
Nick Kossifidis57e6c562009-04-30 15:55:50 -04001094
Bruno Randolf30bd3a32010-05-19 10:31:21 +09001095 /* Spur info is available only from EEPROM versions
1096 * bigger than 5.3 but but the EEPOM routines will use
1097 * static values for older versions */
1098 if (ah->ah_mac_srev >= AR5K_SREV_AR5424)
Nick Kossifidis57e6c562009-04-30 15:55:50 -04001099 ath5k_hw_set_spur_mitigation_filter(ah,
Bruno Randolf30bd3a32010-05-19 10:31:21 +09001100 channel);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001101 }
1102
1103 /*Enable/disable 802.11b mode on 5111
1104 (enable 2111 frequency converter + CCK)*/
1105 if (ah->ah_radio == AR5K_RF5111) {
1106 if (mode == AR5K_MODE_11B)
1107 AR5K_REG_ENABLE_BITS(ah, AR5K_TXCFG,
1108 AR5K_TXCFG_B_MODE);
1109 else
1110 AR5K_REG_DISABLE_BITS(ah, AR5K_TXCFG,
1111 AR5K_TXCFG_B_MODE);
1112 }
1113
1114 /*
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001115 * In case a fixed antenna was set as default
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001116 * use the same switch table twice.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001117 */
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001118 if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_A)
1119 ant[0] = ant[1] = AR5K_ANT_SWTABLE_A;
1120 else if (ah->ah_ant_mode == AR5K_ANTMODE_FIXED_B)
1121 ant[0] = ant[1] = AR5K_ANT_SWTABLE_B;
1122 else {
1123 ant[0] = AR5K_ANT_SWTABLE_A;
1124 ant[1] = AR5K_ANT_SWTABLE_B;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001125 }
1126
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001127 /* Commit values from EEPROM */
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001128 ath5k_hw_commit_eeprom_settings(ah, channel, ant, ee_mode);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001129
1130 } else {
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001131 /*
1132 * For 5210 we do all initialization using
1133 * initvals, so we don't have to modify
1134 * any settings (5210 also only supports
1135 * a/aturbo modes)
1136 */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001137 mdelay(1);
1138 /* Disable phy and wait */
1139 ath5k_hw_reg_write(ah, AR5K_PHY_ACT_DISABLE, AR5K_PHY_ACT);
1140 mdelay(1);
1141 }
1142
1143 /*
1144 * Restore saved values
1145 */
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001146
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001147 /*DCU/Antenna selection not available on 5210*/
1148 if (ah->ah_version != AR5K_AR5210) {
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001149
1150 if (change_channel) {
1151 if (ah->ah_mac_srev < AR5K_SREV_AR5211) {
1152 for (i = 0; i < 10; i++)
1153 ath5k_hw_reg_write(ah, s_seq[i],
1154 AR5K_QUEUE_DCU_SEQNUM(i));
1155 } else {
1156 ath5k_hw_reg_write(ah, s_seq[0],
1157 AR5K_QUEUE_DCU_SEQNUM(0));
1158 }
1159
1160
1161 if (ah->ah_version == AR5K_AR5211) {
1162 ath5k_hw_reg_write(ah, tsf_up, AR5K_TSF_U32);
1163 ath5k_hw_reg_write(ah, tsf_lo, AR5K_TSF_L32);
1164 }
1165 }
1166
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001167 ath5k_hw_reg_write(ah, s_ant, AR5K_DEFAULT_ANTENNA);
1168 }
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001169
1170 /* Ledstate */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001171 AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, s_led[0]);
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001172
1173 /* Gpio settings */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001174 ath5k_hw_reg_write(ah, s_led[1], AR5K_GPIOCR);
1175 ath5k_hw_reg_write(ah, s_led[2], AR5K_GPIODO);
1176
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001177 /* Restore sta_id flags and preserve our mac address*/
Luis R. Rodriguez954fece2009-09-10 10:51:33 -07001178 ath5k_hw_reg_write(ah,
1179 get_unaligned_le32(common->macaddr),
1180 AR5K_STA_ID0);
1181 ath5k_hw_reg_write(ah,
Luis R. Rodriguez91b9eb82009-10-06 20:44:30 -04001182 staid1_flags | get_unaligned_le16(common->macaddr + 4),
Luis R. Rodriguez954fece2009-09-10 10:51:33 -07001183 AR5K_STA_ID1);
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001184
1185
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001186 /*
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001187 * Configure PCU
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001188 */
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001189
1190 /* Restore bssid and bssid mask */
Luis R. Rodriguezbe5d6b72009-10-06 20:44:31 -04001191 ath5k_hw_set_associd(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001192
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001193 /* Set PCU config */
Bruno Randolfccfe5552010-03-09 16:55:38 +09001194 ath5k_hw_set_opmode(ah, op_mode);
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001195
1196 /* Clear any pending interrupts
1197 * PISR/SISR Not available on 5210 */
1198 if (ah->ah_version != AR5K_AR5210)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001199 ath5k_hw_reg_write(ah, 0xffffffff, AR5K_PISR);
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001200
1201 /* Set RSSI/BRSSI thresholds
1202 *
1203 * Note: If we decide to set this value
1204 * dynamicaly, have in mind that when AR5K_RSSI_THR
1205 * register is read it might return 0x40 if we haven't
1206 * wrote anything to it plus BMISS RSSI threshold is zeroed.
1207 * So doing a save/restore procedure here isn't the right
1208 * choice. Instead store it on ath5k_hw */
1209 ath5k_hw_reg_write(ah, (AR5K_TUNE_RSSI_THRES |
1210 AR5K_TUNE_BMISS_THRES <<
1211 AR5K_RSSI_THR_BMISS_S),
1212 AR5K_RSSI_THR);
1213
1214 /* MIC QoS support */
1215 if (ah->ah_mac_srev >= AR5K_SREV_AR2413) {
1216 ath5k_hw_reg_write(ah, 0x000100aa, AR5K_MIC_QOS_CTL);
1217 ath5k_hw_reg_write(ah, 0x00003210, AR5K_MIC_QOS_SEL);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001218 }
1219
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001220 /* QoS NOACK Policy */
1221 if (ah->ah_version == AR5K_AR5212) {
1222 ath5k_hw_reg_write(ah,
1223 AR5K_REG_SM(2, AR5K_QOS_NOACK_2BIT_VALUES) |
1224 AR5K_REG_SM(5, AR5K_QOS_NOACK_BIT_OFFSET) |
1225 AR5K_REG_SM(0, AR5K_QOS_NOACK_BYTE_OFFSET),
1226 AR5K_QOS_NOACK);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001227 }
1228
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001229
1230 /*
1231 * Configure PHY
1232 */
1233
1234 /* Set channel on PHY */
1235 ret = ath5k_hw_channel(ah, channel);
1236 if (ret)
1237 return ret;
1238
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001239 /*
1240 * Enable the PHY and wait until completion
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001241 * This includes BaseBand and Synthesizer
1242 * activation.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001243 */
1244 ath5k_hw_reg_write(ah, AR5K_PHY_ACT_ENABLE, AR5K_PHY_ACT);
1245
1246 /*
1247 * On 5211+ read activation -> rx delay
1248 * and use it.
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001249 *
1250 * TODO: Half/quarter rate support
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001251 */
1252 if (ah->ah_version != AR5K_AR5210) {
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001253 u32 delay;
1254 delay = ath5k_hw_reg_read(ah, AR5K_PHY_RX_DELAY) &
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001255 AR5K_PHY_RX_DELAY_M;
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001256 delay = (channel->hw_value & CHANNEL_CCK) ?
1257 ((delay << 2) / 22) : (delay / 10);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001258
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001259 udelay(100 + (2 * delay));
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001260 } else {
1261 mdelay(1);
1262 }
1263
1264 /*
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001265 * Perform ADC test to see if baseband is ready
1266 * Set tx hold and check adc test register
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001267 */
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001268 phy_tst1 = ath5k_hw_reg_read(ah, AR5K_PHY_TST1);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001269 ath5k_hw_reg_write(ah, AR5K_PHY_TST1_TXHOLD, AR5K_PHY_TST1);
1270 for (i = 0; i <= 20; i++) {
1271 if (!(ath5k_hw_reg_read(ah, AR5K_PHY_ADC_TEST) & 0x10))
1272 break;
1273 udelay(200);
1274 }
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001275 ath5k_hw_reg_write(ah, phy_tst1, AR5K_PHY_TST1);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001276
1277 /*
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001278 * Start automatic gain control calibration
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001279 *
1280 * During AGC calibration RX path is re-routed to
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001281 * a power detector so we don't receive anything.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001282 *
1283 * This method is used to calibrate some static offsets
1284 * used together with on-the fly I/Q calibration (the
1285 * one performed via ath5k_hw_phy_calibrate), that doesn't
1286 * interrupt rx path.
1287 *
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001288 * While rx path is re-routed to the power detector we also
1289 * start a noise floor calibration, to measure the
1290 * card's noise floor (the noise we measure when we are not
1291 * transmiting or receiving anything).
1292 *
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001293 * If we are in a noisy environment AGC calibration may time
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001294 * out and/or noise floor calibration might timeout.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001295 */
1296 AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_AGCCTL,
Bob Copelande5e26472009-10-14 14:16:30 -04001297 AR5K_PHY_AGCCTL_CAL | AR5K_PHY_AGCCTL_NF);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001298
1299 /* At the same time start I/Q calibration for QAM constellation
1300 * -no need for CCK- */
1301 ah->ah_calibration = false;
1302 if (!(mode == AR5K_MODE_11B)) {
1303 ah->ah_calibration = true;
1304 AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ,
1305 AR5K_PHY_IQ_CAL_NUM_LOG_MAX, 15);
1306 AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ,
1307 AR5K_PHY_IQ_RUN);
1308 }
1309
1310 /* Wait for gain calibration to finish (we check for I/Q calibration
1311 * during ath5k_phy_calibrate) */
1312 if (ath5k_hw_register_timeout(ah, AR5K_PHY_AGCCTL,
1313 AR5K_PHY_AGCCTL_CAL, 0, false)) {
1314 ATH5K_ERR(ah->ah_sc, "gain calibration timeout (%uMHz)\n",
1315 channel->center_freq);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001316 }
1317
Nick Kossifidis2bed03e2009-04-30 15:55:49 -04001318 /* Restore antenna mode */
1319 ath5k_hw_set_antenna_mode(ah, ah->ah_ant_mode);
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001320
Lukáš Turek6e08d222009-12-21 22:50:51 +01001321 /* Restore slot time and ACK timeouts */
1322 if (ah->ah_coverage_class > 0)
1323 ath5k_hw_set_coverage_class(ah, ah->ah_coverage_class);
1324
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001325 /*
1326 * Configure QCUs/DCUs
1327 */
1328
1329 /* TODO: HW Compression support for data queues */
1330 /* TODO: Burst prefetch for data queues */
1331
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001332 /*
1333 * Reset queues and start beacon timers at the end of the reset routine
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001334 * This also sets QCU mask on each DCU for 1:1 qcu to dcu mapping
1335 * Note: If we want we can assign multiple qcus on one dcu.
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001336 */
1337 for (i = 0; i < ah->ah_capabilities.cap_queues.q_tx_num; i++) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001338 ret = ath5k_hw_reset_tx_queue(ah, i);
1339 if (ret) {
1340 ATH5K_ERR(ah->ah_sc,
1341 "failed to reset TX queue #%d\n", i);
1342 return ret;
1343 }
1344 }
1345
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001346
1347 /*
1348 * Configure DMA/Interrupts
1349 */
1350
1351 /*
1352 * Set Rx/Tx DMA Configuration
1353 *
1354 * Set standard DMA size (128). Note that
1355 * a DMA size of 512 causes rx overruns and tx errors
1356 * on pci-e cards (tested on 5424 but since rx overruns
1357 * also occur on 5416/5418 with madwifi we set 128
1358 * for all PCI-E cards to be safe).
1359 *
1360 * XXX: need to check 5210 for this
1361 * TODO: Check out tx triger level, it's always 64 on dumps but I
1362 * guess we can tweak it and see how it goes ;-)
1363 */
1364 if (ah->ah_version != AR5K_AR5210) {
1365 AR5K_REG_WRITE_BITS(ah, AR5K_TXCFG,
1366 AR5K_TXCFG_SDMAMR, AR5K_DMASIZE_128B);
1367 AR5K_REG_WRITE_BITS(ah, AR5K_RXCFG,
1368 AR5K_RXCFG_SDMAMW, AR5K_DMASIZE_128B);
1369 }
1370
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001371 /* Pre-enable interrupts on 5211/5212*/
1372 if (ah->ah_version != AR5K_AR5210)
Nick Kossifidis4c674c62008-10-26 20:40:25 +02001373 ath5k_hw_set_imr(ah, ah->ah_imr);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001374
Nick Kossifidise8f055f2009-02-09 06:12:58 +02001375 /* Enable 32KHz clock function for AR5212+ chips
1376 * Set clocks to 32KHz operation and use an
1377 * external 32KHz crystal when sleeping if one
1378 * exists */
Bob Copeland5d6ce622010-01-20 23:51:03 -05001379 if (ah->ah_version == AR5K_AR5212 &&
Bruno Randolfccfe5552010-03-09 16:55:38 +09001380 op_mode != NL80211_IFTYPE_AP)
Bob Copeland5d6ce622010-01-20 23:51:03 -05001381 ath5k_hw_set_sleep_clock(ah, true);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001382
1383 /*
Bruno Randolfa3b980f2010-03-09 16:55:33 +09001384 * Disable beacons and reset the TSF
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001385 */
Bruno Randolfa3b980f2010-03-09 16:55:33 +09001386 AR5K_REG_DISABLE_BITS(ah, AR5K_BEACON, AR5K_BEACON_ENABLE);
1387 ath5k_hw_reset_tsf(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001388 return 0;
1389}