rtwnreg.h revision 1.3 1 1.3 nat /* $NetBSD: rtwnreg.h,v 1.3 2020/04/16 17:18:27 nat Exp $ */
2 1.1 thorpej /* $OpenBSD: r92creg.h,v 1.16 2017/09/22 13:41:56 kevlo Exp $ */
3 1.1 thorpej
4 1.1 thorpej /*-
5 1.1 thorpej * Copyright (c) 2010 Damien Bergamini <damien.bergamini (at) free.fr>
6 1.1 thorpej * Copyright (c) 2015 Stefan Sperling <stsp (at) openbsd.org>
7 1.1 thorpej *
8 1.1 thorpej * Permission to use, copy, modify, and distribute this software for any
9 1.1 thorpej * purpose with or without fee is hereby granted, provided that the above
10 1.1 thorpej * copyright notice and this permission notice appear in all copies.
11 1.1 thorpej *
12 1.1 thorpej * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 1.1 thorpej * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 1.1 thorpej * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 1.1 thorpej * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 1.1 thorpej * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 1.1 thorpej * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 1.1 thorpej * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 1.1 thorpej */
20 1.1 thorpej
21 1.1 thorpej #ifndef _DEV_IC_RTWNREG_H_
22 1.1 thorpej #define _DEV_IC_RTWNREG_H_
23 1.1 thorpej
24 1.1 thorpej #define R92C_MAX_CHAINS 2
25 1.1 thorpej #define R92C_MAX_TX_PWR 0x3f
26 1.1 thorpej #define R92C_H2C_NBOX 4
27 1.1 thorpej
28 1.1 thorpej /*
29 1.1 thorpej * MAC registers.
30 1.1 thorpej */
31 1.1 thorpej /* System Configuration. */
32 1.1 thorpej #define R92C_SYS_ISO_CTRL 0x000
33 1.1 thorpej #define R92C_SYS_FUNC_EN 0x002
34 1.1 thorpej #define R92C_APS_FSMCO 0x004
35 1.1 thorpej #define R92C_SYS_CLKR 0x008
36 1.1 thorpej #define R92C_AFE_MISC 0x010
37 1.1 thorpej #define R92C_SPS0_CTRL 0x011
38 1.1 thorpej #define R92C_SYS_SWR_CTRL2 0x014
39 1.1 thorpej #define R92C_SPS_OCP_CFG 0x018
40 1.1 thorpej #define R92C_RSV_CTRL 0x01c
41 1.1 thorpej #define R92C_RF_CTRL 0x01f
42 1.1 thorpej #define R92C_LDOA15_CTRL 0x020
43 1.1 thorpej #define R92C_LDOV12D_CTRL 0x021
44 1.1 thorpej #define R92C_LDOHCI12_CTRL 0x022
45 1.1 thorpej #define R92C_LPLDO_CTRL 0x023
46 1.1 thorpej #define R92C_AFE_XTAL_CTRL 0x024
47 1.1 thorpej #define R92C_AFE_PLL_CTRL 0x028
48 1.1 thorpej #define R92C_AFE_CTRL3 0x02c
49 1.1 thorpej #define R92C_EFUSE_CTRL 0x030
50 1.1 thorpej #define R92C_EFUSE_TEST 0x034
51 1.1 thorpej #define R92C_PWR_DATA 0x038
52 1.1 thorpej #define R92C_CAL_TIMER 0x03c
53 1.1 thorpej #define R92C_ACLK_MON 0x03e
54 1.1 thorpej #define R92C_GPIO_MUXCFG 0x040
55 1.1 thorpej #define R92C_GPIO_IO_SEL 0x042
56 1.1 thorpej #define R92C_MAC_PINMUX_CFG 0x043
57 1.1 thorpej #define R92C_GPIO_PIN_CTRL 0x044
58 1.1 thorpej #define R92C_GPIO_INTM 0x048
59 1.1 thorpej #define R92C_LEDCFG0 0x04c
60 1.1 thorpej #define R92C_LEDCFG1 0x04d
61 1.1 thorpej #define R92C_LEDCFG2 0x04e
62 1.1 thorpej #define R92C_LEDCFG3 0x04f
63 1.1 thorpej #define R92C_FSIMR 0x050
64 1.1 thorpej #define R92C_FSISR 0x054
65 1.1 thorpej #define R92C_HSIMR 0x058
66 1.1 thorpej #define R92C_HSISR 0x05c
67 1.1 thorpej #define R92C_PAD_CTRL 0x064
68 1.1 thorpej #define R92C_AFE_CTRL4 0x078
69 1.1 thorpej #define R92C_MCUFWDL 0x080
70 1.1 thorpej #define R92C_HMEBOX_EXT(idx) (0x088 + (idx) * 2)
71 1.1 thorpej #define R88E_HIMR 0x0b0
72 1.1 thorpej #define R88E_HISR 0x0b4
73 1.1 thorpej #define R88E_HIMRE 0x0b8
74 1.1 thorpej #define R88E_HISRE 0x0bc
75 1.1 thorpej #define R92C_EFUSE_ACCESS 0x0cf
76 1.1 thorpej #define R92C_BIST_SCAN 0x0d0
77 1.1 thorpej #define R92C_BIST_RPT 0x0d4
78 1.1 thorpej #define R92C_BIST_ROM_RPT 0x0d8
79 1.1 thorpej #define R92C_USB_SIE_INTF 0x0e0
80 1.1 thorpej #define R92C_PCIE_MIO_INTF 0x0e4
81 1.1 thorpej #define R92C_PCIE_MIO_INTD 0x0e8
82 1.1 thorpej #define R92C_HPON_FSM 0x0ec
83 1.1 thorpej #define R92C_SYS_CFG 0x0f0
84 1.1 thorpej /* MAC General Configuration. */
85 1.1 thorpej #define R92C_CR 0x100
86 1.1 thorpej #define R92C_MSR 0x102
87 1.1 thorpej #define R92C_PBP 0x104
88 1.1 thorpej #define R92C_TRXDMA_CTRL 0x10c
89 1.1 thorpej #define R92C_TRXFF_BNDY 0x114
90 1.1 thorpej #define R92C_TRXFF_STATUS 0x118
91 1.1 thorpej #define R92C_RXFF_PTR 0x11c
92 1.1 thorpej #define R92C_HIMR 0x120
93 1.1 thorpej #define R92C_HISR 0x124
94 1.1 thorpej #define R92C_HIMRE 0x128
95 1.1 thorpej #define R92C_HISRE 0x12c
96 1.1 thorpej #define R92C_CPWM 0x12f
97 1.1 thorpej #define R92C_FWIMR 0x130
98 1.1 thorpej #define R92C_FWISR 0x134
99 1.1 thorpej #define R92C_PKTBUF_DBG_CTRL 0x140
100 1.1 thorpej #define R92C_PKTBUF_DBG_DATA_L 0x144
101 1.1 thorpej #define R92C_PKTBUF_DBG_DATA_H 0x148
102 1.1 thorpej #define R92C_TC0_CTRL(i) (0x150 + (i) * 4)
103 1.1 thorpej #define R92C_TCUNIT_BASE 0x164
104 1.1 thorpej #define R92C_MBIST_START 0x174
105 1.1 thorpej #define R92C_MBIST_DONE 0x178
106 1.1 thorpej #define R92C_MBIST_FAIL 0x17c
107 1.1 thorpej #define R92C_C2HEVT_MSG_NORMAL 0x1a0
108 1.1 thorpej #define R92C_C2HEVT_MSG_TEST 0x1b8
109 1.1 thorpej #define R92C_C2HEVT_CLEAR 0x1bf
110 1.1 thorpej #define R92C_MCUTST_1 0x1c0
111 1.1 thorpej #define R92C_FMETHR 0x1c8
112 1.1 thorpej #define R92C_HMETFR 0x1cc
113 1.1 thorpej #define R92C_HMEBOX(idx) (0x1d0 + (idx) * 4)
114 1.1 thorpej #define R92C_LLT_INIT 0x1e0
115 1.1 thorpej #define R92C_BB_ACCESS_CTRL 0x1e8
116 1.1 thorpej #define R92C_BB_ACCESS_DATA 0x1ec
117 1.1 thorpej #define R88E_HMEBOX_EXT(idx) (0x1f0 + (idx) * 4)
118 1.1 thorpej #define R92E_HMEBOX_EXT(idx) (0x1f0 + (idx) * 4)
119 1.1 thorpej /* Tx DMA Configuration. */
120 1.1 thorpej #define R92C_RQPN 0x200
121 1.1 thorpej #define R92C_FIFOPAGE 0x204
122 1.1 thorpej #define R92C_TDECTRL 0x208
123 1.1 thorpej #define R92C_TXDMA_OFFSET_CHK 0x20c
124 1.1 thorpej #define R92C_TXDMA_STATUS 0x210
125 1.1 thorpej #define R92C_RQPN_NPQ 0x214
126 1.1 thorpej /* Rx DMA Configuration. */
127 1.1 thorpej #define R92C_RXDMA_AGG_PG_TH 0x280
128 1.1 thorpej #define R92C_RXPKT_NUM 0x284
129 1.1 thorpej #define R92C_RXDMA_STATUS 0x288
130 1.1 thorpej
131 1.1 thorpej #define R92C_PCIE_CTRL_REG 0x300
132 1.1 thorpej #define R92C_INT_MIG 0x304
133 1.1 thorpej #define R92C_BCNQ_DESA 0x308
134 1.1 thorpej #define R92C_HQ_DESA 0x310
135 1.1 thorpej #define R92C_MGQ_DESA 0x318
136 1.1 thorpej #define R92C_VOQ_DESA 0x320
137 1.1 thorpej #define R92C_VIQ_DESA 0x328
138 1.1 thorpej #define R92C_BEQ_DESA 0x330
139 1.1 thorpej #define R92C_BKQ_DESA 0x338
140 1.1 thorpej #define R92C_RX_DESA 0x340
141 1.1 thorpej #define R92C_DBI 0x348
142 1.1 thorpej #define R92C_MDIO 0x354
143 1.1 thorpej #define R92C_DBG_SEL 0x360
144 1.1 thorpej #define R92C_PCIE_HRPWM 0x361
145 1.1 thorpej #define R92C_PCIE_HCPWM 0x363
146 1.1 thorpej #define R92C_UART_CTRL 0x364
147 1.1 thorpej #define R92C_UART_TX_DES 0x370
148 1.1 thorpej #define R92C_UART_RX_DES 0x378
149 1.1 thorpej
150 1.1 thorpej #define R92C_VOQ_INFORMATION 0x0400
151 1.1 thorpej #define R92C_VIQ_INFORMATION 0x0404
152 1.1 thorpej #define R92C_BEQ_INFORMATION 0x0408
153 1.1 thorpej #define R92C_BKQ_INFORMATION 0x040C
154 1.1 thorpej #define R92C_MGQ_INFORMATION 0x0410
155 1.1 thorpej #define R92C_HGQ_INFORMATION 0x0414
156 1.1 thorpej #define R92C_BCNQ_INFORMATION 0x0418
157 1.1 thorpej #define R92C_CPU_MGQ_INFORMATION 0x041C
158 1.1 thorpej
159 1.1 thorpej /* Protocol Configuration. */
160 1.1 thorpej #define R92C_FWHW_TXQ_CTRL 0x420
161 1.1 thorpej #define R92C_HWSEQ_CTRL 0x423
162 1.1 thorpej #define R92C_TXPKTBUF_BCNQ_BDNY 0x424
163 1.1 thorpej #define R92C_TXPKTBUF_MGQ_BDNY 0x425
164 1.1 thorpej #define R92C_SPEC_SIFS 0x428
165 1.1 thorpej #define R92C_RL 0x42a
166 1.1 thorpej #define R92C_DARFRC 0x430
167 1.1 thorpej #define R92C_RARFRC 0x438
168 1.1 thorpej #define R92C_RRSR 0x440
169 1.1 thorpej #define R92C_ARFR(i) (0x444 + (i) * 4)
170 1.1 thorpej #define R92C_AGGLEN_LMT 0x458
171 1.1 thorpej #define R92C_AMPDU_MIN_SPACE 0x45c
172 1.1 thorpej #define R92C_TXPKTBUF_WMAC_LBK_BF_HD 0x45d
173 1.1 thorpej #define R92C_FAST_EDCA_CTRL 0x460
174 1.1 thorpej #define R92C_RD_RESP_PKT_TH 0x463
175 1.1 thorpej #define R92C_INIRTS_RATE_SEL 0x480
176 1.1 thorpej #define R92C_INIDATA_RATE_SEL(macid) (0x484 + (macid))
177 1.1 thorpej #define R92C_MAX_AGGR_NUM 0x4ca
178 1.1 thorpej #define R92C_PROT_MODE_CTRL 0x4c8
179 1.1 thorpej #define R92C_BAR_MODE_CTRL 0x4cc
180 1.1 thorpej #define R88E_TX_RPT_CTRL 0x4ec
181 1.1 thorpej /* EDCA Configuration. */
182 1.1 thorpej #define R92C_EDCA_VO_PARAM 0x500
183 1.1 thorpej #define R92C_EDCA_VI_PARAM 0x504
184 1.1 thorpej #define R92C_EDCA_BE_PARAM 0x508
185 1.1 thorpej #define R92C_EDCA_BK_PARAM 0x50c
186 1.1 thorpej #define R92C_BCNTCFG 0x510
187 1.1 thorpej #define R92C_PIFS 0x512
188 1.1 thorpej #define R92C_RDG_PIFS 0x513
189 1.1 thorpej #define R92C_SIFS_CCK 0x514
190 1.1 thorpej #define R92C_SIFS_OFDM 0x516
191 1.1 thorpej #define R92C_AGGR_BREAK_TIME 0x51a
192 1.1 thorpej #define R92C_SLOT 0x51b
193 1.1 thorpej #define R92C_TX_PTCL_CTRL 0x520
194 1.1 thorpej #define R92C_TXPAUSE 0x522
195 1.1 thorpej #define R92C_DIS_TXREQ_CLR 0x523
196 1.1 thorpej #define R92C_RD_CTRL 0x524
197 1.1 thorpej #define R92C_TBTT_PROHIBIT 0x540
198 1.1 thorpej #define R92C_RD_NAV_NXT 0x544
199 1.1 thorpej #define R92C_NAV_PROT_LEN 0x546
200 1.1 thorpej #define R92C_BCN_CTRL 0x550
201 1.1 thorpej #define R92C_BCN_CTRL1 0x551
202 1.1 thorpej #define R92C_MBID_NUM 0x552
203 1.1 thorpej #define R92C_DUAL_TSF_RST 0x553
204 1.1 thorpej #define R92C_BCN_INTERVAL 0x554
205 1.1 thorpej #define R92C_DRVERLYINT 0x558
206 1.1 thorpej #define R92C_BCNDMATIM 0x559
207 1.1 thorpej #define R92C_ATIMWND 0x55a
208 1.1 thorpej #define R92C_USTIME_TSF 0x55c
209 1.1 thorpej #define R92C_BCN_MAX_ERR 0x55d
210 1.1 thorpej #define R92C_RXTSF_OFFSET_CCK 0x55e
211 1.1 thorpej #define R92C_RXTSF_OFFSET_OFDM 0x55f
212 1.1 thorpej #define R92C_TSFTR 0x560
213 1.1 thorpej #define R92C_INIT_TSFTR 0x564
214 1.1 thorpej #define R92C_PSTIMER 0x580
215 1.1 thorpej #define R92C_TIMER0 0x584
216 1.1 thorpej #define R92C_TIMER1 0x588
217 1.1 thorpej #define R92C_ACMHWCTRL 0x5c0
218 1.1 thorpej #define R92C_ACMRSTCTRL 0x5c1
219 1.1 thorpej #define R92C_ACMAVG 0x5c2
220 1.1 thorpej #define R92C_VO_ADMTIME 0x5c4
221 1.1 thorpej #define R92C_VI_ADMTIME 0x5c6
222 1.1 thorpej #define R92C_BE_ADMTIME 0x5c8
223 1.1 thorpej #define R92C_EDCA_RANDOM_GEN 0x5cc
224 1.1 thorpej #define R92C_SCH_TXCMD 0x5d0
225 1.1 thorpej /* WMAC Configuration. */
226 1.1 thorpej #define R92C_APSD_CTRL 0x600
227 1.1 thorpej #define R92C_BWOPMODE 0x603
228 1.1 thorpej #define R92C_TCR 0x604
229 1.1 thorpej #define R92C_RCR 0x608
230 1.1 thorpej #define R92C_RX_PKT_LIMIT 0x60c
231 1.1 thorpej #define R92C_RX_DLK_TIME 0x60d
232 1.1 thorpej #define R92C_RX_DRVINFO_SZ 0x60f
233 1.1 thorpej #define R92C_MACID 0x610
234 1.1 thorpej #define R92C_BSSID 0x618
235 1.1 thorpej #define R92C_MAR 0x620
236 1.1 thorpej #define R92C_MBIDCAMCFG 0x628
237 1.1 thorpej #define R92C_USTIME_EDCA 0x638
238 1.1 thorpej #define R92C_MAC_SPEC_SIFS 0x63a
239 1.1 thorpej #define R92C_R2T_SIFS 0x63c
240 1.1 thorpej #define R92C_T2T_SIFS 0x63e
241 1.1 thorpej #define R92C_ACKTO 0x640
242 1.1 thorpej #define R92C_CTS2TO 0x641
243 1.1 thorpej #define R92C_EIFS 0x642
244 1.1 thorpej #define R92C_NAV_CTRL 0x650
245 1.1 thorpej #define R92C_BACAMCMD 0x654
246 1.1 thorpej #define R92C_BACAMCONTENT 0x658
247 1.1 thorpej #define R92C_LBDLY 0x660
248 1.1 thorpej #define R92C_FWDLY 0x661
249 1.1 thorpej #define R92C_RXERR_RPT 0x664
250 1.1 thorpej #define R92C_WMAC_TRXPTCL_CTL 0x668
251 1.1 thorpej #define R92C_CAMCMD 0x670
252 1.1 thorpej #define R92C_CAMWRITE 0x674
253 1.1 thorpej #define R92C_CAMREAD 0x678
254 1.1 thorpej #define R92C_CAMDBG 0x67c
255 1.1 thorpej #define R92C_SECCFG 0x680
256 1.1 thorpej #define R92C_WOW_CTRL 0x690
257 1.1 thorpej #define R92C_PSSTATUS 0x691
258 1.1 thorpej #define R92C_PS_RX_INFO 0x692
259 1.1 thorpej #define R92C_LPNAV_CTRL 0x694
260 1.1 thorpej #define R92C_WKFMCAM_CMD 0x698
261 1.1 thorpej #define R92C_WKFMCAM_RWD 0x69c
262 1.1 thorpej #define R92C_RXFLTMAP0 0x6a0
263 1.1 thorpej #define R92C_RXFLTMAP1 0x6a2
264 1.1 thorpej #define R92C_RXFLTMAP2 0x6a4
265 1.1 thorpej #define R92C_BCN_PSR_RPT 0x6a8
266 1.1 thorpej #define R92C_CALB32K_CTRL 0x6ac
267 1.1 thorpej #define R92C_PKT_MON_CTRL 0x6b4
268 1.1 thorpej #define R92C_BT_COEX_TABLE 0x6c0
269 1.1 thorpej #define R92C_WMAC_RESP_TXINFO 0x6d8
270 1.1 thorpej
271 1.1 thorpej /* Bits for R92C_SYS_ISO_CTRL. */
272 1.1 thorpej #define R92C_SYS_ISO_CTRL_MD2PP 0x0001
273 1.1 thorpej #define R92C_SYS_ISO_CTRL_UA2USB 0x0002
274 1.1 thorpej #define R92C_SYS_ISO_CTRL_UD2CORE 0x0004
275 1.1 thorpej #define R92C_SYS_ISO_CTRL_PA2PCIE 0x0008
276 1.1 thorpej #define R92C_SYS_ISO_CTRL_PD2CORE 0x0010
277 1.1 thorpej #define R92C_SYS_ISO_CTRL_IP2MAC 0x0020
278 1.1 thorpej #define R92C_SYS_ISO_CTRL_DIOP 0x0040
279 1.1 thorpej #define R92C_SYS_ISO_CTRL_DIOE 0x0080
280 1.1 thorpej #define R92C_SYS_ISO_CTRL_EB2CORE 0x0100
281 1.1 thorpej #define R92C_SYS_ISO_CTRL_DIOR 0x0200
282 1.1 thorpej #define R92C_SYS_ISO_CTRL_PWC_EV25V 0x4000
283 1.1 thorpej #define R92C_SYS_ISO_CTRL_PWC_EV12V 0x8000
284 1.1 thorpej
285 1.1 thorpej /* Bits for R92C_SYS_FUNC_EN. */
286 1.1 thorpej #define R92C_SYS_FUNC_EN_BBRSTB 0x0001
287 1.1 thorpej #define R92C_SYS_FUNC_EN_BB_GLB_RST 0x0002
288 1.1 thorpej #define R92C_SYS_FUNC_EN_USBA 0x0004
289 1.1 thorpej #define R92C_SYS_FUNC_EN_UPLL 0x0008
290 1.1 thorpej #define R92C_SYS_FUNC_EN_USBD 0x0010
291 1.1 thorpej #define R92C_SYS_FUNC_EN_DIO_PCIE 0x0020
292 1.1 thorpej #define R92C_SYS_FUNC_EN_PCIEA 0x0040
293 1.1 thorpej #define R92C_SYS_FUNC_EN_PPLL 0x0080
294 1.1 thorpej #define R92C_SYS_FUNC_EN_PCIED 0x0100
295 1.1 thorpej #define R92C_SYS_FUNC_EN_DIOE 0x0200
296 1.1 thorpej #define R92C_SYS_FUNC_EN_CPUEN 0x0400
297 1.1 thorpej #define R92C_SYS_FUNC_EN_DCORE 0x0800
298 1.1 thorpej #define R92C_SYS_FUNC_EN_ELDR 0x1000
299 1.1 thorpej #define R92C_SYS_FUNC_EN_DIO_RF 0x2000
300 1.1 thorpej #define R92C_SYS_FUNC_EN_HWPDN 0x4000
301 1.1 thorpej #define R92C_SYS_FUNC_EN_MREGEN 0x8000
302 1.1 thorpej
303 1.1 thorpej /* Bits for R92C_APS_FSMCO. */
304 1.1 thorpej #define R92C_APS_FSMCO_PFM_LDALL 0x00000001
305 1.1 thorpej #define R92C_APS_FSMCO_PFM_ALDN 0x00000002
306 1.1 thorpej #define R92C_APS_FSMCO_PFM_LDKP 0x00000004
307 1.1 thorpej #define R92C_APS_FSMCO_PFM_WOWL 0x00000008
308 1.1 thorpej #define R92C_APS_FSMCO_PDN_EN 0x00000010
309 1.1 thorpej #define R92C_APS_FSMCO_PDN_PL 0x00000020
310 1.1 thorpej #define R92C_APS_FSMCO_APFM_ONMAC 0x00000100
311 1.1 thorpej #define R92C_APS_FSMCO_APFM_OFF 0x00000200
312 1.1 thorpej #define R92C_APS_FSMCO_APFM_RSM 0x00000400
313 1.1 thorpej #define R92C_APS_FSMCO_AFSM_HSUS 0x00000800
314 1.1 thorpej #define R92C_APS_FSMCO_AFSM_PCIE 0x00001000
315 1.1 thorpej #define R92C_APS_FSMCO_APDM_MAC 0x00002000
316 1.1 thorpej #define R92C_APS_FSMCO_APDM_HOST 0x00004000
317 1.1 thorpej #define R92C_APS_FSMCO_APDM_HPDN 0x00008000
318 1.1 thorpej #define R92C_APS_FSMCO_RDY_MACON 0x00010000
319 1.1 thorpej #define R92C_APS_FSMCO_SUS_HOST 0x00020000
320 1.1 thorpej #define R92C_APS_FSMCO_ROP_ALD 0x00100000
321 1.1 thorpej #define R92C_APS_FSMCO_ROP_PWR 0x00200000
322 1.1 thorpej #define R92C_APS_FSMCO_ROP_SPS 0x00400000
323 1.1 thorpej #define R92C_APS_FSMCO_SOP_MRST 0x02000000
324 1.1 thorpej #define R92C_APS_FSMCO_SOP_FUSE 0x04000000
325 1.1 thorpej #define R92C_APS_FSMCO_SOP_ABG 0x08000000
326 1.1 thorpej #define R92C_APS_FSMCO_SOP_AMB 0x10000000
327 1.1 thorpej #define R92C_APS_FSMCO_SOP_RCK 0x20000000
328 1.1 thorpej #define R92C_APS_FSMCO_SOP_A8M 0x40000000
329 1.1 thorpej #define R92C_APS_FSMCO_XOP_BTCK 0x80000000
330 1.1 thorpej
331 1.1 thorpej /* Bits for R92C_SYS_CLKR. */
332 1.1 thorpej #define R92C_SYS_CLKR_ANAD16V_EN 0x00000001
333 1.1 thorpej #define R92C_SYS_CLKR_ANA8M 0x00000002
334 1.1 thorpej #define R92C_SYS_CLKR_MACSLP 0x00000010
335 1.1 thorpej #define R92C_SYS_CLKR_LOADER_EN 0x00000020
336 1.1 thorpej #define R92C_SYS_CLKR_80M_SSC_DIS 0x00000080
337 1.1 thorpej #define R92C_SYS_CLKR_80M_SSC_EN_HO 0x00000100
338 1.1 thorpej #define R92C_SYS_CLKR_PHY_SSC_RSTB 0x00000200
339 1.1 thorpej #define R92C_SYS_CLKR_SEC_EN 0x00000400
340 1.1 thorpej #define R92C_SYS_CLKR_MAC_EN 0x00000800
341 1.1 thorpej #define R92C_SYS_CLKR_SYS_EN 0x00001000
342 1.1 thorpej #define R92C_SYS_CLKR_RING_EN 0x00002000
343 1.1 thorpej
344 1.1 thorpej /* Bits for R92C_RSV_CTRL. */
345 1.1 thorpej #define R92C_RSV_CTRL_WLOCK_ALL 0x01
346 1.1 thorpej #define R92C_RSV_CTRL_WLOCK_00 0x02
347 1.1 thorpej #define R92C_RSV_CTRL_WLOCK_04 0x04
348 1.1 thorpej #define R92C_RSV_CTRL_WLOCK_08 0x08
349 1.1 thorpej #define R92C_RSV_CTRL_WLOCK_40 0x10
350 1.1 thorpej #define R92C_RSV_CTRL_R_DIS_PRST_0 0x20
351 1.1 thorpej #define R92C_RSV_CTRL_R_DIS_PRST_1 0x40
352 1.1 thorpej #define R92C_RSV_CTRL_LOCK_ALL_EN 0x80
353 1.1 thorpej
354 1.1 thorpej /* Bits for R92C_RF_CTRL. */
355 1.1 thorpej #define R92C_RF_CTRL_EN 0x01
356 1.1 thorpej #define R92C_RF_CTRL_RSTB 0x02
357 1.1 thorpej #define R92C_RF_CTRL_SDMRSTB 0x04
358 1.1 thorpej
359 1.1 thorpej /* Bits for R92C_LDOV12D_CTRL. */
360 1.1 thorpej #define R92C_LDOV12D_CTRL_LDV12_EN 0x01
361 1.1 thorpej
362 1.1 thorpej /* Bits for R92C_AFE_XTAL_CTRL. */
363 1.1 thorpej #define R92C_AFE_XTAL_CTRL_ADDR_M 0x007ff800
364 1.1 thorpej #define R92C_AFE_XTAL_CTRL_ADDR_S 11
365 1.1 thorpej
366 1.1 thorpej /* Bits for R92C_EFUSE_CTRL. */
367 1.1 thorpej #define R92C_EFUSE_CTRL_DATA_M 0x000000ff
368 1.1 thorpej #define R92C_EFUSE_CTRL_DATA_S 0
369 1.1 thorpej #define R92C_EFUSE_CTRL_ADDR_M 0x0003ff00
370 1.1 thorpej #define R92C_EFUSE_CTRL_ADDR_S 8
371 1.1 thorpej #define R92C_EFUSE_CTRL_VALID 0x80000000
372 1.1 thorpej
373 1.1 thorpej /* Bits for R92C_GPIO_MUXCFG. */
374 1.1 thorpej #define R92C_GPIO_MUXCFG_RFKILL 0x0008
375 1.1 thorpej #define R92C_GPIO_MUXCFG_ENBT 0x0020
376 1.1 thorpej
377 1.1 thorpej /* Bits for R92C_GPIO_IO_SEL. */
378 1.1 thorpej #define R92C_GPIO_IO_SEL_RFKILL 0x0008
379 1.1 thorpej
380 1.1 thorpej /* Bits for R92C_LEDCFG0. */
381 1.1 thorpej #define R92C_LEDCFG0_DIS 0x08
382 1.1 thorpej
383 1.1 thorpej /* Bits for R92C_LEDCFG2. */
384 1.1 thorpej #define R92C_LEDCFG2_EN 0x60
385 1.1 thorpej #define R92C_LEDCFG2_DIS 0x68
386 1.1 thorpej
387 1.1 thorpej /* Bits for R92C_MCUFWDL. */
388 1.1 thorpej #define R92C_MCUFWDL_EN 0x00000001
389 1.1 thorpej #define R92C_MCUFWDL_RDY 0x00000002
390 1.1 thorpej #define R92C_MCUFWDL_CHKSUM_RPT 0x00000004
391 1.1 thorpej #define R92C_MCUFWDL_MACINI_RDY 0x00000008
392 1.1 thorpej #define R92C_MCUFWDL_BBINI_RDY 0x00000010
393 1.1 thorpej #define R92C_MCUFWDL_RFINI_RDY 0x00000020
394 1.1 thorpej #define R92C_MCUFWDL_WINTINI_RDY 0x00000040
395 1.1 thorpej #define R92C_MCUFWDL_RAM_DL_SEL 0x00000080 /* 1: RAM, 0: ROM */
396 1.1 thorpej #define R92C_MCUFWDL_PAGE_M 0x00070000
397 1.1 thorpej #define R92C_MCUFWDL_PAGE_S 16
398 1.1 thorpej #define R92C_MCUFWDL_CPRST 0x00800000
399 1.1 thorpej
400 1.1 thorpej /* Bits for R88E_HIMR. */
401 1.1 thorpej #define R88E_HIMR_CPWM 0x00000100
402 1.1 thorpej #define R88E_HIMR_CPWM2 0x00000200
403 1.1 thorpej #define R88E_HIMR_TBDER 0x04000000
404 1.1 thorpej #define R88E_HIMR_PSTIMEOUT 0x20000000
405 1.1 thorpej
406 1.1 thorpej /* Bits for R88E_HIMRE.*/
407 1.1 thorpej #define R88E_HIMRE_RXFOVW 0x00000100
408 1.1 thorpej #define R88E_HIMRE_TXFOVW 0x00000200
409 1.1 thorpej #define R88E_HIMRE_RXERR 0x00000400
410 1.1 thorpej #define R88E_HIMRE_TXERR 0x00000800
411 1.1 thorpej
412 1.1 thorpej /* Bits for R92C_EFUSE_ACCESS. */
413 1.1 thorpej #define R92C_EFUSE_ACCESS_OFF 0x00
414 1.1 thorpej #define R92C_EFUSE_ACCESS_ON 0x69
415 1.1 thorpej
416 1.1 thorpej /* Bits for R92C_HPON_FSM. */
417 1.1 thorpej #define R92C_HPON_FSM_CHIP_BONDING_ID_S 22
418 1.1 thorpej #define R92C_HPON_FSM_CHIP_BONDING_ID_M 0x00c00000
419 1.1 thorpej #define R92C_HPON_FSM_CHIP_BONDING_ID_92C_1T2R 1
420 1.1 thorpej
421 1.1 thorpej /* Bits for R92C_SYS_CFG. */
422 1.1 thorpej #define R92C_SYS_CFG_XCLK_VLD 0x00000001
423 1.1 thorpej #define R92C_SYS_CFG_ACLK_VLD 0x00000002
424 1.1 thorpej #define R92C_SYS_CFG_UCLK_VLD 0x00000004
425 1.1 thorpej #define R92C_SYS_CFG_PCLK_VLD 0x00000008
426 1.1 thorpej #define R92C_SYS_CFG_PCIRSTB 0x00000010
427 1.1 thorpej #define R92C_SYS_CFG_V15_VLD 0x00000020
428 1.1 thorpej #define R92C_SYS_CFG_TRP_B15V_EN 0x00000080
429 1.1 thorpej #define R92C_SYS_CFG_SIC_IDLE 0x00000100
430 1.1 thorpej #define R92C_SYS_CFG_BD_MAC2 0x00000200
431 1.1 thorpej #define R92C_SYS_CFG_BD_MAC1 0x00000400
432 1.1 thorpej #define R92C_SYS_CFG_IC_MACPHY_MODE 0x00000800
433 1.1 thorpej #define R92C_SYS_CFG_CHIP_VER_RTL_M 0x0000f000
434 1.1 thorpej #define R92C_SYS_CFG_CHIP_VER_RTL_S 12
435 1.1 thorpej #define R92C_SYS_CFG_BT_FUNC 0x00010000
436 1.1 thorpej #define R92C_SYS_CFG_VENDOR_UMC 0x00080000
437 1.1 thorpej #define R92C_SYS_CFG_PAD_HWPD_IDN 0x00400000
438 1.1 thorpej #define R92C_SYS_CFG_TRP_VAUX_EN 0x00800000
439 1.1 thorpej #define R92C_SYS_CFG_TRP_BT_EN 0x01000000
440 1.1 thorpej #define R92C_SYS_CFG_BD_PKG_SEL 0x02000000
441 1.1 thorpej #define R92C_SYS_CFG_BD_HCI_SEL 0x04000000
442 1.1 thorpej #define R92C_SYS_CFG_TYPE_92C 0x08000000
443 1.1 thorpej
444 1.1 thorpej /* Bits for R92C_CR. */
445 1.1 thorpej #define R92C_CR_HCI_TXDMA_EN 0x00000001
446 1.1 thorpej #define R92C_CR_HCI_RXDMA_EN 0x00000002
447 1.1 thorpej #define R92C_CR_TXDMA_EN 0x00000004
448 1.1 thorpej #define R92C_CR_RXDMA_EN 0x00000008
449 1.1 thorpej #define R92C_CR_PROTOCOL_EN 0x00000010
450 1.1 thorpej #define R92C_CR_SCHEDULE_EN 0x00000020
451 1.1 thorpej #define R92C_CR_MACTXEN 0x00000040
452 1.1 thorpej #define R92C_CR_MACRXEN 0x00000080
453 1.1 thorpej #define R92C_CR_ENSEC 0x00000200
454 1.1 thorpej #define R92C_CR_CALTMR_EN 0x00000400
455 1.1 thorpej #define R92C_CR_NETTYPE_S 16
456 1.1 thorpej #define R92C_CR_NETTYPE_M 0x00030000
457 1.1 thorpej #define R92C_CR_NETTYPE_NOLINK 0
458 1.1 thorpej #define R92C_CR_NETTYPE_ADHOC 1
459 1.1 thorpej #define R92C_CR_NETTYPE_INFRA 2
460 1.1 thorpej #define R92C_CR_NETTYPE_AP 3
461 1.1 thorpej
462 1.1 thorpej /* Bits for R92C_MSR. */
463 1.1 thorpej #define R92C_MSR_NOLINK 0x00
464 1.1 thorpej #define R92C_MSR_ADHOC 0x01
465 1.1 thorpej #define R92C_MSR_INFRA 0x02
466 1.1 thorpej #define R92C_MSR_AP 0x03
467 1.1 thorpej #define R92C_MSR_MASK (~R92C_MSR_AP)
468 1.1 thorpej
469 1.1 thorpej /* Bits for R92C_PBP. */
470 1.1 thorpej #define R92C_PBP_PSRX_M 0x0f
471 1.1 thorpej #define R92C_PBP_PSRX_S 0
472 1.1 thorpej #define R92C_PBP_PSTX_M 0xf0
473 1.1 thorpej #define R92C_PBP_PSTX_S 4
474 1.1 thorpej #define R92C_PBP_64 0
475 1.1 thorpej #define R92C_PBP_128 1
476 1.1 thorpej #define R92C_PBP_256 2
477 1.1 thorpej #define R92C_PBP_512 3
478 1.1 thorpej #define R92C_PBP_1024 4
479 1.1 thorpej
480 1.1 thorpej /* Bits for R92C_TRXDMA_CTRL. */
481 1.1 thorpej #define R92C_TRXDMA_CTRL_RXDMA_AGG_EN 0x0004
482 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_VOQ_MAP_M 0x0030
483 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_VOQ_MAP_S 4
484 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_VIQ_MAP_M 0x00c0
485 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_VIQ_MAP_S 6
486 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_BEQ_MAP_M 0x0300
487 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_BEQ_MAP_S 8
488 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_BKQ_MAP_M 0x0c00
489 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_BKQ_MAP_S 10
490 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_MGQ_MAP_M 0x3000
491 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_MGQ_MAP_S 12
492 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_HIQ_MAP_M 0xc000
493 1.1 thorpej #define R92C_TRXDMA_CTRL_TXDMA_HIQ_MAP_S 14
494 1.1 thorpej #define R92C_TRXDMA_CTRL_QUEUE_LOW 1
495 1.1 thorpej #define R92C_TRXDMA_CTRL_QUEUE_NORMAL 2
496 1.1 thorpej #define R92C_TRXDMA_CTRL_QUEUE_HIGH 3
497 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_M 0xfff0
498 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_S 4
499 1.1 thorpej /* Shortcuts. */
500 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_3EP 0xf5b0
501 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_HQ_LQ 0xf5f0
502 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_HQ_NQ 0xfaf0
503 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_LQ 0x5550
504 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_NQ 0xaaa0
505 1.1 thorpej #define R92C_TRXDMA_CTRL_QMAP_HQ 0xfff0
506 1.1 thorpej
507 1.1 thorpej /* Bits for R92C_LLT_INIT. */
508 1.1 thorpej #define R92C_LLT_INIT_DATA_M 0x000000ff
509 1.1 thorpej #define R92C_LLT_INIT_DATA_S 0
510 1.1 thorpej #define R92C_LLT_INIT_ADDR_M 0x0000ff00
511 1.1 thorpej #define R92C_LLT_INIT_ADDR_S 8
512 1.1 thorpej #define R92C_LLT_INIT_OP_M 0xc0000000
513 1.1 thorpej #define R92C_LLT_INIT_OP_S 30
514 1.1 thorpej #define R92C_LLT_INIT_OP_NO_ACTIVE 0
515 1.1 thorpej #define R92C_LLT_INIT_OP_WRITE 1
516 1.1 thorpej #define R92C_LLT_INIT_OP_READ 2
517 1.1 thorpej
518 1.1 thorpej /* Bits for R92C_RQPN. */
519 1.1 thorpej #define R92C_RQPN_HPQ_M 0x000000ff
520 1.1 thorpej #define R92C_RQPN_HPQ_S 0
521 1.1 thorpej #define R92C_RQPN_LPQ_M 0x0000ff00
522 1.1 thorpej #define R92C_RQPN_LPQ_S 8
523 1.1 thorpej #define R92C_RQPN_PUBQ_M 0x00ff0000
524 1.1 thorpej #define R92C_RQPN_PUBQ_S 16
525 1.1 thorpej #define R92C_RQPN_LD 0x80000000
526 1.1 thorpej
527 1.1 thorpej /* Bits for R92C_TDECTRL. */
528 1.1 thorpej #define R92C_TDECTRL_BLK_DESC_NUM_M 0x0000000f
529 1.1 thorpej #define R92C_TDECTRL_BLK_DESC_NUM_S 4
530 1.1 thorpej
531 1.1 thorpej /* Bits for R92C_FWHW_TXQ_CTRL. */
532 1.1 thorpej #define R92C_FWHW_TXQ_CTRL_AMPDU_RTY_NEW 0x80
533 1.1 thorpej
534 1.1 thorpej /* Bits for R92C_SPEC_SIFS. */
535 1.1 thorpej #define R92C_SPEC_SIFS_CCK_M 0x00ff
536 1.1 thorpej #define R92C_SPEC_SIFS_CCK_S 0
537 1.1 thorpej #define R92C_SPEC_SIFS_OFDM_M 0xff00
538 1.1 thorpej #define R92C_SPEC_SIFS_OFDM_S 8
539 1.1 thorpej
540 1.1 thorpej /* Bits for R92C_RL. */
541 1.1 thorpej #define R92C_RL_LRL_M 0x003f
542 1.1 thorpej #define R92C_RL_LRL_S 0
543 1.1 thorpej #define R92C_RL_SRL_M 0x3f00
544 1.1 thorpej #define R92C_RL_SRL_S 8
545 1.1 thorpej
546 1.1 thorpej /* Bits for R92C_RRSR. */
547 1.1 thorpej #define R92C_RRSR_RATE_BITMAP_M 0x000fffff
548 1.1 thorpej #define R92C_RRSR_RATE_BITMAP_S 0
549 1.1 thorpej #define R92C_RRSR_RATE_CCK_ONLY_1M 0xffff1
550 1.1 thorpej #define R92C_RRSR_RATE_ALL 0xfffff
551 1.1 thorpej #define R92C_RRSR_RSC_LOWSUBCHNL 0x00200000
552 1.1 thorpej #define R92C_RRSR_RSC_UPSUBCHNL 0x00400000
553 1.1 thorpej #define R92C_RRSR_SHORT 0x00800000
554 1.1 thorpej
555 1.1 thorpej /* Bits for R88E_TX_RPT_CTRL. */
556 1.1 thorpej #define R88E_TX_RPT_CTRL_EN 0x01
557 1.1 thorpej #define R88E_TX_RPT_CTRL_TIMER_EN 0x02
558 1.1 thorpej
559 1.1 thorpej /* Bits for R92C_EDCA_XX_PARAM. */
560 1.1 thorpej #define R92C_EDCA_PARAM_AIFS_M 0x000000ff
561 1.1 thorpej #define R92C_EDCA_PARAM_AIFS_S 0
562 1.1 thorpej #define R92C_EDCA_PARAM_ECWMIN_M 0x00000f00
563 1.1 thorpej #define R92C_EDCA_PARAM_ECWMIN_S 8
564 1.1 thorpej #define R92C_EDCA_PARAM_ECWMAX_M 0x0000f000
565 1.1 thorpej #define R92C_EDCA_PARAM_ECWMAX_S 12
566 1.1 thorpej #define R92C_EDCA_PARAM_TXOP_M 0xffff0000
567 1.1 thorpej #define R92C_EDCA_PARAM_TXOP_S 16
568 1.1 thorpej
569 1.1 thorpej /* Bits for R92C_ACMHWCTRL */
570 1.1 thorpej #define R92C_ACMHW_HWEN 0x01
571 1.1 thorpej #define R92C_ACMHW_BEQEN 0x02
572 1.1 thorpej #define R92C_ACMHW_VIQEN 0x04
573 1.1 thorpej #define R92C_ACMHW_VOQEN 0x08
574 1.1 thorpej #define R92C_ACMHW_BEQSTATUS 0x10
575 1.1 thorpej #define R92C_ACMHW_VIQSTATUS 0x20
576 1.1 thorpej #define R92C_ACMHW_VOQSTATUS 0x40
577 1.1 thorpej
578 1.1 thorpej /* Bits for R92C_TXPAUSE. */
579 1.1 thorpej #define R92C_TXPAUSE_AC_VO 0x01
580 1.1 thorpej #define R92C_TXPAUSE_AC_VI 0x02
581 1.1 thorpej #define R92C_TXPAUSE_AC_BE 0x04
582 1.1 thorpej #define R92C_TXPAUSE_AC_BK 0x08
583 1.1 thorpej #define R92C_TXPAUSE_MGNT 0x10
584 1.1 thorpej #define R92C_TXPAUSE_HIGH 0x20
585 1.1 thorpej #define R92C_TXPAUSE_BCN 0x40
586 1.1 thorpej #define R92C_TXPAUSE_BCN_HIGH_MGNT 0x80
587 1.1 thorpej
588 1.1 thorpej #define R92C_TXPAUSE_ALL (R92C_TXPAUSE_AC_VO | R92C_TXPAUSE_AC_VI | \
589 1.1 thorpej R92C_TXPAUSE_AC_BE | R92C_TXPAUSE_AC_BK | \
590 1.1 thorpej R92C_TXPAUSE_MGNT | R92C_TXPAUSE_HIGH | \
591 1.1 thorpej R92C_TXPAUSE_BCN | R92C_TXPAUSE_BCN_HIGH_MGNT)
592 1.1 thorpej
593 1.1 thorpej /* Bits for R92C_BCN_CTRL. */
594 1.1 thorpej #define R92C_BCN_CTRL_EN_MBSSID 0x02
595 1.1 thorpej #define R92C_BCN_CTRL_TXBCN_RPT 0x04
596 1.1 thorpej #define R92C_BCN_CTRL_EN_BCN 0x08
597 1.1 thorpej #define R92C_BCN_CTRL_DIS_TSF_UDT0 0x10
598 1.1 thorpej
599 1.1 thorpej /* Bits for R92C_DRVERLYINT. */
600 1.1 thorpej #define R92C_DRVERLYINT_INIT_TIME 0x05
601 1.1 thorpej
602 1.1 thorpej /* Bits for R92C_BCNDMATIM. */
603 1.1 thorpej #define R92C_BCNDMATIM_INIT_TIME 0x02
604 1.1 thorpej
605 1.1 thorpej /* Bits for R92C_APSD_CTRL. */
606 1.1 thorpej #define R92C_APSD_CTRL_OFF 0x40
607 1.1 thorpej #define R92C_APSD_CTRL_OFF_STATUS 0x80
608 1.1 thorpej
609 1.1 thorpej /* Bits for R92C_BWOPMODE. */
610 1.1 thorpej #define R92C_BWOPMODE_11J 0x01
611 1.1 thorpej #define R92C_BWOPMODE_5G 0x02
612 1.1 thorpej #define R92C_BWOPMODE_20MHZ 0x04
613 1.1 thorpej
614 1.1 thorpej /* Bits for R92C_TCR. */
615 1.1 thorpej #define R92C_TCR_TSFRST 0x00000001
616 1.1 thorpej #define R92C_TCR_DIS_GCLK 0x00000002
617 1.1 thorpej #define R92C_TCR_PAD_SEL 0x00000004
618 1.1 thorpej #define R92C_TCR_PWR_ST 0x00000040
619 1.1 thorpej #define R92C_TCR_PWRBIT_OW_EN 0x00000080
620 1.1 thorpej #define R92C_TCR_ACRC 0x00000100
621 1.1 thorpej #define R92C_TCR_CFENDFORM 0x00000200
622 1.1 thorpej #define R92C_TCR_ICV 0x00000400
623 1.1 thorpej
624 1.1 thorpej /* Bits for R92C_RCR. */
625 1.1 thorpej #define R92C_RCR_AAP 0x00000001 // Accept all unicast packet
626 1.1 thorpej #define R92C_RCR_APM 0x00000002 // Accept physical match packet
627 1.1 thorpej #define R92C_RCR_AM 0x00000004 // Accept multicast packet
628 1.1 thorpej #define R92C_RCR_AB 0x00000008 // Accept broadcast packet
629 1.1 thorpej #define R92C_RCR_ADD3 0x00000010 // Accept address 3 match packet
630 1.1 thorpej #define R92C_RCR_APWRMGT 0x00000020 // Accept power management packet
631 1.1 thorpej #define R92C_RCR_CBSSID_DATA 0x00000040 // Accept BSSID match packet (Data)
632 1.1 thorpej #define R92C_RCR_CBSSID_BCN 0x00000080 // Accept BSSID match packet (Rx beacon, probe rsp)
633 1.1 thorpej #define R92C_RCR_ACRC32 0x00000100 // Accept CRC32 error packet
634 1.1 thorpej #define R92C_RCR_AICV 0x00000200 // Accept ICV error packet
635 1.1 thorpej #define R92C_RCR_ADF 0x00000800 // Accept data type frame
636 1.1 thorpej #define R92C_RCR_ACF 0x00001000 // Accept control type frame
637 1.1 thorpej #define R92C_RCR_AMF 0x00002000 // Accept management type frame
638 1.1 thorpej #define R92C_RCR_HTC_LOC_CTRL 0x00004000 // MFC<--HTC=1 MFC-->HTC=0
639 1.1 thorpej #define R92C_RCR_MFBEN 0x00400000
640 1.1 thorpej #define R92C_RCR_LSIGEN 0x00800000
641 1.1 thorpej #define R92C_RCR_ENMBID 0x01000000 // Enable Multiple BssId
642 1.1 thorpej #define R92C_RCR_APP_BA_SSN 0x08000000 // Accept BA SSN
643 1.1 thorpej #define R92C_RCR_APP_PHYSTS 0x10000000
644 1.1 thorpej #define R92C_RCR_APP_ICV 0x20000000
645 1.1 thorpej #define R92C_RCR_APP_MIC 0x40000000
646 1.1 thorpej #define R92C_RCR_APPFCS 0x80000000 // WMAC append FCS after payload
647 1.1 thorpej
648 1.1 thorpej /* Bits for R92C_WMAC_TRXPTCL_CTL. */
649 1.1 thorpej #define R92C_WMAC_TRXPTCL_CTL_SHORT 0x00020000
650 1.1 thorpej
651 1.1 thorpej /* Bits for R92C_CAMCMD. */
652 1.1 thorpej #define R92C_CAMCMD_ADDR_M 0x0000ffff
653 1.1 thorpej #define R92C_CAMCMD_ADDR_S 0
654 1.1 thorpej #define R92C_CAMCMD_WRITE 0x00010000
655 1.1 thorpej #define R92C_CAMCMD_CLR 0x40000000
656 1.1 thorpej #define R92C_CAMCMD_POLLING 0x80000000
657 1.1 thorpej
658 1.1 thorpej /* IMR */
659 1.1 thorpej
660 1.1 thorpej /*Beacon DMA interrupt 6 */
661 1.1 thorpej #define R92C_IMR_BCNDMAINT6 0x80000000
662 1.1 thorpej /*Beacon DMA interrupt 5 */
663 1.1 thorpej #define R92C_IMR_BCNDMAINT5 0x40000000
664 1.1 thorpej /*Beacon DMA interrupt 4 */
665 1.1 thorpej #define R92C_IMR_BCNDMAINT4 0x20000000
666 1.1 thorpej /*Beacon DMA interrupt 3 */
667 1.1 thorpej #define R92C_IMR_BCNDMAINT3 0x10000000
668 1.1 thorpej /*Beacon DMA interrupt 2 */
669 1.1 thorpej #define R92C_IMR_BCNDMAINT2 0x08000000
670 1.1 thorpej /*Beacon DMA interrupt 1 */
671 1.1 thorpej #define R92C_IMR_BCNDMAINT1 0x04000000
672 1.1 thorpej /*Beacon Queue DMA OK interrupt 8 */
673 1.1 thorpej #define R92C_IMR_BCNDOK8 0x02000000
674 1.1 thorpej /*Beacon Queue DMA OK interrupt 7 */
675 1.1 thorpej #define R92C_IMR_BCNDOK7 0x01000000
676 1.1 thorpej /*Beacon Queue DMA OK interrupt 6 */
677 1.1 thorpej #define R92C_IMR_BCNDOK6 0x00800000
678 1.1 thorpej /*Beacon Queue DMA OK interrupt 5 */
679 1.1 thorpej #define R92C_IMR_BCNDOK5 0x00400000
680 1.1 thorpej /*Beacon Queue DMA OK interrupt 4 */
681 1.1 thorpej #define R92C_IMR_BCNDOK4 0x00200000
682 1.1 thorpej /*Beacon Queue DMA OK interrupt 3 */
683 1.1 thorpej #define R92C_IMR_BCNDOK3 0x00100000
684 1.1 thorpej /*Beacon Queue DMA OK interrupt 2 */
685 1.1 thorpej #define R92C_IMR_BCNDOK2 0x00080000
686 1.1 thorpej /*Beacon Queue DMA OK interrupt 1 */
687 1.1 thorpej #define R92C_IMR_BCNDOK1 0x00040000
688 1.1 thorpej /*Timeout interrupt 2 */
689 1.1 thorpej #define R92C_IMR_TIMEOUT2 0x00020000
690 1.1 thorpej /*Timeout interrupt 1 */
691 1.1 thorpej #define R92C_IMR_TIMEOUT1 0x00010000
692 1.1 thorpej /*Transmit FIFO Overflow */
693 1.1 thorpej #define R92C_IMR_TXFOVW 0x00008000
694 1.1 thorpej /*Power save time out interrupt */
695 1.1 thorpej #define R92C_IMR_PSTIMEOUT 0x00004000
696 1.1 thorpej /*Beacon DMA interrupt 0 */
697 1.1 thorpej #define R92C_IMR_BCNINT 0x00002000
698 1.1 thorpej /*Receive FIFO Overflow */
699 1.1 thorpej #define R92C_IMR_RXFOVW 0x00001000
700 1.1 thorpej /*Receive Descriptor Unavailable */
701 1.1 thorpej #define R92C_IMR_RDU 0x00000800
702 1.1 thorpej /*For 92C,ATIM Window End interrupt */
703 1.1 thorpej #define R92C_IMR_ATIMEND 0x00000400
704 1.1 thorpej /*Beacon Queue DMA OK interrupt */
705 1.1 thorpej #define R92C_IMR_BDOK 0x00000200
706 1.1 thorpej /*High Queue DMA OK interrupt */
707 1.1 thorpej #define R92C_IMR_HIGHDOK 0x00000100
708 1.1 thorpej /*Transmit Beacon OK interrupt */
709 1.1 thorpej #define R92C_IMR_TBDOK 0x00000080
710 1.1 thorpej /*Management Queue DMA OK interrupt */
711 1.1 thorpej #define R92C_IMR_MGNTDOK 0x00000040
712 1.1 thorpej /*For 92C,Transmit Beacon Error interrupt */
713 1.1 thorpej #define R92C_IMR_TBDER 0x00000020
714 1.1 thorpej /*AC_BK DMA OK interrupt */
715 1.1 thorpej #define R92C_IMR_BKDOK 0x00000010
716 1.1 thorpej /*AC_BE DMA OK interrupt */
717 1.1 thorpej #define R92C_IMR_BEDOK 0x00000008
718 1.1 thorpej /*AC_VI DMA OK interrupt */
719 1.1 thorpej #define R92C_IMR_VIDOK 0x00000004
720 1.1 thorpej /*AC_VO DMA interrupt */
721 1.1 thorpej #define R92C_IMR_VODOK 0x00000002
722 1.1 thorpej /*Receive DMA OK interrupt */
723 1.1 thorpej #define R92C_IMR_ROK 0x00000001
724 1.1 thorpej
725 1.1 thorpej #define R92C_IBSS_INT_MASK (R92C_IMR_BCNINT | R92C_IMR_TBDOK | \
726 1.1 thorpej R92C_IMR_TBDER)
727 1.1 thorpej
728 1.1 thorpej
729 1.1 thorpej /*
730 1.1 thorpej * Baseband registers.
731 1.1 thorpej */
732 1.1 thorpej #define R92C_FPGA0_RFMOD 0x800
733 1.1 thorpej #define R92C_FPGA0_TXINFO 0x804
734 1.1 thorpej #define R92C_HSSI_PARAM1(chain) (0x820 + (chain) * 8)
735 1.1 thorpej #define R92C_HSSI_PARAM2(chain) (0x824 + (chain) * 8)
736 1.1 thorpej #define R92C_TXAGC_RATE18_06(i) (((i) == 0) ? 0xe00 : 0x830)
737 1.1 thorpej #define R92C_TXAGC_RATE54_24(i) (((i) == 0) ? 0xe04 : 0x834)
738 1.1 thorpej #define R92C_TXAGC_A_CCK1_MCS32 0xe08
739 1.1 thorpej #define R92C_FPGA0_XA_HSSIPARAM1 0x820
740 1.1 thorpej #define R92C_TXAGC_B_CCK1_55_MCS32 0x838
741 1.1 thorpej #define R92C_FPGA0_XCD_SWITCHCTL 0x85c
742 1.1 thorpej #define R92C_TXAGC_B_CCK11_A_CCK2_11 0x86c
743 1.1 thorpej #define R92C_TXAGC_MCS03_MCS00(i) (((i) == 0) ? 0xe10 : 0x83c)
744 1.1 thorpej #define R92C_TXAGC_MCS07_MCS04(i) (((i) == 0) ? 0xe14 : 0x848)
745 1.1 thorpej #define R92C_TXAGC_MCS11_MCS08(i) (((i) == 0) ? 0xe18 : 0x84c)
746 1.1 thorpej #define R92C_TXAGC_MCS15_MCS12(i) (((i) == 0) ? 0xe1c : 0x868)
747 1.1 thorpej #define R92C_LSSI_PARAM(chain) (0x840 + (chain) * 4)
748 1.1 thorpej #define R92C_FPGA0_RFIFACEOE(chain) (0x860 + (chain) * 4)
749 1.1 thorpej #define R92C_FPGA0_RFIFACESW(idx) (0x870 + (idx) * 4)
750 1.1 thorpej #define R92C_FPGA0_RFPARAM(idx) (0x878 + (idx) * 4)
751 1.1 thorpej #define R92C_FPGA0_ANAPARAM2 0x884
752 1.1 thorpej #define R92C_LSSI_READBACK(chain) (0x8a0 + (chain) * 4)
753 1.1 thorpej #define R92C_HSPI_READBACK(chain) (0x8b8 + (chain) * 4)
754 1.1 thorpej #define R92C_FPGA1_RFMOD 0x900
755 1.1 thorpej #define R92C_FPGA1_TXINFO 0x90c
756 1.1 thorpej #define R92C_CCK0_SYSTEM 0xa00
757 1.1 thorpej #define R92C_CCK0_AFESETTING 0xa04
758 1.1 thorpej #define R92C_CONFIG_ANT_A 0xb68
759 1.1 thorpej #define R92C_CONFIG_ANT_B 0xb6c
760 1.1 thorpej #define R92C_OFDM0_TRXPATHENA 0xc04
761 1.1 thorpej #define R92C_OFDM0_TRMUXPAR 0xc08
762 1.1 thorpej #define R92C_OFDM0_RXIQIMBALANCE(chain) (0xc14 + (chain) * 8)
763 1.1 thorpej #define R92C_OFDM0_ECCATHRESHOLD 0xc4c
764 1.1 thorpej #define R92C_OFDM0_AGCCORE1(chain) (0xc50 + (chain) * 8)
765 1.1 thorpej #define R92C_OFDM0_AGCPARAM1 0xc70
766 1.1 thorpej #define R92C_OFDM0_AGCRSSITABLE 0xc78
767 1.1 thorpej #define R92C_OFDM0_HTSTFAGC 0xc7c
768 1.1 thorpej #define R92C_OFDM0_TXIQIMBALANCE(chain) (0xc80 + (chain) * 8)
769 1.1 thorpej #define R92C_OFDM0_TXAFE(chain) (0xc94 + (chain) * 8)
770 1.1 thorpej #define R92C_OFDM0_RXIQEXTANTA 0xca0
771 1.1 thorpej #define R92C_OFDM1_LSTF 0xd00
772 1.1 thorpej #define R92C_FPGA0_IQK 0xe28
773 1.1 thorpej #define R92C_TX_IQK 0xe40
774 1.1 thorpej #define R92C_RX_IQK 0xe44
775 1.1 thorpej #define R92C_BLUETOOTH 0xe6c
776 1.1 thorpej #define R92C_RX_WAIT_CCA 0xe70
777 1.1 thorpej #define R92C_TX_CCK_RFON 0xe74
778 1.1 thorpej #define R92C_TX_CCK_BBON 0xe78
779 1.1 thorpej #define R92C_TX_OFDM_RFON 0xe7c
780 1.1 thorpej #define R92C_TX_OFDM_BBON 0xe80
781 1.1 thorpej #define R92C_TX_TO_RX 0xe84
782 1.1 thorpej #define R92C_TX_TO_TX 0xe88
783 1.1 thorpej #define R92C_RX_CCK 0xe8c
784 1.1 thorpej #define R92C_RX_OFDM 0xed0
785 1.1 thorpej #define R92C_RX_WAIT_RIFS 0xed4
786 1.1 thorpej #define R92C_RX_TO_RX 0xed8
787 1.1 thorpej #define R92C_STANDBY 0xedc
788 1.1 thorpej #define R92C_SLEEP 0xee0
789 1.1 thorpej #define R92C_PMPD_ANAEN 0xeec
790 1.1 thorpej
791 1.1 thorpej /* Bits for R92C_FPGA[01]_RFMOD. */
792 1.1 thorpej #define R92C_RFMOD_40MHZ 0x00000001
793 1.1 thorpej #define R92C_RFMOD_JAPAN 0x00000002
794 1.1 thorpej #define R92C_RFMOD_CCK_TXSC 0x00000030
795 1.1 thorpej #define R92C_RFMOD_CCK_EN 0x01000000
796 1.1 thorpej #define R92C_RFMOD_OFDM_EN 0x02000000
797 1.1 thorpej
798 1.1 thorpej /* Bits for R92C_HSSI_PARAM1(i). */
799 1.1 thorpej #define R92C_HSSI_PARAM1_PI 0x00000100
800 1.1 thorpej
801 1.1 thorpej /* Bits for R92C_HSSI_PARAM2(i). */
802 1.1 thorpej #define R92C_HSSI_PARAM2_CCK_HIPWR 0x00000200
803 1.1 thorpej #define R92C_HSSI_PARAM2_ADDR_LENGTH 0x00000400
804 1.1 thorpej #define R92C_HSSI_PARAM2_DATA_LENGTH 0x00000800
805 1.1 thorpej #define R92C_HSSI_PARAM2_READ_ADDR_M 0x7f800000
806 1.1 thorpej #define R92C_HSSI_PARAM2_READ_ADDR_S 23
807 1.1 thorpej #define R92C_HSSI_PARAM2_READ_EDGE 0x80000000
808 1.1 thorpej
809 1.1 thorpej /* Bits for R92C_TXAGC_A_CCK1_MCS32. */
810 1.1 thorpej #define R92C_TXAGC_A_CCK1_M 0x0000ff00
811 1.1 thorpej #define R92C_TXAGC_A_CCK1_S 8
812 1.1 thorpej
813 1.1 thorpej /* Bits for R92C_TXAGC_B_CCK11_A_CCK2_11. */
814 1.1 thorpej #define R92C_TXAGC_B_CCK11_M 0x000000ff
815 1.1 thorpej #define R92C_TXAGC_B_CCK11_S 0
816 1.1 thorpej #define R92C_TXAGC_A_CCK2_M 0x0000ff00
817 1.1 thorpej #define R92C_TXAGC_A_CCK2_S 8
818 1.1 thorpej #define R92C_TXAGC_A_CCK55_M 0x00ff0000
819 1.1 thorpej #define R92C_TXAGC_A_CCK55_S 16
820 1.1 thorpej #define R92C_TXAGC_A_CCK11_M 0xff000000
821 1.1 thorpej #define R92C_TXAGC_A_CCK11_S 24
822 1.1 thorpej
823 1.1 thorpej /* Bits for R92C_TXAGC_B_CCK1_55_MCS32. */
824 1.1 thorpej #define R92C_TXAGC_B_CCK1_M 0x0000ff00
825 1.1 thorpej #define R92C_TXAGC_B_CCK1_S 8
826 1.1 thorpej #define R92C_TXAGC_B_CCK2_M 0x00ff0000
827 1.1 thorpej #define R92C_TXAGC_B_CCK2_S 16
828 1.1 thorpej #define R92C_TXAGC_B_CCK55_M 0xff000000
829 1.1 thorpej #define R92C_TXAGC_B_CCK55_S 24
830 1.1 thorpej
831 1.1 thorpej /* Bits for R92C_TXAGC_RATE18_06(x). */
832 1.1 thorpej #define R92C_TXAGC_RATE06_M 0x000000ff
833 1.1 thorpej #define R92C_TXAGC_RATE06_S 0
834 1.1 thorpej #define R92C_TXAGC_RATE09_M 0x0000ff00
835 1.1 thorpej #define R92C_TXAGC_RATE09_S 8
836 1.1 thorpej #define R92C_TXAGC_RATE12_M 0x00ff0000
837 1.1 thorpej #define R92C_TXAGC_RATE12_S 16
838 1.1 thorpej #define R92C_TXAGC_RATE18_M 0xff000000
839 1.1 thorpej #define R92C_TXAGC_RATE18_S 24
840 1.1 thorpej
841 1.1 thorpej /* Bits for R92C_TXAGC_RATE54_24(x). */
842 1.1 thorpej #define R92C_TXAGC_RATE24_M 0x000000ff
843 1.1 thorpej #define R92C_TXAGC_RATE24_S 0
844 1.1 thorpej #define R92C_TXAGC_RATE36_M 0x0000ff00
845 1.1 thorpej #define R92C_TXAGC_RATE36_S 8
846 1.1 thorpej #define R92C_TXAGC_RATE48_M 0x00ff0000
847 1.1 thorpej #define R92C_TXAGC_RATE48_S 16
848 1.1 thorpej #define R92C_TXAGC_RATE54_M 0xff000000
849 1.1 thorpej #define R92C_TXAGC_RATE54_S 24
850 1.1 thorpej
851 1.1 thorpej /* Bits for R92C_TXAGC_MCS03_MCS00(x). */
852 1.1 thorpej #define R92C_TXAGC_MCS00_M 0x000000ff
853 1.1 thorpej #define R92C_TXAGC_MCS00_S 0
854 1.1 thorpej #define R92C_TXAGC_MCS01_M 0x0000ff00
855 1.1 thorpej #define R92C_TXAGC_MCS01_S 8
856 1.1 thorpej #define R92C_TXAGC_MCS02_M 0x00ff0000
857 1.1 thorpej #define R92C_TXAGC_MCS02_S 16
858 1.1 thorpej #define R92C_TXAGC_MCS03_M 0xff000000
859 1.1 thorpej #define R92C_TXAGC_MCS03_S 24
860 1.1 thorpej
861 1.1 thorpej /* Bits for R92C_TXAGC_MCS07_MCS04(x). */
862 1.1 thorpej #define R92C_TXAGC_MCS04_M 0x000000ff
863 1.1 thorpej #define R92C_TXAGC_MCS04_S 0
864 1.1 thorpej #define R92C_TXAGC_MCS05_M 0x0000ff00
865 1.1 thorpej #define R92C_TXAGC_MCS05_S 8
866 1.1 thorpej #define R92C_TXAGC_MCS06_M 0x00ff0000
867 1.1 thorpej #define R92C_TXAGC_MCS06_S 16
868 1.1 thorpej #define R92C_TXAGC_MCS07_M 0xff000000
869 1.1 thorpej #define R92C_TXAGC_MCS07_S 24
870 1.1 thorpej
871 1.1 thorpej /* Bits for R92C_TXAGC_MCS11_MCS08(x). */
872 1.1 thorpej #define R92C_TXAGC_MCS08_M 0x000000ff
873 1.1 thorpej #define R92C_TXAGC_MCS08_S 0
874 1.1 thorpej #define R92C_TXAGC_MCS09_M 0x0000ff00
875 1.1 thorpej #define R92C_TXAGC_MCS09_S 8
876 1.1 thorpej #define R92C_TXAGC_MCS10_M 0x00ff0000
877 1.1 thorpej #define R92C_TXAGC_MCS10_S 16
878 1.1 thorpej #define R92C_TXAGC_MCS11_M 0xff000000
879 1.1 thorpej #define R92C_TXAGC_MCS11_S 24
880 1.1 thorpej
881 1.1 thorpej /* Bits for R92C_TXAGC_MCS15_MCS12(x). */
882 1.1 thorpej #define R92C_TXAGC_MCS12_M 0x000000ff
883 1.1 thorpej #define R92C_TXAGC_MCS12_S 0
884 1.1 thorpej #define R92C_TXAGC_MCS13_M 0x0000ff00
885 1.1 thorpej #define R92C_TXAGC_MCS13_S 8
886 1.1 thorpej #define R92C_TXAGC_MCS14_M 0x00ff0000
887 1.1 thorpej #define R92C_TXAGC_MCS14_S 16
888 1.1 thorpej #define R92C_TXAGC_MCS15_M 0xff000000
889 1.1 thorpej #define R92C_TXAGC_MCS15_S 24
890 1.1 thorpej
891 1.1 thorpej /* Bits for R92C_LSSI_PARAM(i). */
892 1.1 thorpej #define R92C_LSSI_PARAM_DATA_M 0x000fffff
893 1.1 thorpej #define R92C_LSSI_PARAM_DATA_S 0
894 1.1 thorpej #define R92C_LSSI_PARAM_ADDR_M 0x03f00000
895 1.1 thorpej #define R92C_LSSI_PARAM_ADDR_S 20
896 1.1 thorpej #define R88E_LSSI_PARAM_ADDR_M 0x0ff00000
897 1.1 thorpej #define R88E_LSSI_PARAM_ADDR_S 20
898 1.1 thorpej
899 1.1 thorpej /* Bits for R92C_FPGA0_ANAPARAM2. */
900 1.1 thorpej #define R92C_FPGA0_ANAPARAM2_CBW20 0x00000400
901 1.1 thorpej
902 1.1 thorpej /* Bits for R92C_LSSI_READBACK(i). */
903 1.1 thorpej #define R92C_LSSI_READBACK_DATA_M 0x000fffff
904 1.1 thorpej #define R92C_LSSI_READBACK_DATA_S 0
905 1.1 thorpej
906 1.1 thorpej /* Bits for R92C_OFDM0_AGCCORE1(i). */
907 1.1 thorpej #define R92C_OFDM0_AGCCORE1_GAIN_M 0x0000007f
908 1.1 thorpej #define R92C_OFDM0_AGCCORE1_GAIN_S 0
909 1.1 thorpej
910 1.1 thorpej
911 1.1 thorpej /*
912 1.1 thorpej * USB registers.
913 1.1 thorpej */
914 1.1 thorpej #define R92C_USB_INFO 0xfe17
915 1.1 thorpej #define R92C_USB_SPECIAL_OPTION 0xfe55
916 1.1 thorpej #define R92C_USB_SPECIAL_OPTION 0xfe55
917 1.1 thorpej #define R92C_USB_HCPWM 0xfe57
918 1.1 thorpej #define R92C_USB_HRPWM 0xfe58
919 1.1 thorpej #define R92C_USB_DMA_AGG_TO 0xfe5b
920 1.1 thorpej #define R92C_USB_AGG_TO 0xfe5c
921 1.1 thorpej #define R92C_USB_AGG_TH 0xfe5d
922 1.1 thorpej #define R92C_USB_VID 0xfe60
923 1.1 thorpej #define R92C_USB_PID 0xfe62
924 1.1 thorpej #define R92C_USB_OPTIONAL 0xfe64
925 1.1 thorpej #define R92C_USB_EP 0xfe65
926 1.1 thorpej #define R92C_USB_PHY 0xfe68 /* XXX: linux-3.7.4(rtlwifi/rtl8192ce/reg.h) has 0xfe66 */
927 1.1 thorpej #define R92C_USB_MAC_ADDR 0xfe70
928 1.1 thorpej #define R92C_USB_STRING 0xfe80
929 1.1 thorpej
930 1.1 thorpej /* Bits for R92C_USB_SPECIAL_OPTION. */
931 1.1 thorpej #define R92C_USB_SPECIAL_OPTION_AGG_EN 0x08
932 1.1 thorpej #define R92C_USB_SPECIAL_OPTION_INT_BULK_SEL 0x10
933 1.1 thorpej
934 1.1 thorpej /* Bits for R92C_USB_EP. */
935 1.1 thorpej #define R92C_USB_EP_HQ_M 0x000f
936 1.1 thorpej #define R92C_USB_EP_HQ_S 0
937 1.1 thorpej #define R92C_USB_EP_NQ_M 0x00f0
938 1.1 thorpej #define R92C_USB_EP_NQ_S 4
939 1.1 thorpej #define R92C_USB_EP_LQ_M 0x0f00
940 1.1 thorpej #define R92C_USB_EP_LQ_S 8
941 1.1 thorpej
942 1.1 thorpej /* Bits for R92C_RD_CTRL. */
943 1.1 thorpej #define R92C_RD_CTRL_DIS_EDCA_CNT_DWN __BIT(11)
944 1.1 thorpej
945 1.1 thorpej /* Bits for R92C_INIDATA_RATE_SEL. */
946 1.1 thorpej #define R92C_RATE_SHORTGI __BIT(6)
947 1.1 thorpej
948 1.1 thorpej
949 1.1 thorpej /*
950 1.1 thorpej * Firmware base address.
951 1.1 thorpej */
952 1.1 thorpej #define R92C_FW_START_ADDR 0x1000
953 1.1 thorpej #define R92C_FW_PAGE_SIZE 4096
954 1.1 thorpej
955 1.1 thorpej
956 1.1 thorpej /*
957 1.1 thorpej * RF (6052) registers.
958 1.1 thorpej */
959 1.1 thorpej #define R92C_RF_AC 0x00
960 1.1 thorpej #define R92C_RF_IQADJ_G(i) (0x01 + (i))
961 1.1 thorpej #define R92C_RF_POW_TRSW 0x05
962 1.1 thorpej #define R92C_RF_GAIN_RX 0x06
963 1.1 thorpej #define R92C_RF_GAIN_TX 0x07
964 1.1 thorpej #define R92C_RF_TXM_IDAC 0x08
965 1.1 thorpej #define R92C_RF_BS_IQGEN 0x0f
966 1.1 thorpej #define R92C_RF_MODE1 0x10
967 1.1 thorpej #define R92C_RF_MODE2 0x11
968 1.1 thorpej #define R92C_RF_RX_AGC_HP 0x12
969 1.1 thorpej #define R92C_RF_TX_AGC 0x13
970 1.1 thorpej #define R92C_RF_BIAS 0x14
971 1.1 thorpej #define R92C_RF_IPA 0x15
972 1.1 thorpej #define R92C_RF_POW_ABILITY 0x17
973 1.1 thorpej #define R92C_RF_CHNLBW 0x18
974 1.1 thorpej #define R92C_RF_RX_G1 0x1a
975 1.1 thorpej #define R92C_RF_RX_G2 0x1b
976 1.1 thorpej #define R92C_RF_RX_BB2 0x1c
977 1.1 thorpej #define R92C_RF_RX_BB1 0x1d
978 1.1 thorpej #define R92C_RF_RCK1 0x1e
979 1.1 thorpej #define R92C_RF_RCK2 0x1f
980 1.1 thorpej #define R92C_RF_TX_G(i) (0x20 + (i))
981 1.1 thorpej #define R92C_RF_TX_BB1 0x23
982 1.1 thorpej #define R92C_RF_T_METER 0x24
983 1.1 thorpej #define R92C_RF_SYN_G(i) (0x25 + (i))
984 1.1 thorpej #define R92C_RF_RCK_OS 0x30
985 1.1 thorpej #define R92C_RF_TXPA_G(i) (0x31 + (i))
986 1.1 thorpej
987 1.1 thorpej /* Bits for R92C_RF_AC. */
988 1.1 thorpej #define R92C_RF_AC_MODE_M 0x70000
989 1.1 thorpej #define R92C_RF_AC_MODE_S 16
990 1.1 thorpej #define R92C_RF_AC_MODE_STANDBY 1
991 1.1 thorpej
992 1.1 thorpej /* Bits for R92C_RF_CHNLBW. */
993 1.1 thorpej #define R92C_RF_CHNLBW_CHNL_M 0x003ff
994 1.1 thorpej #define R92C_RF_CHNLBW_CHNL_S 0
995 1.1 thorpej #define R92C_RF_CHNLBW_BW20 0x00400
996 1.1 thorpej #define R88E_RF_CHNLBW_BW20 0x00c00
997 1.1 thorpej #define R92C_RF_CHNLBW_LCSTART 0x08000
998 1.1 thorpej
999 1.1 thorpej
1000 1.1 thorpej /*
1001 1.1 thorpej * CAM entries.
1002 1.1 thorpej */
1003 1.1 thorpej #define R92C_CAM_ENTRY_COUNT 32
1004 1.1 thorpej
1005 1.1 thorpej #define R92C_CAM_CTL0(entry) ((entry) * 8 + 0)
1006 1.1 thorpej #define R92C_CAM_CTL1(entry) ((entry) * 8 + 1)
1007 1.1 thorpej #define R92C_CAM_KEY(entry, i) ((entry) * 8 + 2 + (i))
1008 1.1 thorpej
1009 1.1 thorpej /* Bits for R92C_CAM_CTL0(i). */
1010 1.1 thorpej #define R92C_CAM_KEYID_M 0x00000003
1011 1.1 thorpej #define R92C_CAM_KEYID_S 0
1012 1.1 thorpej #define R92C_CAM_ALGO_M 0x0000001c
1013 1.1 thorpej #define R92C_CAM_ALGO_S 2
1014 1.1 thorpej #define R92C_CAM_ALGO_NONE 0
1015 1.1 thorpej #define R92C_CAM_ALGO_WEP40 1
1016 1.1 thorpej #define R92C_CAM_ALGO_TKIP 2
1017 1.1 thorpej #define R92C_CAM_ALGO_AES 4
1018 1.1 thorpej #define R92C_CAM_ALGO_WEP104 5
1019 1.1 thorpej #define R92C_CAM_VALID 0x00008000
1020 1.1 thorpej #define R92C_CAM_MACLO_M 0xffff0000
1021 1.1 thorpej #define R92C_CAM_MACLO_S 16
1022 1.1 thorpej
1023 1.1 thorpej /* Rate adaptation modes. */
1024 1.1 thorpej #define R92C_RAID_11BGN 0
1025 1.1 thorpej #define R92C_RAID_11GN 1
1026 1.1 thorpej #define R92C_RAID_11N 3
1027 1.1 thorpej #define R92C_RAID_11BG 4
1028 1.1 thorpej #define R92C_RAID_11G 5 /* "pure" 11g */
1029 1.1 thorpej #define R92C_RAID_11B 6
1030 1.1 thorpej
1031 1.1 thorpej
1032 1.1 thorpej /* Macros to access unaligned little-endian memory. */
1033 1.1 thorpej #define LE_READ_2(x) ((x)[0] | ((x)[1] << 8))
1034 1.2 msaitoh #define LE_READ_4(x) ((x)[0] | ((x)[1] << 8) | ((x)[2] << 16) | \
1035 1.2 msaitoh ((uint32_t)((x)[3]) << 24))
1036 1.1 thorpej
1037 1.1 thorpej /*
1038 1.1 thorpej * Macros to access subfields in registers.
1039 1.1 thorpej */
1040 1.1 thorpej /* Mask and Shift (getter). */
1041 1.1 thorpej #define MS(val, field) \
1042 1.1 thorpej (((val) & field##_M) >> field##_S)
1043 1.1 thorpej
1044 1.1 thorpej /* Shift and Mask (setter). */
1045 1.1 thorpej #define SM(field, val) \
1046 1.1 thorpej (((val) << field##_S) & field##_M)
1047 1.1 thorpej
1048 1.1 thorpej /* Rewrite. */
1049 1.1 thorpej #define RW(var, field, val) \
1050 1.1 thorpej (((var) & ~field##_M) | SM(field, val))
1051 1.1 thorpej
1052 1.1 thorpej /*
1053 1.1 thorpej * Firmware image header.
1054 1.1 thorpej */
1055 1.1 thorpej struct r92c_fw_hdr {
1056 1.1 thorpej /* QWORD0 */
1057 1.1 thorpej uint16_t signature;
1058 1.1 thorpej uint8_t category;
1059 1.1 thorpej uint8_t function;
1060 1.1 thorpej uint16_t version;
1061 1.1 thorpej uint16_t subversion;
1062 1.1 thorpej /* QWORD1 */
1063 1.1 thorpej uint8_t month;
1064 1.1 thorpej uint8_t date;
1065 1.1 thorpej uint8_t hour;
1066 1.1 thorpej uint8_t minute;
1067 1.1 thorpej uint16_t ramcodesize;
1068 1.1 thorpej uint16_t reserved2;
1069 1.1 thorpej /* QWORD2 */
1070 1.1 thorpej uint32_t svnidx;
1071 1.1 thorpej uint32_t reserved3;
1072 1.1 thorpej /* QWORD3 */
1073 1.1 thorpej uint32_t reserved4;
1074 1.1 thorpej uint32_t reserved5;
1075 1.1 thorpej } __packed;
1076 1.1 thorpej
1077 1.1 thorpej /*
1078 1.1 thorpej * Host to firmware commands.
1079 1.1 thorpej */
1080 1.1 thorpej struct r92c_fw_cmd {
1081 1.1 thorpej uint8_t id;
1082 1.1 thorpej #define R92C_CMD_AP_OFFLOAD 0
1083 1.1 thorpej #define R92C_CMD_SET_PWRMODE 1
1084 1.1 thorpej #define R92C_CMD_JOINBSS_RPT 2
1085 1.1 thorpej #define R92C_CMD_RSVD_PAGE 3
1086 1.1 thorpej #define R92C_CMD_RSSI 4
1087 1.1 thorpej #define R92C_CMD_RSSI_SETTING 5
1088 1.1 thorpej #define R92C_CMD_MACID_CONFIG 6
1089 1.1 thorpej #define R92C_CMD_MACID_PS_MODE 7
1090 1.1 thorpej #define R92C_CMD_P2P_PS_OFFLOAD 8
1091 1.1 thorpej #define R92C_CMD_SELECTIVE_SUSPEND 9
1092 1.1 thorpej #define R92C_CMD_USB_SUSPEND 43
1093 1.1 thorpej #define R92C_CMD_FLAG_EXT 0x80
1094 1.1 thorpej
1095 1.1 thorpej uint8_t msg[5];
1096 1.1 thorpej } __packed;
1097 1.1 thorpej
1098 1.1 thorpej /* Structure for R92C_CMD_RSSI_SETTING. */
1099 1.1 thorpej struct r92c_fw_cmd_rssi {
1100 1.1 thorpej uint8_t macid;
1101 1.1 thorpej uint8_t reserved;
1102 1.1 thorpej uint8_t pwdb;
1103 1.1 thorpej } __packed;
1104 1.1 thorpej
1105 1.1 thorpej /* Structure for R92C_CMD_MACID_CONFIG. */
1106 1.1 thorpej struct r92c_fw_cmd_macid_cfg {
1107 1.1 thorpej uint32_t mask;
1108 1.1 thorpej uint8_t macid;
1109 1.1 thorpej #define RTWN_MACID_BSS 0
1110 1.1 thorpej #define RTWN_MACID_BC 4 /* Broadcast. */
1111 1.1 thorpej #define RTWN_MACID_VALID 0x80
1112 1.1 thorpej #define RTWN_MACID_SHORTGI 0x20
1113 1.1 thorpej } __packed;
1114 1.1 thorpej
1115 1.1 thorpej /* Structure for R92C_CMD_SET_PWRMODE. */
1116 1.1 thorpej struct r92c_fw_cmd_setpwrmode {
1117 1.1 thorpej uint8_t mode;
1118 1.1 thorpej uint8_t smartps;
1119 1.1 thorpej uint8_t bcn_time; /* 100ms increments */
1120 1.1 thorpej } __packed;
1121 1.1 thorpej
1122 1.1 thorpej #define R92E_CMD_KEEP_ALIVE 0x03
1123 1.1 thorpej #define R92E_CMD_SET_PWRMODE 0x20
1124 1.1 thorpej #define R92E_CMD_RSSI_REPORT 0x42
1125 1.1 thorpej
1126 1.1 thorpej /* Structure for R92E_CMD_KEEP_ALIVE. */
1127 1.1 thorpej struct r92e_fw_cmd_keepalive {
1128 1.1 thorpej uint8_t mode;
1129 1.1 thorpej uint8_t period;
1130 1.1 thorpej } __packed;
1131 1.1 thorpej
1132 1.1 thorpej /* Structure for R92E_CMD_SET_PWRMODE. */
1133 1.1 thorpej struct r92e_fw_cmd_setpwrmode {
1134 1.1 thorpej uint8_t mode;
1135 1.1 thorpej #define FWMODE_ACTIVE 0
1136 1.1 thorpej #define FWMODE_LOW_POWER 1
1137 1.1 thorpej #define FWMODE_WMMPS 2
1138 1.1 thorpej uint8_t smartps;
1139 1.1 thorpej #define SRTPS_LOW_POWER 0
1140 1.1 thorpej #define SRTPS_POLL 0x10
1141 1.1 thorpej #define SRTPS_WMMPS 0x20
1142 1.1 thorpej uint8_t awake_int; /* 100ms increments. */
1143 1.1 thorpej uint8_t all_queue_apsd;
1144 1.1 thorpej uint8_t pwr_state;
1145 1.1 thorpej #define PS_RFOFF 0x0
1146 1.1 thorpej #define PS_RFON 0x4
1147 1.1 thorpej #define PS_ALLON 0xc
1148 1.1 thorpej } __packed;
1149 1.1 thorpej
1150 1.1 thorpej /* Structure for R92E_CMD_RSSI_REPORT. */
1151 1.1 thorpej struct r92e_fw_cmd_rssi {
1152 1.1 thorpej uint8_t macid;
1153 1.1 thorpej uint8_t reserved;
1154 1.1 thorpej uint8_t pwdb;
1155 1.1 thorpej uint8_t reserved2;
1156 1.1 thorpej } __packed;
1157 1.1 thorpej
1158 1.1 thorpej
1159 1.1 thorpej /*
1160 1.1 thorpej * RTL8192CU ROM image.
1161 1.1 thorpej */
1162 1.1 thorpej struct r92c_rom {
1163 1.1 thorpej uint16_t id; /* 0x8192 */
1164 1.1 thorpej uint8_t reserved1[5];
1165 1.1 thorpej uint8_t dbg_sel;
1166 1.1 thorpej uint16_t reserved2;
1167 1.1 thorpej uint16_t vid;
1168 1.1 thorpej uint16_t pid;
1169 1.1 thorpej uint8_t usb_opt;
1170 1.1 thorpej uint8_t ep_setting;
1171 1.1 thorpej uint16_t reserved3;
1172 1.1 thorpej uint8_t usb_phy;
1173 1.1 thorpej uint8_t reserved4[3];
1174 1.1 thorpej uint8_t macaddr[6];
1175 1.1 thorpej uint8_t string[61]; /* "Realtek" */
1176 1.1 thorpej uint8_t subcustomer_id;
1177 1.1 thorpej uint8_t cck_tx_pwr[R92C_MAX_CHAINS][3];
1178 1.1 thorpej uint8_t ht40_1s_tx_pwr[R92C_MAX_CHAINS][3];
1179 1.1 thorpej uint8_t ht40_2s_tx_pwr_diff[3];
1180 1.1 thorpej uint8_t ht20_tx_pwr_diff[3];
1181 1.1 thorpej uint8_t ofdm_tx_pwr_diff[3];
1182 1.1 thorpej uint8_t ht40_max_pwr[3];
1183 1.1 thorpej uint8_t ht20_max_pwr[3];
1184 1.1 thorpej uint8_t xtal_calib;
1185 1.1 thorpej uint8_t tssi[R92C_MAX_CHAINS];
1186 1.1 thorpej uint8_t thermal_meter;
1187 1.1 thorpej uint8_t rf_opt1;
1188 1.1 thorpej #define R92C_ROM_RF1_REGULATORY_M 0x07
1189 1.1 thorpej #define R92C_ROM_RF1_REGULATORY_S 0
1190 1.1 thorpej #define R92C_ROM_RF1_BOARD_TYPE_M 0xe0
1191 1.1 thorpej #define R92C_ROM_RF1_BOARD_TYPE_S 5
1192 1.1 thorpej #define R92C_BOARD_TYPE_DONGLE 0
1193 1.1 thorpej #define R92C_BOARD_TYPE_HIGHPA 1
1194 1.1 thorpej #define R92C_BOARD_TYPE_MINICARD 2
1195 1.1 thorpej #define R92C_BOARD_TYPE_SOLO 3
1196 1.1 thorpej #define R92C_BOARD_TYPE_COMBO 4
1197 1.1 thorpej
1198 1.1 thorpej uint8_t rf_opt2;
1199 1.1 thorpej uint8_t rf_opt3;
1200 1.1 thorpej uint8_t rf_opt4;
1201 1.1 thorpej uint8_t channel_plan;
1202 1.1 thorpej uint8_t version;
1203 1.1 thorpej uint8_t curstomer_id;
1204 1.1 thorpej } __packed;
1205 1.1 thorpej
1206 1.1 thorpej struct r88e_tx_pwr {
1207 1.1 thorpej uint8_t cck_tx_pwr[6];
1208 1.1 thorpej uint8_t ht40_tx_pwr[5];
1209 1.1 thorpej uint8_t ht20_ofdm_tx_pwr_diff;
1210 1.1 thorpej #define R88E_ROM_TXPWR_HT20_DIFF_M 0xf0
1211 1.1 thorpej #define R88E_ROM_TXPWR_HT20_DIFF_S 4
1212 1.1 thorpej #define R88E_ROM_TXPWR_OFDM_DIFF_M 0x0f
1213 1.1 thorpej #define R88E_ROM_TXPWR_OFDM_DIFF_S 0
1214 1.1 thorpej } __packed;
1215 1.1 thorpej
1216 1.1 thorpej /*
1217 1.1 thorpej * RTL8188EU ROM image.
1218 1.1 thorpej */
1219 1.1 thorpej struct r88e_rom {
1220 1.1 thorpej uint8_t reserved1[16];
1221 1.1 thorpej struct r88e_tx_pwr txpwr;
1222 1.1 thorpej uint8_t reserved2[156];
1223 1.1 thorpej uint8_t channel_plan;
1224 1.1 thorpej uint8_t xtal;
1225 1.1 thorpej uint8_t thermal_meter;
1226 1.1 thorpej uint8_t reserved3[6];
1227 1.1 thorpej uint8_t rf_board_opt;
1228 1.1 thorpej uint8_t rf_feature_opt;
1229 1.1 thorpej uint8_t rf_bt_opt;
1230 1.1 thorpej uint8_t version;
1231 1.1 thorpej uint8_t customer_id;
1232 1.1 thorpej uint8_t reserved4[3];
1233 1.1 thorpej uint8_t rf_ant_opt;
1234 1.1 thorpej uint8_t reserved5[6];
1235 1.1 thorpej uint16_t vid;
1236 1.1 thorpej uint16_t pid;
1237 1.1 thorpej uint8_t usb_opt;
1238 1.1 thorpej uint8_t reserved6[2];
1239 1.1 thorpej uint8_t macaddr[IEEE80211_ADDR_LEN];
1240 1.1 thorpej uint8_t reserved7[2];
1241 1.1 thorpej uint8_t string[33]; /* "Realtek" */
1242 1.1 thorpej uint8_t reserved8[256];
1243 1.1 thorpej } __packed;
1244 1.1 thorpej
1245 1.1 thorpej /* Rx PHY descriptor. */
1246 1.1 thorpej struct r92c_rx_phystat {
1247 1.1 thorpej uint32_t phydw0;
1248 1.1 thorpej uint32_t phydw1;
1249 1.1 thorpej uint32_t phydw2;
1250 1.1 thorpej uint32_t phydw3;
1251 1.1 thorpej uint32_t phydw4;
1252 1.1 thorpej uint32_t phydw5;
1253 1.1 thorpej uint32_t phydw6;
1254 1.1 thorpej uint32_t phydw7;
1255 1.1 thorpej } __packed __aligned(4);
1256 1.1 thorpej
1257 1.1 thorpej struct r88e_rx_phystat {
1258 1.1 thorpej uint8_t path_agc[2];
1259 1.1 thorpej uint8_t ch_corr[2];
1260 1.1 thorpej uint8_t sq_rpt;
1261 1.1 thorpej uint8_t agc_rpt;
1262 1.1 thorpej uint8_t rpt_b;
1263 1.1 thorpej uint8_t reserved1;
1264 1.1 thorpej uint8_t noise_power;
1265 1.1 thorpej int8_t path_cfotail[2];
1266 1.1 thorpej uint8_t pcts_mask[2];
1267 1.1 thorpej int8_t stream_rxevm[2];
1268 1.1 thorpej uint8_t path_rxsnr[2];
1269 1.1 thorpej uint8_t noise_power_db_lsb;
1270 1.1 thorpej uint8_t reserved2[3];
1271 1.1 thorpej uint8_t stream_csi[2];
1272 1.1 thorpej uint8_t stream_target_csi[2];
1273 1.1 thorpej int8_t sig_evm;
1274 1.1 thorpej uint8_t reserved3;
1275 1.1 thorpej uint8_t reserved4;
1276 1.1 thorpej } __packed;
1277 1.1 thorpej
1278 1.1 thorpej /* Rx PHY CCK descriptor. */
1279 1.1 thorpej struct r92c_rx_cck {
1280 1.1 thorpej uint8_t adc_pwdb[4];
1281 1.1 thorpej uint8_t sq_rpt;
1282 1.1 thorpej uint8_t agc_rpt;
1283 1.1 thorpej } __packed;
1284 1.1 thorpej
1285 1.1 thorpej struct r88e_rx_cck {
1286 1.1 thorpej uint8_t path_agc[2];
1287 1.1 thorpej uint8_t sig_qual;
1288 1.1 thorpej uint8_t agc_rpt;
1289 1.1 thorpej uint8_t rpt_b;
1290 1.1 thorpej uint8_t reserved1;
1291 1.1 thorpej uint8_t noise_power;
1292 1.1 thorpej uint8_t ath_cfotail[2];
1293 1.1 thorpej uint8_t pcts_mask[2];
1294 1.1 thorpej uint8_t stream_rxevm[2];
1295 1.1 thorpej uint8_t path_rxsnr[2];
1296 1.1 thorpej uint8_t noise_power_db_lsb;
1297 1.1 thorpej uint8_t reserved2[3];
1298 1.1 thorpej uint8_t stream_csi[2];
1299 1.1 thorpej uint8_t stream_target_csi[2];
1300 1.1 thorpej uint8_t sig_evm;
1301 1.1 thorpej uint8_t reserved3;
1302 1.1 thorpej uint8_t reserved4;
1303 1.1 thorpej } __packed;
1304 1.1 thorpej
1305 1.1 thorpej /* Rx MAC descriptor. */
1306 1.1 thorpej struct r92c_rx_desc_pci {
1307 1.1 thorpej uint32_t rxdw0;
1308 1.1 thorpej uint32_t rxdw1;
1309 1.1 thorpej uint32_t rxdw2;
1310 1.1 thorpej uint32_t rxdw3;
1311 1.1 thorpej uint32_t rxdw4;
1312 1.1 thorpej uint32_t rxdw5;
1313 1.1 thorpej uint32_t rxbufaddr;
1314 1.1 thorpej uint32_t rxbufaddr64;
1315 1.1 thorpej } __packed __aligned(4);
1316 1.1 thorpej
1317 1.1 thorpej struct r92c_rx_desc_usb {
1318 1.1 thorpej uint32_t rxdw0;
1319 1.1 thorpej uint32_t rxdw1;
1320 1.1 thorpej uint32_t rxdw2;
1321 1.1 thorpej uint32_t rxdw3;
1322 1.1 thorpej uint32_t rxdw4;
1323 1.1 thorpej uint32_t rxdw5;
1324 1.1 thorpej } __packed __aligned(4);
1325 1.1 thorpej
1326 1.1 thorpej #define R92C_RXDW0_PKTLEN_M 0x00003fff
1327 1.1 thorpej #define R92C_RXDW0_PKTLEN_S 0
1328 1.1 thorpej #define R92C_RXDW0_CRCERR 0x00004000
1329 1.1 thorpej #define R92C_RXDW0_ICVERR 0x00008000
1330 1.1 thorpej #define R92C_RXDW0_INFOSZ_M 0x000f0000
1331 1.1 thorpej #define R92C_RXDW0_INFOSZ_S 16
1332 1.1 thorpej #define R92C_RXDW0_QOS 0x00800000
1333 1.1 thorpej #define R92C_RXDW0_SHIFT_M 0x03000000
1334 1.1 thorpej #define R92C_RXDW0_SHIFT_S 24
1335 1.1 thorpej #define R92C_RXDW0_PHYST 0x04000000
1336 1.1 thorpej #define R92C_RXDW0_DECRYPTED 0x08000000
1337 1.1 thorpej #define R92C_RXDW0_LS 0x10000000
1338 1.1 thorpej #define R92C_RXDW0_FS 0x20000000
1339 1.1 thorpej #define R92C_RXDW0_EOR 0x40000000
1340 1.1 thorpej #define R92C_RXDW0_OWN 0x80000000
1341 1.1 thorpej
1342 1.1 thorpej #define R92C_RXDW2_PKTCNT_M 0x00ff0000
1343 1.1 thorpej #define R92C_RXDW2_PKTCNT_S 16
1344 1.3 nat #define R92E_RXDW2_PKTCNT_M 0x3fc00000
1345 1.3 nat #define R92E_RXDW2_PKTCNT_S 22
1346 1.1 thorpej
1347 1.1 thorpej #define R92C_RXDW3_RATE_M 0x0000003f
1348 1.1 thorpej #define R92C_RXDW3_RATE_S 0
1349 1.1 thorpej #define R92C_RXDW3_HT 0x00000040
1350 1.1 thorpej #define R92C_RXDW3_HTC 0x00000400
1351 1.1 thorpej #define R88E_RXDW3_RPT_M 0x0000c000
1352 1.1 thorpej #define R88E_RXDW3_RPT_S 14
1353 1.1 thorpej #define R88E_RXDW3_RPT_RX 0
1354 1.1 thorpej #define R88E_RXDW3_RPT_TX1 1
1355 1.1 thorpej #define R88E_RXDW3_RPT_TX2 2
1356 1.1 thorpej #define R88E_RXDW3_RPT_HIS 3
1357 1.1 thorpej
1358 1.1 thorpej /* Tx MAC descriptor. */
1359 1.1 thorpej struct r92c_tx_desc_pci {
1360 1.1 thorpej uint32_t txdw0;
1361 1.1 thorpej uint32_t txdw1;
1362 1.1 thorpej uint32_t txdw2;
1363 1.1 thorpej uint16_t txdw3;
1364 1.1 thorpej uint16_t txdseq;
1365 1.1 thorpej uint32_t txdw4;
1366 1.1 thorpej uint32_t txdw5;
1367 1.1 thorpej uint32_t txdw6;
1368 1.1 thorpej uint16_t txbufsize;
1369 1.1 thorpej uint16_t pad;
1370 1.1 thorpej uint32_t txbufaddr;
1371 1.1 thorpej uint32_t txbufaddr64;
1372 1.1 thorpej uint32_t nextdescaddr;
1373 1.1 thorpej uint32_t nextdescaddr64;
1374 1.1 thorpej uint32_t reserved[4];
1375 1.1 thorpej } __packed __aligned(4);
1376 1.1 thorpej
1377 1.1 thorpej struct r92c_tx_desc_usb {
1378 1.1 thorpej uint32_t txdw0;
1379 1.1 thorpej uint32_t txdw1;
1380 1.1 thorpej uint32_t txdw2;
1381 1.1 thorpej uint16_t txdw3;
1382 1.1 thorpej uint16_t txdseq;
1383 1.1 thorpej uint32_t txdw4;
1384 1.1 thorpej uint32_t txdw5;
1385 1.1 thorpej uint32_t txdw6;
1386 1.1 thorpej uint16_t txdsum;
1387 1.1 thorpej uint16_t pad;
1388 1.1 thorpej uint32_t txdw7;
1389 1.1 thorpej uint16_t txdseq2;
1390 1.1 thorpej #define R92E_HWSEQ_SHIFT 11
1391 1.1 thorpej #define R92E_HWSEQ_MASK 0x00000fffff
1392 1.1 thorpej uint16_t txdw8;
1393 1.1 thorpej } __packed __aligned(4);
1394 1.1 thorpej
1395 1.1 thorpej #define R92C_TXDW0_PKTLEN_M 0x0000ffff
1396 1.1 thorpej #define R92C_TXDW0_PKTLEN_S 0
1397 1.1 thorpej #define R92C_TXDW0_OFFSET_M 0x00ff0000
1398 1.1 thorpej #define R92C_TXDW0_OFFSET_S 16
1399 1.1 thorpej #define R92C_TXDW0_BMCAST 0x01000000
1400 1.1 thorpej #define R92C_TXDW0_LSG 0x04000000
1401 1.1 thorpej #define R92C_TXDW0_FSG 0x08000000
1402 1.1 thorpej #define R92C_TXDW0_OWN 0x80000000
1403 1.1 thorpej
1404 1.1 thorpej #define R92C_TXDW1_MACID_M 0x0000001f
1405 1.1 thorpej #define R92C_TXDW1_MACID_S 0
1406 1.1 thorpej #define R88E_TXDW1_MACID_M 0x0000003f
1407 1.1 thorpej #define R88E_TXDW1_MACID_S 0
1408 1.1 thorpej #define R92C_TXDW1_AGGEN 0x00000020
1409 1.1 thorpej #define R92C_TXDW1_AGGBK 0x00000040
1410 1.1 thorpej #define R92C_TXDW1_QSEL_M 0x00001f00
1411 1.1 thorpej #define R92C_TXDW1_QSEL_S 8
1412 1.1 thorpej #define R92C_TXDW1_QSEL_BE 0x00
1413 1.1 thorpej #define R92C_TXDW1_QSEL_BK 0x02
1414 1.1 thorpej #define R92C_TXDW1_QSEL_VI 0x05
1415 1.1 thorpej #define R92C_TXDW1_QSEL_VO 0x07
1416 1.1 thorpej #define R92C_TXDW1_QSEL_BEACON 0x10
1417 1.1 thorpej #define R92C_TXDW1_QSEL_HIGH 0x11
1418 1.1 thorpej #define R92C_TXDW1_QSEL_MGNT 0x12
1419 1.1 thorpej #define R92C_TXDW1_QSEL_CMD 0x13
1420 1.1 thorpej #define R92C_TXDW1_RAID_M 0x000f0000
1421 1.1 thorpej #define R92C_TXDW1_RAID_S 16
1422 1.1 thorpej #define R92C_TXDW1_CIPHER_M 0x00c00000
1423 1.1 thorpej #define R92C_TXDW1_CIPHER_S 22
1424 1.1 thorpej #define R92C_TXDW1_CIPHER_NONE 0
1425 1.1 thorpej #define R92C_TXDW1_CIPHER_RC4 1
1426 1.1 thorpej #define R92C_TXDW1_CIPHER_AES 3
1427 1.1 thorpej #define R92C_TXDW1_PKTOFF_M 0x7c000000
1428 1.1 thorpej #define R92C_TXDW1_PKTOFF_S 26
1429 1.1 thorpej
1430 1.1 thorpej #define R88E_TXDW2_AGGBK 0x00010000
1431 1.1 thorpej #define R92C_TXDW2_CCX_RPT 0x00080000
1432 1.1 thorpej
1433 1.1 thorpej #define R92E_TXDW3_AGGBK 0x00000100
1434 1.1 thorpej
1435 1.1 thorpej #define R92C_HWSEQ_EN 0x00008000
1436 1.1 thorpej
1437 1.1 thorpej #define R92C_TXDW4_RTSRATE_M 0x0000003f
1438 1.1 thorpej #define R92C_TXDW4_RTSRATE_S 0
1439 1.1 thorpej #define R92C_TXDW4_QOS 0x00000040
1440 1.1 thorpej #define R92C_TXDW4_HWSEQ 0x00000080
1441 1.1 thorpej #define R92C_TXDW4_DRVRATE 0x00000100
1442 1.1 thorpej #define R92C_TXDW4_CTS2SELF 0x00000800
1443 1.1 thorpej #define R92C_TXDW4_RTSEN 0x00001000
1444 1.1 thorpej #define R92C_TXDW4_HWRTSEN 0x00002000
1445 1.1 thorpej #define R92C_TXDW4_SCO_M 0x003f0000
1446 1.1 thorpej #define R92C_TXDW4_SCO_S 20
1447 1.1 thorpej #define R92C_TXDW4_SCO_SCA 1
1448 1.1 thorpej #define R92C_TXDW4_SCO_SCB 2
1449 1.1 thorpej #define R92C_TXDW4_40MHZ 0x02000000
1450 1.1 thorpej
1451 1.1 thorpej #define R92C_TXDW5_DATARATE_M 0x0000003f
1452 1.1 thorpej #define R92C_TXDW5_DATARATE_S 0
1453 1.1 thorpej #define R92C_TXDW5_SGI 0x00000040
1454 1.1 thorpej #define R92C_TXDW5_DATARATE_FBLIMIT_M 0x00001f00
1455 1.1 thorpej #define R92C_TXDW5_DATARATE_FBLIMIT_S 8
1456 1.1 thorpej #define R92C_TXDW5_RTSRATE_FBLIMIT_M 0x0001e000
1457 1.1 thorpej #define R92C_TXDW5_RTSRATE_FBLIMIT_S 13
1458 1.1 thorpej #define R92C_TXDW5_RETRY_LIMIT_ENABLE 0x00020000
1459 1.1 thorpej #define R92C_TXDW5_DATA_RETRY_LIMIT_M 0x00fc0000
1460 1.1 thorpej #define R92C_TXDW5_DATA_RETRY_LIMIT_S 18
1461 1.1 thorpej #define R92C_TXDW5_AGGNUM_M 0xff000000
1462 1.1 thorpej #define R92C_TXDW5_AGGNUM_S 24
1463 1.1 thorpej
1464 1.1 thorpej /* Tx report (type 1). */
1465 1.1 thorpej struct r88e_tx_rpt_ccx {
1466 1.1 thorpej uint8_t rptb0;
1467 1.1 thorpej #define R88E_RPTB6_PKT_NUM_M 0x0e
1468 1.1 thorpej #define R88E_RPTB6_PKT_NUM_S 1
1469 1.1 thorpej #define R88E_RPTB0_INT_CCX 0x80
1470 1.1 thorpej
1471 1.1 thorpej uint8_t rptb1;
1472 1.1 thorpej #define R88E_RPTB1_MACID_M 0x3f
1473 1.1 thorpej #define R88E_RPTB1_MACID_S 0
1474 1.1 thorpej #define R88E_RPTB1_PKT_OK 0x40
1475 1.1 thorpej #define R88E_RPTB1_BMC 0x80
1476 1.1 thorpej
1477 1.1 thorpej uint8_t rptb2;
1478 1.1 thorpej #define R88E_RPTB2_RETRY_CNT_M 0x3f
1479 1.1 thorpej #define R88E_RPTB2_RETRY_CNT_S 0
1480 1.1 thorpej #define R88E_RPTB2_LIFE_EXPIRE 0x40
1481 1.1 thorpej #define R88E_RPTB2_RETRY_OVER 0x80
1482 1.1 thorpej
1483 1.1 thorpej uint8_t queue_time_low;
1484 1.1 thorpej uint8_t queue_time_high;
1485 1.1 thorpej uint8_t final_rate;
1486 1.1 thorpej uint8_t rptb6;
1487 1.1 thorpej #define R88E_RPTB6_QSEL_M 0xf0
1488 1.1 thorpej #define R88E_RPTB6_QSEL_S 4
1489 1.1 thorpej
1490 1.1 thorpej uint8_t rptb7;
1491 1.1 thorpej } __packed;
1492 1.1 thorpej
1493 1.1 thorpej /*
1494 1.1 thorpej * C2H event structure.
1495 1.1 thorpej */
1496 1.1 thorpej #define R92C_C2H_MSG_MAX_LEN 16
1497 1.1 thorpej
1498 1.1 thorpej struct r92c_c2h_evt {
1499 1.1 thorpej uint8_t evtb0;
1500 1.1 thorpej #define R92C_C2H_EVTB0_ID_M 0x0f
1501 1.1 thorpej #define R92C_C2H_EVTB0_ID_S 0
1502 1.1 thorpej #define R92C_C2H_EVTB0_LEN_M 0xf0
1503 1.1 thorpej #define R92C_C2H_EVTB0_LEN_S 4
1504 1.1 thorpej
1505 1.1 thorpej uint8_t seq;
1506 1.1 thorpej
1507 1.1 thorpej /* Followed by payload (see below). */
1508 1.1 thorpej } __packed;
1509 1.1 thorpej
1510 1.1 thorpej /* Bits for R92C_C2HEVT_CLEAR. */
1511 1.1 thorpej #define R92C_C2HEVT_HOST_CLOSE 0x00
1512 1.1 thorpej #define R92C_C2HEVT_FW_CLOSE 0xff
1513 1.1 thorpej
1514 1.1 thorpej /*
1515 1.1 thorpej * C2H event types.
1516 1.1 thorpej */
1517 1.1 thorpej #define R92C_C2HEVT_DEBUG 0
1518 1.1 thorpej #define R92C_C2HEVT_TX_REPORT 3
1519 1.1 thorpej #define R92C_C2HEVT_EXT_RA_RPT 6
1520 1.1 thorpej
1521 1.1 thorpej /* Structure for R92C_C2H_EVT_TX_REPORT event. */
1522 1.1 thorpej struct r92c_c2h_tx_rpt {
1523 1.1 thorpej uint8_t rptb0;
1524 1.1 thorpej #define R92C_RPTB0_RETRY_CNT_M 0x3f
1525 1.1 thorpej #define R92C_RPTB0_RETRY_CNT_S 0
1526 1.1 thorpej
1527 1.1 thorpej uint8_t rptb1; /* XXX junk */
1528 1.1 thorpej #define R92C_RPTB1_RTS_RETRY_CNT_M 0x3f
1529 1.1 thorpej #define R92C_RPTB1_RTS_RETRY_CNT_S 0
1530 1.1 thorpej
1531 1.1 thorpej uint8_t queue_time_low;
1532 1.1 thorpej uint8_t queue_time_high;
1533 1.1 thorpej uint8_t rptb4;
1534 1.1 thorpej #define R92C_RPTB4_MISSED_PKT_NUM_M 0x1f
1535 1.1 thorpej #define R92C_RPTB4_MISSED_PKT_NUM_S 0
1536 1.1 thorpej
1537 1.1 thorpej uint8_t rptb5;
1538 1.1 thorpej #define R92C_RPTB5_MACID_M 0x1f
1539 1.1 thorpej #define R92C_RPTB5_MACID_S 0
1540 1.1 thorpej #define R92C_RPTB5_DES1_FRAGSSN_M 0xe0
1541 1.1 thorpej #define R92C_RPTB5_DES1_FRAGSSN_S 5
1542 1.1 thorpej
1543 1.1 thorpej uint8_t rptb6;
1544 1.1 thorpej #define R92C_RPTB6_RPT_PKT_NUM_M 0x1f
1545 1.1 thorpej #define R92C_RPTB6_RPT_PKT_NUM_S 0
1546 1.1 thorpej #define R92C_RPTB6_PKT_DROP 0x20
1547 1.1 thorpej #define R92C_RPTB6_LIFE_EXPIRE 0x40
1548 1.1 thorpej #define R92C_RPTB6_RETRY_OVER 0x80
1549 1.1 thorpej
1550 1.1 thorpej uint8_t rptb7;
1551 1.1 thorpej #define R92C_RPTB7_EDCA_M 0x0f
1552 1.1 thorpej #define R92C_RPTB7_EDCA_S 0
1553 1.1 thorpej #define R92C_RPTB7_BMC 0x20
1554 1.1 thorpej #define R92C_RPTB7_PKT_OK 0x40
1555 1.1 thorpej #define R92C_RPTB7_INT_CCX 0x80
1556 1.1 thorpej } __packed;
1557 1.1 thorpej
1558 1.1 thorpej #endif /* _DEV_IC_RTWNREG_H_ */
1559