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 | * |
| 5 | * Permission to use, copy, modify, and distribute this software for any |
| 6 | * purpose with or without fee is hereby granted, provided that the above |
| 7 | * copyright notice and this permission notice appear in all copies. |
| 8 | * |
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | /*************************************\ |
| 20 | * Attach/Detach Functions and helpers * |
| 21 | \*************************************/ |
| 22 | |
| 23 | #include <linux/pci.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 25 | #include "ath5k.h" |
| 26 | #include "reg.h" |
| 27 | #include "debug.h" |
| 28 | #include "base.h" |
| 29 | |
| 30 | /** |
| 31 | * ath5k_hw_post - Power On Self Test helper function |
| 32 | * |
| 33 | * @ah: The &struct ath5k_hw |
| 34 | */ |
| 35 | static int ath5k_hw_post(struct ath5k_hw *ah) |
| 36 | { |
| 37 | |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 38 | static const u32 static_pattern[4] = { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 39 | 0x55555555, 0xaaaaaaaa, |
| 40 | 0x66666666, 0x99999999 |
| 41 | }; |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 42 | static const u16 regs[2] = { AR5K_STA_ID0, AR5K_PHY(8) }; |
| 43 | int i, c; |
| 44 | u16 cur_reg; |
| 45 | u32 var_pattern; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 46 | u32 init_val; |
| 47 | u32 cur_val; |
| 48 | |
| 49 | for (c = 0; c < 2; c++) { |
| 50 | |
| 51 | cur_reg = regs[c]; |
| 52 | |
| 53 | /* Save previous value */ |
| 54 | init_val = ath5k_hw_reg_read(ah, cur_reg); |
| 55 | |
| 56 | for (i = 0; i < 256; i++) { |
| 57 | var_pattern = i << 16 | i; |
| 58 | ath5k_hw_reg_write(ah, var_pattern, cur_reg); |
| 59 | cur_val = ath5k_hw_reg_read(ah, cur_reg); |
| 60 | |
| 61 | if (cur_val != var_pattern) { |
| 62 | ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n"); |
| 63 | return -EAGAIN; |
| 64 | } |
| 65 | |
| 66 | /* Found on ndiswrapper dumps */ |
| 67 | var_pattern = 0x0039080f; |
| 68 | ath5k_hw_reg_write(ah, var_pattern, cur_reg); |
| 69 | } |
| 70 | |
| 71 | for (i = 0; i < 4; i++) { |
| 72 | var_pattern = static_pattern[i]; |
| 73 | ath5k_hw_reg_write(ah, var_pattern, cur_reg); |
| 74 | cur_val = ath5k_hw_reg_read(ah, cur_reg); |
| 75 | |
| 76 | if (cur_val != var_pattern) { |
| 77 | ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n"); |
| 78 | return -EAGAIN; |
| 79 | } |
| 80 | |
| 81 | /* Found on ndiswrapper dumps */ |
| 82 | var_pattern = 0x003b080f; |
| 83 | ath5k_hw_reg_write(ah, var_pattern, cur_reg); |
| 84 | } |
| 85 | |
| 86 | /* Restore previous value */ |
| 87 | ath5k_hw_reg_write(ah, init_val, cur_reg); |
| 88 | |
| 89 | } |
| 90 | |
| 91 | return 0; |
| 92 | |
| 93 | } |
| 94 | |
| 95 | /** |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 96 | * ath5k_hw_init - Check if hw is supported and init the needed structs |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 97 | * |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 98 | * @sc: The &struct ath5k_softc we got from the driver's init_softc function |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 99 | * |
| 100 | * Check if the device is supported, perform a POST and initialize the needed |
| 101 | * structs. Returns -ENOMEM if we don't have memory for the needed structs, |
| 102 | * -ENODEV if the device is not supported or prints an error msg if something |
| 103 | * else went wrong. |
| 104 | */ |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 105 | int ath5k_hw_init(struct ath5k_softc *sc) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 106 | { |
Luis R. Rodriguez | 9adca12 | 2009-09-10 18:04:47 -0700 | [diff] [blame] | 107 | struct ath5k_hw *ah = sc->ah; |
Luis R. Rodriguez | 13b8155 | 2009-09-10 17:52:45 -0700 | [diff] [blame] | 108 | struct ath_common *common = ath5k_hw_common(ah); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 109 | struct pci_dev *pdev = sc->pdev; |
Bob Copeland | 1c81874 | 2009-08-24 23:00:33 -0400 | [diff] [blame] | 110 | struct ath5k_eeprom_info *ee; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 111 | int ret; |
| 112 | u32 srev; |
| 113 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 114 | /* |
| 115 | * HW information |
| 116 | */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 117 | ah->ah_radar.r_enabled = AR5K_TUNE_RADAR_ALERT; |
Nick Kossifidis | fa3d2fe | 2010-11-23 20:58:34 +0200 | [diff] [blame] | 118 | ah->ah_bwmode = AR5K_BWMODE_DEFAULT; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 119 | ah->ah_txpower.txp_tpc = AR5K_TUNE_TPC_TXPOWER; |
| 120 | ah->ah_imr = 0; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 121 | ah->ah_limit_tx_retries = AR5K_INIT_TX_RETRY; |
| 122 | ah->ah_software_retry = false; |
Bruno Randolf | caec911 | 2010-03-09 16:55:28 +0900 | [diff] [blame] | 123 | ah->ah_ant_mode = AR5K_ANTMODE_DEFAULT; |
Bruno Randolf | 9d332c8 | 2010-03-25 14:49:31 +0900 | [diff] [blame] | 124 | ah->ah_noise_floor = -95; /* until first NF calibration is run */ |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 125 | sc->ani_state.ani_mode = ATH5K_ANI_MODE_AUTO; |
Bob Copeland | b685577 | 2010-06-18 13:15:23 -0400 | [diff] [blame] | 126 | ah->ah_current_channel = &sc->channels[0]; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 127 | |
| 128 | /* |
Pavel Roskin | 97a81f5 | 2009-08-26 22:30:09 -0400 | [diff] [blame] | 129 | * Find the mac version |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 130 | */ |
Felix Fietkau | e7aecd3 | 2010-12-02 10:27:06 +0100 | [diff] [blame] | 131 | ath5k_hw_read_srev(ah); |
| 132 | srev = ah->ah_mac_srev; |
Pavel Roskin | 97a81f5 | 2009-08-26 22:30:09 -0400 | [diff] [blame] | 133 | if (srev < AR5K_SREV_AR5311) |
| 134 | ah->ah_version = AR5K_AR5210; |
| 135 | else if (srev < AR5K_SREV_AR5212) |
| 136 | ah->ah_version = AR5K_AR5211; |
| 137 | else |
| 138 | ah->ah_version = AR5K_AR5212; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 139 | |
Felix Fietkau | e7aecd3 | 2010-12-02 10:27:06 +0100 | [diff] [blame] | 140 | /* Get the MAC revision */ |
| 141 | ah->ah_mac_version = AR5K_REG_MS(srev, AR5K_SREV_VER); |
| 142 | ah->ah_mac_revision = AR5K_REG_MS(srev, AR5K_SREV_REV); |
| 143 | |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 144 | /* Fill the ath5k_hw struct with the needed functions */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 145 | ret = ath5k_hw_init_desc_functions(ah); |
| 146 | if (ret) |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 147 | goto err; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 148 | |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 149 | /* Bring device out of sleep and reset its units */ |
Nick Kossifidis | edd7fc7 | 2009-08-10 03:29:02 +0300 | [diff] [blame] | 150 | ret = ath5k_hw_nic_wakeup(ah, 0, true); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 151 | if (ret) |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 152 | goto err; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 153 | |
Felix Fietkau | e7aecd3 | 2010-12-02 10:27:06 +0100 | [diff] [blame] | 154 | /* Get PHY and RADIO revisions */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 155 | ah->ah_phy_revision = ath5k_hw_reg_read(ah, AR5K_PHY_CHIP_ID) & |
| 156 | 0xffffffff; |
| 157 | ah->ah_radio_5ghz_revision = ath5k_hw_radio_revision(ah, |
| 158 | CHANNEL_5GHZ); |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 159 | ah->ah_phy = AR5K_PHY(0); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 160 | |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 161 | /* Try to identify radio chip based on its srev */ |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 162 | switch (ah->ah_radio_5ghz_revision & 0xf0) { |
| 163 | case AR5K_SREV_RAD_5111: |
| 164 | ah->ah_radio = AR5K_RF5111; |
| 165 | ah->ah_single_chip = false; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 166 | ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah, |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 167 | CHANNEL_2GHZ); |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 168 | break; |
| 169 | case AR5K_SREV_RAD_5112: |
| 170 | case AR5K_SREV_RAD_2112: |
| 171 | ah->ah_radio = AR5K_RF5112; |
| 172 | ah->ah_single_chip = false; |
| 173 | ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah, |
| 174 | CHANNEL_2GHZ); |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 175 | break; |
| 176 | case AR5K_SREV_RAD_2413: |
| 177 | ah->ah_radio = AR5K_RF2413; |
| 178 | ah->ah_single_chip = true; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 179 | break; |
| 180 | case AR5K_SREV_RAD_5413: |
| 181 | ah->ah_radio = AR5K_RF5413; |
| 182 | ah->ah_single_chip = true; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 183 | break; |
| 184 | case AR5K_SREV_RAD_2316: |
| 185 | ah->ah_radio = AR5K_RF2316; |
| 186 | ah->ah_single_chip = true; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 187 | break; |
| 188 | case AR5K_SREV_RAD_2317: |
| 189 | ah->ah_radio = AR5K_RF2317; |
| 190 | ah->ah_single_chip = true; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 191 | break; |
| 192 | case AR5K_SREV_RAD_5424: |
| 193 | if (ah->ah_mac_version == AR5K_SREV_AR2425 || |
| 194 | ah->ah_mac_version == AR5K_SREV_AR2417){ |
| 195 | ah->ah_radio = AR5K_RF2425; |
| 196 | ah->ah_single_chip = true; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 197 | } else { |
| 198 | ah->ah_radio = AR5K_RF5413; |
| 199 | ah->ah_single_chip = true; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 200 | } |
| 201 | break; |
| 202 | default: |
| 203 | /* Identify radio based on mac/phy srev */ |
| 204 | if (ah->ah_version == AR5K_AR5210) { |
| 205 | ah->ah_radio = AR5K_RF5110; |
| 206 | ah->ah_single_chip = false; |
| 207 | } else if (ah->ah_version == AR5K_AR5211) { |
| 208 | ah->ah_radio = AR5K_RF5111; |
| 209 | ah->ah_single_chip = false; |
| 210 | ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah, |
| 211 | CHANNEL_2GHZ); |
| 212 | } else if (ah->ah_mac_version == (AR5K_SREV_AR2425 >> 4) || |
| 213 | ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4) || |
| 214 | ah->ah_phy_revision == AR5K_SREV_PHY_2425) { |
| 215 | ah->ah_radio = AR5K_RF2425; |
| 216 | ah->ah_single_chip = true; |
| 217 | ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2425; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 218 | } else if (srev == AR5K_SREV_AR5213A && |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 219 | ah->ah_phy_revision == AR5K_SREV_PHY_5212B) { |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 220 | ah->ah_radio = AR5K_RF5112; |
| 221 | ah->ah_single_chip = false; |
Nick Kossifidis | e8f055f | 2009-02-09 06:12:58 +0200 | [diff] [blame] | 222 | ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_5112B; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 223 | } else if (ah->ah_mac_version == (AR5K_SREV_AR2415 >> 4)) { |
| 224 | ah->ah_radio = AR5K_RF2316; |
| 225 | ah->ah_single_chip = true; |
| 226 | ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2316; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 227 | } else if (ah->ah_mac_version == (AR5K_SREV_AR5414 >> 4) || |
| 228 | ah->ah_phy_revision == AR5K_SREV_PHY_5413) { |
| 229 | ah->ah_radio = AR5K_RF5413; |
| 230 | ah->ah_single_chip = true; |
| 231 | ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_5413; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 232 | } else if (ah->ah_mac_version == (AR5K_SREV_AR2414 >> 4) || |
| 233 | ah->ah_phy_revision == AR5K_SREV_PHY_2413) { |
| 234 | ah->ah_radio = AR5K_RF2413; |
| 235 | ah->ah_single_chip = true; |
| 236 | ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2413; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 237 | } else { |
| 238 | ATH5K_ERR(sc, "Couldn't identify radio revision.\n"); |
| 239 | ret = -ENODEV; |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 240 | goto err; |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 241 | } |
| 242 | } |
| 243 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 244 | |
| 245 | /* Return on unsuported chips (unsupported eeprom etc) */ |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 246 | if ((srev >= AR5K_SREV_AR5416) && |
| 247 | (srev < AR5K_SREV_AR2425)) { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 248 | ATH5K_ERR(sc, "Device not yet supported.\n"); |
| 249 | ret = -ENODEV; |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 250 | goto err; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 251 | } |
| 252 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 253 | /* |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 254 | * POST |
| 255 | */ |
| 256 | ret = ath5k_hw_post(ah); |
| 257 | if (ret) |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 258 | goto err; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 259 | |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 260 | /* Enable pci core retry fix on Hainan (5213A) and later chips */ |
| 261 | if (srev >= AR5K_SREV_AR5213A) |
Nick Kossifidis | b55a5de | 2009-08-10 03:30:32 +0300 | [diff] [blame] | 262 | AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, AR5K_PCICFG_RETRY_FIX); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 263 | |
| 264 | /* |
Nick Kossifidis | ee81c55 | 2008-09-29 01:18:16 +0300 | [diff] [blame] | 265 | * Get card capabilities, calibration values etc |
| 266 | * TODO: EEPROM work |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 267 | */ |
| 268 | ret = ath5k_eeprom_init(ah); |
| 269 | if (ret) { |
| 270 | ATH5K_ERR(sc, "unable to init EEPROM\n"); |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 271 | goto err; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 272 | } |
| 273 | |
Luis R. Rodriguez | 394317f | 2009-09-10 10:57:00 -0700 | [diff] [blame] | 274 | ee = &ah->ah_capabilities.cap_eeprom; |
| 275 | |
Nick Kossifidis | c38e7a9 | 2009-08-10 03:26:55 +0300 | [diff] [blame] | 276 | /* |
| 277 | * Write PCI-E power save settings |
| 278 | */ |
Hauke Mehrtens | e98b06b | 2010-12-21 02:01:54 +0100 | [diff] [blame] | 279 | if ((ah->ah_version == AR5K_AR5212) && pdev && (pci_is_pcie(pdev))) { |
Nick Kossifidis | c38e7a9 | 2009-08-10 03:26:55 +0300 | [diff] [blame] | 280 | ath5k_hw_reg_write(ah, 0x9248fc00, AR5K_PCIE_SERDES); |
| 281 | ath5k_hw_reg_write(ah, 0x24924924, AR5K_PCIE_SERDES); |
| 282 | |
| 283 | /* Shut off RX when elecidle is asserted */ |
| 284 | ath5k_hw_reg_write(ah, 0x28000039, AR5K_PCIE_SERDES); |
| 285 | ath5k_hw_reg_write(ah, 0x53160824, AR5K_PCIE_SERDES); |
| 286 | |
| 287 | /* If serdes programing is enabled, increase PCI-E |
| 288 | * tx power for systems with long trace from host |
| 289 | * to minicard connector. */ |
| 290 | if (ee->ee_serdes) |
| 291 | ath5k_hw_reg_write(ah, 0xe5980579, AR5K_PCIE_SERDES); |
| 292 | else |
| 293 | ath5k_hw_reg_write(ah, 0xf6800579, AR5K_PCIE_SERDES); |
| 294 | |
| 295 | /* Shut off PLL and CLKREQ active in L1 */ |
| 296 | ath5k_hw_reg_write(ah, 0x001defff, AR5K_PCIE_SERDES); |
| 297 | |
| 298 | /* Preserve other settings */ |
| 299 | ath5k_hw_reg_write(ah, 0x1aaabe40, AR5K_PCIE_SERDES); |
| 300 | ath5k_hw_reg_write(ah, 0xbe105554, AR5K_PCIE_SERDES); |
| 301 | ath5k_hw_reg_write(ah, 0x000e3007, AR5K_PCIE_SERDES); |
| 302 | |
| 303 | /* Reset SERDES to load new settings */ |
| 304 | ath5k_hw_reg_write(ah, 0x00000000, AR5K_PCIE_SERDES_RESET); |
| 305 | mdelay(1); |
| 306 | } |
| 307 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 308 | /* Get misc capabilities */ |
| 309 | ret = ath5k_hw_set_capabilities(ah); |
| 310 | if (ret) { |
Felix Fietkau | 8efa5d7 | 2010-12-02 10:27:06 +0100 | [diff] [blame] | 311 | ATH5K_ERR(sc, "unable to get device capabilities\n"); |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 312 | goto err; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 313 | } |
| 314 | |
Bob Copeland | 1c81874 | 2009-08-24 23:00:33 -0400 | [diff] [blame] | 315 | /* Crypto settings */ |
Bruno Randolf | e0f8c2a | 2010-09-08 16:04:43 +0900 | [diff] [blame] | 316 | common->keymax = (sc->ah->ah_version == AR5K_AR5210 ? |
| 317 | AR5K_KEYTABLE_SIZE_5210 : AR5K_KEYTABLE_SIZE_5211); |
| 318 | |
Bruno Randolf | 781f313 | 2010-09-08 16:04:59 +0900 | [diff] [blame] | 319 | if (srev >= AR5K_SREV_AR5212_V4 && |
| 320 | (ee->ee_version >= AR5K_EEPROM_VERSION_5_0 && |
| 321 | !AR5K_EEPROM_AES_DIS(ee->ee_misc5))) |
Bruno Randolf | ce2220d | 2010-09-17 11:36:25 +0900 | [diff] [blame] | 322 | common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM; |
Bob Copeland | 1c81874 | 2009-08-24 23:00:33 -0400 | [diff] [blame] | 323 | |
Bob Copeland | f650470 | 2008-11-26 16:17:25 -0500 | [diff] [blame] | 324 | if (srev >= AR5K_SREV_AR2414) { |
Bruno Randolf | 781f313 | 2010-09-08 16:04:59 +0900 | [diff] [blame] | 325 | common->crypt_caps |= ATH_CRYPT_CAP_MIC_COMBINED; |
Bob Copeland | f650470 | 2008-11-26 16:17:25 -0500 | [diff] [blame] | 326 | AR5K_REG_ENABLE_BITS(ah, AR5K_MISC_MODE, |
| 327 | AR5K_MISC_MODE_COMBINED_MIC); |
| 328 | } |
| 329 | |
Bob Copeland | 0e149cf | 2008-11-17 23:40:38 -0500 | [diff] [blame] | 330 | /* MAC address is cleared until add_interface */ |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 331 | ath5k_hw_set_lladdr(ah, (u8[ETH_ALEN]){}); |
Bob Copeland | 0e149cf | 2008-11-17 23:40:38 -0500 | [diff] [blame] | 332 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 333 | /* Set BSSID to bcast address: ff:ff:ff:ff:ff:ff for now */ |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 334 | memcpy(common->curbssid, ath_bcast_mac, ETH_ALEN); |
Nick Kossifidis | 418de6d | 2010-08-15 13:03:10 -0400 | [diff] [blame] | 335 | ath5k_hw_set_bssid(ah); |
Bruno Randolf | ccfe555 | 2010-03-09 16:55:38 +0900 | [diff] [blame] | 336 | ath5k_hw_set_opmode(ah, sc->opmode); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 337 | |
Nick Kossifidis | 6f3b414 | 2009-02-09 06:03:41 +0200 | [diff] [blame] | 338 | ath5k_hw_rfgain_opt_init(ah); |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 339 | |
Bob Copeland | e5e2647 | 2009-10-14 14:16:30 -0400 | [diff] [blame] | 340 | ath5k_hw_init_nfcal_hist(ah); |
| 341 | |
Bob Copeland | f0f3d38 | 2009-06-10 22:22:21 -0400 | [diff] [blame] | 342 | /* turn on HW LEDs */ |
| 343 | ath5k_hw_set_ledstate(ah, AR5K_LED_INIT); |
| 344 | |
Luis R. Rodriguez | 9adca12 | 2009-09-10 18:04:47 -0700 | [diff] [blame] | 345 | return 0; |
Jones Desougi | 3d435ad | 2010-10-27 19:38:34 +0200 | [diff] [blame] | 346 | err: |
Luis R. Rodriguez | 9adca12 | 2009-09-10 18:04:47 -0700 | [diff] [blame] | 347 | return ret; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | /** |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 351 | * ath5k_hw_deinit - Free the ath5k_hw struct |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 352 | * |
| 353 | * @ah: The &struct ath5k_hw |
| 354 | */ |
Felix Fietkau | 132b1c3 | 2010-12-02 10:26:56 +0100 | [diff] [blame] | 355 | void ath5k_hw_deinit(struct ath5k_hw *ah) |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 356 | { |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 357 | __set_bit(ATH_STAT_INVALID, ah->ah_sc->status); |
| 358 | |
| 359 | if (ah->ah_rf_banks != NULL) |
| 360 | kfree(ah->ah_rf_banks); |
| 361 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 362 | ath5k_eeprom_detach(ah); |
| 363 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 364 | /* assume interrupts are down */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 365 | } |