Hal8812PhyCfg.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. *
  19. ******************************************************************************/
  20. #ifndef __INC_HAL8812PHYCFG_H__
  21. #define __INC_HAL8812PHYCFG_H__
  22. /*--------------------------Define Parameters-------------------------------*/
  23. #define LOOP_LIMIT 5
  24. #define MAX_STALL_TIME 50 /* us */
  25. #define AntennaDiversityValue 0x80 /* (Adapter->bSoftwareAntennaDiversity ? 0x00 : 0x80) */
  26. #define MAX_TXPWR_IDX_NMODE_92S 63
  27. #define Reset_Cnt_Limit 3
  28. #ifdef CONFIG_PCI_HCI
  29. #define MAX_AGGR_NUM 0x0B
  30. #else
  31. #define MAX_AGGR_NUM 0x07
  32. #endif /* CONFIG_PCI_HCI */
  33. /*--------------------------Define Parameters-------------------------------*/
  34. /*------------------------------Define structure----------------------------*/
  35. /* BB/RF related */
  36. /*------------------------------Define structure----------------------------*/
  37. /*------------------------Export global variable----------------------------*/
  38. /*------------------------Export global variable----------------------------*/
  39. /*------------------------Export Marco Definition---------------------------*/
  40. /*------------------------Export Marco Definition---------------------------*/
  41. /*--------------------------Exported Function prototype---------------------*/
  42. /*
  43. * BB and RF register read/write
  44. * */
  45. u32 PHY_QueryBBReg8812(IN PADAPTER Adapter,
  46. IN u32 RegAddr,
  47. IN u32 BitMask);
  48. void PHY_SetBBReg8812(IN PADAPTER Adapter,
  49. IN u32 RegAddr,
  50. IN u32 BitMask,
  51. IN u32 Data);
  52. u32 PHY_QueryRFReg8812(IN PADAPTER Adapter,
  53. IN u8 eRFPath,
  54. IN u32 RegAddr,
  55. IN u32 BitMask);
  56. void PHY_SetRFReg8812(IN PADAPTER Adapter,
  57. IN u8 eRFPath,
  58. IN u32 RegAddr,
  59. IN u32 BitMask,
  60. IN u32 Data);
  61. /*
  62. * Initialization related function
  63. *
  64. * MAC/BB/RF HAL config */
  65. int PHY_MACConfig8812(IN PADAPTER Adapter);
  66. int PHY_BBConfig8812(IN PADAPTER Adapter);
  67. void PHY_BB8812_Config_1T(IN PADAPTER Adapter);
  68. int PHY_RFConfig8812(IN PADAPTER Adapter);
  69. /* RF config */
  70. s32
  71. PHY_SwitchWirelessBand8812(
  72. IN PADAPTER Adapter,
  73. IN u8 Band
  74. );
  75. /*
  76. * BB TX Power R/W
  77. * */
  78. void PHY_GetTxPowerLevel8812(IN PADAPTER Adapter, OUT s32 *powerlevel);
  79. void PHY_SetTxPowerLevel8812(IN PADAPTER Adapter, IN u8 Channel);
  80. BOOLEAN PHY_UpdateTxPowerDbm8812(IN PADAPTER Adapter, IN int powerInDbm);
  81. u8 PHY_GetTxPowerIndex_8812A(
  82. IN PADAPTER pAdapter,
  83. IN u8 RFPath,
  84. IN u8 Rate,
  85. IN u8 BandWidth,
  86. IN u8 Channel,
  87. struct txpwr_idx_comp *tic
  88. );
  89. u32 phy_get_tx_bb_swing_8812a(
  90. IN PADAPTER Adapter,
  91. IN BAND_TYPE Band,
  92. IN u8 RFPath
  93. );
  94. VOID
  95. PHY_SetTxPowerIndex_8812A(
  96. IN PADAPTER Adapter,
  97. IN u4Byte PowerIndex,
  98. IN u1Byte RFPath,
  99. IN u1Byte Rate
  100. );
  101. /*
  102. * channel switch related funciton
  103. * */
  104. VOID
  105. PHY_SetSwChnlBWMode8812(
  106. IN PADAPTER Adapter,
  107. IN u8 channel,
  108. IN CHANNEL_WIDTH Bandwidth,
  109. IN u8 Offset40,
  110. IN u8 Offset80
  111. );
  112. /*
  113. * BB/MAC/RF other monitor API
  114. * */
  115. VOID
  116. phy_set_rf_path_switch_8812a(
  117. IN PADAPTER pAdapter,
  118. IN bool bMain
  119. );
  120. /*--------------------------Exported Function prototype---------------------*/
  121. #endif /* __INC_HAL8192CPHYCFG_H */