blob: d7114c75fe9b0bb66515e6856128194ee8fd2b45 [file] [log] [blame]
Nick Kossifidisc6e387a2008-08-29 22:45:39 +03001/*
2 * Copyright (c) 2004-2008 Reyk Floeter <reyk@openbsd.org>
3 * Copyright (c) 2006-2008 Nick Kossifidis <mickflemm@gmail.com>
4 *
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 Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030025#include "ath5k.h"
26#include "reg.h"
27#include "debug.h"
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030028
29/**
Nick Kossifidisc47faa32011-11-25 20:40:25 +020030 * ath5k_hw_post() - Power On Self Test helper function
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030031 * @ah: The &struct ath5k_hw
32 */
33static int ath5k_hw_post(struct ath5k_hw *ah)
34{
35
Jiri Slaby2c91108c2009-03-07 10:26:41 +010036 static const u32 static_pattern[4] = {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030037 0x55555555, 0xaaaaaaaa,
38 0x66666666, 0x99999999
39 };
Jiri Slaby2c91108c2009-03-07 10:26:41 +010040 static const u16 regs[2] = { AR5K_STA_ID0, AR5K_PHY(8) };
41 int i, c;
42 u16 cur_reg;
43 u32 var_pattern;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030044 u32 init_val;
45 u32 cur_val;
46
47 for (c = 0; c < 2; c++) {
48
49 cur_reg = regs[c];
50
51 /* Save previous value */
52 init_val = ath5k_hw_reg_read(ah, cur_reg);
53
54 for (i = 0; i < 256; i++) {
55 var_pattern = i << 16 | i;
56 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
57 cur_val = ath5k_hw_reg_read(ah, cur_reg);
58
59 if (cur_val != var_pattern) {
Pavel Roskine0d687b2011-07-14 20:21:55 -040060 ATH5K_ERR(ah, "POST Failed !!!\n");
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030061 return -EAGAIN;
62 }
63
64 /* Found on ndiswrapper dumps */
65 var_pattern = 0x0039080f;
66 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
67 }
68
69 for (i = 0; i < 4; i++) {
70 var_pattern = static_pattern[i];
71 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
72 cur_val = ath5k_hw_reg_read(ah, cur_reg);
73
74 if (cur_val != var_pattern) {
Pavel Roskine0d687b2011-07-14 20:21:55 -040075 ATH5K_ERR(ah, "POST Failed !!!\n");
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030076 return -EAGAIN;
77 }
78
79 /* Found on ndiswrapper dumps */
80 var_pattern = 0x003b080f;
81 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
82 }
83
84 /* Restore previous value */
85 ath5k_hw_reg_write(ah, init_val, cur_reg);
86
87 }
88
89 return 0;
90
91}
92
93/**
Nick Kossifidisc47faa32011-11-25 20:40:25 +020094 * ath5k_hw_init() - Check if hw is supported and init the needed structs
Pavel Roskinbb1f3ad2011-07-26 22:27:05 -040095 * @ah: The &struct ath5k_hw associated with the device
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030096 *
97 * Check if the device is supported, perform a POST and initialize the needed
98 * structs. Returns -ENOMEM if we don't have memory for the needed structs,
99 * -ENODEV if the device is not supported or prints an error msg if something
100 * else went wrong.
101 */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400102int ath5k_hw_init(struct ath5k_hw *ah)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300103{
Pavel Roskin2724a742011-07-07 18:13:48 -0400104 static const u8 zero_mac[ETH_ALEN] = { };
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700105 struct ath_common *common = ath5k_hw_common(ah);
Pavel Roskine0d687b2011-07-14 20:21:55 -0400106 struct pci_dev *pdev = ah->pdev;
Bob Copeland1c818742009-08-24 23:00:33 -0400107 struct ath5k_eeprom_info *ee;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300108 int ret;
109 u32 srev;
110
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300111 /*
112 * HW information
113 */
Nick Kossifidisfa3d2fe2010-11-23 20:58:34 +0200114 ah->ah_bwmode = AR5K_BWMODE_DEFAULT;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300115 ah->ah_txpower.txp_tpc = AR5K_TUNE_TPC_TXPOWER;
116 ah->ah_imr = 0;
Bruno Randolf76a9f6f2011-01-28 16:52:11 +0900117 ah->ah_retry_short = AR5K_INIT_RETRY_SHORT;
118 ah->ah_retry_long = AR5K_INIT_RETRY_LONG;
Bruno Randolfcaec9112010-03-09 16:55:28 +0900119 ah->ah_ant_mode = AR5K_ANTMODE_DEFAULT;
Bruno Randolf9d332c82010-03-25 14:49:31 +0900120 ah->ah_noise_floor = -95; /* until first NF calibration is run */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400121 ah->ani_state.ani_mode = ATH5K_ANI_MODE_AUTO;
122 ah->ah_current_channel = &ah->channels[0];
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300123
124 /*
Pavel Roskin97a81f52009-08-26 22:30:09 -0400125 * Find the mac version
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300126 */
Felix Fietkaue7aecd32010-12-02 10:27:06 +0100127 ath5k_hw_read_srev(ah);
128 srev = ah->ah_mac_srev;
Pavel Roskin97a81f52009-08-26 22:30:09 -0400129 if (srev < AR5K_SREV_AR5311)
130 ah->ah_version = AR5K_AR5210;
131 else if (srev < AR5K_SREV_AR5212)
132 ah->ah_version = AR5K_AR5211;
133 else
134 ah->ah_version = AR5K_AR5212;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300135
Pavel Roskin2972cc182011-07-23 09:28:56 -0400136 /* Get the MAC version */
Felix Fietkaue7aecd32010-12-02 10:27:06 +0100137 ah->ah_mac_version = AR5K_REG_MS(srev, AR5K_SREV_VER);
Felix Fietkaue7aecd32010-12-02 10:27:06 +0100138
Bob Copelanda180a132010-08-15 13:03:12 -0400139 /* Fill the ath5k_hw struct with the needed functions */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300140 ret = ath5k_hw_init_desc_functions(ah);
141 if (ret)
Jones Desougi3d435ad2010-10-27 19:38:34 +0200142 goto err;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300143
Bob Copelanda180a132010-08-15 13:03:12 -0400144 /* Bring device out of sleep and reset its units */
Pavel Roskin32c25462011-07-23 09:29:09 -0400145 ret = ath5k_hw_nic_wakeup(ah, NULL);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300146 if (ret)
Jones Desougi3d435ad2010-10-27 19:38:34 +0200147 goto err;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300148
Felix Fietkaue7aecd32010-12-02 10:27:06 +0100149 /* Get PHY and RADIO revisions */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300150 ah->ah_phy_revision = ath5k_hw_reg_read(ah, AR5K_PHY_CHIP_ID) &
151 0xffffffff;
152 ah->ah_radio_5ghz_revision = ath5k_hw_radio_revision(ah,
Pavel Roskin32c25462011-07-23 09:29:09 -0400153 IEEE80211_BAND_5GHZ);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300154
Bob Copelanda180a132010-08-15 13:03:12 -0400155 /* Try to identify radio chip based on its srev */
Nick Kossifidisee81c552008-09-29 01:18:16 +0300156 switch (ah->ah_radio_5ghz_revision & 0xf0) {
157 case AR5K_SREV_RAD_5111:
158 ah->ah_radio = AR5K_RF5111;
159 ah->ah_single_chip = false;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300160 ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah,
Pavel Roskin32c25462011-07-23 09:29:09 -0400161 IEEE80211_BAND_2GHZ);
Nick Kossifidisee81c552008-09-29 01:18:16 +0300162 break;
163 case AR5K_SREV_RAD_5112:
164 case AR5K_SREV_RAD_2112:
165 ah->ah_radio = AR5K_RF5112;
166 ah->ah_single_chip = false;
167 ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah,
Pavel Roskin32c25462011-07-23 09:29:09 -0400168 IEEE80211_BAND_2GHZ);
Nick Kossifidisee81c552008-09-29 01:18:16 +0300169 break;
170 case AR5K_SREV_RAD_2413:
171 ah->ah_radio = AR5K_RF2413;
172 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300173 break;
174 case AR5K_SREV_RAD_5413:
175 ah->ah_radio = AR5K_RF5413;
176 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300177 break;
178 case AR5K_SREV_RAD_2316:
179 ah->ah_radio = AR5K_RF2316;
180 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300181 break;
182 case AR5K_SREV_RAD_2317:
183 ah->ah_radio = AR5K_RF2317;
184 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300185 break;
186 case AR5K_SREV_RAD_5424:
187 if (ah->ah_mac_version == AR5K_SREV_AR2425 ||
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400188 ah->ah_mac_version == AR5K_SREV_AR2417) {
Nick Kossifidisee81c552008-09-29 01:18:16 +0300189 ah->ah_radio = AR5K_RF2425;
190 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300191 } else {
192 ah->ah_radio = AR5K_RF5413;
193 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300194 }
195 break;
196 default:
197 /* Identify radio based on mac/phy srev */
198 if (ah->ah_version == AR5K_AR5210) {
199 ah->ah_radio = AR5K_RF5110;
200 ah->ah_single_chip = false;
201 } else if (ah->ah_version == AR5K_AR5211) {
202 ah->ah_radio = AR5K_RF5111;
203 ah->ah_single_chip = false;
204 ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah,
Pavel Roskin32c25462011-07-23 09:29:09 -0400205 IEEE80211_BAND_2GHZ);
Nick Kossifidisee81c552008-09-29 01:18:16 +0300206 } else if (ah->ah_mac_version == (AR5K_SREV_AR2425 >> 4) ||
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400207 ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4) ||
208 ah->ah_phy_revision == AR5K_SREV_PHY_2425) {
Nick Kossifidisee81c552008-09-29 01:18:16 +0300209 ah->ah_radio = AR5K_RF2425;
210 ah->ah_single_chip = true;
211 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2425;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300212 } else if (srev == AR5K_SREV_AR5213A &&
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400213 ah->ah_phy_revision == AR5K_SREV_PHY_5212B) {
Nick Kossifidisee81c552008-09-29 01:18:16 +0300214 ah->ah_radio = AR5K_RF5112;
215 ah->ah_single_chip = false;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200216 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_5112B;
Wojciech Dubowikd9852552011-02-18 13:06:42 +0100217 } else if (ah->ah_mac_version == (AR5K_SREV_AR2415 >> 4) ||
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400218 ah->ah_mac_version == (AR5K_SREV_AR2315_R6 >> 4)) {
Nick Kossifidisee81c552008-09-29 01:18:16 +0300219 ah->ah_radio = AR5K_RF2316;
220 ah->ah_single_chip = true;
221 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2316;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300222 } else if (ah->ah_mac_version == (AR5K_SREV_AR5414 >> 4) ||
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400223 ah->ah_phy_revision == AR5K_SREV_PHY_5413) {
Nick Kossifidisee81c552008-09-29 01:18:16 +0300224 ah->ah_radio = AR5K_RF5413;
225 ah->ah_single_chip = true;
226 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_5413;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300227 } else if (ah->ah_mac_version == (AR5K_SREV_AR2414 >> 4) ||
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400228 ah->ah_phy_revision == AR5K_SREV_PHY_2413) {
Nick Kossifidisee81c552008-09-29 01:18:16 +0300229 ah->ah_radio = AR5K_RF2413;
230 ah->ah_single_chip = true;
231 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2413;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300232 } else {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400233 ATH5K_ERR(ah, "Couldn't identify radio revision.\n");
Nick Kossifidisee81c552008-09-29 01:18:16 +0300234 ret = -ENODEV;
Jones Desougi3d435ad2010-10-27 19:38:34 +0200235 goto err;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300236 }
237 }
238
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300239
Pavel Roskin6a2a0e72011-07-09 00:17:51 -0400240 /* Return on unsupported chips (unsupported eeprom etc) */
Pavel Roskine4bbf2f2011-07-07 18:14:13 -0400241 if ((srev >= AR5K_SREV_AR5416) && (srev < AR5K_SREV_AR2425)) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400242 ATH5K_ERR(ah, "Device not yet supported.\n");
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300243 ret = -ENODEV;
Jones Desougi3d435ad2010-10-27 19:38:34 +0200244 goto err;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300245 }
246
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300247 /*
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300248 * POST
249 */
250 ret = ath5k_hw_post(ah);
251 if (ret)
Jones Desougi3d435ad2010-10-27 19:38:34 +0200252 goto err;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300253
Nick Kossifidisee81c552008-09-29 01:18:16 +0300254 /* Enable pci core retry fix on Hainan (5213A) and later chips */
255 if (srev >= AR5K_SREV_AR5213A)
Nick Kossifidisb55a5de2009-08-10 03:30:32 +0300256 AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, AR5K_PCICFG_RETRY_FIX);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300257
258 /*
Nick Kossifidisee81c552008-09-29 01:18:16 +0300259 * Get card capabilities, calibration values etc
260 * TODO: EEPROM work
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300261 */
262 ret = ath5k_eeprom_init(ah);
263 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400264 ATH5K_ERR(ah, "unable to init EEPROM\n");
Jones Desougi3d435ad2010-10-27 19:38:34 +0200265 goto err;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300266 }
267
Luis R. Rodriguez394317f2009-09-10 10:57:00 -0700268 ee = &ah->ah_capabilities.cap_eeprom;
269
Nick Kossifidisc38e7a92009-08-10 03:26:55 +0300270 /*
271 * Write PCI-E power save settings
272 */
Hauke Mehrtense98b06b2010-12-21 02:01:54 +0100273 if ((ah->ah_version == AR5K_AR5212) && pdev && (pci_is_pcie(pdev))) {
Nick Kossifidisc38e7a92009-08-10 03:26:55 +0300274 ath5k_hw_reg_write(ah, 0x9248fc00, AR5K_PCIE_SERDES);
275 ath5k_hw_reg_write(ah, 0x24924924, AR5K_PCIE_SERDES);
276
277 /* Shut off RX when elecidle is asserted */
278 ath5k_hw_reg_write(ah, 0x28000039, AR5K_PCIE_SERDES);
279 ath5k_hw_reg_write(ah, 0x53160824, AR5K_PCIE_SERDES);
280
Pavel Roskin6a2a0e72011-07-09 00:17:51 -0400281 /* If serdes programming is enabled, increase PCI-E
Nick Kossifidisc38e7a92009-08-10 03:26:55 +0300282 * tx power for systems with long trace from host
283 * to minicard connector. */
284 if (ee->ee_serdes)
285 ath5k_hw_reg_write(ah, 0xe5980579, AR5K_PCIE_SERDES);
286 else
287 ath5k_hw_reg_write(ah, 0xf6800579, AR5K_PCIE_SERDES);
288
289 /* Shut off PLL and CLKREQ active in L1 */
290 ath5k_hw_reg_write(ah, 0x001defff, AR5K_PCIE_SERDES);
291
292 /* Preserve other settings */
293 ath5k_hw_reg_write(ah, 0x1aaabe40, AR5K_PCIE_SERDES);
294 ath5k_hw_reg_write(ah, 0xbe105554, AR5K_PCIE_SERDES);
295 ath5k_hw_reg_write(ah, 0x000e3007, AR5K_PCIE_SERDES);
296
297 /* Reset SERDES to load new settings */
298 ath5k_hw_reg_write(ah, 0x00000000, AR5K_PCIE_SERDES_RESET);
Nick Kossifidis1846ac32011-11-25 20:40:24 +0200299 usleep_range(1000, 1500);
Nick Kossifidisc38e7a92009-08-10 03:26:55 +0300300 }
301
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300302 /* Get misc capabilities */
303 ret = ath5k_hw_set_capabilities(ah);
304 if (ret) {
Pavel Roskine0d687b2011-07-14 20:21:55 -0400305 ATH5K_ERR(ah, "unable to get device capabilities\n");
Jones Desougi3d435ad2010-10-27 19:38:34 +0200306 goto err;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300307 }
308
Bob Copeland1c818742009-08-24 23:00:33 -0400309 /* Crypto settings */
Pavel Roskine0d687b2011-07-14 20:21:55 -0400310 common->keymax = (ah->ah_version == AR5K_AR5210 ?
Bruno Randolfe0f8c2a2010-09-08 16:04:43 +0900311 AR5K_KEYTABLE_SIZE_5210 : AR5K_KEYTABLE_SIZE_5211);
312
Bruno Randolf781f3132010-09-08 16:04:59 +0900313 if (srev >= AR5K_SREV_AR5212_V4 &&
Felix Fietkau32377b62011-04-13 21:56:45 +0200314 (ee->ee_version < AR5K_EEPROM_VERSION_5_0 ||
Bruno Randolf781f3132010-09-08 16:04:59 +0900315 !AR5K_EEPROM_AES_DIS(ee->ee_misc5)))
Bruno Randolfce2220d2010-09-17 11:36:25 +0900316 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
Bob Copeland1c818742009-08-24 23:00:33 -0400317
Bob Copelandf6504702008-11-26 16:17:25 -0500318 if (srev >= AR5K_SREV_AR2414) {
Bruno Randolf781f3132010-09-08 16:04:59 +0900319 common->crypt_caps |= ATH_CRYPT_CAP_MIC_COMBINED;
Bob Copelandf6504702008-11-26 16:17:25 -0500320 AR5K_REG_ENABLE_BITS(ah, AR5K_MISC_MODE,
321 AR5K_MISC_MODE_COMBINED_MIC);
322 }
323
Bob Copeland0e149cf2008-11-17 23:40:38 -0500324 /* MAC address is cleared until add_interface */
Pavel Roskin2724a742011-07-07 18:13:48 -0400325 ath5k_hw_set_lladdr(ah, zero_mac);
Bob Copeland0e149cf2008-11-17 23:40:38 -0500326
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300327 /* Set BSSID to bcast address: ff:ff:ff:ff:ff:ff for now */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700328 memcpy(common->curbssid, ath_bcast_mac, ETH_ALEN);
Nick Kossifidis418de6d2010-08-15 13:03:10 -0400329 ath5k_hw_set_bssid(ah);
Pavel Roskine0d687b2011-07-14 20:21:55 -0400330 ath5k_hw_set_opmode(ah, ah->opmode);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300331
Nick Kossifidis6f3b4142009-02-09 06:03:41 +0200332 ath5k_hw_rfgain_opt_init(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300333
Bob Copelande5e26472009-10-14 14:16:30 -0400334 ath5k_hw_init_nfcal_hist(ah);
335
Bob Copelandf0f3d382009-06-10 22:22:21 -0400336 /* turn on HW LEDs */
337 ath5k_hw_set_ledstate(ah, AR5K_LED_INIT);
338
Luis R. Rodriguez9adca122009-09-10 18:04:47 -0700339 return 0;
Jones Desougi3d435ad2010-10-27 19:38:34 +0200340err:
Luis R. Rodriguez9adca122009-09-10 18:04:47 -0700341 return ret;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300342}
343
344/**
Nick Kossifidisc47faa32011-11-25 20:40:25 +0200345 * ath5k_hw_deinit() - Free the &struct ath5k_hw
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300346 * @ah: The &struct ath5k_hw
347 */
Felix Fietkau132b1c32010-12-02 10:26:56 +0100348void ath5k_hw_deinit(struct ath5k_hw *ah)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300349{
Pavel Roskine0d687b2011-07-14 20:21:55 -0400350 __set_bit(ATH_STAT_INVALID, ah->status);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300351
352 if (ah->ah_rf_banks != NULL)
353 kfree(ah->ah_rf_banks);
354
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200355 ath5k_eeprom_detach(ah);
356
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300357 /* assume interrupts are down */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300358}