blob: 56aee067f324694ef5c83b376bac600c52b845cf [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>
Andrea Merello93ba2a82013-08-26 13:53:30 +02005 * Copyright 2007 Andrea Merello <andrea.merello@gmail.com>
John W. Linville0aec00a2007-06-12 22:11:42 -04006 *
7 * Based on the r8187 driver, which is:
Andrea Merello93ba2a82013-08-26 13:53:30 +02008 * Copyright 2005 Andrea Merello <andrea.merello@gmail.com>, et al.
John W. Linville0aec00a2007-06-12 22:11:42 -04009 *
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"
John W. Linville3cfeb0c2010-12-20 15:16:53 -050019#include "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
Larry Finger6410db52011-02-28 23:36:09 -060038#define RETRY_COUNT 7
39
Michael Wu605bebe2007-05-14 01:41:02 -040040struct rtl8187_rx_info {
41 struct urb *urb;
42 struct ieee80211_hw *dev;
43};
44
45struct rtl8187_rx_hdr {
Johannes Berg4150c572007-09-17 01:29:23 -040046 __le32 flags;
Michael Wu605bebe2007-05-14 01:41:02 -040047 u8 noise;
48 u8 signal;
49 u8 agc;
50 u8 reserved;
51 __le64 mac_time;
Eric Dumazetba2d3582010-06-02 18:10:09 +000052} __packed;
Michael Wu605bebe2007-05-14 01:41:02 -040053
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010054struct rtl8187b_rx_hdr {
Michael Wu605bebe2007-05-14 01:41:02 -040055 __le32 flags;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010056 __le64 mac_time;
Larry Finger0ccd58f2008-07-28 22:25:08 -050057 u8 sq;
58 u8 rssi;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010059 u8 agc;
Larry Finger0ccd58f2008-07-28 22:25:08 -050060 u8 flags2;
61 __le16 snr_long2end;
62 s8 pwdb_g12;
63 u8 fot;
Eric Dumazetba2d3582010-06-02 18:10:09 +000064} __packed;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010065
66/* {rtl8187,rtl8187b}_tx_info is in skb */
67
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010068struct rtl8187_tx_hdr {
69 __le32 flags;
Michael Wu605bebe2007-05-14 01:41:02 -040070 __le16 rts_duration;
71 __le16 len;
72 __le32 retry;
Eric Dumazetba2d3582010-06-02 18:10:09 +000073} __packed;
Michael Wu605bebe2007-05-14 01:41:02 -040074
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010075struct rtl8187b_tx_hdr {
76 __le32 flags;
77 __le16 rts_duration;
78 __le16 len;
79 __le32 unused_1;
80 __le16 unused_2;
81 __le16 tx_duration;
82 __le32 unused_3;
83 __le32 retry;
84 __le32 unused_4[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +000085} __packed;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +010086
87enum {
88 DEVICE_RTL8187,
89 DEVICE_RTL8187B
90};
91
Attila Fazekas41b58f12012-02-23 19:50:35 +010092struct rtl8187_vif {
93 struct ieee80211_hw *dev;
94
95 /* beaconing */
96 struct delayed_work beacon_work;
97 bool enable_beacon;
98};
99
Michael Wu605bebe2007-05-14 01:41:02 -0400100struct rtl8187_priv {
101 /* common between rtl818x drivers */
102 struct rtl818x_csr *map;
Michael Wuf6532112007-10-14 14:43:16 -0400103 const struct rtl818x_rf_ops *rf;
Johannes Berg32bfd352007-12-19 01:31:26 +0100104 struct ieee80211_vif *vif;
John W. Linvilled30506e2009-12-22 18:13:05 -0500105
Larry Finger7dcdd072008-07-31 19:30:48 -0500106 /* The mutex protects the TX loopback state.
107 * Any attempt to set channels concurrently locks the device.
108 */
109 struct mutex conf_mutex;
Michael Wu605bebe2007-05-14 01:41:02 -0400110
111 /* rtl8187 specific */
112 struct ieee80211_channel channels[14];
113 struct ieee80211_rate rates[12];
Johannes Berg8318d782008-01-24 19:38:38 +0100114 struct ieee80211_supported_band band;
Michael Wu605bebe2007-05-14 01:41:02 -0400115 struct usb_device *udev;
Johannes Berg4150c572007-09-17 01:29:23 -0400116 u32 rx_conf;
Larry Fingerc1db52b2008-12-09 23:34:27 -0600117 struct usb_anchor anchored;
Larry Finger2f476902009-01-23 11:40:22 -0600118 struct delayed_work work;
119 struct ieee80211_hw *dev;
Larry Fingera0270872009-04-16 19:56:38 -0500120#ifdef CONFIG_RTL8187_LEDS
Herton Ronaldo Krzesinski49d75902009-12-09 14:56:13 -0200121 struct rtl8187_led led_radio;
Larry Fingera0270872009-04-16 19:56:38 -0500122 struct rtl8187_led led_tx;
123 struct rtl8187_led led_rx;
124 struct delayed_work led_on;
125 struct delayed_work led_off;
126#endif
Michael Wu605bebe2007-05-14 01:41:02 -0400127 u16 txpwr_base;
128 u8 asic_rev;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100129 u8 is_rtl8187b;
130 enum {
131 RTL8187BvB,
132 RTL8187BvD,
133 RTL8187BvE
134 } hw_rev;
Michael Wu605bebe2007-05-14 01:41:02 -0400135 struct sk_buff_head rx_queue;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100136 u8 signal;
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100137 u8 noise;
Herton Ronaldo Krzesinskib4572a92008-11-13 10:39:15 -0500138 u8 slot_time;
139 u8 aifsn[4];
Larry Finger70d57132009-12-05 19:25:22 -0600140 u8 rfkill_mask;
Herton Ronaldo Krzesinski3517afd2008-11-13 10:39:16 -0500141 struct {
142 __le64 buf;
Herton Ronaldo Krzesinski3517afd2008-11-13 10:39:16 -0500143 struct sk_buff_head queue;
Larry Finger2f476902009-01-23 11:40:22 -0600144 } b_tx_status; /* This queue is used by both -b and non-b devices */
John W. Linville9be6f0d2009-05-06 13:57:27 -0400145 struct mutex io_mutex;
146 union {
147 u8 bits8;
148 __le16 bits16;
149 __le32 bits32;
150 } *io_dmabuf;
Herton Ronaldo Krzesinskica9152e2009-08-26 13:54:09 -0300151 bool rfkill_off;
Attila Fazekas41b58f12012-02-23 19:50:35 +0100152 u16 seqno;
Michael Wu605bebe2007-05-14 01:41:02 -0400153};
154
155void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data);
156
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100157static inline u8 rtl818x_ioread8_idx(struct rtl8187_priv *priv,
158 u8 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400159{
160 u8 val;
161
John W. Linville9be6f0d2009-05-06 13:57:27 -0400162 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400163 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
164 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400165 (unsigned long)addr, idx & 0x03,
166 &priv->io_dmabuf->bits8, sizeof(val), HZ / 2);
167
168 val = priv->io_dmabuf->bits8;
169 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400170
171 return val;
172}
173
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100174static inline u8 rtl818x_ioread8(struct rtl8187_priv *priv, u8 *addr)
175{
176 return rtl818x_ioread8_idx(priv, addr, 0);
177}
178
179static inline u16 rtl818x_ioread16_idx(struct rtl8187_priv *priv,
180 __le16 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400181{
182 __le16 val;
183
John W. Linville9be6f0d2009-05-06 13:57:27 -0400184 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400185 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
186 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400187 (unsigned long)addr, idx & 0x03,
188 &priv->io_dmabuf->bits16, sizeof(val), HZ / 2);
189
190 val = priv->io_dmabuf->bits16;
191 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400192
193 return le16_to_cpu(val);
194}
195
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100196static inline u16 rtl818x_ioread16(struct rtl8187_priv *priv, __le16 *addr)
197{
198 return rtl818x_ioread16_idx(priv, addr, 0);
199}
200
201static inline u32 rtl818x_ioread32_idx(struct rtl8187_priv *priv,
202 __le32 *addr, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400203{
204 __le32 val;
205
John W. Linville9be6f0d2009-05-06 13:57:27 -0400206 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400207 usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
208 RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400209 (unsigned long)addr, idx & 0x03,
210 &priv->io_dmabuf->bits32, sizeof(val), HZ / 2);
211
212 val = priv->io_dmabuf->bits32;
213 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400214
215 return le32_to_cpu(val);
216}
217
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100218static inline u32 rtl818x_ioread32(struct rtl8187_priv *priv, __le32 *addr)
219{
220 return rtl818x_ioread32_idx(priv, addr, 0);
221}
222
223static inline void rtl818x_iowrite8_idx(struct rtl8187_priv *priv,
224 u8 *addr, u8 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400225{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400226 mutex_lock(&priv->io_mutex);
227
228 priv->io_dmabuf->bits8 = val;
Michael Wu605bebe2007-05-14 01:41:02 -0400229 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
230 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400231 (unsigned long)addr, idx & 0x03,
232 &priv->io_dmabuf->bits8, sizeof(val), HZ / 2);
233
234 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400235}
236
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100237static inline void rtl818x_iowrite8(struct rtl8187_priv *priv, u8 *addr, u8 val)
238{
239 rtl818x_iowrite8_idx(priv, addr, val, 0);
240}
241
242static inline void rtl818x_iowrite16_idx(struct rtl8187_priv *priv,
243 __le16 *addr, u16 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400244{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400245 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400246
John W. Linville9be6f0d2009-05-06 13:57:27 -0400247 priv->io_dmabuf->bits16 = cpu_to_le16(val);
Michael Wu605bebe2007-05-14 01:41:02 -0400248 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
249 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400250 (unsigned long)addr, idx & 0x03,
251 &priv->io_dmabuf->bits16, sizeof(val), HZ / 2);
252
253 mutex_unlock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400254}
255
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100256static inline void rtl818x_iowrite16(struct rtl8187_priv *priv, __le16 *addr,
257 u16 val)
258{
259 rtl818x_iowrite16_idx(priv, addr, val, 0);
260}
261
262static inline void rtl818x_iowrite32_idx(struct rtl8187_priv *priv,
263 __le32 *addr, u32 val, u8 idx)
Michael Wu605bebe2007-05-14 01:41:02 -0400264{
John W. Linville9be6f0d2009-05-06 13:57:27 -0400265 mutex_lock(&priv->io_mutex);
Michael Wu605bebe2007-05-14 01:41:02 -0400266
John W. Linville9be6f0d2009-05-06 13:57:27 -0400267 priv->io_dmabuf->bits32 = cpu_to_le32(val);
Michael Wu605bebe2007-05-14 01:41:02 -0400268 usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
269 RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
John W. Linville9be6f0d2009-05-06 13:57:27 -0400270 (unsigned long)addr, idx & 0x03,
271 &priv->io_dmabuf->bits32, sizeof(val), HZ / 2);
272
273 mutex_unlock(&priv->io_mutex);
Hin-Tak Leungc44ac0b2008-07-08 12:27:54 +0100274}
275
276static inline void rtl818x_iowrite32(struct rtl8187_priv *priv, __le32 *addr,
277 u32 val)
278{
279 rtl818x_iowrite32_idx(priv, addr, val, 0);
Michael Wu605bebe2007-05-14 01:41:02 -0400280}
281
282#endif /* RTL8187_H */