iPXE
reg.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008-2009 Atheros Communications Inc.
3  *
4  * Modified for iPXE by Scott K Logan <logans@cottsay.net> July 2011
5  * Original from Linux kernel 3.0.1
6  *
7  * Permission to use, copy, modify, and/or distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifndef ATH_REGISTERS_H
21 #define ATH_REGISTERS_H
22 
23 FILE_LICENCE ( BSD2 );
24 FILE_SECBOOT ( FORBIDDEN );
25 
26 #define AR_MIBC 0x0040
27 #define AR_MIBC_COW 0x00000001
28 #define AR_MIBC_FMC 0x00000002
29 #define AR_MIBC_CMC 0x00000004
30 #define AR_MIBC_MCS 0x00000008
31 
32 /*
33  * BSSID mask registers. See ath_hw_set_bssid_mask()
34  * for detailed documentation about these registers.
35  */
36 #define AR_BSSMSKL 0x80e0
37 #define AR_BSSMSKU 0x80e4
38 
39 #define AR_TFCNT 0x80ec
40 #define AR_RFCNT 0x80f0
41 #define AR_RCCNT 0x80f4
42 #define AR_CCCNT 0x80f8
43 
44 #define AR_KEYTABLE_0 0x8800
45 #define AR_KEYTABLE(_n) (AR_KEYTABLE_0 + ((_n)*32))
46 #define AR_KEY_CACHE_SIZE 128
47 #define AR_RSVD_KEYTABLE_ENTRIES 4
48 #define AR_KEY_TYPE 0x00000007
49 #define AR_KEYTABLE_TYPE_40 0x00000000
50 #define AR_KEYTABLE_TYPE_104 0x00000001
51 #define AR_KEYTABLE_TYPE_128 0x00000003
52 #define AR_KEYTABLE_TYPE_TKIP 0x00000004
53 #define AR_KEYTABLE_TYPE_AES 0x00000005
54 #define AR_KEYTABLE_TYPE_CCM 0x00000006
55 #define AR_KEYTABLE_TYPE_CLR 0x00000007
56 #define AR_KEYTABLE_ANT 0x00000008
57 #define AR_KEYTABLE_VALID 0x00008000
58 #define AR_KEYTABLE_KEY0(_n) (AR_KEYTABLE(_n) + 0)
59 #define AR_KEYTABLE_KEY1(_n) (AR_KEYTABLE(_n) + 4)
60 #define AR_KEYTABLE_KEY2(_n) (AR_KEYTABLE(_n) + 8)
61 #define AR_KEYTABLE_KEY3(_n) (AR_KEYTABLE(_n) + 12)
62 #define AR_KEYTABLE_KEY4(_n) (AR_KEYTABLE(_n) + 16)
63 #define AR_KEYTABLE_TYPE(_n) (AR_KEYTABLE(_n) + 20)
64 #define AR_KEYTABLE_MAC0(_n) (AR_KEYTABLE(_n) + 24)
65 #define AR_KEYTABLE_MAC1(_n) (AR_KEYTABLE(_n) + 28)
66 
67 #endif /* ATH_REGISTERS_H */
FILE_SECBOOT(FORBIDDEN)
FILE_LICENCE(BSD2)