|
@@ -32,6 +32,25 @@
|
|
|
* WLAN Host Device Driver TDLS include file
|
|
|
*/
|
|
|
|
|
|
+/*
|
|
|
+ * enum eTDLSSupportMode - TDLS support modes
|
|
|
+ * @eTDLS_SUPPORT_NOT_ENABLED: TDLS support not enabled
|
|
|
+ * @eTDLS_SUPPORT_DISABLED: suppress implicit trigger and not respond
|
|
|
+ * to the peer
|
|
|
+ * @eTDLS_SUPPORT_EXPLICIT_TRIGGER_ONLY: suppress implicit trigger,
|
|
|
+ * but respond to the peer
|
|
|
+ * @eTDLS_SUPPORT_ENABLED: implicit trigger
|
|
|
+ * @eTDLS_SUPPORT_EXTERNAL_CONTROL: implicit trigger but only to a
|
|
|
+ * peer mac configured by user space.
|
|
|
+ */
|
|
|
+typedef enum {
|
|
|
+ eTDLS_SUPPORT_NOT_ENABLED = 0,
|
|
|
+ eTDLS_SUPPORT_DISABLED,
|
|
|
+ eTDLS_SUPPORT_EXPLICIT_TRIGGER_ONLY,
|
|
|
+ eTDLS_SUPPORT_ENABLED,
|
|
|
+ eTDLS_SUPPORT_EXTERNAL_CONTROL,
|
|
|
+} eTDLSSupportMode;
|
|
|
+
|
|
|
#ifdef FEATURE_WLAN_TDLS
|
|
|
|
|
|
/*
|
|
@@ -130,26 +149,6 @@ typedef struct {
|
|
|
struct delayed_work tdls_scan_work;
|
|
|
} tdls_scan_context_t;
|
|
|
|
|
|
-/**
|
|
|
- * enum eTDLSSupportMode - tdls support mode
|
|
|
- *
|
|
|
- * @eTDLS_SUPPORT_NOT_ENABLED: tdls support not enabled
|
|
|
- * @eTDLS_SUPPORT_DISABLED: suppress implicit trigger and not
|
|
|
- * respond to the peer
|
|
|
- * @eTDLS_SUPPORT_EXPLICIT_TRIGGER_ONLY: suppress implicit trigger,
|
|
|
- * but respond to the peer
|
|
|
- * @eTDLS_SUPPORT_ENABLED: implicit trigger
|
|
|
- * @eTDLS_SUPPORT_EXTERNAL_CONTROL: External control means implicit
|
|
|
- * trigger but only to a peer mac configured by user space.
|
|
|
- */
|
|
|
-typedef enum {
|
|
|
- eTDLS_SUPPORT_NOT_ENABLED = 0,
|
|
|
- eTDLS_SUPPORT_DISABLED,
|
|
|
- eTDLS_SUPPORT_EXPLICIT_TRIGGER_ONLY,
|
|
|
- eTDLS_SUPPORT_ENABLED,
|
|
|
- eTDLS_SUPPORT_EXTERNAL_CONTROL,
|
|
|
-} eTDLSSupportMode;
|
|
|
-
|
|
|
/**
|
|
|
* enum tdls_spatial_streams - TDLS spatial streams
|
|
|
* @TDLS_NSS_1x1_MODE: TDLS tx/rx spatial streams = 1
|
|
@@ -750,6 +749,9 @@ void wlan_hdd_tdls_notify_connect(hdd_adapter_t *adapter,
|
|
|
* Return: None
|
|
|
*/
|
|
|
void wlan_hdd_tdls_notify_disconnect(hdd_adapter_t *adapter);
|
|
|
+void wlan_hdd_change_tdls_mode(void *hdd_ctx);
|
|
|
+void hdd_restart_tdls_source_timer(hdd_context_t *pHddCtx,
|
|
|
+ eTDLSSupportMode tdls_mode);
|
|
|
|
|
|
/**
|
|
|
* wlan_hdd_cfg80211_configure_tdls_mode() - configure tdls mode
|
|
@@ -815,6 +817,14 @@ static inline int wlan_hdd_cfg80211_configure_tdls_mode(struct wiphy *wiphy,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static inline void wlan_hdd_change_tdls_mode(void *hdd_ctx)
|
|
|
+{
|
|
|
+}
|
|
|
+static inline void
|
|
|
+hdd_restart_tdls_source_timer(hdd_context_t *pHddCtx,
|
|
|
+ eTDLSSupportMode tdls_mode)
|
|
|
+{
|
|
|
+}
|
|
|
#endif /* End of FEATURE_WLAN_TDLS */
|
|
|
|
|
|
#ifdef FEATURE_WLAN_DIAG_SUPPORT
|