phy.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2008-2009 Atheros Communications Inc.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef PHY_H
  17. #define PHY_H
  18. #define AR_PHY_BASE 0x9800
  19. #define AR_PHY(_n) (AR_PHY_BASE + ((_n)<<2))
  20. #define AR_PHY_TX_PWRCTRL_TX_GAIN_TAB_MAX 0x0007E000
  21. #define AR_PHY_TX_PWRCTRL_TX_GAIN_TAB_MAX_S 13
  22. #define AR_PHY_TX_GAIN_CLC 0x0000001E
  23. #define AR_PHY_TX_GAIN_CLC_S 1
  24. #define AR_PHY_TX_GAIN 0x0007F000
  25. #define AR_PHY_TX_GAIN_S 12
  26. #define AR_PHY_CLC_TBL1 0xa35c
  27. #define AR_PHY_CLC_I0 0x07ff0000
  28. #define AR_PHY_CLC_I0_S 16
  29. #define AR_PHY_CLC_Q0 0x0000ffd0
  30. #define AR_PHY_CLC_Q0_S 5
  31. #define REG_WRITE_RF_ARRAY(iniarray, regData, regWr) do { \
  32. int r; \
  33. for (r = 0; r < ((iniarray)->ia_rows); r++) { \
  34. REG_WRITE(ah, INI_RA((iniarray), r, 0), (regData)[r]); \
  35. DO_DELAY(regWr); \
  36. } \
  37. } while (0)
  38. #define ATH9K_IS_MIC_ENABLED(ah) \
  39. ((ah)->sta_id1_defaults & AR_STA_ID1_CRPT_MIC_ENABLE)
  40. #define ANTSWAP_AB 0x0001
  41. #define REDUCE_CHAIN_0 0x00000050
  42. #define REDUCE_CHAIN_1 0x00000051
  43. #define AR_PHY_CHIP_ID 0x9818
  44. #define RF_BANK_SETUP(_bank, _iniarray, _col) do { \
  45. int i; \
  46. for (i = 0; i < (_iniarray)->ia_rows; i++) \
  47. (_bank)[i] = INI_RA((_iniarray), i, _col);; \
  48. } while (0)
  49. #endif