2 * Definitions for RTL8187 hardware
4 * Copyright 2007 Michael Wu <flamingice@sourmilk.net>
5 * Copyright 2007 Andrea Merello <andreamrl@tiscali.it>
7 * Based on the r8187 driver, which is:
8 * Copyright 2005 Andrea Merello <andreamrl@tiscali.it>, et al.
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.
20 #define RTL8187_EEPROM_TXPWR_BASE 0x05
21 #define RTL8187_EEPROM_MAC_ADDR 0x07
22 #define RTL8187_EEPROM_TXPWR_CHAN_1 0x16 /* 3 channels */
23 #define RTL8187_EEPROM_TXPWR_CHAN_6 0x1B /* 2 channels */
24 #define RTL8187_EEPROM_TXPWR_CHAN_4 0x3D /* 2 channels */
26 #define RTL8187_REQT_READ 0xC0
27 #define RTL8187_REQT_WRITE 0x40
28 #define RTL8187_REQ_GET_REG 0x05
29 #define RTL8187_REQ_SET_REG 0x05
31 #define RTL8187_MAX_RX 0x9C4
33 struct rtl8187_rx_info
{
35 struct ieee80211_hw
*dev
;
38 struct rtl8187_rx_hdr
{
45 } __attribute__((packed
));
47 struct rtl8187_tx_hdr
{
49 #define RTL8187_TX_FLAG_NO_ENCRYPT (1 << 15)
50 #define RTL8187_TX_FLAG_MORE_FRAG (1 << 17)
51 #define RTL8187_TX_FLAG_CTS (1 << 18)
52 #define RTL8187_TX_FLAG_RTS (1 << 23)
56 } __attribute__((packed
));
59 /* common between rtl818x drivers */
60 struct rtl818x_csr
*map
;
61 const struct rtl818x_rf_ops
*rf
;
62 struct ieee80211_vif
*vif
;
65 /* rtl8187 specific */
66 struct ieee80211_channel channels
[14];
67 struct ieee80211_rate rates
[12];
68 struct ieee80211_supported_band band
;
69 struct usb_device
*udev
;
73 struct sk_buff_head rx_queue
;
76 void rtl8187_write_phy(struct ieee80211_hw
*dev
, u8 addr
, u32 data
);
78 static inline u8
rtl818x_ioread8(struct rtl8187_priv
*priv
, u8
*addr
)
82 usb_control_msg(priv
->udev
, usb_rcvctrlpipe(priv
->udev
, 0),
83 RTL8187_REQ_GET_REG
, RTL8187_REQT_READ
,
84 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
89 static inline u16
rtl818x_ioread16(struct rtl8187_priv
*priv
, __le16
*addr
)
93 usb_control_msg(priv
->udev
, usb_rcvctrlpipe(priv
->udev
, 0),
94 RTL8187_REQ_GET_REG
, RTL8187_REQT_READ
,
95 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
97 return le16_to_cpu(val
);
100 static inline u32
rtl818x_ioread32(struct rtl8187_priv
*priv
, __le32
*addr
)
104 usb_control_msg(priv
->udev
, usb_rcvctrlpipe(priv
->udev
, 0),
105 RTL8187_REQ_GET_REG
, RTL8187_REQT_READ
,
106 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
108 return le32_to_cpu(val
);
111 static inline void rtl818x_iowrite8(struct rtl8187_priv
*priv
,
114 usb_control_msg(priv
->udev
, usb_sndctrlpipe(priv
->udev
, 0),
115 RTL8187_REQ_SET_REG
, RTL8187_REQT_WRITE
,
116 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
119 static inline void rtl818x_iowrite16(struct rtl8187_priv
*priv
,
120 __le16
*addr
, u16 val
)
122 __le16 buf
= cpu_to_le16(val
);
124 usb_control_msg(priv
->udev
, usb_sndctrlpipe(priv
->udev
, 0),
125 RTL8187_REQ_SET_REG
, RTL8187_REQT_WRITE
,
126 (unsigned long)addr
, 0, &buf
, sizeof(buf
), HZ
/ 2);
129 static inline void rtl818x_iowrite32(struct rtl8187_priv
*priv
,
130 __le32
*addr
, u32 val
)
132 __le32 buf
= cpu_to_le32(val
);
134 usb_control_msg(priv
->udev
, usb_sndctrlpipe(priv
->udev
, 0),
135 RTL8187_REQ_SET_REG
, RTL8187_REQT_WRITE
,
136 (unsigned long)addr
, 0, &buf
, sizeof(buf
), HZ
/ 2);
139 #endif /* RTL8187_H */