Эх сурвалжийг харах

qcacld-3.0: Limit max ROC time for NAN and NDI

Currently, for DBS HW fw goes off channel for
400 ms in case of NDP and 450 ms in case of NAN
due to which beacon is not sent in DW window.

Fix is to Limit max ROC duration to 350 ms in case
of NAN and NDI for DBS hardware to improve NDP
setup time.

Change-Id: Iaf5c90a386d2742cdc8f24305756a3691ac70431
CRs-Fixed: 3141393
sheenam monga 3 жил өмнө
parent
commit
b7899f448d

+ 3 - 2
components/p2p/core/src/wlan_p2p_roc.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2017-2019, 2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 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
@@ -32,9 +33,9 @@
 #define P2P_WAIT_CLEANUP_ROC     2000
 #define P2P_MAX_ROC_DURATION     1500
 #define P2P_MAX_ROC_DURATION_GO_PRESENT           600
-#define P2P_MAX_ROC_DURATION_DBS_NDP_PRESENT      400
+#define P2P_MAX_ROC_DURATION_DBS_NDP_PRESENT      350
 #define P2P_MAX_ROC_DURATION_NON_DBS_NDP_PRESENT  250
-#define P2P_MAX_ROC_DURATION_DBS_NAN_PRESENT      450
+#define P2P_MAX_ROC_DURATION_DBS_NAN_PRESENT      350
 #define P2P_MAX_ROC_DURATION_NON_DBS_NAN_PRESENT  300
 
 #define P2P_ROC_DURATION_MULTI_GO_PRESENT   300