rtl8192e_cmd.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2012 - 2017 Realtek Corporation.
  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. *****************************************************************************/
  15. #ifndef __RTL8192E_CMD_H__
  16. #define __RTL8192E_CMD_H__
  17. typedef enum _RTL8192E_H2C_CMD {
  18. H2C_8192E_RSVDPAGE = 0x00,
  19. H2C_8192E_MSRRPT = 0x01,
  20. H2C_8192E_SCAN = 0x02,
  21. H2C_8192E_KEEP_ALIVE_CTRL = 0x03,
  22. H2C_8192E_DISCONNECT_DECISION = 0x04,
  23. H2C_8192E_INIT_OFFLOAD = 0x06,
  24. H2C_8192E_AP_OFFLOAD = 0x08,
  25. H2C_8192E_BCN_RSVDPAGE = 0x09,
  26. H2C_8192E_PROBERSP_RSVDPAGE = 0x0a,
  27. H2C_8192E_AP_WOW_GPIO_CTRL = 0x13,
  28. H2C_8192E_SETPWRMODE = 0x20,
  29. H2C_8192E_PS_TUNING_PARA = 0x21,
  30. H2C_8192E_PS_TUNING_PARA2 = 0x22,
  31. H2C_8192E_PS_LPS_PARA = 0x23,
  32. H2C_8192E_P2P_PS_OFFLOAD = 0x24,
  33. H2C_8192E_SAP_PS = 0x26,
  34. H2C_8192E_RA_MASK = 0x40,
  35. H2C_8192E_RSSI_REPORT = 0x42,
  36. H2C_8192E_RA_PARA_ADJUST = 0x46,
  37. H2C_8192E_WO_WLAN = 0x80,
  38. H2C_8192E_REMOTE_WAKE_CTRL = 0x81,
  39. H2C_8192E_AOAC_GLOBAL_INFO = 0x82,
  40. H2C_8192E_AOAC_RSVDPAGE = 0x83,
  41. /* Not defined in new 88E H2C CMD Format */
  42. H2C_8192E_SELECTIVE_SUSPEND_ROF_CMD,
  43. H2C_8192E_P2P_PS_MODE,
  44. H2C_8192E_PSD_RESULT,
  45. MAX_8192E_H2CCMD
  46. } RTL8192E_H2C_CMD;
  47. struct cmd_msg_parm {
  48. u8 eid; /* element id */
  49. u8 sz; /* sz */
  50. u8 buf[6];
  51. };
  52. enum {
  53. PWRS
  54. };
  55. typedef struct _SETPWRMODE_PARM {
  56. u8 Mode;/* 0:Active,1:LPS,2:WMMPS */
  57. /* u8 RLBM:4; */ /* 0:Min,1:Max,2: User define */
  58. u8 SmartPS_RLBM;/* LPS=0:PS_Poll,1:PS_Poll,2:NullData,WMM=0:PS_Poll,1:NullData */
  59. u8 AwakeInterval; /* unit: beacon interval */
  60. u8 bAllQueueUAPSD;
  61. u8 PwrState;/* AllON(0x0c),RFON(0x04),RFOFF(0x00) */
  62. } SETPWRMODE_PARM, *PSETPWRMODE_PARM;
  63. struct H2C_SS_RFOFF_PARAM {
  64. u8 ROFOn; /* 1: on, 0:off */
  65. u16 gpio_period; /* unit: 1024 us */
  66. } __attribute__((packed));
  67. typedef struct JOINBSSRPT_PARM_92E {
  68. u8 OpMode; /* RT_MEDIA_STATUS */
  69. #ifdef CONFIG_WOWLAN
  70. u8 MacID; /* MACID */
  71. #endif /* CONFIG_WOWLAN */
  72. } JOINBSSRPT_PARM_92E, *PJOINBSSRPT_PARM_92E;
  73. /* move to hal_com_h2c.h
  74. typedef struct _RSVDPAGE_LOC_92E {
  75. u8 LocProbeRsp;
  76. u8 LocPsPoll;
  77. u8 LocNullData;
  78. u8 LocQosNull;
  79. u8 LocBTQosNull;
  80. } RSVDPAGE_LOC_92E, *PRSVDPAGE_LOC_92E;
  81. */
  82. /* _SETPWRMODE_PARM */
  83. #define SET_8192E_H2CCMD_PWRMODE_PARM_MODE(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE(__pH2CCmd, 0, 8, __Value)
  84. #define SET_8192E_H2CCMD_PWRMODE_PARM_RLBM(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE((__pH2CCmd)+1, 0, 4, __Value)
  85. #define SET_8192E_H2CCMD_PWRMODE_PARM_SMART_PS(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE((__pH2CCmd)+1, 4, 4, __Value)
  86. #define SET_8192E_H2CCMD_PWRMODE_PARM_BCN_PASS_TIME(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE((__pH2CCmd)+2, 0, 8, __Value)
  87. #define SET_8192E_H2CCMD_PWRMODE_PARM_ALL_QUEUE_UAPSD(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE((__pH2CCmd)+3, 0, 8, __Value)
  88. #define SET_8192E_H2CCMD_PWRMODE_PARM_BCN_EARLY_C2H_RPT(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE((__pH2CCmd)+3, 2, 1, __Value)
  89. #define SET_8192E_H2CCMD_PWRMODE_PARM_PWR_STATE(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE((__pH2CCmd)+4, 0, 8, __Value)
  90. #define GET_8192E_H2CCMD_PWRMODE_PARM_MODE(__pH2CCmd) LE_BITS_TO_1BYTE(__pH2CCmd, 0, 8)
  91. /* _P2P_PS_OFFLOAD */
  92. #define SET_8192E_H2CCMD_P2P_PS_OFFLOAD_ENABLE(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE(__pH2CCmd, 0, 1, __Value)
  93. #define SET_8192E_H2CCMD_P2P_PS_OFFLOAD_ROLE(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE(__pH2CCmd, 1, 1, __Value)
  94. #define SET_8192E_H2CCMD_P2P_PS_OFFLOAD_CTWINDOW_EN(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE(__pH2CCmd, 2, 1, __Value)
  95. #define SET_8192E_H2CCMD_P2P_PS_OFFLOAD_NOA0_EN(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE(__pH2CCmd, 3, 1, __Value)
  96. #define SET_8192E_H2CCMD_P2P_PS_OFFLOAD_NOA1_EN(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE(__pH2CCmd, 4, 1, __Value)
  97. #define SET_8192E_H2CCMD_P2P_PS_OFFLOAD_ALLSTASLEEP(__pH2CCmd, __Value) SET_BITS_TO_LE_1BYTE(__pH2CCmd, 5, 1, __Value)
  98. /* host message to firmware cmd */
  99. void rtl8192e_set_FwPwrMode_cmd(PADAPTER padapter, u8 Mode);
  100. void rtl8192e_set_FwJoinBssReport_cmd(PADAPTER padapter, u8 mstatus);
  101. s32 FillH2CCmd_8192E(PADAPTER padapter, u8 ElementID, u32 CmdLen, u8 *pCmdBuffer);
  102. u8 GetTxBufferRsvdPageNum8192E(_adapter *padapter, bool wowlan);
  103. /* u8 rtl8192c_set_FwSelectSuspend_cmd(PADAPTER padapter, u8 bfwpoll, u16 period); */
  104. s32 c2h_handler_8192e(_adapter *adapter, u8 id, u8 seq, u8 plen, u8 *payload);
  105. #ifdef CONFIG_BT_COEXIST
  106. void rtl8192e_download_BTCoex_AP_mode_rsvd_page(PADAPTER padapter);
  107. #endif /* CONFIG_BT_COEXIST */
  108. #ifdef CONFIG_P2P_PS
  109. void rtl8192e_set_p2p_ps_offload_cmd(PADAPTER padapter, u8 p2p_ps_state);
  110. #endif /* CONFIG_P2P */
  111. #ifdef CONFIG_TDLS
  112. #ifdef CONFIG_TDLS_CH_SW
  113. void rtl8192e_set_BcnEarly_C2H_Rpt_cmd(PADAPTER padapter, u8 enable);
  114. #endif
  115. #endif
  116. /* / TX Feedback Content */
  117. #define USEC_UNIT_FOR_8192E_C2H_TX_RPT_QUEUE_TIME 256
  118. #define GET_8192E_C2H_TX_RPT_QUEUE_SELECT(_Header) LE_BITS_TO_1BYTE((_Header + 0), 0, 5)
  119. #define GET_8192E_C2H_TX_RPT_PKT_BROCAST(_Header) LE_BITS_TO_1BYTE((_Header + 0), 5, 1)
  120. #define GET_8192E_C2H_TX_RPT_LIFE_TIME_OVER(_Header) LE_BITS_TO_1BYTE((_Header + 0), 6, 1)
  121. #define GET_8192E_C2H_TX_RPT_RETRY_OVER(_Header) LE_BITS_TO_1BYTE((_Header + 0), 7, 1)
  122. #define GET_8192E_C2H_TX_RPT_MAC_ID(_Header) LE_BITS_TO_1BYTE((_Header + 1), 0, 8)
  123. #define GET_8192E_C2H_TX_RPT_DATA_RETRY_CNT(_Header) LE_BITS_TO_1BYTE((_Header + 2), 0, 6)
  124. #define GET_8192E_C2H_TX_RPT_QUEUE_TIME(_Header) LE_BITS_TO_2BYTE((_Header + 3), 0, 16) /* In unit of 256 microseconds. */
  125. #define GET_8192E_C2H_TX_RPT_FINAL_DATA_RATE(_Header) LE_BITS_TO_1BYTE((_Header + 5), 0, 8)
  126. #endif /* __RTL8192E_CMD_H__ */