|
@@ -3491,6 +3491,15 @@ enum dot11p_mode {
|
|
|
#define CFG_FILTER_MULTICAST_REPLAY_MAX (1)
|
|
|
#define CFG_FILTER_MULTICAST_REPLAY_DEFAULT (1)
|
|
|
|
|
|
+/*
|
|
|
+ * This parameter will control SIFS burst duration in FW from 0 to 12 ms.
|
|
|
+ * Default value is set to 8ms.
|
|
|
+ */
|
|
|
+#define CFG_SIFS_BURST_DURATION_NAME "g_sifs_burst_duration"
|
|
|
+#define CFG_SIFS_BURST_DURATION_MIN (0)
|
|
|
+#define CFG_SIFS_BURST_DURATION_MAX (12)
|
|
|
+#define CFG_SIFS_BURST_DURATION_DEFAULT (8)
|
|
|
+
|
|
|
|
|
|
/*---------------------------------------------------------------------------
|
|
|
Type declarations
|
|
@@ -4151,6 +4160,8 @@ struct hdd_config {
|
|
|
enum cfg_sub_20_channel_width enable_sub_20_channel_width;
|
|
|
bool indoor_channel_support;
|
|
|
bool multicast_replay_filter;
|
|
|
+ /* parameter for indicating sifs burst duration to fw */
|
|
|
+ uint8_t sifs_burst_duration;
|
|
|
};
|
|
|
|
|
|
#define VAR_OFFSET(_Struct, _Var) (offsetof(_Struct, _Var))
|