radio_2059.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #ifndef B43_RADIO_2059_H_
  2. #define B43_RADIO_2059_H_
  3. #include <linux/types.h>
  4. #include "phy_ht.h"
  5. #define R2059_C1 0x000
  6. #define R2059_C2 0x400
  7. #define R2059_C3 0x800
  8. #define R2059_ALL 0xC00
  9. #define R2059_RCAL_CONFIG 0x004
  10. #define R2059_RFPLL_MASTER 0x011
  11. #define R2059_RFPLL_MISC_EN 0x02b
  12. #define R2059_RFPLL_MISC_CAL_RESETN 0x02e
  13. #define R2059_XTAL_CONFIG2 0x0c0
  14. #define R2059_RCCAL_START_R1_Q1_P1 0x13c
  15. #define R2059_RCCAL_X1 0x13d
  16. #define R2059_RCCAL_TRC0 0x13e
  17. #define R2059_RCCAL_DONE_OSCCAP 0x140
  18. #define R2059_RCAL_STATUS 0x145
  19. #define R2059_RCCAL_MASTER 0x17f
  20. /* Values for various registers uploaded on channel switching */
  21. struct b43_phy_ht_channeltab_e_radio2059 {
  22. /* The channel frequency in MHz */
  23. u16 freq;
  24. /* Values for radio registers */
  25. u8 radio_syn16;
  26. u8 radio_syn17;
  27. u8 radio_syn22;
  28. u8 radio_syn25;
  29. u8 radio_syn27;
  30. u8 radio_syn28;
  31. u8 radio_syn29;
  32. u8 radio_syn2c;
  33. u8 radio_syn2d;
  34. u8 radio_syn37;
  35. u8 radio_syn41;
  36. u8 radio_syn43;
  37. u8 radio_syn47;
  38. u8 radio_rxtx4a;
  39. u8 radio_rxtx58;
  40. u8 radio_rxtx5a;
  41. u8 radio_rxtx6a;
  42. u8 radio_rxtx6d;
  43. u8 radio_rxtx6e;
  44. u8 radio_rxtx92;
  45. u8 radio_rxtx98;
  46. /* Values for PHY registers */
  47. struct b43_phy_ht_channeltab_e_phy phy_regs;
  48. };
  49. void r2059_upload_inittabs(struct b43_wldev *dev);
  50. const struct b43_phy_ht_channeltab_e_radio2059
  51. *b43_phy_ht_get_channeltab_e_r2059(struct b43_wldev *dev, u16 freq);
  52. #endif /* B43_RADIO_2059_H_ */