Sfoglia il codice sorgente

qcacmn: Set Band Capability ini config to PSOC user config

Set Band Capability ini config to PSOC user config. This can later
be used in UMAC component.

Change-Id: Idbd4318423187beff8099bfd32d69e5336b8ea58
CRs-Fixed: 2003488
Naveen Rawat 8 anni fa
parent
commit
381fe0ff8e
1 ha cambiato i file con 19 aggiunte e 0 eliminazioni
  1. 19 0
      umac/cmn_services/obj_mgr/inc/wlan_objmgr_psoc_obj.h

+ 19 - 0
umac/cmn_services/obj_mgr/inc/wlan_objmgr_psoc_obj.h

@@ -176,6 +176,7 @@ struct wlan_objmgr_psoc_regulatory {
  * @indoor_channel_support: Enable/disable sap on indoor channel
  * @optimize_chan_avoid_event: Optimize channel avoidance
  *                           indication coming from firmware
+ * @band_capability: Preferred band (0:Both,  1:2G only,  2:5G only)
  */
 struct wlan_objmgr_psoc_user_config {
 	bool is_11d_support_enabled;
@@ -185,6 +186,7 @@ struct wlan_objmgr_psoc_user_config {
 	uint32_t dual_mac_feature_disable;
 	bool indoor_channel_support;
 	bool optimize_chan_avoid_event;
+	uint8_t band_capability;
 };
 
 /**
@@ -1177,4 +1179,21 @@ static inline uint32_t wlan_objmgr_psoc_get_dual_mac_disable(
 	return psoc->soc_nif.user_config.dual_mac_feature_disable;
 }
 
+/**
+* wlan_objmgr_psoc_get_band_capability () - get user config
+* data for band capability
+* @psoc: psoc object pointer
+*
+* Return: band_capability
+*/
+static inline uint8_t wlan_objmgr_psoc_get_band_capability(
+		struct wlan_objmgr_psoc *psoc)
+{
+	/* This API is invoked with lock acquired, do not add log prints */
+	if (psoc == NULL)
+		return 0;
+
+	return psoc->soc_nif.user_config.band_capability;
+}
+
 #endif /* _WLAN_OBJMGR_PSOC_OBJ_H_*/