blob: 2d262c7d9061299dac75b1b8bacdb772705f197b [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>
24#include "ath5k.h"
25#include "reg.h"
26#include "debug.h"
27#include "base.h"
28
29/**
30 * ath5k_hw_post - Power On Self Test helper function
31 *
32 * @ah: The &struct ath5k_hw
33 */
34static int ath5k_hw_post(struct ath5k_hw *ah)
35{
36
Jiri Slaby2c91108c2009-03-07 10:26:41 +010037 static const u32 static_pattern[4] = {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030038 0x55555555, 0xaaaaaaaa,
39 0x66666666, 0x99999999
40 };
Jiri Slaby2c91108c2009-03-07 10:26:41 +010041 static const u16 regs[2] = { AR5K_STA_ID0, AR5K_PHY(8) };
42 int i, c;
43 u16 cur_reg;
44 u32 var_pattern;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030045 u32 init_val;
46 u32 cur_val;
47
48 for (c = 0; c < 2; c++) {
49
50 cur_reg = regs[c];
51
52 /* Save previous value */
53 init_val = ath5k_hw_reg_read(ah, cur_reg);
54
55 for (i = 0; i < 256; i++) {
56 var_pattern = i << 16 | i;
57 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
58 cur_val = ath5k_hw_reg_read(ah, cur_reg);
59
60 if (cur_val != var_pattern) {
61 ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n");
62 return -EAGAIN;
63 }
64
65 /* Found on ndiswrapper dumps */
66 var_pattern = 0x0039080f;
67 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
68 }
69
70 for (i = 0; i < 4; i++) {
71 var_pattern = static_pattern[i];
72 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
73 cur_val = ath5k_hw_reg_read(ah, cur_reg);
74
75 if (cur_val != var_pattern) {
76 ATH5K_ERR(ah->ah_sc, "POST Failed !!!\n");
77 return -EAGAIN;
78 }
79
80 /* Found on ndiswrapper dumps */
81 var_pattern = 0x003b080f;
82 ath5k_hw_reg_write(ah, var_pattern, cur_reg);
83 }
84
85 /* Restore previous value */
86 ath5k_hw_reg_write(ah, init_val, cur_reg);
87
88 }
89
90 return 0;
91
92}
93
94/**
95 * ath5k_hw_attach - Check if hw is supported and init the needed structs
96 *
97 * @sc: The &struct ath5k_softc we got from the driver's attach function
Nick Kossifidisc6e387a2008-08-29 22:45:39 +030098 *
99 * Check if the device is supported, perform a POST and initialize the needed
100 * structs. Returns -ENOMEM if we don't have memory for the needed structs,
101 * -ENODEV if the device is not supported or prints an error msg if something
102 * else went wrong.
103 */
Pavel Roskin97a81f52009-08-26 22:30:09 -0400104struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc)
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300105{
106 struct ath5k_hw *ah;
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700107 struct ath_common *common;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300108 struct pci_dev *pdev = sc->pdev;
Bob Copeland1c818742009-08-24 23:00:33 -0400109 struct ath5k_eeprom_info *ee;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300110 int ret;
111 u32 srev;
112
113 /*If we passed the test malloc a ath5k_hw struct*/
114 ah = kzalloc(sizeof(struct ath5k_hw), GFP_KERNEL);
115 if (ah == NULL) {
116 ret = -ENOMEM;
117 ATH5K_ERR(sc, "out of memory\n");
118 goto err;
119 }
120
121 ah->ah_sc = sc;
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700122 ah->ah_sc->ah = ah;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300123 ah->ah_iobase = sc->iobase;
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700124 common = ath5k_hw_common(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300125
126 /*
127 * HW information
128 */
Johannes Berg05c914f2008-09-11 00:01:58 +0200129 ah->ah_op_mode = NL80211_IFTYPE_STATION;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300130 ah->ah_radar.r_enabled = AR5K_TUNE_RADAR_ALERT;
131 ah->ah_turbo = false;
132 ah->ah_txpower.txp_tpc = AR5K_TUNE_TPC_TXPOWER;
133 ah->ah_imr = 0;
134 ah->ah_atim_window = 0;
135 ah->ah_aifs = AR5K_TUNE_AIFS;
136 ah->ah_cw_min = AR5K_TUNE_CWMIN;
137 ah->ah_limit_tx_retries = AR5K_INIT_TX_RETRY;
138 ah->ah_software_retry = false;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300139
140 /*
Pavel Roskin97a81f52009-08-26 22:30:09 -0400141 * Find the mac version
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300142 */
Pavel Roskin97a81f52009-08-26 22:30:09 -0400143 srev = ath5k_hw_reg_read(ah, AR5K_SREV);
144 if (srev < AR5K_SREV_AR5311)
145 ah->ah_version = AR5K_AR5210;
146 else if (srev < AR5K_SREV_AR5212)
147 ah->ah_version = AR5K_AR5211;
148 else
149 ah->ah_version = AR5K_AR5212;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300150
151 /*Fill the ath5k_hw struct with the needed functions*/
152 ret = ath5k_hw_init_desc_functions(ah);
153 if (ret)
154 goto err_free;
155
156 /* Bring device out of sleep and reset it's units */
Nick Kossifidisedd7fc72009-08-10 03:29:02 +0300157 ret = ath5k_hw_nic_wakeup(ah, 0, true);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300158 if (ret)
159 goto err_free;
160
161 /* Get MAC, PHY and RADIO revisions */
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300162 ah->ah_mac_srev = srev;
163 ah->ah_mac_version = AR5K_REG_MS(srev, AR5K_SREV_VER);
164 ah->ah_mac_revision = AR5K_REG_MS(srev, AR5K_SREV_REV);
165 ah->ah_phy_revision = ath5k_hw_reg_read(ah, AR5K_PHY_CHIP_ID) &
166 0xffffffff;
167 ah->ah_radio_5ghz_revision = ath5k_hw_radio_revision(ah,
168 CHANNEL_5GHZ);
Nick Kossifidisee81c552008-09-29 01:18:16 +0300169 ah->ah_phy = AR5K_PHY(0);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300170
Nick Kossifidisee81c552008-09-29 01:18:16 +0300171 /* Try to identify radio chip based on it's srev */
172 switch (ah->ah_radio_5ghz_revision & 0xf0) {
173 case AR5K_SREV_RAD_5111:
174 ah->ah_radio = AR5K_RF5111;
175 ah->ah_single_chip = false;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300176 ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah,
Nick Kossifidisee81c552008-09-29 01:18:16 +0300177 CHANNEL_2GHZ);
Nick Kossifidisee81c552008-09-29 01:18:16 +0300178 break;
179 case AR5K_SREV_RAD_5112:
180 case AR5K_SREV_RAD_2112:
181 ah->ah_radio = AR5K_RF5112;
182 ah->ah_single_chip = false;
183 ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah,
184 CHANNEL_2GHZ);
Nick Kossifidisee81c552008-09-29 01:18:16 +0300185 break;
186 case AR5K_SREV_RAD_2413:
187 ah->ah_radio = AR5K_RF2413;
188 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300189 break;
190 case AR5K_SREV_RAD_5413:
191 ah->ah_radio = AR5K_RF5413;
192 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300193 break;
194 case AR5K_SREV_RAD_2316:
195 ah->ah_radio = AR5K_RF2316;
196 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300197 break;
198 case AR5K_SREV_RAD_2317:
199 ah->ah_radio = AR5K_RF2317;
200 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300201 break;
202 case AR5K_SREV_RAD_5424:
203 if (ah->ah_mac_version == AR5K_SREV_AR2425 ||
204 ah->ah_mac_version == AR5K_SREV_AR2417){
205 ah->ah_radio = AR5K_RF2425;
206 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300207 } else {
208 ah->ah_radio = AR5K_RF5413;
209 ah->ah_single_chip = true;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300210 }
211 break;
212 default:
213 /* Identify radio based on mac/phy srev */
214 if (ah->ah_version == AR5K_AR5210) {
215 ah->ah_radio = AR5K_RF5110;
216 ah->ah_single_chip = false;
217 } else if (ah->ah_version == AR5K_AR5211) {
218 ah->ah_radio = AR5K_RF5111;
219 ah->ah_single_chip = false;
220 ah->ah_radio_2ghz_revision = ath5k_hw_radio_revision(ah,
221 CHANNEL_2GHZ);
222 } else if (ah->ah_mac_version == (AR5K_SREV_AR2425 >> 4) ||
223 ah->ah_mac_version == (AR5K_SREV_AR2417 >> 4) ||
224 ah->ah_phy_revision == AR5K_SREV_PHY_2425) {
225 ah->ah_radio = AR5K_RF2425;
226 ah->ah_single_chip = true;
227 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2425;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300228 } else if (srev == AR5K_SREV_AR5213A &&
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200229 ah->ah_phy_revision == AR5K_SREV_PHY_5212B) {
Nick Kossifidisee81c552008-09-29 01:18:16 +0300230 ah->ah_radio = AR5K_RF5112;
231 ah->ah_single_chip = false;
Nick Kossifidise8f055f2009-02-09 06:12:58 +0200232 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_5112B;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300233 } else if (ah->ah_mac_version == (AR5K_SREV_AR2415 >> 4)) {
234 ah->ah_radio = AR5K_RF2316;
235 ah->ah_single_chip = true;
236 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2316;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300237 } else if (ah->ah_mac_version == (AR5K_SREV_AR5414 >> 4) ||
238 ah->ah_phy_revision == AR5K_SREV_PHY_5413) {
239 ah->ah_radio = AR5K_RF5413;
240 ah->ah_single_chip = true;
241 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_5413;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300242 } else if (ah->ah_mac_version == (AR5K_SREV_AR2414 >> 4) ||
243 ah->ah_phy_revision == AR5K_SREV_PHY_2413) {
244 ah->ah_radio = AR5K_RF2413;
245 ah->ah_single_chip = true;
246 ah->ah_radio_5ghz_revision = AR5K_SREV_RAD_2413;
Nick Kossifidisee81c552008-09-29 01:18:16 +0300247 } else {
248 ATH5K_ERR(sc, "Couldn't identify radio revision.\n");
249 ret = -ENODEV;
250 goto err_free;
251 }
252 }
253
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300254
255 /* Return on unsuported chips (unsupported eeprom etc) */
Nick Kossifidis1bef0162008-09-29 02:09:09 +0300256 if ((srev >= AR5K_SREV_AR5416) &&
257 (srev < AR5K_SREV_AR2425)) {
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300258 ATH5K_ERR(sc, "Device not yet supported.\n");
259 ret = -ENODEV;
260 goto err_free;
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300261 }
262
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300263 /*
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300264 * POST
265 */
266 ret = ath5k_hw_post(ah);
267 if (ret)
268 goto err_free;
269
Nick Kossifidisee81c552008-09-29 01:18:16 +0300270 /* Enable pci core retry fix on Hainan (5213A) and later chips */
271 if (srev >= AR5K_SREV_AR5213A)
Nick Kossifidisb55a5de2009-08-10 03:30:32 +0300272 AR5K_REG_ENABLE_BITS(ah, AR5K_PCICFG, AR5K_PCICFG_RETRY_FIX);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300273
274 /*
Nick Kossifidisee81c552008-09-29 01:18:16 +0300275 * Get card capabilities, calibration values etc
276 * TODO: EEPROM work
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300277 */
278 ret = ath5k_eeprom_init(ah);
279 if (ret) {
280 ATH5K_ERR(sc, "unable to init EEPROM\n");
281 goto err_free;
282 }
283
Nick Kossifidisc38e7a92009-08-10 03:26:55 +0300284 /*
285 * Write PCI-E power save settings
286 */
287 if ((ah->ah_version == AR5K_AR5212) && (pdev->is_pcie)) {
288 struct ath5k_eeprom_info *ee = &ah->ah_capabilities.cap_eeprom;
289
290 ath5k_hw_reg_write(ah, 0x9248fc00, AR5K_PCIE_SERDES);
291 ath5k_hw_reg_write(ah, 0x24924924, AR5K_PCIE_SERDES);
292
293 /* Shut off RX when elecidle is asserted */
294 ath5k_hw_reg_write(ah, 0x28000039, AR5K_PCIE_SERDES);
295 ath5k_hw_reg_write(ah, 0x53160824, AR5K_PCIE_SERDES);
296
297 /* If serdes programing is enabled, increase PCI-E
298 * tx power for systems with long trace from host
299 * to minicard connector. */
300 if (ee->ee_serdes)
301 ath5k_hw_reg_write(ah, 0xe5980579, AR5K_PCIE_SERDES);
302 else
303 ath5k_hw_reg_write(ah, 0xf6800579, AR5K_PCIE_SERDES);
304
305 /* Shut off PLL and CLKREQ active in L1 */
306 ath5k_hw_reg_write(ah, 0x001defff, AR5K_PCIE_SERDES);
307
308 /* Preserve other settings */
309 ath5k_hw_reg_write(ah, 0x1aaabe40, AR5K_PCIE_SERDES);
310 ath5k_hw_reg_write(ah, 0xbe105554, AR5K_PCIE_SERDES);
311 ath5k_hw_reg_write(ah, 0x000e3007, AR5K_PCIE_SERDES);
312
313 /* Reset SERDES to load new settings */
314 ath5k_hw_reg_write(ah, 0x00000000, AR5K_PCIE_SERDES_RESET);
315 mdelay(1);
316 }
317
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300318 /* Get misc capabilities */
319 ret = ath5k_hw_set_capabilities(ah);
320 if (ret) {
321 ATH5K_ERR(sc, "unable to get device capabilities: 0x%04x\n",
322 sc->pdev->device);
323 goto err_free;
324 }
325
Bob Copeland1c818742009-08-24 23:00:33 -0400326 /* Crypto settings */
327 ee = &ah->ah_capabilities.cap_eeprom;
Bob Copelandca5efbe2009-08-27 15:17:15 -0400328 ah->ah_aes_support = srev >= AR5K_SREV_AR5212_V4 &&
Bob Copeland1c818742009-08-24 23:00:33 -0400329 (ee->ee_version >= AR5K_EEPROM_VERSION_5_0 &&
Bob Copelandca5efbe2009-08-27 15:17:15 -0400330 !AR5K_EEPROM_AES_DIS(ee->ee_misc5));
Bob Copeland1c818742009-08-24 23:00:33 -0400331
Bob Copelandf6504702008-11-26 16:17:25 -0500332 if (srev >= AR5K_SREV_AR2414) {
333 ah->ah_combined_mic = true;
334 AR5K_REG_ENABLE_BITS(ah, AR5K_MISC_MODE,
335 AR5K_MISC_MODE_COMBINED_MIC);
336 }
337
Bob Copeland0e149cf2008-11-17 23:40:38 -0500338 /* MAC address is cleared until add_interface */
Jiri Slaby2c91108c2009-03-07 10:26:41 +0100339 ath5k_hw_set_lladdr(ah, (u8[ETH_ALEN]){});
Bob Copeland0e149cf2008-11-17 23:40:38 -0500340
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300341 /* Set BSSID to bcast address: ff:ff:ff:ff:ff:ff for now */
Luis R. Rodriguez954fece2009-09-10 10:51:33 -0700342 memcpy(common->curbssid, ath_bcast_mac, ETH_ALEN);
343 ath5k_hw_set_associd(ah, common->curbssid, 0);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300344 ath5k_hw_set_opmode(ah);
345
Nick Kossifidis6f3b4142009-02-09 06:03:41 +0200346 ath5k_hw_rfgain_opt_init(ah);
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300347
Bob Copelandf0f3d382009-06-10 22:22:21 -0400348 /* turn on HW LEDs */
349 ath5k_hw_set_ledstate(ah, AR5K_LED_INIT);
350
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300351 return ah;
352err_free:
353 kfree(ah);
354err:
355 return ERR_PTR(ret);
356}
357
358/**
359 * ath5k_hw_detach - Free the ath5k_hw struct
360 *
361 * @ah: The &struct ath5k_hw
362 */
363void ath5k_hw_detach(struct ath5k_hw *ah)
364{
365 ATH5K_TRACE(ah->ah_sc);
366
367 __set_bit(ATH_STAT_INVALID, ah->ah_sc->status);
368
369 if (ah->ah_rf_banks != NULL)
370 kfree(ah->ah_rf_banks);
371
Nick Kossifidis8f655dd2009-03-15 22:20:35 +0200372 ath5k_eeprom_detach(ah);
373
Nick Kossifidisc6e387a2008-08-29 22:45:39 +0300374 /* assume interrupts are down */
375 kfree(ah);
376}