| Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| John W. Linville | 0aec00a | 2007-06-12 22:11:42 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Definitions for RTL8187 hardware |
| 4 | * |
| 5 | * Copyright 2007 Michael Wu <flamingice@sourmilk.net> |
| Andrea Merello | 93ba2a8 | 2013-08-26 13:53:30 +0200 | [diff] [blame] | 6 | * Copyright 2007 Andrea Merello <andrea.merello@gmail.com> |
| John W. Linville | 0aec00a | 2007-06-12 22:11:42 -0400 | [diff] [blame] | 7 | * |
| 8 | * Based on the r8187 driver, which is: |
| Andrea Merello | 93ba2a8 | 2013-08-26 13:53:30 +0200 | [diff] [blame] | 9 | * Copyright 2005 Andrea Merello <andrea.merello@gmail.com>, et al. |
| John W. Linville | 0aec00a | 2007-06-12 22:11:42 -0400 | [diff] [blame] | 10 | */ |
| 11 | |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 12 | #ifndef RTL8187_H |
| 13 | #define RTL8187_H |
| 14 | |
| Stanislaw Gruszka | b6213e4 | 2014-02-10 22:38:28 +0100 | [diff] [blame] | 15 | #include <linux/cache.h> |
| 16 | |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 17 | #include "rtl818x.h" |
| John W. Linville | 3cfeb0c | 2010-12-20 15:16:53 -0500 | [diff] [blame] | 18 | #include "leds.h" |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 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 */ |
| Larry Finger | 70d5713 | 2009-12-05 19:25:22 -0600 | [diff] [blame] | 25 | #define RTL8187_EEPROM_SELECT_GPIO 0x3B |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 26 | |
| 27 | #define RTL8187_REQT_READ 0xC0 |
| 28 | #define RTL8187_REQT_WRITE 0x40 |
| 29 | #define RTL8187_REQ_GET_REG 0x05 |
| 30 | #define RTL8187_REQ_SET_REG 0x05 |
| 31 | |
| 32 | #define RTL8187_MAX_RX 0x9C4 |
| 33 | |
| Larry Finger | 70d5713 | 2009-12-05 19:25:22 -0600 | [diff] [blame] | 34 | #define RFKILL_MASK_8187_89_97 0x2 |
| 35 | #define RFKILL_MASK_8198 0x4 |
| 36 | |
| Larry Finger | 6410db5 | 2011-02-28 23:36:09 -0600 | [diff] [blame] | 37 | #define RETRY_COUNT 7 |
| 38 | |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 39 | struct rtl8187_rx_info { |
| 40 | struct urb *urb; |
| 41 | struct ieee80211_hw *dev; |
| 42 | }; |
| 43 | |
| 44 | struct rtl8187_rx_hdr { |
| Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 45 | __le32 flags; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 46 | u8 noise; |
| 47 | u8 signal; |
| 48 | u8 agc; |
| 49 | u8 reserved; |
| 50 | __le64 mac_time; |
| Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 51 | } __packed; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 52 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 53 | struct rtl8187b_rx_hdr { |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 54 | __le32 flags; |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 55 | __le64 mac_time; |
| Larry Finger | 0ccd58f | 2008-07-28 22:25:08 -0500 | [diff] [blame] | 56 | u8 sq; |
| 57 | u8 rssi; |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 58 | u8 agc; |
| Larry Finger | 0ccd58f | 2008-07-28 22:25:08 -0500 | [diff] [blame] | 59 | u8 flags2; |
| 60 | __le16 snr_long2end; |
| 61 | s8 pwdb_g12; |
| 62 | u8 fot; |
| Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 63 | } __packed; |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 64 | |
| 65 | /* {rtl8187,rtl8187b}_tx_info is in skb */ |
| 66 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 67 | struct rtl8187_tx_hdr { |
| 68 | __le32 flags; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 69 | __le16 rts_duration; |
| 70 | __le16 len; |
| 71 | __le32 retry; |
| Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 72 | } __packed; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 73 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 74 | struct rtl8187b_tx_hdr { |
| 75 | __le32 flags; |
| 76 | __le16 rts_duration; |
| 77 | __le16 len; |
| 78 | __le32 unused_1; |
| 79 | __le16 unused_2; |
| 80 | __le16 tx_duration; |
| 81 | __le32 unused_3; |
| 82 | __le32 retry; |
| 83 | __le32 unused_4[2]; |
| Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 84 | } __packed; |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 85 | |
| 86 | enum { |
| 87 | DEVICE_RTL8187, |
| 88 | DEVICE_RTL8187B |
| 89 | }; |
| 90 | |
| Attila Fazekas | 41b58f1 | 2012-02-23 19:50:35 +0100 | [diff] [blame] | 91 | struct rtl8187_vif { |
| 92 | struct ieee80211_hw *dev; |
| 93 | |
| 94 | /* beaconing */ |
| 95 | struct delayed_work beacon_work; |
| 96 | bool enable_beacon; |
| 97 | }; |
| 98 | |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 99 | struct rtl8187_priv { |
| 100 | /* common between rtl818x drivers */ |
| 101 | struct rtl818x_csr *map; |
| Michael Wu | f653211 | 2007-10-14 14:43:16 -0400 | [diff] [blame] | 102 | const struct rtl818x_rf_ops *rf; |
| Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 103 | struct ieee80211_vif *vif; |
| John W. Linville | d30506e | 2009-12-22 18:13:05 -0500 | [diff] [blame] | 104 | |
| Larry Finger | 7dcdd07 | 2008-07-31 19:30:48 -0500 | [diff] [blame] | 105 | /* The mutex protects the TX loopback state. |
| 106 | * Any attempt to set channels concurrently locks the device. |
| 107 | */ |
| 108 | struct mutex conf_mutex; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 109 | |
| 110 | /* rtl8187 specific */ |
| 111 | struct ieee80211_channel channels[14]; |
| 112 | struct ieee80211_rate rates[12]; |
| Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 113 | struct ieee80211_supported_band band; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 114 | struct usb_device *udev; |
| Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 115 | u32 rx_conf; |
| Larry Finger | c1db52b | 2008-12-09 23:34:27 -0600 | [diff] [blame] | 116 | struct usb_anchor anchored; |
| Larry Finger | 2f47690 | 2009-01-23 11:40:22 -0600 | [diff] [blame] | 117 | struct delayed_work work; |
| 118 | struct ieee80211_hw *dev; |
| Larry Finger | a027087 | 2009-04-16 19:56:38 -0500 | [diff] [blame] | 119 | #ifdef CONFIG_RTL8187_LEDS |
| Herton Ronaldo Krzesinski | 49d7590 | 2009-12-09 14:56:13 -0200 | [diff] [blame] | 120 | struct rtl8187_led led_radio; |
| Larry Finger | a027087 | 2009-04-16 19:56:38 -0500 | [diff] [blame] | 121 | struct rtl8187_led led_tx; |
| 122 | struct rtl8187_led led_rx; |
| 123 | struct delayed_work led_on; |
| 124 | struct delayed_work led_off; |
| 125 | #endif |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 126 | u16 txpwr_base; |
| 127 | u8 asic_rev; |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 128 | u8 is_rtl8187b; |
| 129 | enum { |
| 130 | RTL8187BvB, |
| 131 | RTL8187BvD, |
| 132 | RTL8187BvE |
| 133 | } hw_rev; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 134 | struct sk_buff_head rx_queue; |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 135 | u8 signal; |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 136 | u8 noise; |
| Herton Ronaldo Krzesinski | b4572a9 | 2008-11-13 10:39:15 -0500 | [diff] [blame] | 137 | u8 slot_time; |
| 138 | u8 aifsn[4]; |
| Larry Finger | 70d5713 | 2009-12-05 19:25:22 -0600 | [diff] [blame] | 139 | u8 rfkill_mask; |
| Herton Ronaldo Krzesinski | 3517afd | 2008-11-13 10:39:16 -0500 | [diff] [blame] | 140 | struct { |
| Stanislaw Gruszka | b6213e4 | 2014-02-10 22:38:28 +0100 | [diff] [blame] | 141 | union { |
| 142 | __le64 buf; |
| 143 | u8 dummy1[L1_CACHE_BYTES]; |
| 144 | } ____cacheline_aligned; |
| Herton Ronaldo Krzesinski | 3517afd | 2008-11-13 10:39:16 -0500 | [diff] [blame] | 145 | struct sk_buff_head queue; |
| Larry Finger | 2f47690 | 2009-01-23 11:40:22 -0600 | [diff] [blame] | 146 | } b_tx_status; /* This queue is used by both -b and non-b devices */ |
| John W. Linville | 9be6f0d | 2009-05-06 13:57:27 -0400 | [diff] [blame] | 147 | struct mutex io_mutex; |
| 148 | union { |
| 149 | u8 bits8; |
| 150 | __le16 bits16; |
| 151 | __le32 bits32; |
| Stanislaw Gruszka | b6213e4 | 2014-02-10 22:38:28 +0100 | [diff] [blame] | 152 | u8 dummy2[L1_CACHE_BYTES]; |
| 153 | } *io_dmabuf ____cacheline_aligned; |
| Herton Ronaldo Krzesinski | ca9152e | 2009-08-26 13:54:09 -0300 | [diff] [blame] | 154 | bool rfkill_off; |
| Attila Fazekas | 41b58f1 | 2012-02-23 19:50:35 +0100 | [diff] [blame] | 155 | u16 seqno; |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | void rtl8187_write_phy(struct ieee80211_hw *dev, u8 addr, u32 data); |
| 159 | |
| Denys Vlasenko | aae555d | 2016-04-25 16:17:52 +0200 | [diff] [blame] | 160 | u8 rtl818x_ioread8_idx(struct rtl8187_priv *priv, |
| 161 | u8 *addr, u8 idx); |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 162 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 163 | static inline u8 rtl818x_ioread8(struct rtl8187_priv *priv, u8 *addr) |
| 164 | { |
| 165 | return rtl818x_ioread8_idx(priv, addr, 0); |
| 166 | } |
| 167 | |
| Denys Vlasenko | aae555d | 2016-04-25 16:17:52 +0200 | [diff] [blame] | 168 | u16 rtl818x_ioread16_idx(struct rtl8187_priv *priv, |
| 169 | __le16 *addr, u8 idx); |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 170 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 171 | static inline u16 rtl818x_ioread16(struct rtl8187_priv *priv, __le16 *addr) |
| 172 | { |
| 173 | return rtl818x_ioread16_idx(priv, addr, 0); |
| 174 | } |
| 175 | |
| Denys Vlasenko | aae555d | 2016-04-25 16:17:52 +0200 | [diff] [blame] | 176 | u32 rtl818x_ioread32_idx(struct rtl8187_priv *priv, |
| 177 | __le32 *addr, u8 idx); |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 178 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 179 | static inline u32 rtl818x_ioread32(struct rtl8187_priv *priv, __le32 *addr) |
| 180 | { |
| 181 | return rtl818x_ioread32_idx(priv, addr, 0); |
| 182 | } |
| 183 | |
| Denys Vlasenko | aae555d | 2016-04-25 16:17:52 +0200 | [diff] [blame] | 184 | void rtl818x_iowrite8_idx(struct rtl8187_priv *priv, |
| 185 | u8 *addr, u8 val, u8 idx); |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 186 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 187 | static inline void rtl818x_iowrite8(struct rtl8187_priv *priv, u8 *addr, u8 val) |
| 188 | { |
| 189 | rtl818x_iowrite8_idx(priv, addr, val, 0); |
| 190 | } |
| 191 | |
| Denys Vlasenko | aae555d | 2016-04-25 16:17:52 +0200 | [diff] [blame] | 192 | void rtl818x_iowrite16_idx(struct rtl8187_priv *priv, |
| 193 | __le16 *addr, u16 val, u8 idx); |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 194 | |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 195 | static inline void rtl818x_iowrite16(struct rtl8187_priv *priv, __le16 *addr, |
| 196 | u16 val) |
| 197 | { |
| 198 | rtl818x_iowrite16_idx(priv, addr, val, 0); |
| 199 | } |
| 200 | |
| Denys Vlasenko | aae555d | 2016-04-25 16:17:52 +0200 | [diff] [blame] | 201 | void rtl818x_iowrite32_idx(struct rtl8187_priv *priv, |
| 202 | __le32 *addr, u32 val, u8 idx); |
| Hin-Tak Leung | c44ac0b | 2008-07-08 12:27:54 +0100 | [diff] [blame] | 203 | |
| 204 | static inline void rtl818x_iowrite32(struct rtl8187_priv *priv, __le32 *addr, |
| 205 | u32 val) |
| 206 | { |
| 207 | rtl818x_iowrite32_idx(priv, addr, val, 0); |
| Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | #endif /* RTL8187_H */ |