]>
Commit | Line | Data |
---|---|---|
95ea3627 | 1 | /* |
811aa9ca | 2 | Copyright (C) 2004 - 2008 rt2x00 SourceForge Project |
95ea3627 ID |
3 | <http://rt2x00.serialmonkey.com> |
4 | ||
5 | This program is free software; you can redistribute it and/or modify | |
6 | it under the terms of the GNU General Public License as published by | |
7 | the Free Software Foundation; either version 2 of the License, or | |
8 | (at your option) any later version. | |
9 | ||
10 | This program is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | GNU General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU General Public License | |
16 | along with this program; if not, write to the | |
17 | Free Software Foundation, Inc., | |
18 | 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
19 | */ | |
20 | ||
21 | /* | |
22 | Module: rt2500usb | |
23 | Abstract: rt2500usb device specific routines. | |
24 | Supported chipsets: RT2570. | |
25 | */ | |
26 | ||
95ea3627 ID |
27 | #include <linux/delay.h> |
28 | #include <linux/etherdevice.h> | |
29 | #include <linux/init.h> | |
30 | #include <linux/kernel.h> | |
31 | #include <linux/module.h> | |
32 | #include <linux/usb.h> | |
33 | ||
34 | #include "rt2x00.h" | |
35 | #include "rt2x00usb.h" | |
36 | #include "rt2500usb.h" | |
37 | ||
38 | /* | |
39 | * Register access. | |
40 | * All access to the CSR registers will go through the methods | |
41 | * rt2500usb_register_read and rt2500usb_register_write. | |
42 | * BBP and RF register require indirect register access, | |
43 | * and use the CSR registers BBPCSR and RFCSR to achieve this. | |
44 | * These indirect registers work with busy bits, | |
45 | * and we will try maximal REGISTER_BUSY_COUNT times to access | |
46 | * the register while taking a REGISTER_BUSY_DELAY us delay | |
47 | * between each attampt. When the busy bit is still set at that time, | |
48 | * the access attempt is considered to have failed, | |
49 | * and we will print an error. | |
3d82346c AB |
50 | * If the usb_cache_mutex is already held then the _lock variants must |
51 | * be used instead. | |
95ea3627 | 52 | */ |
0e14f6d3 | 53 | static inline void rt2500usb_register_read(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
54 | const unsigned int offset, |
55 | u16 *value) | |
56 | { | |
57 | __le16 reg; | |
58 | rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_READ, | |
59 | USB_VENDOR_REQUEST_IN, offset, | |
60 | ®, sizeof(u16), REGISTER_TIMEOUT); | |
61 | *value = le16_to_cpu(reg); | |
62 | } | |
63 | ||
3d82346c AB |
64 | static inline void rt2500usb_register_read_lock(struct rt2x00_dev *rt2x00dev, |
65 | const unsigned int offset, | |
66 | u16 *value) | |
67 | { | |
68 | __le16 reg; | |
69 | rt2x00usb_vendor_req_buff_lock(rt2x00dev, USB_MULTI_READ, | |
70 | USB_VENDOR_REQUEST_IN, offset, | |
71 | ®, sizeof(u16), REGISTER_TIMEOUT); | |
72 | *value = le16_to_cpu(reg); | |
73 | } | |
74 | ||
0e14f6d3 | 75 | static inline void rt2500usb_register_multiread(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
76 | const unsigned int offset, |
77 | void *value, const u16 length) | |
78 | { | |
79 | int timeout = REGISTER_TIMEOUT * (length / sizeof(u16)); | |
80 | rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_READ, | |
81 | USB_VENDOR_REQUEST_IN, offset, | |
82 | value, length, timeout); | |
83 | } | |
84 | ||
0e14f6d3 | 85 | static inline void rt2500usb_register_write(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
86 | const unsigned int offset, |
87 | u16 value) | |
88 | { | |
89 | __le16 reg = cpu_to_le16(value); | |
90 | rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_WRITE, | |
91 | USB_VENDOR_REQUEST_OUT, offset, | |
92 | ®, sizeof(u16), REGISTER_TIMEOUT); | |
93 | } | |
94 | ||
3d82346c AB |
95 | static inline void rt2500usb_register_write_lock(struct rt2x00_dev *rt2x00dev, |
96 | const unsigned int offset, | |
97 | u16 value) | |
98 | { | |
99 | __le16 reg = cpu_to_le16(value); | |
100 | rt2x00usb_vendor_req_buff_lock(rt2x00dev, USB_MULTI_WRITE, | |
101 | USB_VENDOR_REQUEST_OUT, offset, | |
102 | ®, sizeof(u16), REGISTER_TIMEOUT); | |
103 | } | |
104 | ||
0e14f6d3 | 105 | static inline void rt2500usb_register_multiwrite(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
106 | const unsigned int offset, |
107 | void *value, const u16 length) | |
108 | { | |
109 | int timeout = REGISTER_TIMEOUT * (length / sizeof(u16)); | |
110 | rt2x00usb_vendor_request_buff(rt2x00dev, USB_MULTI_WRITE, | |
111 | USB_VENDOR_REQUEST_OUT, offset, | |
112 | value, length, timeout); | |
113 | } | |
114 | ||
0e14f6d3 | 115 | static u16 rt2500usb_bbp_check(struct rt2x00_dev *rt2x00dev) |
95ea3627 ID |
116 | { |
117 | u16 reg; | |
118 | unsigned int i; | |
119 | ||
120 | for (i = 0; i < REGISTER_BUSY_COUNT; i++) { | |
3d82346c | 121 | rt2500usb_register_read_lock(rt2x00dev, PHY_CSR8, ®); |
95ea3627 ID |
122 | if (!rt2x00_get_field16(reg, PHY_CSR8_BUSY)) |
123 | break; | |
124 | udelay(REGISTER_BUSY_DELAY); | |
125 | } | |
126 | ||
127 | return reg; | |
128 | } | |
129 | ||
0e14f6d3 | 130 | static void rt2500usb_bbp_write(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
131 | const unsigned int word, const u8 value) |
132 | { | |
133 | u16 reg; | |
134 | ||
3d82346c AB |
135 | mutex_lock(&rt2x00dev->usb_cache_mutex); |
136 | ||
95ea3627 ID |
137 | /* |
138 | * Wait until the BBP becomes ready. | |
139 | */ | |
140 | reg = rt2500usb_bbp_check(rt2x00dev); | |
141 | if (rt2x00_get_field16(reg, PHY_CSR8_BUSY)) { | |
142 | ERROR(rt2x00dev, "PHY_CSR8 register busy. Write failed.\n"); | |
3d82346c | 143 | mutex_unlock(&rt2x00dev->usb_cache_mutex); |
95ea3627 ID |
144 | return; |
145 | } | |
146 | ||
147 | /* | |
148 | * Write the data into the BBP. | |
149 | */ | |
150 | reg = 0; | |
151 | rt2x00_set_field16(®, PHY_CSR7_DATA, value); | |
152 | rt2x00_set_field16(®, PHY_CSR7_REG_ID, word); | |
153 | rt2x00_set_field16(®, PHY_CSR7_READ_CONTROL, 0); | |
154 | ||
3d82346c AB |
155 | rt2500usb_register_write_lock(rt2x00dev, PHY_CSR7, reg); |
156 | ||
157 | mutex_unlock(&rt2x00dev->usb_cache_mutex); | |
95ea3627 ID |
158 | } |
159 | ||
0e14f6d3 | 160 | static void rt2500usb_bbp_read(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
161 | const unsigned int word, u8 *value) |
162 | { | |
163 | u16 reg; | |
164 | ||
3d82346c AB |
165 | mutex_lock(&rt2x00dev->usb_cache_mutex); |
166 | ||
95ea3627 ID |
167 | /* |
168 | * Wait until the BBP becomes ready. | |
169 | */ | |
170 | reg = rt2500usb_bbp_check(rt2x00dev); | |
171 | if (rt2x00_get_field16(reg, PHY_CSR8_BUSY)) { | |
172 | ERROR(rt2x00dev, "PHY_CSR8 register busy. Read failed.\n"); | |
173 | return; | |
174 | } | |
175 | ||
176 | /* | |
177 | * Write the request into the BBP. | |
178 | */ | |
179 | reg = 0; | |
180 | rt2x00_set_field16(®, PHY_CSR7_REG_ID, word); | |
181 | rt2x00_set_field16(®, PHY_CSR7_READ_CONTROL, 1); | |
182 | ||
3d82346c | 183 | rt2500usb_register_write_lock(rt2x00dev, PHY_CSR7, reg); |
95ea3627 ID |
184 | |
185 | /* | |
186 | * Wait until the BBP becomes ready. | |
187 | */ | |
188 | reg = rt2500usb_bbp_check(rt2x00dev); | |
189 | if (rt2x00_get_field16(reg, PHY_CSR8_BUSY)) { | |
190 | ERROR(rt2x00dev, "PHY_CSR8 register busy. Read failed.\n"); | |
191 | *value = 0xff; | |
3d82346c | 192 | mutex_unlock(&rt2x00dev->usb_cache_mutex); |
95ea3627 ID |
193 | return; |
194 | } | |
195 | ||
3d82346c | 196 | rt2500usb_register_read_lock(rt2x00dev, PHY_CSR7, ®); |
95ea3627 | 197 | *value = rt2x00_get_field16(reg, PHY_CSR7_DATA); |
3d82346c AB |
198 | |
199 | mutex_unlock(&rt2x00dev->usb_cache_mutex); | |
95ea3627 ID |
200 | } |
201 | ||
0e14f6d3 | 202 | static void rt2500usb_rf_write(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
203 | const unsigned int word, const u32 value) |
204 | { | |
205 | u16 reg; | |
206 | unsigned int i; | |
207 | ||
208 | if (!word) | |
209 | return; | |
210 | ||
3d82346c AB |
211 | mutex_lock(&rt2x00dev->usb_cache_mutex); |
212 | ||
95ea3627 | 213 | for (i = 0; i < REGISTER_BUSY_COUNT; i++) { |
3d82346c | 214 | rt2500usb_register_read_lock(rt2x00dev, PHY_CSR10, ®); |
95ea3627 ID |
215 | if (!rt2x00_get_field16(reg, PHY_CSR10_RF_BUSY)) |
216 | goto rf_write; | |
217 | udelay(REGISTER_BUSY_DELAY); | |
218 | } | |
219 | ||
3d82346c | 220 | mutex_unlock(&rt2x00dev->usb_cache_mutex); |
95ea3627 ID |
221 | ERROR(rt2x00dev, "PHY_CSR10 register busy. Write failed.\n"); |
222 | return; | |
223 | ||
224 | rf_write: | |
225 | reg = 0; | |
226 | rt2x00_set_field16(®, PHY_CSR9_RF_VALUE, value); | |
3d82346c | 227 | rt2500usb_register_write_lock(rt2x00dev, PHY_CSR9, reg); |
95ea3627 ID |
228 | |
229 | reg = 0; | |
230 | rt2x00_set_field16(®, PHY_CSR10_RF_VALUE, value >> 16); | |
231 | rt2x00_set_field16(®, PHY_CSR10_RF_NUMBER_OF_BITS, 20); | |
232 | rt2x00_set_field16(®, PHY_CSR10_RF_IF_SELECT, 0); | |
233 | rt2x00_set_field16(®, PHY_CSR10_RF_BUSY, 1); | |
234 | ||
3d82346c | 235 | rt2500usb_register_write_lock(rt2x00dev, PHY_CSR10, reg); |
95ea3627 | 236 | rt2x00_rf_write(rt2x00dev, word, value); |
3d82346c AB |
237 | |
238 | mutex_unlock(&rt2x00dev->usb_cache_mutex); | |
95ea3627 ID |
239 | } |
240 | ||
241 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS | |
242 | #define CSR_OFFSET(__word) ( CSR_REG_BASE + ((__word) * sizeof(u16)) ) | |
243 | ||
0e14f6d3 | 244 | static void rt2500usb_read_csr(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
245 | const unsigned int word, u32 *data) |
246 | { | |
247 | rt2500usb_register_read(rt2x00dev, CSR_OFFSET(word), (u16 *) data); | |
248 | } | |
249 | ||
0e14f6d3 | 250 | static void rt2500usb_write_csr(struct rt2x00_dev *rt2x00dev, |
95ea3627 ID |
251 | const unsigned int word, u32 data) |
252 | { | |
253 | rt2500usb_register_write(rt2x00dev, CSR_OFFSET(word), data); | |
254 | } | |
255 | ||
256 | static const struct rt2x00debug rt2500usb_rt2x00debug = { | |
257 | .owner = THIS_MODULE, | |
258 | .csr = { | |
259 | .read = rt2500usb_read_csr, | |
260 | .write = rt2500usb_write_csr, | |
261 | .word_size = sizeof(u16), | |
262 | .word_count = CSR_REG_SIZE / sizeof(u16), | |
263 | }, | |
264 | .eeprom = { | |
265 | .read = rt2x00_eeprom_read, | |
266 | .write = rt2x00_eeprom_write, | |
267 | .word_size = sizeof(u16), | |
268 | .word_count = EEPROM_SIZE / sizeof(u16), | |
269 | }, | |
270 | .bbp = { | |
271 | .read = rt2500usb_bbp_read, | |
272 | .write = rt2500usb_bbp_write, | |
273 | .word_size = sizeof(u8), | |
274 | .word_count = BBP_SIZE / sizeof(u8), | |
275 | }, | |
276 | .rf = { | |
277 | .read = rt2x00_rf_read, | |
278 | .write = rt2500usb_rf_write, | |
279 | .word_size = sizeof(u32), | |
280 | .word_count = RF_SIZE / sizeof(u32), | |
281 | }, | |
282 | }; | |
283 | #endif /* CONFIG_RT2X00_LIB_DEBUGFS */ | |
284 | ||
a9450b70 ID |
285 | #ifdef CONFIG_RT2500USB_LEDS |
286 | static void rt2500usb_led_brightness(struct led_classdev *led_cdev, | |
287 | enum led_brightness brightness) | |
288 | { | |
289 | struct rt2x00_led *led = | |
290 | container_of(led_cdev, struct rt2x00_led, led_dev); | |
291 | unsigned int enabled = brightness != LED_OFF; | |
292 | unsigned int activity = | |
293 | led->rt2x00dev->led_flags & LED_SUPPORT_ACTIVITY; | |
a9450b70 ID |
294 | |
295 | if (led->type == LED_TYPE_RADIO || led->type == LED_TYPE_ASSOC) { | |
3b640f21 ID |
296 | rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg, |
297 | MAC_CSR20_LINK, enabled); | |
298 | rt2x00_set_field16(&led->rt2x00dev->led_mcu_reg, | |
299 | MAC_CSR20_ACTIVITY, enabled && activity); | |
a9450b70 ID |
300 | } |
301 | ||
3b640f21 ID |
302 | rt2x00usb_vendor_request_async(led->rt2x00dev, USB_SINGLE_WRITE, |
303 | MAC_CSR20, led->rt2x00dev->led_mcu_reg); | |
a9450b70 ID |
304 | } |
305 | #else | |
306 | #define rt2500usb_led_brightness NULL | |
307 | #endif /* CONFIG_RT2500USB_LEDS */ | |
308 | ||
95ea3627 ID |
309 | /* |
310 | * Configuration handlers. | |
311 | */ | |
6bb40dd1 ID |
312 | static void rt2500usb_config_intf(struct rt2x00_dev *rt2x00dev, |
313 | struct rt2x00_intf *intf, | |
314 | struct rt2x00intf_conf *conf, | |
315 | const unsigned int flags) | |
95ea3627 | 316 | { |
6bb40dd1 | 317 | unsigned int bcn_preload; |
95ea3627 ID |
318 | u16 reg; |
319 | ||
6bb40dd1 ID |
320 | if (flags & CONFIG_UPDATE_TYPE) { |
321 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0); | |
95ea3627 | 322 | |
6bb40dd1 ID |
323 | /* |
324 | * Enable beacon config | |
325 | */ | |
326 | bcn_preload = PREAMBLE + get_duration(IEEE80211_HEADER, 20); | |
327 | rt2500usb_register_read(rt2x00dev, TXRX_CSR20, ®); | |
328 | rt2x00_set_field16(®, TXRX_CSR20_OFFSET, bcn_preload >> 6); | |
329 | rt2x00_set_field16(®, TXRX_CSR20_BCN_EXPECT_WINDOW, | |
330 | 2 * (conf->type != IEEE80211_IF_TYPE_STA)); | |
331 | rt2500usb_register_write(rt2x00dev, TXRX_CSR20, reg); | |
95ea3627 | 332 | |
6bb40dd1 ID |
333 | /* |
334 | * Enable synchronisation. | |
335 | */ | |
336 | rt2500usb_register_read(rt2x00dev, TXRX_CSR18, ®); | |
337 | rt2x00_set_field16(®, TXRX_CSR18_OFFSET, 0); | |
338 | rt2500usb_register_write(rt2x00dev, TXRX_CSR18, reg); | |
339 | ||
340 | rt2500usb_register_read(rt2x00dev, TXRX_CSR19, ®); | |
341 | rt2x00_set_field16(®, TXRX_CSR19_TSF_COUNT, 1); | |
342 | rt2x00_set_field16(®, TXRX_CSR19_TBCN, | |
343 | (conf->sync == TSF_SYNC_BEACON)); | |
344 | rt2x00_set_field16(®, TXRX_CSR19_BEACON_GEN, 0); | |
345 | rt2x00_set_field16(®, TXRX_CSR19_TSF_SYNC, conf->sync); | |
346 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg); | |
347 | } | |
95ea3627 | 348 | |
6bb40dd1 ID |
349 | if (flags & CONFIG_UPDATE_MAC) |
350 | rt2500usb_register_multiwrite(rt2x00dev, MAC_CSR2, conf->mac, | |
351 | (3 * sizeof(__le16))); | |
352 | ||
353 | if (flags & CONFIG_UPDATE_BSSID) | |
354 | rt2500usb_register_multiwrite(rt2x00dev, MAC_CSR5, conf->bssid, | |
355 | (3 * sizeof(__le16))); | |
95ea3627 ID |
356 | } |
357 | ||
6bb40dd1 ID |
358 | static int rt2500usb_config_preamble(struct rt2x00_dev *rt2x00dev, |
359 | const int short_preamble, | |
360 | const int ack_timeout, | |
361 | const int ack_consume_time) | |
95ea3627 | 362 | { |
95ea3627 | 363 | u16 reg; |
95ea3627 | 364 | |
5c58ee51 | 365 | /* |
6bb40dd1 ID |
366 | * When in atomic context, we should let rt2x00lib |
367 | * try this configuration again later. | |
5c58ee51 | 368 | */ |
6bb40dd1 ID |
369 | if (in_atomic()) |
370 | return -EAGAIN; | |
95ea3627 ID |
371 | |
372 | rt2500usb_register_read(rt2x00dev, TXRX_CSR1, ®); | |
5c58ee51 | 373 | rt2x00_set_field16(®, TXRX_CSR1_ACK_TIMEOUT, ack_timeout); |
95ea3627 ID |
374 | rt2500usb_register_write(rt2x00dev, TXRX_CSR1, reg); |
375 | ||
376 | rt2500usb_register_read(rt2x00dev, TXRX_CSR10, ®); | |
4f5af6eb | 377 | rt2x00_set_field16(®, TXRX_CSR10_AUTORESPOND_PREAMBLE, |
5c58ee51 | 378 | !!short_preamble); |
95ea3627 | 379 | rt2500usb_register_write(rt2x00dev, TXRX_CSR10, reg); |
6bb40dd1 ID |
380 | |
381 | return 0; | |
95ea3627 ID |
382 | } |
383 | ||
384 | static void rt2500usb_config_phymode(struct rt2x00_dev *rt2x00dev, | |
5c58ee51 | 385 | const int basic_rate_mask) |
95ea3627 | 386 | { |
5c58ee51 | 387 | rt2500usb_register_write(rt2x00dev, TXRX_CSR11, basic_rate_mask); |
95ea3627 ID |
388 | } |
389 | ||
390 | static void rt2500usb_config_channel(struct rt2x00_dev *rt2x00dev, | |
5c58ee51 | 391 | struct rf_channel *rf, const int txpower) |
95ea3627 | 392 | { |
95ea3627 ID |
393 | /* |
394 | * Set TXpower. | |
395 | */ | |
5c58ee51 | 396 | rt2x00_set_field32(&rf->rf3, RF3_TXPOWER, TXPOWER_TO_DEV(txpower)); |
95ea3627 ID |
397 | |
398 | /* | |
399 | * For RT2525E we should first set the channel to half band higher. | |
400 | */ | |
401 | if (rt2x00_rf(&rt2x00dev->chip, RF2525E)) { | |
402 | static const u32 vals[] = { | |
403 | 0x000008aa, 0x000008ae, 0x000008ae, 0x000008b2, | |
404 | 0x000008b2, 0x000008b6, 0x000008b6, 0x000008ba, | |
405 | 0x000008ba, 0x000008be, 0x000008b7, 0x00000902, | |
406 | 0x00000902, 0x00000906 | |
407 | }; | |
408 | ||
5c58ee51 ID |
409 | rt2500usb_rf_write(rt2x00dev, 2, vals[rf->channel - 1]); |
410 | if (rf->rf4) | |
411 | rt2500usb_rf_write(rt2x00dev, 4, rf->rf4); | |
95ea3627 ID |
412 | } |
413 | ||
5c58ee51 ID |
414 | rt2500usb_rf_write(rt2x00dev, 1, rf->rf1); |
415 | rt2500usb_rf_write(rt2x00dev, 2, rf->rf2); | |
416 | rt2500usb_rf_write(rt2x00dev, 3, rf->rf3); | |
417 | if (rf->rf4) | |
418 | rt2500usb_rf_write(rt2x00dev, 4, rf->rf4); | |
95ea3627 ID |
419 | } |
420 | ||
421 | static void rt2500usb_config_txpower(struct rt2x00_dev *rt2x00dev, | |
422 | const int txpower) | |
423 | { | |
424 | u32 rf3; | |
425 | ||
426 | rt2x00_rf_read(rt2x00dev, 3, &rf3); | |
427 | rt2x00_set_field32(&rf3, RF3_TXPOWER, TXPOWER_TO_DEV(txpower)); | |
428 | rt2500usb_rf_write(rt2x00dev, 3, rf3); | |
429 | } | |
430 | ||
431 | static void rt2500usb_config_antenna(struct rt2x00_dev *rt2x00dev, | |
addc81bd | 432 | struct antenna_setup *ant) |
95ea3627 ID |
433 | { |
434 | u8 r2; | |
435 | u8 r14; | |
436 | u16 csr5; | |
437 | u16 csr6; | |
438 | ||
439 | rt2500usb_bbp_read(rt2x00dev, 2, &r2); | |
440 | rt2500usb_bbp_read(rt2x00dev, 14, &r14); | |
441 | rt2500usb_register_read(rt2x00dev, PHY_CSR5, &csr5); | |
442 | rt2500usb_register_read(rt2x00dev, PHY_CSR6, &csr6); | |
443 | ||
444 | /* | |
445 | * Configure the TX antenna. | |
446 | */ | |
addc81bd | 447 | switch (ant->tx) { |
95ea3627 ID |
448 | case ANTENNA_HW_DIVERSITY: |
449 | rt2x00_set_field8(&r2, BBP_R2_TX_ANTENNA, 1); | |
450 | rt2x00_set_field16(&csr5, PHY_CSR5_CCK, 1); | |
451 | rt2x00_set_field16(&csr6, PHY_CSR6_OFDM, 1); | |
452 | break; | |
453 | case ANTENNA_A: | |
454 | rt2x00_set_field8(&r2, BBP_R2_TX_ANTENNA, 0); | |
455 | rt2x00_set_field16(&csr5, PHY_CSR5_CCK, 0); | |
456 | rt2x00_set_field16(&csr6, PHY_CSR6_OFDM, 0); | |
457 | break; | |
39e75857 ID |
458 | case ANTENNA_SW_DIVERSITY: |
459 | /* | |
460 | * NOTE: We should never come here because rt2x00lib is | |
461 | * supposed to catch this and send us the correct antenna | |
462 | * explicitely. However we are nog going to bug about this. | |
463 | * Instead, just default to antenna B. | |
464 | */ | |
95ea3627 ID |
465 | case ANTENNA_B: |
466 | rt2x00_set_field8(&r2, BBP_R2_TX_ANTENNA, 2); | |
467 | rt2x00_set_field16(&csr5, PHY_CSR5_CCK, 2); | |
468 | rt2x00_set_field16(&csr6, PHY_CSR6_OFDM, 2); | |
469 | break; | |
470 | } | |
471 | ||
472 | /* | |
473 | * Configure the RX antenna. | |
474 | */ | |
addc81bd | 475 | switch (ant->rx) { |
95ea3627 ID |
476 | case ANTENNA_HW_DIVERSITY: |
477 | rt2x00_set_field8(&r14, BBP_R14_RX_ANTENNA, 1); | |
478 | break; | |
479 | case ANTENNA_A: | |
480 | rt2x00_set_field8(&r14, BBP_R14_RX_ANTENNA, 0); | |
481 | break; | |
39e75857 ID |
482 | case ANTENNA_SW_DIVERSITY: |
483 | /* | |
484 | * NOTE: We should never come here because rt2x00lib is | |
485 | * supposed to catch this and send us the correct antenna | |
486 | * explicitely. However we are nog going to bug about this. | |
487 | * Instead, just default to antenna B. | |
488 | */ | |
95ea3627 ID |
489 | case ANTENNA_B: |
490 | rt2x00_set_field8(&r14, BBP_R14_RX_ANTENNA, 2); | |
491 | break; | |
492 | } | |
493 | ||
494 | /* | |
495 | * RT2525E and RT5222 need to flip TX I/Q | |
496 | */ | |
497 | if (rt2x00_rf(&rt2x00dev->chip, RF2525E) || | |
498 | rt2x00_rf(&rt2x00dev->chip, RF5222)) { | |
499 | rt2x00_set_field8(&r2, BBP_R2_TX_IQ_FLIP, 1); | |
500 | rt2x00_set_field16(&csr5, PHY_CSR5_CCK_FLIP, 1); | |
501 | rt2x00_set_field16(&csr6, PHY_CSR6_OFDM_FLIP, 1); | |
502 | ||
503 | /* | |
504 | * RT2525E does not need RX I/Q Flip. | |
505 | */ | |
506 | if (rt2x00_rf(&rt2x00dev->chip, RF2525E)) | |
507 | rt2x00_set_field8(&r14, BBP_R14_RX_IQ_FLIP, 0); | |
508 | } else { | |
509 | rt2x00_set_field16(&csr5, PHY_CSR5_CCK_FLIP, 0); | |
510 | rt2x00_set_field16(&csr6, PHY_CSR6_OFDM_FLIP, 0); | |
511 | } | |
512 | ||
513 | rt2500usb_bbp_write(rt2x00dev, 2, r2); | |
514 | rt2500usb_bbp_write(rt2x00dev, 14, r14); | |
515 | rt2500usb_register_write(rt2x00dev, PHY_CSR5, csr5); | |
516 | rt2500usb_register_write(rt2x00dev, PHY_CSR6, csr6); | |
517 | } | |
518 | ||
519 | static void rt2500usb_config_duration(struct rt2x00_dev *rt2x00dev, | |
5c58ee51 | 520 | struct rt2x00lib_conf *libconf) |
95ea3627 ID |
521 | { |
522 | u16 reg; | |
523 | ||
5c58ee51 | 524 | rt2500usb_register_write(rt2x00dev, MAC_CSR10, libconf->slot_time); |
f5507ce9 ID |
525 | rt2500usb_register_write(rt2x00dev, MAC_CSR11, libconf->sifs); |
526 | rt2500usb_register_write(rt2x00dev, MAC_CSR12, libconf->eifs); | |
95ea3627 ID |
527 | |
528 | rt2500usb_register_read(rt2x00dev, TXRX_CSR18, ®); | |
5c58ee51 ID |
529 | rt2x00_set_field16(®, TXRX_CSR18_INTERVAL, |
530 | libconf->conf->beacon_int * 4); | |
95ea3627 ID |
531 | rt2500usb_register_write(rt2x00dev, TXRX_CSR18, reg); |
532 | } | |
533 | ||
534 | static void rt2500usb_config(struct rt2x00_dev *rt2x00dev, | |
6bb40dd1 ID |
535 | struct rt2x00lib_conf *libconf, |
536 | const unsigned int flags) | |
95ea3627 | 537 | { |
95ea3627 | 538 | if (flags & CONFIG_UPDATE_PHYMODE) |
f5507ce9 | 539 | rt2500usb_config_phymode(rt2x00dev, libconf->basic_rates); |
95ea3627 | 540 | if (flags & CONFIG_UPDATE_CHANNEL) |
5c58ee51 ID |
541 | rt2500usb_config_channel(rt2x00dev, &libconf->rf, |
542 | libconf->conf->power_level); | |
95ea3627 | 543 | if ((flags & CONFIG_UPDATE_TXPOWER) && !(flags & CONFIG_UPDATE_CHANNEL)) |
5c58ee51 ID |
544 | rt2500usb_config_txpower(rt2x00dev, |
545 | libconf->conf->power_level); | |
95ea3627 | 546 | if (flags & CONFIG_UPDATE_ANTENNA) |
addc81bd | 547 | rt2500usb_config_antenna(rt2x00dev, &libconf->ant); |
95ea3627 | 548 | if (flags & (CONFIG_UPDATE_SLOT_TIME | CONFIG_UPDATE_BEACON_INT)) |
5c58ee51 | 549 | rt2500usb_config_duration(rt2x00dev, libconf); |
95ea3627 ID |
550 | } |
551 | ||
95ea3627 ID |
552 | /* |
553 | * Link tuning | |
554 | */ | |
ebcf26da ID |
555 | static void rt2500usb_link_stats(struct rt2x00_dev *rt2x00dev, |
556 | struct link_qual *qual) | |
95ea3627 ID |
557 | { |
558 | u16 reg; | |
559 | ||
560 | /* | |
561 | * Update FCS error count from register. | |
562 | */ | |
563 | rt2500usb_register_read(rt2x00dev, STA_CSR0, ®); | |
ebcf26da | 564 | qual->rx_failed = rt2x00_get_field16(reg, STA_CSR0_FCS_ERROR); |
95ea3627 ID |
565 | |
566 | /* | |
567 | * Update False CCA count from register. | |
568 | */ | |
569 | rt2500usb_register_read(rt2x00dev, STA_CSR3, ®); | |
ebcf26da | 570 | qual->false_cca = rt2x00_get_field16(reg, STA_CSR3_FALSE_CCA_ERROR); |
95ea3627 ID |
571 | } |
572 | ||
573 | static void rt2500usb_reset_tuner(struct rt2x00_dev *rt2x00dev) | |
574 | { | |
575 | u16 eeprom; | |
576 | u16 value; | |
577 | ||
578 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R24, &eeprom); | |
579 | value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_R24_LOW); | |
580 | rt2500usb_bbp_write(rt2x00dev, 24, value); | |
581 | ||
582 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R25, &eeprom); | |
583 | value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_R25_LOW); | |
584 | rt2500usb_bbp_write(rt2x00dev, 25, value); | |
585 | ||
586 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R61, &eeprom); | |
587 | value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_R61_LOW); | |
588 | rt2500usb_bbp_write(rt2x00dev, 61, value); | |
589 | ||
590 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_VGC, &eeprom); | |
591 | value = rt2x00_get_field16(eeprom, EEPROM_BBPTUNE_VGCUPPER); | |
592 | rt2500usb_bbp_write(rt2x00dev, 17, value); | |
593 | ||
594 | rt2x00dev->link.vgc_level = value; | |
595 | } | |
596 | ||
597 | static void rt2500usb_link_tuner(struct rt2x00_dev *rt2x00dev) | |
598 | { | |
599 | int rssi = rt2x00_get_link_rssi(&rt2x00dev->link); | |
600 | u16 bbp_thresh; | |
601 | u16 vgc_bound; | |
602 | u16 sens; | |
603 | u16 r24; | |
604 | u16 r25; | |
605 | u16 r61; | |
606 | u16 r17_sens; | |
607 | u8 r17; | |
608 | u8 up_bound; | |
609 | u8 low_bound; | |
610 | ||
6bb40dd1 ID |
611 | /* |
612 | * Read current r17 value, as well as the sensitivity values | |
613 | * for the r17 register. | |
614 | */ | |
615 | rt2500usb_bbp_read(rt2x00dev, 17, &r17); | |
616 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R17, &r17_sens); | |
617 | ||
618 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_VGC, &vgc_bound); | |
619 | up_bound = rt2x00_get_field16(vgc_bound, EEPROM_BBPTUNE_VGCUPPER); | |
620 | low_bound = rt2x00_get_field16(vgc_bound, EEPROM_BBPTUNE_VGCLOWER); | |
621 | ||
622 | /* | |
623 | * If we are not associated, we should go straight to the | |
624 | * dynamic CCA tuning. | |
625 | */ | |
626 | if (!rt2x00dev->intf_associated) | |
627 | goto dynamic_cca_tune; | |
628 | ||
95ea3627 ID |
629 | /* |
630 | * Determine the BBP tuning threshold and correctly | |
631 | * set BBP 24, 25 and 61. | |
632 | */ | |
633 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE, &bbp_thresh); | |
634 | bbp_thresh = rt2x00_get_field16(bbp_thresh, EEPROM_BBPTUNE_THRESHOLD); | |
635 | ||
636 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R24, &r24); | |
637 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R25, &r25); | |
638 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R61, &r61); | |
639 | ||
640 | if ((rssi + bbp_thresh) > 0) { | |
641 | r24 = rt2x00_get_field16(r24, EEPROM_BBPTUNE_R24_HIGH); | |
642 | r25 = rt2x00_get_field16(r25, EEPROM_BBPTUNE_R25_HIGH); | |
643 | r61 = rt2x00_get_field16(r61, EEPROM_BBPTUNE_R61_HIGH); | |
644 | } else { | |
645 | r24 = rt2x00_get_field16(r24, EEPROM_BBPTUNE_R24_LOW); | |
646 | r25 = rt2x00_get_field16(r25, EEPROM_BBPTUNE_R25_LOW); | |
647 | r61 = rt2x00_get_field16(r61, EEPROM_BBPTUNE_R61_LOW); | |
648 | } | |
649 | ||
650 | rt2500usb_bbp_write(rt2x00dev, 24, r24); | |
651 | rt2500usb_bbp_write(rt2x00dev, 25, r25); | |
652 | rt2500usb_bbp_write(rt2x00dev, 61, r61); | |
653 | ||
95ea3627 ID |
654 | /* |
655 | * A too low RSSI will cause too much false CCA which will | |
656 | * then corrupt the R17 tuning. To remidy this the tuning should | |
657 | * be stopped (While making sure the R17 value will not exceed limits) | |
658 | */ | |
659 | if (rssi >= -40) { | |
660 | if (r17 != 0x60) | |
661 | rt2500usb_bbp_write(rt2x00dev, 17, 0x60); | |
662 | return; | |
663 | } | |
664 | ||
665 | /* | |
666 | * Special big-R17 for short distance | |
667 | */ | |
668 | if (rssi >= -58) { | |
669 | sens = rt2x00_get_field16(r17_sens, EEPROM_BBPTUNE_R17_LOW); | |
670 | if (r17 != sens) | |
671 | rt2500usb_bbp_write(rt2x00dev, 17, sens); | |
672 | return; | |
673 | } | |
674 | ||
675 | /* | |
676 | * Special mid-R17 for middle distance | |
677 | */ | |
678 | if (rssi >= -74) { | |
679 | sens = rt2x00_get_field16(r17_sens, EEPROM_BBPTUNE_R17_HIGH); | |
680 | if (r17 != sens) | |
681 | rt2500usb_bbp_write(rt2x00dev, 17, sens); | |
682 | return; | |
683 | } | |
684 | ||
685 | /* | |
686 | * Leave short or middle distance condition, restore r17 | |
687 | * to the dynamic tuning range. | |
688 | */ | |
95ea3627 | 689 | low_bound = 0x32; |
6bb40dd1 ID |
690 | if (rssi < -77) |
691 | up_bound -= (-77 - rssi); | |
95ea3627 ID |
692 | |
693 | if (up_bound < low_bound) | |
694 | up_bound = low_bound; | |
695 | ||
696 | if (r17 > up_bound) { | |
697 | rt2500usb_bbp_write(rt2x00dev, 17, up_bound); | |
698 | rt2x00dev->link.vgc_level = up_bound; | |
6bb40dd1 ID |
699 | return; |
700 | } | |
701 | ||
702 | dynamic_cca_tune: | |
703 | ||
704 | /* | |
705 | * R17 is inside the dynamic tuning range, | |
706 | * start tuning the link based on the false cca counter. | |
707 | */ | |
708 | if (rt2x00dev->link.qual.false_cca > 512 && r17 < up_bound) { | |
95ea3627 ID |
709 | rt2500usb_bbp_write(rt2x00dev, 17, ++r17); |
710 | rt2x00dev->link.vgc_level = r17; | |
ebcf26da | 711 | } else if (rt2x00dev->link.qual.false_cca < 100 && r17 > low_bound) { |
95ea3627 ID |
712 | rt2500usb_bbp_write(rt2x00dev, 17, --r17); |
713 | rt2x00dev->link.vgc_level = r17; | |
714 | } | |
715 | } | |
716 | ||
717 | /* | |
718 | * Initialization functions. | |
719 | */ | |
720 | static int rt2500usb_init_registers(struct rt2x00_dev *rt2x00dev) | |
721 | { | |
722 | u16 reg; | |
723 | ||
724 | rt2x00usb_vendor_request_sw(rt2x00dev, USB_DEVICE_MODE, 0x0001, | |
725 | USB_MODE_TEST, REGISTER_TIMEOUT); | |
726 | rt2x00usb_vendor_request_sw(rt2x00dev, USB_SINGLE_WRITE, 0x0308, | |
727 | 0x00f0, REGISTER_TIMEOUT); | |
728 | ||
729 | rt2500usb_register_read(rt2x00dev, TXRX_CSR2, ®); | |
730 | rt2x00_set_field16(®, TXRX_CSR2_DISABLE_RX, 1); | |
731 | rt2500usb_register_write(rt2x00dev, TXRX_CSR2, reg); | |
732 | ||
733 | rt2500usb_register_write(rt2x00dev, MAC_CSR13, 0x1111); | |
734 | rt2500usb_register_write(rt2x00dev, MAC_CSR14, 0x1e11); | |
735 | ||
736 | rt2500usb_register_read(rt2x00dev, MAC_CSR1, ®); | |
737 | rt2x00_set_field16(®, MAC_CSR1_SOFT_RESET, 1); | |
738 | rt2x00_set_field16(®, MAC_CSR1_BBP_RESET, 1); | |
739 | rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 0); | |
740 | rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg); | |
741 | ||
742 | rt2500usb_register_read(rt2x00dev, MAC_CSR1, ®); | |
743 | rt2x00_set_field16(®, MAC_CSR1_SOFT_RESET, 0); | |
744 | rt2x00_set_field16(®, MAC_CSR1_BBP_RESET, 0); | |
745 | rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 0); | |
746 | rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg); | |
747 | ||
a9450b70 ID |
748 | rt2500usb_register_read(rt2x00dev, MAC_CSR21, ®); |
749 | rt2x00_set_field16(®, MAC_CSR21_ON_PERIOD, 70); | |
750 | rt2x00_set_field16(®, MAC_CSR21_OFF_PERIOD, 30); | |
751 | rt2500usb_register_write(rt2x00dev, MAC_CSR21, reg); | |
752 | ||
95ea3627 ID |
753 | rt2500usb_register_read(rt2x00dev, TXRX_CSR5, ®); |
754 | rt2x00_set_field16(®, TXRX_CSR5_BBP_ID0, 13); | |
755 | rt2x00_set_field16(®, TXRX_CSR5_BBP_ID0_VALID, 1); | |
756 | rt2x00_set_field16(®, TXRX_CSR5_BBP_ID1, 12); | |
757 | rt2x00_set_field16(®, TXRX_CSR5_BBP_ID1_VALID, 1); | |
758 | rt2500usb_register_write(rt2x00dev, TXRX_CSR5, reg); | |
759 | ||
760 | rt2500usb_register_read(rt2x00dev, TXRX_CSR6, ®); | |
761 | rt2x00_set_field16(®, TXRX_CSR6_BBP_ID0, 10); | |
762 | rt2x00_set_field16(®, TXRX_CSR6_BBP_ID0_VALID, 1); | |
763 | rt2x00_set_field16(®, TXRX_CSR6_BBP_ID1, 11); | |
764 | rt2x00_set_field16(®, TXRX_CSR6_BBP_ID1_VALID, 1); | |
765 | rt2500usb_register_write(rt2x00dev, TXRX_CSR6, reg); | |
766 | ||
767 | rt2500usb_register_read(rt2x00dev, TXRX_CSR7, ®); | |
768 | rt2x00_set_field16(®, TXRX_CSR7_BBP_ID0, 7); | |
769 | rt2x00_set_field16(®, TXRX_CSR7_BBP_ID0_VALID, 1); | |
770 | rt2x00_set_field16(®, TXRX_CSR7_BBP_ID1, 6); | |
771 | rt2x00_set_field16(®, TXRX_CSR7_BBP_ID1_VALID, 1); | |
772 | rt2500usb_register_write(rt2x00dev, TXRX_CSR7, reg); | |
773 | ||
774 | rt2500usb_register_read(rt2x00dev, TXRX_CSR8, ®); | |
775 | rt2x00_set_field16(®, TXRX_CSR8_BBP_ID0, 5); | |
776 | rt2x00_set_field16(®, TXRX_CSR8_BBP_ID0_VALID, 1); | |
777 | rt2x00_set_field16(®, TXRX_CSR8_BBP_ID1, 0); | |
778 | rt2x00_set_field16(®, TXRX_CSR8_BBP_ID1_VALID, 0); | |
779 | rt2500usb_register_write(rt2x00dev, TXRX_CSR8, reg); | |
780 | ||
781 | rt2500usb_register_write(rt2x00dev, TXRX_CSR21, 0xe78f); | |
782 | rt2500usb_register_write(rt2x00dev, MAC_CSR9, 0xff1d); | |
783 | ||
784 | if (rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_AWAKE)) | |
785 | return -EBUSY; | |
786 | ||
787 | rt2500usb_register_read(rt2x00dev, MAC_CSR1, ®); | |
788 | rt2x00_set_field16(®, MAC_CSR1_SOFT_RESET, 0); | |
789 | rt2x00_set_field16(®, MAC_CSR1_BBP_RESET, 0); | |
790 | rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 1); | |
791 | rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg); | |
792 | ||
755a957d | 793 | if (rt2x00_rev(&rt2x00dev->chip) >= RT2570_VERSION_C) { |
95ea3627 | 794 | rt2500usb_register_read(rt2x00dev, PHY_CSR2, ®); |
ddc827f9 | 795 | rt2x00_set_field16(®, PHY_CSR2_LNA, 0); |
95ea3627 | 796 | } else { |
ddc827f9 ID |
797 | reg = 0; |
798 | rt2x00_set_field16(®, PHY_CSR2_LNA, 1); | |
799 | rt2x00_set_field16(®, PHY_CSR2_LNA_MODE, 3); | |
95ea3627 ID |
800 | } |
801 | rt2500usb_register_write(rt2x00dev, PHY_CSR2, reg); | |
802 | ||
803 | rt2500usb_register_write(rt2x00dev, MAC_CSR11, 0x0002); | |
804 | rt2500usb_register_write(rt2x00dev, MAC_CSR22, 0x0053); | |
805 | rt2500usb_register_write(rt2x00dev, MAC_CSR15, 0x01ee); | |
806 | rt2500usb_register_write(rt2x00dev, MAC_CSR16, 0x0000); | |
807 | ||
808 | rt2500usb_register_read(rt2x00dev, MAC_CSR8, ®); | |
809 | rt2x00_set_field16(®, MAC_CSR8_MAX_FRAME_UNIT, | |
810 | rt2x00dev->rx->data_size); | |
811 | rt2500usb_register_write(rt2x00dev, MAC_CSR8, reg); | |
812 | ||
813 | rt2500usb_register_read(rt2x00dev, TXRX_CSR0, ®); | |
814 | rt2x00_set_field16(®, TXRX_CSR0_IV_OFFSET, IEEE80211_HEADER); | |
815 | rt2x00_set_field16(®, TXRX_CSR0_KEY_ID, 0xff); | |
816 | rt2500usb_register_write(rt2x00dev, TXRX_CSR0, reg); | |
817 | ||
818 | rt2500usb_register_read(rt2x00dev, MAC_CSR18, ®); | |
819 | rt2x00_set_field16(®, MAC_CSR18_DELAY_AFTER_BEACON, 90); | |
820 | rt2500usb_register_write(rt2x00dev, MAC_CSR18, reg); | |
821 | ||
822 | rt2500usb_register_read(rt2x00dev, PHY_CSR4, ®); | |
823 | rt2x00_set_field16(®, PHY_CSR4_LOW_RF_LE, 1); | |
824 | rt2500usb_register_write(rt2x00dev, PHY_CSR4, reg); | |
825 | ||
826 | rt2500usb_register_read(rt2x00dev, TXRX_CSR1, ®); | |
827 | rt2x00_set_field16(®, TXRX_CSR1_AUTO_SEQUENCE, 1); | |
828 | rt2500usb_register_write(rt2x00dev, TXRX_CSR1, reg); | |
829 | ||
830 | return 0; | |
831 | } | |
832 | ||
833 | static int rt2500usb_init_bbp(struct rt2x00_dev *rt2x00dev) | |
834 | { | |
835 | unsigned int i; | |
836 | u16 eeprom; | |
837 | u8 value; | |
838 | u8 reg_id; | |
839 | ||
840 | for (i = 0; i < REGISTER_BUSY_COUNT; i++) { | |
841 | rt2500usb_bbp_read(rt2x00dev, 0, &value); | |
842 | if ((value != 0xff) && (value != 0x00)) | |
843 | goto continue_csr_init; | |
844 | NOTICE(rt2x00dev, "Waiting for BBP register.\n"); | |
845 | udelay(REGISTER_BUSY_DELAY); | |
846 | } | |
847 | ||
848 | ERROR(rt2x00dev, "BBP register access failed, aborting.\n"); | |
849 | return -EACCES; | |
850 | ||
851 | continue_csr_init: | |
852 | rt2500usb_bbp_write(rt2x00dev, 3, 0x02); | |
853 | rt2500usb_bbp_write(rt2x00dev, 4, 0x19); | |
854 | rt2500usb_bbp_write(rt2x00dev, 14, 0x1c); | |
855 | rt2500usb_bbp_write(rt2x00dev, 15, 0x30); | |
856 | rt2500usb_bbp_write(rt2x00dev, 16, 0xac); | |
857 | rt2500usb_bbp_write(rt2x00dev, 18, 0x18); | |
858 | rt2500usb_bbp_write(rt2x00dev, 19, 0xff); | |
859 | rt2500usb_bbp_write(rt2x00dev, 20, 0x1e); | |
860 | rt2500usb_bbp_write(rt2x00dev, 21, 0x08); | |
861 | rt2500usb_bbp_write(rt2x00dev, 22, 0x08); | |
862 | rt2500usb_bbp_write(rt2x00dev, 23, 0x08); | |
863 | rt2500usb_bbp_write(rt2x00dev, 24, 0x80); | |
864 | rt2500usb_bbp_write(rt2x00dev, 25, 0x50); | |
865 | rt2500usb_bbp_write(rt2x00dev, 26, 0x08); | |
866 | rt2500usb_bbp_write(rt2x00dev, 27, 0x23); | |
867 | rt2500usb_bbp_write(rt2x00dev, 30, 0x10); | |
868 | rt2500usb_bbp_write(rt2x00dev, 31, 0x2b); | |
869 | rt2500usb_bbp_write(rt2x00dev, 32, 0xb9); | |
870 | rt2500usb_bbp_write(rt2x00dev, 34, 0x12); | |
871 | rt2500usb_bbp_write(rt2x00dev, 35, 0x50); | |
872 | rt2500usb_bbp_write(rt2x00dev, 39, 0xc4); | |
873 | rt2500usb_bbp_write(rt2x00dev, 40, 0x02); | |
874 | rt2500usb_bbp_write(rt2x00dev, 41, 0x60); | |
875 | rt2500usb_bbp_write(rt2x00dev, 53, 0x10); | |
876 | rt2500usb_bbp_write(rt2x00dev, 54, 0x18); | |
877 | rt2500usb_bbp_write(rt2x00dev, 56, 0x08); | |
878 | rt2500usb_bbp_write(rt2x00dev, 57, 0x10); | |
879 | rt2500usb_bbp_write(rt2x00dev, 58, 0x08); | |
880 | rt2500usb_bbp_write(rt2x00dev, 61, 0x60); | |
881 | rt2500usb_bbp_write(rt2x00dev, 62, 0x10); | |
882 | rt2500usb_bbp_write(rt2x00dev, 75, 0xff); | |
883 | ||
95ea3627 ID |
884 | for (i = 0; i < EEPROM_BBP_SIZE; i++) { |
885 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom); | |
886 | ||
887 | if (eeprom != 0xffff && eeprom != 0x0000) { | |
888 | reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID); | |
889 | value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE); | |
95ea3627 ID |
890 | rt2500usb_bbp_write(rt2x00dev, reg_id, value); |
891 | } | |
892 | } | |
95ea3627 ID |
893 | |
894 | return 0; | |
895 | } | |
896 | ||
897 | /* | |
898 | * Device state switch handlers. | |
899 | */ | |
900 | static void rt2500usb_toggle_rx(struct rt2x00_dev *rt2x00dev, | |
901 | enum dev_state state) | |
902 | { | |
903 | u16 reg; | |
904 | ||
905 | rt2500usb_register_read(rt2x00dev, TXRX_CSR2, ®); | |
906 | rt2x00_set_field16(®, TXRX_CSR2_DISABLE_RX, | |
907 | state == STATE_RADIO_RX_OFF); | |
908 | rt2500usb_register_write(rt2x00dev, TXRX_CSR2, reg); | |
909 | } | |
910 | ||
911 | static int rt2500usb_enable_radio(struct rt2x00_dev *rt2x00dev) | |
912 | { | |
913 | /* | |
914 | * Initialize all registers. | |
915 | */ | |
916 | if (rt2500usb_init_registers(rt2x00dev) || | |
917 | rt2500usb_init_bbp(rt2x00dev)) { | |
918 | ERROR(rt2x00dev, "Register initialization failed.\n"); | |
919 | return -EIO; | |
920 | } | |
921 | ||
95ea3627 ID |
922 | return 0; |
923 | } | |
924 | ||
925 | static void rt2500usb_disable_radio(struct rt2x00_dev *rt2x00dev) | |
926 | { | |
95ea3627 ID |
927 | rt2500usb_register_write(rt2x00dev, MAC_CSR13, 0x2121); |
928 | rt2500usb_register_write(rt2x00dev, MAC_CSR14, 0x2121); | |
929 | ||
930 | /* | |
931 | * Disable synchronisation. | |
932 | */ | |
933 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0); | |
934 | ||
935 | rt2x00usb_disable_radio(rt2x00dev); | |
936 | } | |
937 | ||
938 | static int rt2500usb_set_state(struct rt2x00_dev *rt2x00dev, | |
939 | enum dev_state state) | |
940 | { | |
941 | u16 reg; | |
942 | u16 reg2; | |
943 | unsigned int i; | |
944 | char put_to_sleep; | |
945 | char bbp_state; | |
946 | char rf_state; | |
947 | ||
948 | put_to_sleep = (state != STATE_AWAKE); | |
949 | ||
950 | reg = 0; | |
951 | rt2x00_set_field16(®, MAC_CSR17_BBP_DESIRE_STATE, state); | |
952 | rt2x00_set_field16(®, MAC_CSR17_RF_DESIRE_STATE, state); | |
953 | rt2x00_set_field16(®, MAC_CSR17_PUT_TO_SLEEP, put_to_sleep); | |
954 | rt2500usb_register_write(rt2x00dev, MAC_CSR17, reg); | |
955 | rt2x00_set_field16(®, MAC_CSR17_SET_STATE, 1); | |
956 | rt2500usb_register_write(rt2x00dev, MAC_CSR17, reg); | |
957 | ||
958 | /* | |
959 | * Device is not guaranteed to be in the requested state yet. | |
960 | * We must wait until the register indicates that the | |
961 | * device has entered the correct state. | |
962 | */ | |
963 | for (i = 0; i < REGISTER_BUSY_COUNT; i++) { | |
964 | rt2500usb_register_read(rt2x00dev, MAC_CSR17, ®2); | |
965 | bbp_state = rt2x00_get_field16(reg2, MAC_CSR17_BBP_CURR_STATE); | |
966 | rf_state = rt2x00_get_field16(reg2, MAC_CSR17_RF_CURR_STATE); | |
967 | if (bbp_state == state && rf_state == state) | |
968 | return 0; | |
969 | rt2500usb_register_write(rt2x00dev, MAC_CSR17, reg); | |
970 | msleep(30); | |
971 | } | |
972 | ||
973 | NOTICE(rt2x00dev, "Device failed to enter state %d, " | |
974 | "current device state: bbp %d and rf %d.\n", | |
975 | state, bbp_state, rf_state); | |
976 | ||
977 | return -EBUSY; | |
978 | } | |
979 | ||
980 | static int rt2500usb_set_device_state(struct rt2x00_dev *rt2x00dev, | |
981 | enum dev_state state) | |
982 | { | |
983 | int retval = 0; | |
984 | ||
985 | switch (state) { | |
986 | case STATE_RADIO_ON: | |
987 | retval = rt2500usb_enable_radio(rt2x00dev); | |
988 | break; | |
989 | case STATE_RADIO_OFF: | |
990 | rt2500usb_disable_radio(rt2x00dev); | |
991 | break; | |
992 | case STATE_RADIO_RX_ON: | |
61667d8d ID |
993 | case STATE_RADIO_RX_ON_LINK: |
994 | rt2500usb_toggle_rx(rt2x00dev, STATE_RADIO_RX_ON); | |
995 | break; | |
95ea3627 | 996 | case STATE_RADIO_RX_OFF: |
61667d8d ID |
997 | case STATE_RADIO_RX_OFF_LINK: |
998 | rt2500usb_toggle_rx(rt2x00dev, STATE_RADIO_RX_OFF); | |
95ea3627 ID |
999 | break; |
1000 | case STATE_DEEP_SLEEP: | |
1001 | case STATE_SLEEP: | |
1002 | case STATE_STANDBY: | |
1003 | case STATE_AWAKE: | |
1004 | retval = rt2500usb_set_state(rt2x00dev, state); | |
1005 | break; | |
1006 | default: | |
1007 | retval = -ENOTSUPP; | |
1008 | break; | |
1009 | } | |
1010 | ||
1011 | return retval; | |
1012 | } | |
1013 | ||
1014 | /* | |
1015 | * TX descriptor initialization | |
1016 | */ | |
1017 | static void rt2500usb_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |
dd3193e1 | 1018 | struct sk_buff *skb, |
181d6902 | 1019 | struct txentry_desc *txdesc, |
95ea3627 ID |
1020 | struct ieee80211_tx_control *control) |
1021 | { | |
181d6902 | 1022 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); |
dd3193e1 | 1023 | __le32 *txd = skbdesc->desc; |
95ea3627 ID |
1024 | u32 word; |
1025 | ||
1026 | /* | |
1027 | * Start writing the descriptor words. | |
1028 | */ | |
1029 | rt2x00_desc_read(txd, 1, &word); | |
1030 | rt2x00_set_field32(&word, TXD_W1_IV_OFFSET, IEEE80211_HEADER); | |
181d6902 ID |
1031 | rt2x00_set_field32(&word, TXD_W1_AIFS, txdesc->aifs); |
1032 | rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min); | |
1033 | rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max); | |
95ea3627 ID |
1034 | rt2x00_desc_write(txd, 1, word); |
1035 | ||
1036 | rt2x00_desc_read(txd, 2, &word); | |
181d6902 ID |
1037 | rt2x00_set_field32(&word, TXD_W2_PLCP_SIGNAL, txdesc->signal); |
1038 | rt2x00_set_field32(&word, TXD_W2_PLCP_SERVICE, txdesc->service); | |
1039 | rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_LOW, txdesc->length_low); | |
1040 | rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_HIGH, txdesc->length_high); | |
95ea3627 ID |
1041 | rt2x00_desc_write(txd, 2, word); |
1042 | ||
1043 | rt2x00_desc_read(txd, 0, &word); | |
1044 | rt2x00_set_field32(&word, TXD_W0_RETRY_LIMIT, control->retry_limit); | |
1045 | rt2x00_set_field32(&word, TXD_W0_MORE_FRAG, | |
181d6902 | 1046 | test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags)); |
95ea3627 | 1047 | rt2x00_set_field32(&word, TXD_W0_ACK, |
181d6902 | 1048 | test_bit(ENTRY_TXD_ACK, &txdesc->flags)); |
95ea3627 | 1049 | rt2x00_set_field32(&word, TXD_W0_TIMESTAMP, |
181d6902 | 1050 | test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags)); |
95ea3627 | 1051 | rt2x00_set_field32(&word, TXD_W0_OFDM, |
181d6902 | 1052 | test_bit(ENTRY_TXD_OFDM_RATE, &txdesc->flags)); |
95ea3627 ID |
1053 | rt2x00_set_field32(&word, TXD_W0_NEW_SEQ, |
1054 | !!(control->flags & IEEE80211_TXCTL_FIRST_FRAGMENT)); | |
181d6902 | 1055 | rt2x00_set_field32(&word, TXD_W0_IFS, txdesc->ifs); |
dd3193e1 | 1056 | rt2x00_set_field32(&word, TXD_W0_DATABYTE_COUNT, skbdesc->data_len); |
95ea3627 ID |
1057 | rt2x00_set_field32(&word, TXD_W0_CIPHER, CIPHER_NONE); |
1058 | rt2x00_desc_write(txd, 0, word); | |
1059 | } | |
1060 | ||
dd9fa2d2 | 1061 | static int rt2500usb_get_tx_data_len(struct rt2x00_dev *rt2x00dev, |
b242e891 | 1062 | struct sk_buff *skb) |
dd9fa2d2 ID |
1063 | { |
1064 | int length; | |
1065 | ||
1066 | /* | |
1067 | * The length _must_ be a multiple of 2, | |
1068 | * but it must _not_ be a multiple of the USB packet size. | |
1069 | */ | |
1070 | length = roundup(skb->len, 2); | |
b242e891 | 1071 | length += (2 * !(length % rt2x00dev->usb_maxpacket)); |
dd9fa2d2 ID |
1072 | |
1073 | return length; | |
1074 | } | |
1075 | ||
95ea3627 ID |
1076 | /* |
1077 | * TX data initialization | |
1078 | */ | |
1079 | static void rt2500usb_kick_tx_queue(struct rt2x00_dev *rt2x00dev, | |
5957da4c | 1080 | const unsigned int queue) |
95ea3627 ID |
1081 | { |
1082 | u16 reg; | |
1083 | ||
5957da4c | 1084 | if (queue != RT2X00_BCN_QUEUE_BEACON) |
95ea3627 ID |
1085 | return; |
1086 | ||
1087 | rt2500usb_register_read(rt2x00dev, TXRX_CSR19, ®); | |
1088 | if (!rt2x00_get_field16(reg, TXRX_CSR19_BEACON_GEN)) { | |
1089 | rt2x00_set_field16(®, TXRX_CSR19_BEACON_GEN, 1); | |
1090 | /* | |
1091 | * Beacon generation will fail initially. | |
1092 | * To prevent this we need to register the TXRX_CSR19 | |
1093 | * register several times. | |
1094 | */ | |
1095 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg); | |
1096 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0); | |
1097 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg); | |
1098 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, 0); | |
1099 | rt2500usb_register_write(rt2x00dev, TXRX_CSR19, reg); | |
1100 | } | |
1101 | } | |
1102 | ||
1103 | /* | |
1104 | * RX control handlers | |
1105 | */ | |
181d6902 ID |
1106 | static void rt2500usb_fill_rxdone(struct queue_entry *entry, |
1107 | struct rxdone_entry_desc *rxdesc) | |
95ea3627 | 1108 | { |
181d6902 ID |
1109 | struct queue_entry_priv_usb_rx *priv_rx = entry->priv_data; |
1110 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb); | |
1111 | __le32 *rxd = | |
1112 | (__le32 *)(entry->skb->data + | |
1113 | (priv_rx->urb->actual_length - entry->queue->desc_size)); | |
1114 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data; | |
1115 | int header_size = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)); | |
95ea3627 ID |
1116 | u32 word0; |
1117 | u32 word1; | |
1118 | ||
1119 | rt2x00_desc_read(rxd, 0, &word0); | |
1120 | rt2x00_desc_read(rxd, 1, &word1); | |
1121 | ||
181d6902 | 1122 | rxdesc->flags = 0; |
4150c572 | 1123 | if (rt2x00_get_field32(word0, RXD_W0_CRC_ERROR)) |
181d6902 | 1124 | rxdesc->flags |= RX_FLAG_FAILED_FCS_CRC; |
4150c572 | 1125 | if (rt2x00_get_field32(word0, RXD_W0_PHYSICAL_ERROR)) |
181d6902 | 1126 | rxdesc->flags |= RX_FLAG_FAILED_PLCP_CRC; |
95ea3627 ID |
1127 | |
1128 | /* | |
1129 | * Obtain the status about this packet. | |
1130 | */ | |
181d6902 ID |
1131 | rxdesc->signal = rt2x00_get_field32(word1, RXD_W1_SIGNAL); |
1132 | rxdesc->rssi = rt2x00_get_field32(word1, RXD_W1_RSSI) - | |
1133 | entry->queue->rt2x00dev->rssi_offset; | |
1134 | rxdesc->ofdm = rt2x00_get_field32(word0, RXD_W0_OFDM); | |
1135 | rxdesc->size = rt2x00_get_field32(word0, RXD_W0_DATABYTE_COUNT); | |
1136 | rxdesc->my_bss = !!rt2x00_get_field32(word0, RXD_W0_MY_BSS); | |
7d1de806 | 1137 | |
7d1de806 | 1138 | /* |
181d6902 ID |
1139 | * The data behind the ieee80211 header must be |
1140 | * aligned on a 4 byte boundary. | |
1141 | */ | |
1142 | if (header_size % 4 == 0) { | |
1143 | skb_push(entry->skb, 2); | |
1144 | memmove(entry->skb->data, entry->skb->data + 2, | |
1145 | entry->skb->len - 2); | |
1146 | } | |
1147 | ||
1148 | /* | |
1149 | * Set descriptor pointer. | |
7d1de806 | 1150 | */ |
7d1de806 | 1151 | skbdesc->data = entry->skb->data; |
647d0ca9 | 1152 | skbdesc->data_len = rxdesc->size; |
181d6902 ID |
1153 | skbdesc->desc = entry->skb->data + rxdesc->size; |
1154 | skbdesc->desc_len = entry->queue->desc_size; | |
1155 | ||
1156 | /* | |
1157 | * Remove descriptor from skb buffer and trim the whole thing | |
1158 | * down to only contain data. | |
1159 | */ | |
1160 | skb_trim(entry->skb, rxdesc->size); | |
95ea3627 ID |
1161 | } |
1162 | ||
1163 | /* | |
1164 | * Interrupt functions. | |
1165 | */ | |
1166 | static void rt2500usb_beacondone(struct urb *urb) | |
1167 | { | |
181d6902 ID |
1168 | struct queue_entry *entry = (struct queue_entry *)urb->context; |
1169 | struct queue_entry_priv_usb_bcn *priv_bcn = entry->priv_data; | |
95ea3627 | 1170 | |
181d6902 | 1171 | if (!test_bit(DEVICE_ENABLED_RADIO, &entry->queue->rt2x00dev->flags)) |
95ea3627 ID |
1172 | return; |
1173 | ||
1174 | /* | |
1175 | * Check if this was the guardian beacon, | |
1176 | * if that was the case we need to send the real beacon now. | |
1177 | * Otherwise we should free the sk_buffer, the device | |
1178 | * should be doing the rest of the work now. | |
1179 | */ | |
181d6902 ID |
1180 | if (priv_bcn->guardian_urb == urb) { |
1181 | usb_submit_urb(priv_bcn->urb, GFP_ATOMIC); | |
1182 | } else if (priv_bcn->urb == urb) { | |
1183 | dev_kfree_skb(entry->skb); | |
1184 | entry->skb = NULL; | |
95ea3627 ID |
1185 | } |
1186 | } | |
1187 | ||
1188 | /* | |
1189 | * Device probe functions. | |
1190 | */ | |
1191 | static int rt2500usb_validate_eeprom(struct rt2x00_dev *rt2x00dev) | |
1192 | { | |
1193 | u16 word; | |
1194 | u8 *mac; | |
6bb40dd1 | 1195 | u8 bbp; |
95ea3627 ID |
1196 | |
1197 | rt2x00usb_eeprom_read(rt2x00dev, rt2x00dev->eeprom, EEPROM_SIZE); | |
1198 | ||
1199 | /* | |
1200 | * Start validation of the data that has been read. | |
1201 | */ | |
1202 | mac = rt2x00_eeprom_addr(rt2x00dev, EEPROM_MAC_ADDR_0); | |
1203 | if (!is_valid_ether_addr(mac)) { | |
0795af57 JP |
1204 | DECLARE_MAC_BUF(macbuf); |
1205 | ||
95ea3627 | 1206 | random_ether_addr(mac); |
0795af57 | 1207 | EEPROM(rt2x00dev, "MAC: %s\n", print_mac(macbuf, mac)); |
95ea3627 ID |
1208 | } |
1209 | ||
1210 | rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &word); | |
1211 | if (word == 0xffff) { | |
1212 | rt2x00_set_field16(&word, EEPROM_ANTENNA_NUM, 2); | |
362f3b6b ID |
1213 | rt2x00_set_field16(&word, EEPROM_ANTENNA_TX_DEFAULT, |
1214 | ANTENNA_SW_DIVERSITY); | |
1215 | rt2x00_set_field16(&word, EEPROM_ANTENNA_RX_DEFAULT, | |
1216 | ANTENNA_SW_DIVERSITY); | |
1217 | rt2x00_set_field16(&word, EEPROM_ANTENNA_LED_MODE, | |
1218 | LED_MODE_DEFAULT); | |
95ea3627 ID |
1219 | rt2x00_set_field16(&word, EEPROM_ANTENNA_DYN_TXAGC, 0); |
1220 | rt2x00_set_field16(&word, EEPROM_ANTENNA_HARDWARE_RADIO, 0); | |
1221 | rt2x00_set_field16(&word, EEPROM_ANTENNA_RF_TYPE, RF2522); | |
1222 | rt2x00_eeprom_write(rt2x00dev, EEPROM_ANTENNA, word); | |
1223 | EEPROM(rt2x00dev, "Antenna: 0x%04x\n", word); | |
1224 | } | |
1225 | ||
1226 | rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &word); | |
1227 | if (word == 0xffff) { | |
1228 | rt2x00_set_field16(&word, EEPROM_NIC_CARDBUS_ACCEL, 0); | |
1229 | rt2x00_set_field16(&word, EEPROM_NIC_DYN_BBP_TUNE, 0); | |
1230 | rt2x00_set_field16(&word, EEPROM_NIC_CCK_TX_POWER, 0); | |
1231 | rt2x00_eeprom_write(rt2x00dev, EEPROM_NIC, word); | |
1232 | EEPROM(rt2x00dev, "NIC: 0x%04x\n", word); | |
1233 | } | |
1234 | ||
1235 | rt2x00_eeprom_read(rt2x00dev, EEPROM_CALIBRATE_OFFSET, &word); | |
1236 | if (word == 0xffff) { | |
1237 | rt2x00_set_field16(&word, EEPROM_CALIBRATE_OFFSET_RSSI, | |
1238 | DEFAULT_RSSI_OFFSET); | |
1239 | rt2x00_eeprom_write(rt2x00dev, EEPROM_CALIBRATE_OFFSET, word); | |
1240 | EEPROM(rt2x00dev, "Calibrate offset: 0x%04x\n", word); | |
1241 | } | |
1242 | ||
1243 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE, &word); | |
1244 | if (word == 0xffff) { | |
1245 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_THRESHOLD, 45); | |
1246 | rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE, word); | |
1247 | EEPROM(rt2x00dev, "BBPtune: 0x%04x\n", word); | |
1248 | } | |
1249 | ||
6bb40dd1 ID |
1250 | /* |
1251 | * Switch lower vgc bound to current BBP R17 value, | |
1252 | * lower the value a bit for better quality. | |
1253 | */ | |
1254 | rt2500usb_bbp_read(rt2x00dev, 17, &bbp); | |
1255 | bbp -= 6; | |
1256 | ||
95ea3627 ID |
1257 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_VGC, &word); |
1258 | if (word == 0xffff) { | |
1259 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_VGCUPPER, 0x40); | |
6bb40dd1 | 1260 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_VGCLOWER, bbp); |
95ea3627 ID |
1261 | rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_VGC, word); |
1262 | EEPROM(rt2x00dev, "BBPtune vgc: 0x%04x\n", word); | |
1263 | } | |
1264 | ||
1265 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R17, &word); | |
1266 | if (word == 0xffff) { | |
1267 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R17_LOW, 0x48); | |
1268 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R17_HIGH, 0x41); | |
1269 | rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R17, word); | |
1270 | EEPROM(rt2x00dev, "BBPtune r17: 0x%04x\n", word); | |
6bb40dd1 ID |
1271 | } else { |
1272 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_VGCLOWER, bbp); | |
1273 | rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_VGC, word); | |
95ea3627 ID |
1274 | } |
1275 | ||
1276 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R24, &word); | |
1277 | if (word == 0xffff) { | |
1278 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R24_LOW, 0x40); | |
1279 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R24_HIGH, 0x80); | |
1280 | rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R24, word); | |
1281 | EEPROM(rt2x00dev, "BBPtune r24: 0x%04x\n", word); | |
1282 | } | |
1283 | ||
1284 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R25, &word); | |
1285 | if (word == 0xffff) { | |
1286 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R25_LOW, 0x40); | |
1287 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R25_HIGH, 0x50); | |
1288 | rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R25, word); | |
1289 | EEPROM(rt2x00dev, "BBPtune r25: 0x%04x\n", word); | |
1290 | } | |
1291 | ||
1292 | rt2x00_eeprom_read(rt2x00dev, EEPROM_BBPTUNE_R61, &word); | |
1293 | if (word == 0xffff) { | |
1294 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R61_LOW, 0x60); | |
1295 | rt2x00_set_field16(&word, EEPROM_BBPTUNE_R61_HIGH, 0x6d); | |
1296 | rt2x00_eeprom_write(rt2x00dev, EEPROM_BBPTUNE_R61, word); | |
1297 | EEPROM(rt2x00dev, "BBPtune r61: 0x%04x\n", word); | |
1298 | } | |
1299 | ||
1300 | return 0; | |
1301 | } | |
1302 | ||
1303 | static int rt2500usb_init_eeprom(struct rt2x00_dev *rt2x00dev) | |
1304 | { | |
1305 | u16 reg; | |
1306 | u16 value; | |
1307 | u16 eeprom; | |
1308 | ||
1309 | /* | |
1310 | * Read EEPROM word for configuration. | |
1311 | */ | |
1312 | rt2x00_eeprom_read(rt2x00dev, EEPROM_ANTENNA, &eeprom); | |
1313 | ||
1314 | /* | |
1315 | * Identify RF chipset. | |
1316 | */ | |
1317 | value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RF_TYPE); | |
1318 | rt2500usb_register_read(rt2x00dev, MAC_CSR0, ®); | |
1319 | rt2x00_set_chip(rt2x00dev, RT2570, value, reg); | |
1320 | ||
755a957d | 1321 | if (!rt2x00_check_rev(&rt2x00dev->chip, 0)) { |
95ea3627 ID |
1322 | ERROR(rt2x00dev, "Invalid RT chipset detected.\n"); |
1323 | return -ENODEV; | |
1324 | } | |
1325 | ||
1326 | if (!rt2x00_rf(&rt2x00dev->chip, RF2522) && | |
1327 | !rt2x00_rf(&rt2x00dev->chip, RF2523) && | |
1328 | !rt2x00_rf(&rt2x00dev->chip, RF2524) && | |
1329 | !rt2x00_rf(&rt2x00dev->chip, RF2525) && | |
1330 | !rt2x00_rf(&rt2x00dev->chip, RF2525E) && | |
1331 | !rt2x00_rf(&rt2x00dev->chip, RF5222)) { | |
1332 | ERROR(rt2x00dev, "Invalid RF chipset detected.\n"); | |
1333 | return -ENODEV; | |
1334 | } | |
1335 | ||
1336 | /* | |
1337 | * Identify default antenna configuration. | |
1338 | */ | |
addc81bd | 1339 | rt2x00dev->default_ant.tx = |
95ea3627 | 1340 | rt2x00_get_field16(eeprom, EEPROM_ANTENNA_TX_DEFAULT); |
addc81bd | 1341 | rt2x00dev->default_ant.rx = |
95ea3627 ID |
1342 | rt2x00_get_field16(eeprom, EEPROM_ANTENNA_RX_DEFAULT); |
1343 | ||
addc81bd ID |
1344 | /* |
1345 | * When the eeprom indicates SW_DIVERSITY use HW_DIVERSITY instead. | |
1346 | * I am not 100% sure about this, but the legacy drivers do not | |
1347 | * indicate antenna swapping in software is required when | |
1348 | * diversity is enabled. | |
1349 | */ | |
1350 | if (rt2x00dev->default_ant.tx == ANTENNA_SW_DIVERSITY) | |
1351 | rt2x00dev->default_ant.tx = ANTENNA_HW_DIVERSITY; | |
1352 | if (rt2x00dev->default_ant.rx == ANTENNA_SW_DIVERSITY) | |
1353 | rt2x00dev->default_ant.rx = ANTENNA_HW_DIVERSITY; | |
1354 | ||
95ea3627 ID |
1355 | /* |
1356 | * Store led mode, for correct led behaviour. | |
1357 | */ | |
a9450b70 ID |
1358 | #ifdef CONFIG_RT2500USB_LEDS |
1359 | value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_LED_MODE); | |
1360 | ||
1361 | switch (value) { | |
1362 | case LED_MODE_ASUS: | |
1363 | case LED_MODE_ALPHA: | |
1364 | case LED_MODE_DEFAULT: | |
1365 | rt2x00dev->led_flags = LED_SUPPORT_RADIO; | |
1366 | break; | |
1367 | case LED_MODE_TXRX_ACTIVITY: | |
1368 | rt2x00dev->led_flags = | |
1369 | LED_SUPPORT_RADIO | LED_SUPPORT_ACTIVITY; | |
1370 | break; | |
1371 | case LED_MODE_SIGNAL_STRENGTH: | |
1372 | rt2x00dev->led_flags = LED_SUPPORT_RADIO; | |
1373 | break; | |
1374 | } | |
3b640f21 ID |
1375 | |
1376 | /* | |
1377 | * Store the current led register value, we need it later | |
1378 | * in set_brightness but that is called in irq context which | |
1379 | * means we can't use rt2500usb_register_read() at that time. | |
1380 | */ | |
1381 | rt2500usb_register_read(rt2x00dev, MAC_CSR20, &rt2x00dev->led_mcu_reg); | |
a9450b70 | 1382 | #endif /* CONFIG_RT2500USB_LEDS */ |
95ea3627 ID |
1383 | |
1384 | /* | |
1385 | * Check if the BBP tuning should be disabled. | |
1386 | */ | |
1387 | rt2x00_eeprom_read(rt2x00dev, EEPROM_NIC, &eeprom); | |
1388 | if (rt2x00_get_field16(eeprom, EEPROM_NIC_DYN_BBP_TUNE)) | |
1389 | __set_bit(CONFIG_DISABLE_LINK_TUNING, &rt2x00dev->flags); | |
1390 | ||
1391 | /* | |
1392 | * Read the RSSI <-> dBm offset information. | |
1393 | */ | |
1394 | rt2x00_eeprom_read(rt2x00dev, EEPROM_CALIBRATE_OFFSET, &eeprom); | |
1395 | rt2x00dev->rssi_offset = | |
1396 | rt2x00_get_field16(eeprom, EEPROM_CALIBRATE_OFFSET_RSSI); | |
1397 | ||
1398 | return 0; | |
1399 | } | |
1400 | ||
1401 | /* | |
1402 | * RF value list for RF2522 | |
1403 | * Supports: 2.4 GHz | |
1404 | */ | |
1405 | static const struct rf_channel rf_vals_bg_2522[] = { | |
1406 | { 1, 0x00002050, 0x000c1fda, 0x00000101, 0 }, | |
1407 | { 2, 0x00002050, 0x000c1fee, 0x00000101, 0 }, | |
1408 | { 3, 0x00002050, 0x000c2002, 0x00000101, 0 }, | |
1409 | { 4, 0x00002050, 0x000c2016, 0x00000101, 0 }, | |
1410 | { 5, 0x00002050, 0x000c202a, 0x00000101, 0 }, | |
1411 | { 6, 0x00002050, 0x000c203e, 0x00000101, 0 }, | |
1412 | { 7, 0x00002050, 0x000c2052, 0x00000101, 0 }, | |
1413 | { 8, 0x00002050, 0x000c2066, 0x00000101, 0 }, | |
1414 | { 9, 0x00002050, 0x000c207a, 0x00000101, 0 }, | |
1415 | { 10, 0x00002050, 0x000c208e, 0x00000101, 0 }, | |
1416 | { 11, 0x00002050, 0x000c20a2, 0x00000101, 0 }, | |
1417 | { 12, 0x00002050, 0x000c20b6, 0x00000101, 0 }, | |
1418 | { 13, 0x00002050, 0x000c20ca, 0x00000101, 0 }, | |
1419 | { 14, 0x00002050, 0x000c20fa, 0x00000101, 0 }, | |
1420 | }; | |
1421 | ||
1422 | /* | |
1423 | * RF value list for RF2523 | |
1424 | * Supports: 2.4 GHz | |
1425 | */ | |
1426 | static const struct rf_channel rf_vals_bg_2523[] = { | |
1427 | { 1, 0x00022010, 0x00000c9e, 0x000e0111, 0x00000a1b }, | |
1428 | { 2, 0x00022010, 0x00000ca2, 0x000e0111, 0x00000a1b }, | |
1429 | { 3, 0x00022010, 0x00000ca6, 0x000e0111, 0x00000a1b }, | |
1430 | { 4, 0x00022010, 0x00000caa, 0x000e0111, 0x00000a1b }, | |
1431 | { 5, 0x00022010, 0x00000cae, 0x000e0111, 0x00000a1b }, | |
1432 | { 6, 0x00022010, 0x00000cb2, 0x000e0111, 0x00000a1b }, | |
1433 | { 7, 0x00022010, 0x00000cb6, 0x000e0111, 0x00000a1b }, | |
1434 | { 8, 0x00022010, 0x00000cba, 0x000e0111, 0x00000a1b }, | |
1435 | { 9, 0x00022010, 0x00000cbe, 0x000e0111, 0x00000a1b }, | |
1436 | { 10, 0x00022010, 0x00000d02, 0x000e0111, 0x00000a1b }, | |
1437 | { 11, 0x00022010, 0x00000d06, 0x000e0111, 0x00000a1b }, | |
1438 | { 12, 0x00022010, 0x00000d0a, 0x000e0111, 0x00000a1b }, | |
1439 | { 13, 0x00022010, 0x00000d0e, 0x000e0111, 0x00000a1b }, | |
1440 | { 14, 0x00022010, 0x00000d1a, 0x000e0111, 0x00000a03 }, | |
1441 | }; | |
1442 | ||
1443 | /* | |
1444 | * RF value list for RF2524 | |
1445 | * Supports: 2.4 GHz | |
1446 | */ | |
1447 | static const struct rf_channel rf_vals_bg_2524[] = { | |
1448 | { 1, 0x00032020, 0x00000c9e, 0x00000101, 0x00000a1b }, | |
1449 | { 2, 0x00032020, 0x00000ca2, 0x00000101, 0x00000a1b }, | |
1450 | { 3, 0x00032020, 0x00000ca6, 0x00000101, 0x00000a1b }, | |
1451 | { 4, 0x00032020, 0x00000caa, 0x00000101, 0x00000a1b }, | |
1452 | { 5, 0x00032020, 0x00000cae, 0x00000101, 0x00000a1b }, | |
1453 | { 6, 0x00032020, 0x00000cb2, 0x00000101, 0x00000a1b }, | |
1454 | { 7, 0x00032020, 0x00000cb6, 0x00000101, 0x00000a1b }, | |
1455 | { 8, 0x00032020, 0x00000cba, 0x00000101, 0x00000a1b }, | |
1456 | { 9, 0x00032020, 0x00000cbe, 0x00000101, 0x00000a1b }, | |
1457 | { 10, 0x00032020, 0x00000d02, 0x00000101, 0x00000a1b }, | |
1458 | { 11, 0x00032020, 0x00000d06, 0x00000101, 0x00000a1b }, | |
1459 | { 12, 0x00032020, 0x00000d0a, 0x00000101, 0x00000a1b }, | |
1460 | { 13, 0x00032020, 0x00000d0e, 0x00000101, 0x00000a1b }, | |
1461 | { 14, 0x00032020, 0x00000d1a, 0x00000101, 0x00000a03 }, | |
1462 | }; | |
1463 | ||
1464 | /* | |
1465 | * RF value list for RF2525 | |
1466 | * Supports: 2.4 GHz | |
1467 | */ | |
1468 | static const struct rf_channel rf_vals_bg_2525[] = { | |
1469 | { 1, 0x00022020, 0x00080c9e, 0x00060111, 0x00000a1b }, | |
1470 | { 2, 0x00022020, 0x00080ca2, 0x00060111, 0x00000a1b }, | |
1471 | { 3, 0x00022020, 0x00080ca6, 0x00060111, 0x00000a1b }, | |
1472 | { 4, 0x00022020, 0x00080caa, 0x00060111, 0x00000a1b }, | |
1473 | { 5, 0x00022020, 0x00080cae, 0x00060111, 0x00000a1b }, | |
1474 | { 6, 0x00022020, 0x00080cb2, 0x00060111, 0x00000a1b }, | |
1475 | { 7, 0x00022020, 0x00080cb6, 0x00060111, 0x00000a1b }, | |
1476 | { 8, 0x00022020, 0x00080cba, 0x00060111, 0x00000a1b }, | |
1477 | { 9, 0x00022020, 0x00080cbe, 0x00060111, 0x00000a1b }, | |
1478 | { 10, 0x00022020, 0x00080d02, 0x00060111, 0x00000a1b }, | |
1479 | { 11, 0x00022020, 0x00080d06, 0x00060111, 0x00000a1b }, | |
1480 | { 12, 0x00022020, 0x00080d0a, 0x00060111, 0x00000a1b }, | |
1481 | { 13, 0x00022020, 0x00080d0e, 0x00060111, 0x00000a1b }, | |
1482 | { 14, 0x00022020, 0x00080d1a, 0x00060111, 0x00000a03 }, | |
1483 | }; | |
1484 | ||
1485 | /* | |
1486 | * RF value list for RF2525e | |
1487 | * Supports: 2.4 GHz | |
1488 | */ | |
1489 | static const struct rf_channel rf_vals_bg_2525e[] = { | |
1490 | { 1, 0x00022010, 0x0000089a, 0x00060111, 0x00000e1b }, | |
1491 | { 2, 0x00022010, 0x0000089e, 0x00060111, 0x00000e07 }, | |
1492 | { 3, 0x00022010, 0x0000089e, 0x00060111, 0x00000e1b }, | |
1493 | { 4, 0x00022010, 0x000008a2, 0x00060111, 0x00000e07 }, | |
1494 | { 5, 0x00022010, 0x000008a2, 0x00060111, 0x00000e1b }, | |
1495 | { 6, 0x00022010, 0x000008a6, 0x00060111, 0x00000e07 }, | |
1496 | { 7, 0x00022010, 0x000008a6, 0x00060111, 0x00000e1b }, | |
1497 | { 8, 0x00022010, 0x000008aa, 0x00060111, 0x00000e07 }, | |
1498 | { 9, 0x00022010, 0x000008aa, 0x00060111, 0x00000e1b }, | |
1499 | { 10, 0x00022010, 0x000008ae, 0x00060111, 0x00000e07 }, | |
1500 | { 11, 0x00022010, 0x000008ae, 0x00060111, 0x00000e1b }, | |
1501 | { 12, 0x00022010, 0x000008b2, 0x00060111, 0x00000e07 }, | |
1502 | { 13, 0x00022010, 0x000008b2, 0x00060111, 0x00000e1b }, | |
1503 | { 14, 0x00022010, 0x000008b6, 0x00060111, 0x00000e23 }, | |
1504 | }; | |
1505 | ||
1506 | /* | |
1507 | * RF value list for RF5222 | |
1508 | * Supports: 2.4 GHz & 5.2 GHz | |
1509 | */ | |
1510 | static const struct rf_channel rf_vals_5222[] = { | |
1511 | { 1, 0x00022020, 0x00001136, 0x00000101, 0x00000a0b }, | |
1512 | { 2, 0x00022020, 0x0000113a, 0x00000101, 0x00000a0b }, | |
1513 | { 3, 0x00022020, 0x0000113e, 0x00000101, 0x00000a0b }, | |
1514 | { 4, 0x00022020, 0x00001182, 0x00000101, 0x00000a0b }, | |
1515 | { 5, 0x00022020, 0x00001186, 0x00000101, 0x00000a0b }, | |
1516 | { 6, 0x00022020, 0x0000118a, 0x00000101, 0x00000a0b }, | |
1517 | { 7, 0x00022020, 0x0000118e, 0x00000101, 0x00000a0b }, | |
1518 | { 8, 0x00022020, 0x00001192, 0x00000101, 0x00000a0b }, | |
1519 | { 9, 0x00022020, 0x00001196, 0x00000101, 0x00000a0b }, | |
1520 | { 10, 0x00022020, 0x0000119a, 0x00000101, 0x00000a0b }, | |
1521 | { 11, 0x00022020, 0x0000119e, 0x00000101, 0x00000a0b }, | |
1522 | { 12, 0x00022020, 0x000011a2, 0x00000101, 0x00000a0b }, | |
1523 | { 13, 0x00022020, 0x000011a6, 0x00000101, 0x00000a0b }, | |
1524 | { 14, 0x00022020, 0x000011ae, 0x00000101, 0x00000a1b }, | |
1525 | ||
1526 | /* 802.11 UNI / HyperLan 2 */ | |
1527 | { 36, 0x00022010, 0x00018896, 0x00000101, 0x00000a1f }, | |
1528 | { 40, 0x00022010, 0x0001889a, 0x00000101, 0x00000a1f }, | |
1529 | { 44, 0x00022010, 0x0001889e, 0x00000101, 0x00000a1f }, | |
1530 | { 48, 0x00022010, 0x000188a2, 0x00000101, 0x00000a1f }, | |
1531 | { 52, 0x00022010, 0x000188a6, 0x00000101, 0x00000a1f }, | |
1532 | { 66, 0x00022010, 0x000188aa, 0x00000101, 0x00000a1f }, | |
1533 | { 60, 0x00022010, 0x000188ae, 0x00000101, 0x00000a1f }, | |
1534 | { 64, 0x00022010, 0x000188b2, 0x00000101, 0x00000a1f }, | |
1535 | ||
1536 | /* 802.11 HyperLan 2 */ | |
1537 | { 100, 0x00022010, 0x00008802, 0x00000101, 0x00000a0f }, | |
1538 | { 104, 0x00022010, 0x00008806, 0x00000101, 0x00000a0f }, | |
1539 | { 108, 0x00022010, 0x0000880a, 0x00000101, 0x00000a0f }, | |
1540 | { 112, 0x00022010, 0x0000880e, 0x00000101, 0x00000a0f }, | |
1541 | { 116, 0x00022010, 0x00008812, 0x00000101, 0x00000a0f }, | |
1542 | { 120, 0x00022010, 0x00008816, 0x00000101, 0x00000a0f }, | |
1543 | { 124, 0x00022010, 0x0000881a, 0x00000101, 0x00000a0f }, | |
1544 | { 128, 0x00022010, 0x0000881e, 0x00000101, 0x00000a0f }, | |
1545 | { 132, 0x00022010, 0x00008822, 0x00000101, 0x00000a0f }, | |
1546 | { 136, 0x00022010, 0x00008826, 0x00000101, 0x00000a0f }, | |
1547 | ||
1548 | /* 802.11 UNII */ | |
1549 | { 140, 0x00022010, 0x0000882a, 0x00000101, 0x00000a0f }, | |
1550 | { 149, 0x00022020, 0x000090a6, 0x00000101, 0x00000a07 }, | |
1551 | { 153, 0x00022020, 0x000090ae, 0x00000101, 0x00000a07 }, | |
1552 | { 157, 0x00022020, 0x000090b6, 0x00000101, 0x00000a07 }, | |
1553 | { 161, 0x00022020, 0x000090be, 0x00000101, 0x00000a07 }, | |
1554 | }; | |
1555 | ||
1556 | static void rt2500usb_probe_hw_mode(struct rt2x00_dev *rt2x00dev) | |
1557 | { | |
1558 | struct hw_mode_spec *spec = &rt2x00dev->spec; | |
1559 | u8 *txpower; | |
1560 | unsigned int i; | |
1561 | ||
1562 | /* | |
1563 | * Initialize all hw fields. | |
1564 | */ | |
1565 | rt2x00dev->hw->flags = | |
1566 | IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE | | |
1567 | IEEE80211_HW_RX_INCLUDES_FCS | | |
4150c572 | 1568 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING; |
95ea3627 ID |
1569 | rt2x00dev->hw->extra_tx_headroom = TXD_DESC_SIZE; |
1570 | rt2x00dev->hw->max_signal = MAX_SIGNAL; | |
1571 | rt2x00dev->hw->max_rssi = MAX_RX_SSI; | |
1572 | rt2x00dev->hw->queues = 2; | |
1573 | ||
1574 | SET_IEEE80211_DEV(rt2x00dev->hw, &rt2x00dev_usb(rt2x00dev)->dev); | |
1575 | SET_IEEE80211_PERM_ADDR(rt2x00dev->hw, | |
1576 | rt2x00_eeprom_addr(rt2x00dev, | |
1577 | EEPROM_MAC_ADDR_0)); | |
1578 | ||
1579 | /* | |
1580 | * Convert tx_power array in eeprom. | |
1581 | */ | |
1582 | txpower = rt2x00_eeprom_addr(rt2x00dev, EEPROM_TXPOWER_START); | |
1583 | for (i = 0; i < 14; i++) | |
1584 | txpower[i] = TXPOWER_FROM_DEV(txpower[i]); | |
1585 | ||
1586 | /* | |
1587 | * Initialize hw_mode information. | |
1588 | */ | |
31562e80 ID |
1589 | spec->supported_bands = SUPPORT_BAND_2GHZ; |
1590 | spec->supported_rates = SUPPORT_RATE_CCK | SUPPORT_RATE_OFDM; | |
95ea3627 ID |
1591 | spec->tx_power_a = NULL; |
1592 | spec->tx_power_bg = txpower; | |
1593 | spec->tx_power_default = DEFAULT_TXPOWER; | |
1594 | ||
1595 | if (rt2x00_rf(&rt2x00dev->chip, RF2522)) { | |
1596 | spec->num_channels = ARRAY_SIZE(rf_vals_bg_2522); | |
1597 | spec->channels = rf_vals_bg_2522; | |
1598 | } else if (rt2x00_rf(&rt2x00dev->chip, RF2523)) { | |
1599 | spec->num_channels = ARRAY_SIZE(rf_vals_bg_2523); | |
1600 | spec->channels = rf_vals_bg_2523; | |
1601 | } else if (rt2x00_rf(&rt2x00dev->chip, RF2524)) { | |
1602 | spec->num_channels = ARRAY_SIZE(rf_vals_bg_2524); | |
1603 | spec->channels = rf_vals_bg_2524; | |
1604 | } else if (rt2x00_rf(&rt2x00dev->chip, RF2525)) { | |
1605 | spec->num_channels = ARRAY_SIZE(rf_vals_bg_2525); | |
1606 | spec->channels = rf_vals_bg_2525; | |
1607 | } else if (rt2x00_rf(&rt2x00dev->chip, RF2525E)) { | |
1608 | spec->num_channels = ARRAY_SIZE(rf_vals_bg_2525e); | |
1609 | spec->channels = rf_vals_bg_2525e; | |
1610 | } else if (rt2x00_rf(&rt2x00dev->chip, RF5222)) { | |
31562e80 | 1611 | spec->supported_bands |= SUPPORT_BAND_5GHZ; |
95ea3627 ID |
1612 | spec->num_channels = ARRAY_SIZE(rf_vals_5222); |
1613 | spec->channels = rf_vals_5222; | |
95ea3627 ID |
1614 | } |
1615 | } | |
1616 | ||
1617 | static int rt2500usb_probe_hw(struct rt2x00_dev *rt2x00dev) | |
1618 | { | |
1619 | int retval; | |
1620 | ||
1621 | /* | |
1622 | * Allocate eeprom data. | |
1623 | */ | |
1624 | retval = rt2500usb_validate_eeprom(rt2x00dev); | |
1625 | if (retval) | |
1626 | return retval; | |
1627 | ||
1628 | retval = rt2500usb_init_eeprom(rt2x00dev); | |
1629 | if (retval) | |
1630 | return retval; | |
1631 | ||
1632 | /* | |
1633 | * Initialize hw specifications. | |
1634 | */ | |
1635 | rt2500usb_probe_hw_mode(rt2x00dev); | |
1636 | ||
1637 | /* | |
181d6902 | 1638 | * This device requires the atim queue |
95ea3627 | 1639 | */ |
181d6902 ID |
1640 | __set_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags); |
1641 | __set_bit(DRIVER_REQUIRE_BEACON_GUARD, &rt2x00dev->flags); | |
95ea3627 ID |
1642 | |
1643 | /* | |
1644 | * Set the rssi offset. | |
1645 | */ | |
1646 | rt2x00dev->rssi_offset = DEFAULT_RSSI_OFFSET; | |
1647 | ||
1648 | return 0; | |
1649 | } | |
1650 | ||
1651 | /* | |
1652 | * IEEE80211 stack callback functions. | |
1653 | */ | |
4150c572 JB |
1654 | static void rt2500usb_configure_filter(struct ieee80211_hw *hw, |
1655 | unsigned int changed_flags, | |
1656 | unsigned int *total_flags, | |
1657 | int mc_count, | |
1658 | struct dev_addr_list *mc_list) | |
1659 | { | |
1660 | struct rt2x00_dev *rt2x00dev = hw->priv; | |
4150c572 JB |
1661 | u16 reg; |
1662 | ||
1663 | /* | |
1664 | * Mask off any flags we are going to ignore from | |
1665 | * the total_flags field. | |
1666 | */ | |
1667 | *total_flags &= | |
1668 | FIF_ALLMULTI | | |
1669 | FIF_FCSFAIL | | |
1670 | FIF_PLCPFAIL | | |
1671 | FIF_CONTROL | | |
1672 | FIF_OTHER_BSS | | |
1673 | FIF_PROMISC_IN_BSS; | |
1674 | ||
1675 | /* | |
1676 | * Apply some rules to the filters: | |
1677 | * - Some filters imply different filters to be set. | |
1678 | * - Some things we can't filter out at all. | |
4150c572 JB |
1679 | */ |
1680 | if (mc_count) | |
1681 | *total_flags |= FIF_ALLMULTI; | |
5886d0db ID |
1682 | if (*total_flags & FIF_OTHER_BSS || |
1683 | *total_flags & FIF_PROMISC_IN_BSS) | |
4150c572 | 1684 | *total_flags |= FIF_PROMISC_IN_BSS | FIF_OTHER_BSS; |
4150c572 JB |
1685 | |
1686 | /* | |
1687 | * Check if there is any work left for us. | |
1688 | */ | |
3c4f2085 | 1689 | if (rt2x00dev->packet_filter == *total_flags) |
4150c572 | 1690 | return; |
3c4f2085 | 1691 | rt2x00dev->packet_filter = *total_flags; |
4150c572 JB |
1692 | |
1693 | /* | |
1694 | * When in atomic context, reschedule and let rt2x00lib | |
1695 | * call this function again. | |
1696 | */ | |
1697 | if (in_atomic()) { | |
1698 | queue_work(rt2x00dev->hw->workqueue, &rt2x00dev->filter_work); | |
1699 | return; | |
1700 | } | |
1701 | ||
1702 | /* | |
1703 | * Start configuration steps. | |
1704 | * Note that the version error will always be dropped | |
1705 | * and broadcast frames will always be accepted since | |
1706 | * there is no filter for it at this time. | |
1707 | */ | |
1708 | rt2500usb_register_read(rt2x00dev, TXRX_CSR2, ®); | |
1709 | rt2x00_set_field16(®, TXRX_CSR2_DROP_CRC, | |
1710 | !(*total_flags & FIF_FCSFAIL)); | |
1711 | rt2x00_set_field16(®, TXRX_CSR2_DROP_PHYSICAL, | |
1712 | !(*total_flags & FIF_PLCPFAIL)); | |
1713 | rt2x00_set_field16(®, TXRX_CSR2_DROP_CONTROL, | |
1714 | !(*total_flags & FIF_CONTROL)); | |
1715 | rt2x00_set_field16(®, TXRX_CSR2_DROP_NOT_TO_ME, | |
1716 | !(*total_flags & FIF_PROMISC_IN_BSS)); | |
1717 | rt2x00_set_field16(®, TXRX_CSR2_DROP_TODS, | |
1718 | !(*total_flags & FIF_PROMISC_IN_BSS)); | |
1719 | rt2x00_set_field16(®, TXRX_CSR2_DROP_VERSION_ERROR, 1); | |
1720 | rt2x00_set_field16(®, TXRX_CSR2_DROP_MULTICAST, | |
1721 | !(*total_flags & FIF_ALLMULTI)); | |
1722 | rt2x00_set_field16(®, TXRX_CSR2_DROP_BROADCAST, 0); | |
1723 | rt2500usb_register_write(rt2x00dev, TXRX_CSR2, reg); | |
1724 | } | |
1725 | ||
95ea3627 ID |
1726 | static int rt2500usb_beacon_update(struct ieee80211_hw *hw, |
1727 | struct sk_buff *skb, | |
1728 | struct ieee80211_tx_control *control) | |
1729 | { | |
1730 | struct rt2x00_dev *rt2x00dev = hw->priv; | |
181d6902 | 1731 | struct usb_device *usb_dev = rt2x00dev_usb_dev(rt2x00dev); |
6bb40dd1 | 1732 | struct rt2x00_intf *intf = vif_to_intf(control->vif); |
181d6902 ID |
1733 | struct queue_entry_priv_usb_bcn *priv_bcn; |
1734 | struct skb_frame_desc *skbdesc; | |
dd9fa2d2 | 1735 | int pipe = usb_sndbulkpipe(usb_dev, 1); |
95ea3627 ID |
1736 | int length; |
1737 | ||
6bb40dd1 ID |
1738 | if (unlikely(!intf->beacon)) |
1739 | return -ENOBUFS; | |
1740 | ||
1741 | priv_bcn = intf->beacon->priv_data; | |
95ea3627 ID |
1742 | |
1743 | /* | |
08992f7f | 1744 | * Add the descriptor in front of the skb. |
95ea3627 | 1745 | */ |
6bb40dd1 ID |
1746 | skb_push(skb, intf->beacon->queue->desc_size); |
1747 | memset(skb->data, 0, intf->beacon->queue->desc_size); | |
c22eb87b | 1748 | |
08992f7f ID |
1749 | /* |
1750 | * Fill in skb descriptor | |
1751 | */ | |
181d6902 ID |
1752 | skbdesc = get_skb_frame_desc(skb); |
1753 | memset(skbdesc, 0, sizeof(*skbdesc)); | |
baf26a7e | 1754 | skbdesc->flags |= FRAME_DESC_DRIVER_GENERATED; |
6bb40dd1 ID |
1755 | skbdesc->data = skb->data + intf->beacon->queue->desc_size; |
1756 | skbdesc->data_len = skb->len - intf->beacon->queue->desc_size; | |
181d6902 | 1757 | skbdesc->desc = skb->data; |
6bb40dd1 ID |
1758 | skbdesc->desc_len = intf->beacon->queue->desc_size; |
1759 | skbdesc->entry = intf->beacon; | |
08992f7f | 1760 | |
6bb40dd1 | 1761 | /* |
5957da4c ID |
1762 | * mac80211 doesn't provide the control->queue variable |
1763 | * for beacons. Set our own queue identification so | |
1764 | * it can be used during descriptor initialization. | |
6bb40dd1 | 1765 | */ |
5957da4c | 1766 | control->queue = RT2X00_BCN_QUEUE_BEACON; |
08992f7f | 1767 | rt2x00lib_write_tx_desc(rt2x00dev, skb, control); |
95ea3627 | 1768 | |
08992f7f ID |
1769 | /* |
1770 | * USB devices cannot blindly pass the skb->len as the | |
1771 | * length of the data to usb_fill_bulk_urb. Pass the skb | |
1772 | * to the driver to determine what the length should be. | |
1773 | */ | |
b242e891 | 1774 | length = rt2500usb_get_tx_data_len(rt2x00dev, skb); |
95ea3627 | 1775 | |
181d6902 | 1776 | usb_fill_bulk_urb(priv_bcn->urb, usb_dev, pipe, |
6bb40dd1 ID |
1777 | skb->data, length, rt2500usb_beacondone, |
1778 | intf->beacon); | |
95ea3627 | 1779 | |
95ea3627 ID |
1780 | /* |
1781 | * Second we need to create the guardian byte. | |
1782 | * We only need a single byte, so lets recycle | |
1783 | * the 'flags' field we are not using for beacons. | |
1784 | */ | |
181d6902 ID |
1785 | priv_bcn->guardian_data = 0; |
1786 | usb_fill_bulk_urb(priv_bcn->guardian_urb, usb_dev, pipe, | |
1787 | &priv_bcn->guardian_data, 1, rt2500usb_beacondone, | |
6bb40dd1 | 1788 | intf->beacon); |
95ea3627 ID |
1789 | |
1790 | /* | |
1791 | * Send out the guardian byte. | |
1792 | */ | |
181d6902 | 1793 | usb_submit_urb(priv_bcn->guardian_urb, GFP_ATOMIC); |
95ea3627 ID |
1794 | |
1795 | /* | |
1796 | * Enable beacon generation. | |
1797 | */ | |
6bb40dd1 | 1798 | rt2500usb_kick_tx_queue(rt2x00dev, control->queue); |
95ea3627 ID |
1799 | |
1800 | return 0; | |
1801 | } | |
1802 | ||
1803 | static const struct ieee80211_ops rt2500usb_mac80211_ops = { | |
1804 | .tx = rt2x00mac_tx, | |
4150c572 JB |
1805 | .start = rt2x00mac_start, |
1806 | .stop = rt2x00mac_stop, | |
95ea3627 ID |
1807 | .add_interface = rt2x00mac_add_interface, |
1808 | .remove_interface = rt2x00mac_remove_interface, | |
1809 | .config = rt2x00mac_config, | |
1810 | .config_interface = rt2x00mac_config_interface, | |
4150c572 | 1811 | .configure_filter = rt2500usb_configure_filter, |
95ea3627 | 1812 | .get_stats = rt2x00mac_get_stats, |
471b3efd | 1813 | .bss_info_changed = rt2x00mac_bss_info_changed, |
95ea3627 ID |
1814 | .conf_tx = rt2x00mac_conf_tx, |
1815 | .get_tx_stats = rt2x00mac_get_tx_stats, | |
1816 | .beacon_update = rt2500usb_beacon_update, | |
1817 | }; | |
1818 | ||
1819 | static const struct rt2x00lib_ops rt2500usb_rt2x00_ops = { | |
1820 | .probe_hw = rt2500usb_probe_hw, | |
1821 | .initialize = rt2x00usb_initialize, | |
1822 | .uninitialize = rt2x00usb_uninitialize, | |
837e7f24 ID |
1823 | .init_rxentry = rt2x00usb_init_rxentry, |
1824 | .init_txentry = rt2x00usb_init_txentry, | |
95ea3627 ID |
1825 | .set_device_state = rt2500usb_set_device_state, |
1826 | .link_stats = rt2500usb_link_stats, | |
1827 | .reset_tuner = rt2500usb_reset_tuner, | |
1828 | .link_tuner = rt2500usb_link_tuner, | |
a9450b70 | 1829 | .led_brightness = rt2500usb_led_brightness, |
95ea3627 ID |
1830 | .write_tx_desc = rt2500usb_write_tx_desc, |
1831 | .write_tx_data = rt2x00usb_write_tx_data, | |
dd9fa2d2 | 1832 | .get_tx_data_len = rt2500usb_get_tx_data_len, |
95ea3627 ID |
1833 | .kick_tx_queue = rt2500usb_kick_tx_queue, |
1834 | .fill_rxdone = rt2500usb_fill_rxdone, | |
6bb40dd1 | 1835 | .config_intf = rt2500usb_config_intf, |
5c58ee51 | 1836 | .config_preamble = rt2500usb_config_preamble, |
95ea3627 ID |
1837 | .config = rt2500usb_config, |
1838 | }; | |
1839 | ||
181d6902 ID |
1840 | static const struct data_queue_desc rt2500usb_queue_rx = { |
1841 | .entry_num = RX_ENTRIES, | |
1842 | .data_size = DATA_FRAME_SIZE, | |
1843 | .desc_size = RXD_DESC_SIZE, | |
1844 | .priv_size = sizeof(struct queue_entry_priv_usb_rx), | |
1845 | }; | |
1846 | ||
1847 | static const struct data_queue_desc rt2500usb_queue_tx = { | |
1848 | .entry_num = TX_ENTRIES, | |
1849 | .data_size = DATA_FRAME_SIZE, | |
1850 | .desc_size = TXD_DESC_SIZE, | |
1851 | .priv_size = sizeof(struct queue_entry_priv_usb_tx), | |
1852 | }; | |
1853 | ||
1854 | static const struct data_queue_desc rt2500usb_queue_bcn = { | |
1855 | .entry_num = BEACON_ENTRIES, | |
1856 | .data_size = MGMT_FRAME_SIZE, | |
1857 | .desc_size = TXD_DESC_SIZE, | |
1858 | .priv_size = sizeof(struct queue_entry_priv_usb_bcn), | |
1859 | }; | |
1860 | ||
1861 | static const struct data_queue_desc rt2500usb_queue_atim = { | |
1862 | .entry_num = ATIM_ENTRIES, | |
1863 | .data_size = DATA_FRAME_SIZE, | |
1864 | .desc_size = TXD_DESC_SIZE, | |
1865 | .priv_size = sizeof(struct queue_entry_priv_usb_tx), | |
1866 | }; | |
1867 | ||
95ea3627 | 1868 | static const struct rt2x00_ops rt2500usb_ops = { |
2360157c | 1869 | .name = KBUILD_MODNAME, |
6bb40dd1 ID |
1870 | .max_sta_intf = 1, |
1871 | .max_ap_intf = 1, | |
95ea3627 ID |
1872 | .eeprom_size = EEPROM_SIZE, |
1873 | .rf_size = RF_SIZE, | |
181d6902 ID |
1874 | .rx = &rt2500usb_queue_rx, |
1875 | .tx = &rt2500usb_queue_tx, | |
1876 | .bcn = &rt2500usb_queue_bcn, | |
1877 | .atim = &rt2500usb_queue_atim, | |
95ea3627 ID |
1878 | .lib = &rt2500usb_rt2x00_ops, |
1879 | .hw = &rt2500usb_mac80211_ops, | |
1880 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS | |
1881 | .debugfs = &rt2500usb_rt2x00debug, | |
1882 | #endif /* CONFIG_RT2X00_LIB_DEBUGFS */ | |
1883 | }; | |
1884 | ||
1885 | /* | |
1886 | * rt2500usb module information. | |
1887 | */ | |
1888 | static struct usb_device_id rt2500usb_device_table[] = { | |
1889 | /* ASUS */ | |
1890 | { USB_DEVICE(0x0b05, 0x1706), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1891 | { USB_DEVICE(0x0b05, 0x1707), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1892 | /* Belkin */ | |
1893 | { USB_DEVICE(0x050d, 0x7050), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1894 | { USB_DEVICE(0x050d, 0x7051), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1895 | { USB_DEVICE(0x050d, 0x705a), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1896 | /* Cisco Systems */ | |
1897 | { USB_DEVICE(0x13b1, 0x000d), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1898 | { USB_DEVICE(0x13b1, 0x0011), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1899 | { USB_DEVICE(0x13b1, 0x001a), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1900 | /* Conceptronic */ | |
1901 | { USB_DEVICE(0x14b2, 0x3c02), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1902 | /* D-LINK */ | |
1903 | { USB_DEVICE(0x2001, 0x3c00), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1904 | /* Gigabyte */ | |
1905 | { USB_DEVICE(0x1044, 0x8001), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1906 | { USB_DEVICE(0x1044, 0x8007), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1907 | /* Hercules */ | |
1908 | { USB_DEVICE(0x06f8, 0xe000), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1909 | /* Melco */ | |
db433feb | 1910 | { USB_DEVICE(0x0411, 0x005e), USB_DEVICE_DATA(&rt2500usb_ops) }, |
95ea3627 ID |
1911 | { USB_DEVICE(0x0411, 0x0066), USB_DEVICE_DATA(&rt2500usb_ops) }, |
1912 | { USB_DEVICE(0x0411, 0x0067), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1913 | { USB_DEVICE(0x0411, 0x008b), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1914 | { USB_DEVICE(0x0411, 0x0097), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
95ea3627 ID |
1915 | /* MSI */ |
1916 | { USB_DEVICE(0x0db0, 0x6861), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1917 | { USB_DEVICE(0x0db0, 0x6865), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1918 | { USB_DEVICE(0x0db0, 0x6869), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1919 | /* Ralink */ | |
1920 | { USB_DEVICE(0x148f, 0x1706), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1921 | { USB_DEVICE(0x148f, 0x2570), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1922 | { USB_DEVICE(0x148f, 0x2573), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1923 | { USB_DEVICE(0x148f, 0x9020), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1924 | /* Siemens */ | |
1925 | { USB_DEVICE(0x0681, 0x3c06), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1926 | /* SMC */ | |
1927 | { USB_DEVICE(0x0707, 0xee13), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1928 | /* Spairon */ | |
1929 | { USB_DEVICE(0x114b, 0x0110), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1930 | /* Trust */ | |
1931 | { USB_DEVICE(0x0eb0, 0x9020), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1932 | /* Zinwell */ | |
1933 | { USB_DEVICE(0x5a57, 0x0260), USB_DEVICE_DATA(&rt2500usb_ops) }, | |
1934 | { 0, } | |
1935 | }; | |
1936 | ||
1937 | MODULE_AUTHOR(DRV_PROJECT); | |
1938 | MODULE_VERSION(DRV_VERSION); | |
1939 | MODULE_DESCRIPTION("Ralink RT2500 USB Wireless LAN driver."); | |
1940 | MODULE_SUPPORTED_DEVICE("Ralink RT2570 USB chipset based cards"); | |
1941 | MODULE_DEVICE_TABLE(usb, rt2500usb_device_table); | |
1942 | MODULE_LICENSE("GPL"); | |
1943 | ||
1944 | static struct usb_driver rt2500usb_driver = { | |
2360157c | 1945 | .name = KBUILD_MODNAME, |
95ea3627 ID |
1946 | .id_table = rt2500usb_device_table, |
1947 | .probe = rt2x00usb_probe, | |
1948 | .disconnect = rt2x00usb_disconnect, | |
1949 | .suspend = rt2x00usb_suspend, | |
1950 | .resume = rt2x00usb_resume, | |
1951 | }; | |
1952 | ||
1953 | static int __init rt2500usb_init(void) | |
1954 | { | |
1955 | return usb_register(&rt2500usb_driver); | |
1956 | } | |
1957 | ||
1958 | static void __exit rt2500usb_exit(void) | |
1959 | { | |
1960 | usb_deregister(&rt2500usb_driver); | |
1961 | } | |
1962 | ||
1963 | module_init(rt2500usb_init); | |
1964 | module_exit(rt2500usb_exit); |