WiFi: add rtl8189es/etv support, Optimization wifi configuration.
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8189es / include / rtl8192d_cmd.h
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 __RTL8192D_CMD_H_
21 #define __RTL8192D_CMD_H_
22
23
24 //--------------------------------------------
25 //3                             Host Message Box 
26 //--------------------------------------------
27
28 // User Define Message [31:8]
29
30 //_SETPWRMODE_PARM
31 #define SET_H2CCMD_PWRMODE_PARM_MODE(__pH2CCmd, __Value)                        SET_BITS_TO_LE_1BYTE(__pH2CCmd, 0, 8, __Value)
32 #define SET_H2CCMD_PWRMODE_PARM_SMART_PS(__pH2CCmd, __Value)            SET_BITS_TO_LE_1BYTE((__pH2CCmd)+1, 0, 8, __Value)
33 #define SET_H2CCMD_PWRMODE_PARM_BCN_PASS_TIME(__pH2CCmd, __Value)       SET_BITS_TO_LE_1BYTE((__pH2CCmd)+2, 0, 8, __Value)
34
35 //JOINBSSRPT_PARM
36 #define SET_H2CCMD_JOINBSSRPT_PARM_OPMODE(__pH2CCmd, __Value)           SET_BITS_TO_LE_1BYTE(__pH2CCmd, 0, 8, __Value)
37
38 //_RSVDPAGE_LOC
39 #define SET_H2CCMD_RSVDPAGE_LOC_PROBE_RSP(__pH2CCmd, __Value)           SET_BITS_TO_LE_1BYTE(__pH2CCmd, 0, 8, __Value)
40 #define SET_H2CCMD_RSVDPAGE_LOC_PSPOLL(__pH2CCmd, __Value)                      SET_BITS_TO_LE_1BYTE((__pH2CCmd)+1, 0, 8, __Value)
41 #define SET_H2CCMD_RSVDPAGE_LOC_NULL_DATA(__pH2CCmd, __Value)           SET_BITS_TO_LE_1BYTE((__pH2CCmd)+2, 0, 8, __Value)
42
43
44 #define SET_H2CCMD_P2P_PS_OFFLOAD_EN(__pH2CCmd, __Value)                SET_BITS_TO_LE_1BYTE(__pH2CCmd, 0, 1, __Value)
45 #define SET_H2CCMD_P2P_PS_OFFLOAD_ROLE(__pH2CCmd, __Value)              SET_BITS_TO_LE_1BYTE(__pH2CCmd, 1, 1, __Value)
46 #define SET_H2CCMD_P2P_PS_OFFLOAD_CTW(__pH2CCmd, __Value)               SET_BITS_TO_LE_1BYTE(__pH2CCmd, 2, 1, __Value)
47 #define SET_H2CCMD_P2P_PS_OFFLOAD_NOA0(__pH2CCmd, __Value)              SET_BITS_TO_LE_1BYTE(__pH2CCmd, 3, 1, __Value)
48 #define SET_H2CCMD_P2P_PS_OFFLOAD_NOA1(__pH2CCmd, __Value)              SET_BITS_TO_LE_1BYTE(__pH2CCmd, 4, 1, __Value)
49 #define SET_H2CCMD_P2P_PS_OFFLOAD_ALLSTASLEEP(__pH2CCmd, __Value)               SET_BITS_TO_LE_1BYTE(__pH2CCmd, 5, 1, __Value)
50 #define SET_H2CCMD_P2P_PS_OFFLOAD_DISCOVERY(__pH2CCmd, __Value)         SET_BITS_TO_LE_1BYTE(__pH2CCmd, 6, 1, __Value)
51
52 // Description: Determine the types of H2C commands that are the same in driver and Fw.
53 // Fisrt constructed by tynli. 2009.10.09.
54 typedef enum _RTL8192D_H2C_CMD 
55 {
56         H2C_AP_OFFLOAD = 0,             /*0*/
57         H2C_SETPWRMODE = 1,             /*1*/
58         H2C_JOINBSSRPT = 2,             /*2*/
59         H2C_RSVDPAGE = 3,
60         H2C_RSSI_REPORT = 5,
61         H2C_RA_MASK = 6,
62         H2C_P2P_PS_OFFLOAD = 8,
63         H2C_MAC_MODE_SEL = 9,
64         H2C_PWRM=15,
65         H2C_P2P_PS_CTW_CMD = 24,
66         H2C_PathDiv = 26,                  //PathDiv--NeilChen--2011.07.15
67         H2C_92D_TSF_SYNC=36,
68         H2C_92D_RESET_TSF = 43,
69         H2C_CMD_MAX
70 }RTL8192D_H2C_CMD;
71
72 struct cmd_msg_parm {
73         u8 eid; //element id
74         u8 sz; // sz
75         u8 buf[6];
76 };
77
78
79 void    FillH2CCmd92D(_adapter* padapter, u8 ElementID, u32 CmdLen, u8* pCmdBuffer);
80
81 // host message to firmware cmd
82 void    rtl8192d_set_FwPwrMode_cmd(_adapter*padapter, u8 Mode);
83 void    rtl8192d_set_FwJoinBssReport_cmd(_adapter* padapter, u8 mstatus);
84 u8      rtl8192d_set_rssi_cmd(_adapter*padapter, u8 *param);
85 void    rtl8192d_set_raid_cmd(_adapter*padapter, u32 mask, u8* arg);
86 void    rtl8192d_Add_RateATid(PADAPTER pAdapter, u32 bitmap, u8* arg, u8 rssi_level);
87 #ifdef CONFIG_P2P
88 void    rtl8192d_set_p2p_ps_offload_cmd(_adapter* padapter, u8 p2p_ps_state);
89 #endif //CONFIG_P2P
90
91 #ifdef CONFIG_TSF_RESET_OFFLOAD
92 int reset_tsf(PADAPTER Adapter, u8 reset_port );
93 #endif  // CONFIG_TSF_RESET_OFFLOAD
94
95 #endif
96
97