Hal8192EPhyCfg.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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_HAL8192EPHYCFG_H__
  21. #define __INC_HAL8192EPHYCFG_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_QueryBBReg8192E(IN PADAPTER Adapter,
  46. IN u32 RegAddr,
  47. IN u32 BitMask);
  48. void PHY_SetBBReg8192E(IN PADAPTER Adapter,
  49. IN u32 RegAddr,
  50. IN u32 BitMask,
  51. IN u32 Data);
  52. u32 PHY_QueryRFReg8192E(IN PADAPTER Adapter,
  53. IN u8 eRFPath,
  54. IN u32 RegAddr,
  55. IN u32 BitMask);
  56. void PHY_SetRFReg8192E(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_MACConfig8192E(IN PADAPTER Adapter);
  66. int PHY_BBConfig8192E(IN PADAPTER Adapter);
  67. int PHY_RFConfig8192E(IN PADAPTER Adapter);
  68. /* RF config */
  69. /*
  70. * BB TX Power R/W
  71. * */
  72. void PHY_GetTxPowerLevel8192E(IN PADAPTER Adapter, OUT s32 *powerlevel);
  73. void PHY_SetTxPowerLevel8192E(IN PADAPTER Adapter, IN u8 channel);
  74. BOOLEAN PHY_UpdateTxPowerDbm8192E(IN PADAPTER Adapter, IN int powerInDbm);
  75. VOID
  76. PHY_SetTxPowerIndex_8192E(
  77. IN PADAPTER Adapter,
  78. IN u32 PowerIndex,
  79. IN u8 RFPath,
  80. IN u8 Rate
  81. );
  82. u8
  83. PHY_GetTxPowerIndex_8192E(
  84. IN PADAPTER pAdapter,
  85. IN u8 RFPath,
  86. IN u8 Rate,
  87. IN u8 BandWidth,
  88. IN u8 Channel,
  89. struct txpwr_idx_comp *tic
  90. );
  91. /*
  92. * channel switch related funciton
  93. * */
  94. VOID
  95. PHY_SetSwChnlBWMode8192E(
  96. IN PADAPTER Adapter,
  97. IN u8 channel,
  98. IN CHANNEL_WIDTH Bandwidth,
  99. IN u8 Offset40,
  100. IN u8 Offset80
  101. );
  102. VOID
  103. PHY_SetRFEReg_8192E(
  104. IN PADAPTER Adapter
  105. );
  106. void
  107. phy_SpurCalibration_8192E(
  108. IN PADAPTER Adapter,
  109. IN enum spur_cal_method method
  110. );
  111. void PHY_SpurCalibration_8192E(IN PADAPTER Adapter);
  112. #ifdef CONFIG_SPUR_CAL_NBI
  113. void
  114. phy_SpurCalibration_8192E_NBI(
  115. IN PADAPTER Adapter
  116. );
  117. #endif
  118. /*
  119. * BB/MAC/RF other monitor API
  120. * */
  121. VOID
  122. phy_set_rf_path_switch_8192e(
  123. IN PADAPTER pAdapter,
  124. IN bool bMain
  125. );
  126. /*--------------------------Exported Function prototype---------------------*/
  127. #endif /* __INC_HAL8192CPHYCFG_H */