|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -609,6 +609,115 @@
|
|
|
0, \
|
|
|
"disconnect sap tdls in wow")
|
|
|
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * enable_ssr_on_page_fault - Enable SSR on pagefault
|
|
|
+ * @Min: 0
|
|
|
+ * @Max: 1
|
|
|
+ * @Default: 0
|
|
|
+ *
|
|
|
+ * This INI is used to enable/disable SSR when host is woken up with the reason
|
|
|
+ * as pagefault.
|
|
|
+ * For ex: If enable_ssr_on_page_fault = 1, max_pagefault_wakeups_for_ssr = 30,
|
|
|
+ * interval_for_pagefault_wakeup_counts = 180000 (3 mins) and
|
|
|
+ * ssr_frequency_on_pagefault = 3600000 (1hr), in this case host will trigger
|
|
|
+ * the SSR if it receives 30 wakeups because of pagefaults in 3 mins, host will
|
|
|
+ * trigger SSR only once in 1 hr. Once the SSR is triggered, host will not
|
|
|
+ * trigger next SSR for next 1 hr even if it receives 30 wakeups from fw because
|
|
|
+ * of pagefaults. This 1 hr time is getting monitored from last SSR.
|
|
|
+ *
|
|
|
+ * </ini>
|
|
|
+ */
|
|
|
+#define CFG_ENABLE_SSR_ON_PAGEFAULT CFG_INI_BOOL( \
|
|
|
+ "enable_ssr_on_page_fault", \
|
|
|
+ 0, \
|
|
|
+ "Enable SSR on pagefault")
|
|
|
+
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * max_pagefault_wakeups_for_ssr - Max number of pagefaults wakeups to trigger
|
|
|
+ * SSR
|
|
|
+ * @Min: 1
|
|
|
+ * @Max: 255
|
|
|
+ * @Default: 30
|
|
|
+ *
|
|
|
+ * This ini is used to trigger SSR if fw wakes up host for
|
|
|
+ * max_pagefault_wakeups_for_ssr number of times in
|
|
|
+ * interval_for_pagefault_wakeup_counts interval. SSR is triggered only once
|
|
|
+ * in ssr_frequency_on_pagefault interval.
|
|
|
+ * For ex: If enable_ssr_on_page_fault = 1, max_pagefault_wakeups_for_ssr = 30,
|
|
|
+ * interval_for_pagefault_wakeup_counts = 180000 (3 mins) and
|
|
|
+ * ssr_frequency_on_pagefault = 3600000 (1hr), in this case host will trigger
|
|
|
+ * the SSR if it receives 30 wakeups because of pagefaults in 3 mins, host will
|
|
|
+ * trigger SSR only once in 1 hr. Once the SSR is triggered, host will not
|
|
|
+ * trigger next SSR for next 1 hr even if it receives 30 wakeups from fw because
|
|
|
+ * of pagefaults. This 1 hr time is getting monitored from last SSR.
|
|
|
+ */
|
|
|
+#define CFG_MAX_PAGEFAULT_WAKEUPS_FOR_SSR CFG_INI_UINT( \
|
|
|
+ "max_pagefault_wakeups_for_ssr", \
|
|
|
+ 1, \
|
|
|
+ 255, \
|
|
|
+ 30, \
|
|
|
+ CFG_VALUE_OR_DEFAULT, \
|
|
|
+ "Max number of pagefaults wakeups to trigger SSR")
|
|
|
+
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * interval_for_pagefault_wakeup_counts - Time in ms in which
|
|
|
+ * max_pagefault_wakeups_for_ssr needs to be monitored
|
|
|
+ * @Min: 60000
|
|
|
+ * @Max: 300000
|
|
|
+ * @Default: 180000 (3 mins)
|
|
|
+ *
|
|
|
+ * This ini define time in ms in which max_pagefault_wakeups_for_ssr needs to be
|
|
|
+ * Monitored. If in interval_for_pagefault_wakeup_counts ms,
|
|
|
+ * max_pagefault_wakeups_for_ssr is reached host will trigger the SSR.
|
|
|
+ * SSR is triggered only once in ssr_frequency_on_pagefault interval.
|
|
|
+ * For ex: If enable_ssr_on_page_fault = 1, max_pagefault_wakeups_for_ssr = 30,
|
|
|
+ * interval_for_pagefault_wakeup_counts = 180000 (3 mins) and
|
|
|
+ * ssr_frequency_on_pagefault = 3600000 (1hr), in this case host will trigger
|
|
|
+ * the SSR if it receives 30 wakeups because of pagefaults in 3 mins, host will
|
|
|
+ * trigger SSR only once in 1 hr. Once the SSR is triggered, host will not
|
|
|
+ * trigger next SSR for next 1 hr even if it receives 30 wakeups from fw because
|
|
|
+ * of pagefaults. This 1 hr time is getting monitored from last SSR.
|
|
|
+ */
|
|
|
+#define CFG_INTERVAL_FOR_PAGEFAULT_WAKEUP_COUNT CFG_INI_UINT( \
|
|
|
+ "interval_for_pagefault_wakeup_counts", \
|
|
|
+ 60000, \
|
|
|
+ 300000, \
|
|
|
+ 180000, \
|
|
|
+ CFG_VALUE_OR_DEFAULT, \
|
|
|
+ "Interval in which max_pagefault_wakeups_for_ssr needs to be monitored")
|
|
|
+
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * ssr_frequency_on_pagefault - Time in ms in which host needs to trigger the
|
|
|
+ * next SSR
|
|
|
+ * @Min: 60000
|
|
|
+ * @Max: 7200000
|
|
|
+ * @Default: 3600000 (1 hr)
|
|
|
+ *
|
|
|
+ * This ini define time in ms in which next SSR needs to be triggered if
|
|
|
+ * max_pagefault_wakeups_for_ssr is reached in
|
|
|
+ * interval_for_pagefault_wakeup_counts time.
|
|
|
+ * INIs max_pagefault_wakeups_for_ssr, interval_for_pagefault_wakeup_counts and
|
|
|
+ * ssr_frequency_on_pagefault needs to be considered together.
|
|
|
+ * For ex: If enable_ssr_on_page_fault = 1, max_pagefault_wakeups_for_ssr = 30,
|
|
|
+ * interval_for_pagefault_wakeup_counts = 180000 (3 mins) and
|
|
|
+ * ssr_frequency_on_pagefault = 3600000 (1hr), in this case host will trigger
|
|
|
+ * the SSR if it receives 30 wakeups because of pagefaults in 3 mins, host will
|
|
|
+ * trigger SSR only once in 1 hr. Once the SSR is triggered, host will not
|
|
|
+ * trigger next SSR for next 1 hr even if it receives 30 wakeups from fw because
|
|
|
+ * of pagefaults. This 1 hr time is getting monitored from last SSR.
|
|
|
+ */
|
|
|
+#define CFG_SSR_FREQUENCY_ON_PAGEFAULT CFG_INI_UINT( \
|
|
|
+ "ssr_frequency_on_pagefault", \
|
|
|
+ 60000, \
|
|
|
+ 7200000, \
|
|
|
+ 3600000, \
|
|
|
+ CFG_VALUE_OR_DEFAULT, \
|
|
|
+ "Interval in which max_pagefault_wakeups_for_ssr needs to be monitored")
|
|
|
+
|
|
|
/*
|
|
|
* <ini>
|
|
|
* gEnableIcmpOffload - Enable/disable ICMP offload
|
|
@@ -654,6 +763,10 @@
|
|
|
CFG(CFG_ENABLE_BUS_SUSPEND_IN_GO_MODE)\
|
|
|
CFG(CFG_DISCONNECT_SAP_TDLS_IN_WOW) \
|
|
|
CFG(CFG_IGMP_VERSION_SUPPORT) \
|
|
|
- CFG(CFG_ENABLE_ICMP_OFFLOAD)
|
|
|
+ CFG(CFG_ENABLE_ICMP_OFFLOAD) \
|
|
|
+ CFG(CFG_ENABLE_SSR_ON_PAGEFAULT) \
|
|
|
+ CFG(CFG_MAX_PAGEFAULT_WAKEUPS_FOR_SSR) \
|
|
|
+ CFG(CFG_INTERVAL_FOR_PAGEFAULT_WAKEUP_COUNT) \
|
|
|
+ CFG(CFG_SSR_FREQUENCY_ON_PAGEFAULT)
|
|
|
|
|
|
#endif /* WLAN_PMO_COMMON_CFG_H__ */
|