• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  ******************************************************************************/
15 #ifndef __RTL8188E_CMD_H__
16 #define __RTL8188E_CMD_H__
17 
18 enum RTL8188E_H2C_CMD_ID {
19 	/* Class Common */
20 	H2C_COM_RSVD_PAGE		= 0x00,
21 	H2C_COM_MEDIA_STATUS_RPT	= 0x01,
22 	H2C_COM_SCAN			= 0x02,
23 	H2C_COM_KEEP_ALIVE		= 0x03,
24 	H2C_COM_DISCNT_DECISION		= 0x04,
25 	H2C_COM_INIT_OFFLOAD		= 0x06,
26 	H2C_COM_REMOTE_WAKE_CTL		= 0x07,
27 	H2C_COM_AP_OFFLOAD		= 0x08,
28 	H2C_COM_BCN_RSVD_PAGE		= 0x09,
29 	H2C_COM_PROB_RSP_RSVD_PAGE	= 0x0A,
30 
31 	/* Class PS */
32 	H2C_PS_PWR_MODE			= 0x20,
33 	H2C_PS_TUNE_PARA		= 0x21,
34 	H2C_PS_TUNE_PARA_2		= 0x22,
35 	H2C_PS_LPS_PARA			= 0x23,
36 	H2C_PS_P2P_OFFLOAD		= 0x24,
37 
38 	/* Class DM */
39 	H2C_DM_MACID_CFG		= 0x40,
40 	H2C_DM_TXBF			= 0x41,
41 
42 	/* Class BT */
43 	H2C_BT_COEX_MASK		= 0x60,
44 	H2C_BT_COEX_GPIO_MODE		= 0x61,
45 	H2C_BT_DAC_SWING_VAL		= 0x62,
46 	H2C_BT_PSD_RST			= 0x63,
47 
48 	/* Class */
49 	 H2C_RESET_TSF			= 0xc0,
50 };
51 
52 enum {
53 	PWRS
54 };
55 
56 struct setpwrmode_parm {
57 	u8 Mode;/* 0:Active,1:LPS,2:WMMPS */
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 };
63 
64 struct rsvdpage_loc {
65 	u8 LocProbeRsp;
66 	u8 LocPsPoll;
67 	u8 LocNullData;
68 	u8 LocQosNull;
69 	u8 LocBTQosNull;
70 };
71 
72 /*  host message to firmware cmd */
73 void rtl8188e_set_FwPwrMode_cmd(struct adapter *padapter, u8 Mode);
74 void rtl8188e_set_FwJoinBssReport_cmd(struct adapter *padapter, u8 mstatus);
75 
76 void rtl8188e_set_FwMediaStatus_cmd(struct adapter *adapt, __le16 mstatus_rpt);
77 
78 #endif/* __RTL8188E_CMD_H__ */
79