net: wireless: rockchip_wlan: add rtl8723cs support
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8723cs / include / rtw_ioctl_set.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 __RTW_IOCTL_SET_H_
21 #define __RTW_IOCTL_SET_H_
22
23
24 typedef u8 NDIS_802_11_PMKID_VALUE[16];
25
26 typedef struct _BSSIDInfo {
27         NDIS_802_11_MAC_ADDRESS  BSSID;
28         NDIS_802_11_PMKID_VALUE  PMKID;
29 } BSSIDInfo, *PBSSIDInfo;
30
31
32 #ifdef PLATFORM_OS_XP
33 typedef struct _NDIS_802_11_PMKID {
34         u32     Length;
35         u32     BSSIDInfoCount;
36         BSSIDInfo BSSIDInfo[1];
37 } NDIS_802_11_PMKID, *PNDIS_802_11_PMKID;
38 #endif
39
40
41 #ifdef PLATFORM_WINDOWS
42 u8 rtw_set_802_11_reload_defaults(_adapter *padapter, NDIS_802_11_RELOAD_DEFAULTS reloadDefaults);
43 u8 rtw_set_802_11_test(_adapter *padapter, NDIS_802_11_TEST *test);
44 u8 rtw_set_802_11_pmkid(_adapter *pdapter, NDIS_802_11_PMKID *pmkid);
45
46 u8 rtw_pnp_set_power_sleep(_adapter *padapter);
47 u8 rtw_pnp_set_power_wakeup(_adapter *padapter);
48
49 void rtw_pnp_resume_wk(void *context);
50 void rtw_pnp_sleep_wk(void *context);
51
52 #endif
53
54 u8 rtw_set_802_11_add_key(_adapter *padapter, NDIS_802_11_KEY *key);
55 u8 rtw_set_802_11_authentication_mode(_adapter *pdapter, NDIS_802_11_AUTHENTICATION_MODE authmode);
56 u8 rtw_set_802_11_bssid(_adapter *padapter, u8 *bssid);
57 u8 rtw_set_802_11_add_wep(_adapter *padapter, NDIS_802_11_WEP *wep);
58 u8 rtw_set_802_11_disassociate(_adapter *padapter);
59 u8 rtw_set_802_11_bssid_list_scan(_adapter *padapter, NDIS_802_11_SSID *pssid, int ssid_max_num, struct rtw_ieee80211_channel *ch, int ch_num);
60 u8 rtw_set_802_11_infrastructure_mode(_adapter *padapter, NDIS_802_11_NETWORK_INFRASTRUCTURE networktype);
61 u8 rtw_set_802_11_remove_wep(_adapter *padapter, u32 keyindex);
62 u8 rtw_set_802_11_ssid(_adapter *padapter, NDIS_802_11_SSID *ssid);
63 u8 rtw_set_802_11_connect(_adapter *padapter, u8 *bssid, NDIS_802_11_SSID *ssid);
64 u8 rtw_set_802_11_remove_key(_adapter *padapter, NDIS_802_11_REMOVE_KEY *key);
65
66 u8 rtw_validate_bssid(u8 *bssid);
67 u8 rtw_validate_ssid(NDIS_802_11_SSID *ssid);
68
69 u16 rtw_get_cur_max_rate(_adapter *adapter);
70 int rtw_set_scan_mode(_adapter *adapter, RT_SCAN_TYPE scan_mode);
71 int rtw_set_channel_plan(_adapter *adapter, u8 channel_plan);
72 int rtw_set_country(_adapter *adapter, const char *country_code);
73 int rtw_set_band(_adapter *adapter, u8 band);
74
75 #endif