blob: 16f2fe2d849e197627ca97a993ad30c4c47f00b8 [file] [log] [blame]
Michael Wu605bebe2007-05-14 01:41:02 -04001/*
2 * Linux device driver for RTL8187
3 *
4 * Copyright 2007 Michael Wu <flamingice@sourmilk.net>
5 * Copyright 2007 Andrea Merello <andreamrl@tiscali.it>
6 *
7 * Based on the r8187 driver, which is:
8 * Copyright 2005 Andrea Merello <andreamrl@tiscali.it>, et al.
9 *
John W. Linville0aec00a2007-06-12 22:11:42 -040010 * Magic delays and register offsets below are taken from the original
11 * r8187 driver sources. Thanks to Realtek for their support!
Michael Wu605bebe2007-05-14 01:41:02 -040012 *
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.
16 */
17
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>
24
25#include "rtl8187.h"
26#include "rtl8187_rtl8225.h"
27
28MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
29MODULE_AUTHOR("Andrea Merello <andreamrl@tiscali.it>");
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010030MODULE_DESCRIPTION("RTL8187/RTL8187B USB wireless driver");
Michael Wu605bebe2007-05-14 01:41:02 -040031MODULE_LICENSE("GPL");
32
33static struct usb_device_id rtl8187_table[] __devinitdata = {
Andrea Merello7c7e6af2008-07-25 19:08:11 +020034 /* Asus */
35 {USB_DEVICE(0x0b05, 0x171d), .driver_info = DEVICE_RTL8187},
Florent Fourcoteaca90d2008-10-13 16:34:26 -070036 /* Belkin */
37 {USB_DEVICE(0x050d, 0x705e), .driver_info = DEVICE_RTL8187B},
Michael Wu605bebe2007-05-14 01:41:02 -040038 /* Realtek */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010039 {USB_DEVICE(0x0bda, 0x8187), .driver_info = DEVICE_RTL8187},
40 {USB_DEVICE(0x0bda, 0x8189), .driver_info = DEVICE_RTL8187B},
41 {USB_DEVICE(0x0bda, 0x8197), .driver_info = DEVICE_RTL8187B},
John W. Linville746db512008-10-10 14:16:46 -040042 {USB_DEVICE(0x0bda, 0x8198), .driver_info = DEVICE_RTL8187B},
Michael Wu605bebe2007-05-14 01:41:02 -040043 /* Netgear */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010044 {USB_DEVICE(0x0846, 0x6100), .driver_info = DEVICE_RTL8187},
45 {USB_DEVICE(0x0846, 0x6a00), .driver_info = DEVICE_RTL8187},
matthieu Barthélemyfcd7cc12008-08-10 23:34:59 -050046 {USB_DEVICE(0x0846, 0x4260), .driver_info = DEVICE_RTL8187B},
Michael Wuc3cf60a2007-10-04 00:04:07 -040047 /* HP */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010048 {USB_DEVICE(0x03f0, 0xca02), .driver_info = DEVICE_RTL8187},
Matthias Mueller99345502007-12-02 17:17:51 -050049 /* Sitecom */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010050 {USB_DEVICE(0x0df6, 0x000d), .driver_info = DEVICE_RTL8187},
Michael Wu605bebe2007-05-14 01:41:02 -040051 {}
52};
53
54MODULE_DEVICE_TABLE(usb, rtl8187_table);
55
Johannes Berg8318d782008-01-24 19:38:38 +010056static const struct ieee80211_rate rtl818x_rates[] = {
57 { .bitrate = 10, .hw_value = 0, },
58 { .bitrate = 20, .hw_value = 1, },
59 { .bitrate = 55, .hw_value = 2, },
60 { .bitrate = 110, .hw_value = 3, },
61 { .bitrate = 60, .hw_value = 4, },
62 { .bitrate = 90, .hw_value = 5, },
63 { .bitrate = 120, .hw_value = 6, },
64 { .bitrate = 180, .hw_value = 7, },
65 { .bitrate = 240, .hw_value = 8, },
66 { .bitrate = 360, .hw_value = 9, },
67 { .bitrate = 480, .hw_value = 10, },
68 { .bitrate = 540, .hw_value = 11, },
69};
70
71static const struct ieee80211_channel rtl818x_channels[] = {
72 { .center_freq = 2412 },
73 { .center_freq = 2417 },
74 { .center_freq = 2422 },
75 { .center_freq = 2427 },
76 { .center_freq = 2432 },
77 { .center_freq = 2437 },
78 { .center_freq = 2442 },
79 { .center_freq = 2447 },
80 { .center_freq = 2452 },
81 { .center_freq = 2457 },
82 { .center_freq = 2462 },
83 { .center_freq = 2467 },
84 { .center_freq = 2472 },
85 { .center_freq = 2484 },
86};
87
Johannes Berg4150c572007-09-17 01:29:23 -040088static void rtl8187_iowrite_async_cb(struct urb *urb)
89{
90 kfree(urb->context);
91 usb_free_urb(urb);
92}
93
94static void rtl8187_iowrite_async(struct rtl8187_priv *priv, __le16 addr,
95 void *data, u16 len)
96{
97 struct usb_ctrlrequest *dr;
98 struct urb *urb;
99 struct rtl8187_async_write_data {
100 u8 data[4];
101 struct usb_ctrlrequest dr;
102 } *buf;
Oliver Neukumea8ee242008-05-15 21:49:16 +0200103 int rc;
Johannes Berg4150c572007-09-17 01:29:23 -0400104
105 buf = kmalloc(sizeof(*buf), GFP_ATOMIC);
106 if (!buf)
107 return;
108
109 urb = usb_alloc_urb(0, GFP_ATOMIC);
110 if (!urb) {
111 kfree(buf);
112 return;
113 }
114
115 dr = &buf->dr;
116
117 dr->bRequestType = RTL8187_REQT_WRITE;
118 dr->bRequest = RTL8187_REQ_SET_REG;
119 dr->wValue = addr;
120 dr->wIndex = 0;
121 dr->wLength = cpu_to_le16(len);
122
123 memcpy(buf, data, len);
124
125 usb_fill_control_urb(urb, priv->udev, usb_sndctrlpipe(priv->udev, 0),
126 (unsigned char *)dr, buf, len,
127 rtl8187_iowrite_async_cb, buf);
Oliver Neukumea8ee242008-05-15 21:49:16 +0200128 rc = usb_submit_urb(urb, GFP_ATOMIC);
129 if (rc < 0) {
130 kfree(buf);
131 usb_free_urb(urb);
132 }
Johannes Berg4150c572007-09-17 01:29:23 -0400133}
134
135static inline void rtl818x_iowrite32_async(struct rtl8187_priv *priv,
136 __le32 *addr, u32 val)
137{
138 __le32 buf = cpu_to_le32(val);
139
140 rtl8187_iowrite_async(priv, cpu_to_le16((unsigned long)addr),
141 &buf, sizeof(buf));
142}
143
Michael Wu605bebe2007-05-14 01:41:02 -0400144void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data)
145{
146 struct rtl8187_priv *priv = dev->priv;
147
148 data <<= 8;
149 data |= addr | 0x80;
150
151 rtl818x_iowrite8(priv, &priv->map->PHY[3], (data >> 24) & 0xFF);
152 rtl818x_iowrite8(priv, &priv->map->PHY[2], (data >> 16) & 0xFF);
153 rtl818x_iowrite8(priv, &priv->map->PHY[1], (data >> 8) & 0xFF);
154 rtl818x_iowrite8(priv, &priv->map->PHY[0], data & 0xFF);
155
156 msleep(1);
157}
158
159static void rtl8187_tx_cb(struct urb *urb)
160{
Michael Wu605bebe2007-05-14 01:41:02 -0400161 struct sk_buff *skb = (struct sk_buff *)urb->context;
Johannes Berge039fa42008-05-15 12:55:29 +0200162 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
163 struct ieee80211_hw *hw = info->driver_data[0];
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100164 struct rtl8187_priv *priv = hw->priv;
Michael Wu605bebe2007-05-14 01:41:02 -0400165
Johannes Berge039fa42008-05-15 12:55:29 +0200166 usb_free_urb(info->driver_data[1]);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100167 skb_pull(skb, priv->is_rtl8187b ? sizeof(struct rtl8187b_tx_hdr) :
168 sizeof(struct rtl8187_tx_hdr));
Johannes Berge039fa42008-05-15 12:55:29 +0200169 memset(&info->status, 0, sizeof(info->status));
170 info->flags |= IEEE80211_TX_STAT_ACK;
171 ieee80211_tx_status_irqsafe(hw, skb);
Michael Wu605bebe2007-05-14 01:41:02 -0400172}
173
Johannes Berge039fa42008-05-15 12:55:29 +0200174static int rtl8187_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wu605bebe2007-05-14 01:41:02 -0400175{
176 struct rtl8187_priv *priv = dev->priv;
Johannes Berge039fa42008-05-15 12:55:29 +0200177 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Larry Finger1f690d72008-07-28 22:08:18 -0500178 struct ieee80211_hdr *ieee80211hdr = (struct ieee80211_hdr *)skb->data;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100179 unsigned int ep;
180 void *buf;
Michael Wu605bebe2007-05-14 01:41:02 -0400181 struct urb *urb;
Michael Wu98798f42007-10-10 17:28:59 -0400182 __le16 rts_dur = 0;
183 u32 flags;
Oliver Neukumea8ee242008-05-15 21:49:16 +0200184 int rc;
Michael Wu605bebe2007-05-14 01:41:02 -0400185
186 urb = usb_alloc_urb(0, GFP_ATOMIC);
187 if (!urb) {
188 kfree_skb(skb);
189 return 0;
190 }
191
Michael Wu98798f42007-10-10 17:28:59 -0400192 flags = skb->len;
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300193 flags |= RTL818X_TX_DESC_FLAG_NO_ENC;
Johannes Bergaa68cbf2008-02-18 14:20:30 +0100194
Johannes Berge039fa42008-05-15 12:55:29 +0200195 flags |= ieee80211_get_tx_rate(dev, info)->hw_value << 24;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700196 if (ieee80211_has_morefrags(((struct ieee80211_hdr *)skb->data)->frame_control))
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300197 flags |= RTL818X_TX_DESC_FLAG_MOREFRAG;
Johannes Berge039fa42008-05-15 12:55:29 +0200198 if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) {
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300199 flags |= RTL818X_TX_DESC_FLAG_RTS;
Johannes Berge039fa42008-05-15 12:55:29 +0200200 flags |= ieee80211_get_rts_cts_rate(dev, info)->hw_value << 19;
Johannes Berg32bfd352007-12-19 01:31:26 +0100201 rts_dur = ieee80211_rts_duration(dev, priv->vif,
Johannes Berge039fa42008-05-15 12:55:29 +0200202 skb->len, info);
203 } else if (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT) {
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300204 flags |= RTL818X_TX_DESC_FLAG_CTS;
Johannes Berge039fa42008-05-15 12:55:29 +0200205 flags |= ieee80211_get_rts_cts_rate(dev, info)->hw_value << 19;
Johannes Bergaa68cbf2008-02-18 14:20:30 +0100206 }
Michael Wu98798f42007-10-10 17:28:59 -0400207
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100208 if (!priv->is_rtl8187b) {
209 struct rtl8187_tx_hdr *hdr =
210 (struct rtl8187_tx_hdr *)skb_push(skb, sizeof(*hdr));
211 hdr->flags = cpu_to_le32(flags);
212 hdr->len = 0;
213 hdr->rts_duration = rts_dur;
214 hdr->retry = cpu_to_le32(info->control.retry_limit << 8);
215 buf = hdr;
216
217 ep = 2;
218 } else {
219 /* fc needs to be calculated before skb_push() */
220 unsigned int epmap[4] = { 6, 7, 5, 4 };
221 struct ieee80211_hdr *tx_hdr =
222 (struct ieee80211_hdr *)(skb->data);
223 u16 fc = le16_to_cpu(tx_hdr->frame_control);
224
225 struct rtl8187b_tx_hdr *hdr =
226 (struct rtl8187b_tx_hdr *)skb_push(skb, sizeof(*hdr));
227 struct ieee80211_rate *txrate =
228 ieee80211_get_tx_rate(dev, info);
229 memset(hdr, 0, sizeof(*hdr));
230 hdr->flags = cpu_to_le32(flags);
231 hdr->rts_duration = rts_dur;
232 hdr->retry = cpu_to_le32(info->control.retry_limit << 8);
233 hdr->tx_duration =
234 ieee80211_generic_frame_duration(dev, priv->vif,
235 skb->len, txrate);
236 buf = hdr;
237
238 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
239 ep = 12;
240 else
241 ep = epmap[skb_get_queue_mapping(skb)];
242 }
Michael Wu605bebe2007-05-14 01:41:02 -0400243
Johannes Berge039fa42008-05-15 12:55:29 +0200244 info->driver_data[0] = dev;
245 info->driver_data[1] = urb;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100246
247 usb_fill_bulk_urb(urb, priv->udev, usb_sndbulkpipe(priv->udev, ep),
248 buf, skb->len, rtl8187_tx_cb, skb);
Oliver Neukumea8ee242008-05-15 21:49:16 +0200249 rc = usb_submit_urb(urb, GFP_ATOMIC);
250 if (rc < 0) {
251 usb_free_urb(urb);
252 kfree_skb(skb);
253 }
Michael Wu605bebe2007-05-14 01:41:02 -0400254
255 return 0;
256}
257
258static void rtl8187_rx_cb(struct urb *urb)
259{
260 struct sk_buff *skb = (struct sk_buff *)urb->context;
261 struct rtl8187_rx_info *info = (struct rtl8187_rx_info *)skb->cb;
262 struct ieee80211_hw *dev = info->dev;
263 struct rtl8187_priv *priv = dev->priv;
Michael Wu605bebe2007-05-14 01:41:02 -0400264 struct ieee80211_rx_status rx_status = { 0 };
265 int rate, signal;
Johannes Berg4150c572007-09-17 01:29:23 -0400266 u32 flags;
Larry Finger0ccd58f2008-07-28 22:25:08 -0500267 u32 quality;
Michael Wu605bebe2007-05-14 01:41:02 -0400268
269 spin_lock(&priv->rx_queue.lock);
270 if (skb->next)
271 __skb_unlink(skb, &priv->rx_queue);
272 else {
273 spin_unlock(&priv->rx_queue.lock);
274 return;
275 }
276 spin_unlock(&priv->rx_queue.lock);
277
278 if (unlikely(urb->status)) {
279 usb_free_urb(urb);
280 dev_kfree_skb_irq(skb);
281 return;
282 }
283
284 skb_put(skb, urb->actual_length);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100285 if (!priv->is_rtl8187b) {
286 struct rtl8187_rx_hdr *hdr =
287 (typeof(hdr))(skb_tail_pointer(skb) - sizeof(*hdr));
288 flags = le32_to_cpu(hdr->flags);
289 signal = hdr->signal & 0x7f;
290 rx_status.antenna = (hdr->signal >> 7) & 1;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100291 rx_status.noise = hdr->noise;
292 rx_status.mactime = le64_to_cpu(hdr->mac_time);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100293 priv->quality = signal;
Larry Finger0ccd58f2008-07-28 22:25:08 -0500294 rx_status.qual = priv->quality;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100295 priv->noise = hdr->noise;
Larry Finger0ccd58f2008-07-28 22:25:08 -0500296 rate = (flags >> 20) & 0xF;
297 if (rate > 3) { /* OFDM rate */
298 if (signal > 90)
299 signal = 90;
300 else if (signal < 25)
301 signal = 25;
302 signal = 90 - signal;
303 } else { /* CCK rate */
304 if (signal > 95)
305 signal = 95;
306 else if (signal < 30)
307 signal = 30;
308 signal = 95 - signal;
309 }
310 rx_status.signal = signal;
311 priv->signal = signal;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100312 } else {
313 struct rtl8187b_rx_hdr *hdr =
314 (typeof(hdr))(skb_tail_pointer(skb) - sizeof(*hdr));
Larry Finger0ccd58f2008-07-28 22:25:08 -0500315 /* The Realtek datasheet for the RTL8187B shows that the RX
316 * header contains the following quantities: signal quality,
317 * RSSI, AGC, the received power in dB, and the measured SNR.
318 * In testing, none of these quantities show qualitative
319 * agreement with AP signal strength, except for the AGC,
320 * which is inversely proportional to the strength of the
321 * signal. In the following, the quality and signal strength
322 * are derived from the AGC. The arbitrary scaling constants
323 * are chosen to make the results close to the values obtained
324 * for a BCM4312 using b43 as the driver. The noise is ignored
325 * for now.
326 */
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100327 flags = le32_to_cpu(hdr->flags);
Larry Finger0ccd58f2008-07-28 22:25:08 -0500328 quality = 170 - hdr->agc;
329 if (quality > 100)
330 quality = 100;
331 signal = 14 - hdr->agc / 2;
332 rx_status.qual = quality;
333 priv->quality = quality;
334 rx_status.signal = signal;
335 priv->signal = signal;
336 rx_status.antenna = (hdr->rssi >> 7) & 1;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100337 rx_status.mactime = le64_to_cpu(hdr->mac_time);
Larry Finger0ccd58f2008-07-28 22:25:08 -0500338 rate = (flags >> 20) & 0xF;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100339 }
Michael Wu605bebe2007-05-14 01:41:02 -0400340
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100341 skb_trim(skb, flags & 0x0FFF);
Johannes Berg8318d782008-01-24 19:38:38 +0100342 rx_status.rate_idx = rate;
343 rx_status.freq = dev->conf.channel->center_freq;
344 rx_status.band = dev->conf.channel->band;
Johannes Berg03bffc12007-12-04 20:33:40 +0100345 rx_status.flag |= RX_FLAG_TSFT;
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300346 if (flags & RTL818X_RX_DESC_FLAG_CRC32_ERR)
Johannes Berg4150c572007-09-17 01:29:23 -0400347 rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
Michael Wu605bebe2007-05-14 01:41:02 -0400348 ieee80211_rx_irqsafe(dev, skb, &rx_status);
349
350 skb = dev_alloc_skb(RTL8187_MAX_RX);
351 if (unlikely(!skb)) {
352 usb_free_urb(urb);
353 /* TODO check rx queue length and refill *somewhere* */
354 return;
355 }
356
357 info = (struct rtl8187_rx_info *)skb->cb;
358 info->urb = urb;
359 info->dev = dev;
360 urb->transfer_buffer = skb_tail_pointer(skb);
361 urb->context = skb;
362 skb_queue_tail(&priv->rx_queue, skb);
363
364 usb_submit_urb(urb, GFP_ATOMIC);
365}
366
367static int rtl8187_init_urbs(struct ieee80211_hw *dev)
368{
369 struct rtl8187_priv *priv = dev->priv;
370 struct urb *entry;
371 struct sk_buff *skb;
372 struct rtl8187_rx_info *info;
373
374 while (skb_queue_len(&priv->rx_queue) < 8) {
375 skb = __dev_alloc_skb(RTL8187_MAX_RX, GFP_KERNEL);
376 if (!skb)
377 break;
378 entry = usb_alloc_urb(0, GFP_KERNEL);
379 if (!entry) {
380 kfree_skb(skb);
381 break;
382 }
383 usb_fill_bulk_urb(entry, priv->udev,
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100384 usb_rcvbulkpipe(priv->udev,
385 priv->is_rtl8187b ? 3 : 1),
Michael Wu605bebe2007-05-14 01:41:02 -0400386 skb_tail_pointer(skb),
387 RTL8187_MAX_RX, rtl8187_rx_cb, skb);
388 info = (struct rtl8187_rx_info *)skb->cb;
389 info->urb = entry;
390 info->dev = dev;
391 skb_queue_tail(&priv->rx_queue, skb);
392 usb_submit_urb(entry, GFP_KERNEL);
393 }
394
395 return 0;
396}
397
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100398static int rtl8187_cmd_reset(struct ieee80211_hw *dev)
Michael Wu605bebe2007-05-14 01:41:02 -0400399{
400 struct rtl8187_priv *priv = dev->priv;
401 u8 reg;
402 int i;
403
Michael Wu605bebe2007-05-14 01:41:02 -0400404 reg = rtl818x_ioread8(priv, &priv->map->CMD);
405 reg &= (1 << 1);
406 reg |= RTL818X_CMD_RESET;
407 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
408
409 i = 10;
410 do {
411 msleep(2);
412 if (!(rtl818x_ioread8(priv, &priv->map->CMD) &
413 RTL818X_CMD_RESET))
414 break;
415 } while (--i);
416
417 if (!i) {
418 printk(KERN_ERR "%s: Reset timeout!\n", wiphy_name(dev->wiphy));
419 return -ETIMEDOUT;
420 }
421
422 /* reload registers from eeprom */
423 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_LOAD);
424
425 i = 10;
426 do {
427 msleep(4);
428 if (!(rtl818x_ioread8(priv, &priv->map->EEPROM_CMD) &
429 RTL818X_EEPROM_CMD_CONFIG))
430 break;
431 } while (--i);
432
433 if (!i) {
434 printk(KERN_ERR "%s: eeprom reset timeout!\n",
435 wiphy_name(dev->wiphy));
436 return -ETIMEDOUT;
437 }
438
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100439 return 0;
440}
441
442static int rtl8187_init_hw(struct ieee80211_hw *dev)
443{
444 struct rtl8187_priv *priv = dev->priv;
445 u8 reg;
446 int res;
447
448 /* reset */
449 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
450 RTL818X_EEPROM_CMD_CONFIG);
Michael Wu605bebe2007-05-14 01:41:02 -0400451 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100452 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg |
453 RTL818X_CONFIG3_ANAPARAM_WRITE);
Herton Ronaldo Krzesinski4ece16a2008-07-10 18:55:23 -0300454 rtl818x_iowrite32(priv, &priv->map->ANAPARAM,
455 RTL8187_RTL8225_ANAPARAM_ON);
456 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2,
457 RTL8187_RTL8225_ANAPARAM2_ON);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100458 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg &
459 ~RTL818X_CONFIG3_ANAPARAM_WRITE);
460 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
461 RTL818X_EEPROM_CMD_NORMAL);
462
463 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
464
465 msleep(200);
466 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x10);
467 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x11);
468 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x00);
469 msleep(200);
470
471 res = rtl8187_cmd_reset(dev);
472 if (res)
473 return res;
474
475 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
476 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
477 rtl818x_iowrite8(priv, &priv->map->CONFIG3,
478 reg | RTL818X_CONFIG3_ANAPARAM_WRITE);
Herton Ronaldo Krzesinski4ece16a2008-07-10 18:55:23 -0300479 rtl818x_iowrite32(priv, &priv->map->ANAPARAM,
480 RTL8187_RTL8225_ANAPARAM_ON);
481 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2,
482 RTL8187_RTL8225_ANAPARAM2_ON);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100483 rtl818x_iowrite8(priv, &priv->map->CONFIG3,
484 reg & ~RTL818X_CONFIG3_ANAPARAM_WRITE);
Michael Wu605bebe2007-05-14 01:41:02 -0400485 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
486
487 /* setup card */
488 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0);
489 rtl818x_iowrite8(priv, &priv->map->GPIO, 0);
490
491 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, (4 << 8));
492 rtl818x_iowrite8(priv, &priv->map->GPIO, 1);
493 rtl818x_iowrite8(priv, &priv->map->GP_ENABLE, 0);
494
495 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
Michael Wu605bebe2007-05-14 01:41:02 -0400496
497 rtl818x_iowrite16(priv, (__le16 *)0xFFF4, 0xFFFF);
498 reg = rtl818x_ioread8(priv, &priv->map->CONFIG1);
499 reg &= 0x3F;
500 reg |= 0x80;
501 rtl818x_iowrite8(priv, &priv->map->CONFIG1, reg);
502
503 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
504
505 rtl818x_iowrite32(priv, &priv->map->INT_TIMEOUT, 0);
506 rtl818x_iowrite8(priv, &priv->map->WPA_CONF, 0);
507 rtl818x_iowrite8(priv, &priv->map->RATE_FALLBACK, 0x81);
508
509 // TODO: set RESP_RATE and BRSR properly
510 rtl818x_iowrite8(priv, &priv->map->RESP_RATE, (8 << 4) | 0);
511 rtl818x_iowrite16(priv, &priv->map->BRSR, 0x01F3);
512
513 /* host_usb_init */
514 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0);
515 rtl818x_iowrite8(priv, &priv->map->GPIO, 0);
516 reg = rtl818x_ioread8(priv, (u8 *)0xFE53);
517 rtl818x_iowrite8(priv, (u8 *)0xFE53, reg | (1 << 7));
518 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, (4 << 8));
519 rtl818x_iowrite8(priv, &priv->map->GPIO, 0x20);
520 rtl818x_iowrite8(priv, &priv->map->GP_ENABLE, 0);
521 rtl818x_iowrite16(priv, &priv->map->RFPinsOutput, 0x80);
522 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0x80);
523 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x80);
524 msleep(100);
525
526 rtl818x_iowrite32(priv, &priv->map->RF_TIMING, 0x000a8008);
527 rtl818x_iowrite16(priv, &priv->map->BRSR, 0xFFFF);
528 rtl818x_iowrite32(priv, &priv->map->RF_PARA, 0x00100044);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100529 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
530 RTL818X_EEPROM_CMD_CONFIG);
Michael Wu605bebe2007-05-14 01:41:02 -0400531 rtl818x_iowrite8(priv, &priv->map->CONFIG3, 0x44);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100532 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
533 RTL818X_EEPROM_CMD_NORMAL);
Michael Wu605bebe2007-05-14 01:41:02 -0400534 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x1FF7);
535 msleep(100);
536
Michael Wuf6532112007-10-14 14:43:16 -0400537 priv->rf->init(dev);
Michael Wu605bebe2007-05-14 01:41:02 -0400538
539 rtl818x_iowrite16(priv, &priv->map->BRSR, 0x01F3);
Michael Wuf6532112007-10-14 14:43:16 -0400540 reg = rtl818x_ioread8(priv, &priv->map->PGSELECT) & ~1;
541 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg | 1);
Michael Wu605bebe2007-05-14 01:41:02 -0400542 rtl818x_iowrite16(priv, (__le16 *)0xFFFE, 0x10);
543 rtl818x_iowrite8(priv, &priv->map->TALLY_SEL, 0x80);
544 rtl818x_iowrite8(priv, (u8 *)0xFFFF, 0x60);
Michael Wuf6532112007-10-14 14:43:16 -0400545 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg);
Michael Wu605bebe2007-05-14 01:41:02 -0400546
547 return 0;
548}
549
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100550static const u8 rtl8187b_reg_table[][3] = {
551 {0xF0, 0x32, 0}, {0xF1, 0x32, 0}, {0xF2, 0x00, 0}, {0xF3, 0x00, 0},
552 {0xF4, 0x32, 0}, {0xF5, 0x43, 0}, {0xF6, 0x00, 0}, {0xF7, 0x00, 0},
553 {0xF8, 0x46, 0}, {0xF9, 0xA4, 0}, {0xFA, 0x00, 0}, {0xFB, 0x00, 0},
554 {0xFC, 0x96, 0}, {0xFD, 0xA4, 0}, {0xFE, 0x00, 0}, {0xFF, 0x00, 0},
555
556 {0x58, 0x4B, 1}, {0x59, 0x00, 1}, {0x5A, 0x4B, 1}, {0x5B, 0x00, 1},
557 {0x60, 0x4B, 1}, {0x61, 0x09, 1}, {0x62, 0x4B, 1}, {0x63, 0x09, 1},
558 {0xCE, 0x0F, 1}, {0xCF, 0x00, 1}, {0xE0, 0xFF, 1}, {0xE1, 0x0F, 1},
559 {0xE2, 0x00, 1}, {0xF0, 0x4E, 1}, {0xF1, 0x01, 1}, {0xF2, 0x02, 1},
560 {0xF3, 0x03, 1}, {0xF4, 0x04, 1}, {0xF5, 0x05, 1}, {0xF6, 0x06, 1},
561 {0xF7, 0x07, 1}, {0xF8, 0x08, 1},
562
563 {0x4E, 0x00, 2}, {0x0C, 0x04, 2}, {0x21, 0x61, 2}, {0x22, 0x68, 2},
564 {0x23, 0x6F, 2}, {0x24, 0x76, 2}, {0x25, 0x7D, 2}, {0x26, 0x84, 2},
565 {0x27, 0x8D, 2}, {0x4D, 0x08, 2}, {0x50, 0x05, 2}, {0x51, 0xF5, 2},
566 {0x52, 0x04, 2}, {0x53, 0xA0, 2}, {0x54, 0x1F, 2}, {0x55, 0x23, 2},
567 {0x56, 0x45, 2}, {0x57, 0x67, 2}, {0x58, 0x08, 2}, {0x59, 0x08, 2},
568 {0x5A, 0x08, 2}, {0x5B, 0x08, 2}, {0x60, 0x08, 2}, {0x61, 0x08, 2},
569 {0x62, 0x08, 2}, {0x63, 0x08, 2}, {0x64, 0xCF, 2}, {0x72, 0x56, 2},
570 {0x73, 0x9A, 2},
571
572 {0x34, 0xF0, 0}, {0x35, 0x0F, 0}, {0x5B, 0x40, 0}, {0x84, 0x88, 0},
573 {0x85, 0x24, 0}, {0x88, 0x54, 0}, {0x8B, 0xB8, 0}, {0x8C, 0x07, 0},
574 {0x8D, 0x00, 0}, {0x94, 0x1B, 0}, {0x95, 0x12, 0}, {0x96, 0x00, 0},
575 {0x97, 0x06, 0}, {0x9D, 0x1A, 0}, {0x9F, 0x10, 0}, {0xB4, 0x22, 0},
576 {0xBE, 0x80, 0}, {0xDB, 0x00, 0}, {0xEE, 0x00, 0}, {0x91, 0x03, 0},
577
578 {0x4C, 0x00, 2}, {0x9F, 0x00, 3}, {0x8C, 0x01, 0}, {0x8D, 0x10, 0},
579 {0x8E, 0x08, 0}, {0x8F, 0x00, 0}
580};
581
582static int rtl8187b_init_hw(struct ieee80211_hw *dev)
583{
584 struct rtl8187_priv *priv = dev->priv;
585 int res, i;
586 u8 reg;
587
588 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
589 RTL818X_EEPROM_CMD_CONFIG);
590
591 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
592 reg |= RTL818X_CONFIG3_ANAPARAM_WRITE | RTL818X_CONFIG3_GNT_SELECT;
593 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg);
Herton Ronaldo Krzesinski4ece16a2008-07-10 18:55:23 -0300594 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2,
595 RTL8187B_RTL8225_ANAPARAM2_ON);
596 rtl818x_iowrite32(priv, &priv->map->ANAPARAM,
597 RTL8187B_RTL8225_ANAPARAM_ON);
598 rtl818x_iowrite8(priv, &priv->map->ANAPARAM3,
599 RTL8187B_RTL8225_ANAPARAM3_ON);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100600
601 rtl818x_iowrite8(priv, (u8 *)0xFF61, 0x10);
602 reg = rtl818x_ioread8(priv, (u8 *)0xFF62);
603 rtl818x_iowrite8(priv, (u8 *)0xFF62, reg & ~(1 << 5));
604 rtl818x_iowrite8(priv, (u8 *)0xFF62, reg | (1 << 5));
605
606 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
607 reg &= ~RTL818X_CONFIG3_ANAPARAM_WRITE;
608 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg);
609
610 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
611 RTL818X_EEPROM_CMD_NORMAL);
612
613 res = rtl8187_cmd_reset(dev);
614 if (res)
615 return res;
616
617 rtl818x_iowrite16(priv, (__le16 *)0xFF2D, 0x0FFF);
618 reg = rtl818x_ioread8(priv, &priv->map->CW_CONF);
619 reg |= RTL818X_CW_CONF_PERPACKET_RETRY_SHIFT;
620 rtl818x_iowrite8(priv, &priv->map->CW_CONF, reg);
621 reg = rtl818x_ioread8(priv, &priv->map->TX_AGC_CTL);
622 reg |= RTL818X_TX_AGC_CTL_PERPACKET_GAIN_SHIFT |
623 RTL818X_TX_AGC_CTL_PERPACKET_ANTSEL_SHIFT;
624 rtl818x_iowrite8(priv, &priv->map->TX_AGC_CTL, reg);
625
626 rtl818x_iowrite16_idx(priv, (__le16 *)0xFFE0, 0x0FFF, 1);
627 reg = rtl818x_ioread8(priv, &priv->map->RATE_FALLBACK);
628 reg |= RTL818X_RATE_FALLBACK_ENABLE;
629 rtl818x_iowrite8(priv, &priv->map->RATE_FALLBACK, reg);
630
631 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL, 100);
632 rtl818x_iowrite16(priv, &priv->map->ATIM_WND, 2);
633 rtl818x_iowrite16_idx(priv, (__le16 *)0xFFD4, 0xFFFF, 1);
634
635 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
636 RTL818X_EEPROM_CMD_CONFIG);
637 reg = rtl818x_ioread8(priv, &priv->map->CONFIG1);
638 rtl818x_iowrite8(priv, &priv->map->CONFIG1, (reg & 0x3F) | 0x80);
639 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
640 RTL818X_EEPROM_CMD_NORMAL);
641
642 rtl818x_iowrite8(priv, &priv->map->WPA_CONF, 0);
643 for (i = 0; i < ARRAY_SIZE(rtl8187b_reg_table); i++) {
644 rtl818x_iowrite8_idx(priv,
645 (u8 *)(uintptr_t)
646 (rtl8187b_reg_table[i][0] | 0xFF00),
647 rtl8187b_reg_table[i][1],
648 rtl8187b_reg_table[i][2]);
649 }
650
651 rtl818x_iowrite16(priv, &priv->map->TID_AC_MAP, 0xFA50);
652 rtl818x_iowrite16(priv, &priv->map->INT_MIG, 0);
653
654 rtl818x_iowrite32_idx(priv, (__le32 *)0xFFF0, 0, 1);
655 rtl818x_iowrite32_idx(priv, (__le32 *)0xFFF4, 0, 1);
656 rtl818x_iowrite8_idx(priv, (u8 *)0xFFF8, 0, 1);
657
658 rtl818x_iowrite32(priv, &priv->map->RF_TIMING, 0x00004001);
659
660 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF72, 0x569A, 2);
661
662 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
663 RTL818X_EEPROM_CMD_CONFIG);
664 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
665 reg |= RTL818X_CONFIG3_ANAPARAM_WRITE;
666 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg);
667 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
668 RTL818X_EEPROM_CMD_NORMAL);
669
670 rtl818x_iowrite16(priv, &priv->map->RFPinsOutput, 0x0480);
671 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0x2488);
672 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x1FFF);
673 msleep(1100);
674
675 priv->rf->init(dev);
676
677 reg = RTL818X_CMD_TX_ENABLE | RTL818X_CMD_RX_ENABLE;
678 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
679 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0xFFFF);
680
681 rtl818x_iowrite8(priv, (u8 *)0xFE41, 0xF4);
682 rtl818x_iowrite8(priv, (u8 *)0xFE40, 0x00);
683 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x00);
684 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x01);
685 rtl818x_iowrite8(priv, (u8 *)0xFE40, 0x0F);
686 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x00);
687 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x01);
688
689 reg = rtl818x_ioread8(priv, (u8 *)0xFFDB);
690 rtl818x_iowrite8(priv, (u8 *)0xFFDB, reg | (1 << 2));
691 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF72, 0x59FA, 3);
692 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF74, 0x59D2, 3);
693 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF76, 0x59D2, 3);
694 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF78, 0x19FA, 3);
695 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF7A, 0x19FA, 3);
696 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF7C, 0x00D0, 3);
697 rtl818x_iowrite8(priv, (u8 *)0xFF61, 0);
698 rtl818x_iowrite8_idx(priv, (u8 *)0xFF80, 0x0F, 1);
699 rtl818x_iowrite8_idx(priv, (u8 *)0xFF83, 0x03, 1);
700 rtl818x_iowrite8(priv, (u8 *)0xFFDA, 0x10);
701 rtl818x_iowrite8_idx(priv, (u8 *)0xFF4D, 0x08, 2);
702
703 rtl818x_iowrite32(priv, &priv->map->HSSI_PARA, 0x0600321B);
704
705 rtl818x_iowrite16_idx(priv, (__le16 *)0xFFEC, 0x0800, 1);
706
707 return 0;
708}
709
Johannes Berg4150c572007-09-17 01:29:23 -0400710static int rtl8187_start(struct ieee80211_hw *dev)
Michael Wu605bebe2007-05-14 01:41:02 -0400711{
712 struct rtl8187_priv *priv = dev->priv;
713 u32 reg;
714 int ret;
715
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100716 ret = (!priv->is_rtl8187b) ? rtl8187_init_hw(dev) :
717 rtl8187b_init_hw(dev);
Michael Wu605bebe2007-05-14 01:41:02 -0400718 if (ret)
719 return ret;
720
Larry Finger7dcdd072008-07-31 19:30:48 -0500721 mutex_lock(&priv->conf_mutex);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100722 if (priv->is_rtl8187b) {
723 reg = RTL818X_RX_CONF_MGMT |
724 RTL818X_RX_CONF_DATA |
725 RTL818X_RX_CONF_BROADCAST |
726 RTL818X_RX_CONF_NICMAC |
727 RTL818X_RX_CONF_BSSID |
728 (7 << 13 /* RX FIFO threshold NONE */) |
729 (7 << 10 /* MAX RX DMA */) |
730 RTL818X_RX_CONF_RX_AUTORESETPHY |
731 RTL818X_RX_CONF_ONLYERLPKT |
732 RTL818X_RX_CONF_MULTICAST;
733 priv->rx_conf = reg;
734 rtl818x_iowrite32(priv, &priv->map->RX_CONF, reg);
735
736 rtl818x_iowrite32(priv, &priv->map->TX_CONF,
737 RTL818X_TX_CONF_HW_SEQNUM |
738 RTL818X_TX_CONF_DISREQQSIZE |
739 (7 << 8 /* short retry limit */) |
740 (7 << 0 /* long retry limit */) |
741 (7 << 21 /* MAX TX DMA */));
742 rtl8187_init_urbs(dev);
Larry Finger7dcdd072008-07-31 19:30:48 -0500743 mutex_unlock(&priv->conf_mutex);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100744 return 0;
745 }
746
Michael Wu605bebe2007-05-14 01:41:02 -0400747 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0xFFFF);
748
Michael Wu2fe14262007-10-20 20:05:31 -0400749 rtl818x_iowrite32(priv, &priv->map->MAR[0], ~0);
750 rtl818x_iowrite32(priv, &priv->map->MAR[1], ~0);
751
Michael Wu605bebe2007-05-14 01:41:02 -0400752 rtl8187_init_urbs(dev);
753
754 reg = RTL818X_RX_CONF_ONLYERLPKT |
755 RTL818X_RX_CONF_RX_AUTORESETPHY |
756 RTL818X_RX_CONF_BSSID |
757 RTL818X_RX_CONF_MGMT |
Michael Wu605bebe2007-05-14 01:41:02 -0400758 RTL818X_RX_CONF_DATA |
759 (7 << 13 /* RX FIFO threshold NONE */) |
760 (7 << 10 /* MAX RX DMA */) |
761 RTL818X_RX_CONF_BROADCAST |
Michael Wu605bebe2007-05-14 01:41:02 -0400762 RTL818X_RX_CONF_NICMAC;
Michael Wu605bebe2007-05-14 01:41:02 -0400763
Johannes Berg4150c572007-09-17 01:29:23 -0400764 priv->rx_conf = reg;
Michael Wu605bebe2007-05-14 01:41:02 -0400765 rtl818x_iowrite32(priv, &priv->map->RX_CONF, reg);
766
767 reg = rtl818x_ioread8(priv, &priv->map->CW_CONF);
768 reg &= ~RTL818X_CW_CONF_PERPACKET_CW_SHIFT;
769 reg |= RTL818X_CW_CONF_PERPACKET_RETRY_SHIFT;
770 rtl818x_iowrite8(priv, &priv->map->CW_CONF, reg);
771
772 reg = rtl818x_ioread8(priv, &priv->map->TX_AGC_CTL);
773 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_GAIN_SHIFT;
774 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_ANTSEL_SHIFT;
775 reg &= ~RTL818X_TX_AGC_CTL_FEEDBACK_ANT;
776 rtl818x_iowrite8(priv, &priv->map->TX_AGC_CTL, reg);
777
778 reg = RTL818X_TX_CONF_CW_MIN |
779 (7 << 21 /* MAX TX DMA */) |
780 RTL818X_TX_CONF_NO_ICV;
781 rtl818x_iowrite32(priv, &priv->map->TX_CONF, reg);
782
783 reg = rtl818x_ioread8(priv, &priv->map->CMD);
784 reg |= RTL818X_CMD_TX_ENABLE;
785 reg |= RTL818X_CMD_RX_ENABLE;
786 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
Larry Finger7dcdd072008-07-31 19:30:48 -0500787 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400788
789 return 0;
790}
791
Johannes Berg4150c572007-09-17 01:29:23 -0400792static void rtl8187_stop(struct ieee80211_hw *dev)
Michael Wu605bebe2007-05-14 01:41:02 -0400793{
794 struct rtl8187_priv *priv = dev->priv;
795 struct rtl8187_rx_info *info;
796 struct sk_buff *skb;
797 u32 reg;
798
Larry Finger7dcdd072008-07-31 19:30:48 -0500799 mutex_lock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400800 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
801
802 reg = rtl818x_ioread8(priv, &priv->map->CMD);
803 reg &= ~RTL818X_CMD_TX_ENABLE;
804 reg &= ~RTL818X_CMD_RX_ENABLE;
805 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
806
Michael Wuf6532112007-10-14 14:43:16 -0400807 priv->rf->stop(dev);
Michael Wu605bebe2007-05-14 01:41:02 -0400808
809 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
810 reg = rtl818x_ioread8(priv, &priv->map->CONFIG4);
811 rtl818x_iowrite8(priv, &priv->map->CONFIG4, reg | RTL818X_CONFIG4_VCOOFF);
812 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
813
814 while ((skb = skb_dequeue(&priv->rx_queue))) {
815 info = (struct rtl8187_rx_info *)skb->cb;
816 usb_kill_urb(info->urb);
817 kfree_skb(skb);
818 }
Larry Finger7dcdd072008-07-31 19:30:48 -0500819 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400820}
821
822static int rtl8187_add_interface(struct ieee80211_hw *dev,
823 struct ieee80211_if_init_conf *conf)
824{
825 struct rtl8187_priv *priv = dev->priv;
Johannes Berg4150c572007-09-17 01:29:23 -0400826 int i;
Michael Wu605bebe2007-05-14 01:41:02 -0400827
Johannes Berg05c914f2008-09-11 00:01:58 +0200828 if (priv->mode != NL80211_IFTYPE_MONITOR)
Johannes Berg4150c572007-09-17 01:29:23 -0400829 return -EOPNOTSUPP;
Michael Wu605bebe2007-05-14 01:41:02 -0400830
831 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200832 case NL80211_IFTYPE_STATION:
Michael Wu605bebe2007-05-14 01:41:02 -0400833 priv->mode = conf->type;
834 break;
835 default:
836 return -EOPNOTSUPP;
837 }
838
Larry Finger7dcdd072008-07-31 19:30:48 -0500839 mutex_lock(&priv->conf_mutex);
Herton Ronaldo Krzesinskiaa979a62008-04-09 16:38:31 -0300840 priv->vif = conf->vif;
841
Johannes Berg4150c572007-09-17 01:29:23 -0400842 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
843 for (i = 0; i < ETH_ALEN; i++)
844 rtl818x_iowrite8(priv, &priv->map->MAC[i],
845 ((u8 *)conf->mac_addr)[i]);
846 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
Michael Wu605bebe2007-05-14 01:41:02 -0400847
Larry Finger7dcdd072008-07-31 19:30:48 -0500848 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400849 return 0;
850}
851
852static void rtl8187_remove_interface(struct ieee80211_hw *dev,
853 struct ieee80211_if_init_conf *conf)
854{
855 struct rtl8187_priv *priv = dev->priv;
Larry Finger7dcdd072008-07-31 19:30:48 -0500856 mutex_lock(&priv->conf_mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +0200857 priv->mode = NL80211_IFTYPE_MONITOR;
Herton Ronaldo Krzesinskiaa979a62008-04-09 16:38:31 -0300858 priv->vif = NULL;
Larry Finger7dcdd072008-07-31 19:30:48 -0500859 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400860}
861
Johannes Berge8975582008-10-09 12:18:51 +0200862static int rtl8187_config(struct ieee80211_hw *dev, u32 changed)
Michael Wu605bebe2007-05-14 01:41:02 -0400863{
864 struct rtl8187_priv *priv = dev->priv;
Johannes Berge8975582008-10-09 12:18:51 +0200865 struct ieee80211_conf *conf = &dev->conf;
Michael Wuf6532112007-10-14 14:43:16 -0400866 u32 reg;
867
Larry Finger7dcdd072008-07-31 19:30:48 -0500868 mutex_lock(&priv->conf_mutex);
Michael Wuf6532112007-10-14 14:43:16 -0400869 reg = rtl818x_ioread32(priv, &priv->map->TX_CONF);
870 /* Enable TX loopback on MAC level to avoid TX during channel
871 * changes, as this has be seen to causes problems and the
872 * card will stop work until next reset
873 */
874 rtl818x_iowrite32(priv, &priv->map->TX_CONF,
875 reg | RTL818X_TX_CONF_LOOPBACK_MAC);
876 msleep(10);
877 priv->rf->set_chan(dev, conf);
878 msleep(10);
879 rtl818x_iowrite32(priv, &priv->map->TX_CONF, reg);
Michael Wu605bebe2007-05-14 01:41:02 -0400880
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100881 if (!priv->is_rtl8187b) {
882 rtl818x_iowrite8(priv, &priv->map->SIFS, 0x22);
Michael Wu605bebe2007-05-14 01:41:02 -0400883
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100884 if (conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME) {
885 rtl818x_iowrite8(priv, &priv->map->SLOT, 0x9);
886 rtl818x_iowrite8(priv, &priv->map->DIFS, 0x14);
887 rtl818x_iowrite8(priv, &priv->map->EIFS, 91 - 0x14);
888 rtl818x_iowrite8(priv, &priv->map->CW_VAL, 0x73);
889 } else {
890 rtl818x_iowrite8(priv, &priv->map->SLOT, 0x14);
891 rtl818x_iowrite8(priv, &priv->map->DIFS, 0x24);
892 rtl818x_iowrite8(priv, &priv->map->EIFS, 91 - 0x24);
893 rtl818x_iowrite8(priv, &priv->map->CW_VAL, 0xa5);
894 }
Michael Wu605bebe2007-05-14 01:41:02 -0400895 }
896
897 rtl818x_iowrite16(priv, &priv->map->ATIM_WND, 2);
898 rtl818x_iowrite16(priv, &priv->map->ATIMTR_INTERVAL, 100);
899 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL, 100);
900 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL_TIME, 100);
Larry Finger7dcdd072008-07-31 19:30:48 -0500901 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400902 return 0;
903}
904
Johannes Berg32bfd352007-12-19 01:31:26 +0100905static int rtl8187_config_interface(struct ieee80211_hw *dev,
906 struct ieee80211_vif *vif,
Michael Wu605bebe2007-05-14 01:41:02 -0400907 struct ieee80211_if_conf *conf)
908{
909 struct rtl8187_priv *priv = dev->priv;
910 int i;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100911 u8 reg;
Michael Wu605bebe2007-05-14 01:41:02 -0400912
Larry Finger7dcdd072008-07-31 19:30:48 -0500913 mutex_lock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400914 for (i = 0; i < ETH_ALEN; i++)
915 rtl818x_iowrite8(priv, &priv->map->BSSID[i], conf->bssid[i]);
916
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100917 if (is_valid_ether_addr(conf->bssid)) {
918 reg = RTL818X_MSR_INFRA;
919 if (priv->is_rtl8187b)
920 reg |= RTL818X_MSR_ENEDCA;
921 rtl818x_iowrite8(priv, &priv->map->MSR, reg);
922 } else {
923 reg = RTL818X_MSR_NO_LINK;
924 rtl818x_iowrite8(priv, &priv->map->MSR, reg);
925 }
Michael Wu605bebe2007-05-14 01:41:02 -0400926
Larry Finger7dcdd072008-07-31 19:30:48 -0500927 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400928 return 0;
929}
930
Johannes Berg4150c572007-09-17 01:29:23 -0400931static void rtl8187_configure_filter(struct ieee80211_hw *dev,
932 unsigned int changed_flags,
933 unsigned int *total_flags,
Michael Wu2fe14262007-10-20 20:05:31 -0400934 int mc_count, struct dev_addr_list *mclist)
Johannes Berg4150c572007-09-17 01:29:23 -0400935{
936 struct rtl8187_priv *priv = dev->priv;
937
Johannes Berg4150c572007-09-17 01:29:23 -0400938 if (changed_flags & FIF_FCSFAIL)
939 priv->rx_conf ^= RTL818X_RX_CONF_FCS;
940 if (changed_flags & FIF_CONTROL)
941 priv->rx_conf ^= RTL818X_RX_CONF_CTRL;
942 if (changed_flags & FIF_OTHER_BSS)
943 priv->rx_conf ^= RTL818X_RX_CONF_MONITOR;
Michael Wu2fe14262007-10-20 20:05:31 -0400944 if (*total_flags & FIF_ALLMULTI || mc_count > 0)
Johannes Berg4150c572007-09-17 01:29:23 -0400945 priv->rx_conf |= RTL818X_RX_CONF_MULTICAST;
Michael Wu2fe14262007-10-20 20:05:31 -0400946 else
947 priv->rx_conf &= ~RTL818X_RX_CONF_MULTICAST;
Johannes Berg4150c572007-09-17 01:29:23 -0400948
Michael Wu2fe14262007-10-20 20:05:31 -0400949 *total_flags = 0;
950
Johannes Berg4150c572007-09-17 01:29:23 -0400951 if (priv->rx_conf & RTL818X_RX_CONF_FCS)
952 *total_flags |= FIF_FCSFAIL;
953 if (priv->rx_conf & RTL818X_RX_CONF_CTRL)
954 *total_flags |= FIF_CONTROL;
955 if (priv->rx_conf & RTL818X_RX_CONF_MONITOR)
956 *total_flags |= FIF_OTHER_BSS;
Michael Wu2fe14262007-10-20 20:05:31 -0400957 if (priv->rx_conf & RTL818X_RX_CONF_MULTICAST)
958 *total_flags |= FIF_ALLMULTI;
Johannes Berg4150c572007-09-17 01:29:23 -0400959
960 rtl818x_iowrite32_async(priv, &priv->map->RX_CONF, priv->rx_conf);
961}
962
Michael Wu605bebe2007-05-14 01:41:02 -0400963static const struct ieee80211_ops rtl8187_ops = {
964 .tx = rtl8187_tx,
Johannes Berg4150c572007-09-17 01:29:23 -0400965 .start = rtl8187_start,
Michael Wu605bebe2007-05-14 01:41:02 -0400966 .stop = rtl8187_stop,
967 .add_interface = rtl8187_add_interface,
968 .remove_interface = rtl8187_remove_interface,
969 .config = rtl8187_config,
970 .config_interface = rtl8187_config_interface,
Johannes Berg4150c572007-09-17 01:29:23 -0400971 .configure_filter = rtl8187_configure_filter,
Michael Wu605bebe2007-05-14 01:41:02 -0400972};
973
974static void rtl8187_eeprom_register_read(struct eeprom_93cx6 *eeprom)
975{
976 struct ieee80211_hw *dev = eeprom->data;
977 struct rtl8187_priv *priv = dev->priv;
978 u8 reg = rtl818x_ioread8(priv, &priv->map->EEPROM_CMD);
979
980 eeprom->reg_data_in = reg & RTL818X_EEPROM_CMD_WRITE;
981 eeprom->reg_data_out = reg & RTL818X_EEPROM_CMD_READ;
982 eeprom->reg_data_clock = reg & RTL818X_EEPROM_CMD_CK;
983 eeprom->reg_chip_select = reg & RTL818X_EEPROM_CMD_CS;
984}
985
986static void rtl8187_eeprom_register_write(struct eeprom_93cx6 *eeprom)
987{
988 struct ieee80211_hw *dev = eeprom->data;
989 struct rtl8187_priv *priv = dev->priv;
990 u8 reg = RTL818X_EEPROM_CMD_PROGRAM;
991
992 if (eeprom->reg_data_in)
993 reg |= RTL818X_EEPROM_CMD_WRITE;
994 if (eeprom->reg_data_out)
995 reg |= RTL818X_EEPROM_CMD_READ;
996 if (eeprom->reg_data_clock)
997 reg |= RTL818X_EEPROM_CMD_CK;
998 if (eeprom->reg_chip_select)
999 reg |= RTL818X_EEPROM_CMD_CS;
1000
1001 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, reg);
1002 udelay(10);
1003}
1004
1005static int __devinit rtl8187_probe(struct usb_interface *intf,
1006 const struct usb_device_id *id)
1007{
1008 struct usb_device *udev = interface_to_usbdev(intf);
1009 struct ieee80211_hw *dev;
1010 struct rtl8187_priv *priv;
1011 struct eeprom_93cx6 eeprom;
1012 struct ieee80211_channel *channel;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001013 const char *chip_name;
Michael Wu605bebe2007-05-14 01:41:02 -04001014 u16 txpwr, reg;
1015 int err, i;
1016
1017 dev = ieee80211_alloc_hw(sizeof(*priv), &rtl8187_ops);
1018 if (!dev) {
1019 printk(KERN_ERR "rtl8187: ieee80211 alloc failed\n");
1020 return -ENOMEM;
1021 }
1022
1023 priv = dev->priv;
Larry Finger0e25b4e2008-07-08 09:43:43 -05001024 priv->is_rtl8187b = (id->driver_info == DEVICE_RTL8187B);
Michael Wu605bebe2007-05-14 01:41:02 -04001025
1026 SET_IEEE80211_DEV(dev, &intf->dev);
1027 usb_set_intfdata(intf, dev);
1028 priv->udev = udev;
1029
1030 usb_get_dev(udev);
1031
1032 skb_queue_head_init(&priv->rx_queue);
Johannes Berg8318d782008-01-24 19:38:38 +01001033
1034 BUILD_BUG_ON(sizeof(priv->channels) != sizeof(rtl818x_channels));
1035 BUILD_BUG_ON(sizeof(priv->rates) != sizeof(rtl818x_rates));
1036
Michael Wu605bebe2007-05-14 01:41:02 -04001037 memcpy(priv->channels, rtl818x_channels, sizeof(rtl818x_channels));
1038 memcpy(priv->rates, rtl818x_rates, sizeof(rtl818x_rates));
1039 priv->map = (struct rtl818x_csr *)0xFF00;
Johannes Berg8318d782008-01-24 19:38:38 +01001040
1041 priv->band.band = IEEE80211_BAND_2GHZ;
1042 priv->band.channels = priv->channels;
1043 priv->band.n_channels = ARRAY_SIZE(rtl818x_channels);
1044 priv->band.bitrates = priv->rates;
1045 priv->band.n_bitrates = ARRAY_SIZE(rtl818x_rates);
1046 dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
1047
1048
Johannes Berg05c914f2008-09-11 00:01:58 +02001049 priv->mode = NL80211_IFTYPE_MONITOR;
Michael Wu605bebe2007-05-14 01:41:02 -04001050 dev->flags = IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
Larry Finger0ccd58f2008-07-28 22:25:08 -05001051 IEEE80211_HW_RX_INCLUDES_FCS;
Michael Wu605bebe2007-05-14 01:41:02 -04001052
Michael Wu605bebe2007-05-14 01:41:02 -04001053 eeprom.data = dev;
1054 eeprom.register_read = rtl8187_eeprom_register_read;
1055 eeprom.register_write = rtl8187_eeprom_register_write;
1056 if (rtl818x_ioread32(priv, &priv->map->RX_CONF) & (1 << 6))
1057 eeprom.width = PCI_EEPROM_WIDTH_93C66;
1058 else
1059 eeprom.width = PCI_EEPROM_WIDTH_93C46;
1060
1061 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
1062 udelay(10);
1063
1064 eeprom_93cx6_multiread(&eeprom, RTL8187_EEPROM_MAC_ADDR,
1065 (__le16 __force *)dev->wiphy->perm_addr, 3);
1066 if (!is_valid_ether_addr(dev->wiphy->perm_addr)) {
1067 printk(KERN_WARNING "rtl8187: Invalid hwaddr! Using randomly "
1068 "generated MAC address\n");
1069 random_ether_addr(dev->wiphy->perm_addr);
1070 }
1071
1072 channel = priv->channels;
1073 for (i = 0; i < 3; i++) {
1074 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_1 + i,
1075 &txpwr);
Johannes Berg8318d782008-01-24 19:38:38 +01001076 (*channel++).hw_value = txpwr & 0xFF;
1077 (*channel++).hw_value = txpwr >> 8;
Michael Wu605bebe2007-05-14 01:41:02 -04001078 }
1079 for (i = 0; i < 2; i++) {
1080 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_4 + i,
1081 &txpwr);
Johannes Berg8318d782008-01-24 19:38:38 +01001082 (*channel++).hw_value = txpwr & 0xFF;
1083 (*channel++).hw_value = txpwr >> 8;
Michael Wu605bebe2007-05-14 01:41:02 -04001084 }
Michael Wu605bebe2007-05-14 01:41:02 -04001085
1086 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_BASE,
1087 &priv->txpwr_base);
1088
Michael Wuf6532112007-10-14 14:43:16 -04001089 reg = rtl818x_ioread8(priv, &priv->map->PGSELECT) & ~1;
1090 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg | 1);
Michael Wu605bebe2007-05-14 01:41:02 -04001091 /* 0 means asic B-cut, we should use SW 3 wire
1092 * bit-by-bit banging for radio. 1 means we can use
1093 * USB specific request to write radio registers */
1094 priv->asic_rev = rtl818x_ioread8(priv, (u8 *)0xFFFE) & 0x3;
Michael Wuf6532112007-10-14 14:43:16 -04001095 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg);
Michael Wu605bebe2007-05-14 01:41:02 -04001096 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
1097
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001098 if (!priv->is_rtl8187b) {
1099 u32 reg32;
1100 reg32 = rtl818x_ioread32(priv, &priv->map->TX_CONF);
1101 reg32 &= RTL818X_TX_CONF_HWVER_MASK;
1102 switch (reg32) {
Larry Finger0e25b4e2008-07-08 09:43:43 -05001103 case RTL818X_TX_CONF_R8187vD_B:
1104 /* Some RTL8187B devices have a USB ID of 0x8187
1105 * detect them here */
1106 chip_name = "RTL8187BvB(early)";
1107 priv->is_rtl8187b = 1;
1108 priv->hw_rev = RTL8187BvB;
1109 break;
1110 case RTL818X_TX_CONF_R8187vD:
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001111 chip_name = "RTL8187vD";
1112 break;
1113 default:
1114 chip_name = "RTL8187vB (default)";
1115 }
1116 } else {
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001117 /*
1118 * Force USB request to write radio registers for 8187B, Realtek
1119 * only uses it in their sources
1120 */
1121 /*if (priv->asic_rev == 0) {
1122 printk(KERN_WARNING "rtl8187: Forcing use of USB "
1123 "requests to write to radio registers\n");
1124 priv->asic_rev = 1;
1125 }*/
1126 switch (rtl818x_ioread8(priv, (u8 *)0xFFE1)) {
1127 case RTL818X_R8187B_B:
1128 chip_name = "RTL8187BvB";
1129 priv->hw_rev = RTL8187BvB;
1130 break;
1131 case RTL818X_R8187B_D:
1132 chip_name = "RTL8187BvD";
1133 priv->hw_rev = RTL8187BvD;
1134 break;
1135 case RTL818X_R8187B_E:
1136 chip_name = "RTL8187BvE";
1137 priv->hw_rev = RTL8187BvE;
1138 break;
1139 default:
1140 chip_name = "RTL8187BvB (default)";
1141 priv->hw_rev = RTL8187BvB;
1142 }
1143 }
1144
Larry Finger0e25b4e2008-07-08 09:43:43 -05001145 if (!priv->is_rtl8187b) {
1146 for (i = 0; i < 2; i++) {
1147 eeprom_93cx6_read(&eeprom,
1148 RTL8187_EEPROM_TXPWR_CHAN_6 + i,
1149 &txpwr);
1150 (*channel++).hw_value = txpwr & 0xFF;
1151 (*channel++).hw_value = txpwr >> 8;
1152 }
1153 } else {
1154 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_6,
1155 &txpwr);
1156 (*channel++).hw_value = txpwr & 0xFF;
1157
1158 eeprom_93cx6_read(&eeprom, 0x0A, &txpwr);
1159 (*channel++).hw_value = txpwr & 0xFF;
1160
1161 eeprom_93cx6_read(&eeprom, 0x1C, &txpwr);
1162 (*channel++).hw_value = txpwr & 0xFF;
1163 (*channel++).hw_value = txpwr >> 8;
1164 }
1165
Larry Finger0ccd58f2008-07-28 22:25:08 -05001166 if (priv->is_rtl8187b) {
Larry Finger0e25b4e2008-07-08 09:43:43 -05001167 printk(KERN_WARNING "rtl8187: 8187B chip detected. Support "
1168 "is EXPERIMENTAL, and could damage your\n"
1169 " hardware, use at your own risk\n");
Larry Finger0ccd58f2008-07-28 22:25:08 -05001170 dev->flags |= IEEE80211_HW_SIGNAL_DBM;
1171 } else {
1172 dev->flags |= IEEE80211_HW_SIGNAL_UNSPEC;
1173 dev->max_signal = 65;
1174 }
1175
Johannes Berg94778282008-10-10 13:21:59 +02001176 /*
1177 * XXX: Once this driver supports anything that requires
1178 * beacons it must implement IEEE80211_TX_CTL_ASSIGN_SEQ.
1179 */
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001180 dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
1181
Larry Finger0e25b4e2008-07-08 09:43:43 -05001182 if ((id->driver_info == DEVICE_RTL8187) && priv->is_rtl8187b)
1183 printk(KERN_INFO "rtl8187: inconsistency between id with OEM"
1184 " info!\n");
1185
Michael Wuf6532112007-10-14 14:43:16 -04001186 priv->rf = rtl8187_detect_rf(dev);
Larry Finger0e25b4e2008-07-08 09:43:43 -05001187 dev->extra_tx_headroom = (!priv->is_rtl8187b) ?
1188 sizeof(struct rtl8187_tx_hdr) :
1189 sizeof(struct rtl8187b_tx_hdr);
1190 if (!priv->is_rtl8187b)
1191 dev->queues = 1;
1192 else
1193 dev->queues = 4;
Michael Wu605bebe2007-05-14 01:41:02 -04001194
1195 err = ieee80211_register_hw(dev);
1196 if (err) {
1197 printk(KERN_ERR "rtl8187: Cannot register device\n");
1198 goto err_free_dev;
1199 }
Larry Finger7dcdd072008-07-31 19:30:48 -05001200 mutex_init(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -04001201
Johannes Berge1749612008-10-27 15:59:26 -07001202 printk(KERN_INFO "%s: hwaddr %pM, %s V%d + %s\n",
1203 wiphy_name(dev->wiphy), dev->wiphy->perm_addr,
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001204 chip_name, priv->asic_rev, priv->rf->name);
Michael Wu605bebe2007-05-14 01:41:02 -04001205
1206 return 0;
1207
1208 err_free_dev:
1209 ieee80211_free_hw(dev);
1210 usb_set_intfdata(intf, NULL);
1211 usb_put_dev(udev);
1212 return err;
1213}
1214
1215static void __devexit rtl8187_disconnect(struct usb_interface *intf)
1216{
1217 struct ieee80211_hw *dev = usb_get_intfdata(intf);
1218 struct rtl8187_priv *priv;
1219
1220 if (!dev)
1221 return;
1222
1223 ieee80211_unregister_hw(dev);
1224
1225 priv = dev->priv;
1226 usb_put_dev(interface_to_usbdev(intf));
1227 ieee80211_free_hw(dev);
1228}
1229
1230static struct usb_driver rtl8187_driver = {
1231 .name = KBUILD_MODNAME,
1232 .id_table = rtl8187_table,
1233 .probe = rtl8187_probe,
Ihar Hrachyshka500c1192008-07-09 01:11:59 +03001234 .disconnect = __devexit_p(rtl8187_disconnect),
Michael Wu605bebe2007-05-14 01:41:02 -04001235};
1236
1237static int __init rtl8187_init(void)
1238{
1239 return usb_register(&rtl8187_driver);
1240}
1241
1242static void __exit rtl8187_exit(void)
1243{
1244 usb_deregister(&rtl8187_driver);
1245}
1246
1247module_init(rtl8187_init);
1248module_exit(rtl8187_exit);