Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1 | /* |
| 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 Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 22 | /****************************\ |
| 23 | Reset function and helpers |
| 24 | \****************************/ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 25 | |
Luis R. Rodriguez | bcd8f54 | 2009-09-09 22:43:17 -0700 | [diff] [blame] | 26 | #include <asm/unaligned.h> |
| 27 | |
Pavel Roskin | 0a5d381 | 2011-07-07 18:13:24 -0400 | [diff] [blame] | 28 | #include <linux/pci.h> /* To determine if a card is pci-e */ |
Forrest Zhang | a54be5d | 2009-05-13 11:14:39 -0400 | [diff] [blame] | 29 | #include <linux/log2.h> |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 30 | #include <linux/platform_device.h> |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 31 | #include "ath5k.h" |
| 32 | #include "reg.h" |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 33 | #include "debug.h" |
| 34 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 35 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 36 | /** |
| 37 | * DOC: Reset function and helpers |
| 38 | * |
| 39 | * Here we implement the main reset routine, used to bring the card |
| 40 | * to a working state and ready to receive. We also handle routines |
| 41 | * that don't fit on other places such as clock, sleep and power control |
| 42 | */ |
| 43 | |
| 44 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 45 | /******************\ |
| 46 | * Helper functions * |
| 47 | \******************/ |
| 48 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 49 | /** |
| 50 | * ath5k_hw_register_timeout() - Poll a register for a flag/field change |
| 51 | * @ah: The &struct ath5k_hw |
| 52 | * @reg: The register to read |
| 53 | * @flag: The flag/field to check on the register |
| 54 | * @val: The field value we expect (if we check a field) |
| 55 | * @is_set: Instead of checking if the flag got cleared, check if it got set |
| 56 | * |
| 57 | * Some registers contain flags that indicate that an operation is |
| 58 | * running. We use this function to poll these registers and check |
| 59 | * if these flags get cleared. We also use it to poll a register |
| 60 | * field (containing multiple flags) until it gets a specific value. |
| 61 | * |
| 62 | * Returns -EAGAIN if we exceeded AR5K_TUNE_REGISTER_TIMEOUT * 15us or 0 |
Pavel Roskin | ec182d9 | 2010-02-18 20:28:41 -0500 | [diff] [blame] | 63 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 64 | int |
| 65 | ath5k_hw_register_timeout(struct ath5k_hw *ah, u32 reg, u32 flag, u32 val, |
Pavel Roskin | ec182d9 | 2010-02-18 20:28:41 -0500 | [diff] [blame] | 66 | bool is_set) |
| 67 | { |
| 68 | int i; |
| 69 | u32 data; |
| 70 | |
| 71 | for (i = AR5K_TUNE_REGISTER_TIMEOUT; i > 0; i--) { |
| 72 | data = ath5k_hw_reg_read(ah, reg); |
| 73 | if (is_set && (data & flag)) |
| 74 | break; |
| 75 | else if ((data & flag) == val) |
| 76 | break; |
| 77 | udelay(15); |
| 78 | } |
| 79 | |
| 80 | return (i <= 0) ? -EAGAIN : 0; |
| 81 | } |
| 82 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 83 | |
| 84 | /*************************\ |
| 85 | * Clock related functions * |
| 86 | \*************************/ |
| 87 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 88 | /** |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 89 | * ath5k_hw_htoclock() - Translate usec to hw clock units |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 90 | * @ah: The &struct ath5k_hw |
| 91 | * @usec: value in microseconds |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 92 | * |
| 93 | * Translate usecs to hw clock units based on the current |
| 94 | * hw clock rate. |
| 95 | * |
| 96 | * Returns number of clock units |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 97 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 98 | unsigned int |
| 99 | ath5k_hw_htoclock(struct ath5k_hw *ah, unsigned int usec) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 100 | { |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 101 | struct ath_common *common = ath5k_hw_common(ah); |
| 102 | return usec * common->clockrate; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 103 | } |
| 104 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 105 | /** |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 106 | * ath5k_hw_clocktoh() - Translate hw clock units to usec |
| 107 | * @ah: The &struct ath5k_hw |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 108 | * @clock: value in hw clock units |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 109 | * |
| 110 | * Translate hw clock units to usecs based on the current |
| 111 | * hw clock rate. |
| 112 | * |
| 113 | * Returns number of usecs |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 114 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 115 | unsigned int |
| 116 | ath5k_hw_clocktoh(struct ath5k_hw *ah, unsigned int clock) |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 117 | { |
| 118 | struct ath_common *common = ath5k_hw_common(ah); |
| 119 | return clock / common->clockrate; |
| 120 | } |
| 121 | |
| 122 | /** |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 123 | * ath5k_hw_init_core_clock() - Initialize core clock |
| 124 | * @ah: The &struct ath5k_hw |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 125 | * |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 126 | * Initialize core clock parameters (usec, usec32, latencies etc), |
| 127 | * based on current bwmode and chipset properties. |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 128 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 129 | static void |
| 130 | ath5k_hw_init_core_clock(struct ath5k_hw *ah) |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 131 | { |
| 132 | struct ieee80211_channel *channel = ah->ah_current_channel; |
| 133 | struct ath_common *common = ath5k_hw_common(ah); |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 134 | u32 usec_reg, txlat, rxlat, usec, clock, sclock, txf2txs; |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 135 | |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 136 | /* |
| 137 | * Set core clock frequency |
| 138 | */ |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 139 | switch (channel->hw_value) { |
| 140 | case AR5K_MODE_11A: |
| 141 | clock = 40; |
| 142 | break; |
| 143 | case AR5K_MODE_11B: |
| 144 | clock = 22; |
| 145 | break; |
| 146 | case AR5K_MODE_11G: |
| 147 | default: |
| 148 | clock = 44; |
| 149 | break; |
| 150 | } |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 151 | |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 152 | /* Use clock multiplier for non-default |
| 153 | * bwmode */ |
| 154 | switch (ah->ah_bwmode) { |
| 155 | case AR5K_BWMODE_40MHZ: |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 156 | clock *= 2; |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 157 | break; |
| 158 | case AR5K_BWMODE_10MHZ: |
| 159 | clock /= 2; |
| 160 | break; |
| 161 | case AR5K_BWMODE_5MHZ: |
| 162 | clock /= 4; |
| 163 | break; |
| 164 | default: |
| 165 | break; |
| 166 | } |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 167 | |
| 168 | common->clockrate = clock; |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 169 | |
| 170 | /* |
| 171 | * Set USEC parameters |
| 172 | */ |
| 173 | /* Set USEC counter on PCU*/ |
| 174 | usec = clock - 1; |
| 175 | usec = AR5K_REG_SM(usec, AR5K_USEC_1); |
| 176 | |
| 177 | /* Set usec duration on DCU */ |
| 178 | if (ah->ah_version != AR5K_AR5210) |
| 179 | AR5K_REG_WRITE_BITS(ah, AR5K_DCU_GBL_IFS_MISC, |
| 180 | AR5K_DCU_GBL_IFS_MISC_USEC_DUR, |
| 181 | clock); |
| 182 | |
| 183 | /* Set 32MHz USEC counter */ |
| 184 | if ((ah->ah_radio == AR5K_RF5112) || |
Felix Fietkau | f006438 | 2011-07-12 09:02:03 +0800 | [diff] [blame] | 185 | (ah->ah_radio == AR5K_RF2413) || |
Pavel Roskin | e4bbf2f | 2011-07-07 18:14:13 -0400 | [diff] [blame] | 186 | (ah->ah_radio == AR5K_RF5413) || |
| 187 | (ah->ah_radio == AR5K_RF2316) || |
| 188 | (ah->ah_radio == AR5K_RF2317)) |
| 189 | /* Remain on 40MHz clock ? */ |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 190 | sclock = 40 - 1; |
| 191 | else |
| 192 | sclock = 32 - 1; |
| 193 | sclock = AR5K_REG_SM(sclock, AR5K_USEC_32); |
| 194 | |
| 195 | /* |
| 196 | * Set tx/rx latencies |
| 197 | */ |
| 198 | usec_reg = ath5k_hw_reg_read(ah, AR5K_USEC_5211); |
| 199 | txlat = AR5K_REG_MS(usec_reg, AR5K_USEC_TX_LATENCY_5211); |
| 200 | rxlat = AR5K_REG_MS(usec_reg, AR5K_USEC_RX_LATENCY_5211); |
| 201 | |
| 202 | /* |
John W. Linville | e245292 | 2011-04-29 14:35:14 -0400 | [diff] [blame] | 203 | * Set default Tx frame to Tx data start delay |
| 204 | */ |
| 205 | txf2txs = AR5K_INIT_TXF2TXD_START_DEFAULT; |
| 206 | |
| 207 | /* |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 208 | * 5210 initvals don't include usec settings |
| 209 | * so we need to use magic values here for |
| 210 | * tx/rx latencies |
| 211 | */ |
| 212 | if (ah->ah_version == AR5K_AR5210) { |
| 213 | /* same for turbo */ |
| 214 | txlat = AR5K_INIT_TX_LATENCY_5210; |
| 215 | rxlat = AR5K_INIT_RX_LATENCY_5210; |
| 216 | } |
| 217 | |
| 218 | if (ah->ah_mac_srev < AR5K_SREV_AR5211) { |
| 219 | /* 5311 has different tx/rx latency masks |
| 220 | * from 5211, since we deal 5311 the same |
| 221 | * as 5211 when setting initvals, shift |
| 222 | * values here to their proper locations |
| 223 | * |
| 224 | * Note: Initvals indicate tx/rx/ latencies |
| 225 | * are the same for turbo mode */ |
| 226 | txlat = AR5K_REG_SM(txlat, AR5K_USEC_TX_LATENCY_5210); |
| 227 | rxlat = AR5K_REG_SM(rxlat, AR5K_USEC_RX_LATENCY_5210); |
| 228 | } else |
| 229 | switch (ah->ah_bwmode) { |
| 230 | case AR5K_BWMODE_10MHZ: |
| 231 | txlat = AR5K_REG_SM(txlat * 2, |
| 232 | AR5K_USEC_TX_LATENCY_5211); |
| 233 | rxlat = AR5K_REG_SM(AR5K_INIT_RX_LAT_MAX, |
| 234 | AR5K_USEC_RX_LATENCY_5211); |
| 235 | txf2txs = AR5K_INIT_TXF2TXD_START_DELAY_10MHZ; |
| 236 | break; |
| 237 | case AR5K_BWMODE_5MHZ: |
| 238 | txlat = AR5K_REG_SM(txlat * 4, |
| 239 | AR5K_USEC_TX_LATENCY_5211); |
| 240 | rxlat = AR5K_REG_SM(AR5K_INIT_RX_LAT_MAX, |
| 241 | AR5K_USEC_RX_LATENCY_5211); |
| 242 | txf2txs = AR5K_INIT_TXF2TXD_START_DELAY_5MHZ; |
| 243 | break; |
| 244 | case AR5K_BWMODE_40MHZ: |
| 245 | txlat = AR5K_INIT_TX_LAT_MIN; |
| 246 | rxlat = AR5K_REG_SM(rxlat / 2, |
| 247 | AR5K_USEC_RX_LATENCY_5211); |
| 248 | txf2txs = AR5K_INIT_TXF2TXD_START_DEFAULT; |
| 249 | break; |
| 250 | default: |
| 251 | break; |
| 252 | } |
| 253 | |
| 254 | usec_reg = (usec | sclock | txlat | rxlat); |
| 255 | ath5k_hw_reg_write(ah, usec_reg, AR5K_USEC); |
| 256 | |
Pavel Roskin | 6a2a0e7 | 2011-07-09 00:17:51 -0400 | [diff] [blame] | 257 | /* On 5112 set tx frame to tx data start delay */ |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 258 | if (ah->ah_radio == AR5K_RF5112) { |
| 259 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RF_CTL2, |
| 260 | AR5K_PHY_RF_CTL2_TXF2TXD_START, |
| 261 | txf2txs); |
| 262 | } |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 263 | } |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 264 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 265 | /** |
| 266 | * ath5k_hw_set_sleep_clock() - Setup sleep clock operation |
| 267 | * @ah: The &struct ath5k_hw |
| 268 | * @enable: Enable sleep clock operation (false to disable) |
| 269 | * |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 270 | * If there is an external 32KHz crystal available, use it |
| 271 | * as ref. clock instead of 32/40MHz clock and baseband clocks |
| 272 | * to save power during sleep or restore normal 32/40MHz |
| 273 | * operation. |
| 274 | * |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 275 | * NOTE: When operating on 32KHz certain PHY registers (27 - 31, |
| 276 | * 123 - 127) require delay on access. |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 277 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 278 | static void |
| 279 | ath5k_hw_set_sleep_clock(struct ath5k_hw *ah, bool enable) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 280 | { |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 281 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; |
Felix Fietkau | f006438 | 2011-07-12 09:02:03 +0800 | [diff] [blame] | 282 | u32 scal, spending, sclock; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 283 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 284 | /* Only set 32KHz settings if we have an external |
| 285 | * 32KHz crystal present */ |
| 286 | if ((AR5K_EEPROM_HAS32KHZCRYSTAL(ee->ee_misc1) || |
| 287 | AR5K_EEPROM_HAS32KHZCRYSTAL_OLD(ee->ee_misc1)) && |
| 288 | enable) { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 289 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 290 | /* 1 usec/cycle */ |
| 291 | AR5K_REG_WRITE_BITS(ah, AR5K_USEC_5211, AR5K_USEC_32, 1); |
| 292 | /* Set up tsf increment on each cycle */ |
| 293 | AR5K_REG_WRITE_BITS(ah, AR5K_TSF_PARM, AR5K_TSF_PARM_INC, 61); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 294 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 295 | /* Set baseband sleep control registers |
| 296 | * and sleep control rate */ |
| 297 | ath5k_hw_reg_write(ah, 0x1f, AR5K_PHY_SCR); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 298 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 299 | if ((ah->ah_radio == AR5K_RF5112) || |
| 300 | (ah->ah_radio == AR5K_RF5413) || |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 301 | (ah->ah_radio == AR5K_RF2316) || |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 302 | (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) |
| 303 | spending = 0x14; |
| 304 | else |
| 305 | spending = 0x18; |
| 306 | ath5k_hw_reg_write(ah, spending, AR5K_PHY_SPENDING); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 307 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 308 | if ((ah->ah_radio == AR5K_RF5112) || |
| 309 | (ah->ah_radio == AR5K_RF5413) || |
| 310 | (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) { |
| 311 | ath5k_hw_reg_write(ah, 0x26, AR5K_PHY_SLMT); |
| 312 | ath5k_hw_reg_write(ah, 0x0d, AR5K_PHY_SCAL); |
| 313 | ath5k_hw_reg_write(ah, 0x07, AR5K_PHY_SCLOCK); |
| 314 | ath5k_hw_reg_write(ah, 0x3f, AR5K_PHY_SDELAY); |
| 315 | AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG, |
| 316 | AR5K_PCICFG_SLEEP_CLOCK_RATE, 0x02); |
| 317 | } else { |
| 318 | ath5k_hw_reg_write(ah, 0x0a, AR5K_PHY_SLMT); |
| 319 | ath5k_hw_reg_write(ah, 0x0c, AR5K_PHY_SCAL); |
| 320 | ath5k_hw_reg_write(ah, 0x03, AR5K_PHY_SCLOCK); |
| 321 | ath5k_hw_reg_write(ah, 0x20, AR5K_PHY_SDELAY); |
| 322 | AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG, |
| 323 | AR5K_PCICFG_SLEEP_CLOCK_RATE, 0x03); |
| 324 | } |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 325 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 326 | /* Enable sleep clock operation */ |
| 327 | AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, |
| 328 | AR5K_PCICFG_SLEEP_CLOCK_EN); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 329 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 330 | } else { |
| 331 | |
| 332 | /* Disable sleep clock operation and |
| 333 | * restore default parameters */ |
| 334 | AR5K_REG_DISABLE_BITS(ah, AR5K_PCICFG, |
| 335 | AR5K_PCICFG_SLEEP_CLOCK_EN); |
| 336 | |
| 337 | AR5K_REG_WRITE_BITS(ah, AR5K_PCICFG, |
| 338 | AR5K_PCICFG_SLEEP_CLOCK_RATE, 0); |
| 339 | |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 340 | /* Set DAC/ADC delays */ |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 341 | ath5k_hw_reg_write(ah, 0x1f, AR5K_PHY_SCR); |
| 342 | ath5k_hw_reg_write(ah, AR5K_PHY_SLMT_32MHZ, AR5K_PHY_SLMT); |
| 343 | |
| 344 | if (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4)) |
| 345 | scal = AR5K_PHY_SCAL_32MHZ_2417; |
| 346 | else if (ee->ee_is_hb63) |
| 347 | scal = AR5K_PHY_SCAL_32MHZ_HB63; |
| 348 | else |
| 349 | scal = AR5K_PHY_SCAL_32MHZ; |
| 350 | ath5k_hw_reg_write(ah, scal, AR5K_PHY_SCAL); |
| 351 | |
| 352 | ath5k_hw_reg_write(ah, AR5K_PHY_SCLOCK_32MHZ, AR5K_PHY_SCLOCK); |
| 353 | ath5k_hw_reg_write(ah, AR5K_PHY_SDELAY_32MHZ, AR5K_PHY_SDELAY); |
| 354 | |
| 355 | if ((ah->ah_radio == AR5K_RF5112) || |
| 356 | (ah->ah_radio == AR5K_RF5413) || |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 357 | (ah->ah_radio == AR5K_RF2316) || |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 358 | (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) |
| 359 | spending = 0x14; |
| 360 | else |
| 361 | spending = 0x18; |
| 362 | ath5k_hw_reg_write(ah, spending, AR5K_PHY_SPENDING); |
| 363 | |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 364 | /* Set up tsf increment on each cycle */ |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 365 | AR5K_REG_WRITE_BITS(ah, AR5K_TSF_PARM, AR5K_TSF_PARM_INC, 1); |
Felix Fietkau | f006438 | 2011-07-12 09:02:03 +0800 | [diff] [blame] | 366 | |
| 367 | if ((ah->ah_radio == AR5K_RF5112) || |
| 368 | (ah->ah_radio == AR5K_RF5413) || |
| 369 | (ah->ah_radio == AR5K_RF2316) || |
| 370 | (ah->ah_radio == AR5K_RF2317)) |
| 371 | sclock = 40 - 1; |
| 372 | else |
| 373 | sclock = 32 - 1; |
| 374 | AR5K_REG_WRITE_BITS(ah, AR5K_USEC_5211, AR5K_USEC_32, sclock); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 378 | |
| 379 | /*********************\ |
| 380 | * Reset/Sleep control * |
| 381 | \*********************/ |
| 382 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 383 | /** |
| 384 | * ath5k_hw_nic_reset() - Reset the various chipset units |
| 385 | * @ah: The &struct ath5k_hw |
| 386 | * @val: Mask to indicate what units to reset |
| 387 | * |
| 388 | * To reset the various chipset units we need to write |
| 389 | * the mask to AR5K_RESET_CTL and poll the register until |
| 390 | * all flags are cleared. |
| 391 | * |
| 392 | * Returns 0 if we are O.K. or -EAGAIN (from athk5_hw_register_timeout) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 393 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 394 | static int |
| 395 | ath5k_hw_nic_reset(struct ath5k_hw *ah, u32 val) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 396 | { |
| 397 | int ret; |
| 398 | u32 mask = val ? val : ~0U; |
| 399 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 400 | /* Read-and-clear RX Descriptor Pointer*/ |
| 401 | ath5k_hw_reg_read(ah, AR5K_RXDP); |
| 402 | |
| 403 | /* |
| 404 | * Reset the device and wait until success |
| 405 | */ |
| 406 | ath5k_hw_reg_write(ah, val, AR5K_RESET_CTL); |
| 407 | |
| 408 | /* Wait at least 128 PCI clocks */ |
Nick Kossifidis | 1846ac3 | 2011-11-25 20:40:24 +0200 | [diff] [blame] | 409 | usleep_range(15, 20); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 410 | |
| 411 | if (ah->ah_version == AR5K_AR5210) { |
Nick Kossifidis | 84e463f | 2008-09-17 03:33:19 +0300 | [diff] [blame] | 412 | val &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA |
| 413 | | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY; |
| 414 | mask &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA |
| 415 | | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 416 | } else { |
| 417 | val &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND; |
| 418 | mask &= AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_BASEBAND; |
| 419 | } |
| 420 | |
| 421 | ret = ath5k_hw_register_timeout(ah, AR5K_RESET_CTL, mask, val, false); |
| 422 | |
| 423 | /* |
| 424 | * Reset configuration register (for hw byte-swap). Note that this |
| 425 | * is only set for big endian. We do the necessary magic in |
| 426 | * AR5K_INIT_CFG. |
| 427 | */ |
| 428 | if ((val & AR5K_RESET_CTL_PCU) == 0) |
| 429 | ath5k_hw_reg_write(ah, AR5K_INIT_CFG, AR5K_CFG); |
| 430 | |
| 431 | return ret; |
| 432 | } |
| 433 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 434 | /** |
| 435 | * ath5k_hw_wisoc_reset() - Reset AHB chipset |
| 436 | * @ah: The &struct ath5k_hw |
| 437 | * @flags: Mask to indicate what units to reset |
| 438 | * |
| 439 | * Same as ath5k_hw_nic_reset but for AHB based devices |
| 440 | * |
| 441 | * Returns 0 if we are O.K. or -EAGAIN (from athk5_hw_register_timeout) |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 442 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 443 | static int |
| 444 | ath5k_hw_wisoc_reset(struct ath5k_hw *ah, u32 flags) |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 445 | { |
| 446 | u32 mask = flags ? flags : ~0U; |
Pavel Roskin | 2753f87 | 2011-07-07 18:13:55 -0400 | [diff] [blame] | 447 | u32 __iomem *reg; |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 448 | u32 regval; |
| 449 | u32 val = 0; |
| 450 | |
| 451 | /* ah->ah_mac_srev is not available at this point yet */ |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 452 | if (ah->devid >= AR5K_SREV_AR2315_R6) { |
Pavel Roskin | d816ab2 | 2011-06-15 18:03:28 -0400 | [diff] [blame] | 453 | reg = (u32 __iomem *) AR5K_AR2315_RESET; |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 454 | if (mask & AR5K_RESET_CTL_PCU) |
| 455 | val |= AR5K_AR2315_RESET_WMAC; |
| 456 | if (mask & AR5K_RESET_CTL_BASEBAND) |
| 457 | val |= AR5K_AR2315_RESET_BB_WARM; |
| 458 | } else { |
Pavel Roskin | d816ab2 | 2011-06-15 18:03:28 -0400 | [diff] [blame] | 459 | reg = (u32 __iomem *) AR5K_AR5312_RESET; |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 460 | if (to_platform_device(ah->dev)->id == 0) { |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 461 | if (mask & AR5K_RESET_CTL_PCU) |
| 462 | val |= AR5K_AR5312_RESET_WMAC0; |
| 463 | if (mask & AR5K_RESET_CTL_BASEBAND) |
| 464 | val |= AR5K_AR5312_RESET_BB0_COLD | |
| 465 | AR5K_AR5312_RESET_BB0_WARM; |
| 466 | } else { |
| 467 | if (mask & AR5K_RESET_CTL_PCU) |
| 468 | val |= AR5K_AR5312_RESET_WMAC1; |
| 469 | if (mask & AR5K_RESET_CTL_BASEBAND) |
| 470 | val |= AR5K_AR5312_RESET_BB1_COLD | |
| 471 | AR5K_AR5312_RESET_BB1_WARM; |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | /* Put BB/MAC into reset */ |
Jonathan Bither | cede8b6 | 2012-02-13 21:47:45 -0500 | [diff] [blame] | 476 | regval = ioread32(reg); |
| 477 | iowrite32(regval | val, reg); |
| 478 | regval = ioread32(reg); |
Nick Kossifidis | 1846ac3 | 2011-11-25 20:40:24 +0200 | [diff] [blame] | 479 | usleep_range(100, 150); |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 480 | |
| 481 | /* Bring BB/MAC out of reset */ |
Jonathan Bither | cede8b6 | 2012-02-13 21:47:45 -0500 | [diff] [blame] | 482 | iowrite32(regval & ~val, reg); |
| 483 | regval = ioread32(reg); |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 484 | |
| 485 | /* |
| 486 | * Reset configuration register (for hw byte-swap). Note that this |
| 487 | * is only set for big endian. We do the necessary magic in |
| 488 | * AR5K_INIT_CFG. |
| 489 | */ |
| 490 | if ((flags & AR5K_RESET_CTL_PCU) == 0) |
| 491 | ath5k_hw_reg_write(ah, AR5K_INIT_CFG, AR5K_CFG); |
| 492 | |
| 493 | return 0; |
| 494 | } |
| 495 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 496 | /** |
| 497 | * ath5k_hw_set_power_mode() - Set power mode |
| 498 | * @ah: The &struct ath5k_hw |
| 499 | * @mode: One of enum ath5k_power_mode |
| 500 | * @set_chip: Set to true to write sleep control register |
| 501 | * @sleep_duration: How much time the device is allowed to sleep |
| 502 | * when sleep logic is enabled (in 128 microsecond increments). |
| 503 | * |
| 504 | * This function is used to configure sleep policy and allowed |
| 505 | * sleep modes. For more information check out the sleep control |
| 506 | * register on reg.h and STA_ID1. |
| 507 | * |
| 508 | * Returns 0 on success, -EIO if chip didn't wake up or -EINVAL if an invalid |
| 509 | * mode is requested. |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 510 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 511 | static int |
| 512 | ath5k_hw_set_power_mode(struct ath5k_hw *ah, enum ath5k_power_mode mode, |
Pavel Roskin | 626ede6 | 2010-02-18 20:28:02 -0500 | [diff] [blame] | 513 | bool set_chip, u16 sleep_duration) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 514 | { |
| 515 | unsigned int i; |
| 516 | u32 staid, data; |
| 517 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 518 | staid = ath5k_hw_reg_read(ah, AR5K_STA_ID1); |
| 519 | |
| 520 | switch (mode) { |
| 521 | case AR5K_PM_AUTO: |
| 522 | staid &= ~AR5K_STA_ID1_DEFAULT_ANTENNA; |
| 523 | /* fallthrough */ |
| 524 | case AR5K_PM_NETWORK_SLEEP: |
| 525 | if (set_chip) |
| 526 | ath5k_hw_reg_write(ah, |
| 527 | AR5K_SLEEP_CTL_SLE_ALLOW | |
| 528 | sleep_duration, |
| 529 | AR5K_SLEEP_CTL); |
| 530 | |
| 531 | staid |= AR5K_STA_ID1_PWR_SV; |
| 532 | break; |
| 533 | |
| 534 | case AR5K_PM_FULL_SLEEP: |
| 535 | if (set_chip) |
| 536 | ath5k_hw_reg_write(ah, AR5K_SLEEP_CTL_SLE_SLP, |
| 537 | AR5K_SLEEP_CTL); |
| 538 | |
| 539 | staid |= AR5K_STA_ID1_PWR_SV; |
| 540 | break; |
| 541 | |
| 542 | case AR5K_PM_AWAKE: |
| 543 | |
| 544 | staid &= ~AR5K_STA_ID1_PWR_SV; |
| 545 | |
| 546 | if (!set_chip) |
| 547 | goto commit; |
| 548 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 549 | data = ath5k_hw_reg_read(ah, AR5K_SLEEP_CTL); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 550 | |
| 551 | /* If card is down we 'll get 0xffff... so we |
| 552 | * need to clean this up before we write the register |
| 553 | */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 554 | if (data & 0xffc00000) |
| 555 | data = 0; |
| 556 | else |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 557 | /* Preserve sleep duration etc */ |
| 558 | data = data & ~AR5K_SLEEP_CTL_SLE; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 559 | |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 560 | ath5k_hw_reg_write(ah, data | AR5K_SLEEP_CTL_SLE_WAKE, |
| 561 | AR5K_SLEEP_CTL); |
Nick Kossifidis | 1846ac3 | 2011-11-25 20:40:24 +0200 | [diff] [blame] | 562 | usleep_range(15, 20); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 563 | |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 564 | for (i = 200; i > 0; i--) { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 565 | /* Check if the chip did wake up */ |
| 566 | if ((ath5k_hw_reg_read(ah, AR5K_PCICFG) & |
| 567 | AR5K_PCICFG_SPWR_DN) == 0) |
| 568 | break; |
| 569 | |
| 570 | /* Wait a bit and retry */ |
Nick Kossifidis | 1846ac3 | 2011-11-25 20:40:24 +0200 | [diff] [blame] | 571 | usleep_range(50, 75); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 572 | ath5k_hw_reg_write(ah, data | AR5K_SLEEP_CTL_SLE_WAKE, |
| 573 | AR5K_SLEEP_CTL); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | /* Fail if the chip didn't wake up */ |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 577 | if (i == 0) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 578 | return -EIO; |
| 579 | |
| 580 | break; |
| 581 | |
| 582 | default: |
| 583 | return -EINVAL; |
| 584 | } |
| 585 | |
| 586 | commit: |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 587 | ath5k_hw_reg_write(ah, staid, AR5K_STA_ID1); |
| 588 | |
| 589 | return 0; |
| 590 | } |
| 591 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 592 | /** |
| 593 | * ath5k_hw_on_hold() - Put device on hold |
| 594 | * @ah: The &struct ath5k_hw |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 595 | * |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 596 | * Put MAC and Baseband on warm reset and keep that state |
| 597 | * (don't clean sleep control register). After this MAC |
| 598 | * and Baseband are disabled and a full reset is needed |
| 599 | * to come back. This way we save as much power as possible |
Bob Copeland | 8801df8 | 2010-08-21 16:39:02 -0400 | [diff] [blame] | 600 | * without putting the card on full sleep. |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 601 | * |
| 602 | * Returns 0 on success or -EIO on error |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 603 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 604 | int |
| 605 | ath5k_hw_on_hold(struct ath5k_hw *ah) |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 606 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 607 | struct pci_dev *pdev = ah->pdev; |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 608 | u32 bus_flags; |
| 609 | int ret; |
| 610 | |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 611 | if (ath5k_get_bus_type(ah) == ATH_AHB) |
| 612 | return 0; |
| 613 | |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 614 | /* Make sure device is awake */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 615 | ret = ath5k_hw_set_power_mode(ah, AR5K_PM_AWAKE, true, 0); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 616 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 617 | ATH5K_ERR(ah, "failed to wakeup the MAC Chip\n"); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 618 | return ret; |
| 619 | } |
| 620 | |
| 621 | /* |
| 622 | * Put chipset on warm reset... |
| 623 | * |
Bob Copeland | 8801df8 | 2010-08-21 16:39:02 -0400 | [diff] [blame] | 624 | * Note: putting PCI core on warm reset on PCI-E cards |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 625 | * results card to hang and always return 0xffff... so |
Pavel Roskin | 6a2a0e7 | 2011-07-09 00:17:51 -0400 | [diff] [blame] | 626 | * we ignore that flag for PCI-E cards. On PCI cards |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 627 | * this flag gets cleared after 64 PCI clocks. |
| 628 | */ |
Hauke Mehrtens | e98b06b | 2010-12-21 02:01:54 +0100 | [diff] [blame] | 629 | bus_flags = (pdev && pci_is_pcie(pdev)) ? 0 : AR5K_RESET_CTL_PCI; |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 630 | |
| 631 | if (ah->ah_version == AR5K_AR5210) { |
| 632 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | |
| 633 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA | |
| 634 | AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI); |
Nick Kossifidis | 1846ac3 | 2011-11-25 20:40:24 +0200 | [diff] [blame] | 635 | usleep_range(2000, 2500); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 636 | } else { |
| 637 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | |
| 638 | AR5K_RESET_CTL_BASEBAND | bus_flags); |
| 639 | } |
| 640 | |
| 641 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 642 | ATH5K_ERR(ah, "failed to put device on warm reset\n"); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 643 | return -EIO; |
| 644 | } |
| 645 | |
| 646 | /* ...wakeup again!*/ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 647 | ret = ath5k_hw_set_power_mode(ah, AR5K_PM_AWAKE, true, 0); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 648 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 649 | ATH5K_ERR(ah, "failed to put device on hold\n"); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 650 | return ret; |
| 651 | } |
| 652 | |
| 653 | return ret; |
| 654 | } |
| 655 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 656 | /** |
| 657 | * ath5k_hw_nic_wakeup() - Force card out of sleep |
| 658 | * @ah: The &struct ath5k_hw |
| 659 | * @channel: The &struct ieee80211_channel |
| 660 | * |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 661 | * Bring up MAC + PHY Chips and program PLL |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 662 | * NOTE: Channel is NULL for the initial wakeup. |
| 663 | * |
| 664 | * Returns 0 on success, -EIO on hw failure or -EINVAL for false channel infos |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 665 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 666 | int |
| 667 | ath5k_hw_nic_wakeup(struct ath5k_hw *ah, struct ieee80211_channel *channel) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 668 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 669 | struct pci_dev *pdev = ah->pdev; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 670 | u32 turbo, mode, clock, bus_flags; |
| 671 | int ret; |
| 672 | |
| 673 | turbo = 0; |
| 674 | mode = 0; |
| 675 | clock = 0; |
| 676 | |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 677 | if ((ath5k_get_bus_type(ah) != ATH_AHB) || channel) { |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 678 | /* Wakeup the device */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 679 | ret = ath5k_hw_set_power_mode(ah, AR5K_PM_AWAKE, true, 0); |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 680 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 681 | ATH5K_ERR(ah, "failed to wakeup the MAC Chip\n"); |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 682 | return ret; |
| 683 | } |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 684 | } |
| 685 | |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 686 | /* |
| 687 | * Put chipset on warm reset... |
| 688 | * |
Bob Copeland | 8801df8 | 2010-08-21 16:39:02 -0400 | [diff] [blame] | 689 | * Note: putting PCI core on warm reset on PCI-E cards |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 690 | * results card to hang and always return 0xffff... so |
Pavel Roskin | 6a2a0e7 | 2011-07-09 00:17:51 -0400 | [diff] [blame] | 691 | * we ignore that flag for PCI-E cards. On PCI cards |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 692 | * this flag gets cleared after 64 PCI clocks. |
| 693 | */ |
Hauke Mehrtens | e98b06b | 2010-12-21 02:01:54 +0100 | [diff] [blame] | 694 | bus_flags = (pdev && pci_is_pcie(pdev)) ? 0 : AR5K_RESET_CTL_PCI; |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 695 | |
| 696 | if (ah->ah_version == AR5K_AR5210) { |
| 697 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | |
| 698 | AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_DMA | |
| 699 | AR5K_RESET_CTL_PHY | AR5K_RESET_CTL_PCI); |
Nick Kossifidis | 1846ac3 | 2011-11-25 20:40:24 +0200 | [diff] [blame] | 700 | usleep_range(2000, 2500); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 701 | } else { |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 702 | if (ath5k_get_bus_type(ah) == ATH_AHB) |
| 703 | ret = ath5k_hw_wisoc_reset(ah, AR5K_RESET_CTL_PCU | |
| 704 | AR5K_RESET_CTL_BASEBAND); |
| 705 | else |
| 706 | ret = ath5k_hw_nic_reset(ah, AR5K_RESET_CTL_PCU | |
| 707 | AR5K_RESET_CTL_BASEBAND | bus_flags); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 711 | ATH5K_ERR(ah, "failed to reset the MAC Chip\n"); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 712 | return -EIO; |
| 713 | } |
| 714 | |
| 715 | /* ...wakeup again!...*/ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 716 | ret = ath5k_hw_set_power_mode(ah, AR5K_PM_AWAKE, true, 0); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 717 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 718 | ATH5K_ERR(ah, "failed to resume the MAC Chip\n"); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 719 | return ret; |
| 720 | } |
| 721 | |
Pavel Roskin | 6a2a0e7 | 2011-07-09 00:17:51 -0400 | [diff] [blame] | 722 | /* ...reset configuration register on Wisoc ... |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 723 | * ...clear reset control register and pull device out of |
| 724 | * warm reset on others */ |
| 725 | if (ath5k_get_bus_type(ah) == ATH_AHB) |
| 726 | ret = ath5k_hw_wisoc_reset(ah, 0); |
| 727 | else |
| 728 | ret = ath5k_hw_nic_reset(ah, 0); |
| 729 | |
| 730 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 731 | ATH5K_ERR(ah, "failed to warm reset the MAC Chip\n"); |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 732 | return -EIO; |
| 733 | } |
| 734 | |
| 735 | /* On initialization skip PLL programming since we don't have |
| 736 | * a channel / mode set yet */ |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 737 | if (!channel) |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 738 | return 0; |
| 739 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 740 | if (ah->ah_version != AR5K_AR5210) { |
| 741 | /* |
| 742 | * Get channel mode flags |
| 743 | */ |
| 744 | |
| 745 | if (ah->ah_radio >= AR5K_RF5112) { |
| 746 | mode = AR5K_PHY_MODE_RAD_RF5112; |
| 747 | clock = AR5K_PHY_PLL_RF5112; |
| 748 | } else { |
| 749 | mode = AR5K_PHY_MODE_RAD_RF5111; /*Zero*/ |
| 750 | clock = AR5K_PHY_PLL_RF5111; /*Zero*/ |
| 751 | } |
| 752 | |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 753 | if (channel->band == IEEE80211_BAND_2GHZ) { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 754 | mode |= AR5K_PHY_MODE_FREQ_2GHZ; |
| 755 | clock |= AR5K_PHY_PLL_44MHZ; |
| 756 | |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 757 | if (channel->hw_value == AR5K_MODE_11B) { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 758 | mode |= AR5K_PHY_MODE_MOD_CCK; |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 759 | } else { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 760 | /* XXX Dynamic OFDM/CCK is not supported by the |
| 761 | * AR5211 so we set MOD_OFDM for plain g (no |
| 762 | * CCK headers) operation. We need to test |
| 763 | * this, 5211 might support ofdm-only g after |
| 764 | * all, there are also initial register values |
Nick Kossifidis | f08fbf6 | 2010-11-23 21:33:22 +0200 | [diff] [blame] | 765 | * in the code for g mode (see initvals.c). |
| 766 | */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 767 | if (ah->ah_version == AR5K_AR5211) |
| 768 | mode |= AR5K_PHY_MODE_MOD_OFDM; |
| 769 | else |
| 770 | mode |= AR5K_PHY_MODE_MOD_DYN; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 771 | } |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 772 | } else if (channel->band == IEEE80211_BAND_5GHZ) { |
| 773 | mode |= (AR5K_PHY_MODE_FREQ_5GHZ | |
| 774 | AR5K_PHY_MODE_MOD_OFDM); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 775 | |
Nick Kossifidis | f08fbf6 | 2010-11-23 21:33:22 +0200 | [diff] [blame] | 776 | /* Different PLL setting for 5413 */ |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 777 | if (ah->ah_radio == AR5K_RF5413) |
Pavel Roskin | 807e373 | 2009-03-27 17:47:27 -0400 | [diff] [blame] | 778 | clock = AR5K_PHY_PLL_40MHZ_5413; |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 779 | else |
| 780 | clock |= AR5K_PHY_PLL_40MHZ; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 781 | } else { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 782 | ATH5K_ERR(ah, "invalid radio frequency mode\n"); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 783 | return -EINVAL; |
| 784 | } |
| 785 | |
Nick Kossifidis | f08fbf6 | 2010-11-23 21:33:22 +0200 | [diff] [blame] | 786 | /*XXX: Can bwmode be used with dynamic mode ? |
| 787 | * (I don't think it supports 44MHz) */ |
Pavel Roskin | 6a2a0e7 | 2011-07-09 00:17:51 -0400 | [diff] [blame] | 788 | /* On 2425 initvals TURBO_SHORT is not present */ |
Nick Kossifidis | f08fbf6 | 2010-11-23 21:33:22 +0200 | [diff] [blame] | 789 | if (ah->ah_bwmode == AR5K_BWMODE_40MHZ) { |
| 790 | turbo = AR5K_PHY_TURBO_MODE | |
| 791 | (ah->ah_radio == AR5K_RF2425) ? 0 : |
| 792 | AR5K_PHY_TURBO_SHORT; |
| 793 | } else if (ah->ah_bwmode != AR5K_BWMODE_DEFAULT) { |
| 794 | if (ah->ah_radio == AR5K_RF5413) { |
| 795 | mode |= (ah->ah_bwmode == AR5K_BWMODE_10MHZ) ? |
| 796 | AR5K_PHY_MODE_HALF_RATE : |
| 797 | AR5K_PHY_MODE_QUARTER_RATE; |
| 798 | } else if (ah->ah_version == AR5K_AR5212) { |
| 799 | clock |= (ah->ah_bwmode == AR5K_BWMODE_10MHZ) ? |
| 800 | AR5K_PHY_PLL_HALF_RATE : |
| 801 | AR5K_PHY_PLL_QUARTER_RATE; |
| 802 | } |
| 803 | } |
| 804 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 805 | } else { /* Reset the device */ |
| 806 | |
| 807 | /* ...enable Atheros turbo mode if requested */ |
Nick Kossifidis | f08fbf6 | 2010-11-23 21:33:22 +0200 | [diff] [blame] | 808 | if (ah->ah_bwmode == AR5K_BWMODE_40MHZ) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 809 | ath5k_hw_reg_write(ah, AR5K_PHY_TURBO_MODE, |
| 810 | AR5K_PHY_TURBO); |
| 811 | } |
| 812 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 813 | if (ah->ah_version != AR5K_AR5210) { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 814 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 815 | /* ...update PLL if needed */ |
| 816 | if (ath5k_hw_reg_read(ah, AR5K_PHY_PLL) != clock) { |
| 817 | ath5k_hw_reg_write(ah, clock, AR5K_PHY_PLL); |
Nick Kossifidis | 1846ac3 | 2011-11-25 20:40:24 +0200 | [diff] [blame] | 818 | usleep_range(300, 350); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 819 | } |
| 820 | |
| 821 | /* ...set the PHY operating mode */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 822 | ath5k_hw_reg_write(ah, mode, AR5K_PHY_MODE); |
| 823 | ath5k_hw_reg_write(ah, turbo, AR5K_PHY_TURBO); |
| 824 | } |
| 825 | |
| 826 | return 0; |
| 827 | } |
| 828 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 829 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 830 | /**************************************\ |
| 831 | * Post-initvals register modifications * |
| 832 | \**************************************/ |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 833 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 834 | /** |
| 835 | * ath5k_hw_tweak_initval_settings() - Tweak initial settings |
| 836 | * @ah: The &struct ath5k_hw |
| 837 | * @channel: The &struct ieee80211_channel |
| 838 | * |
| 839 | * Some settings are not handled on initvals, e.g. bwmode |
| 840 | * settings, some phy settings, workarounds etc that in general |
| 841 | * don't fit anywhere else or are too small to introduce a separate |
| 842 | * function for each one. So we have this function to handle |
| 843 | * them all during reset and complete card's initialization. |
| 844 | */ |
| 845 | static void |
| 846 | ath5k_hw_tweak_initval_settings(struct ath5k_hw *ah, |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 847 | struct ieee80211_channel *channel) |
| 848 | { |
| 849 | if (ah->ah_version == AR5K_AR5212 && |
| 850 | ah->ah_phy_revision >= AR5K_SREV_PHY_5212A) { |
| 851 | |
| 852 | /* Setup ADC control */ |
| 853 | ath5k_hw_reg_write(ah, |
| 854 | (AR5K_REG_SM(2, |
| 855 | AR5K_PHY_ADC_CTL_INBUFGAIN_OFF) | |
| 856 | AR5K_REG_SM(2, |
| 857 | AR5K_PHY_ADC_CTL_INBUFGAIN_ON) | |
| 858 | AR5K_PHY_ADC_CTL_PWD_DAC_OFF | |
| 859 | AR5K_PHY_ADC_CTL_PWD_ADC_OFF), |
| 860 | AR5K_PHY_ADC_CTL); |
| 861 | |
| 862 | |
| 863 | |
| 864 | /* Disable barker RSSI threshold */ |
| 865 | AR5K_REG_DISABLE_BITS(ah, AR5K_PHY_DAG_CCK_CTL, |
| 866 | AR5K_PHY_DAG_CCK_CTL_EN_RSSI_THR); |
| 867 | |
| 868 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DAG_CCK_CTL, |
| 869 | AR5K_PHY_DAG_CCK_CTL_RSSI_THR, 2); |
| 870 | |
| 871 | /* Set the mute mask */ |
| 872 | ath5k_hw_reg_write(ah, 0x0000000f, AR5K_SEQ_MASK); |
| 873 | } |
| 874 | |
| 875 | /* Clear PHY_BLUETOOTH to allow RX_CLEAR line debug */ |
| 876 | if (ah->ah_phy_revision >= AR5K_SREV_PHY_5212B) |
| 877 | ath5k_hw_reg_write(ah, 0, AR5K_PHY_BLUETOOTH); |
| 878 | |
| 879 | /* Enable DCU double buffering */ |
| 880 | if (ah->ah_phy_revision > AR5K_SREV_PHY_5212B) |
| 881 | AR5K_REG_DISABLE_BITS(ah, AR5K_TXCFG, |
| 882 | AR5K_TXCFG_DCU_DBL_BUF_DIS); |
| 883 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 884 | /* Set fast ADC */ |
| 885 | if ((ah->ah_radio == AR5K_RF5413) || |
Felix Fietkau | 4cebb34 | 2010-12-02 10:27:21 +0100 | [diff] [blame] | 886 | (ah->ah_radio == AR5K_RF2317) || |
| 887 | (ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4))) { |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 888 | u32 fast_adc = true; |
| 889 | |
| 890 | if (channel->center_freq == 2462 || |
| 891 | channel->center_freq == 2467) |
| 892 | fast_adc = 0; |
| 893 | |
| 894 | /* Only update if needed */ |
| 895 | if (ath5k_hw_reg_read(ah, AR5K_PHY_FAST_ADC) != fast_adc) |
| 896 | ath5k_hw_reg_write(ah, fast_adc, |
| 897 | AR5K_PHY_FAST_ADC); |
| 898 | } |
| 899 | |
| 900 | /* Fix for first revision of the RF5112 RF chipset */ |
| 901 | if (ah->ah_radio == AR5K_RF5112 && |
| 902 | ah->ah_radio_5ghz_revision < |
| 903 | AR5K_SREV_RAD_5112A) { |
| 904 | u32 data; |
| 905 | ath5k_hw_reg_write(ah, AR5K_PHY_CCKTXCTL_WORLD, |
| 906 | AR5K_PHY_CCKTXCTL); |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 907 | if (channel->band == IEEE80211_BAND_5GHZ) |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 908 | data = 0xffb81020; |
| 909 | else |
| 910 | data = 0xffb80d20; |
| 911 | ath5k_hw_reg_write(ah, data, AR5K_PHY_FRAME_CTL); |
| 912 | } |
| 913 | |
Nick Kossifidis | 325089a | 2010-11-23 21:02:20 +0200 | [diff] [blame] | 914 | if (ah->ah_mac_srev < AR5K_SREV_AR5211) { |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 915 | /* Clear QCU/DCU clock gating register */ |
| 916 | ath5k_hw_reg_write(ah, 0, AR5K_QCUDCU_CLKGT); |
| 917 | /* Set DAC/ADC delays */ |
Nick Kossifidis | 325089a | 2010-11-23 21:02:20 +0200 | [diff] [blame] | 918 | ath5k_hw_reg_write(ah, AR5K_PHY_SCAL_32MHZ_5311, |
| 919 | AR5K_PHY_SCAL); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 920 | /* Enable PCU FIFO corruption ECO */ |
| 921 | AR5K_REG_ENABLE_BITS(ah, AR5K_DIAG_SW_5211, |
| 922 | AR5K_DIAG_SW_ECO_ENABLE); |
| 923 | } |
Nick Kossifidis | b405086 | 2010-11-23 21:04:43 +0200 | [diff] [blame] | 924 | |
| 925 | if (ah->ah_bwmode) { |
| 926 | /* Increase PHY switch and AGC settling time |
| 927 | * on turbo mode (ath5k_hw_commit_eeprom_settings |
| 928 | * will override settling time if available) */ |
| 929 | if (ah->ah_bwmode == AR5K_BWMODE_40MHZ) { |
| 930 | |
| 931 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING, |
| 932 | AR5K_PHY_SETTLING_AGC, |
| 933 | AR5K_AGC_SETTLING_TURBO); |
| 934 | |
| 935 | /* XXX: Initvals indicate we only increase |
| 936 | * switch time on AR5212, 5211 and 5210 |
| 937 | * only change agc time (bug?) */ |
| 938 | if (ah->ah_version == AR5K_AR5212) |
| 939 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING, |
| 940 | AR5K_PHY_SETTLING_SWITCH, |
| 941 | AR5K_SWITCH_SETTLING_TURBO); |
| 942 | |
| 943 | if (ah->ah_version == AR5K_AR5210) { |
| 944 | /* Set Frame Control Register */ |
| 945 | ath5k_hw_reg_write(ah, |
| 946 | (AR5K_PHY_FRAME_CTL_INI | |
| 947 | AR5K_PHY_TURBO_MODE | |
| 948 | AR5K_PHY_TURBO_SHORT | 0x2020), |
| 949 | AR5K_PHY_FRAME_CTL_5210); |
| 950 | } |
| 951 | /* On 5413 PHY force window length for half/quarter rate*/ |
| 952 | } else if ((ah->ah_mac_srev >= AR5K_SREV_AR5424) && |
| 953 | (ah->ah_mac_srev <= AR5K_SREV_AR5414)) { |
| 954 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_FRAME_CTL_5211, |
| 955 | AR5K_PHY_FRAME_CTL_WIN_LEN, |
| 956 | 3); |
| 957 | } |
| 958 | } else if (ah->ah_version == AR5K_AR5210) { |
| 959 | /* Set Frame Control Register for normal operation */ |
| 960 | ath5k_hw_reg_write(ah, (AR5K_PHY_FRAME_CTL_INI | 0x1020), |
| 961 | AR5K_PHY_FRAME_CTL_5210); |
| 962 | } |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 963 | } |
| 964 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 965 | /** |
| 966 | * ath5k_hw_commit_eeprom_settings() - Commit settings from EEPROM |
| 967 | * @ah: The &struct ath5k_hw |
| 968 | * @channel: The &struct ieee80211_channel |
| 969 | * |
| 970 | * Use settings stored on EEPROM to properly initialize the card |
| 971 | * based on various infos and per-mode calibration data. |
| 972 | */ |
| 973 | static void |
| 974 | ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah, |
Bruno Randolf | 0207c0c | 2010-12-21 17:30:43 +0900 | [diff] [blame] | 975 | struct ieee80211_channel *channel) |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 976 | { |
| 977 | struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom; |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 978 | s16 cck_ofdm_pwr_delta; |
Bruno Randolf | 0207c0c | 2010-12-21 17:30:43 +0900 | [diff] [blame] | 979 | u8 ee_mode; |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 980 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 981 | /* TODO: Add support for AR5210 EEPROM */ |
| 982 | if (ah->ah_version == AR5K_AR5210) |
| 983 | return; |
| 984 | |
Bruno Randolf | 0207c0c | 2010-12-21 17:30:43 +0900 | [diff] [blame] | 985 | ee_mode = ath5k_eeprom_mode_from_channel(channel); |
| 986 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 987 | /* Adjust power delta for channel 14 */ |
| 988 | if (channel->center_freq == 2484) |
| 989 | cck_ofdm_pwr_delta = |
| 990 | ((ee->ee_cck_ofdm_power_delta - |
| 991 | ee->ee_scaled_cck_delta) * 2) / 10; |
| 992 | else |
| 993 | cck_ofdm_pwr_delta = |
| 994 | (ee->ee_cck_ofdm_power_delta * 2) / 10; |
| 995 | |
| 996 | /* Set CCK to OFDM power delta on tx power |
| 997 | * adjustment register */ |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 998 | if (ah->ah_phy_revision >= AR5K_SREV_PHY_5212A) { |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 999 | if (channel->hw_value == AR5K_MODE_11G) |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1000 | ath5k_hw_reg_write(ah, |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 1001 | AR5K_REG_SM((ee->ee_cck_ofdm_gain_delta * -1), |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1002 | AR5K_PHY_TX_PWR_ADJ_CCK_GAIN_DELTA) | |
| 1003 | AR5K_REG_SM((cck_ofdm_pwr_delta * -1), |
| 1004 | AR5K_PHY_TX_PWR_ADJ_CCK_PCDAC_INDEX), |
| 1005 | AR5K_PHY_TX_PWR_ADJ); |
| 1006 | else |
| 1007 | ath5k_hw_reg_write(ah, 0, AR5K_PHY_TX_PWR_ADJ); |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 1008 | } else { |
| 1009 | /* For older revs we scale power on sw during tx power |
| 1010 | * setup */ |
| 1011 | ah->ah_txpower.txp_cck_ofdm_pwr_delta = cck_ofdm_pwr_delta; |
| 1012 | ah->ah_txpower.txp_cck_ofdm_gainf_delta = |
| 1013 | ee->ee_cck_ofdm_gain_delta; |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1014 | } |
| 1015 | |
Bruno Randolf | 0ca7402 | 2010-06-07 13:11:30 +0900 | [diff] [blame] | 1016 | /* XXX: necessary here? is called from ath5k_hw_set_antenna_mode() |
| 1017 | * too */ |
| 1018 | ath5k_hw_set_antenna_switch(ah, ee_mode); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1019 | |
| 1020 | /* Noise floor threshold */ |
| 1021 | ath5k_hw_reg_write(ah, |
| 1022 | AR5K_PHY_NF_SVAL(ee->ee_noise_floor_thr[ee_mode]), |
| 1023 | AR5K_PHY_NFTHRES); |
| 1024 | |
Nick Kossifidis | acb091d | 2010-11-23 21:49:53 +0200 | [diff] [blame] | 1025 | if ((ah->ah_bwmode == AR5K_BWMODE_40MHZ) && |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1026 | (ah->ah_ee_version >= AR5K_EEPROM_VERSION_5_0)) { |
| 1027 | /* Switch settling time (Turbo) */ |
| 1028 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING, |
| 1029 | AR5K_PHY_SETTLING_SWITCH, |
| 1030 | ee->ee_switch_settling_turbo[ee_mode]); |
| 1031 | |
| 1032 | /* Tx/Rx attenuation (Turbo) */ |
| 1033 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN, |
| 1034 | AR5K_PHY_GAIN_TXRX_ATTEN, |
| 1035 | ee->ee_atn_tx_rx_turbo[ee_mode]); |
| 1036 | |
| 1037 | /* ADC/PGA desired size (Turbo) */ |
| 1038 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE, |
| 1039 | AR5K_PHY_DESIRED_SIZE_ADC, |
| 1040 | ee->ee_adc_desired_size_turbo[ee_mode]); |
| 1041 | |
| 1042 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE, |
| 1043 | AR5K_PHY_DESIRED_SIZE_PGA, |
| 1044 | ee->ee_pga_desired_size_turbo[ee_mode]); |
| 1045 | |
| 1046 | /* Tx/Rx margin (Turbo) */ |
| 1047 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN_2GHZ, |
| 1048 | AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX, |
| 1049 | ee->ee_margin_tx_rx_turbo[ee_mode]); |
| 1050 | |
| 1051 | } else { |
| 1052 | /* Switch settling time */ |
| 1053 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_SETTLING, |
| 1054 | AR5K_PHY_SETTLING_SWITCH, |
| 1055 | ee->ee_switch_settling[ee_mode]); |
| 1056 | |
| 1057 | /* Tx/Rx attenuation */ |
| 1058 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN, |
| 1059 | AR5K_PHY_GAIN_TXRX_ATTEN, |
| 1060 | ee->ee_atn_tx_rx[ee_mode]); |
| 1061 | |
| 1062 | /* ADC/PGA desired size */ |
| 1063 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE, |
| 1064 | AR5K_PHY_DESIRED_SIZE_ADC, |
| 1065 | ee->ee_adc_desired_size[ee_mode]); |
| 1066 | |
| 1067 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_DESIRED_SIZE, |
| 1068 | AR5K_PHY_DESIRED_SIZE_PGA, |
| 1069 | ee->ee_pga_desired_size[ee_mode]); |
| 1070 | |
| 1071 | /* Tx/Rx margin */ |
| 1072 | if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_4_1) |
| 1073 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_GAIN_2GHZ, |
| 1074 | AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX, |
| 1075 | ee->ee_margin_tx_rx[ee_mode]); |
| 1076 | } |
| 1077 | |
| 1078 | /* XPA delays */ |
| 1079 | ath5k_hw_reg_write(ah, |
| 1080 | (ee->ee_tx_end2xpa_disable[ee_mode] << 24) | |
| 1081 | (ee->ee_tx_end2xpa_disable[ee_mode] << 16) | |
| 1082 | (ee->ee_tx_frm2xpa_enable[ee_mode] << 8) | |
| 1083 | (ee->ee_tx_frm2xpa_enable[ee_mode]), AR5K_PHY_RF_CTL4); |
| 1084 | |
| 1085 | /* XLNA delay */ |
| 1086 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_RF_CTL3, |
| 1087 | AR5K_PHY_RF_CTL3_TXE2XLNA_ON, |
| 1088 | ee->ee_tx_end2xlna_enable[ee_mode]); |
| 1089 | |
| 1090 | /* Thresh64 (ANI) */ |
| 1091 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_NF, |
| 1092 | AR5K_PHY_NF_THRESH62, |
| 1093 | ee->ee_thr_62[ee_mode]); |
| 1094 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1095 | /* False detect backoff for channels |
| 1096 | * that have spur noise. Write the new |
| 1097 | * cyclic power RSSI threshold. */ |
| 1098 | if (ath5k_hw_chan_has_spur_noise(ah, channel)) |
| 1099 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_OFDM_SELFCORR, |
| 1100 | AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1, |
| 1101 | AR5K_INIT_CYCRSSI_THR1 + |
| 1102 | ee->ee_false_detect[ee_mode]); |
| 1103 | else |
| 1104 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_OFDM_SELFCORR, |
| 1105 | AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1, |
| 1106 | AR5K_INIT_CYCRSSI_THR1); |
| 1107 | |
Bruno Randolf | 5f13bfa | 2010-03-09 16:56:10 +0900 | [diff] [blame] | 1108 | /* I/Q correction (set enable bit last to match HAL sources) */ |
| 1109 | /* TODO: Per channel i/q infos ? */ |
| 1110 | if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_4_0) { |
| 1111 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_I_COFF, |
| 1112 | ee->ee_i_cal[ee_mode]); |
| 1113 | AR5K_REG_WRITE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_Q_Q_COFF, |
| 1114 | ee->ee_q_cal[ee_mode]); |
| 1115 | AR5K_REG_ENABLE_BITS(ah, AR5K_PHY_IQ, AR5K_PHY_IQ_CORR_ENABLE); |
| 1116 | } |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1117 | |
| 1118 | /* Heavy clipping -disable for now */ |
| 1119 | if (ah->ah_ee_version >= AR5K_EEPROM_VERSION_5_1) |
| 1120 | ath5k_hw_reg_write(ah, 0, AR5K_PHY_HEAVY_CLIP_ENABLE); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1121 | } |
| 1122 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1123 | |
| 1124 | /*********************\ |
| 1125 | * Main reset function * |
| 1126 | \*********************/ |
| 1127 | |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 1128 | /** |
| 1129 | * ath5k_hw_reset() - The main reset function |
| 1130 | * @ah: The &struct ath5k_hw |
| 1131 | * @op_mode: One of enum nl80211_iftype |
| 1132 | * @channel: The &struct ieee80211_channel |
| 1133 | * @fast: Enable fast channel switching |
| 1134 | * @skip_pcu: Skip pcu initialization |
| 1135 | * |
| 1136 | * This is the function we call each time we want to (re)initialize the |
| 1137 | * card and pass new settings to hw. We also call it when hw runs into |
| 1138 | * trouble to make it come back to a working state. |
| 1139 | * |
| 1140 | * Returns 0 on success, -EINVAL on false op_mode or channel infos, or -EIO |
| 1141 | * on failure. |
| 1142 | */ |
| 1143 | int |
| 1144 | ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode, |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1145 | struct ieee80211_channel *channel, bool fast, bool skip_pcu) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1146 | { |
Nick Kossifidis | c2b0ebe | 2010-11-23 21:42:22 +0200 | [diff] [blame] | 1147 | u32 s_seq[10], s_led[3], tsf_up, tsf_lo; |
Bruno Randolf | 0207c0c | 2010-12-21 17:30:43 +0900 | [diff] [blame] | 1148 | u8 mode; |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1149 | int i, ret; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1150 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1151 | tsf_up = 0; |
| 1152 | tsf_lo = 0; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1153 | mode = 0; |
| 1154 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1155 | /* |
| 1156 | * Sanity check for fast flag |
| 1157 | * Fast channel change only available |
| 1158 | * on AR2413/AR5413. |
| 1159 | */ |
| 1160 | if (fast && (ah->ah_radio != AR5K_RF2413) && |
| 1161 | (ah->ah_radio != AR5K_RF5413)) |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 1162 | fast = false; |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1163 | |
| 1164 | /* Disable sleep clock operation |
| 1165 | * to avoid register access delay on certain |
| 1166 | * PHY registers */ |
| 1167 | if (ah->ah_version == AR5K_AR5212) |
| 1168 | ath5k_hw_set_sleep_clock(ah, false); |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 1169 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1170 | /* |
Nick Kossifidis | e088f23 | 2010-11-23 20:43:18 +0200 | [diff] [blame] | 1171 | * Stop PCU |
| 1172 | */ |
| 1173 | ath5k_hw_stop_rx_pcu(ah); |
| 1174 | |
| 1175 | /* |
Nick Kossifidis | d41174f | 2010-11-23 20:41:15 +0200 | [diff] [blame] | 1176 | * Stop DMA |
| 1177 | * |
| 1178 | * Note: If DMA didn't stop continue |
| 1179 | * since only a reset will fix it. |
| 1180 | */ |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1181 | ret = ath5k_hw_dma_stop(ah); |
| 1182 | |
| 1183 | /* RF Bus grant won't work if we have pending |
| 1184 | * frames */ |
| 1185 | if (ret && fast) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 1186 | ATH5K_DBG(ah, ATH5K_DEBUG_RESET, |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1187 | "DMA didn't stop, falling back to normal reset\n"); |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 1188 | fast = false; |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1189 | /* Non fatal, just continue with |
| 1190 | * normal reset */ |
| 1191 | ret = 0; |
| 1192 | } |
| 1193 | |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 1194 | mode = channel->hw_value; |
| 1195 | switch (mode) { |
| 1196 | case AR5K_MODE_11A: |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1197 | break; |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 1198 | case AR5K_MODE_11G: |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1199 | if (ah->ah_version <= AR5K_AR5211) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 1200 | ATH5K_ERR(ah, |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1201 | "G mode not available on 5210/5211"); |
| 1202 | return -EINVAL; |
| 1203 | } |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1204 | break; |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 1205 | case AR5K_MODE_11B: |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1206 | if (ah->ah_version < AR5K_AR5211) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 1207 | ATH5K_ERR(ah, |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1208 | "B mode not available on 5210"); |
| 1209 | return -EINVAL; |
| 1210 | } |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1211 | break; |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1212 | default: |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 1213 | ATH5K_ERR(ah, |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1214 | "invalid channel: %d\n", channel->center_freq); |
| 1215 | return -EINVAL; |
| 1216 | } |
| 1217 | |
| 1218 | /* |
| 1219 | * If driver requested fast channel change and DMA has stopped |
| 1220 | * go on. If it fails continue with a normal reset. |
| 1221 | */ |
| 1222 | if (fast) { |
Bruno Randolf | 0207c0c | 2010-12-21 17:30:43 +0900 | [diff] [blame] | 1223 | ret = ath5k_hw_phy_init(ah, channel, mode, true); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1224 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 1225 | ATH5K_DBG(ah, ATH5K_DEBUG_RESET, |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1226 | "fast chan change failed, falling back to normal reset\n"); |
| 1227 | /* Non fatal, can happen eg. |
| 1228 | * on mode change */ |
| 1229 | ret = 0; |
Nick Kossifidis | a99168e | 2011-06-02 03:09:48 +0300 | [diff] [blame] | 1230 | } else { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 1231 | ATH5K_DBG(ah, ATH5K_DEBUG_RESET, |
Nick Kossifidis | a99168e | 2011-06-02 03:09:48 +0300 | [diff] [blame] | 1232 | "fast chan change successful\n"); |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1233 | return 0; |
Nick Kossifidis | a99168e | 2011-06-02 03:09:48 +0300 | [diff] [blame] | 1234 | } |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1235 | } |
Nick Kossifidis | d41174f | 2010-11-23 20:41:15 +0200 | [diff] [blame] | 1236 | |
| 1237 | /* |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1238 | * Save some registers before a reset |
| 1239 | */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1240 | if (ah->ah_version != AR5K_AR5210) { |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1241 | /* |
| 1242 | * Save frame sequence count |
| 1243 | * For revs. after Oahu, only save |
| 1244 | * seq num for DCU 0 (Global seq num) |
| 1245 | */ |
| 1246 | if (ah->ah_mac_srev < AR5K_SREV_AR5211) { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1247 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1248 | for (i = 0; i < 10; i++) |
| 1249 | s_seq[i] = ath5k_hw_reg_read(ah, |
| 1250 | AR5K_QUEUE_DCU_SEQNUM(i)); |
| 1251 | |
| 1252 | } else { |
| 1253 | s_seq[0] = ath5k_hw_reg_read(ah, |
| 1254 | AR5K_QUEUE_DCU_SEQNUM(0)); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1255 | } |
| 1256 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1257 | /* TSF accelerates on AR5211 during reset |
| 1258 | * As a workaround save it here and restore |
| 1259 | * it later so that it's back in time after |
| 1260 | * reset. This way it'll get re-synced on the |
| 1261 | * next beacon without breaking ad-hoc. |
| 1262 | * |
| 1263 | * On AR5212 TSF is almost preserved across a |
| 1264 | * reset so it stays back in time anyway and |
| 1265 | * we don't have to save/restore it. |
| 1266 | * |
| 1267 | * XXX: Since this breaks power saving we have |
| 1268 | * to disable power saving until we receive the |
| 1269 | * next beacon, so we can resync beacon timers */ |
| 1270 | if (ah->ah_version == AR5K_AR5211) { |
| 1271 | tsf_up = ath5k_hw_reg_read(ah, AR5K_TSF_U32); |
| 1272 | tsf_lo = ath5k_hw_reg_read(ah, AR5K_TSF_L32); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1273 | } |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1274 | } |
| 1275 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1276 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1277 | /*GPIOs*/ |
| 1278 | s_led[0] = ath5k_hw_reg_read(ah, AR5K_PCICFG) & |
| 1279 | AR5K_PCICFG_LEDSTATE; |
| 1280 | s_led[1] = ath5k_hw_reg_read(ah, AR5K_GPIOCR); |
| 1281 | s_led[2] = ath5k_hw_reg_read(ah, AR5K_GPIODO); |
Nick Kossifidis | a406c13 | 2009-02-09 06:08:51 +0200 | [diff] [blame] | 1282 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1283 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1284 | /* |
| 1285 | * Since we are going to write rf buffer |
| 1286 | * check if we have any pending gain_F |
| 1287 | * optimization settings |
| 1288 | */ |
| 1289 | if (ah->ah_version == AR5K_AR5212 && |
| 1290 | (ah->ah_radio <= AR5K_RF5112)) { |
| 1291 | if (!fast && ah->ah_rf_banks != NULL) |
| 1292 | ath5k_hw_gainf_calibrate(ah); |
| 1293 | } |
| 1294 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1295 | /* Wakeup the device */ |
Pavel Roskin | 32c2546 | 2011-07-23 09:29:09 -0400 | [diff] [blame] | 1296 | ret = ath5k_hw_nic_wakeup(ah, channel); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1297 | if (ret) |
| 1298 | return ret; |
| 1299 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1300 | /* PHY access enable */ |
| 1301 | if (ah->ah_mac_srev >= AR5K_SREV_AR5211) |
| 1302 | ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ, AR5K_PHY(0)); |
| 1303 | else |
| 1304 | ath5k_hw_reg_write(ah, AR5K_PHY_SHIFT_5GHZ | 0x40, |
| 1305 | AR5K_PHY(0)); |
| 1306 | |
| 1307 | /* Write initial settings */ |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1308 | ret = ath5k_hw_write_initvals(ah, mode, skip_pcu); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1309 | if (ret) |
| 1310 | return ret; |
| 1311 | |
Nick Kossifidis | c297560 | 2010-11-23 21:00:37 +0200 | [diff] [blame] | 1312 | /* Initialize core clock settings */ |
| 1313 | ath5k_hw_init_core_clock(ah); |
| 1314 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1315 | /* |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1316 | * Tweak initval settings for revised |
| 1317 | * chipsets and add some more config |
| 1318 | * bits |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1319 | */ |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1320 | ath5k_hw_tweak_initval_settings(ah, channel); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1321 | |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1322 | /* Commit values from EEPROM */ |
Bruno Randolf | 0207c0c | 2010-12-21 17:30:43 +0900 | [diff] [blame] | 1323 | ath5k_hw_commit_eeprom_settings(ah, channel); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1324 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1325 | |
| 1326 | /* |
| 1327 | * Restore saved values |
| 1328 | */ |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1329 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1330 | /* Seqnum, TSF */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1331 | if (ah->ah_version != AR5K_AR5210) { |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1332 | if (ah->ah_mac_srev < AR5K_SREV_AR5211) { |
| 1333 | for (i = 0; i < 10; i++) |
| 1334 | ath5k_hw_reg_write(ah, s_seq[i], |
| 1335 | AR5K_QUEUE_DCU_SEQNUM(i)); |
| 1336 | } else { |
| 1337 | ath5k_hw_reg_write(ah, s_seq[0], |
| 1338 | AR5K_QUEUE_DCU_SEQNUM(0)); |
| 1339 | } |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1340 | |
Nick Kossifidis | 8aec7af | 2010-11-23 21:39:28 +0200 | [diff] [blame] | 1341 | if (ah->ah_version == AR5K_AR5211) { |
| 1342 | ath5k_hw_reg_write(ah, tsf_up, AR5K_TSF_U32); |
| 1343 | ath5k_hw_reg_write(ah, tsf_lo, AR5K_TSF_L32); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1344 | } |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1345 | } |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1346 | |
| 1347 | /* Ledstate */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1348 | AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, s_led[0]); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1349 | |
| 1350 | /* Gpio settings */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1351 | ath5k_hw_reg_write(ah, s_led[1], AR5K_GPIOCR); |
| 1352 | ath5k_hw_reg_write(ah, s_led[2], AR5K_GPIODO); |
| 1353 | |
| 1354 | /* |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1355 | * Initialize PCU |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1356 | */ |
Nick Kossifidis | c47faa3 | 2011-11-25 20:40:25 +0200 | [diff] [blame] | 1357 | ath5k_hw_pcu_init(ah, op_mode); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1358 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1359 | /* |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1360 | * Initialize PHY |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1361 | */ |
Bruno Randolf | 0207c0c | 2010-12-21 17:30:43 +0900 | [diff] [blame] | 1362 | ret = ath5k_hw_phy_init(ah, channel, mode, false); |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1363 | if (ret) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 1364 | ATH5K_ERR(ah, |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1365 | "failed to initialize PHY (%i) !\n", ret); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1366 | return ret; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1367 | } |
| 1368 | |
| 1369 | /* |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1370 | * Configure QCUs/DCUs |
| 1371 | */ |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1372 | ret = ath5k_hw_init_queues(ah); |
| 1373 | if (ret) |
| 1374 | return ret; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1375 | |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1376 | |
| 1377 | /* |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1378 | * Initialize DMA/Interrupts |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1379 | */ |
Nick Kossifidis | 9320b5c | 2010-11-23 20:36:45 +0200 | [diff] [blame] | 1380 | ath5k_hw_dma_init(ah); |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1381 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1382 | |
Felix Fietkau | 6340211 | 2011-07-12 09:02:04 +0800 | [diff] [blame] | 1383 | /* |
| 1384 | * Enable 32KHz clock function for AR5212+ chips |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 1385 | * Set clocks to 32KHz operation and use an |
| 1386 | * external 32KHz crystal when sleeping if one |
Felix Fietkau | 6340211 | 2011-07-12 09:02:04 +0800 | [diff] [blame] | 1387 | * exists. |
| 1388 | * Disabled by default because it is also disabled in |
| 1389 | * other drivers and it is known to cause stability |
| 1390 | * issues on some devices |
| 1391 | */ |
| 1392 | if (ah->ah_use_32khz_clock && ah->ah_version == AR5K_AR5212 && |
Bruno Randolf | ccfe555 | 2010-03-09 16:55:38 +0900 | [diff] [blame] | 1393 | op_mode != NL80211_IFTYPE_AP) |
Bob Copeland | 5d6ce62 | 2010-01-20 23:51:03 -0500 | [diff] [blame] | 1394 | ath5k_hw_set_sleep_clock(ah, true); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1395 | |
| 1396 | /* |
Bruno Randolf | a3b980f | 2010-03-09 16:55:33 +0900 | [diff] [blame] | 1397 | * Disable beacons and reset the TSF |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1398 | */ |
Bruno Randolf | a3b980f | 2010-03-09 16:55:33 +0900 | [diff] [blame] | 1399 | AR5K_REG_DISABLE_BITS(ah, AR5K_BEACON, AR5K_BEACON_ENABLE); |
| 1400 | ath5k_hw_reset_tsf(ah); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1401 | return 0; |
| 1402 | } |