phy_lcn.h 992 B

123456789101112131415161718192021222324252627282930313233
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef B43_PHY_LCN_H_
  3. #define B43_PHY_LCN_H_
  4. #include "phy_common.h"
  5. #define B43_PHY_LCN_AFE_CTL1 B43_PHY_OFDM(0x03B)
  6. #define B43_PHY_LCN_AFE_CTL2 B43_PHY_OFDM(0x03C)
  7. #define B43_PHY_LCN_RF_CTL1 B43_PHY_OFDM(0x04C)
  8. #define B43_PHY_LCN_RF_CTL2 B43_PHY_OFDM(0x04D)
  9. #define B43_PHY_LCN_TABLE_ADDR B43_PHY_OFDM(0x055) /* Table address */
  10. #define B43_PHY_LCN_TABLE_DATALO B43_PHY_OFDM(0x056) /* Table data low */
  11. #define B43_PHY_LCN_TABLE_DATAHI B43_PHY_OFDM(0x057) /* Table data high */
  12. #define B43_PHY_LCN_RF_CTL3 B43_PHY_OFDM(0x0B0)
  13. #define B43_PHY_LCN_RF_CTL4 B43_PHY_OFDM(0x0B1)
  14. #define B43_PHY_LCN_RF_CTL5 B43_PHY_OFDM(0x0B7)
  15. #define B43_PHY_LCN_RF_CTL6 B43_PHY_OFDM(0x0F9)
  16. #define B43_PHY_LCN_RF_CTL7 B43_PHY_OFDM(0x0FA)
  17. struct b43_phy_lcn {
  18. bool hw_pwr_ctl;
  19. bool hw_pwr_ctl_capable;
  20. u8 tx_pwr_curr_idx;
  21. };
  22. struct b43_phy_operations;
  23. extern const struct b43_phy_operations b43_phyops_lcn;
  24. #endif /* B43_PHY_LCN_H_ */