1 #ifndef B43_PHY_AC_H_
2 #define B43_PHY_AC_H_
3 
4 #include "phy_common.h"
5 
6 #define B43_PHY_AC_BBCFG			0x001
7 #define  B43_PHY_AC_BBCFG_RSTCCA		0x4000	/* Reset CCA */
8 #define B43_PHY_AC_BANDCTL			0x003	/* Band control */
9 #define  B43_PHY_AC_BANDCTL_5GHZ		0x0001
10 #define B43_PHY_AC_TABLE_ID			0x00d
11 #define B43_PHY_AC_TABLE_OFFSET			0x00e
12 #define B43_PHY_AC_TABLE_DATA1			0x00f
13 #define B43_PHY_AC_TABLE_DATA2			0x010
14 #define B43_PHY_AC_TABLE_DATA3			0x011
15 #define B43_PHY_AC_CLASSCTL			0x140	/* Classifier control */
16 #define  B43_PHY_AC_CLASSCTL_CCKEN		0x0001	/* CCK enable */
17 #define  B43_PHY_AC_CLASSCTL_OFDMEN		0x0002	/* OFDM enable */
18 #define  B43_PHY_AC_CLASSCTL_WAITEDEN		0x0004	/* Waited enable */
19 #define B43_PHY_AC_BW1A				0x371
20 #define B43_PHY_AC_BW2				0x372
21 #define B43_PHY_AC_BW3				0x373
22 #define B43_PHY_AC_BW4				0x374
23 #define B43_PHY_AC_BW5				0x375
24 #define B43_PHY_AC_BW6				0x376
25 #define B43_PHY_AC_RFCTL_CMD			0x408
26 #define B43_PHY_AC_C1_CLIP			0x6d4
27 #define  B43_PHY_AC_C1_CLIP_DIS			0x4000
28 #define B43_PHY_AC_C2_CLIP			0x8d4
29 #define  B43_PHY_AC_C2_CLIP_DIS			0x4000
30 #define B43_PHY_AC_C3_CLIP			0xad4
31 #define  B43_PHY_AC_C3_CLIP_DIS			0x4000
32 
33 struct b43_phy_ac {
34 };
35 
36 extern const struct b43_phy_operations b43_phyops_ac;
37 
38 #endif /* B43_PHY_AC_H_ */
39