rtl8187.h 6.5 KB
Newer Older
1 2 3 4
/*
 * Definitions for RTL8187 hardware
 *
 * Copyright 2007 Michael Wu <flamingice@sourmilk.net>
5
 * Copyright 2007 Andrea Merello <andrea.merello@gmail.com>
6 7
 *
 * Based on the r8187 driver, which is:
8
 * Copyright 2005 Andrea Merello <andrea.merello@gmail.com>, et al.
9 10 11 12 13 14
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

M
Michael Wu 已提交
15 16 17
#ifndef RTL8187_H
#define RTL8187_H

18 19
#include <linux/cache.h>

M
Michael Wu 已提交
20
#include "rtl818x.h"
21
#include "leds.h"
M
Michael Wu 已提交
22 23 24 25 26 27

#define RTL8187_EEPROM_TXPWR_BASE	0x05
#define RTL8187_EEPROM_MAC_ADDR		0x07
#define RTL8187_EEPROM_TXPWR_CHAN_1	0x16	/* 3 channels */
#define RTL8187_EEPROM_TXPWR_CHAN_6	0x1B	/* 2 channels */
#define RTL8187_EEPROM_TXPWR_CHAN_4	0x3D	/* 2 channels */
28
#define RTL8187_EEPROM_SELECT_GPIO	0x3B
M
Michael Wu 已提交
29 30 31 32 33 34 35 36

#define RTL8187_REQT_READ	0xC0
#define RTL8187_REQT_WRITE	0x40
#define RTL8187_REQ_GET_REG	0x05
#define RTL8187_REQ_SET_REG	0x05

#define RTL8187_MAX_RX		0x9C4

37 38 39
#define RFKILL_MASK_8187_89_97	0x2
#define RFKILL_MASK_8198	0x4

40 41
#define RETRY_COUNT		7

M
Michael Wu 已提交
42 43 44 45 46 47
struct rtl8187_rx_info {
	struct urb *urb;
	struct ieee80211_hw *dev;
};

struct rtl8187_rx_hdr {
48
	__le32 flags;
M
Michael Wu 已提交
49 50 51 52 53
	u8 noise;
	u8 signal;
	u8 agc;
	u8 reserved;
	__le64 mac_time;
54
} __packed;
M
Michael Wu 已提交
55

56
struct rtl8187b_rx_hdr {
M
Michael Wu 已提交
57
	__le32 flags;
58
	__le64 mac_time;
59 60
	u8 sq;
	u8 rssi;
61
	u8 agc;
62 63 64 65
	u8 flags2;
	__le16 snr_long2end;
	s8 pwdb_g12;
	u8 fot;
66
} __packed;
67 68 69 70 71

/* {rtl8187,rtl8187b}_tx_info is in skb */

struct rtl8187_tx_hdr {
	__le32 flags;
M
Michael Wu 已提交
72 73 74
	__le16 rts_duration;
	__le16 len;
	__le32 retry;
75
} __packed;
M
Michael Wu 已提交
76

77 78 79 80 81 82 83 84 85 86
struct rtl8187b_tx_hdr {
	__le32 flags;
	__le16 rts_duration;
	__le16 len;
	__le32 unused_1;
	__le16 unused_2;
	__le16 tx_duration;
	__le32 unused_3;
	__le32 retry;
	__le32 unused_4[2];
87
} __packed;
88 89 90 91 92 93

enum {
	DEVICE_RTL8187,
	DEVICE_RTL8187B
};

A
Attila Fazekas 已提交
94 95 96 97 98 99 100 101
struct rtl8187_vif {
	struct ieee80211_hw *dev;

	/* beaconing */
	struct delayed_work beacon_work;
	bool enable_beacon;
};

M
Michael Wu 已提交
102 103 104
struct rtl8187_priv {
	/* common between rtl818x drivers */
	struct rtl818x_csr *map;
M
Michael Wu 已提交
105
	const struct rtl818x_rf_ops *rf;
106
	struct ieee80211_vif *vif;
J
John W. Linville 已提交
107

108 109 110 111
	/* The mutex protects the TX loopback state.
	 * Any attempt to set channels concurrently locks the device.
	 */
	struct mutex conf_mutex;
M
Michael Wu 已提交
112 113 114 115

	/* rtl8187 specific */
	struct ieee80211_channel channels[14];
	struct ieee80211_rate rates[12];
116
	struct ieee80211_supported_band band;
M
Michael Wu 已提交
117
	struct usb_device *udev;
118
	u32 rx_conf;
119
	struct usb_anchor anchored;
120 121
	struct delayed_work work;
	struct ieee80211_hw *dev;
122
#ifdef CONFIG_RTL8187_LEDS
123
	struct rtl8187_led led_radio;
124 125 126 127 128
	struct rtl8187_led led_tx;
	struct rtl8187_led led_rx;
	struct delayed_work led_on;
	struct delayed_work led_off;
#endif
M
Michael Wu 已提交
129 130
	u16 txpwr_base;
	u8 asic_rev;
131 132 133 134 135 136
	u8 is_rtl8187b;
	enum {
		RTL8187BvB,
		RTL8187BvD,
		RTL8187BvE
	} hw_rev;
M
Michael Wu 已提交
137
	struct sk_buff_head rx_queue;
138 139
	u8 signal;
	u8 noise;
140 141
	u8 slot_time;
	u8 aifsn[4];
142
	u8 rfkill_mask;
143
	struct {
144 145 146 147
		union {
			__le64 buf;
			u8 dummy1[L1_CACHE_BYTES];
		} ____cacheline_aligned;
148
		struct sk_buff_head queue;
149
	} b_tx_status; /* This queue is used by both -b and non-b devices */
150 151 152 153 154
	struct mutex io_mutex;
	union {
		u8 bits8;
		__le16 bits16;
		__le32 bits32;
155 156
		u8 dummy2[L1_CACHE_BYTES];
	} *io_dmabuf ____cacheline_aligned;
157
	bool rfkill_off;
A
Attila Fazekas 已提交
158
	u16 seqno;
M
Michael Wu 已提交
159 160 161 162
};

