blob: ed8c0ac5d3e04a8c93c7a877cee71934f5de7fc2 [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Chandrasekaran, Manishekara74bb022016-01-12 18:37:43 +05302 * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28#if !defined(WLAN_HDD_HOSTAPD_H)
29#define WLAN_HDD_HOSTAPD_H
30
31/**
32 * DOC: wlan_hdd_hostapd.h
33 *
34 * WLAN Host Device driver hostapd header file
35 */
36
37/* Include files */
38
39#include <linux/netdevice.h>
40#include <linux/skbuff.h>
Anurag Chouhanffb21542016-02-17 14:33:03 +053041#include <qdf_list.h>
Anurag Chouhan6d760662016-02-20 16:05:43 +053042#include <qdf_types.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080043#include <wlan_hdd_main.h>
44
45/* Preprocessor definitions and constants */
46
47/* max length of command string in hostapd ioctl */
48#define HOSTAPD_IOCTL_COMMAND_STRLEN_MAX 8192
49
50hdd_adapter_t *hdd_wlan_create_ap_dev(hdd_context_t *pHddCtx,
Ryan Hsu07495ea2016-01-21 15:25:39 -080051 tSirMacAddr macAddr,
52 unsigned char name_assign_type,
53 uint8_t *name);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080054
Anurag Chouhanfb54ab02016-02-18 18:00:46 +053055QDF_STATUS hdd_register_hostapd(hdd_adapter_t *pAdapter, uint8_t rtnl_held);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080056
Anurag Chouhanfb54ab02016-02-18 18:00:46 +053057QDF_STATUS hdd_unregister_hostapd(hdd_adapter_t *pAdapter, bool rtnl_held);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080058
59eCsrAuthType
60hdd_translate_rsn_to_csr_auth_type(uint8_t auth_suite[4]);
61
Abhishek Singh1bdb1572015-10-16 16:24:19 +053062int hdd_softap_set_channel_change(struct net_device *dev,
Kiran Kumar Lokere13644672016-02-29 15:40:10 -080063 int target_channel,
64 enum phy_ch_width target_bw);
Abhishek Singh1bdb1572015-10-16 16:24:19 +053065
Chandrasekaran Manishekarcde33d72016-04-14 19:03:39 +053066#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
67void hdd_sap_restart_with_channel_switch(hdd_adapter_t *adapter,
68 uint32_t target_channel,
69 uint32_t target_bw);
70#endif
71
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080072eCsrEncryptionType
73hdd_translate_rsn_to_csr_encryption_type(uint8_t cipher_suite[4]);
74
75eCsrEncryptionType
76hdd_translate_rsn_to_csr_encryption_type(uint8_t cipher_suite[4]);
77
78eCsrAuthType
79hdd_translate_wpa_to_csr_auth_type(uint8_t auth_suite[4]);
80
81eCsrEncryptionType
82hdd_translate_wpa_to_csr_encryption_type(uint8_t cipher_suite[4]);
83
Anurag Chouhanfb54ab02016-02-18 18:00:46 +053084QDF_STATUS hdd_softap_sta_deauth(hdd_adapter_t *,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080085 struct tagCsrDelStaParams *);
86void hdd_softap_sta_disassoc(hdd_adapter_t *, uint8_t *);
87void hdd_softap_tkip_mic_fail_counter_measure(hdd_adapter_t *, bool);
88int hdd_softap_unpack_ie(tHalHandle halHandle,
89 eCsrEncryptionType *pEncryptType,
90 eCsrEncryptionType *mcEncryptType,
91 eCsrAuthType *pAuthType,
92 bool *pMFPCapable,
93 bool *pMFPRequired,
94 uint16_t gen_ie_len, uint8_t *gen_ie);
95
Anurag Chouhanfb54ab02016-02-18 18:00:46 +053096QDF_STATUS hdd_hostapd_sap_event_cb(tpSap_Event pSapEvent,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080097 void *usrDataForCallback);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +053098QDF_STATUS hdd_init_ap_mode(hdd_adapter_t *pAdapter);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080099void hdd_set_ap_ops(struct net_device *pWlanHostapdDev);
100int hdd_hostapd_stop(struct net_device *dev);
Prashanth Bhatta527fd752016-04-28 12:35:23 -0700101int hdd_sap_context_init(hdd_context_t *hdd_ctx);
102void hdd_sap_context_destroy(hdd_context_t *hdd_ctx);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800103#ifdef FEATURE_WLAN_FORCE_SAP_SCC
104void hdd_restart_softap(hdd_context_t *pHddCtx, hdd_adapter_t *pAdapter);
105#endif /* FEATURE_WLAN_FORCE_SAP_SCC */
106#ifdef QCA_HT_2040_COEX
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530107QDF_STATUS hdd_set_sap_ht2040_mode(hdd_adapter_t *pHostapdAdapter,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800108 uint8_t channel_type);
109#endif
110
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800111
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800112int wlan_hdd_cfg80211_stop_ap(struct wiphy *wiphy,
113 struct net_device *dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800114
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800115int wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
116 struct net_device *dev,
117 struct cfg80211_ap_settings *params);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800118
119int wlan_hdd_cfg80211_change_beacon(struct wiphy *wiphy,
120 struct net_device *dev,
121 struct cfg80211_beacon_data *params);
122
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530123QDF_STATUS wlan_hdd_config_acs(hdd_context_t *hdd_ctx, hdd_adapter_t *adapter);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800124#endif /* end #if !defined(WLAN_HDD_HOSTAPD_H) */