blob: 5fe7473124e8c10dee3a45e81a3503008f14cfef [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 *
Larry Finger3461fc12008-11-12 17:31:52 -060010 * The driver was extended to the RTL8187B in 2008 by:
11 * Herton Ronaldo Krzesinski <herton@mandriva.com.br>
12 * Hin-Tak Leung <htl10@users.sourceforge.net>
13 * Larry Finger <Larry.Finger@lwfinger.net>
14 *
John W. Linville0aec00a2007-06-12 22:11:42 -040015 * Magic delays and register offsets below are taken from the original
16 * r8187 driver sources. Thanks to Realtek for their support!
Michael Wu605bebe2007-05-14 01:41:02 -040017 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License version 2 as
20 * published by the Free Software Foundation.
21 */
22
23#include <linux/init.h>
24#include <linux/usb.h>
25#include <linux/delay.h>
26#include <linux/etherdevice.h>
27#include <linux/eeprom_93cx6.h>
28#include <net/mac80211.h>
29
30#include "rtl8187.h"
31#include "rtl8187_rtl8225.h"
32
33MODULE_AUTHOR("Michael Wu <flamingice@sourmilk.net>");
34MODULE_AUTHOR("Andrea Merello <andreamrl@tiscali.it>");
Larry Finger3461fc12008-11-12 17:31:52 -060035MODULE_AUTHOR("Herton Ronaldo Krzesinski <herton@mandriva.com.br>");
36MODULE_AUTHOR("Hin-Tak Leung <htl10@users.sourceforge.net>");
37MODULE_AUTHOR("Larry Finger <Larry.Finger@lwfinger.net>");
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010038MODULE_DESCRIPTION("RTL8187/RTL8187B USB wireless driver");
Michael Wu605bebe2007-05-14 01:41:02 -040039MODULE_LICENSE("GPL");
40
41static struct usb_device_id rtl8187_table[] __devinitdata = {
Andrea Merello7c7e6af2008-07-25 19:08:11 +020042 /* Asus */
43 {USB_DEVICE(0x0b05, 0x171d), .driver_info = DEVICE_RTL8187},
Florent Fourcoteaca90d2008-10-13 16:34:26 -070044 /* Belkin */
45 {USB_DEVICE(0x050d, 0x705e), .driver_info = DEVICE_RTL8187B},
Michael Wu605bebe2007-05-14 01:41:02 -040046 /* Realtek */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010047 {USB_DEVICE(0x0bda, 0x8187), .driver_info = DEVICE_RTL8187},
48 {USB_DEVICE(0x0bda, 0x8189), .driver_info = DEVICE_RTL8187B},
49 {USB_DEVICE(0x0bda, 0x8197), .driver_info = DEVICE_RTL8187B},
John W. Linville746db512008-10-10 14:16:46 -040050 {USB_DEVICE(0x0bda, 0x8198), .driver_info = DEVICE_RTL8187B},
Michael Wu605bebe2007-05-14 01:41:02 -040051 /* Netgear */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010052 {USB_DEVICE(0x0846, 0x6100), .driver_info = DEVICE_RTL8187},
53 {USB_DEVICE(0x0846, 0x6a00), .driver_info = DEVICE_RTL8187},
matthieu Barthélemyfcd7cc12008-08-10 23:34:59 -050054 {USB_DEVICE(0x0846, 0x4260), .driver_info = DEVICE_RTL8187B},
Michael Wuc3cf60a2007-10-04 00:04:07 -040055 /* HP */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010056 {USB_DEVICE(0x03f0, 0xca02), .driver_info = DEVICE_RTL8187},
Matthias Mueller99345502007-12-02 17:17:51 -050057 /* Sitecom */
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +010058 {USB_DEVICE(0x0df6, 0x000d), .driver_info = DEVICE_RTL8187},
Bob Jolliffef3c769182008-11-12 20:16:59 +000059 {USB_DEVICE(0x0df6, 0x0028), .driver_info = DEVICE_RTL8187B},
Ivan Kuten8f7c41d2008-11-10 19:39:25 -060060 /* Abocom */
61 {USB_DEVICE(0x13d1, 0xabe6), .driver_info = DEVICE_RTL8187},
Michael Wu605bebe2007-05-14 01:41:02 -040062 {}
63};
64
65MODULE_DEVICE_TABLE(usb, rtl8187_table);
66
Johannes Berg8318d782008-01-24 19:38:38 +010067static const struct ieee80211_rate rtl818x_rates[] = {
68 { .bitrate = 10, .hw_value = 0, },
69 { .bitrate = 20, .hw_value = 1, },
70 { .bitrate = 55, .hw_value = 2, },
71 { .bitrate = 110, .hw_value = 3, },
72 { .bitrate = 60, .hw_value = 4, },
73 { .bitrate = 90, .hw_value = 5, },
74 { .bitrate = 120, .hw_value = 6, },
75 { .bitrate = 180, .hw_value = 7, },
76 { .bitrate = 240, .hw_value = 8, },
77 { .bitrate = 360, .hw_value = 9, },
78 { .bitrate = 480, .hw_value = 10, },
79 { .bitrate = 540, .hw_value = 11, },
80};
81
82static const struct ieee80211_channel rtl818x_channels[] = {
83 { .center_freq = 2412 },
84 { .center_freq = 2417 },
85 { .center_freq = 2422 },
86 { .center_freq = 2427 },
87 { .center_freq = 2432 },
88 { .center_freq = 2437 },
89 { .center_freq = 2442 },
90 { .center_freq = 2447 },
91 { .center_freq = 2452 },
92 { .center_freq = 2457 },
93 { .center_freq = 2462 },
94 { .center_freq = 2467 },
95 { .center_freq = 2472 },
96 { .center_freq = 2484 },
97};
98
Johannes Berg4150c572007-09-17 01:29:23 -040099static void rtl8187_iowrite_async_cb(struct urb *urb)
100{
101 kfree(urb->context);
102 usb_free_urb(urb);
103}
104
105static void rtl8187_iowrite_async(struct rtl8187_priv *priv, __le16 addr,
106 void *data, u16 len)
107{
108 struct usb_ctrlrequest *dr;
109 struct urb *urb;
110 struct rtl8187_async_write_data {
111 u8 data[4];
112 struct usb_ctrlrequest dr;
113 } *buf;
Oliver Neukumea8ee242008-05-15 21:49:16 +0200114 int rc;
Johannes Berg4150c572007-09-17 01:29:23 -0400115
116 buf = kmalloc(sizeof(*buf), GFP_ATOMIC);
117 if (!buf)
118 return;
119
120 urb = usb_alloc_urb(0, GFP_ATOMIC);
121 if (!urb) {
122 kfree(buf);
123 return;
124 }
125
126 dr = &buf->dr;
127
128 dr->bRequestType = RTL8187_REQT_WRITE;
129 dr->bRequest = RTL8187_REQ_SET_REG;
130 dr->wValue = addr;
131 dr->wIndex = 0;
132 dr->wLength = cpu_to_le16(len);
133
134 memcpy(buf, data, len);
135
136 usb_fill_control_urb(urb, priv->udev, usb_sndctrlpipe(priv->udev, 0),
137 (unsigned char *)dr, buf, len,
138 rtl8187_iowrite_async_cb, buf);
Oliver Neukumea8ee242008-05-15 21:49:16 +0200139 rc = usb_submit_urb(urb, GFP_ATOMIC);
140 if (rc < 0) {
141 kfree(buf);
142 usb_free_urb(urb);
143 }
Johannes Berg4150c572007-09-17 01:29:23 -0400144}
145
146static inline void rtl818x_iowrite32_async(struct rtl8187_priv *priv,
147 __le32 *addr, u32 val)
148{
149 __le32 buf = cpu_to_le32(val);
150
151 rtl8187_iowrite_async(priv, cpu_to_le16((unsigned long)addr),
152 &buf, sizeof(buf));
153}
154
Michael Wu605bebe2007-05-14 01:41:02 -0400155void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data)
156{
157 struct rtl8187_priv *priv = dev->priv;
158
159 data <<= 8;
160 data |= addr | 0x80;
161
162 rtl818x_iowrite8(priv, &priv->map->PHY[3], (data >> 24) & 0xFF);
163 rtl818x_iowrite8(priv, &priv->map->PHY[2], (data >> 16) & 0xFF);
164 rtl818x_iowrite8(priv, &priv->map->PHY[1], (data >> 8) & 0xFF);
165 rtl818x_iowrite8(priv, &priv->map->PHY[0], data & 0xFF);
Michael Wu605bebe2007-05-14 01:41:02 -0400166}
167
168static void rtl8187_tx_cb(struct urb *urb)
169{
Michael Wu605bebe2007-05-14 01:41:02 -0400170 struct sk_buff *skb = (struct sk_buff *)urb->context;
Johannes Berge039fa42008-05-15 12:55:29 +0200171 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200172 struct ieee80211_hw *hw = info->rate_driver_data[0];
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100173 struct rtl8187_priv *priv = hw->priv;
Michael Wu605bebe2007-05-14 01:41:02 -0400174
Johannes Berge6a98542008-10-21 12:40:02 +0200175 usb_free_urb(info->rate_driver_data[1]);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100176 skb_pull(skb, priv->is_rtl8187b ? sizeof(struct rtl8187b_tx_hdr) :
177 sizeof(struct rtl8187_tx_hdr));
Johannes Berge6a98542008-10-21 12:40:02 +0200178 ieee80211_tx_info_clear_status(info);
Johannes Berge039fa42008-05-15 12:55:29 +0200179 info->flags |= IEEE80211_TX_STAT_ACK;
180 ieee80211_tx_status_irqsafe(hw, skb);
Michael Wu605bebe2007-05-14 01:41:02 -0400181}
182
Johannes Berge039fa42008-05-15 12:55:29 +0200183static int rtl8187_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
Michael Wu605bebe2007-05-14 01:41:02 -0400184{
185 struct rtl8187_priv *priv = dev->priv;
Johannes Berge039fa42008-05-15 12:55:29 +0200186 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100187 unsigned int ep;
188 void *buf;
Michael Wu605bebe2007-05-14 01:41:02 -0400189 struct urb *urb;
Michael Wu98798f42007-10-10 17:28:59 -0400190 __le16 rts_dur = 0;
191 u32 flags;
Oliver Neukumea8ee242008-05-15 21:49:16 +0200192 int rc;
Michael Wu605bebe2007-05-14 01:41:02 -0400193
194 urb = usb_alloc_urb(0, GFP_ATOMIC);
195 if (!urb) {
196 kfree_skb(skb);
197 return 0;
198 }
199
Michael Wu98798f42007-10-10 17:28:59 -0400200 flags = skb->len;
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300201 flags |= RTL818X_TX_DESC_FLAG_NO_ENC;
Johannes Bergaa68cbf2008-02-18 14:20:30 +0100202
Johannes Berge039fa42008-05-15 12:55:29 +0200203 flags |= ieee80211_get_tx_rate(dev, info)->hw_value << 24;
Harvey Harrison8b7b1e02008-06-11 14:21:56 -0700204 if (ieee80211_has_morefrags(((struct ieee80211_hdr *)skb->data)->frame_control))
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300205 flags |= RTL818X_TX_DESC_FLAG_MOREFRAG;
Johannes Berge6a98542008-10-21 12:40:02 +0200206 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) {
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300207 flags |= RTL818X_TX_DESC_FLAG_RTS;
Johannes Berge039fa42008-05-15 12:55:29 +0200208 flags |= ieee80211_get_rts_cts_rate(dev, info)->hw_value << 19;
Johannes Berg32bfd352007-12-19 01:31:26 +0100209 rts_dur = ieee80211_rts_duration(dev, priv->vif,
Johannes Berge039fa42008-05-15 12:55:29 +0200210 skb->len, info);
Johannes Berge6a98542008-10-21 12:40:02 +0200211 } else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300212 flags |= RTL818X_TX_DESC_FLAG_CTS;
Johannes Berge039fa42008-05-15 12:55:29 +0200213 flags |= ieee80211_get_rts_cts_rate(dev, info)->hw_value << 19;
Johannes Bergaa68cbf2008-02-18 14:20:30 +0100214 }
Michael Wu98798f42007-10-10 17:28:59 -0400215
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100216 if (!priv->is_rtl8187b) {
217 struct rtl8187_tx_hdr *hdr =
218 (struct rtl8187_tx_hdr *)skb_push(skb, sizeof(*hdr));
219 hdr->flags = cpu_to_le32(flags);
220 hdr->len = 0;
221 hdr->rts_duration = rts_dur;
Johannes Berge6a98542008-10-21 12:40:02 +0200222 hdr->retry = cpu_to_le32((info->control.rates[0].count - 1) << 8);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100223 buf = hdr;
224
225 ep = 2;
226 } else {
227 /* fc needs to be calculated before skb_push() */
228 unsigned int epmap[4] = { 6, 7, 5, 4 };
229 struct ieee80211_hdr *tx_hdr =
230 (struct ieee80211_hdr *)(skb->data);
231 u16 fc = le16_to_cpu(tx_hdr->frame_control);
232
233 struct rtl8187b_tx_hdr *hdr =
234 (struct rtl8187b_tx_hdr *)skb_push(skb, sizeof(*hdr));
235 struct ieee80211_rate *txrate =
236 ieee80211_get_tx_rate(dev, info);
237 memset(hdr, 0, sizeof(*hdr));
238 hdr->flags = cpu_to_le32(flags);
239 hdr->rts_duration = rts_dur;
Johannes Berge6a98542008-10-21 12:40:02 +0200240 hdr->retry = cpu_to_le32((info->control.rates[0].count - 1) << 8);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100241 hdr->tx_duration =
242 ieee80211_generic_frame_duration(dev, priv->vif,
243 skb->len, txrate);
244 buf = hdr;
245
246 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
247 ep = 12;
248 else
249 ep = epmap[skb_get_queue_mapping(skb)];
250 }
Michael Wu605bebe2007-05-14 01:41:02 -0400251
Johannes Berge6a98542008-10-21 12:40:02 +0200252 info->rate_driver_data[0] = dev;
253 info->rate_driver_data[1] = urb;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100254
255 usb_fill_bulk_urb(urb, priv->udev, usb_sndbulkpipe(priv->udev, ep),
256 buf, skb->len, rtl8187_tx_cb, skb);
Oliver Neukumea8ee242008-05-15 21:49:16 +0200257 rc = usb_submit_urb(urb, GFP_ATOMIC);
258 if (rc < 0) {
259 usb_free_urb(urb);
260 kfree_skb(skb);
261 }
Michael Wu605bebe2007-05-14 01:41:02 -0400262
263 return 0;
264}
265
266static void rtl8187_rx_cb(struct urb *urb)
267{
268 struct sk_buff *skb = (struct sk_buff *)urb->context;
269 struct rtl8187_rx_info *info = (struct rtl8187_rx_info *)skb->cb;
270 struct ieee80211_hw *dev = info->dev;
271 struct rtl8187_priv *priv = dev->priv;
Michael Wu605bebe2007-05-14 01:41:02 -0400272 struct ieee80211_rx_status rx_status = { 0 };
273 int rate, signal;
Johannes Berg4150c572007-09-17 01:29:23 -0400274 u32 flags;
Larry Finger0ccd58f2008-07-28 22:25:08 -0500275 u32 quality;
Michael Wu605bebe2007-05-14 01:41:02 -0400276
277 spin_lock(&priv->rx_queue.lock);
278 if (skb->next)
279 __skb_unlink(skb, &priv->rx_queue);
280 else {
281 spin_unlock(&priv->rx_queue.lock);
282 return;
283 }
284 spin_unlock(&priv->rx_queue.lock);
285
286 if (unlikely(urb->status)) {
287 usb_free_urb(urb);
288 dev_kfree_skb_irq(skb);
289 return;
290 }
291
292 skb_put(skb, urb->actual_length);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100293 if (!priv->is_rtl8187b) {
294 struct rtl8187_rx_hdr *hdr =
295 (typeof(hdr))(skb_tail_pointer(skb) - sizeof(*hdr));
296 flags = le32_to_cpu(hdr->flags);
297 signal = hdr->signal & 0x7f;
298 rx_status.antenna = (hdr->signal >> 7) & 1;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100299 rx_status.noise = hdr->noise;
300 rx_status.mactime = le64_to_cpu(hdr->mac_time);
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100301 priv->quality = signal;
Larry Finger0ccd58f2008-07-28 22:25:08 -0500302 rx_status.qual = priv->quality;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100303 priv->noise = hdr->noise;
Larry Finger0ccd58f2008-07-28 22:25:08 -0500304 rate = (flags >> 20) & 0xF;
305 if (rate > 3) { /* OFDM rate */
306 if (signal > 90)
307 signal = 90;
308 else if (signal < 25)
309 signal = 25;
310 signal = 90 - signal;
311 } else { /* CCK rate */
312 if (signal > 95)
313 signal = 95;
314 else if (signal < 30)
315 signal = 30;
316 signal = 95 - signal;
317 }
318 rx_status.signal = signal;
319 priv->signal = signal;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100320 } else {
321 struct rtl8187b_rx_hdr *hdr =
322 (typeof(hdr))(skb_tail_pointer(skb) - sizeof(*hdr));
Larry Finger0ccd58f2008-07-28 22:25:08 -0500323 /* The Realtek datasheet for the RTL8187B shows that the RX
324 * header contains the following quantities: signal quality,
325 * RSSI, AGC, the received power in dB, and the measured SNR.
326 * In testing, none of these quantities show qualitative
327 * agreement with AP signal strength, except for the AGC,
328 * which is inversely proportional to the strength of the
329 * signal. In the following, the quality and signal strength
330 * are derived from the AGC. The arbitrary scaling constants
331 * are chosen to make the results close to the values obtained
332 * for a BCM4312 using b43 as the driver. The noise is ignored
333 * for now.
334 */
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100335 flags = le32_to_cpu(hdr->flags);
Larry Finger0ccd58f2008-07-28 22:25:08 -0500336 quality = 170 - hdr->agc;
337 if (quality > 100)
338 quality = 100;
339 signal = 14 - hdr->agc / 2;
340 rx_status.qual = quality;
341 priv->quality = quality;
342 rx_status.signal = signal;
343 priv->signal = signal;
344 rx_status.antenna = (hdr->rssi >> 7) & 1;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100345 rx_status.mactime = le64_to_cpu(hdr->mac_time);
Larry Finger0ccd58f2008-07-28 22:25:08 -0500346 rate = (flags >> 20) & 0xF;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100347 }
Michael Wu605bebe2007-05-14 01:41:02 -0400348
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100349 skb_trim(skb, flags & 0x0FFF);
Johannes Berg8318d782008-01-24 19:38:38 +0100350 rx_status.rate_idx = rate;
351 rx_status.freq = dev->conf.channel->center_freq;
352 rx_status.band = dev->conf.channel->band;
Johannes Berg03bffc12007-12-04 20:33:40 +0100353 rx_status.flag |= RX_FLAG_TSFT;
Herton Ronaldo Krzesinski38e3b0d2008-07-16 11:44:18 -0300354 if (flags & RTL818X_RX_DESC_FLAG_CRC32_ERR)
Johannes Berg4150c572007-09-17 01:29:23 -0400355 rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
Michael Wu605bebe2007-05-14 01:41:02 -0400356 ieee80211_rx_irqsafe(dev, skb, &rx_status);
357
358 skb = dev_alloc_skb(RTL8187_MAX_RX);
359 if (unlikely(!skb)) {
360 usb_free_urb(urb);
361 /* TODO check rx queue length and refill *somewhere* */
362 return;
363 }
364
365 info = (struct rtl8187_rx_info *)skb->cb;
366 info->urb = urb;
367 info->dev = dev;
368 urb->transfer_buffer = skb_tail_pointer(skb);
369 urb->context = skb;
370 skb_queue_tail(&priv->rx_queue, skb);
371
372 usb_submit_urb(urb, GFP_ATOMIC);
373}
374
375static int rtl8187_init_urbs(struct ieee80211_hw *dev)
376{
377 struct rtl8187_priv *priv = dev->priv;
378 struct urb *entry;
379 struct sk_buff *skb;
380 struct rtl8187_rx_info *info;
381
382 while (skb_queue_len(&priv->rx_queue) < 8) {
383 skb = __dev_alloc_skb(RTL8187_MAX_RX, GFP_KERNEL);
384 if (!skb)
385 break;
386 entry = usb_alloc_urb(0, GFP_KERNEL);
387 if (!entry) {
388 kfree_skb(skb);
389 break;
390 }
391 usb_fill_bulk_urb(entry, priv->udev,
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100392 usb_rcvbulkpipe(priv->udev,
393 priv->is_rtl8187b ? 3 : 1),
Michael Wu605bebe2007-05-14 01:41:02 -0400394 skb_tail_pointer(skb),
395 RTL8187_MAX_RX, rtl8187_rx_cb, skb);
396 info = (struct rtl8187_rx_info *)skb->cb;
397 info->urb = entry;
398 info->dev = dev;
399 skb_queue_tail(&priv->rx_queue, skb);
400 usb_submit_urb(entry, GFP_KERNEL);
401 }
402
403 return 0;
404}
405
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100406static int rtl8187_cmd_reset(struct ieee80211_hw *dev)
Michael Wu605bebe2007-05-14 01:41:02 -0400407{
408 struct rtl8187_priv *priv = dev->priv;
409 u8 reg;
410 int i;
411
Michael Wu605bebe2007-05-14 01:41:02 -0400412 reg = rtl818x_ioread8(priv, &priv->map->CMD);
413 reg &= (1 << 1);
414 reg |= RTL818X_CMD_RESET;
415 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
416
417 i = 10;
418 do {
419 msleep(2);
420 if (!(rtl818x_ioread8(priv, &priv->map->CMD) &
421 RTL818X_CMD_RESET))
422 break;
423 } while (--i);
424
425 if (!i) {
426 printk(KERN_ERR "%s: Reset timeout!\n", wiphy_name(dev->wiphy));
427 return -ETIMEDOUT;
428 }
429
430 /* reload registers from eeprom */
431 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_LOAD);
432
433 i = 10;
434 do {
435 msleep(4);
436 if (!(rtl818x_ioread8(priv, &priv->map->EEPROM_CMD) &
437 RTL818X_EEPROM_CMD_CONFIG))
438 break;
439 } while (--i);
440
441 if (!i) {
442 printk(KERN_ERR "%s: eeprom reset timeout!\n",
443 wiphy_name(dev->wiphy));
444 return -ETIMEDOUT;
445 }
446
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100447 return 0;
448}
449
450static int rtl8187_init_hw(struct ieee80211_hw *dev)
451{
452 struct rtl8187_priv *priv = dev->priv;
453 u8 reg;
454 int res;
455
456 /* reset */
457 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
458 RTL818X_EEPROM_CMD_CONFIG);
Michael Wu605bebe2007-05-14 01:41:02 -0400459 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100460 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg |
461 RTL818X_CONFIG3_ANAPARAM_WRITE);
Herton Ronaldo Krzesinski4ece16a2008-07-10 18:55:23 -0300462 rtl818x_iowrite32(priv, &priv->map->ANAPARAM,
463 RTL8187_RTL8225_ANAPARAM_ON);
464 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2,
465 RTL8187_RTL8225_ANAPARAM2_ON);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100466 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg &
467 ~RTL818X_CONFIG3_ANAPARAM_WRITE);
468 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
469 RTL818X_EEPROM_CMD_NORMAL);
470
471 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
472
473 msleep(200);
474 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x10);
475 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x11);
476 rtl818x_iowrite8(priv, (u8 *)0xFE18, 0x00);
477 msleep(200);
478
479 res = rtl8187_cmd_reset(dev);
480 if (res)
481 return res;
482
483 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
484 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
485 rtl818x_iowrite8(priv, &priv->map->CONFIG3,
486 reg | RTL818X_CONFIG3_ANAPARAM_WRITE);
Herton Ronaldo Krzesinski4ece16a2008-07-10 18:55:23 -0300487 rtl818x_iowrite32(priv, &priv->map->ANAPARAM,
488 RTL8187_RTL8225_ANAPARAM_ON);
489 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2,
490 RTL8187_RTL8225_ANAPARAM2_ON);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100491 rtl818x_iowrite8(priv, &priv->map->CONFIG3,
492 reg & ~RTL818X_CONFIG3_ANAPARAM_WRITE);
Michael Wu605bebe2007-05-14 01:41:02 -0400493 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
494
495 /* setup card */
496 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0);
497 rtl818x_iowrite8(priv, &priv->map->GPIO, 0);
498
499 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, (4 << 8));
500 rtl818x_iowrite8(priv, &priv->map->GPIO, 1);
501 rtl818x_iowrite8(priv, &priv->map->GP_ENABLE, 0);
502
503 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
Michael Wu605bebe2007-05-14 01:41:02 -0400504
505 rtl818x_iowrite16(priv, (__le16 *)0xFFF4, 0xFFFF);
506 reg = rtl818x_ioread8(priv, &priv->map->CONFIG1);
507 reg &= 0x3F;
508 reg |= 0x80;
509 rtl818x_iowrite8(priv, &priv->map->CONFIG1, reg);
510
511 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
512
513 rtl818x_iowrite32(priv, &priv->map->INT_TIMEOUT, 0);
514 rtl818x_iowrite8(priv, &priv->map->WPA_CONF, 0);
515 rtl818x_iowrite8(priv, &priv->map->RATE_FALLBACK, 0x81);
516
517 // TODO: set RESP_RATE and BRSR properly
518 rtl818x_iowrite8(priv, &priv->map->RESP_RATE, (8 << 4) | 0);
519 rtl818x_iowrite16(priv, &priv->map->BRSR, 0x01F3);
520
521 /* host_usb_init */
522 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0);
523 rtl818x_iowrite8(priv, &priv->map->GPIO, 0);
524 reg = rtl818x_ioread8(priv, (u8 *)0xFE53);
525 rtl818x_iowrite8(priv, (u8 *)0xFE53, reg | (1 << 7));
526 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, (4 << 8));
527 rtl818x_iowrite8(priv, &priv->map->GPIO, 0x20);
528 rtl818x_iowrite8(priv, &priv->map->GP_ENABLE, 0);
529 rtl818x_iowrite16(priv, &priv->map->RFPinsOutput, 0x80);
530 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0x80);
531 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x80);
532 msleep(100);
533
534 rtl818x_iowrite32(priv, &priv->map->RF_TIMING, 0x000a8008);
535 rtl818x_iowrite16(priv, &priv->map->BRSR, 0xFFFF);
536 rtl818x_iowrite32(priv, &priv->map->RF_PARA, 0x00100044);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100537 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
538 RTL818X_EEPROM_CMD_CONFIG);
Michael Wu605bebe2007-05-14 01:41:02 -0400539 rtl818x_iowrite8(priv, &priv->map->CONFIG3, 0x44);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100540 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
541 RTL818X_EEPROM_CMD_NORMAL);
Michael Wu605bebe2007-05-14 01:41:02 -0400542 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x1FF7);
543 msleep(100);
544
Michael Wuf6532112007-10-14 14:43:16 -0400545 priv->rf->init(dev);
Michael Wu605bebe2007-05-14 01:41:02 -0400546
547 rtl818x_iowrite16(priv, &priv->map->BRSR, 0x01F3);
Michael Wuf6532112007-10-14 14:43:16 -0400548 reg = rtl818x_ioread8(priv, &priv->map->PGSELECT) & ~1;
549 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg | 1);
Michael Wu605bebe2007-05-14 01:41:02 -0400550 rtl818x_iowrite16(priv, (__le16 *)0xFFFE, 0x10);
551 rtl818x_iowrite8(priv, &priv->map->TALLY_SEL, 0x80);
552 rtl818x_iowrite8(priv, (u8 *)0xFFFF, 0x60);
Michael Wuf6532112007-10-14 14:43:16 -0400553 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg);
Michael Wu605bebe2007-05-14 01:41:02 -0400554
555 return 0;
556}
557
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100558static const u8 rtl8187b_reg_table[][3] = {
559 {0xF0, 0x32, 0}, {0xF1, 0x32, 0}, {0xF2, 0x00, 0}, {0xF3, 0x00, 0},
560 {0xF4, 0x32, 0}, {0xF5, 0x43, 0}, {0xF6, 0x00, 0}, {0xF7, 0x00, 0},
561 {0xF8, 0x46, 0}, {0xF9, 0xA4, 0}, {0xFA, 0x00, 0}, {0xFB, 0x00, 0},
562 {0xFC, 0x96, 0}, {0xFD, 0xA4, 0}, {0xFE, 0x00, 0}, {0xFF, 0x00, 0},
563
564 {0x58, 0x4B, 1}, {0x59, 0x00, 1}, {0x5A, 0x4B, 1}, {0x5B, 0x00, 1},
565 {0x60, 0x4B, 1}, {0x61, 0x09, 1}, {0x62, 0x4B, 1}, {0x63, 0x09, 1},
566 {0xCE, 0x0F, 1}, {0xCF, 0x00, 1}, {0xE0, 0xFF, 1}, {0xE1, 0x0F, 1},
567 {0xE2, 0x00, 1}, {0xF0, 0x4E, 1}, {0xF1, 0x01, 1}, {0xF2, 0x02, 1},
568 {0xF3, 0x03, 1}, {0xF4, 0x04, 1}, {0xF5, 0x05, 1}, {0xF6, 0x06, 1},
569 {0xF7, 0x07, 1}, {0xF8, 0x08, 1},
570
571 {0x4E, 0x00, 2}, {0x0C, 0x04, 2}, {0x21, 0x61, 2}, {0x22, 0x68, 2},
572 {0x23, 0x6F, 2}, {0x24, 0x76, 2}, {0x25, 0x7D, 2}, {0x26, 0x84, 2},
573 {0x27, 0x8D, 2}, {0x4D, 0x08, 2}, {0x50, 0x05, 2}, {0x51, 0xF5, 2},
574 {0x52, 0x04, 2}, {0x53, 0xA0, 2}, {0x54, 0x1F, 2}, {0x55, 0x23, 2},
575 {0x56, 0x45, 2}, {0x57, 0x67, 2}, {0x58, 0x08, 2}, {0x59, 0x08, 2},
576 {0x5A, 0x08, 2}, {0x5B, 0x08, 2}, {0x60, 0x08, 2}, {0x61, 0x08, 2},
577 {0x62, 0x08, 2}, {0x63, 0x08, 2}, {0x64, 0xCF, 2}, {0x72, 0x56, 2},
578 {0x73, 0x9A, 2},
579
580 {0x34, 0xF0, 0}, {0x35, 0x0F, 0}, {0x5B, 0x40, 0}, {0x84, 0x88, 0},
581 {0x85, 0x24, 0}, {0x88, 0x54, 0}, {0x8B, 0xB8, 0}, {0x8C, 0x07, 0},
582 {0x8D, 0x00, 0}, {0x94, 0x1B, 0}, {0x95, 0x12, 0}, {0x96, 0x00, 0},
583 {0x97, 0x06, 0}, {0x9D, 0x1A, 0}, {0x9F, 0x10, 0}, {0xB4, 0x22, 0},
584 {0xBE, 0x80, 0}, {0xDB, 0x00, 0}, {0xEE, 0x00, 0}, {0x91, 0x03, 0},
585
586 {0x4C, 0x00, 2}, {0x9F, 0x00, 3}, {0x8C, 0x01, 0}, {0x8D, 0x10, 0},
587 {0x8E, 0x08, 0}, {0x8F, 0x00, 0}
588};
589
590static int rtl8187b_init_hw(struct ieee80211_hw *dev)
591{
592 struct rtl8187_priv *priv = dev->priv;
593 int res, i;
594 u8 reg;
595
596 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
597 RTL818X_EEPROM_CMD_CONFIG);
598
599 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
600 reg |= RTL818X_CONFIG3_ANAPARAM_WRITE | RTL818X_CONFIG3_GNT_SELECT;
601 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg);
Herton Ronaldo Krzesinski4ece16a2008-07-10 18:55:23 -0300602 rtl818x_iowrite32(priv, &priv->map->ANAPARAM2,
603 RTL8187B_RTL8225_ANAPARAM2_ON);
604 rtl818x_iowrite32(priv, &priv->map->ANAPARAM,
605 RTL8187B_RTL8225_ANAPARAM_ON);
606 rtl818x_iowrite8(priv, &priv->map->ANAPARAM3,
607 RTL8187B_RTL8225_ANAPARAM3_ON);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100608
609 rtl818x_iowrite8(priv, (u8 *)0xFF61, 0x10);
610 reg = rtl818x_ioread8(priv, (u8 *)0xFF62);
611 rtl818x_iowrite8(priv, (u8 *)0xFF62, reg & ~(1 << 5));
612 rtl818x_iowrite8(priv, (u8 *)0xFF62, reg | (1 << 5));
613
614 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
615 reg &= ~RTL818X_CONFIG3_ANAPARAM_WRITE;
616 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg);
617
618 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
619 RTL818X_EEPROM_CMD_NORMAL);
620
621 res = rtl8187_cmd_reset(dev);
622 if (res)
623 return res;
624
625 rtl818x_iowrite16(priv, (__le16 *)0xFF2D, 0x0FFF);
626 reg = rtl818x_ioread8(priv, &priv->map->CW_CONF);
627 reg |= RTL818X_CW_CONF_PERPACKET_RETRY_SHIFT;
628 rtl818x_iowrite8(priv, &priv->map->CW_CONF, reg);
629 reg = rtl818x_ioread8(priv, &priv->map->TX_AGC_CTL);
630 reg |= RTL818X_TX_AGC_CTL_PERPACKET_GAIN_SHIFT |
631 RTL818X_TX_AGC_CTL_PERPACKET_ANTSEL_SHIFT;
632 rtl818x_iowrite8(priv, &priv->map->TX_AGC_CTL, reg);
633
634 rtl818x_iowrite16_idx(priv, (__le16 *)0xFFE0, 0x0FFF, 1);
635 reg = rtl818x_ioread8(priv, &priv->map->RATE_FALLBACK);
636 reg |= RTL818X_RATE_FALLBACK_ENABLE;
637 rtl818x_iowrite8(priv, &priv->map->RATE_FALLBACK, reg);
638
639 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL, 100);
640 rtl818x_iowrite16(priv, &priv->map->ATIM_WND, 2);
641 rtl818x_iowrite16_idx(priv, (__le16 *)0xFFD4, 0xFFFF, 1);
642
643 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
644 RTL818X_EEPROM_CMD_CONFIG);
645 reg = rtl818x_ioread8(priv, &priv->map->CONFIG1);
646 rtl818x_iowrite8(priv, &priv->map->CONFIG1, (reg & 0x3F) | 0x80);
647 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
648 RTL818X_EEPROM_CMD_NORMAL);
649
650 rtl818x_iowrite8(priv, &priv->map->WPA_CONF, 0);
651 for (i = 0; i < ARRAY_SIZE(rtl8187b_reg_table); i++) {
652 rtl818x_iowrite8_idx(priv,
653 (u8 *)(uintptr_t)
654 (rtl8187b_reg_table[i][0] | 0xFF00),
655 rtl8187b_reg_table[i][1],
656 rtl8187b_reg_table[i][2]);
657 }
658
659 rtl818x_iowrite16(priv, &priv->map->TID_AC_MAP, 0xFA50);
660 rtl818x_iowrite16(priv, &priv->map->INT_MIG, 0);
661
662 rtl818x_iowrite32_idx(priv, (__le32 *)0xFFF0, 0, 1);
663 rtl818x_iowrite32_idx(priv, (__le32 *)0xFFF4, 0, 1);
664 rtl818x_iowrite8_idx(priv, (u8 *)0xFFF8, 0, 1);
665
666 rtl818x_iowrite32(priv, &priv->map->RF_TIMING, 0x00004001);
667
668 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF72, 0x569A, 2);
669
670 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
671 RTL818X_EEPROM_CMD_CONFIG);
672 reg = rtl818x_ioread8(priv, &priv->map->CONFIG3);
673 reg |= RTL818X_CONFIG3_ANAPARAM_WRITE;
674 rtl818x_iowrite8(priv, &priv->map->CONFIG3, reg);
675 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD,
676 RTL818X_EEPROM_CMD_NORMAL);
677
678 rtl818x_iowrite16(priv, &priv->map->RFPinsOutput, 0x0480);
679 rtl818x_iowrite16(priv, &priv->map->RFPinsSelect, 0x2488);
680 rtl818x_iowrite16(priv, &priv->map->RFPinsEnable, 0x1FFF);
Larry Finger2f205962008-10-31 09:52:07 -0700681 msleep(100);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100682
683 priv->rf->init(dev);
684
685 reg = RTL818X_CMD_TX_ENABLE | RTL818X_CMD_RX_ENABLE;
686 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
687 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0xFFFF);
688
689 rtl818x_iowrite8(priv, (u8 *)0xFE41, 0xF4);
690 rtl818x_iowrite8(priv, (u8 *)0xFE40, 0x00);
691 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x00);
692 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x01);
693 rtl818x_iowrite8(priv, (u8 *)0xFE40, 0x0F);
694 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x00);
695 rtl818x_iowrite8(priv, (u8 *)0xFE42, 0x01);
696
697 reg = rtl818x_ioread8(priv, (u8 *)0xFFDB);
698 rtl818x_iowrite8(priv, (u8 *)0xFFDB, reg | (1 << 2));
699 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF72, 0x59FA, 3);
700 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF74, 0x59D2, 3);
701 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF76, 0x59D2, 3);
702 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF78, 0x19FA, 3);
703 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF7A, 0x19FA, 3);
704 rtl818x_iowrite16_idx(priv, (__le16 *)0xFF7C, 0x00D0, 3);
705 rtl818x_iowrite8(priv, (u8 *)0xFF61, 0);
706 rtl818x_iowrite8_idx(priv, (u8 *)0xFF80, 0x0F, 1);
707 rtl818x_iowrite8_idx(priv, (u8 *)0xFF83, 0x03, 1);
708 rtl818x_iowrite8(priv, (u8 *)0xFFDA, 0x10);
709 rtl818x_iowrite8_idx(priv, (u8 *)0xFF4D, 0x08, 2);
710
711 rtl818x_iowrite32(priv, &priv->map->HSSI_PARA, 0x0600321B);
712
713 rtl818x_iowrite16_idx(priv, (__le16 *)0xFFEC, 0x0800, 1);
714
715 return 0;
716}
717
Johannes Berg4150c572007-09-17 01:29:23 -0400718static int rtl8187_start(struct ieee80211_hw *dev)
Michael Wu605bebe2007-05-14 01:41:02 -0400719{
720 struct rtl8187_priv *priv = dev->priv;
721 u32 reg;
722 int ret;
723
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100724 ret = (!priv->is_rtl8187b) ? rtl8187_init_hw(dev) :
725 rtl8187b_init_hw(dev);
Michael Wu605bebe2007-05-14 01:41:02 -0400726 if (ret)
727 return ret;
728
Larry Finger7dcdd072008-07-31 19:30:48 -0500729 mutex_lock(&priv->conf_mutex);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100730 if (priv->is_rtl8187b) {
731 reg = RTL818X_RX_CONF_MGMT |
732 RTL818X_RX_CONF_DATA |
733 RTL818X_RX_CONF_BROADCAST |
734 RTL818X_RX_CONF_NICMAC |
735 RTL818X_RX_CONF_BSSID |
736 (7 << 13 /* RX FIFO threshold NONE */) |
737 (7 << 10 /* MAX RX DMA */) |
738 RTL818X_RX_CONF_RX_AUTORESETPHY |
739 RTL818X_RX_CONF_ONLYERLPKT |
740 RTL818X_RX_CONF_MULTICAST;
741 priv->rx_conf = reg;
742 rtl818x_iowrite32(priv, &priv->map->RX_CONF, reg);
743
744 rtl818x_iowrite32(priv, &priv->map->TX_CONF,
745 RTL818X_TX_CONF_HW_SEQNUM |
746 RTL818X_TX_CONF_DISREQQSIZE |
747 (7 << 8 /* short retry limit */) |
748 (7 << 0 /* long retry limit */) |
749 (7 << 21 /* MAX TX DMA */));
750 rtl8187_init_urbs(dev);
Larry Finger7dcdd072008-07-31 19:30:48 -0500751 mutex_unlock(&priv->conf_mutex);
Hin-Tak Leungf8a08c32008-07-08 12:33:34 +0100752 return 0;
753 }
754
Michael Wu605bebe2007-05-14 01:41:02 -0400755 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0xFFFF);
756
Michael Wu2fe14262007-10-20 20:05:31 -0400757 rtl818x_iowrite32(priv, &priv->map->MAR[0], ~0);
758 rtl818x_iowrite32(priv, &priv->map->MAR[1], ~0);
759
Michael Wu605bebe2007-05-14 01:41:02 -0400760 rtl8187_init_urbs(dev);
761
762 reg = RTL818X_RX_CONF_ONLYERLPKT |
763 RTL818X_RX_CONF_RX_AUTORESETPHY |
764 RTL818X_RX_CONF_BSSID |
765 RTL818X_RX_CONF_MGMT |
Michael Wu605bebe2007-05-14 01:41:02 -0400766 RTL818X_RX_CONF_DATA |
767 (7 << 13 /* RX FIFO threshold NONE */) |
768 (7 << 10 /* MAX RX DMA */) |
769 RTL818X_RX_CONF_BROADCAST |
Michael Wu605bebe2007-05-14 01:41:02 -0400770 RTL818X_RX_CONF_NICMAC;
Michael Wu605bebe2007-05-14 01:41:02 -0400771
Johannes Berg4150c572007-09-17 01:29:23 -0400772 priv->rx_conf = reg;
Michael Wu605bebe2007-05-14 01:41:02 -0400773 rtl818x_iowrite32(priv, &priv->map->RX_CONF, reg);
774
775 reg = rtl818x_ioread8(priv, &priv->map->CW_CONF);
776 reg &= ~RTL818X_CW_CONF_PERPACKET_CW_SHIFT;
777 reg |= RTL818X_CW_CONF_PERPACKET_RETRY_SHIFT;
778 rtl818x_iowrite8(priv, &priv->map->CW_CONF, reg);
779
780 reg = rtl818x_ioread8(priv, &priv->map->TX_AGC_CTL);
781 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_GAIN_SHIFT;
782 reg &= ~RTL818X_TX_AGC_CTL_PERPACKET_ANTSEL_SHIFT;
783 reg &= ~RTL818X_TX_AGC_CTL_FEEDBACK_ANT;
784 rtl818x_iowrite8(priv, &priv->map->TX_AGC_CTL, reg);
785
786 reg = RTL818X_TX_CONF_CW_MIN |
787 (7 << 21 /* MAX TX DMA */) |
788 RTL818X_TX_CONF_NO_ICV;
789 rtl818x_iowrite32(priv, &priv->map->TX_CONF, reg);
790
791 reg = rtl818x_ioread8(priv, &priv->map->CMD);
792 reg |= RTL818X_CMD_TX_ENABLE;
793 reg |= RTL818X_CMD_RX_ENABLE;
794 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
Larry Finger7dcdd072008-07-31 19:30:48 -0500795 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400796
797 return 0;
798}
799
Johannes Berg4150c572007-09-17 01:29:23 -0400800static void rtl8187_stop(struct ieee80211_hw *dev)
Michael Wu605bebe2007-05-14 01:41:02 -0400801{
802 struct rtl8187_priv *priv = dev->priv;
803 struct rtl8187_rx_info *info;
804 struct sk_buff *skb;
805 u32 reg;
806
Larry Finger7dcdd072008-07-31 19:30:48 -0500807 mutex_lock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400808 rtl818x_iowrite16(priv, &priv->map->INT_MASK, 0);
809
810 reg = rtl818x_ioread8(priv, &priv->map->CMD);
811 reg &= ~RTL818X_CMD_TX_ENABLE;
812 reg &= ~RTL818X_CMD_RX_ENABLE;
813 rtl818x_iowrite8(priv, &priv->map->CMD, reg);
814
Michael Wuf6532112007-10-14 14:43:16 -0400815 priv->rf->stop(dev);
Michael Wu605bebe2007-05-14 01:41:02 -0400816
817 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
818 reg = rtl818x_ioread8(priv, &priv->map->CONFIG4);
819 rtl818x_iowrite8(priv, &priv->map->CONFIG4, reg | RTL818X_CONFIG4_VCOOFF);
820 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
821
822 while ((skb = skb_dequeue(&priv->rx_queue))) {
823 info = (struct rtl8187_rx_info *)skb->cb;
824 usb_kill_urb(info->urb);
825 kfree_skb(skb);
826 }
Larry Finger7dcdd072008-07-31 19:30:48 -0500827 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400828}
829
830static int rtl8187_add_interface(struct ieee80211_hw *dev,
831 struct ieee80211_if_init_conf *conf)
832{
833 struct rtl8187_priv *priv = dev->priv;
Johannes Berg4150c572007-09-17 01:29:23 -0400834 int i;
Michael Wu605bebe2007-05-14 01:41:02 -0400835
Johannes Berg05c914f2008-09-11 00:01:58 +0200836 if (priv->mode != NL80211_IFTYPE_MONITOR)
Johannes Berg4150c572007-09-17 01:29:23 -0400837 return -EOPNOTSUPP;
Michael Wu605bebe2007-05-14 01:41:02 -0400838
839 switch (conf->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200840 case NL80211_IFTYPE_STATION:
Michael Wu605bebe2007-05-14 01:41:02 -0400841 priv->mode = conf->type;
842 break;
843 default:
844 return -EOPNOTSUPP;
845 }
846
Larry Finger7dcdd072008-07-31 19:30:48 -0500847 mutex_lock(&priv->conf_mutex);
Herton Ronaldo Krzesinskiaa979a62008-04-09 16:38:31 -0300848 priv->vif = conf->vif;
849
Johannes Berg4150c572007-09-17 01:29:23 -0400850 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
851 for (i = 0; i < ETH_ALEN; i++)
852 rtl818x_iowrite8(priv, &priv->map->MAC[i],
853 ((u8 *)conf->mac_addr)[i]);
854 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
Michael Wu605bebe2007-05-14 01:41:02 -0400855
Larry Finger7dcdd072008-07-31 19:30:48 -0500856 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400857 return 0;
858}
859
860static void rtl8187_remove_interface(struct ieee80211_hw *dev,
861 struct ieee80211_if_init_conf *conf)
862{
863 struct rtl8187_priv *priv = dev->priv;
Larry Finger7dcdd072008-07-31 19:30:48 -0500864 mutex_lock(&priv->conf_mutex);
Johannes Berg05c914f2008-09-11 00:01:58 +0200865 priv->mode = NL80211_IFTYPE_MONITOR;
Herton Ronaldo Krzesinskiaa979a62008-04-09 16:38:31 -0300866 priv->vif = NULL;
Larry Finger7dcdd072008-07-31 19:30:48 -0500867 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400868}
869
Johannes Berge8975582008-10-09 12:18:51 +0200870static int rtl8187_config(struct ieee80211_hw *dev, u32 changed)
Michael Wu605bebe2007-05-14 01:41:02 -0400871{
872 struct rtl8187_priv *priv = dev->priv;
Johannes Berge8975582008-10-09 12:18:51 +0200873 struct ieee80211_conf *conf = &dev->conf;
Michael Wuf6532112007-10-14 14:43:16 -0400874 u32 reg;
875
Larry Finger7dcdd072008-07-31 19:30:48 -0500876 mutex_lock(&priv->conf_mutex);
Michael Wuf6532112007-10-14 14:43:16 -0400877 reg = rtl818x_ioread32(priv, &priv->map->TX_CONF);
878 /* Enable TX loopback on MAC level to avoid TX during channel
879 * changes, as this has be seen to causes problems and the
880 * card will stop work until next reset
881 */
882 rtl818x_iowrite32(priv, &priv->map->TX_CONF,
883 reg | RTL818X_TX_CONF_LOOPBACK_MAC);
Michael Wuf6532112007-10-14 14:43:16 -0400884 priv->rf->set_chan(dev, conf);
885 msleep(10);
886 rtl818x_iowrite32(priv, &priv->map->TX_CONF, reg);
Michael Wu605bebe2007-05-14 01:41:02 -0400887
Michael Wu605bebe2007-05-14 01:41:02 -0400888 rtl818x_iowrite16(priv, &priv->map->ATIM_WND, 2);
889 rtl818x_iowrite16(priv, &priv->map->ATIMTR_INTERVAL, 100);
890 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL, 100);
891 rtl818x_iowrite16(priv, &priv->map->BEACON_INTERVAL_TIME, 100);
Larry Finger7dcdd072008-07-31 19:30:48 -0500892 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400893 return 0;
894}
895
Johannes Berg32bfd352007-12-19 01:31:26 +0100896static int rtl8187_config_interface(struct ieee80211_hw *dev,
897 struct ieee80211_vif *vif,
Michael Wu605bebe2007-05-14 01:41:02 -0400898 struct ieee80211_if_conf *conf)
899{
900 struct rtl8187_priv *priv = dev->priv;
901 int i;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100902 u8 reg;
Michael Wu605bebe2007-05-14 01:41:02 -0400903
Larry Finger7dcdd072008-07-31 19:30:48 -0500904 mutex_lock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400905 for (i = 0; i < ETH_ALEN; i++)
906 rtl818x_iowrite8(priv, &priv->map->BSSID[i], conf->bssid[i]);
907
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +0100908 if (is_valid_ether_addr(conf->bssid)) {
909 reg = RTL818X_MSR_INFRA;
910 if (priv->is_rtl8187b)
911 reg |= RTL818X_MSR_ENEDCA;
912 rtl818x_iowrite8(priv, &priv->map->MSR, reg);
913 } else {
914 reg = RTL818X_MSR_NO_LINK;
915 rtl818x_iowrite8(priv, &priv->map->MSR, reg);
916 }
Michael Wu605bebe2007-05-14 01:41:02 -0400917
Larry Finger7dcdd072008-07-31 19:30:48 -0500918 mutex_unlock(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400919 return 0;
920}
921
Herton Ronaldo Krzesinskif8288312008-10-13 18:11:00 +0000922static void rtl8187_conf_erp(struct rtl8187_priv *priv, bool use_short_slot,
923 bool use_short_preamble)
Herton Ronaldo Krzesinski64761072008-10-13 18:10:59 +0000924{
Herton Ronaldo Krzesinskif8288312008-10-13 18:11:00 +0000925 if (priv->is_rtl8187b) {
926 u8 difs, eifs, slot_time;
927 u16 ack_timeout;
928
929 if (use_short_slot) {
930 slot_time = 0x9;
931 difs = 0x1c;
932 eifs = 0x53;
933 } else {
934 slot_time = 0x14;
935 difs = 0x32;
936 eifs = 0x5b;
937 }
Herton Ronaldo Krzesinski54ac2182008-11-13 10:39:14 -0500938 rtl818x_iowrite8(priv, &priv->map->SIFS, 0x22);
Herton Ronaldo Krzesinskif8288312008-10-13 18:11:00 +0000939 rtl818x_iowrite8(priv, &priv->map->SLOT, slot_time);
940 rtl818x_iowrite8(priv, &priv->map->DIFS, difs);
941
942 /*
943 * BRSR+1 on 8187B is in fact EIFS register
944 * Value in units of 4 us
945 */
946 rtl818x_iowrite8(priv, (u8 *)&priv->map->BRSR + 1, eifs);
947
948 /*
949 * For 8187B, CARRIER_SENSE_COUNTER is in fact ack timeout
950 * register. In units of 4 us like eifs register
951 * ack_timeout = ack duration + plcp + difs + preamble
952 */
953 ack_timeout = 112 + 48 + difs;
954 if (use_short_preamble)
955 ack_timeout += 72;
956 else
957 ack_timeout += 144;
958 rtl818x_iowrite8(priv, &priv->map->CARRIER_SENSE_COUNTER,
959 DIV_ROUND_UP(ack_timeout, 4));
960 } else {
Herton Ronaldo Krzesinski64761072008-10-13 18:10:59 +0000961 rtl818x_iowrite8(priv, &priv->map->SIFS, 0x22);
962 if (use_short_slot) {
963 rtl818x_iowrite8(priv, &priv->map->SLOT, 0x9);
964 rtl818x_iowrite8(priv, &priv->map->DIFS, 0x14);
965 rtl818x_iowrite8(priv, &priv->map->EIFS, 91 - 0x14);
966 rtl818x_iowrite8(priv, &priv->map->CW_VAL, 0x73);
967 } else {
968 rtl818x_iowrite8(priv, &priv->map->SLOT, 0x14);
969 rtl818x_iowrite8(priv, &priv->map->DIFS, 0x24);
970 rtl818x_iowrite8(priv, &priv->map->EIFS, 91 - 0x24);
971 rtl818x_iowrite8(priv, &priv->map->CW_VAL, 0xa5);
972 }
973 }
974}
975
976static void rtl8187_bss_info_changed(struct ieee80211_hw *dev,
977 struct ieee80211_vif *vif,
978 struct ieee80211_bss_conf *info,
979 u32 changed)
980{
981 struct rtl8187_priv *priv = dev->priv;
982
Herton Ronaldo Krzesinskif8288312008-10-13 18:11:00 +0000983 if (changed & (BSS_CHANGED_ERP_SLOT | BSS_CHANGED_ERP_PREAMBLE))
984 rtl8187_conf_erp(priv, info->use_short_slot,
985 info->use_short_preamble);
Herton Ronaldo Krzesinski64761072008-10-13 18:10:59 +0000986}
987
Johannes Berg4150c572007-09-17 01:29:23 -0400988static void rtl8187_configure_filter(struct ieee80211_hw *dev,
989 unsigned int changed_flags,
990 unsigned int *total_flags,
Michael Wu2fe14262007-10-20 20:05:31 -0400991 int mc_count, struct dev_addr_list *mclist)
Johannes Berg4150c572007-09-17 01:29:23 -0400992{
993 struct rtl8187_priv *priv = dev->priv;
994
Johannes Berg4150c572007-09-17 01:29:23 -0400995 if (changed_flags & FIF_FCSFAIL)
996 priv->rx_conf ^= RTL818X_RX_CONF_FCS;
997 if (changed_flags & FIF_CONTROL)
998 priv->rx_conf ^= RTL818X_RX_CONF_CTRL;
999 if (changed_flags & FIF_OTHER_BSS)
1000 priv->rx_conf ^= RTL818X_RX_CONF_MONITOR;
Michael Wu2fe14262007-10-20 20:05:31 -04001001 if (*total_flags & FIF_ALLMULTI || mc_count > 0)
Johannes Berg4150c572007-09-17 01:29:23 -04001002 priv->rx_conf |= RTL818X_RX_CONF_MULTICAST;
Michael Wu2fe14262007-10-20 20:05:31 -04001003 else
1004 priv->rx_conf &= ~RTL818X_RX_CONF_MULTICAST;
Johannes Berg4150c572007-09-17 01:29:23 -04001005
Michael Wu2fe14262007-10-20 20:05:31 -04001006 *total_flags = 0;
1007
Johannes Berg4150c572007-09-17 01:29:23 -04001008 if (priv->rx_conf & RTL818X_RX_CONF_FCS)
1009 *total_flags |= FIF_FCSFAIL;
1010 if (priv->rx_conf & RTL818X_RX_CONF_CTRL)
1011 *total_flags |= FIF_CONTROL;
1012 if (priv->rx_conf & RTL818X_RX_CONF_MONITOR)
1013 *total_flags |= FIF_OTHER_BSS;
Michael Wu2fe14262007-10-20 20:05:31 -04001014 if (priv->rx_conf & RTL818X_RX_CONF_MULTICAST)
1015 *total_flags |= FIF_ALLMULTI;
Johannes Berg4150c572007-09-17 01:29:23 -04001016
1017 rtl818x_iowrite32_async(priv, &priv->map->RX_CONF, priv->rx_conf);
1018}
1019
Michael Wu605bebe2007-05-14 01:41:02 -04001020static const struct ieee80211_ops rtl8187_ops = {
1021 .tx = rtl8187_tx,
Johannes Berg4150c572007-09-17 01:29:23 -04001022 .start = rtl8187_start,
Michael Wu605bebe2007-05-14 01:41:02 -04001023 .stop = rtl8187_stop,
1024 .add_interface = rtl8187_add_interface,
1025 .remove_interface = rtl8187_remove_interface,
1026 .config = rtl8187_config,
1027 .config_interface = rtl8187_config_interface,
Herton Ronaldo Krzesinski64761072008-10-13 18:10:59 +00001028 .bss_info_changed = rtl8187_bss_info_changed,
Johannes Berg4150c572007-09-17 01:29:23 -04001029 .configure_filter = rtl8187_configure_filter,
Michael Wu605bebe2007-05-14 01:41:02 -04001030};
1031
1032static void rtl8187_eeprom_register_read(struct eeprom_93cx6 *eeprom)
1033{
1034 struct ieee80211_hw *dev = eeprom->data;
1035 struct rtl8187_priv *priv = dev->priv;
1036 u8 reg = rtl818x_ioread8(priv, &priv->map->EEPROM_CMD);
1037
1038 eeprom->reg_data_in = reg & RTL818X_EEPROM_CMD_WRITE;
1039 eeprom->reg_data_out = reg & RTL818X_EEPROM_CMD_READ;
1040 eeprom->reg_data_clock = reg & RTL818X_EEPROM_CMD_CK;
1041 eeprom->reg_chip_select = reg & RTL818X_EEPROM_CMD_CS;
1042}
1043
1044static void rtl8187_eeprom_register_write(struct eeprom_93cx6 *eeprom)
1045{
1046 struct ieee80211_hw *dev = eeprom->data;
1047 struct rtl8187_priv *priv = dev->priv;
1048 u8 reg = RTL818X_EEPROM_CMD_PROGRAM;
1049
1050 if (eeprom->reg_data_in)
1051 reg |= RTL818X_EEPROM_CMD_WRITE;
1052 if (eeprom->reg_data_out)
1053 reg |= RTL818X_EEPROM_CMD_READ;
1054 if (eeprom->reg_data_clock)
1055 reg |= RTL818X_EEPROM_CMD_CK;
1056 if (eeprom->reg_chip_select)
1057 reg |= RTL818X_EEPROM_CMD_CS;
1058
1059 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, reg);
1060 udelay(10);
1061}
1062
1063static int __devinit rtl8187_probe(struct usb_interface *intf,
1064 const struct usb_device_id *id)
1065{
1066 struct usb_device *udev = interface_to_usbdev(intf);
1067 struct ieee80211_hw *dev;
1068 struct rtl8187_priv *priv;
1069 struct eeprom_93cx6 eeprom;
1070 struct ieee80211_channel *channel;
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001071 const char *chip_name;
Michael Wu605bebe2007-05-14 01:41:02 -04001072 u16 txpwr, reg;
1073 int err, i;
1074
1075 dev = ieee80211_alloc_hw(sizeof(*priv), &rtl8187_ops);
1076 if (!dev) {
1077 printk(KERN_ERR "rtl8187: ieee80211 alloc failed\n");
1078 return -ENOMEM;
1079 }
1080
1081 priv = dev->priv;
Larry Finger0e25b4e2008-07-08 09:43:43 -05001082 priv->is_rtl8187b = (id->driver_info == DEVICE_RTL8187B);
Michael Wu605bebe2007-05-14 01:41:02 -04001083
1084 SET_IEEE80211_DEV(dev, &intf->dev);
1085 usb_set_intfdata(intf, dev);
1086 priv->udev = udev;
1087
1088 usb_get_dev(udev);
1089
1090 skb_queue_head_init(&priv->rx_queue);
Johannes Berg8318d782008-01-24 19:38:38 +01001091
1092 BUILD_BUG_ON(sizeof(priv->channels) != sizeof(rtl818x_channels));
1093 BUILD_BUG_ON(sizeof(priv->rates) != sizeof(rtl818x_rates));
1094
Michael Wu605bebe2007-05-14 01:41:02 -04001095 memcpy(priv->channels, rtl818x_channels, sizeof(rtl818x_channels));
1096 memcpy(priv->rates, rtl818x_rates, sizeof(rtl818x_rates));
1097 priv->map = (struct rtl818x_csr *)0xFF00;
Johannes Berg8318d782008-01-24 19:38:38 +01001098
1099 priv->band.band = IEEE80211_BAND_2GHZ;
1100 priv->band.channels = priv->channels;
1101 priv->band.n_channels = ARRAY_SIZE(rtl818x_channels);
1102 priv->band.bitrates = priv->rates;
1103 priv->band.n_bitrates = ARRAY_SIZE(rtl818x_rates);
1104 dev->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
1105
1106
Johannes Berg05c914f2008-09-11 00:01:58 +02001107 priv->mode = NL80211_IFTYPE_MONITOR;
Michael Wu605bebe2007-05-14 01:41:02 -04001108 dev->flags = IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
Larry Finger0ccd58f2008-07-28 22:25:08 -05001109 IEEE80211_HW_RX_INCLUDES_FCS;
Michael Wu605bebe2007-05-14 01:41:02 -04001110
Michael Wu605bebe2007-05-14 01:41:02 -04001111 eeprom.data = dev;
1112 eeprom.register_read = rtl8187_eeprom_register_read;
1113 eeprom.register_write = rtl8187_eeprom_register_write;
1114 if (rtl818x_ioread32(priv, &priv->map->RX_CONF) & (1 << 6))
1115 eeprom.width = PCI_EEPROM_WIDTH_93C66;
1116 else
1117 eeprom.width = PCI_EEPROM_WIDTH_93C46;
1118
1119 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_CONFIG);
1120 udelay(10);
1121
1122 eeprom_93cx6_multiread(&eeprom, RTL8187_EEPROM_MAC_ADDR,
1123 (__le16 __force *)dev->wiphy->perm_addr, 3);
1124 if (!is_valid_ether_addr(dev->wiphy->perm_addr)) {
1125 printk(KERN_WARNING "rtl8187: Invalid hwaddr! Using randomly "
1126 "generated MAC address\n");
1127 random_ether_addr(dev->wiphy->perm_addr);
1128 }
1129
1130 channel = priv->channels;
1131 for (i = 0; i < 3; i++) {
1132 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_1 + i,
1133 &txpwr);
Johannes Berg8318d782008-01-24 19:38:38 +01001134 (*channel++).hw_value = txpwr & 0xFF;
1135 (*channel++).hw_value = txpwr >> 8;
Michael Wu605bebe2007-05-14 01:41:02 -04001136 }
1137 for (i = 0; i < 2; i++) {
1138 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_4 + i,
1139 &txpwr);
Johannes Berg8318d782008-01-24 19:38:38 +01001140 (*channel++).hw_value = txpwr & 0xFF;
1141 (*channel++).hw_value = txpwr >> 8;
Michael Wu605bebe2007-05-14 01:41:02 -04001142 }
Michael Wu605bebe2007-05-14 01:41:02 -04001143
1144 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_BASE,
1145 &priv->txpwr_base);
1146
Michael Wuf6532112007-10-14 14:43:16 -04001147 reg = rtl818x_ioread8(priv, &priv->map->PGSELECT) & ~1;
1148 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg | 1);
Michael Wu605bebe2007-05-14 01:41:02 -04001149 /* 0 means asic B-cut, we should use SW 3 wire
1150 * bit-by-bit banging for radio. 1 means we can use
1151 * USB specific request to write radio registers */
1152 priv->asic_rev = rtl818x_ioread8(priv, (u8 *)0xFFFE) & 0x3;
Michael Wuf6532112007-10-14 14:43:16 -04001153 rtl818x_iowrite8(priv, &priv->map->PGSELECT, reg);
Michael Wu605bebe2007-05-14 01:41:02 -04001154 rtl818x_iowrite8(priv, &priv->map->EEPROM_CMD, RTL818X_EEPROM_CMD_NORMAL);
1155
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001156 if (!priv->is_rtl8187b) {
1157 u32 reg32;
1158 reg32 = rtl818x_ioread32(priv, &priv->map->TX_CONF);
1159 reg32 &= RTL818X_TX_CONF_HWVER_MASK;
1160 switch (reg32) {
Larry Finger0e25b4e2008-07-08 09:43:43 -05001161 case RTL818X_TX_CONF_R8187vD_B:
1162 /* Some RTL8187B devices have a USB ID of 0x8187
1163 * detect them here */
1164 chip_name = "RTL8187BvB(early)";
1165 priv->is_rtl8187b = 1;
1166 priv->hw_rev = RTL8187BvB;
1167 break;
1168 case RTL818X_TX_CONF_R8187vD:
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001169 chip_name = "RTL8187vD";
1170 break;
1171 default:
1172 chip_name = "RTL8187vB (default)";
1173 }
1174 } else {
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001175 /*
1176 * Force USB request to write radio registers for 8187B, Realtek
1177 * only uses it in their sources
1178 */
1179 /*if (priv->asic_rev == 0) {
1180 printk(KERN_WARNING "rtl8187: Forcing use of USB "
1181 "requests to write to radio registers\n");
1182 priv->asic_rev = 1;
1183 }*/
1184 switch (rtl818x_ioread8(priv, (u8 *)0xFFE1)) {
1185 case RTL818X_R8187B_B:
1186 chip_name = "RTL8187BvB";
1187 priv->hw_rev = RTL8187BvB;
1188 break;
1189 case RTL818X_R8187B_D:
1190 chip_name = "RTL8187BvD";
1191 priv->hw_rev = RTL8187BvD;
1192 break;
1193 case RTL818X_R8187B_E:
1194 chip_name = "RTL8187BvE";
1195 priv->hw_rev = RTL8187BvE;
1196 break;
1197 default:
1198 chip_name = "RTL8187BvB (default)";
1199 priv->hw_rev = RTL8187BvB;
1200 }
1201 }
1202
Larry Finger0e25b4e2008-07-08 09:43:43 -05001203 if (!priv->is_rtl8187b) {
1204 for (i = 0; i < 2; i++) {
1205 eeprom_93cx6_read(&eeprom,
1206 RTL8187_EEPROM_TXPWR_CHAN_6 + i,
1207 &txpwr);
1208 (*channel++).hw_value = txpwr & 0xFF;
1209 (*channel++).hw_value = txpwr >> 8;
1210 }
1211 } else {
1212 eeprom_93cx6_read(&eeprom, RTL8187_EEPROM_TXPWR_CHAN_6,
1213 &txpwr);
1214 (*channel++).hw_value = txpwr & 0xFF;
1215
1216 eeprom_93cx6_read(&eeprom, 0x0A, &txpwr);
1217 (*channel++).hw_value = txpwr & 0xFF;
1218
1219 eeprom_93cx6_read(&eeprom, 0x1C, &txpwr);
1220 (*channel++).hw_value = txpwr & 0xFF;
1221 (*channel++).hw_value = txpwr >> 8;
1222 }
1223
Larry Finger0ccd58f2008-07-28 22:25:08 -05001224 if (priv->is_rtl8187b) {
Larry Finger0e25b4e2008-07-08 09:43:43 -05001225 printk(KERN_WARNING "rtl8187: 8187B chip detected. Support "
1226 "is EXPERIMENTAL, and could damage your\n"
1227 " hardware, use at your own risk\n");
Larry Finger0ccd58f2008-07-28 22:25:08 -05001228 dev->flags |= IEEE80211_HW_SIGNAL_DBM;
1229 } else {
1230 dev->flags |= IEEE80211_HW_SIGNAL_UNSPEC;
1231 dev->max_signal = 65;
1232 }
1233
Johannes Berg94778282008-10-10 13:21:59 +02001234 /*
1235 * XXX: Once this driver supports anything that requires
1236 * beacons it must implement IEEE80211_TX_CTL_ASSIGN_SEQ.
1237 */
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001238 dev->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
1239
Larry Finger0e25b4e2008-07-08 09:43:43 -05001240 if ((id->driver_info == DEVICE_RTL8187) && priv->is_rtl8187b)
1241 printk(KERN_INFO "rtl8187: inconsistency between id with OEM"
1242 " info!\n");
1243
Michael Wuf6532112007-10-14 14:43:16 -04001244 priv->rf = rtl8187_detect_rf(dev);
Larry Finger0e25b4e2008-07-08 09:43:43 -05001245 dev->extra_tx_headroom = (!priv->is_rtl8187b) ?
1246 sizeof(struct rtl8187_tx_hdr) :
1247 sizeof(struct rtl8187b_tx_hdr);
1248 if (!priv->is_rtl8187b)
1249 dev->queues = 1;
1250 else
1251 dev->queues = 4;
Michael Wu605bebe2007-05-14 01:41:02 -04001252
1253 err = ieee80211_register_hw(dev);
1254 if (err) {
1255 printk(KERN_ERR "rtl8187: Cannot register device\n");
1256 goto err_free_dev;
1257 }
Larry Finger7dcdd072008-07-31 19:30:48 -05001258 mutex_init(&priv->conf_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -04001259
Johannes Berge1749612008-10-27 15:59:26 -07001260 printk(KERN_INFO "%s: hwaddr %pM, %s V%d + %s\n",
1261 wiphy_name(dev->wiphy), dev->wiphy->perm_addr,
Hin-Tak Leung6f7853f2008-07-08 12:36:04 +01001262 chip_name, priv->asic_rev, priv->rf->name);
Michael Wu605bebe2007-05-14 01:41:02 -04001263
1264 return 0;
1265
1266 err_free_dev:
1267 ieee80211_free_hw(dev);
1268 usb_set_intfdata(intf, NULL);
1269 usb_put_dev(udev);
1270 return err;
1271}
1272
1273static void __devexit rtl8187_disconnect(struct usb_interface *intf)
1274{
1275 struct ieee80211_hw *dev = usb_get_intfdata(intf);
1276 struct rtl8187_priv *priv;
1277
1278 if (!dev)
1279 return;
1280
1281 ieee80211_unregister_hw(dev);
1282
1283 priv = dev->priv;
1284 usb_put_dev(interface_to_usbdev(intf));
1285 ieee80211_free_hw(dev);
1286}
1287
1288static struct usb_driver rtl8187_driver = {
1289 .name = KBUILD_MODNAME,
1290 .id_table = rtl8187_table,
1291 .probe = rtl8187_probe,
Ihar Hrachyshka500c1192008-07-09 01:11:59 +03001292 .disconnect = __devexit_p(rtl8187_disconnect),
Michael Wu605bebe2007-05-14 01:41:02 -04001293};
1294
1295static int __init rtl8187_init(void)
1296{
1297 return usb_register(&rtl8187_driver);
1298}
1299
1300static void __exit rtl8187_exit(void)
1301{
1302 usb_deregister(&rtl8187_driver);
1303}
1304
1305module_init(rtl8187_init);
1306module_exit(rtl8187_exit);