blob: b1a24de0b7b01a99f2186fb0a421a36e4969aade [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 */
Larry Finger70d57132009-12-05 19:25:22 -060026#define RTL8187_EEPROM_SELECT_GPIO 0x3B
Michael Wu605bebe2007-05-14 01:41:02 -040027
28#define RTL8187_REQT_READ 0xC0
29#define RTL8187_REQT_WRITE 0x40
30#define RTL8187_REQ_GET_REG 0x05
31#define RTL8187_REQ_SET_REG 0x05
32
33#define RTL8187_MAX_RX 0x9C4
34
Larry Finger70d57132009-12-05 19:25:22 -060035#define RFKILL_MASK_8187_89_97 0x2
36#define RFKILL_MASK_8198 0x4
37
Michael Wu605bebe2007-05-14 01:41:02 -040038struct rtl8187_rx_info {
39 struct urb *urb;
40 struct ieee80211_hw *dev;
41};
42
43struct rtl8187_rx_hdr {
Johannes Berg4150c572007-09-17 01:29:23 -040044 __le32 flags;
Michael Wu605bebe2007-05-14 01:41:02 -040045 u8 noise;
46 u8 signal;
47 u8 agc;
48 u8 reserved;
49 __le64 mac_time;
50} __attribute__((packed));
51
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010052struct rtl8187b_rx_hdr {
Michael Wu605bebe2007-05-14 01:41:02 -040053 __le32 flags;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010054 __le64 mac_time;
Larry Finger0ccd58f2008-07-28 22:25:08 -050055 u8 sq;
56 u8 rssi;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010057 u8 agc;
Larry Finger0ccd58f2008-07-28 22:25:08 -050058 u8 flags2;
59 __le16 snr_long2end;
60 s8 pwdb_g12;
61 u8 fot;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010062} __attribute__((packed));
63
64/* {rtl8187,rtl8187b}_tx_info is in skb */
65
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010066struct rtl8187_tx_hdr {
67 __le32 flags;
Michael Wu605bebe2007-05-14 01:41:02 -040068 __le16 rts_duration;
69 __le16 len;
70 __le32 retry;
71} __attribute__((packed));
72
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010073struct rtl8187b_tx_hdr {
74 __le32 flags;
75 __le16 rts_duration;
76 __le16 len;
77 __le32 unused_1;
78 __le16 unused_2;
79 __le16 tx_duration;
80 __le32 unused_3;
81 __le32 retry;
82 __le32 unused_4[2];
83} __attribute__((packed));
84
85enum {
86 DEVICE_RTL8187,
87 DEVICE_RTL8187B
88};
89
Michael Wu605bebe2007-05-14 01:41:02 -040090struct rtl8187_priv {
91 /* common between rtl818x drivers */
92 struct rtl818x_csr *map;
Michael Wuf6532112007-10-14 14:43:16 -040093 const struct rtl818x_rf_ops *rf;
Johannes Berg32bfd352007-12-19 01:31:26 +010094 struct ieee80211_vif *vif;
Michael Wu605bebe2007-05-14 01:41:02 -040095 int mode;
Larry Finger7dcdd072008-07-31 19:30:48 -050096 /* The mutex protects the TX loopback state.
97 * Any attempt to set channels concurrently locks the device.
98 */
99 struct mutex conf_mutex;
Michael Wu605bebe2007-05-14 01:41:02 -0400100
101 /* rtl8187 specific */
102 struct ieee80211_channel channels[14];
103 struct ieee80211_rate rates[12];
Johannes Berg8318d782008-01-24 19:38:38 +0100104 struct ieee80211_supported_band band;
Michael Wu605bebe2007-05-14 01:41:02 -0400105 struct usb_device *udev;
Johannes Berg4150c572007-09-17 01:29:23 -0400106 u32 rx_conf;
Larry Fingerc1db52b2008-12-09 23:34:27 -0600107 struct usb_anchor anchored;
Larry Finger2f476902009-01-23 11:40:22 -0600108 struct delayed_work work;
109 struct ieee80211_hw *dev;
Larry Fingera0270872009-04-16 19:56:38 -0500110#ifdef CONFIG_RTL8187_LEDS
111 struct rtl8187_led led_tx;
112 struct rtl8187_led led_rx;
113 struct delayed_work led_on;
114 struct delayed_work led_off;
115#endif
Michael Wu605bebe2007-05-14 01:41:02 -0400116 u16 txpwr_base;
117 u8 asic_rev;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100118 u8 is_rtl8187b;
119 enum {
120 RTL8187BvB,
121 RTL8187BvD,
122 RTL8187BvE
123 } hw_rev;
Michael Wu605bebe2007-05-14 01:41:02 -0400124 struct sk_buff_head rx_queue;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100125 u8 signal;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100126 u8 noise;
Herton Ronaldo Krzesinskib4572a92008-11-13 10:39:15 -0500127 u8 slot_time;
128 u8 aifsn[4];
Larry Finger70d57132009-12-05 19:25:22 -0600129 u8 rfkill_mask;
Herton Ronaldo Krzesinski3517afd2008-11-13 10:39:16 -0500130 struct {
131 __le64 buf;
Herton Ronaldo Krzesinski3517afd2008-11-13 10:39:16 -0500132 struct sk_buff_head queue;
Larry Finger2f476902009-01-23 11:40:22 -0600133 } b_tx_status; /* This queue is used by both -b and non-b devices */
John W. Linville9be6f0d2009-05-06 13:57:27 -0400134 struct mutex io_mutex;
135 union {
136 u8 bits8;
137 __le16 bits16;
138 __le32 bits32;
139 } *io_dmabuf;
Herton Ronaldo Krzesinskica9152e2009-08-26 13:54:09 -0300140 bool rfkill_off;
Michael Wu605bebe2007-05-14 01:41:02 -0400141};
142
143void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data);
144
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100145static inline u8 rtl818x_ioread8_idx(struct rtl8187_priv *priv,
146 u8 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400147{
148 u8 val;
149
John W. Linville9be6f0d2009-05-06 13:57:27 -0400150 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400151 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
152 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400153 (unsigned long)addr, idx & 0x03,
154 &priv->io_dmabuf->bits8, sizeof(val), HZ / 2);
155
156 val = priv->io_dmabuf->bits8;
157 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400158
159 return val;
160}
161
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100162static inline u8 rtl818x_ioread8(struct rtl8187_priv *priv, u8 *addr)
163{
164 return rtl818x_ioread8_idx(priv, addr, 0);
165}
166
167static inline u16 rtl818x_ioread16_idx(struct rtl8187_priv *priv,
168 __le16 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400169{
170 __le16 val;
171
John W. Linville9be6f0d2009-05-06 13:57:27 -0400172 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400173 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
174 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400175 (unsigned long)addr, idx & 0x03,
176 &priv->io_dmabuf->bits16, sizeof(val), HZ / 2);
177
178 val = priv->io_dmabuf->bits16;
179 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400180
181 return le16_to_cpu(val);
182}
183
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100184static inline u16 rtl818x_ioread16(struct rtl8187_priv *priv, __le16 *addr)
185{
186 return rtl818x_ioread16_idx(priv, addr, 0);
187}
188
189static inline u32 rtl818x_ioread32_idx(struct rtl8187_priv *priv,
190 __le32 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400191{
192 __le32 val;
193
John W. Linville9be6f0d2009-05-06 13:57:27 -0400194 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400195 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
196 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400197 (unsigned long)addr, idx & 0x03,
198 &priv->io_dmabuf->bits32, sizeof(val), HZ / 2);
199
200 val = priv->io_dmabuf->bits32;
201 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400202
203 return le32_to_cpu(val);
204}
205
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100206static inline u32 rtl818x_ioread32(struct rtl8187_priv *priv, __le32 *addr)
207{
208 return rtl818x_ioread32_idx(priv, addr, 0);
209}
210
211static inline void rtl818x_iowrite8_idx(struct rtl8187_priv *priv,
212 u8 *addr, u8 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400213{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400214 mutex_lock(&priv->io_mutex);
215
216 priv->io_dmabuf->bits8 = val;
Michael Wu605bebe2007-05-14 01:41:02 -0400217 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
218 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400219 (unsigned long)addr, idx & 0x03,
220 &priv->io_dmabuf->bits8, sizeof(val), HZ / 2);
221
222 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400223}
224
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100225static inline void rtl818x_iowrite8(struct rtl8187_priv *priv, u8 *addr, u8 val)
226{
227 rtl818x_iowrite8_idx(priv, addr, val, 0);
228}
229
230static inline void rtl818x_iowrite16_idx(struct rtl8187_priv *priv,
231 __le16 *addr, u16 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400232{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400233 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400234
John W. Linville9be6f0d2009-05-06 13:57:27 -0400235 priv->io_dmabuf->bits16 = cpu_to_le16(val);
Michael Wu605bebe2007-05-14 01:41:02 -0400236 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
237 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400238 (unsigned long)addr, idx & 0x03,
239 &priv->io_dmabuf->bits16, sizeof(val), HZ / 2);
240
241 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400242}
243
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100244static inline void rtl818x_iowrite16(struct rtl8187_priv *priv, __le16 *addr,
245 u16 val)
246{
247 rtl818x_iowrite16_idx(priv, addr, val, 0);
248}
249
250static inline void rtl818x_iowrite32_idx(struct rtl8187_priv *priv,
251 __le32 *addr, u32 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400252{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400253 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400254
John W. Linville9be6f0d2009-05-06 13:57:27 -0400255 priv->io_dmabuf->bits32 = cpu_to_le32(val);
Michael Wu605bebe2007-05-14 01:41:02 -0400256 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
257 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400258 (unsigned long)addr, idx & 0x03,
259 &priv->io_dmabuf->bits32, sizeof(val), HZ / 2);
260
261 mutex_unlock(&priv->io_mutex);
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100262}
263
264static inline void rtl818x_iowrite32(struct rtl8187_priv *priv, __le32 *addr,
265 u32 val)
266{
267 rtl818x_iowrite32_idx(priv, addr, val, 0);
Michael Wu605bebe2007-05-14 01:41:02 -0400268}
269
270#endif /* RTL8187_H */