blob: bf9175a8c1f4d2dbd9d90d40ed23a5ced00adf90 [file] [log] [blame]
John W. Linville0aec00a2007-06-12 22:11:42 -04001/*
2 * Definitions for RTL8187 hardware
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 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Michael Wu605bebe2007-05-14 01:41:02 -040015#ifndef RTL8187_H
16#define RTL8187_H
17
18#include "rtl818x.h"
Larry Fingera0270872009-04-16 19:56:38 -050019#include "rtl8187_leds.h"
Michael Wu605bebe2007-05-14 01:41:02 -040020
21#define RTL8187_EEPROM_TXPWR_BASE 0x05
22#define RTL8187_EEPROM_MAC_ADDR 0x07
23#define RTL8187_EEPROM_TXPWR_CHAN_1 0x16 /* 3 channels */
24#define RTL8187_EEPROM_TXPWR_CHAN_6 0x1B /* 2 channels */
25#define RTL8187_EEPROM_TXPWR_CHAN_4 0x3D /* 2 channels */
26
27#define RTL8187_REQT_READ 0xC0
28#define RTL8187_REQT_WRITE 0x40
29#define RTL8187_REQ_GET_REG 0x05
30#define RTL8187_REQ_SET_REG 0x05
31
32#define RTL8187_MAX_RX 0x9C4
33
34struct rtl8187_rx_info {
35 struct urb *urb;
36 struct ieee80211_hw *dev;
37};
38
39struct rtl8187_rx_hdr {
Johannes Berg4150c572007-09-17 01:29:23 -040040 __le32 flags;
Michael Wu605bebe2007-05-14 01:41:02 -040041 u8 noise;
42 u8 signal;
43 u8 agc;
44 u8 reserved;
45 __le64 mac_time;
46} __attribute__((packed));
47
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010048struct rtl8187b_rx_hdr {
Michael Wu605bebe2007-05-14 01:41:02 -040049 __le32 flags;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010050 __le64 mac_time;
Larry Finger0ccd58f2008-07-28 22:25:08 -050051 u8 sq;
52 u8 rssi;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010053 u8 agc;
Larry Finger0ccd58f2008-07-28 22:25:08 -050054 u8 flags2;
55 __le16 snr_long2end;
56 s8 pwdb_g12;
57 u8 fot;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010058} __attribute__((packed));
59
60/* {rtl8187,rtl8187b}_tx_info is in skb */
61
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010062struct rtl8187_tx_hdr {
63 __le32 flags;
Michael Wu605bebe2007-05-14 01:41:02 -040064 __le16 rts_duration;
65 __le16 len;
66 __le32 retry;
67} __attribute__((packed));
68
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010069struct rtl8187b_tx_hdr {
70 __le32 flags;
71 __le16 rts_duration;
72 __le16 len;
73 __le32 unused_1;
74 __le16 unused_2;
75 __le16 tx_duration;
76 __le32 unused_3;
77 __le32 retry;
78 __le32 unused_4[2];
79} __attribute__((packed));
80
81enum {
82 DEVICE_RTL8187,
83 DEVICE_RTL8187B
84};
85
Michael Wu605bebe2007-05-14 01:41:02 -040086struct rtl8187_priv {
87 /* common between rtl818x drivers */
88 struct rtl818x_csr *map;
Michael Wuf6532112007-10-14 14:43:16 -040089 const struct rtl818x_rf_ops *rf;
Johannes Berg32bfd352007-12-19 01:31:26 +010090 struct ieee80211_vif *vif;
Michael Wu605bebe2007-05-14 01:41:02 -040091 int mode;
Larry Finger7dcdd072008-07-31 19:30:48 -050092 /* The mutex protects the TX loopback state.
93 * Any attempt to set channels concurrently locks the device.
94 */
95 struct mutex conf_mutex;
Michael Wu605bebe2007-05-14 01:41:02 -040096
97 /* rtl8187 specific */
98 struct ieee80211_channel channels[14];
99 struct ieee80211_rate rates[12];
Johannes Berg8318d782008-01-24 19:38:38 +0100100 struct ieee80211_supported_band band;
Michael Wu605bebe2007-05-14 01:41:02 -0400101 struct usb_device *udev;
Johannes Berg4150c572007-09-17 01:29:23 -0400102 u32 rx_conf;
Larry Fingerc1db52b2008-12-09 23:34:27 -0600103 struct usb_anchor anchored;
Larry Finger2f476902009-01-23 11:40:22 -0600104 struct delayed_work work;
105 struct ieee80211_hw *dev;
Larry Fingera0270872009-04-16 19:56:38 -0500106#ifdef CONFIG_RTL8187_LEDS
107 struct rtl8187_led led_tx;
108 struct rtl8187_led led_rx;
109 struct delayed_work led_on;
110 struct delayed_work led_off;
111#endif
Michael Wu605bebe2007-05-14 01:41:02 -0400112 u16 txpwr_base;
113 u8 asic_rev;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100114 u8 is_rtl8187b;
115 enum {
116 RTL8187BvB,
117 RTL8187BvD,
118 RTL8187BvE
119 } hw_rev;
Michael Wu605bebe2007-05-14 01:41:02 -0400120 struct sk_buff_head rx_queue;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100121 u8 signal;
122 u8 quality;
123 u8 noise;
Herton Ronaldo Krzesinskib4572a92008-11-13 10:39:15 -0500124 u8 slot_time;
125 u8 aifsn[4];
Herton Ronaldo Krzesinski3517afd2008-11-13 10:39:16 -0500126 struct {
127 __le64 buf;
Herton Ronaldo Krzesinski3517afd2008-11-13 10:39:16 -0500128 struct sk_buff_head queue;
Larry Finger2f476902009-01-23 11:40:22 -0600129 } b_tx_status; /* This queue is used by both -b and non-b devices */
John W. Linville9be6f0d2009-05-06 13:57:27 -0400130 struct mutex io_mutex;
131 union {
132 u8 bits8;
133 __le16 bits16;
134 __le32 bits32;
135 } *io_dmabuf;
Herton Ronaldo Krzesinskica9152e2009-08-26 13:54:09 -0300136 bool rfkill_off;
Michael Wu605bebe2007-05-14 01:41:02 -0400137};
138
139void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data);
140
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100141static inline u8 rtl818x_ioread8_idx(struct rtl8187_priv *priv,
142 u8 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400143{
144 u8 val;
145
John W. Linville9be6f0d2009-05-06 13:57:27 -0400146 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400147 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
148 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400149 (unsigned long)addr, idx & 0x03,
150 &priv->io_dmabuf->bits8, sizeof(val), HZ / 2);
151
152 val = priv->io_dmabuf->bits8;
153 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400154
155 return val;
156}
157
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100158static inline u8 rtl818x_ioread8(struct rtl8187_priv *priv, u8 *addr)
159{
160 return rtl818x_ioread8_idx(priv, addr, 0);
161}
162
163static inline u16 rtl818x_ioread16_idx(struct rtl8187_priv *priv,
164 __le16 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400165{
166 __le16 val;
167
John W. Linville9be6f0d2009-05-06 13:57:27 -0400168 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400169 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
170 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400171 (unsigned long)addr, idx & 0x03,
172 &priv->io_dmabuf->bits16, sizeof(val), HZ / 2);
173
174 val = priv->io_dmabuf->bits16;
175 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400176
177 return le16_to_cpu(val);
178}
179
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100180static inline u16 rtl818x_ioread16(struct rtl8187_priv *priv, __le16 *addr)
181{
182 return rtl818x_ioread16_idx(priv, addr, 0);
183}
184
185static inline u32 rtl818x_ioread32_idx(struct rtl8187_priv *priv,
186 __le32 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400187{
188 __le32 val;
189
John W. Linville9be6f0d2009-05-06 13:57:27 -0400190 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400191 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
192 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400193 (unsigned long)addr, idx & 0x03,
194 &priv->io_dmabuf->bits32, sizeof(val), HZ / 2);
195
196 val = priv->io_dmabuf->bits32;
197 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400198
199 return le32_to_cpu(val);
200}
201
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100202static inline u32 rtl818x_ioread32(struct rtl8187_priv *priv, __le32 *addr)
203{
204 return rtl818x_ioread32_idx(priv, addr, 0);
205}
206
207static inline void rtl818x_iowrite8_idx(struct rtl8187_priv *priv,
208 u8 *addr, u8 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400209{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400210 mutex_lock(&priv->io_mutex);
211
212 priv->io_dmabuf->bits8 = val;
Michael Wu605bebe2007-05-14 01:41:02 -0400213 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
214 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400215 (unsigned long)addr, idx & 0x03,
216 &priv->io_dmabuf->bits8, sizeof(val), HZ / 2);
217
218 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400219}
220
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100221static inline void rtl818x_iowrite8(struct rtl8187_priv *priv, u8 *addr, u8 val)
222{
223 rtl818x_iowrite8_idx(priv, addr, val, 0);
224}
225
226static inline void rtl818x_iowrite16_idx(struct rtl8187_priv *priv,
227 __le16 *addr, u16 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400228{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400229 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400230
John W. Linville9be6f0d2009-05-06 13:57:27 -0400231 priv->io_dmabuf->bits16 = cpu_to_le16(val);
Michael Wu605bebe2007-05-14 01:41:02 -0400232 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
233 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400234 (unsigned long)addr, idx & 0x03,
235 &priv->io_dmabuf->bits16, sizeof(val), HZ / 2);
236
237 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400238}
239
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100240static inline void rtl818x_iowrite16(struct rtl8187_priv *priv, __le16 *addr,
241 u16 val)
242{
243 rtl818x_iowrite16_idx(priv, addr, val, 0);
244}
245
246static inline void rtl818x_iowrite32_idx(struct rtl8187_priv *priv,
247 __le32 *addr, u32 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400248{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400249 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400250
John W. Linville9be6f0d2009-05-06 13:57:27 -0400251 priv->io_dmabuf->bits32 = cpu_to_le32(val);
Michael Wu605bebe2007-05-14 01:41:02 -0400252 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
253 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400254 (unsigned long)addr, idx & 0x03,
255 &priv->io_dmabuf->bits32, sizeof(val), HZ / 2);
256
257 mutex_unlock(&priv->io_mutex);
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100258}
259
260static inline void rtl818x_iowrite32(struct rtl8187_priv *priv, __le32 *addr,
261 u32 val)
262{
263 rtl818x_iowrite32_idx(priv, addr, val, 0);
Michael Wu605bebe2007-05-14 01:41:02 -0400264}
265
266#endif /* RTL8187_H */