2 * Linux device driver for RTL8187
4 * Copyright 2007 Michael Wu <flamingice@sourmilk.net>
5 * Copyright 2007 Andrea Merello <andreamrl@tiscali.it>
7 * Based on the r8187 driver, which is:
8 * Copyright 2005 Andrea Merello <andreamrl@tiscali.it>, et al.
10 * Magic delays and register offsets below are taken from the original
11 * r8187 driver sources. Thanks to Realtek for their support!
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
18 #include <linux/init.h>
19 #include <linux/usb.h>
20 #include <linux/delay.h>
21 #include <linux/etherdevice.h>
22 #include <linux/eeprom_93cx6.h>
23 #include <net/mac80211.h>
26 #include "rtl8187_rtl8225.h"
28 MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
29 MODULE_AUTHOR("Andrea Merello <andreamrl@tiscali.it>");
30 MODULE_DESCRIPTION("RTL8187 USB wireless driver");
31 MODULE_LICENSE("GPL");
33 static struct usb_device_id rtl8187_table[] __devinitdata = {
35 {USB_DEVICE(0x0bda, 0x8187)},
37 {USB_DEVICE(0x0846, 0x6100)},
38 {USB_DEVICE(0x0846, 0x6a00)},
40 {USB_DEVICE(0x03f0, 0xca02)},
42 {USB_DEVICE(0x0df6, 0x000d)},
46 MODULE_DEVICE_TABLE(usb, rtl8187_table);
48 static const struct ieee80211_rate rtl818x_rates[] = {
49 { .bitrate = 10, .hw_value = 0, },
50 { .bitrate = 20, .hw_value = 1, },
51 { .bitrate = 55, .hw_value = 2, },
52 { .bitrate = 110, .hw_value = 3, },
53 { .bitrate = 60, .hw_value = 4, },
54 { .bitrate = 90, .hw_value = 5, },
55 { .bitrate = 120, .hw_value = 6, },
56 { .bitrate = 180, .hw_value = 7, },
57 { .bitrate = 240, .hw_value = 8, },
58 { .bitrate = 360, .hw_value = 9, },
59 { .bitrate = 480, .hw_value = 10, },
60 { .bitrate = 540, .hw_value = 11, },
63 static const struct ieee80211_channel rtl818x_channels[] = {
64 { .center_freq = 2412 },
65 { .center_freq = 2417 },
66 { .center_freq = 2422 },
67 { .center_freq = 2427 },
68 { .center_freq = 2432 },
69 { .center_freq = 2437 },
70 { .center_freq = 2442 },
71 { .center_freq = 2447 },
72 { .center_freq = 2452 },
73 { .center_freq = 2457 },
74 { .center_freq = 2462 },
75 { .center_freq = 2467 },
76 { .center_freq = 2472 },
77 { .center_freq = 2484 },
80 static void rtl8187_iowrite_async_cb(struct urb *urb)
86 static void rtl8187_iowrite_async(struct rtl8187_priv *priv, __le16 addr,
89 struct usb_ctrlrequest *dr;
91 struct rtl8187_async_write_data {
93 struct usb_ctrlrequest dr;
97 buf = kmalloc(sizeof(*buf), GFP_ATOMIC);
101 urb = usb_alloc_urb(0, GFP_ATOMIC);
109 dr->bRequestType = RTL8187_REQT_WRITE;
110 dr->bRequest = RTL8187_REQ_SET_REG;
113 dr->wLength = cpu_to_le16(len);
115 memcpy(buf, data, len);
117 usb_fill_control_urb(urb, priv->udev, usb_sndctrlpipe(priv->udev, 0),
118 (unsigned char *)dr, buf, len,
119 rtl8187_iowrite_async_cb, buf);
120 rc = usb_submit_urb(urb, GFP_ATOMIC);
127 static inline void rtl818x_iowrite32_async(struct rtl8187_priv *priv,
128 __le32 *addr, u32 val)
130 __le32 buf = cpu_to_le32(val);
132 rtl8187_iowrite_async(priv, cpu_to_le16((unsigned long)addr),
136 void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data)
138 struct rtl8187_priv *priv = dev->priv;
143 rtl818x_iowrite8(priv, &priv->map->PHY[3], (data >> 24) & 0xFF);
144 rtl818x_iowrite8(priv, &priv->map->PHY[2], (data >> 16) & 0xFF);
145 rtl818x_iowrite8(priv, &priv->map->PHY[1], (data >> 8) & 0xFF);
146 rtl818x_iowrite8(priv, &priv->map->PHY[0], data & 0xFF);
151 static void rtl8187_tx_cb(struct urb *urb)
153 struct ieee80211_tx_status status;
154 struct sk_buff *skb = (struct sk_buff *)urb->context;
155 struct rtl8187_tx_info *info = (struct rtl8187_tx_info *)skb->cb;
157 memset(&status, 0, sizeof(status));
159 usb_free_urb(info->urb);
161 memcpy(&status.control, info->control, sizeof(status.control));
162 kfree(info->control);
163 skb_pull(skb, sizeof(struct rtl8187_tx_hdr));
164 status.flags |= IEEE80211_TX_STATUS_ACK;
165 ieee80211_tx_status_irqsafe(info->dev, skb, &status);
168 static int rtl8187_tx(struct ieee80211_hw *dev, struct sk_buff *skb,
169 struct ieee80211_tx_control *control)
171 struct rtl8187_priv *priv = dev->priv;
172 struct rtl8187_tx_hdr *hdr;
173 struct rtl8187_tx_info *info;
179 urb = usb_alloc_urb(0, GFP_ATOMIC);
186 flags |= RTL8187_TX_FLAG_NO_ENCRYPT;
188 BUG_ON(!control->tx_rate);
190 flags |= control->tx_rate->hw_value << 24;
191 if (ieee80211_get_morefrag((struct ieee80211_hdr *)skb->data))
192 flags |= RTL8187_TX_FLAG_MORE_FRAG;
193 if (control->flags & IEEE80211_TXCTL_USE_RTS_CTS) {
194 BUG_ON(!control->rts_cts_rate);
195 flags |= RTL8187_TX_FLAG_RTS;
196 flags |= control->rts_cts_rate->hw_value << 19;
197 rts_dur = ieee80211_rts_duration(dev, priv->vif,
199 } else if (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT) {
200 BUG_ON(!control->rts_cts_rate);
201 flags |= RTL8187_TX_FLAG_CTS;
202 flags |= control->rts_cts_rate->hw_value << 19;
205 hdr = (struct rtl8187_tx_hdr *)skb_push(skb, sizeof(*hdr));
206 hdr->flags = cpu_to_le32(flags);
208 hdr->rts_duration = rts_dur;
209 hdr->retry = cpu_to_le32(control->retry_limit << 8);
211 info = (struct rtl8187_tx_info *)skb->cb;
212 info->control = kmemdup(control, sizeof(*control), GFP_ATOMIC);
215 usb_fill_bulk_urb(urb, priv->udev, usb_sndbulkpipe(priv->udev, 2),
216 hdr, skb->len, rtl8187_tx_cb, skb);
217 rc = usb_submit_urb(urb, GFP_ATOMIC);
226 static void rtl8187_rx_cb(struct urb *urb)
228 struct sk_buff *skb = (struct sk_buff *)urb->context;
229 struct rtl8187_rx_info *info = (struct rtl8187_rx_info *)skb->cb;
230 struct ieee80211_hw *dev = info->dev;
231 struct rtl8187_priv *priv = dev->priv;
232 struct rtl8187_rx_hdr *hdr;
233 struct ieee80211_rx_status rx_status = { 0 };
237 spin_lock(&priv->rx_queue.lock);
239 __skb_unlink(skb, &priv->rx_queue);
241 spin_unlock(&priv->rx_queue.lock);
244 spin_unlock(&priv->rx_queue.lock);
246 if (unlikely(urb->status)) {
248 dev_kfree_skb_irq(skb);
252 skb_put(skb, urb->actual_length);
253 hdr = (struct rtl8187_rx_hdr *)(skb_tail_pointer(skb) - sizeof(*hdr));
254 flags = le32_to_cpu(hdr->flags);
255 skb_trim(skb, flags & 0x0FFF);
257 signal = hdr->agc >> 1;
258 rate = (flags >> 20) & 0xF;
259 if (rate > 3) { /* OFDM rate */
262 else if (signal < 25)
264 signal = 90 - signal;
265 } else { /* CCK rate */
268 else if (signal < 30)
270 signal = 95 - signal;
273 rx_status.antenna = (hdr->signal >> 7) & 1;
274 rx_status.signal = 64 - min(hdr->noise, (u8)64);
275 rx_status.ssi = signal;
276 rx_status.rate_idx = rate;
277 rx_status.freq = dev->conf.channel->center_freq;
278 rx_status.band = dev->conf.channel->band;
279 rx_status.mactime = le64_to_cpu(hdr->mac_time);
280 rx_status.flag |= RX_FLAG_TSFT;
281 if (flags & (1 << 13))
282 rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
283 ieee80211_rx_irqsafe(dev, skb, &rx_status);
285 skb = dev_alloc_skb(RTL8187_MAX_RX);
286 if (unlikely(!skb)) {
288 /* TODO check rx queue length and refill *somewhere* */
292 info = (struct rtl8187_rx_info *)skb->cb;
295 urb->transfer_buffer = skb_tail_pointer(skb);
297 skb_queue_tail(&priv->rx_queue, skb);
299 usb_submit_urb(urb, GFP_ATOMIC);
302 static int rtl8187_init_urbs(struct ieee80211_hw *dev)
304 struct rtl8187_priv *priv = dev->priv;
307 struct rtl8187_rx_info *info;
309 while (skb_queue_len(&priv->rx_queue) < 8) {
310 skb = __dev_alloc_skb(RTL8187_MAX_RX, GFP_KERNEL);
313 entry = usb_alloc_urb(0, GFP_KERNEL);
318 usb_fill_bulk_urb(entry, priv->udev,
319 usb_rcvbulkpipe(priv->udev, 1),
320 skb_tail_pointer(skb),
321 RTL8187_MAX_RX, rtl8187_rx_cb, skb);
322 info = (struct rtl8187_rx_info *)skb->cb;
325 skb_queue_tail(&priv->rx_queue, skb);
326 usb_submit_urb(entry, GFP_KERNEL);
332 static int rtl8187_init_hw(struct ieee80211_hw *dev)
334 struct rtl8187_priv *priv = dev->priv;
339 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
340 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
341 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg | RTL818X_CONFIG3_ANAPARAM_WRITE);
342 rtl818x_iowrite32(priv, &priv->map->ANAPARAM, RTL8225_ANAPARAM_ON);
343 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2, RTL8225_ANAPARAM2_ON);
344 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg & ~RTL818X_CONFIG3_ANAPARAM_WRITE);
345 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
347 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
350 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x10);
351 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x11);
352 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x00);
355 reg = rtl818x_ioread8(priv, &priv->map->CMD);
357 reg |= RTL818X_CMD_RESET;
358 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
363 if (!(rtl818x_ioread8(priv, &priv->map->CMD) &
369 printk(KERN_ERR "%s: Reset timeout!\n", wiphy_name(dev->wiphy));
373 /* reload registers from eeprom */
374 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_LOAD);
379 if (!(rtl818x_ioread8(priv, &priv->map->EEPROM_CMD) &
380 RTL818X_EEPROM_CMD_CONFIG))
385 printk(KERN_ERR "%s: eeprom reset timeout!\n",
386 wiphy_name(dev->wiphy));
390 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
391 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
392 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg | RTL818X_CONFIG3_ANAPARAM_WRITE);
393 rtl818x_iowrite32(priv, &priv->map->ANAPARAM, RTL8225_ANAPARAM_ON);
394 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2, RTL8225_ANAPARAM2_ON);
395 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg & ~RTL818X_CONFIG3_ANAPARAM_WRITE);
396 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
399 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0);
400 rtl818x_iowrite8(priv, &priv->map->GPIO, 0);
402 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, (4 << 8));
403 rtl818x_iowrite8(priv, &priv->map->GPIO, 1);
404 rtl818x_iowrite8(priv, &priv->map->GP_ENABLE, 0);
406 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
408 rtl818x_iowrite16(priv, (__le16 *)0xFFF4, 0xFFFF);
409 reg = rtl818x_ioread8(priv, &priv->map->CONFIG1);
412 rtl818x_iowrite8(priv, &priv->map->CONFIG1, reg);
414 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
416 rtl818x_iowrite32(priv, &priv->map->INT_TIMEOUT, 0);
417 rtl818x_iowrite8(priv, &priv->map->WPA_CONF, 0);
418 rtl818x_iowrite8(priv, &priv->map->RATE_FALLBACK, 0x81);
420 // TODO: set RESP_RATE and BRSR properly
421 rtl818x_iowrite8(priv, &priv->map->RESP_RATE, (8 << 4) | 0);
422 rtl818x_iowrite16(priv, &priv->map->BRSR, 0x01F3);
425 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0);
426 rtl818x_iowrite8(priv, &priv->map->GPIO, 0);
427 reg = rtl818x_ioread8(priv, (u8 *)0xFE53);
428 rtl818x_iowrite8(priv, (u8 *)0xFE53, reg | (1 << 7));
429 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, (4 << 8));
430 rtl818x_iowrite8(priv, &priv->map->GPIO, 0x20);
431 rtl818x_iowrite8(priv, &priv->map->GP_ENABLE, 0);
432 rtl818x_iowrite16(priv, &priv->map->RFPinsOutput, 0x80);
433 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0x80);
434 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x80);
437 rtl818x_iowrite32(priv, &priv->map->RF_TIMING, 0x000a8008);
438 rtl818x_iowrite16(priv, &priv->map->BRSR, 0xFFFF);
439 rtl818x_iowrite32(priv, &priv->map->RF_PARA, 0x00100044);
440 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
441 rtl818x_iowrite8(priv, &priv->map->CONFIG3, 0x44);
442 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
443 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x1FF7);
448 rtl818x_iowrite16(priv, &priv->map->BRSR, 0x01F3);
449 reg = rtl818x_ioread8(priv, &priv->map->PGSELECT) & ~1;
450 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg | 1);
451 rtl818x_iowrite16(priv, (__le16 *)0xFFFE, 0x10);
452 rtl818x_iowrite8(priv, &priv->map->TALLY_SEL, 0x80);
453 rtl818x_iowrite8(priv, (u8 *)0xFFFF, 0x60);
454 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg);
459 static int rtl8187_start(struct ieee80211_hw *dev)
461 struct rtl8187_priv *priv = dev->priv;
465 ret = rtl8187_init_hw(dev);
469 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0xFFFF);
471 rtl818x_iowrite32(priv, &priv->map->MAR[0], ~0);
472 rtl818x_iowrite32(priv, &priv->map->MAR[1], ~0);
474 rtl8187_init_urbs(dev);
476 reg = RTL818X_RX_CONF_ONLYERLPKT |
477 RTL818X_RX_CONF_RX_AUTORESETPHY |
478 RTL818X_RX_CONF_BSSID |
479 RTL818X_RX_CONF_MGMT |
480 RTL818X_RX_CONF_DATA |
481 (7 << 13 /* RX FIFO threshold NONE */) |
482 (7 << 10 /* MAX RX DMA */) |
483 RTL818X_RX_CONF_BROADCAST |
484 RTL818X_RX_CONF_NICMAC;
487 rtl818x_iowrite32(priv, &priv->map->RX_CONF, reg);
489 reg = rtl818x_ioread8(priv, &priv->map->CW_CONF);
490 reg &= ~RTL818X_CW_CONF_PERPACKET_CW_SHIFT;
491 reg |= RTL818X_CW_CONF_PERPACKET_RETRY_SHIFT;
492 rtl818x_iowrite8(priv, &priv->map->CW_CONF, reg);
494 reg = rtl818x_ioread8(priv, &priv->map->TX_AGC_CTL);
495 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_GAIN_SHIFT;
496 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_ANTSEL_SHIFT;
497 reg &= ~RTL818X_TX_AGC_CTL_FEEDBACK_ANT;
498 rtl818x_iowrite8(priv, &priv->map->TX_AGC_CTL, reg);
500 reg = RTL818X_TX_CONF_CW_MIN |
501 (7 << 21 /* MAX TX DMA */) |
502 RTL818X_TX_CONF_NO_ICV;
503 rtl818x_iowrite32(priv, &priv->map->TX_CONF, reg);
505 reg = rtl818x_ioread8(priv, &priv->map->CMD);
506 reg |= RTL818X_CMD_TX_ENABLE;
507 reg |= RTL818X_CMD_RX_ENABLE;
508 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
513 static void rtl8187_stop(struct ieee80211_hw *dev)
515 struct rtl8187_priv *priv = dev->priv;
516 struct rtl8187_rx_info *info;
520 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
522 reg = rtl818x_ioread8(priv, &priv->map->CMD);
523 reg &= ~RTL818X_CMD_TX_ENABLE;
524 reg &= ~RTL818X_CMD_RX_ENABLE;
525 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
529 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
530 reg = rtl818x_ioread8(priv, &priv->map->CONFIG4);
531 rtl818x_iowrite8(priv, &priv->map->CONFIG4, reg | RTL818X_CONFIG4_VCOOFF);
532 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
534 while ((skb = skb_dequeue(&priv->rx_queue))) {
535 info = (struct rtl8187_rx_info *)skb->cb;
536 usb_kill_urb(info->urb);
542 static int rtl8187_add_interface(struct ieee80211_hw *dev,
543 struct ieee80211_if_init_conf *conf)
545 struct rtl8187_priv *priv = dev->priv;
548 if (priv->mode != IEEE80211_IF_TYPE_MNTR)
551 switch (conf->type) {
552 case IEEE80211_IF_TYPE_STA:
553 priv->mode = conf->type;
559 priv->vif = conf->vif;
561 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
562 for (i = 0; i < ETH_ALEN; i++)
563 rtl818x_iowrite8(priv, &priv->map->MAC[i],
564 ((u8 *)conf->mac_addr)[i]);
565 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
570 static void rtl8187_remove_interface(struct ieee80211_hw *dev,
571 struct ieee80211_if_init_conf *conf)
573 struct rtl8187_priv *priv = dev->priv;
574 priv->mode = IEEE80211_IF_TYPE_MNTR;
578 static int rtl8187_config(struct ieee80211_hw *dev, struct ieee80211_conf *conf)
580 struct rtl8187_priv *priv = dev->priv;
583 reg = rtl818x_ioread32(priv, &priv->map->TX_CONF);
584 /* Enable TX loopback on MAC level to avoid TX during channel
585 * changes, as this has be seen to causes problems and the
586 * card will stop work until next reset
588 rtl818x_iowrite32(priv, &priv->map->TX_CONF,
589 reg | RTL818X_TX_CONF_LOOPBACK_MAC);
591 priv->rf->set_chan(dev, conf);
593 rtl818x_iowrite32(priv, &priv->map->TX_CONF, reg);
595 rtl818x_iowrite8(priv, &priv->map->SIFS, 0x22);
597 if (conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME) {
598 rtl818x_iowrite8(priv, &priv->map->SLOT, 0x9);
599 rtl818x_iowrite8(priv, &priv->map->DIFS, 0x14);
600 rtl818x_iowrite8(priv, &priv->map->EIFS, 91 - 0x14);
601 rtl818x_iowrite8(priv, &priv->map->CW_VAL, 0x73);
603 rtl818x_iowrite8(priv, &priv->map->SLOT, 0x14);
604 rtl818x_iowrite8(priv, &priv->map->DIFS, 0x24);
605 rtl818x_iowrite8(priv, &priv->map->EIFS, 91 - 0x24);
606 rtl818x_iowrite8(priv, &priv->map->CW_VAL, 0xa5);
609 rtl818x_iowrite16(priv, &priv->map->ATIM_WND, 2);
610 rtl818x_iowrite16(priv, &priv->map->ATIMTR_INTERVAL, 100);
611 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL, 100);
612 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL_TIME, 100);
616 static int rtl8187_config_interface(struct ieee80211_hw *dev,
617 struct ieee80211_vif *vif,
618 struct ieee80211_if_conf *conf)
620 struct rtl8187_priv *priv = dev->priv;
623 for (i = 0; i < ETH_ALEN; i++)
624 rtl818x_iowrite8(priv, &priv->map->BSSID[i], conf->bssid[i]);
626 if (is_valid_ether_addr(conf->bssid))
627 rtl818x_iowrite8(priv, &priv->map->MSR, RTL818X_MSR_INFRA);
629 rtl818x_iowrite8(priv, &priv->map->MSR, RTL818X_MSR_NO_LINK);
634 static void rtl8187_configure_filter(struct ieee80211_hw *dev,
635 unsigned int changed_flags,
636 unsigned int *total_flags,
637 int mc_count, struct dev_addr_list *mclist)
639 struct rtl8187_priv *priv = dev->priv;
641 if (changed_flags & FIF_FCSFAIL)
642 priv->rx_conf ^= RTL818X_RX_CONF_FCS;
643 if (changed_flags & FIF_CONTROL)
644 priv->rx_conf ^= RTL818X_RX_CONF_CTRL;
645 if (changed_flags & FIF_OTHER_BSS)
646 priv->rx_conf ^= RTL818X_RX_CONF_MONITOR;
647 if (*total_flags & FIF_ALLMULTI || mc_count > 0)
648 priv->rx_conf |= RTL818X_RX_CONF_MULTICAST;
650 priv->rx_conf &= ~RTL818X_RX_CONF_MULTICAST;
654 if (priv->rx_conf & RTL818X_RX_CONF_FCS)
655 *total_flags |= FIF_FCSFAIL;
656 if (priv->rx_conf & RTL818X_RX_CONF_CTRL)
657 *total_flags |= FIF_CONTROL;
658 if (priv->rx_conf & RTL818X_RX_CONF_MONITOR)
659 *total_flags |= FIF_OTHER_BSS;
660 if (priv->rx_conf & RTL818X_RX_CONF_MULTICAST)
661 *total_flags |= FIF_ALLMULTI;
663 rtl818x_iowrite32_async(priv, &priv->map->RX_CONF, priv->rx_conf);
666 static const struct ieee80211_ops rtl8187_ops = {
668 .start = rtl8187_start,
669 .stop = rtl8187_stop,
670 .add_interface = rtl8187_add_interface,
671 .remove_interface = rtl8187_remove_interface,
672 .config = rtl8187_config,
673 .config_interface = rtl8187_config_interface,
674 .configure_filter = rtl8187_configure_filter,
677 static void rtl8187_eeprom_register_read(struct eeprom_93cx6 *eeprom)
679 struct ieee80211_hw *dev = eeprom->data;
680 struct rtl8187_priv *priv = dev->priv;
681 u8 reg = rtl818x_ioread8(priv, &priv->map->EEPROM_CMD);
683 eeprom->reg_data_in = reg & RTL818X_EEPROM_CMD_WRITE;
684 eeprom->reg_data_out = reg & RTL818X_EEPROM_CMD_READ;
685 eeprom->reg_data_clock = reg & RTL818X_EEPROM_CMD_CK;
686 eeprom->reg_chip_select = reg & RTL818X_EEPROM_CMD_CS;
689 static void rtl8187_eeprom_register_write(struct eeprom_93cx6 *eeprom)
691 struct ieee80211_hw *dev = eeprom->data;
692 struct rtl8187_priv *priv = dev->priv;
693 u8 reg = RTL818X_EEPROM_CMD_PROGRAM;
695 if (eeprom->reg_data_in)
696 reg |= RTL818X_EEPROM_CMD_WRITE;
697 if (eeprom->reg_data_out)
698 reg |= RTL818X_EEPROM_CMD_READ;
699 if (eeprom->reg_data_clock)
700 reg |= RTL818X_EEPROM_CMD_CK;
701 if (eeprom->reg_chip_select)
702 reg |= RTL818X_EEPROM_CMD_CS;
704 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, reg);
708 static int __devinit rtl8187_probe(struct usb_interface *intf,
709 const struct usb_device_id *id)
711 struct usb_device *udev = interface_to_usbdev(intf);
712 struct ieee80211_hw *dev;
713 struct rtl8187_priv *priv;
714 struct eeprom_93cx6 eeprom;
715 struct ieee80211_channel *channel;
718 DECLARE_MAC_BUF(mac);
720 dev = ieee80211_alloc_hw(sizeof(*priv), &rtl8187_ops);
722 printk(KERN_ERR "rtl8187: ieee80211 alloc failed\n");
728 SET_IEEE80211_DEV(dev, &intf->dev);
729 usb_set_intfdata(intf, dev);
734 skb_queue_head_init(&priv->rx_queue);
736 BUILD_BUG_ON(sizeof(priv->channels) != sizeof(rtl818x_channels));
737 BUILD_BUG_ON(sizeof(priv->rates) != sizeof(rtl818x_rates));
739 memcpy(priv->channels, rtl818x_channels, sizeof(rtl818x_channels));
740 memcpy(priv->rates, rtl818x_rates, sizeof(rtl818x_rates));
741 priv->map = (struct rtl818x_csr *)0xFF00;
743 priv->band.band = IEEE80211_BAND_2GHZ;
744 priv->band.channels = priv->channels;
745 priv->band.n_channels = ARRAY_SIZE(rtl818x_channels);
746 priv->band.bitrates = priv->rates;
747 priv->band.n_bitrates = ARRAY_SIZE(rtl818x_rates);
748 dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
751 priv->mode = IEEE80211_IF_TYPE_MNTR;
752 dev->flags = IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
753 IEEE80211_HW_RX_INCLUDES_FCS;
754 dev->extra_tx_headroom = sizeof(struct rtl8187_tx_hdr);
757 dev->max_signal = 64;
760 eeprom.register_read = rtl8187_eeprom_register_read;
761 eeprom.register_write = rtl8187_eeprom_register_write;
762 if (rtl818x_ioread32(priv, &priv->map->RX_CONF) & (1 << 6))
763 eeprom.width = PCI_EEPROM_WIDTH_93C66;
765 eeprom.width = PCI_EEPROM_WIDTH_93C46;
767 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
770 eeprom_93cx6_multiread(&eeprom, RTL8187_EEPROM_MAC_ADDR,
771 (__le16 __force *)dev->wiphy->perm_addr, 3);
772 if (!is_valid_ether_addr(dev->wiphy->perm_addr)) {
773 printk(KERN_WARNING "rtl8187: Invalid hwaddr! Using randomly "
774 "generated MAC address\n");
775 random_ether_addr(dev->wiphy->perm_addr);
778 channel = priv->channels;
779 for (i = 0; i < 3; i++) {
780 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_1 + i,
782 (*channel++).hw_value = txpwr & 0xFF;
783 (*channel++).hw_value = txpwr >> 8;
785 for (i = 0; i < 2; i++) {
786 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_4 + i,
788 (*channel++).hw_value = txpwr & 0xFF;
789 (*channel++).hw_value = txpwr >> 8;
791 for (i = 0; i < 2; i++) {
792 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_6 + i,
794 (*channel++).hw_value = txpwr & 0xFF;
795 (*channel++).hw_value = txpwr >> 8;
798 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_BASE,
801 reg = rtl818x_ioread8(priv, &priv->map->PGSELECT) & ~1;
802 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg | 1);
803 /* 0 means asic B-cut, we should use SW 3 wire
804 * bit-by-bit banging for radio. 1 means we can use
805 * USB specific request to write radio registers */
806 priv->asic_rev = rtl818x_ioread8(priv, (u8 *)0xFFFE) & 0x3;
807 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg);
808 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
810 priv->rf = rtl8187_detect_rf(dev);
812 err = ieee80211_register_hw(dev);
814 printk(KERN_ERR "rtl8187: Cannot register device\n");
818 printk(KERN_INFO "%s: hwaddr %s, rtl8187 V%d + %s\n",
819 wiphy_name(dev->wiphy), print_mac(mac, dev->wiphy->perm_addr),
820 priv->asic_rev, priv->rf->name);
825 ieee80211_free_hw(dev);
826 usb_set_intfdata(intf, NULL);
831 static void __devexit rtl8187_disconnect(struct usb_interface *intf)
833 struct ieee80211_hw *dev = usb_get_intfdata(intf);
834 struct rtl8187_priv *priv;
839 ieee80211_unregister_hw(dev);
842 usb_put_dev(interface_to_usbdev(intf));
843 ieee80211_free_hw(dev);
846 static struct usb_driver rtl8187_driver = {
847 .name = KBUILD_MODNAME,
848 .id_table = rtl8187_table,
849 .probe = rtl8187_probe,
850 .disconnect = rtl8187_disconnect,
853 static int __init rtl8187_init(void)
855 return usb_register(&rtl8187_driver);
858 static void __exit rtl8187_exit(void)
860 usb_deregister(&rtl8187_driver);
863 module_init(rtl8187_init);
864 module_exit(rtl8187_exit);