2 Copyright (C) 2004 - 2007 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
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.
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.
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.
23 Abstract: rt2400pci device specific routines.
24 Supported chipsets: RT2460.
28 * Set enviroment defines for rt2x00.h
30 #define DRV_NAME "rt2400pci"
32 #include <linux/delay.h>
33 #include <linux/etherdevice.h>
34 #include <linux/init.h>
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/pci.h>
38 #include <linux/eeprom_93cx6.h>
41 #include "rt2x00pci.h"
42 #include "rt2400pci.h"
46 * All access to the CSR registers will go through the methods
47 * rt2x00pci_register_read and rt2x00pci_register_write.
48 * BBP and RF register require indirect register access,
49 * and use the CSR registers BBPCSR and RFCSR to achieve this.
50 * These indirect registers work with busy bits,
51 * and we will try maximal REGISTER_BUSY_COUNT times to access
52 * the register while taking a REGISTER_BUSY_DELAY us delay
53 * between each attampt. When the busy bit is still set at that time,
54 * the access attempt is considered to have failed,
55 * and we will print an error.
57 static u32
rt2400pci_bbp_check(struct rt2x00_dev
*rt2x00dev
)
62 for (i
= 0; i
< REGISTER_BUSY_COUNT
; i
++) {
63 rt2x00pci_register_read(rt2x00dev
, BBPCSR
, ®
);
64 if (!rt2x00_get_field32(reg
, BBPCSR_BUSY
))
66 udelay(REGISTER_BUSY_DELAY
);
72 static void rt2400pci_bbp_write(struct rt2x00_dev
*rt2x00dev
,
73 const unsigned int word
, const u8 value
)
78 * Wait until the BBP becomes ready.
80 reg
= rt2400pci_bbp_check(rt2x00dev
);
81 if (rt2x00_get_field32(reg
, BBPCSR_BUSY
)) {
82 ERROR(rt2x00dev
, "BBPCSR register busy. Write failed.\n");
87 * Write the data into the BBP.
90 rt2x00_set_field32(®
, BBPCSR_VALUE
, value
);
91 rt2x00_set_field32(®
, BBPCSR_REGNUM
, word
);
92 rt2x00_set_field32(®
, BBPCSR_BUSY
, 1);
93 rt2x00_set_field32(®
, BBPCSR_WRITE_CONTROL
, 1);
95 rt2x00pci_register_write(rt2x00dev
, BBPCSR
, reg
);
98 static void rt2400pci_bbp_read(struct rt2x00_dev
*rt2x00dev
,
99 const unsigned int word
, u8
*value
)
104 * Wait until the BBP becomes ready.
106 reg
= rt2400pci_bbp_check(rt2x00dev
);
107 if (rt2x00_get_field32(reg
, BBPCSR_BUSY
)) {
108 ERROR(rt2x00dev
, "BBPCSR register busy. Read failed.\n");
113 * Write the request into the BBP.
116 rt2x00_set_field32(®
, BBPCSR_REGNUM
, word
);
117 rt2x00_set_field32(®
, BBPCSR_BUSY
, 1);
118 rt2x00_set_field32(®
, BBPCSR_WRITE_CONTROL
, 0);
120 rt2x00pci_register_write(rt2x00dev
, BBPCSR
, reg
);
123 * Wait until the BBP becomes ready.
125 reg
= rt2400pci_bbp_check(rt2x00dev
);
126 if (rt2x00_get_field32(reg
, BBPCSR_BUSY
)) {
127 ERROR(rt2x00dev
, "BBPCSR register busy. Read failed.\n");
132 *value
= rt2x00_get_field32(reg
, BBPCSR_VALUE
);
135 static void rt2400pci_rf_write(struct rt2x00_dev
*rt2x00dev
,
136 const unsigned int word
, const u32 value
)
144 for (i
= 0; i
< REGISTER_BUSY_COUNT
; i
++) {
145 rt2x00pci_register_read(rt2x00dev
, RFCSR
, ®
);
146 if (!rt2x00_get_field32(reg
, RFCSR_BUSY
))
148 udelay(REGISTER_BUSY_DELAY
);
151 ERROR(rt2x00dev
, "RFCSR register busy. Write failed.\n");
156 rt2x00_set_field32(®
, RFCSR_VALUE
, value
);
157 rt2x00_set_field32(®
, RFCSR_NUMBER_OF_BITS
, 20);
158 rt2x00_set_field32(®
, RFCSR_IF_SELECT
, 0);
159 rt2x00_set_field32(®
, RFCSR_BUSY
, 1);
161 rt2x00pci_register_write(rt2x00dev
, RFCSR
, reg
);
162 rt2x00_rf_write(rt2x00dev
, word
, value
);
165 static void rt2400pci_eepromregister_read(struct eeprom_93cx6
*eeprom
)
167 struct rt2x00_dev
*rt2x00dev
= eeprom
->data
;
170 rt2x00pci_register_read(rt2x00dev
, CSR21
, ®
);
172 eeprom
->reg_data_in
= !!rt2x00_get_field32(reg
, CSR21_EEPROM_DATA_IN
);
173 eeprom
->reg_data_out
= !!rt2x00_get_field32(reg
, CSR21_EEPROM_DATA_OUT
);
174 eeprom
->reg_data_clock
=
175 !!rt2x00_get_field32(reg
, CSR21_EEPROM_DATA_CLOCK
);
176 eeprom
->reg_chip_select
=
177 !!rt2x00_get_field32(reg
, CSR21_EEPROM_CHIP_SELECT
);
180 static void rt2400pci_eepromregister_write(struct eeprom_93cx6
*eeprom
)
182 struct rt2x00_dev
*rt2x00dev
= eeprom
->data
;
185 rt2x00_set_field32(®
, CSR21_EEPROM_DATA_IN
, !!eeprom
->reg_data_in
);
186 rt2x00_set_field32(®
, CSR21_EEPROM_DATA_OUT
, !!eeprom
->reg_data_out
);
187 rt2x00_set_field32(®
, CSR21_EEPROM_DATA_CLOCK
,
188 !!eeprom
->reg_data_clock
);
189 rt2x00_set_field32(®
, CSR21_EEPROM_CHIP_SELECT
,
190 !!eeprom
->reg_chip_select
);
192 rt2x00pci_register_write(rt2x00dev
, CSR21
, reg
);
195 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
196 #define CSR_OFFSET(__word) ( CSR_REG_BASE + ((__word) * sizeof(u32)) )
198 static void rt2400pci_read_csr(struct rt2x00_dev
*rt2x00dev
,
199 const unsigned int word
, u32
*data
)
201 rt2x00pci_register_read(rt2x00dev
, CSR_OFFSET(word
), data
);
204 static void rt2400pci_write_csr(struct rt2x00_dev
*rt2x00dev
,
205 const unsigned int word
, u32 data
)
207 rt2x00pci_register_write(rt2x00dev
, CSR_OFFSET(word
), data
);
210 static const struct rt2x00debug rt2400pci_rt2x00debug
= {
211 .owner
= THIS_MODULE
,
213 .read
= rt2400pci_read_csr
,
214 .write
= rt2400pci_write_csr
,
215 .word_size
= sizeof(u32
),
216 .word_count
= CSR_REG_SIZE
/ sizeof(u32
),
219 .read
= rt2x00_eeprom_read
,
220 .write
= rt2x00_eeprom_write
,
221 .word_size
= sizeof(u16
),
222 .word_count
= EEPROM_SIZE
/ sizeof(u16
),
225 .read
= rt2400pci_bbp_read
,
226 .write
= rt2400pci_bbp_write
,
227 .word_size
= sizeof(u8
),
228 .word_count
= BBP_SIZE
/ sizeof(u8
),
231 .read
= rt2x00_rf_read
,
232 .write
= rt2400pci_rf_write
,
233 .word_size
= sizeof(u32
),
234 .word_count
= RF_SIZE
/ sizeof(u32
),
237 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
239 #ifdef CONFIG_RT2400PCI_RFKILL
240 static int rt2400pci_rfkill_poll(struct rt2x00_dev
*rt2x00dev
)
244 rt2x00pci_register_read(rt2x00dev
, GPIOCSR
, ®
);
245 return rt2x00_get_field32(reg
, GPIOCSR_BIT0
);
248 #define rt2400pci_rfkill_poll NULL
249 #endif /* CONFIG_RT2400PCI_RFKILL */
252 * Configuration handlers.
254 static void rt2400pci_config_mac_addr(struct rt2x00_dev
*rt2x00dev
,
257 rt2x00pci_register_multiwrite(rt2x00dev
, CSR3
, mac
,
258 (2 * sizeof(__le32
)));
261 static void rt2400pci_config_bssid(struct rt2x00_dev
*rt2x00dev
,
264 rt2x00pci_register_multiwrite(rt2x00dev
, CSR5
, bssid
,
265 (2 * sizeof(__le32
)));
268 static void rt2400pci_config_type(struct rt2x00_dev
*rt2x00dev
, const int type
,
273 rt2x00pci_register_write(rt2x00dev
, CSR14
, 0);
276 * Enable beacon config
278 rt2x00pci_register_read(rt2x00dev
, BCNCSR1
, ®
);
279 rt2x00_set_field32(®
, BCNCSR1_PRELOAD
,
280 PREAMBLE
+ get_duration(IEEE80211_HEADER
, 20));
281 rt2x00pci_register_write(rt2x00dev
, BCNCSR1
, reg
);
284 * Enable synchronisation.
286 rt2x00pci_register_read(rt2x00dev
, CSR14
, ®
);
287 rt2x00_set_field32(®
, CSR14_TSF_COUNT
, 1);
288 rt2x00_set_field32(®
, CSR14_TBCN
, 1);
289 rt2x00_set_field32(®
, CSR14_BEACON_GEN
, 0);
290 rt2x00_set_field32(®
, CSR14_TSF_SYNC
, tsf_sync
);
291 rt2x00pci_register_write(rt2x00dev
, CSR14
, reg
);
294 static void rt2400pci_config_preamble(struct rt2x00_dev
*rt2x00dev
,
295 const int short_preamble
,
296 const int ack_timeout
,
297 const int ack_consume_time
)
303 * When short preamble is enabled, we should set bit 0x08
305 preamble_mask
= short_preamble
<< 3;
307 rt2x00pci_register_read(rt2x00dev
, TXCSR1
, ®
);
308 rt2x00_set_field32(®
, TXCSR1_ACK_TIMEOUT
, ack_timeout
);
309 rt2x00_set_field32(®
, TXCSR1_ACK_CONSUME_TIME
, ack_consume_time
);
310 rt2x00pci_register_write(rt2x00dev
, TXCSR1
, reg
);
312 rt2x00pci_register_read(rt2x00dev
, ARCSR2
, ®
);
313 rt2x00_set_field32(®
, ARCSR2_SIGNAL
, 0x00 | preamble_mask
);
314 rt2x00_set_field32(®
, ARCSR2_SERVICE
, 0x04);
315 rt2x00_set_field32(®
, ARCSR2_LENGTH
, get_duration(ACK_SIZE
, 10));
316 rt2x00pci_register_write(rt2x00dev
, ARCSR2
, reg
);
318 rt2x00pci_register_read(rt2x00dev
, ARCSR3
, ®
);
319 rt2x00_set_field32(®
, ARCSR3_SIGNAL
, 0x01 | preamble_mask
);
320 rt2x00_set_field32(®
, ARCSR3_SERVICE
, 0x04);
321 rt2x00_set_field32(®
, ARCSR2_LENGTH
, get_duration(ACK_SIZE
, 20));
322 rt2x00pci_register_write(rt2x00dev
, ARCSR3
, reg
);
324 rt2x00pci_register_read(rt2x00dev
, ARCSR4
, ®
);
325 rt2x00_set_field32(®
, ARCSR4_SIGNAL
, 0x02 | preamble_mask
);
326 rt2x00_set_field32(®
, ARCSR4_SERVICE
, 0x04);
327 rt2x00_set_field32(®
, ARCSR2_LENGTH
, get_duration(ACK_SIZE
, 55));
328 rt2x00pci_register_write(rt2x00dev
, ARCSR4
, reg
);
330 rt2x00pci_register_read(rt2x00dev
, ARCSR5
, ®
);
331 rt2x00_set_field32(®
, ARCSR5_SIGNAL
, 0x03 | preamble_mask
);
332 rt2x00_set_field32(®
, ARCSR5_SERVICE
, 0x84);
333 rt2x00_set_field32(®
, ARCSR2_LENGTH
, get_duration(ACK_SIZE
, 110));
334 rt2x00pci_register_write(rt2x00dev
, ARCSR5
, reg
);
337 static void rt2400pci_config_phymode(struct rt2x00_dev
*rt2x00dev
,
338 const int basic_rate_mask
)
340 rt2x00pci_register_write(rt2x00dev
, ARCSR1
, basic_rate_mask
);
343 static void rt2400pci_config_channel(struct rt2x00_dev
*rt2x00dev
,
344 struct rf_channel
*rf
)
347 * Switch on tuning bits.
349 rt2x00_set_field32(&rf
->rf1
, RF1_TUNER
, 1);
350 rt2x00_set_field32(&rf
->rf3
, RF3_TUNER
, 1);
352 rt2400pci_rf_write(rt2x00dev
, 1, rf
->rf1
);
353 rt2400pci_rf_write(rt2x00dev
, 2, rf
->rf2
);
354 rt2400pci_rf_write(rt2x00dev
, 3, rf
->rf3
);
357 * RF2420 chipset don't need any additional actions.
359 if (rt2x00_rf(&rt2x00dev
->chip
, RF2420
))
363 * For the RT2421 chipsets we need to write an invalid
364 * reference clock rate to activate auto_tune.
365 * After that we set the value back to the correct channel.
367 rt2400pci_rf_write(rt2x00dev
, 1, rf
->rf1
);
368 rt2400pci_rf_write(rt2x00dev
, 2, 0x000c2a32);
369 rt2400pci_rf_write(rt2x00dev
, 3, rf
->rf3
);
373 rt2400pci_rf_write(rt2x00dev
, 1, rf
->rf1
);
374 rt2400pci_rf_write(rt2x00dev
, 2, rf
->rf2
);
375 rt2400pci_rf_write(rt2x00dev
, 3, rf
->rf3
);
380 * Switch off tuning bits.
382 rt2x00_set_field32(&rf
->rf1
, RF1_TUNER
, 0);
383 rt2x00_set_field32(&rf
->rf3
, RF3_TUNER
, 0);
385 rt2400pci_rf_write(rt2x00dev
, 1, rf
->rf1
);
386 rt2400pci_rf_write(rt2x00dev
, 3, rf
->rf3
);
389 * Clear false CRC during channel switch.
391 rt2x00pci_register_read(rt2x00dev
, CNT0
, &rf
->rf1
);
394 static void rt2400pci_config_txpower(struct rt2x00_dev
*rt2x00dev
, int txpower
)
396 rt2400pci_bbp_write(rt2x00dev
, 3, TXPOWER_TO_DEV(txpower
));
399 static void rt2400pci_config_antenna(struct rt2x00_dev
*rt2x00dev
,
400 struct antenna_setup
*ant
)
405 rt2400pci_bbp_read(rt2x00dev
, 4, &r4
);
406 rt2400pci_bbp_read(rt2x00dev
, 1, &r1
);
409 * Configure the TX antenna.
412 case ANTENNA_HW_DIVERSITY
:
413 rt2x00_set_field8(&r1
, BBP_R1_TX_ANTENNA
, 1);
416 rt2x00_set_field8(&r1
, BBP_R1_TX_ANTENNA
, 0);
418 case ANTENNA_SW_DIVERSITY
:
420 * NOTE: We should never come here because rt2x00lib is
421 * supposed to catch this and send us the correct antenna
422 * explicitely. However we are nog going to bug about this.
423 * Instead, just default to antenna B.
426 rt2x00_set_field8(&r1
, BBP_R1_TX_ANTENNA
, 2);
431 * Configure the RX antenna.
434 case ANTENNA_HW_DIVERSITY
:
435 rt2x00_set_field8(&r4
, BBP_R4_RX_ANTENNA
, 1);
438 rt2x00_set_field8(&r4
, BBP_R4_RX_ANTENNA
, 0);
440 case ANTENNA_SW_DIVERSITY
:
442 * NOTE: We should never come here because rt2x00lib is
443 * supposed to catch this and send us the correct antenna
444 * explicitely. However we are nog going to bug about this.
445 * Instead, just default to antenna B.
448 rt2x00_set_field8(&r4
, BBP_R4_RX_ANTENNA
, 2);
452 rt2400pci_bbp_write(rt2x00dev
, 4, r4
);
453 rt2400pci_bbp_write(rt2x00dev
, 1, r1
);
456 static void rt2400pci_config_duration(struct rt2x00_dev
*rt2x00dev
,
457 struct rt2x00lib_conf
*libconf
)
461 rt2x00pci_register_read(rt2x00dev
, CSR11
, ®
);
462 rt2x00_set_field32(®
, CSR11_SLOT_TIME
, libconf
->slot_time
);
463 rt2x00pci_register_write(rt2x00dev
, CSR11
, reg
);
465 rt2x00pci_register_read(rt2x00dev
, CSR18
, ®
);
466 rt2x00_set_field32(®
, CSR18_SIFS
, libconf
->sifs
);
467 rt2x00_set_field32(®
, CSR18_PIFS
, libconf
->pifs
);
468 rt2x00pci_register_write(rt2x00dev
, CSR18
, reg
);
470 rt2x00pci_register_read(rt2x00dev
, CSR19
, ®
);
471 rt2x00_set_field32(®
, CSR19_DIFS
, libconf
->difs
);
472 rt2x00_set_field32(®
, CSR19_EIFS
, libconf
->eifs
);
473 rt2x00pci_register_write(rt2x00dev
, CSR19
, reg
);
475 rt2x00pci_register_read(rt2x00dev
, TXCSR1
, ®
);
476 rt2x00_set_field32(®
, TXCSR1_TSF_OFFSET
, IEEE80211_HEADER
);
477 rt2x00_set_field32(®
, TXCSR1_AUTORESPONDER
, 1);
478 rt2x00pci_register_write(rt2x00dev
, TXCSR1
, reg
);
480 rt2x00pci_register_read(rt2x00dev
, CSR12
, ®
);
481 rt2x00_set_field32(®
, CSR12_BEACON_INTERVAL
,
482 libconf
->conf
->beacon_int
* 16);
483 rt2x00_set_field32(®
, CSR12_CFP_MAX_DURATION
,
484 libconf
->conf
->beacon_int
* 16);
485 rt2x00pci_register_write(rt2x00dev
, CSR12
, reg
);
488 static void rt2400pci_config(struct rt2x00_dev
*rt2x00dev
,
489 const unsigned int flags
,
490 struct rt2x00lib_conf
*libconf
)
492 if (flags
& CONFIG_UPDATE_PHYMODE
)
493 rt2400pci_config_phymode(rt2x00dev
, libconf
->basic_rates
);
494 if (flags
& CONFIG_UPDATE_CHANNEL
)
495 rt2400pci_config_channel(rt2x00dev
, &libconf
->rf
);
496 if (flags
& CONFIG_UPDATE_TXPOWER
)
497 rt2400pci_config_txpower(rt2x00dev
,
498 libconf
->conf
->power_level
);
499 if (flags
& CONFIG_UPDATE_ANTENNA
)
500 rt2400pci_config_antenna(rt2x00dev
, &libconf
->ant
);
501 if (flags
& (CONFIG_UPDATE_SLOT_TIME
| CONFIG_UPDATE_BEACON_INT
))
502 rt2400pci_config_duration(rt2x00dev
, libconf
);
505 static void rt2400pci_config_cw(struct rt2x00_dev
*rt2x00dev
,
506 struct ieee80211_tx_queue_params
*params
)
510 rt2x00pci_register_read(rt2x00dev
, CSR11
, ®
);
511 rt2x00_set_field32(®
, CSR11_CWMIN
, params
->cw_min
);
512 rt2x00_set_field32(®
, CSR11_CWMAX
, params
->cw_max
);
513 rt2x00pci_register_write(rt2x00dev
, CSR11
, reg
);
519 static void rt2400pci_enable_led(struct rt2x00_dev
*rt2x00dev
)
523 rt2x00pci_register_read(rt2x00dev
, LEDCSR
, ®
);
525 rt2x00_set_field32(®
, LEDCSR_ON_PERIOD
, 70);
526 rt2x00_set_field32(®
, LEDCSR_OFF_PERIOD
, 30);
527 rt2x00_set_field32(®
, LEDCSR_LINK
,
528 (rt2x00dev
->led_mode
!= LED_MODE_ASUS
));
529 rt2x00_set_field32(®
, LEDCSR_ACTIVITY
,
530 (rt2x00dev
->led_mode
!= LED_MODE_TXRX_ACTIVITY
));
531 rt2x00pci_register_write(rt2x00dev
, LEDCSR
, reg
);
534 static void rt2400pci_disable_led(struct rt2x00_dev
*rt2x00dev
)
538 rt2x00pci_register_read(rt2x00dev
, LEDCSR
, ®
);
539 rt2x00_set_field32(®
, LEDCSR_LINK
, 0);
540 rt2x00_set_field32(®
, LEDCSR_ACTIVITY
, 0);
541 rt2x00pci_register_write(rt2x00dev
, LEDCSR
, reg
);
547 static void rt2400pci_link_stats(struct rt2x00_dev
*rt2x00dev
,
548 struct link_qual
*qual
)
554 * Update FCS error count from register.
556 rt2x00pci_register_read(rt2x00dev
, CNT0
, ®
);
557 qual
->rx_failed
= rt2x00_get_field32(reg
, CNT0_FCS_ERROR
);
560 * Update False CCA count from register.
562 rt2400pci_bbp_read(rt2x00dev
, 39, &bbp
);
563 qual
->false_cca
= bbp
;
566 static void rt2400pci_reset_tuner(struct rt2x00_dev
*rt2x00dev
)
568 rt2400pci_bbp_write(rt2x00dev
, 13, 0x08);
569 rt2x00dev
->link
.vgc_level
= 0x08;
572 static void rt2400pci_link_tuner(struct rt2x00_dev
*rt2x00dev
)
577 * The link tuner should not run longer then 60 seconds,
578 * and should run once every 2 seconds.
580 if (rt2x00dev
->link
.count
> 60 || !(rt2x00dev
->link
.count
& 1))
584 * Base r13 link tuning on the false cca count.
586 rt2400pci_bbp_read(rt2x00dev
, 13, ®
);
588 if (rt2x00dev
->link
.qual
.false_cca
> 512 && reg
< 0x20) {
589 rt2400pci_bbp_write(rt2x00dev
, 13, ++reg
);
590 rt2x00dev
->link
.vgc_level
= reg
;
591 } else if (rt2x00dev
->link
.qual
.false_cca
< 100 && reg
> 0x08) {
592 rt2400pci_bbp_write(rt2x00dev
, 13, --reg
);
593 rt2x00dev
->link
.vgc_level
= reg
;
598 * Initialization functions.
600 static void rt2400pci_init_rxring(struct rt2x00_dev
*rt2x00dev
)
602 struct data_ring
*ring
= rt2x00dev
->rx
;
603 struct data_desc
*rxd
;
607 memset(ring
->data_addr
, 0x00, rt2x00_get_ring_size(ring
));
609 for (i
= 0; i
< ring
->stats
.limit
; i
++) {
610 rxd
= ring
->entry
[i
].priv
;
612 rt2x00_desc_read(rxd
, 2, &word
);
613 rt2x00_set_field32(&word
, RXD_W2_BUFFER_LENGTH
,
615 rt2x00_desc_write(rxd
, 2, word
);
617 rt2x00_desc_read(rxd
, 1, &word
);
618 rt2x00_set_field32(&word
, RXD_W1_BUFFER_ADDRESS
,
619 ring
->entry
[i
].data_dma
);
620 rt2x00_desc_write(rxd
, 1, word
);
622 rt2x00_desc_read(rxd
, 0, &word
);
623 rt2x00_set_field32(&word
, RXD_W0_OWNER_NIC
, 1);
624 rt2x00_desc_write(rxd
, 0, word
);
627 rt2x00_ring_index_clear(rt2x00dev
->rx
);
630 static void rt2400pci_init_txring(struct rt2x00_dev
*rt2x00dev
, const int queue
)
632 struct data_ring
*ring
= rt2x00lib_get_ring(rt2x00dev
, queue
);
633 struct data_desc
*txd
;
637 memset(ring
->data_addr
, 0x00, rt2x00_get_ring_size(ring
));
639 for (i
= 0; i
< ring
->stats
.limit
; i
++) {
640 txd
= ring
->entry
[i
].priv
;
642 rt2x00_desc_read(txd
, 1, &word
);
643 rt2x00_set_field32(&word
, TXD_W1_BUFFER_ADDRESS
,
644 ring
->entry
[i
].data_dma
);
645 rt2x00_desc_write(txd
, 1, word
);
647 rt2x00_desc_read(txd
, 2, &word
);
648 rt2x00_set_field32(&word
, TXD_W2_BUFFER_LENGTH
,
650 rt2x00_desc_write(txd
, 2, word
);
652 rt2x00_desc_read(txd
, 0, &word
);
653 rt2x00_set_field32(&word
, TXD_W0_VALID
, 0);
654 rt2x00_set_field32(&word
, TXD_W0_OWNER_NIC
, 0);
655 rt2x00_desc_write(txd
, 0, word
);
658 rt2x00_ring_index_clear(ring
);
661 static int rt2400pci_init_rings(struct rt2x00_dev
*rt2x00dev
)
668 rt2400pci_init_rxring(rt2x00dev
);
669 rt2400pci_init_txring(rt2x00dev
, IEEE80211_TX_QUEUE_DATA0
);
670 rt2400pci_init_txring(rt2x00dev
, IEEE80211_TX_QUEUE_DATA1
);
671 rt2400pci_init_txring(rt2x00dev
, IEEE80211_TX_QUEUE_AFTER_BEACON
);
672 rt2400pci_init_txring(rt2x00dev
, IEEE80211_TX_QUEUE_BEACON
);
675 * Initialize registers.
677 rt2x00pci_register_read(rt2x00dev
, TXCSR2
, ®
);
678 rt2x00_set_field32(®
, TXCSR2_TXD_SIZE
,
679 rt2x00dev
->tx
[IEEE80211_TX_QUEUE_DATA0
].desc_size
);
680 rt2x00_set_field32(®
, TXCSR2_NUM_TXD
,
681 rt2x00dev
->tx
[IEEE80211_TX_QUEUE_DATA1
].stats
.limit
);
682 rt2x00_set_field32(®
, TXCSR2_NUM_ATIM
,
683 rt2x00dev
->bcn
[1].stats
.limit
);
684 rt2x00_set_field32(®
, TXCSR2_NUM_PRIO
,
685 rt2x00dev
->tx
[IEEE80211_TX_QUEUE_DATA0
].stats
.limit
);
686 rt2x00pci_register_write(rt2x00dev
, TXCSR2
, reg
);
688 rt2x00pci_register_read(rt2x00dev
, TXCSR3
, ®
);
689 rt2x00_set_field32(®
, TXCSR3_TX_RING_REGISTER
,
690 rt2x00dev
->tx
[IEEE80211_TX_QUEUE_DATA1
].data_dma
);
691 rt2x00pci_register_write(rt2x00dev
, TXCSR3
, reg
);
693 rt2x00pci_register_read(rt2x00dev
, TXCSR5
, ®
);
694 rt2x00_set_field32(®
, TXCSR5_PRIO_RING_REGISTER
,
695 rt2x00dev
->tx
[IEEE80211_TX_QUEUE_DATA0
].data_dma
);
696 rt2x00pci_register_write(rt2x00dev
, TXCSR5
, reg
);
698 rt2x00pci_register_read(rt2x00dev
, TXCSR4
, ®
);
699 rt2x00_set_field32(®
, TXCSR4_ATIM_RING_REGISTER
,
700 rt2x00dev
->bcn
[1].data_dma
);
701 rt2x00pci_register_write(rt2x00dev
, TXCSR4
, reg
);
703 rt2x00pci_register_read(rt2x00dev
, TXCSR6
, ®
);
704 rt2x00_set_field32(®
, TXCSR6_BEACON_RING_REGISTER
,
705 rt2x00dev
->bcn
[0].data_dma
);
706 rt2x00pci_register_write(rt2x00dev
, TXCSR6
, reg
);
708 rt2x00pci_register_read(rt2x00dev
, RXCSR1
, ®
);
709 rt2x00_set_field32(®
, RXCSR1_RXD_SIZE
, rt2x00dev
->rx
->desc_size
);
710 rt2x00_set_field32(®
, RXCSR1_NUM_RXD
, rt2x00dev
->rx
->stats
.limit
);
711 rt2x00pci_register_write(rt2x00dev
, RXCSR1
, reg
);
713 rt2x00pci_register_read(rt2x00dev
, RXCSR2
, ®
);
714 rt2x00_set_field32(®
, RXCSR2_RX_RING_REGISTER
,
715 rt2x00dev
->rx
->data_dma
);
716 rt2x00pci_register_write(rt2x00dev
, RXCSR2
, reg
);
721 static int rt2400pci_init_registers(struct rt2x00_dev
*rt2x00dev
)
725 rt2x00pci_register_write(rt2x00dev
, PSCSR0
, 0x00020002);
726 rt2x00pci_register_write(rt2x00dev
, PSCSR1
, 0x00000002);
727 rt2x00pci_register_write(rt2x00dev
, PSCSR2
, 0x00023f20);
728 rt2x00pci_register_write(rt2x00dev
, PSCSR3
, 0x00000002);
730 rt2x00pci_register_read(rt2x00dev
, TIMECSR
, ®
);
731 rt2x00_set_field32(®
, TIMECSR_US_COUNT
, 33);
732 rt2x00_set_field32(®
, TIMECSR_US_64_COUNT
, 63);
733 rt2x00_set_field32(®
, TIMECSR_BEACON_EXPECT
, 0);
734 rt2x00pci_register_write(rt2x00dev
, TIMECSR
, reg
);
736 rt2x00pci_register_read(rt2x00dev
, CSR9
, ®
);
737 rt2x00_set_field32(®
, CSR9_MAX_FRAME_UNIT
,
738 (rt2x00dev
->rx
->data_size
/ 128));
739 rt2x00pci_register_write(rt2x00dev
, CSR9
, reg
);
741 rt2x00pci_register_write(rt2x00dev
, CNT3
, 0x3f080000);
743 rt2x00pci_register_read(rt2x00dev
, ARCSR0
, ®
);
744 rt2x00_set_field32(®
, ARCSR0_AR_BBP_DATA0
, 133);
745 rt2x00_set_field32(®
, ARCSR0_AR_BBP_ID0
, 134);
746 rt2x00_set_field32(®
, ARCSR0_AR_BBP_DATA1
, 136);
747 rt2x00_set_field32(®
, ARCSR0_AR_BBP_ID1
, 135);
748 rt2x00pci_register_write(rt2x00dev
, ARCSR0
, reg
);
750 rt2x00pci_register_read(rt2x00dev
, RXCSR3
, ®
);
751 rt2x00_set_field32(®
, RXCSR3_BBP_ID0
, 3); /* Tx power.*/
752 rt2x00_set_field32(®
, RXCSR3_BBP_ID0_VALID
, 1);
753 rt2x00_set_field32(®
, RXCSR3_BBP_ID1
, 32); /* Signal */
754 rt2x00_set_field32(®
, RXCSR3_BBP_ID1_VALID
, 1);
755 rt2x00_set_field32(®
, RXCSR3_BBP_ID2
, 36); /* Rssi */
756 rt2x00_set_field32(®
, RXCSR3_BBP_ID2_VALID
, 1);
757 rt2x00pci_register_write(rt2x00dev
, RXCSR3
, reg
);
759 rt2x00pci_register_write(rt2x00dev
, PWRCSR0
, 0x3f3b3100);
761 if (rt2x00dev
->ops
->lib
->set_device_state(rt2x00dev
, STATE_AWAKE
))
764 rt2x00pci_register_write(rt2x00dev
, MACCSR0
, 0x00217223);
765 rt2x00pci_register_write(rt2x00dev
, MACCSR1
, 0x00235518);
767 rt2x00pci_register_read(rt2x00dev
, MACCSR2
, ®
);
768 rt2x00_set_field32(®
, MACCSR2_DELAY
, 64);
769 rt2x00pci_register_write(rt2x00dev
, MACCSR2
, reg
);
771 rt2x00pci_register_read(rt2x00dev
, RALINKCSR
, ®
);
772 rt2x00_set_field32(®
, RALINKCSR_AR_BBP_DATA0
, 17);
773 rt2x00_set_field32(®
, RALINKCSR_AR_BBP_ID0
, 154);
774 rt2x00_set_field32(®
, RALINKCSR_AR_BBP_DATA1
, 0);
775 rt2x00_set_field32(®
, RALINKCSR_AR_BBP_ID1
, 154);
776 rt2x00pci_register_write(rt2x00dev
, RALINKCSR
, reg
);
778 rt2x00pci_register_read(rt2x00dev
, CSR1
, ®
);
779 rt2x00_set_field32(®
, CSR1_SOFT_RESET
, 1);
780 rt2x00_set_field32(®
, CSR1_BBP_RESET
, 0);
781 rt2x00_set_field32(®
, CSR1_HOST_READY
, 0);
782 rt2x00pci_register_write(rt2x00dev
, CSR1
, reg
);
784 rt2x00pci_register_read(rt2x00dev
, CSR1
, ®
);
785 rt2x00_set_field32(®
, CSR1_SOFT_RESET
, 0);
786 rt2x00_set_field32(®
, CSR1_HOST_READY
, 1);
787 rt2x00pci_register_write(rt2x00dev
, CSR1
, reg
);
790 * We must clear the FCS and FIFO error count.
791 * These registers are cleared on read,
792 * so we may pass a useless variable to store the value.
794 rt2x00pci_register_read(rt2x00dev
, CNT0
, ®
);
795 rt2x00pci_register_read(rt2x00dev
, CNT4
, ®
);
800 static int rt2400pci_init_bbp(struct rt2x00_dev
*rt2x00dev
)
807 for (i
= 0; i
< REGISTER_BUSY_COUNT
; i
++) {
808 rt2400pci_bbp_read(rt2x00dev
, 0, &value
);
809 if ((value
!= 0xff) && (value
!= 0x00))
810 goto continue_csr_init
;
811 NOTICE(rt2x00dev
, "Waiting for BBP register.\n");
812 udelay(REGISTER_BUSY_DELAY
);
815 ERROR(rt2x00dev
, "BBP register access failed, aborting.\n");
819 rt2400pci_bbp_write(rt2x00dev
, 1, 0x00);
820 rt2400pci_bbp_write(rt2x00dev
, 3, 0x27);
821 rt2400pci_bbp_write(rt2x00dev
, 4, 0x08);
822 rt2400pci_bbp_write(rt2x00dev
, 10, 0x0f);
823 rt2400pci_bbp_write(rt2x00dev
, 15, 0x72);
824 rt2400pci_bbp_write(rt2x00dev
, 16, 0x74);
825 rt2400pci_bbp_write(rt2x00dev
, 17, 0x20);
826 rt2400pci_bbp_write(rt2x00dev
, 18, 0x72);
827 rt2400pci_bbp_write(rt2x00dev
, 19, 0x0b);
828 rt2400pci_bbp_write(rt2x00dev
, 20, 0x00);
829 rt2400pci_bbp_write(rt2x00dev
, 28, 0x11);
830 rt2400pci_bbp_write(rt2x00dev
, 29, 0x04);
831 rt2400pci_bbp_write(rt2x00dev
, 30, 0x21);
832 rt2400pci_bbp_write(rt2x00dev
, 31, 0x00);
834 DEBUG(rt2x00dev
, "Start initialization from EEPROM...\n");
835 for (i
= 0; i
< EEPROM_BBP_SIZE
; i
++) {
836 rt2x00_eeprom_read(rt2x00dev
, EEPROM_BBP_START
+ i
, &eeprom
);
838 if (eeprom
!= 0xffff && eeprom
!= 0x0000) {
839 reg_id
= rt2x00_get_field16(eeprom
, EEPROM_BBP_REG_ID
);
840 value
= rt2x00_get_field16(eeprom
, EEPROM_BBP_VALUE
);
841 DEBUG(rt2x00dev
, "BBP: 0x%02x, value: 0x%02x.\n",
843 rt2400pci_bbp_write(rt2x00dev
, reg_id
, value
);
846 DEBUG(rt2x00dev
, "...End initialization from EEPROM.\n");
852 * Device state switch handlers.
854 static void rt2400pci_toggle_rx(struct rt2x00_dev
*rt2x00dev
,
855 enum dev_state state
)
859 rt2x00pci_register_read(rt2x00dev
, RXCSR0
, ®
);
860 rt2x00_set_field32(®
, RXCSR0_DISABLE_RX
,
861 state
== STATE_RADIO_RX_OFF
);
862 rt2x00pci_register_write(rt2x00dev
, RXCSR0
, reg
);
865 static void rt2400pci_toggle_irq(struct rt2x00_dev
*rt2x00dev
,
866 enum dev_state state
)
868 int mask
= (state
== STATE_RADIO_IRQ_OFF
);
872 * When interrupts are being enabled, the interrupt registers
873 * should clear the register to assure a clean state.
875 if (state
== STATE_RADIO_IRQ_ON
) {
876 rt2x00pci_register_read(rt2x00dev
, CSR7
, ®
);
877 rt2x00pci_register_write(rt2x00dev
, CSR7
, reg
);
881 * Only toggle the interrupts bits we are going to use.
882 * Non-checked interrupt bits are disabled by default.
884 rt2x00pci_register_read(rt2x00dev
, CSR8
, ®
);
885 rt2x00_set_field32(®
, CSR8_TBCN_EXPIRE
, mask
);
886 rt2x00_set_field32(®
, CSR8_TXDONE_TXRING
, mask
);
887 rt2x00_set_field32(®
, CSR8_TXDONE_ATIMRING
, mask
);
888 rt2x00_set_field32(®
, CSR8_TXDONE_PRIORING
, mask
);
889 rt2x00_set_field32(®
, CSR8_RXDONE
, mask
);
890 rt2x00pci_register_write(rt2x00dev
, CSR8
, reg
);
893 static int rt2400pci_enable_radio(struct rt2x00_dev
*rt2x00dev
)
896 * Initialize all registers.
898 if (rt2400pci_init_rings(rt2x00dev
) ||
899 rt2400pci_init_registers(rt2x00dev
) ||
900 rt2400pci_init_bbp(rt2x00dev
)) {
901 ERROR(rt2x00dev
, "Register initialization failed.\n");
908 rt2400pci_toggle_irq(rt2x00dev
, STATE_RADIO_IRQ_ON
);
913 rt2400pci_enable_led(rt2x00dev
);
918 static void rt2400pci_disable_radio(struct rt2x00_dev
*rt2x00dev
)
925 rt2400pci_disable_led(rt2x00dev
);
927 rt2x00pci_register_write(rt2x00dev
, PWRCSR0
, 0);
930 * Disable synchronisation.
932 rt2x00pci_register_write(rt2x00dev
, CSR14
, 0);
937 rt2x00pci_register_read(rt2x00dev
, TXCSR0
, ®
);
938 rt2x00_set_field32(®
, TXCSR0_ABORT
, 1);
939 rt2x00pci_register_write(rt2x00dev
, TXCSR0
, reg
);
942 * Disable interrupts.
944 rt2400pci_toggle_irq(rt2x00dev
, STATE_RADIO_IRQ_OFF
);
947 static int rt2400pci_set_state(struct rt2x00_dev
*rt2x00dev
,
948 enum dev_state state
)
956 put_to_sleep
= (state
!= STATE_AWAKE
);
958 rt2x00pci_register_read(rt2x00dev
, PWRCSR1
, ®
);
959 rt2x00_set_field32(®
, PWRCSR1_SET_STATE
, 1);
960 rt2x00_set_field32(®
, PWRCSR1_BBP_DESIRE_STATE
, state
);
961 rt2x00_set_field32(®
, PWRCSR1_RF_DESIRE_STATE
, state
);
962 rt2x00_set_field32(®
, PWRCSR1_PUT_TO_SLEEP
, put_to_sleep
);
963 rt2x00pci_register_write(rt2x00dev
, PWRCSR1
, reg
);
966 * Device is not guaranteed to be in the requested state yet.
967 * We must wait until the register indicates that the
968 * device has entered the correct state.
970 for (i
= 0; i
< REGISTER_BUSY_COUNT
; i
++) {
971 rt2x00pci_register_read(rt2x00dev
, PWRCSR1
, ®
);
972 bbp_state
= rt2x00_get_field32(reg
, PWRCSR1_BBP_CURR_STATE
);
973 rf_state
= rt2x00_get_field32(reg
, PWRCSR1_RF_CURR_STATE
);
974 if (bbp_state
== state
&& rf_state
== state
)
979 NOTICE(rt2x00dev
, "Device failed to enter state %d, "
980 "current device state: bbp %d and rf %d.\n",
981 state
, bbp_state
, rf_state
);
986 static int rt2400pci_set_device_state(struct rt2x00_dev
*rt2x00dev
,
987 enum dev_state state
)
993 retval
= rt2400pci_enable_radio(rt2x00dev
);
995 case STATE_RADIO_OFF
:
996 rt2400pci_disable_radio(rt2x00dev
);
998 case STATE_RADIO_RX_ON
:
999 case STATE_RADIO_RX_OFF
:
1000 rt2400pci_toggle_rx(rt2x00dev
, state
);
1002 case STATE_DEEP_SLEEP
:
1006 retval
= rt2400pci_set_state(rt2x00dev
, state
);
1017 * TX descriptor initialization
1019 static void rt2400pci_write_tx_desc(struct rt2x00_dev
*rt2x00dev
,
1020 struct data_desc
*txd
,
1021 struct txdata_entry_desc
*desc
,
1022 struct ieee80211_hdr
*ieee80211hdr
,
1023 unsigned int length
,
1024 struct ieee80211_tx_control
*control
)
1029 u32 length_high
= 0;
1033 * The PLCP values should be treated as if they
1036 rt2x00_set_field32(&signal
, BBPCSR_VALUE
, desc
->signal
);
1037 rt2x00_set_field32(&signal
, BBPCSR_REGNUM
, 5);
1038 rt2x00_set_field32(&signal
, BBPCSR_BUSY
, 1);
1040 rt2x00_set_field32(&service
, BBPCSR_VALUE
, desc
->service
);
1041 rt2x00_set_field32(&service
, BBPCSR_REGNUM
, 6);
1042 rt2x00_set_field32(&service
, BBPCSR_BUSY
, 1);
1044 rt2x00_set_field32(&length_high
, BBPCSR_VALUE
, desc
->length_high
);
1045 rt2x00_set_field32(&length_high
, BBPCSR_REGNUM
, 7);
1046 rt2x00_set_field32(&length_high
, BBPCSR_BUSY
, 1);
1048 rt2x00_set_field32(&length_low
, BBPCSR_VALUE
, desc
->length_low
);
1049 rt2x00_set_field32(&length_low
, BBPCSR_REGNUM
, 8);
1050 rt2x00_set_field32(&length_low
, BBPCSR_BUSY
, 1);
1053 * Start writing the descriptor words.
1055 rt2x00_desc_read(txd
, 2, &word
);
1056 rt2x00_set_field32(&word
, TXD_W2_DATABYTE_COUNT
, length
);
1057 rt2x00_desc_write(txd
, 2, word
);
1059 rt2x00_desc_read(txd
, 3, &word
);
1060 rt2x00_set_field32(&word
, TXD_W3_PLCP_SIGNAL
, signal
);
1061 rt2x00_set_field32(&word
, TXD_W3_PLCP_SERVICE
, service
);
1062 rt2x00_desc_write(txd
, 3, word
);
1064 rt2x00_desc_read(txd
, 4, &word
);
1065 rt2x00_set_field32(&word
, TXD_W4_PLCP_LENGTH_LOW
, length_low
);
1066 rt2x00_set_field32(&word
, TXD_W4_PLCP_LENGTH_HIGH
, length_high
);
1067 rt2x00_desc_write(txd
, 4, word
);
1069 rt2x00_desc_read(txd
, 0, &word
);
1070 rt2x00_set_field32(&word
, TXD_W0_OWNER_NIC
, 1);
1071 rt2x00_set_field32(&word
, TXD_W0_VALID
, 1);
1072 rt2x00_set_field32(&word
, TXD_W0_MORE_FRAG
,
1073 test_bit(ENTRY_TXD_MORE_FRAG
, &desc
->flags
));
1074 rt2x00_set_field32(&word
, TXD_W0_ACK
,
1075 !(control
->flags
& IEEE80211_TXCTL_NO_ACK
));
1076 rt2x00_set_field32(&word
, TXD_W0_TIMESTAMP
,
1077 test_bit(ENTRY_TXD_REQ_TIMESTAMP
, &desc
->flags
));
1078 rt2x00_set_field32(&word
, TXD_W0_RTS
,
1079 test_bit(ENTRY_TXD_RTS_FRAME
, &desc
->flags
));
1080 rt2x00_set_field32(&word
, TXD_W0_IFS
, desc
->ifs
);
1081 rt2x00_set_field32(&word
, TXD_W0_RETRY_MODE
,
1083 IEEE80211_TXCTL_LONG_RETRY_LIMIT
));
1084 rt2x00_desc_write(txd
, 0, word
);
1088 * TX data initialization
1090 static void rt2400pci_kick_tx_queue(struct rt2x00_dev
*rt2x00dev
,
1095 if (queue
== IEEE80211_TX_QUEUE_BEACON
) {
1096 rt2x00pci_register_read(rt2x00dev
, CSR14
, ®
);
1097 if (!rt2x00_get_field32(reg
, CSR14_BEACON_GEN
)) {
1098 rt2x00_set_field32(®
, CSR14_BEACON_GEN
, 1);
1099 rt2x00pci_register_write(rt2x00dev
, CSR14
, reg
);
1104 rt2x00pci_register_read(rt2x00dev
, TXCSR0
, ®
);
1105 rt2x00_set_field32(®
, TXCSR0_KICK_PRIO
,
1106 (queue
== IEEE80211_TX_QUEUE_DATA0
));
1107 rt2x00_set_field32(®
, TXCSR0_KICK_TX
,
1108 (queue
== IEEE80211_TX_QUEUE_DATA1
));
1109 rt2x00_set_field32(®
, TXCSR0_KICK_ATIM
,
1110 (queue
== IEEE80211_TX_QUEUE_AFTER_BEACON
));
1111 rt2x00pci_register_write(rt2x00dev
, TXCSR0
, reg
);
1115 * RX control handlers
1117 static void rt2400pci_fill_rxdone(struct data_entry
*entry
,
1118 struct rxdata_entry_desc
*desc
)
1120 struct data_desc
*rxd
= entry
->priv
;
1124 rt2x00_desc_read(rxd
, 0, &word0
);
1125 rt2x00_desc_read(rxd
, 2, &word2
);
1128 if (rt2x00_get_field32(word0
, RXD_W0_CRC_ERROR
))
1129 desc
->flags
|= RX_FLAG_FAILED_FCS_CRC
;
1130 if (rt2x00_get_field32(word0
, RXD_W0_PHYSICAL_ERROR
))
1131 desc
->flags
|= RX_FLAG_FAILED_PLCP_CRC
;
1134 * Obtain the status about this packet.
1136 desc
->signal
= rt2x00_get_field32(word2
, RXD_W2_SIGNAL
);
1137 desc
->rssi
= rt2x00_get_field32(word2
, RXD_W2_RSSI
) -
1138 entry
->ring
->rt2x00dev
->rssi_offset
;
1140 desc
->size
= rt2x00_get_field32(word0
, RXD_W0_DATABYTE_COUNT
);
1144 * Interrupt functions.
1146 static void rt2400pci_txdone(struct rt2x00_dev
*rt2x00dev
, const int queue
)
1148 struct data_ring
*ring
= rt2x00lib_get_ring(rt2x00dev
, queue
);
1149 struct data_entry
*entry
;
1150 struct data_desc
*txd
;
1155 while (!rt2x00_ring_empty(ring
)) {
1156 entry
= rt2x00_get_data_entry_done(ring
);
1158 rt2x00_desc_read(txd
, 0, &word
);
1160 if (rt2x00_get_field32(word
, TXD_W0_OWNER_NIC
) ||
1161 !rt2x00_get_field32(word
, TXD_W0_VALID
))
1165 * Obtain the status about this packet.
1167 tx_status
= rt2x00_get_field32(word
, TXD_W0_RESULT
);
1168 retry
= rt2x00_get_field32(word
, TXD_W0_RETRY_COUNT
);
1170 rt2x00lib_txdone(entry
, tx_status
, retry
);
1173 * Make this entry available for reuse.
1176 rt2x00_set_field32(&word
, TXD_W0_VALID
, 0);
1177 rt2x00_desc_write(txd
, 0, word
);
1178 rt2x00_ring_index_done_inc(ring
);
1182 * If the data ring was full before the txdone handler
1183 * we must make sure the packet queue in the mac80211 stack
1184 * is reenabled when the txdone handler has finished.
1186 entry
= ring
->entry
;
1187 if (!rt2x00_ring_full(ring
))
1188 ieee80211_wake_queue(rt2x00dev
->hw
,
1189 entry
->tx_status
.control
.queue
);
1192 static irqreturn_t
rt2400pci_interrupt(int irq
, void *dev_instance
)
1194 struct rt2x00_dev
*rt2x00dev
= dev_instance
;
1198 * Get the interrupt sources & saved to local variable.
1199 * Write register value back to clear pending interrupts.
1201 rt2x00pci_register_read(rt2x00dev
, CSR7
, ®
);
1202 rt2x00pci_register_write(rt2x00dev
, CSR7
, reg
);
1207 if (!test_bit(DEVICE_ENABLED_RADIO
, &rt2x00dev
->flags
))
1211 * Handle interrupts, walk through all bits
1212 * and run the tasks, the bits are checked in order of
1217 * 1 - Beacon timer expired interrupt.
1219 if (rt2x00_get_field32(reg
, CSR7_TBCN_EXPIRE
))
1220 rt2x00lib_beacondone(rt2x00dev
);
1223 * 2 - Rx ring done interrupt.
1225 if (rt2x00_get_field32(reg
, CSR7_RXDONE
))
1226 rt2x00pci_rxdone(rt2x00dev
);
1229 * 3 - Atim ring transmit done interrupt.
1231 if (rt2x00_get_field32(reg
, CSR7_TXDONE_ATIMRING
))
1232 rt2400pci_txdone(rt2x00dev
, IEEE80211_TX_QUEUE_AFTER_BEACON
);
1235 * 4 - Priority ring transmit done interrupt.
1237 if (rt2x00_get_field32(reg
, CSR7_TXDONE_PRIORING
))
1238 rt2400pci_txdone(rt2x00dev
, IEEE80211_TX_QUEUE_DATA0
);
1241 * 5 - Tx ring transmit done interrupt.
1243 if (rt2x00_get_field32(reg
, CSR7_TXDONE_TXRING
))
1244 rt2400pci_txdone(rt2x00dev
, IEEE80211_TX_QUEUE_DATA1
);
1250 * Device probe functions.
1252 static int rt2400pci_validate_eeprom(struct rt2x00_dev
*rt2x00dev
)
1254 struct eeprom_93cx6 eeprom
;
1259 rt2x00pci_register_read(rt2x00dev
, CSR21
, ®
);
1261 eeprom
.data
= rt2x00dev
;
1262 eeprom
.register_read
= rt2400pci_eepromregister_read
;
1263 eeprom
.register_write
= rt2400pci_eepromregister_write
;
1264 eeprom
.width
= rt2x00_get_field32(reg
, CSR21_TYPE_93C46
) ?
1265 PCI_EEPROM_WIDTH_93C46
: PCI_EEPROM_WIDTH_93C66
;
1266 eeprom
.reg_data_in
= 0;
1267 eeprom
.reg_data_out
= 0;
1268 eeprom
.reg_data_clock
= 0;
1269 eeprom
.reg_chip_select
= 0;
1271 eeprom_93cx6_multiread(&eeprom
, EEPROM_BASE
, rt2x00dev
->eeprom
,
1272 EEPROM_SIZE
/ sizeof(u16
));
1275 * Start validation of the data that has been read.
1277 mac
= rt2x00_eeprom_addr(rt2x00dev
, EEPROM_MAC_ADDR_0
);
1278 if (!is_valid_ether_addr(mac
)) {
1279 DECLARE_MAC_BUF(macbuf
);
1281 random_ether_addr(mac
);
1282 EEPROM(rt2x00dev
, "MAC: %s\n", print_mac(macbuf
, mac
));
1285 rt2x00_eeprom_read(rt2x00dev
, EEPROM_ANTENNA
, &word
);
1286 if (word
== 0xffff) {
1287 ERROR(rt2x00dev
, "Invalid EEPROM data detected.\n");
1294 static int rt2400pci_init_eeprom(struct rt2x00_dev
*rt2x00dev
)
1301 * Read EEPROM word for configuration.
1303 rt2x00_eeprom_read(rt2x00dev
, EEPROM_ANTENNA
, &eeprom
);
1306 * Identify RF chipset.
1308 value
= rt2x00_get_field16(eeprom
, EEPROM_ANTENNA_RF_TYPE
);
1309 rt2x00pci_register_read(rt2x00dev
, CSR0
, ®
);
1310 rt2x00_set_chip(rt2x00dev
, RT2460
, value
, reg
);
1312 if (!rt2x00_rf(&rt2x00dev
->chip
, RF2420
) &&
1313 !rt2x00_rf(&rt2x00dev
->chip
, RF2421
)) {
1314 ERROR(rt2x00dev
, "Invalid RF chipset detected.\n");
1319 * Identify default antenna configuration.
1321 rt2x00dev
->default_ant
.tx
=
1322 rt2x00_get_field16(eeprom
, EEPROM_ANTENNA_TX_DEFAULT
);
1323 rt2x00dev
->default_ant
.rx
=
1324 rt2x00_get_field16(eeprom
, EEPROM_ANTENNA_RX_DEFAULT
);
1327 * When the eeprom indicates SW_DIVERSITY use HW_DIVERSITY instead.
1328 * I am not 100% sure about this, but the legacy drivers do not
1329 * indicate antenna swapping in software is required when
1330 * diversity is enabled.
1332 if (rt2x00dev
->default_ant
.tx
== ANTENNA_SW_DIVERSITY
)
1333 rt2x00dev
->default_ant
.tx
= ANTENNA_HW_DIVERSITY
;
1334 if (rt2x00dev
->default_ant
.rx
== ANTENNA_SW_DIVERSITY
)
1335 rt2x00dev
->default_ant
.rx
= ANTENNA_HW_DIVERSITY
;
1338 * Store led mode, for correct led behaviour.
1340 rt2x00dev
->led_mode
=
1341 rt2x00_get_field16(eeprom
, EEPROM_ANTENNA_LED_MODE
);
1344 * Detect if this device has an hardware controlled radio.
1346 #ifdef CONFIG_RT2400PCI_RFKILL
1347 if (rt2x00_get_field16(eeprom
, EEPROM_ANTENNA_HARDWARE_RADIO
))
1348 __set_bit(CONFIG_SUPPORT_HW_BUTTON
, &rt2x00dev
->flags
);
1349 #endif /* CONFIG_RT2400PCI_RFKILL */
1352 * Check if the BBP tuning should be enabled.
1354 if (!rt2x00_get_field16(eeprom
, EEPROM_ANTENNA_RX_AGCVGC_TUNING
))
1355 __set_bit(CONFIG_DISABLE_LINK_TUNING
, &rt2x00dev
->flags
);
1361 * RF value list for RF2420 & RF2421
1364 static const struct rf_channel rf_vals_bg
[] = {
1365 { 1, 0x00022058, 0x000c1fda, 0x00000101, 0 },
1366 { 2, 0x00022058, 0x000c1fee, 0x00000101, 0 },
1367 { 3, 0x00022058, 0x000c2002, 0x00000101, 0 },
1368 { 4, 0x00022058, 0x000c2016, 0x00000101, 0 },
1369 { 5, 0x00022058, 0x000c202a, 0x00000101, 0 },
1370 { 6, 0x00022058, 0x000c203e, 0x00000101, 0 },
1371 { 7, 0x00022058, 0x000c2052, 0x00000101, 0 },
1372 { 8, 0x00022058, 0x000c2066, 0x00000101, 0 },
1373 { 9, 0x00022058, 0x000c207a, 0x00000101, 0 },
1374 { 10, 0x00022058, 0x000c208e, 0x00000101, 0 },
1375 { 11, 0x00022058, 0x000c20a2, 0x00000101, 0 },
1376 { 12, 0x00022058, 0x000c20b6, 0x00000101, 0 },
1377 { 13, 0x00022058, 0x000c20ca, 0x00000101, 0 },
1378 { 14, 0x00022058, 0x000c20fa, 0x00000101, 0 },
1381 static void rt2400pci_probe_hw_mode(struct rt2x00_dev
*rt2x00dev
)
1383 struct hw_mode_spec
*spec
= &rt2x00dev
->spec
;
1388 * Initialize all hw fields.
1390 rt2x00dev
->hw
->flags
= IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING
;
1391 rt2x00dev
->hw
->extra_tx_headroom
= 0;
1392 rt2x00dev
->hw
->max_signal
= MAX_SIGNAL
;
1393 rt2x00dev
->hw
->max_rssi
= MAX_RX_SSI
;
1394 rt2x00dev
->hw
->queues
= 2;
1396 SET_IEEE80211_DEV(rt2x00dev
->hw
, &rt2x00dev_pci(rt2x00dev
)->dev
);
1397 SET_IEEE80211_PERM_ADDR(rt2x00dev
->hw
,
1398 rt2x00_eeprom_addr(rt2x00dev
,
1399 EEPROM_MAC_ADDR_0
));
1402 * Convert tx_power array in eeprom.
1404 txpower
= rt2x00_eeprom_addr(rt2x00dev
, EEPROM_TXPOWER_START
);
1405 for (i
= 0; i
< 14; i
++)
1406 txpower
[i
] = TXPOWER_FROM_DEV(txpower
[i
]);
1409 * Initialize hw_mode information.
1411 spec
->num_modes
= 1;
1412 spec
->num_rates
= 4;
1413 spec
->tx_power_a
= NULL
;
1414 spec
->tx_power_bg
= txpower
;
1415 spec
->tx_power_default
= DEFAULT_TXPOWER
;
1417 spec
->num_channels
= ARRAY_SIZE(rf_vals_bg
);
1418 spec
->channels
= rf_vals_bg
;
1421 static int rt2400pci_probe_hw(struct rt2x00_dev
*rt2x00dev
)
1426 * Allocate eeprom data.
1428 retval
= rt2400pci_validate_eeprom(rt2x00dev
);
1432 retval
= rt2400pci_init_eeprom(rt2x00dev
);
1437 * Initialize hw specifications.
1439 rt2400pci_probe_hw_mode(rt2x00dev
);
1442 * This device requires the beacon ring
1444 __set_bit(DRIVER_REQUIRE_BEACON_RING
, &rt2x00dev
->flags
);
1447 * Set the rssi offset.
1449 rt2x00dev
->rssi_offset
= DEFAULT_RSSI_OFFSET
;
1455 * IEEE80211 stack callback functions.
1457 static void rt2400pci_configure_filter(struct ieee80211_hw
*hw
,
1458 unsigned int changed_flags
,
1459 unsigned int *total_flags
,
1461 struct dev_addr_list
*mc_list
)
1463 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
1464 struct interface
*intf
= &rt2x00dev
->interface
;
1468 * Mask off any flags we are going to ignore from
1469 * the total_flags field.
1480 * Apply some rules to the filters:
1481 * - Some filters imply different filters to be set.
1482 * - Some things we can't filter out at all.
1483 * - Some filters are set based on interface type.
1485 *total_flags
|= FIF_ALLMULTI
;
1486 if (*total_flags
& FIF_OTHER_BSS
||
1487 *total_flags
& FIF_PROMISC_IN_BSS
)
1488 *total_flags
|= FIF_PROMISC_IN_BSS
| FIF_OTHER_BSS
;
1489 if (is_interface_type(intf
, IEEE80211_IF_TYPE_AP
))
1490 *total_flags
|= FIF_PROMISC_IN_BSS
;
1493 * Check if there is any work left for us.
1495 if (intf
->filter
== *total_flags
)
1497 intf
->filter
= *total_flags
;
1500 * Start configuration steps.
1501 * Note that the version error will always be dropped
1502 * since there is no filter for it at this time.
1504 rt2x00pci_register_read(rt2x00dev
, RXCSR0
, ®
);
1505 rt2x00_set_field32(®
, RXCSR0_DROP_CRC
,
1506 !(*total_flags
& FIF_FCSFAIL
));
1507 rt2x00_set_field32(®
, RXCSR0_DROP_PHYSICAL
,
1508 !(*total_flags
& FIF_PLCPFAIL
));
1509 rt2x00_set_field32(®
, RXCSR0_DROP_CONTROL
,
1510 !(*total_flags
& FIF_CONTROL
));
1511 rt2x00_set_field32(®
, RXCSR0_DROP_NOT_TO_ME
,
1512 !(*total_flags
& FIF_PROMISC_IN_BSS
));
1513 rt2x00_set_field32(®
, RXCSR0_DROP_TODS
,
1514 !(*total_flags
& FIF_PROMISC_IN_BSS
));
1515 rt2x00_set_field32(®
, RXCSR0_DROP_VERSION_ERROR
, 1);
1516 rt2x00pci_register_write(rt2x00dev
, RXCSR0
, reg
);
1519 static int rt2400pci_set_retry_limit(struct ieee80211_hw
*hw
,
1520 u32 short_retry
, u32 long_retry
)
1522 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
1525 rt2x00pci_register_read(rt2x00dev
, CSR11
, ®
);
1526 rt2x00_set_field32(®
, CSR11_LONG_RETRY
, long_retry
);
1527 rt2x00_set_field32(®
, CSR11_SHORT_RETRY
, short_retry
);
1528 rt2x00pci_register_write(rt2x00dev
, CSR11
, reg
);
1533 static int rt2400pci_conf_tx(struct ieee80211_hw
*hw
,
1535 const struct ieee80211_tx_queue_params
*params
)
1537 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
1540 * We don't support variating cw_min and cw_max variables
1541 * per queue. So by default we only configure the TX queue,
1542 * and ignore all other configurations.
1544 if (queue
!= IEEE80211_TX_QUEUE_DATA0
)
1547 if (rt2x00mac_conf_tx(hw
, queue
, params
))
1551 * Write configuration to register.
1553 rt2400pci_config_cw(rt2x00dev
, &rt2x00dev
->tx
->tx_params
);
1558 static u64
rt2400pci_get_tsf(struct ieee80211_hw
*hw
)
1560 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
1564 rt2x00pci_register_read(rt2x00dev
, CSR17
, ®
);
1565 tsf
= (u64
) rt2x00_get_field32(reg
, CSR17_HIGH_TSFTIMER
) << 32;
1566 rt2x00pci_register_read(rt2x00dev
, CSR16
, ®
);
1567 tsf
|= rt2x00_get_field32(reg
, CSR16_LOW_TSFTIMER
);
1572 static void rt2400pci_reset_tsf(struct ieee80211_hw
*hw
)
1574 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
1576 rt2x00pci_register_write(rt2x00dev
, CSR16
, 0);
1577 rt2x00pci_register_write(rt2x00dev
, CSR17
, 0);
1580 static int rt2400pci_tx_last_beacon(struct ieee80211_hw
*hw
)
1582 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
1585 rt2x00pci_register_read(rt2x00dev
, CSR15
, ®
);
1586 return rt2x00_get_field32(reg
, CSR15_BEACON_SENT
);
1589 static const struct ieee80211_ops rt2400pci_mac80211_ops
= {
1591 .start
= rt2x00mac_start
,
1592 .stop
= rt2x00mac_stop
,
1593 .add_interface
= rt2x00mac_add_interface
,
1594 .remove_interface
= rt2x00mac_remove_interface
,
1595 .config
= rt2x00mac_config
,
1596 .config_interface
= rt2x00mac_config_interface
,
1597 .configure_filter
= rt2400pci_configure_filter
,
1598 .get_stats
= rt2x00mac_get_stats
,
1599 .set_retry_limit
= rt2400pci_set_retry_limit
,
1600 .erp_ie_changed
= rt2x00mac_erp_ie_changed
,
1601 .conf_tx
= rt2400pci_conf_tx
,
1602 .get_tx_stats
= rt2x00mac_get_tx_stats
,
1603 .get_tsf
= rt2400pci_get_tsf
,
1604 .reset_tsf
= rt2400pci_reset_tsf
,
1605 .beacon_update
= rt2x00pci_beacon_update
,
1606 .tx_last_beacon
= rt2400pci_tx_last_beacon
,
1609 static const struct rt2x00lib_ops rt2400pci_rt2x00_ops
= {
1610 .irq_handler
= rt2400pci_interrupt
,
1611 .probe_hw
= rt2400pci_probe_hw
,
1612 .initialize
= rt2x00pci_initialize
,
1613 .uninitialize
= rt2x00pci_uninitialize
,
1614 .set_device_state
= rt2400pci_set_device_state
,
1615 .rfkill_poll
= rt2400pci_rfkill_poll
,
1616 .link_stats
= rt2400pci_link_stats
,
1617 .reset_tuner
= rt2400pci_reset_tuner
,
1618 .link_tuner
= rt2400pci_link_tuner
,
1619 .write_tx_desc
= rt2400pci_write_tx_desc
,
1620 .write_tx_data
= rt2x00pci_write_tx_data
,
1621 .kick_tx_queue
= rt2400pci_kick_tx_queue
,
1622 .fill_rxdone
= rt2400pci_fill_rxdone
,
1623 .config_mac_addr
= rt2400pci_config_mac_addr
,
1624 .config_bssid
= rt2400pci_config_bssid
,
1625 .config_type
= rt2400pci_config_type
,
1626 .config_preamble
= rt2400pci_config_preamble
,
1627 .config
= rt2400pci_config
,
1630 static const struct rt2x00_ops rt2400pci_ops
= {
1632 .rxd_size
= RXD_DESC_SIZE
,
1633 .txd_size
= TXD_DESC_SIZE
,
1634 .eeprom_size
= EEPROM_SIZE
,
1636 .lib
= &rt2400pci_rt2x00_ops
,
1637 .hw
= &rt2400pci_mac80211_ops
,
1638 #ifdef CONFIG_RT2X00_LIB_DEBUGFS
1639 .debugfs
= &rt2400pci_rt2x00debug
,
1640 #endif /* CONFIG_RT2X00_LIB_DEBUGFS */
1644 * RT2400pci module information.
1646 static struct pci_device_id rt2400pci_device_table
[] = {
1647 { PCI_DEVICE(0x1814, 0x0101), PCI_DEVICE_DATA(&rt2400pci_ops
) },
1651 MODULE_AUTHOR(DRV_PROJECT
);
1652 MODULE_VERSION(DRV_VERSION
);
1653 MODULE_DESCRIPTION("Ralink RT2400 PCI & PCMCIA Wireless LAN driver.");
1654 MODULE_SUPPORTED_DEVICE("Ralink RT2460 PCI & PCMCIA chipset based cards");
1655 MODULE_DEVICE_TABLE(pci
, rt2400pci_device_table
);
1656 MODULE_LICENSE("GPL");
1658 static struct pci_driver rt2400pci_driver
= {
1660 .id_table
= rt2400pci_device_table
,
1661 .probe
= rt2x00pci_probe
,
1662 .remove
= __devexit_p(rt2x00pci_remove
),
1663 .suspend
= rt2x00pci_suspend
,
1664 .resume
= rt2x00pci_resume
,
1667 static int __init
rt2400pci_init(void)
1669 return pci_register_driver(&rt2400pci_driver
);
1672 static void __exit
rt2400pci_exit(void)
1674 pci_unregister_driver(&rt2400pci_driver
);
1677 module_init(rt2400pci_init
);
1678 module_exit(rt2400pci_exit
);