Browse Source

qcacld-3.0: Add support to send V3 Shadow config in IPCI PLD layer

Add support to send V3 shadow config in IPCI PLD layer.

Change-Id: I2eaea20b2913c607da07fb4a1f3dfa85d2a0f665
CRs-Fixed: 3381736
Karthik Kantamneni 2 years ago
parent
commit
529cac3223
2 changed files with 38 additions and 0 deletions
  1. 19 0
      core/pld/src/pld_ipci.c
  2. 19 0
      core/pld/src/pld_pcie_fw_sim.c

+ 19 - 0
core/pld/src/pld_ipci.c

@@ -520,6 +520,23 @@ void pld_ipci_unregister_driver(void)
 	icnss_unregister_driver(&pld_ipci_ops);
 }
 
+#ifdef CONFIG_SHADOW_V3
+static inline void
+pld_ipci_populate_shadow_v3_cfg(struct icnss_wlan_enable_cfg *cfg,
+				struct pld_wlan_enable_cfg *config)
+{
+	cfg->num_shadow_reg_v3_cfg = config->num_shadow_reg_v3_cfg;
+	cfg->shadow_reg_v3_cfg = (struct icnss_shadow_reg_v3_cfg *)
+				 config->shadow_reg_v3_cfg;
+}
+#else
+static inline void
+pld_ipci_populate_shadow_v3_cfg(struct icnss_wlan_enable_cfg *cfg,
+				struct pld_wlan_enable_cfg *config)
+{
+}
+#endif
+
 int pld_ipci_wlan_enable(struct device *dev, struct pld_wlan_enable_cfg *config,
 			 enum pld_driver_mode mode, const char *host_version)
 {
@@ -549,6 +566,8 @@ int pld_ipci_wlan_enable(struct device *dev, struct pld_wlan_enable_cfg *config,
 			 config->rri_over_ddr_cfg.base_addr_high;
 	}
 
+	pld_ipci_populate_shadow_v3_cfg(&cfg, config);
+
 	switch (mode) {
 	case PLD_FTM:
 		icnss_mode = ICNSS_FTM;

+ 19 - 0
core/pld/src/pld_pcie_fw_sim.c

@@ -622,6 +622,23 @@ void pld_pcie_fw_sim_unregister_driver(void)
 	cnss_fw_sim_wlan_unregister_driver(&pld_pcie_fw_sim_ops);
 }
 
+#ifdef CONFIG_SHADOW_V3
+static inline void
+pld_pcie_fw_sim_populate_shadow_v3_cfg(struct cnss_wlan_enable_cfg *cfg,
+				       struct pld_wlan_enable_cfg *config)
+{
+	cfg->num_shadow_reg_v3_cfg = config->num_shadow_reg_v3_cfg;
+	cfg->shadow_reg_v3_cfg = (struct cnss_shadow_reg_v3_cfg *)
+				 config->shadow_reg_v3_cfg;
+}
+#else
+static inline void
+pld_pcie_fw_sim_populate_shadow_v3_cfg(struct cnss_wlan_enable_cfg *cfg,
+				       struct pld_wlan_enable_cfg *config)
+{
+}
+#endif
+
 /**
  * pld_pcie_fw_sim_wlan_enable() - Enable WLAN
  * @dev: device
@@ -663,6 +680,8 @@ int pld_pcie_fw_sim_wlan_enable(struct device *dev,
 			 config->rri_over_ddr_cfg.base_addr_high;
 	}
 
+	pld_pcie_fw_sim_populate_shadow_v3_cfg(&cfg, config);
+
 	switch (mode) {
 	case PLD_FTM:
 		cnss_mode = CNSS_FTM;