blob: 3cc541d13d679e8cc3217e0650919c2f313730c0 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01002 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07003 <http://rt2x00.serialmonkey.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
Jeff Kirshera05b8c52013-12-06 03:32:11 -080016 along with this program; if not, see <http://www.gnu.org/licenses/>.
Ivo van Doorn95ea3622007-09-25 17:57:13 -070017 */
18
19/*
20 Module: rt2x00
21 Abstract: rt2x00 generic register information.
22 */
23
24#ifndef RT2X00REG_H
25#define RT2X00REG_H
26
27/*
Ivo van Doorn2bb057d2008-08-04 16:37:44 +020028 * RX crypto status
29 */
30enum rx_crypto {
31 RX_CRYPTO_SUCCESS = 0,
32 RX_CRYPTO_FAIL_ICV = 1,
33 RX_CRYPTO_FAIL_MIC = 2,
34 RX_CRYPTO_FAIL_KEY = 3,
35};
36
37/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -070038 * Antenna values
39 */
40enum antenna {
41 ANTENNA_SW_DIVERSITY = 0,
42 ANTENNA_A = 1,
43 ANTENNA_B = 2,
44 ANTENNA_HW_DIVERSITY = 3,
45};
46
47/*
48 * Led mode values.
49 */
50enum led_mode {
51 LED_MODE_DEFAULT = 0,
52 LED_MODE_TXRX_ACTIVITY = 1,
53 LED_MODE_SIGNAL_STRENGTH = 2,
54 LED_MODE_ASUS = 3,
55 LED_MODE_ALPHA = 4,
56};
57
58/*
Ivo van Doornfeb24692007-10-06 14:14:29 +020059 * TSF sync values
60 */
61enum tsf_sync {
62 TSF_SYNC_NONE = 0,
63 TSF_SYNC_INFRA = 1,
Helmut Schaaab8966d2010-07-11 12:30:13 +020064 TSF_SYNC_ADHOC = 2,
65 TSF_SYNC_AP_NONE = 3,
Ivo van Doornfeb24692007-10-06 14:14:29 +020066};
67
68/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -070069 * Device states
70 */
71enum dev_state {
72 STATE_DEEP_SLEEP = 0,
73 STATE_SLEEP = 1,
74 STATE_STANDBY = 2,
75 STATE_AWAKE = 3,
76
77/*
78 * Additional device states, these values are
79 * not strict since they are not directly passed
80 * into the device.
81 */
82 STATE_RADIO_ON,
83 STATE_RADIO_OFF,
Ivo van Doorn95ea3622007-09-25 17:57:13 -070084 STATE_RADIO_IRQ_ON,
85 STATE_RADIO_IRQ_OFF,
86};
87
88/*
89 * IFS backoff values
90 */
91enum ifs {
92 IFS_BACKOFF = 0,
93 IFS_SIFS = 1,
94 IFS_NEW_BACKOFF = 2,
95 IFS_NONE = 3,
96};
97
98/*
Helmut Schaa1affa092010-05-07 11:03:08 +020099 * IFS backoff values for HT devices
100 */
101enum txop {
102 TXOP_HTTXOP = 0,
103 TXOP_PIFS = 1,
104 TXOP_SIFS = 2,
105 TXOP_BACKOFF = 3,
106};
107
108/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700109 * Cipher types for hardware encryption
110 */
111enum cipher {
112 CIPHER_NONE = 0,
113 CIPHER_WEP64 = 1,
114 CIPHER_WEP128 = 2,
115 CIPHER_TKIP = 3,
116 CIPHER_AES = 4,
117/*
118 * The following fields were added by rt61pci and rt73usb.
119 */
120 CIPHER_CKIP64 = 5,
121 CIPHER_CKIP128 = 6,
Ivo van Doorn2bb057d2008-08-04 16:37:44 +0200122 CIPHER_TKIP_NO_MIC = 7, /* Don't send to device */
123
124/*
125 * Max cipher type.
126 * Note that CIPHER_NONE isn't counted, and CKIP64 and CKIP128
127 * are excluded due to limitations in mac80211.
128 */
129 CIPHER_MAX = 4,
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700130};
131
132/*
Ivo van Doorn076f9582008-12-20 10:59:02 +0100133 * Rate modulations
134 */
135enum rate_modulation {
136 RATE_MODE_CCK = 0,
137 RATE_MODE_OFDM = 1,
138 RATE_MODE_HT_MIX = 2,
139 RATE_MODE_HT_GREENFIELD = 3,
140};
141
142/*
Ivo van Doorn0cbe0062009-01-28 00:33:47 +0100143 * Firmware validation error codes
144 */
145enum firmware_errors {
146 FW_OK,
147 FW_BAD_CRC,
148 FW_BAD_LENGTH,
149 FW_BAD_VERSION,
150};
151
152/*
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700153 * Register handlers.
154 * We store the position of a register field inside a field structure,
155 * This will simplify the process of setting and reading a certain field
156 * inside the register while making sure the process remains byte order safe.
157 */
158struct rt2x00_field8 {
159 u8 bit_offset;
160 u8 bit_mask;
161};
162
163struct rt2x00_field16 {
164 u16 bit_offset;
165 u16 bit_mask;
166};
167
168struct rt2x00_field32 {
169 u32 bit_offset;
170 u32 bit_mask;
171};
172
173/*
174 * Power of two check, this will check
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200175 * if the mask that has been given contains and contiguous set of bits.
176 * Note that we cannot use the is_power_of_2() function since this
177 * check must be done at compile-time.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700178 */
179#define is_power_of_two(x) ( !((x) & ((x)-1)) )
180#define low_bit_mask(x) ( ((x)-1) & ~(x) )
Boaz Harrosh445df542008-09-01 14:47:19 +0300181#define is_valid_mask(x) is_power_of_two(1LU + (x) + low_bit_mask(x))
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700182
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200183/*
Luis Correia49513482009-07-17 21:39:19 +0200184 * Macros to find first set bit in a variable.
185 * These macros behave the same as the __ffs() functions but
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200186 * the most important difference that this is done during
187 * compile-time rather then run-time.
188 */
189#define compile_ffs2(__x) \
Ivo van Doorn4ae11682008-06-06 22:58:29 +0200190 __builtin_choose_expr(((__x) & 0x1), 0, 1)
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200191
192#define compile_ffs4(__x) \
Ivo van Doorn4ae11682008-06-06 22:58:29 +0200193 __builtin_choose_expr(((__x) & 0x3), \
194 (compile_ffs2((__x))), \
195 (compile_ffs2((__x) >> 2) + 2))
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200196
197#define compile_ffs8(__x) \
Ivo van Doorn4ae11682008-06-06 22:58:29 +0200198 __builtin_choose_expr(((__x) & 0xf), \
199 (compile_ffs4((__x))), \
200 (compile_ffs4((__x) >> 4) + 4))
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200201
202#define compile_ffs16(__x) \
Ivo van Doorn4ae11682008-06-06 22:58:29 +0200203 __builtin_choose_expr(((__x) & 0xff), \
204 (compile_ffs8((__x))), \
205 (compile_ffs8((__x) >> 8) + 8))
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200206
207#define compile_ffs32(__x) \
Ivo van Doorn4ae11682008-06-06 22:58:29 +0200208 __builtin_choose_expr(((__x) & 0xffff), \
209 (compile_ffs16((__x))), \
210 (compile_ffs16((__x) >> 16) + 16))
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200211
212/*
213 * This macro will check the requirements for the FIELD{8,16,32} macros
214 * The mask should be a constant non-zero contiguous set of bits which
215 * does not exceed the given typelimit.
216 */
217#define FIELD_CHECK(__mask, __type) \
Boaz Harrosh445df542008-09-01 14:47:19 +0300218 BUILD_BUG_ON(!(__mask) || \
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200219 !is_valid_mask(__mask) || \
220 (__mask) != (__type)(__mask)) \
221
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700222#define FIELD8(__mask) \
223({ \
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200224 FIELD_CHECK(__mask, u8); \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700225 (struct rt2x00_field8) { \
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200226 compile_ffs8(__mask), (__mask) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700227 }; \
228})
229
230#define FIELD16(__mask) \
231({ \
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200232 FIELD_CHECK(__mask, u16); \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700233 (struct rt2x00_field16) { \
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200234 compile_ffs16(__mask), (__mask) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700235 }; \
236})
237
238#define FIELD32(__mask) \
239({ \
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200240 FIELD_CHECK(__mask, u32); \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700241 (struct rt2x00_field32) { \
Ivo van Doorn9dad92b2008-06-03 22:45:35 +0200242 compile_ffs32(__mask), (__mask) \
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700243 }; \
244})
245
Ivo van Doornc483bb42008-06-03 20:29:43 +0200246#define SET_FIELD(__reg, __type, __field, __value)\
247({ \
248 typecheck(__type, __field); \
249 *(__reg) &= ~((__field).bit_mask); \
250 *(__reg) |= ((__value) << \
251 ((__field).bit_offset)) & \
252 ((__field).bit_mask); \
253})
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700254
Ivo van Doornc483bb42008-06-03 20:29:43 +0200255#define GET_FIELD(__reg, __type, __field) \
256({ \
257 typecheck(__type, __field); \
258 ((__reg) & ((__field).bit_mask)) >> \
259 ((__field).bit_offset); \
260})
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700261
Ivo van Doornc483bb42008-06-03 20:29:43 +0200262#define rt2x00_set_field32(__reg, __field, __value) \
263 SET_FIELD(__reg, struct rt2x00_field32, __field, __value)
264#define rt2x00_get_field32(__reg, __field) \
265 GET_FIELD(__reg, struct rt2x00_field32, __field)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700266
Ivo van Doornc483bb42008-06-03 20:29:43 +0200267#define rt2x00_set_field16(__reg, __field, __value) \
268 SET_FIELD(__reg, struct rt2x00_field16, __field, __value)
269#define rt2x00_get_field16(__reg, __field) \
270 GET_FIELD(__reg, struct rt2x00_field16, __field)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700271
Ivo van Doornc483bb42008-06-03 20:29:43 +0200272#define rt2x00_set_field8(__reg, __field, __value) \
273 SET_FIELD(__reg, struct rt2x00_field8, __field, __value)
274#define rt2x00_get_field8(__reg, __field) \
275 GET_FIELD(__reg, struct rt2x00_field8, __field)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700276
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700277#endif /* RT2X00REG_H */