John W. Linville | 0aec00a | 2007-06-12 22:11:42 -0400 | [diff] [blame] | 1 | /* |
| 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 Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 15 | #ifndef RTL8187_H |
| 16 | #define RTL8187_H |
| 17 | |
| 18 | #include "rtl818x.h" |
| 19 | |
| 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 */ |
| 25 | |
| 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 |
| 30 | |
| 31 | #define RTL8187_MAX_RX 0x9C4 |
| 32 | |
| 33 | struct rtl8187_rx_info { |
| 34 | struct urb *urb; |
| 35 | struct ieee80211_hw *dev; |
| 36 | }; |
| 37 | |
| 38 | struct rtl8187_rx_hdr { |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 39 | __le32 flags; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 40 | u8 noise; |
| 41 | u8 signal; |
| 42 | u8 agc; |
| 43 | u8 reserved; |
| 44 | __le64 mac_time; |
| 45 | } __attribute__((packed)); |
| 46 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 47 | struct rtl8187b_rx_hdr { |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 48 | __le32 flags; |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 49 | __le64 mac_time; |
| 50 | u8 noise; |
| 51 | u8 signal; |
| 52 | u8 agc; |
| 53 | u8 reserved; |
| 54 | __le32 unused; |
| 55 | } __attribute__((packed)); |
| 56 | |
| 57 | /* {rtl8187,rtl8187b}_tx_info is in skb */ |
| 58 | |
| 59 | /* Tx flags are common between rtl8187 and rtl8187b */ |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 60 | #define RTL8187_TX_FLAG_NO_ENCRYPT (1 << 15) |
| 61 | #define RTL8187_TX_FLAG_MORE_FRAG (1 << 17) |
| 62 | #define RTL8187_TX_FLAG_CTS (1 << 18) |
| 63 | #define RTL8187_TX_FLAG_RTS (1 << 23) |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 64 | |
| 65 | struct rtl8187_tx_hdr { |
| 66 | __le32 flags; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 67 | __le16 rts_duration; |
| 68 | __le16 len; |
| 69 | __le32 retry; |
| 70 | } __attribute__((packed)); |
| 71 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 72 | struct rtl8187b_tx_hdr { |
| 73 | __le32 flags; |
| 74 | __le16 rts_duration; |
| 75 | __le16 len; |
| 76 | __le32 unused_1; |
| 77 | __le16 unused_2; |
| 78 | __le16 tx_duration; |
| 79 | __le32 unused_3; |
| 80 | __le32 retry; |
| 81 | __le32 unused_4[2]; |
| 82 | } __attribute__((packed)); |
| 83 | |
| 84 | enum { |
| 85 | DEVICE_RTL8187, |
| 86 | DEVICE_RTL8187B |
| 87 | }; |
| 88 | |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 89 | struct rtl8187_priv { |
| 90 | /* common between rtl818x drivers */ |
| 91 | struct rtl818x_csr *map; |
Michael Wu | f653211 | 2007-10-14 14:43:16 -0400 | [diff] [blame] | 92 | const struct rtl818x_rf_ops *rf; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 93 | struct ieee80211_vif *vif; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 94 | int mode; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 95 | |
| 96 | /* rtl8187 specific */ |
| 97 | struct ieee80211_channel channels[14]; |
| 98 | struct ieee80211_rate rates[12]; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 99 | struct ieee80211_supported_band band; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 100 | struct usb_device *udev; |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 101 | u32 rx_conf; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 102 | u16 txpwr_base; |
| 103 | u8 asic_rev; |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 104 | u8 is_rtl8187b; |
| 105 | enum { |
| 106 | RTL8187BvB, |
| 107 | RTL8187BvD, |
| 108 | RTL8187BvE |
| 109 | } hw_rev; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 110 | struct sk_buff_head rx_queue; |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 111 | u8 signal; |
| 112 | u8 quality; |
| 113 | u8 noise; |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data); |
| 117 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 118 | static inline u8 rtl818x_ioread8_idx(struct rtl8187_priv *priv, |
| 119 | u8 *addr, u8 idx) |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 120 | { |
| 121 | u8 val; |
| 122 | |
| 123 | usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0), |
| 124 | RTL8187_REQ_GET_REG, RTL8187_REQT_READ, |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 125 | (unsigned long)addr, idx & 0x03, &val, |
| 126 | sizeof(val), HZ / 2); |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 127 | |
| 128 | return val; |
| 129 | } |
| 130 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 131 | static inline u8 rtl818x_ioread8(struct rtl8187_priv *priv, u8 *addr) |
| 132 | { |
| 133 | return rtl818x_ioread8_idx(priv, addr, 0); |
| 134 | } |
| 135 | |
| 136 | static inline u16 rtl818x_ioread16_idx(struct rtl8187_priv *priv, |
| 137 | __le16 *addr, u8 idx) |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 138 | { |
| 139 | __le16 val; |
| 140 | |
| 141 | usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0), |
| 142 | RTL8187_REQ_GET_REG, RTL8187_REQT_READ, |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 143 | (unsigned long)addr, idx & 0x03, &val, |
| 144 | sizeof(val), HZ / 2); |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 145 | |
| 146 | return le16_to_cpu(val); |
| 147 | } |
| 148 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 149 | static inline u16 rtl818x_ioread16(struct rtl8187_priv *priv, __le16 *addr) |
| 150 | { |
| 151 | return rtl818x_ioread16_idx(priv, addr, 0); |
| 152 | } |
| 153 | |
| 154 | static inline u32 rtl818x_ioread32_idx(struct rtl8187_priv *priv, |
| 155 | __le32 *addr, u8 idx) |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 156 | { |
| 157 | __le32 val; |
| 158 | |
| 159 | usb_control_msg(priv->udev, usb_rcvctrlpipe(priv->udev, 0), |
| 160 | RTL8187_REQ_GET_REG, RTL8187_REQT_READ, |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 161 | (unsigned long)addr, idx & 0x03, &val, |
| 162 | sizeof(val), HZ / 2); |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 163 | |
| 164 | return le32_to_cpu(val); |
| 165 | } |
| 166 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 167 | static inline u32 rtl818x_ioread32(struct rtl8187_priv *priv, __le32 *addr) |
| 168 | { |
| 169 | return rtl818x_ioread32_idx(priv, addr, 0); |
| 170 | } |
| 171 | |
| 172 | static inline void rtl818x_iowrite8_idx(struct rtl8187_priv *priv, |
| 173 | u8 *addr, u8 val, u8 idx) |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 174 | { |
| 175 | usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0), |
| 176 | RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE, |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 177 | (unsigned long)addr, idx & 0x03, &val, |
| 178 | sizeof(val), HZ / 2); |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 179 | } |
| 180 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 181 | static inline void rtl818x_iowrite8(struct rtl8187_priv *priv, u8 *addr, u8 val) |
| 182 | { |
| 183 | rtl818x_iowrite8_idx(priv, addr, val, 0); |
| 184 | } |
| 185 | |
| 186 | static inline void rtl818x_iowrite16_idx(struct rtl8187_priv *priv, |
| 187 | __le16 *addr, u16 val, u8 idx) |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 188 | { |
| 189 | __le16 buf = cpu_to_le16(val); |
| 190 | |
| 191 | usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0), |
| 192 | RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE, |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 193 | (unsigned long)addr, idx & 0x03, &buf, sizeof(buf), |
| 194 | HZ / 2); |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 195 | } |
| 196 | |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 197 | static inline void rtl818x_iowrite16(struct rtl8187_priv *priv, __le16 *addr, |
| 198 | u16 val) |
| 199 | { |
| 200 | rtl818x_iowrite16_idx(priv, addr, val, 0); |
| 201 | } |
| 202 | |
| 203 | static inline void rtl818x_iowrite32_idx(struct rtl8187_priv *priv, |
| 204 | __le32 *addr, u32 val, u8 idx) |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 205 | { |
| 206 | __le32 buf = cpu_to_le32(val); |
| 207 | |
| 208 | usb_control_msg(priv->udev, usb_sndctrlpipe(priv->udev, 0), |
| 209 | RTL8187_REQ_SET_REG, RTL8187_REQT_WRITE, |
Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 210 | (unsigned long)addr, idx & 0x03, &buf, sizeof(buf), |
| 211 | HZ / 2); |
| 212 | } |
| 213 | |
| 214 | static inline void rtl818x_iowrite32(struct rtl8187_priv *priv, __le32 *addr, |
| 215 | u32 val) |
| 216 | { |
| 217 | rtl818x_iowrite32_idx(priv, addr, val, 0); |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | #endif /* RTL8187_H */ |