Ver código fonte

qcacld-3.0: Add INI param to configure dynamic set MAC address feature

Add INI param to enable or disable dynamic set MAC address feature.

Change-Id: I63572965e9928587efe19c4d080bbadd65a48b59
CRs-Fixed: 3081014
Bapiraju Alla 3 anos atrás
pai
commit
bb0212b98c
2 arquivos alterados com 34 adições e 1 exclusões
  1. 31 0
      core/hdd/inc/hdd_config.h
  2. 3 1
      core/hdd/src/wlan_hdd_main.c

+ 31 - 0
core/hdd/inc/hdd_config.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 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
@@ -1747,7 +1748,37 @@ enum host_log_level {
 			"001018 06 0201009c0000 FC 01 001018 06 0201001c0000 FC 01 001018 06 0200009c0000 FC 01", \
 			"Used to specify action OUIs for forcing max NSS connection")
 
+#ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
+/*
+ * <ini>
+ * dynamic_mac_addr_update_supported - Flag to configure dynamic MAC address
+ *                                     support in the driver
+ *
+ * @Min: 0
+ * @Max: 1
+ * Default: 1
+ *
+ * This ini param is used to enable/disable the dynamic MAC address support
+ * in the driver.
+ *
+ * Supported Feature: STA/SAP/P2P_Device
+ *
+ * Usage: External
+ *
+ * </ini>
+ */
+#define CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED CFG_INI_BOOL( \
+			"dynamic_mac_addr_update_supported", \
+			1, \
+			"Dynamic MAC address update support")
+#define CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED_ALL \
+	CFG(CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED)
+#else
+#define CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED_ALL
+#endif
+
 #define CFG_HDD_ALL \
+	CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED_ALL \
 	CFG_ENABLE_PACKET_LOG_ALL \
 	CFG_ENABLE_RUNTIME_PM_ALL \
 	CFG_ENABLE_QMI_STATS_ALL \

+ 3 - 1
core/hdd/src/wlan_hdd_main.c

@@ -1819,7 +1819,9 @@ hdd_set_dynamic_macaddr_update_capability(struct hdd_context *hdd_ctx,
 					  struct wma_tgt_services *cfg)
 {
 	hdd_ctx->is_vdev_macaddr_dynamic_update_supported =
-					cfg->dynamic_vdev_macaddr_support;
+				cfg->dynamic_vdev_macaddr_support &&
+				cfg_get(hdd_ctx->psoc,
+					CFG_DYNAMIC_MAC_ADDR_UPDATE_SUPPORTED);
 }
 #else
 static inline void