void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data);

163 164
static inline u8 rtl818x_ioread8_idx(struct rtl8187_priv *priv,
				     u8 *addr, u8 idx)
M
Michael Wu 已提交
165 166 167
{
	u8 val;

168
	mutex_lock(&priv->io_mutex);
M
Michael Wu 已提交
169 170
	usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
			RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
171 172 173 174 175
			(unsigned long)addr, idx & 0x03,
			&priv->io_dmabuf->bits8, sizeof(val), HZ / 2);

	val = priv->io_dmabuf->bits8;
	mutex_unlock(&priv->io_mutex);
M
Michael Wu 已提交
176 177 178 179

	return val;
}

180 181 182 183 184 185 186
static inline u8 rtl818x_ioread8(struct rtl8187_priv *priv, u8 *addr)
{
	return rtl818x_ioread8_idx(priv, addr, 0);
}

static inline u16 rtl818x_ioread16_idx(struct rtl8187_priv *priv,
				       __le16 *addr, u8 idx)
M
Michael Wu 已提交
187 188 189
{
	__le16 val;

190
	mutex_lock(&priv->io_mutex);
M
Michael Wu 已提交
191 192
	usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
			RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
193 194 195 196 197
			(unsigned long)addr, idx & 0x03,
			&priv->io_dmabuf->bits16, sizeof(val), HZ / 2);

	val = priv->io_dmabuf->bits16;
	mutex_unlock(&priv->io_mutex);
M
Michael Wu 已提交
198 199 200 201

	return le16_to_cpu(val);
}

202 203 204 205 206 207 208
static inline u16 rtl818x_ioread16(struct rtl8187_priv *priv, __le16 *addr)
{
	return rtl818x_ioread16_idx(priv, addr, 0);
}

static inline u32 rtl818x_ioread32_idx(struct rtl8187_priv *priv,
				       __le32 *addr, u8 idx)
M
Michael Wu 已提交
209 210 211
{
	__le32 val;

212
	mutex_lock(&priv->io_mutex);
M
Michael Wu 已提交
213 214
	usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0),
			RTL8187_REQ_GET_REG, RTL8187_REQT_READ,
215 216 217 218 219
			(unsigned long)addr, idx & 0x03,
			&priv->io_dmabuf->bits32, sizeof(val), HZ / 2);

	val = priv->io_dmabuf->bits32;
	mutex_unlock(&priv->io_mutex);
M
Michael Wu 已提交
220 221 222 223

	return le32_to_cpu(val);
}

224 225 226 227 228 229 230
static inline u32 rtl818x_ioread32(struct rtl8187_priv *priv, __le32 *addr)
{
	return rtl818x_ioread32_idx(priv, addr, 0);
}

static inline void rtl818x_iowrite8_idx(struct rtl8187_priv *priv,
					u8 *addr, u8 val, u8 idx)
M
Michael Wu 已提交
231
{
232 233 234
	mutex_lock(&priv->io_mutex);

	priv->io_dmabuf->bits8 = val;
M
Michael Wu 已提交
235 236
	usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
			RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
237 238 239 240
			(unsigned long)addr, idx & 0x03,
			&priv->io_dmabuf->bits8, sizeof(val), HZ / 2);

	mutex_unlock(&priv->io_mutex);
241 242 243 244 245
}

static inline void rtl818x_iowrite8(struct rtl8187_priv *priv, u8 *addr, u8 val)
{
	rtl818x_iowrite8_idx(priv, addr, val, 0);
M
Michael Wu 已提交
246 247
}

248 249
static inline void rtl818x_iowrite16_idx(struct rtl8187_priv *priv,
					 __le16 *addr, u16 val, u8 idx)
M
Michael Wu 已提交
250
{
251
	mutex_lock(&priv->io_mutex);
M
Michael Wu 已提交
252

253
	priv->io_dmabuf->bits16 = cpu_to_le16(val);
M
Michael Wu 已提交
254 255
	usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
			RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
256 257 258 259
			(unsigned long)addr, idx & 0x03,
			&priv->io_dmabuf->bits16, sizeof(val), HZ / 2);

	mutex_unlock(&priv->io_mutex);
M
Michael Wu 已提交
260 261
}

262 263 264 265 266 267 268 269
static inline void rtl818x_iowrite16(struct rtl8187_priv *priv, __le16 *addr,
				     u16 val)
{
	rtl818x_iowrite16_idx(priv, addr, val, 0);
}

static inline void rtl818x_iowrite32_idx(struct rtl8187_priv *priv,
					 __le32 *addr, u32 val, u8 idx)
M
Michael Wu 已提交
270
{
271
	mutex_lock(&priv->io_mutex);
M
Michael Wu 已提交
272

273
	priv->io_dmabuf->bits32 = cpu_to_le32(val);
M
Michael Wu 已提交
274 275
	usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0),
			RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE,
276 277 278 279
			(unsigned long)addr, idx & 0x03,
			&priv->io_dmabuf->bits32, sizeof(val), HZ / 2);

	mutex_unlock(&priv->io_mutex);
280 281 282 283 284 285
}

static inline void rtl818x_iowrite32(struct rtl8187_priv *priv, __le32 *addr,
				     u32 val)
{
	rtl818x_iowrite32_idx(priv, addr, val, 0);
M
Michael Wu 已提交
286 287 288
}

#endif /* RTL8187_H */