소스 검색

qcacmn: Send max commands as param to wmi_unified_attach

Modify arguments of wmi_unified_attach to use struct to
send attach params instead of individual params. Add max
WMI commands as a param. Based on requirement MAX WMI
commands value is different. In case of AP that supports
16 VAPs and more than 512 clients, 1024 commands is not
enough. Use this param to configure this value based on
the requirement.

Change-Id: I4e778475481e509051dfbac70980614b644e1b4a
CRs-fixed: 2034438
Chaithanya Garrepalli 7 년 전
부모
커밋
830d585032
3개의 변경된 파일37개의 추가작업 그리고 20개의 파일을 삭제
  1. 20 7
      wmi/inc/wmi_unified_api.h
  2. 2 0
      wmi/inc/wmi_unified_priv.h
  3. 15 13
      wmi/src/wmi_unified.c

+ 20 - 7
wmi/inc/wmi_unified_api.h

@@ -126,19 +126,32 @@ enum wmi_rx_exec_ctx {
 };
 
 /**
- * attach for unified WMI
- *
- *  @param scn_handle      : handle to SCN.
+ * struct wmi_unified_attach_params - wmi init parameters
+ *  @param osdev            : NIC device
  *  @param target_type      : type of supported wmi command
  *  @param use_cookie       : flag to indicate cookie based allocation
  *  @param ops              : handle to wmi ops
  *  @psoc                   : objmgr psoc
- *  @return opaque handle.
+ *  @max_commands           : max commands
+ */
+struct wmi_unified_attach_params {
+	osdev_t osdev;
+	enum wmi_target_type target_type;
+	bool use_cookie;
+	struct wmi_rx_ops *rx_ops;
+	struct wlan_objmgr_psoc *psoc;
+	uint16_t max_commands;
+};
+
+/**
+ * attach for unified WMI
+ *
+ *  @param scn_handle      : handle to SCN.
+ *  @param params          : attach params for WMI
+ *
  */
 void *wmi_unified_attach(void *scn_handle,
-			 osdev_t osdev, enum wmi_target_type target_type,
-			 bool use_cookie, struct wmi_rx_ops *ops,
-			 struct wlan_objmgr_psoc *psoc);
+			 struct wmi_unified_attach_params *params);
 
 
 

+ 2 - 0
wmi/inc/wmi_unified_priv.h

@@ -1641,6 +1641,7 @@ struct wmi_unified {
 #endif
 	uint32_t *services;
 	struct wmi_soc *soc;
+	uint16_t wmi_max_cmds;
 };
 
 #define WMI_MAX_RADIOS 3
@@ -1669,6 +1670,7 @@ struct wmi_soc {
 	uint32_t vdev_param[wmi_vdev_param_max];
 #endif
 	uint32_t services[wmi_services_max];
+	uint16_t wmi_max_cmds;
 
 };
 

+ 15 - 13
wmi/src/wmi_unified.c

@@ -1399,7 +1399,8 @@ QDF_STATUS wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf,
 	WMI_SET_FIELD(qdf_nbuf_data(buf), WMI_CMD_HDR, COMMANDID, cmd_id);
 
 	qdf_atomic_inc(&wmi_handle->pending_cmds);
-	if (qdf_atomic_read(&wmi_handle->pending_cmds) >= WMI_MAX_CMDS) {
+	if (qdf_atomic_read(&wmi_handle->pending_cmds) >=
+			wmi_handle->wmi_max_cmds) {
 		QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR,
 		    "\n%s: hostcredits = %d", __func__,
 		wmi_get_host_credits(wmi_handle));
@@ -1407,7 +1408,7 @@ QDF_STATUS wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf,
 		qdf_atomic_dec(&wmi_handle->pending_cmds);
 		QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR,
 			"%s: MAX %d WMI Pending cmds reached.", __func__,
-			WMI_MAX_CMDS);
+			wmi_handle->wmi_max_cmds);
 		QDF_BUG(0);
 		return QDF_STATUS_E_BUSY;
 	}
@@ -2099,6 +2100,7 @@ void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx)
 		qdf_atomic_init(&wmi_handle->pending_cmds);
 		qdf_atomic_init(&wmi_handle->is_target_suspended);
 		wmi_handle->target_type = soc->target_type;
+		wmi_handle->wmi_max_cmds = soc->wmi_max_cmds;
 		wmi_handle->soc = soc;
 
 		soc->wmi_pdev[pdev_idx] = wmi_handle;
@@ -2143,9 +2145,7 @@ qdf_export_symbol(wmi_unified_register_module);
  * @Return: wmi handle.
  */
 void *wmi_unified_attach(void *scn_handle,
-			 osdev_t osdev, enum wmi_target_type target_type,
-			 bool use_cookie, struct wmi_rx_ops *rx_ops,
-			 struct wlan_objmgr_psoc *psoc)
+			 struct wmi_unified_attach_params *param)
 {
 	struct wmi_unified *wmi_handle;
 	struct wmi_soc *soc;
@@ -2190,21 +2190,23 @@ void *wmi_unified_attach(void *scn_handle,
 	wmi_interface_logging_init(wmi_handle);
 	/* Attach mc_thread context processing function */
 	wmi_handle->rx_ops.wma_process_fw_event_handler_cbk =
-				rx_ops->wma_process_fw_event_handler_cbk;
-	wmi_handle->target_type = target_type;
-	soc->target_type = target_type;
-	if (wmi_attach_register[target_type]) {
-		wmi_attach_register[target_type](wmi_handle);
+				param->rx_ops->wma_process_fw_event_handler_cbk;
+	wmi_handle->target_type = param->target_type;
+	soc->target_type = param->target_type;
+	if (wmi_attach_register[param->target_type]) {
+		wmi_attach_register[param->target_type](wmi_handle);
 	} else {
 		WMI_LOGE("wmi attach is not registered");
 		goto error;
 	}
 	/* Assign target cookie capablity */
-	wmi_handle->use_cookie = use_cookie;
-	wmi_handle->osdev = osdev;
+	wmi_handle->use_cookie = param->use_cookie;
+	wmi_handle->osdev = param->osdev;
 	wmi_handle->wmi_stopinprogress = 0;
+	wmi_handle->wmi_max_cmds = param->max_commands;
+	soc->wmi_max_cmds = param->max_commands;
 	/* Increase the ref count once refcount infra is present */
-	soc->wmi_psoc = psoc;
+	soc->wmi_psoc = param->psoc;
 	qdf_spinlock_create(&soc->ctx_lock);
 
 	soc->ops = wmi_handle->ops;