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_info
{
48 struct ieee80211_tx_control
*control
;
50 struct ieee80211_hw
*dev
;
53 struct rtl8187_tx_hdr
{
55 #define RTL8187_TX_FLAG_NO_ENCRYPT (1 << 15)
56 #define RTL8187_TX_FLAG_MORE_FRAG (1 << 17)
57 #define RTL8187_TX_FLAG_CTS (1 << 18)
58 #define RTL8187_TX_FLAG_RTS (1 << 23)
62 } __attribute__((packed
));
65 /* common between rtl818x drivers */
66 struct rtl818x_csr
*map
;
67 const struct rtl818x_rf_ops
*rf
;
68 struct ieee80211_vif
*vif
;
71 /* rtl8187 specific */
72 struct ieee80211_channel channels
[14];
73 struct ieee80211_rate rates
[12];
74 struct ieee80211_supported_band band
;
75 struct usb_device
*udev
;
79 struct sk_buff_head rx_queue
;
82 void rtl8187_write_phy(struct ieee80211_hw
*dev
, u8 addr
, u32 data
);
84 static inline u8
rtl818x_ioread8(struct rtl8187_priv
*priv
, u8
*addr
)
88 usb_control_msg(priv
->udev
, usb_rcvctrlpipe(priv
->udev
, 0),
89 RTL8187_REQ_GET_REG
, RTL8187_REQT_READ
,
90 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
95 static inline u16
rtl818x_ioread16(struct rtl8187_priv
*priv
, __le16
*addr
)
99 usb_control_msg(priv
->udev
, usb_rcvctrlpipe(priv
->udev
, 0),
100 RTL8187_REQ_GET_REG
, RTL8187_REQT_READ
,
101 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
103 return le16_to_cpu(val
);
106 static inline u32
rtl818x_ioread32(struct rtl8187_priv
*priv
, __le32
*addr
)
110 usb_control_msg(priv
->udev
, usb_rcvctrlpipe(priv
->udev
, 0),
111 RTL8187_REQ_GET_REG
, RTL8187_REQT_READ
,
112 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
114 return le32_to_cpu(val
);
117 static inline void rtl818x_iowrite8(struct rtl8187_priv
*priv
,
120 usb_control_msg(priv
->udev
, usb_sndctrlpipe(priv
->udev
, 0),
121 RTL8187_REQ_SET_REG
, RTL8187_REQT_WRITE
,
122 (unsigned long)addr
, 0, &val
, sizeof(val
), HZ
/ 2);
125 static inline void rtl818x_iowrite16(struct rtl8187_priv
*priv
,
126 __le16
*addr
, u16 val
)
128 __le16 buf
= cpu_to_le16(val
);
130 usb_control_msg(priv
->udev
, usb_sndctrlpipe(priv
->udev
, 0),
131 RTL8187_REQ_SET_REG
, RTL8187_REQT_WRITE
,
132 (unsigned long)addr
, 0, &buf
, sizeof(buf
), HZ
/ 2);
135 static inline void rtl818x_iowrite32(struct rtl8187_priv
*priv
,
136 __le32
*addr
, u32 val
)
138 __le32 buf
= cpu_to_le32(val
);
140 usb_control_msg(priv
->udev
, usb_sndctrlpipe(priv
->udev
, 0),
141 RTL8187_REQ_SET_REG
, RTL8187_REQT_WRITE
,
142 (unsigned long)addr
, 0, &buf
, sizeof(buf
), HZ
/ 2);
145 #endif /* RTL8187_H */