phy_ac.h 1.2 KB

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