/****************************************************************************** * * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA * * ******************************************************************************/ #ifndef __RTL8192C_CMD_H_ #define __RTL8192C_CMD_H_ enum cmd_msg_element_id { NONE_CMDMSG_EID, AP_OFFLOAD_EID=0, SET_PWRMODE_EID=1, JOINBSS_RPT_EID=2, RSVD_PAGE_EID=3, RSSI_4_EID = 4, RSSI_SETTING_EID=5, MACID_CONFIG_EID=6, MACID_PS_MODE_EID=7, P2P_PS_OFFLOAD_EID=8, SELECTIVE_SUSPEND_ROF_CMD=9, #ifdef CONFIG_WOWLAN H2C_WO_WLAN_CMD = 26, // Wake on Wlan. EXT_MACID_PERIOD_EID = 27, // support macid to 64 MACID64_CONFIG_EID = 28, // support macid to 64 #endif // CONFIG_WOWLAN P2P_PS_CTW_CMD_EID=32, H2C_92C_IO_OFFLOAD=44, #ifdef CONFIG_WOWLAN KEEP_ALIVE_CONTROL_CMD=48, DISCONNECT_DECISION_CTRL_CMD=49, REMOTE_WAKE_CTRL_CMD=60, #endif // CONFIG_WOWLAN H2C_92C_TSF_SYNC=67, H2C_92C_DISABLE_BCN_FUNC=68, H2C_92C_RESET_TSF = 75, H2C_92C_CMD_MAX }; struct cmd_msg_parm { u8 eid; //element id u8 sz; // sz u8 buf[6]; }; typedef struct _SETPWRMODE_PARM{ u8 Mode; u8 SmartPS; u8 BcnPassTime; // unit: 100ms }SETPWRMODE_PARM, *PSETPWRMODE_PARM; #ifdef CONFIG_WOWLAN typedef struct _SETWOWLAN_PARM{ u8 mode; u8 gpio_index; u8 gpio_duration; u8 second_mode; u8 reserve; }SETWOWLAN_PARM, *PSETWOWLAN_PARM; #define FW_WOWLAN_FUN_EN BIT(0) #define FW_WOWLAN_PATTERN_MATCH BIT(1) #define FW_WOWLAN_MAGIC_PKT BIT(2) #define FW_WOWLAN_UNICAST BIT(3) #define FW_WOWLAN_ALL_PKT_DROP BIT(4) #define FW_WOWLAN_GPIO_ACTIVE BIT(5) #define FW_WOWLAN_REKEY_WAKEUP BIT(6) #define FW_WOWLAN_DEAUTH_WAKEUP BIT(7) #define FW_WOWLAN_GPIO_WAKEUP_EN BIT(0) #define FW_FW_PARSE_MAGIC_PKT BIT(1) #endif // CONFIG_WOWLAN struct H2C_SS_RFOFF_PARAM{ u8 ROFOn; // 1: on, 0:off u16 gpio_period; // unit: 1024 us }__attribute__ ((packed)); typedef struct JOINBSSRPT_PARM{ u8 OpMode; // RT_MEDIA_STATUS }JOINBSSRPT_PARM, *PJOINBSSRPT_PARM; typedef struct _RSVDPAGE_LOC{ u8 LocProbeRsp; u8 LocPsPoll; u8 LocNullData; }RSVDPAGE_LOC, *PRSVDPAGE_LOC; struct P2P_PS_Offload_t { unsigned char Offload_En:1; unsigned char role:1; // 1: Owner, 0: Client unsigned char CTWindow_En:1; unsigned char NoA0_En:1; unsigned char NoA1_En:1; unsigned char AllStaSleep:1; // Only valid in Owner unsigned char discovery:1; unsigned char rsvd:1; }; struct P2P_PS_CTWPeriod_t { unsigned char CTWPeriod; //TU }; // host message to firmware cmd void rtl8192c_set_FwPwrMode_cmd(_adapter*padapter, u8 Mode); void rtl8192c_set_FwJoinBssReport_cmd(_adapter* padapter, u8 mstatus); u8 rtl8192c_set_rssi_cmd(_adapter*padapter, u8 *param); u8 rtl8192c_set_raid_cmd(_adapter*padapter, u32 mask, u8 arg); void rtl8192c_Add_RateATid(PADAPTER pAdapter, u32 bitmap, u8 arg); u8 rtl8192c_set_FwSelectSuspend_cmd(_adapter*padapter,u8 bfwpoll, u16 period); #ifdef CONFIG_P2P void rtl8192c_set_p2p_ps_offload_cmd(_adapter* padapter, u8 p2p_ps_state); #endif //CONFIG_P2P #ifdef CONFIG_IOL typedef struct _IO_OFFLOAD_LOC{ u8 LocCmd; }IO_OFFLOAD_LOC, *PIO_OFFLOAD_LOC; int rtl8192c_IOL_exec_cmds_sync(ADAPTER *adapter, struct xmit_frame *xmit_frame, u32 max_wating_ms); #endif //CONFIG_IOL #ifdef CONFIG_BEACON_DISABLE_OFFLOAD u8 rtl8192c_dis_beacon_fun_cmd(_adapter* padapter); #endif // CONFIG_BEACON_DISABLE_OFFLOAD #ifdef CONFIG_TSF_RESET_OFFLOAD int reset_tsf(PADAPTER Adapter, u8 reset_port ); #endif // CONFIG_TSF_RESET_OFFLOAD #ifdef CONFIG_WOWLAN void rtl8192c_set_wowlan_cmd(_adapter* padapter); void SetFwRelatedForWoWLAN8192CU(_adapter* padapter,u8 bHostIsGoingtoSleep); #endif // CONFIG_WOWLAN #endif // __RTL8192C_CMD_H_