qcacmn: API to support serialization of restart cmds
Add APIs to support serialization of pdev restart and vdev restart commands. Change-Id: I367a8f369692e660c37278f7494db7aa0aeb7cd6 CRs-Fixed: 2480314
这个提交包含在:
@@ -190,6 +190,7 @@ typedef QDF_STATUS (*wlan_ser_umac_cmd_cb)(void *umac_cmd);
|
||||
* @WLAN_SER_CMD_VDEV_CONNECT: Cmd to start a STA VDEV
|
||||
* @WLAN_SER_CMD_VDEV_DISCONNECT: Cmd to stop a STA VDEV
|
||||
* @WLAN_SER_CMD_VDEV_RESTART: Cmd to restart a VDEV
|
||||
* @WLAN_SER_CMD_PDEV_RESTART: Cmd to restart all VDEVs of a PDEV
|
||||
*/
|
||||
enum wlan_serialization_cmd_type {
|
||||
/* all scan command before non-scan */
|
||||
@@ -225,6 +226,7 @@ enum wlan_serialization_cmd_type {
|
||||
WLAN_SER_CMD_VDEV_CONNECT,
|
||||
WLAN_SER_CMD_VDEV_DISCONNECT,
|
||||
WLAN_SER_CMD_VDEV_RESTART,
|
||||
WLAN_SER_CMD_PDEV_RESTART,
|
||||
WLAN_SER_CMD_MAX
|
||||
};
|
||||
|
||||
|
@@ -95,7 +95,7 @@ wlan_vdev_mlme_ser_stop_bss(struct wlan_serialization_command *cmd)
|
||||
wlan_serialization_is_cmd_present_in_pending_queue(NULL, cmd);
|
||||
wlan_vdev_mlme_ser_cancel_request(cmd->vdev,
|
||||
WLAN_SER_CMD_NONSCAN,
|
||||
WLAN_SER_CANCEL_VDEV_NON_SCAN_CMD);
|
||||
WLAN_SER_CANCEL_VDEV_NON_SCAN_NB_CMD);
|
||||
|
||||
if (wlan_serialization_is_cmd_present_in_active_queue(NULL, cmd)) {
|
||||
mlme_debug("Cmd already exist in the active queue");
|
||||
@@ -111,7 +111,7 @@ wlan_vdev_mlme_ser_stop_bss(struct wlan_serialization_command *cmd)
|
||||
}
|
||||
|
||||
enum wlan_serialization_status
|
||||
wlan_vdev_mlme_ser_restart_bss(struct wlan_serialization_command *cmd)
|
||||
wlan_vdev_mlme_ser_vdev_restart(struct wlan_serialization_command *cmd)
|
||||
{
|
||||
if (!cmd || !cmd->vdev) {
|
||||
mlme_err("Null input");
|
||||
@@ -122,13 +122,83 @@ wlan_vdev_mlme_ser_restart_bss(struct wlan_serialization_command *cmd)
|
||||
return WLAN_SER_CMD_QUEUE_DISABLED;
|
||||
/*
|
||||
* Serialization command filtering logic
|
||||
* a. Cancel any existing RESTART cmd in the pending queue
|
||||
* b. Enqueue the new RESTART cmd
|
||||
* a. If there exists START or PDEV/VDEV restart command in the pending
|
||||
* queue then ignore this new vdev restart request.
|
||||
* b. Else enqueue the new VDEV RESTART cmd
|
||||
*/
|
||||
cmd->cmd_type = WLAN_SER_CMD_VDEV_START_BSS;
|
||||
if (wlan_serialization_is_cmd_present_in_pending_queue(NULL, cmd)) {
|
||||
mlme_debug("Start cmd already in the pending queue");
|
||||
return WLAN_SER_CMD_ALREADY_EXISTS;
|
||||
}
|
||||
|
||||
cmd->cmd_type = WLAN_SER_CMD_PDEV_RESTART;
|
||||
if (wlan_serialization_is_cmd_present_in_pending_queue(NULL, cmd)) {
|
||||
mlme_debug("Pdev restart already in the pending queue");
|
||||
return WLAN_SER_CMD_ALREADY_EXISTS;
|
||||
}
|
||||
|
||||
cmd->cmd_type = WLAN_SER_CMD_VDEV_RESTART;
|
||||
if (wlan_serialization_is_cmd_present_in_pending_queue(NULL, cmd)) {
|
||||
mlme_debug("Vdev restart already in the pending queue");
|
||||
return WLAN_SER_CMD_ALREADY_EXISTS;
|
||||
}
|
||||
|
||||
return wlan_serialization_request(cmd);
|
||||
}
|
||||
|
||||
void wlan_mlme_restart_pdev_iter_cb(struct wlan_objmgr_pdev *pdev,
|
||||
void *object, void *arg)
|
||||
{
|
||||
struct wlan_objmgr_vdev *vdev = (struct wlan_objmgr_vdev *)object;
|
||||
uint8_t *pdev_restart_pending = (uint8_t *)arg;
|
||||
struct wlan_serialization_command cmd = {0};
|
||||
uint8_t vdev_id = wlan_vdev_get_id(vdev);
|
||||
|
||||
cmd.vdev = vdev;
|
||||
cmd.cmd_id = vdev_id;
|
||||
cmd.cmd_type = WLAN_SER_CMD_PDEV_RESTART;
|
||||
/*
|
||||
* Serialization command filtering logic
|
||||
* a. Cancel any existing VDEV restart cmd in the pending queue
|
||||
* b. If Pdev restart already exist in pending queue then return else
|
||||
* enqueue the new PDEV RESTART cmd
|
||||
*/
|
||||
wlan_vdev_mlme_ser_cancel_request(
|
||||
cmd->vdev,
|
||||
vdev,
|
||||
WLAN_SER_CMD_VDEV_RESTART,
|
||||
WLAN_SER_CANCEL_VDEV_NON_SCAN_CMD_TYPE);
|
||||
|
||||
if (wlan_serialization_is_cmd_present_in_pending_queue(NULL, &cmd)) {
|
||||
mlme_debug("Cmd already exist in the pending queue vdev:%u",
|
||||
vdev_id);
|
||||
*pdev_restart_pending = 1;
|
||||
}
|
||||
}
|
||||
|
||||
enum wlan_serialization_status
|
||||
wlan_vdev_mlme_ser_pdev_restart(struct wlan_serialization_command *cmd)
|
||||
{
|
||||
struct wlan_objmgr_pdev *pdev;
|
||||
uint8_t pdev_restart_in_pending = 0;
|
||||
|
||||
if (!cmd || !cmd->vdev) {
|
||||
mlme_err("Null input");
|
||||
return WLAN_SER_CMD_DENIED_UNSPECIFIED;
|
||||
}
|
||||
|
||||
if (!wlan_ser_is_vdev_queue_enabled(cmd->vdev))
|
||||
return WLAN_SER_CMD_QUEUE_DISABLED;
|
||||
|
||||
pdev = wlan_vdev_get_pdev(cmd->vdev);
|
||||
wlan_objmgr_pdev_iterate_obj_list(pdev, WLAN_VDEV_OP,
|
||||
wlan_mlme_restart_pdev_iter_cb,
|
||||
&pdev_restart_in_pending, 0,
|
||||
WLAN_MLME_SER_IF_ID);
|
||||
|
||||
if (pdev_restart_in_pending)
|
||||
return WLAN_SER_CMD_ALREADY_EXISTS;
|
||||
|
||||
return wlan_serialization_request(cmd);
|
||||
}
|
||||
|
||||
@@ -181,14 +251,14 @@ wlan_vdev_mlme_ser_disconnect(struct wlan_serialization_command *cmd)
|
||||
return WLAN_SER_CMD_QUEUE_DISABLED;
|
||||
/*
|
||||
* Serialization command filtering logic
|
||||
* a.Cancel any existing CONNECT/DISCONNECT/RESTART command in the
|
||||
* a.Cancel any existing non-blocking non-scan command in the
|
||||
* pending queue
|
||||
* b.If there is a DISCONNECT cmd in active queue then return
|
||||
* c.Else enqueue the DISCONNECT cmd
|
||||
*/
|
||||
wlan_vdev_mlme_ser_cancel_request(cmd->vdev,
|
||||
WLAN_SER_CMD_NONSCAN,
|
||||
WLAN_SER_CANCEL_VDEV_NON_SCAN_CMD);
|
||||
WLAN_SER_CANCEL_VDEV_NON_SCAN_NB_CMD);
|
||||
|
||||
if (wlan_serialization_is_cmd_present_in_active_queue(NULL, cmd)) {
|
||||
mlme_debug("Cmd already exist in the active queue");
|
||||
@@ -205,7 +275,7 @@ wlan_vdev_mlme_ser_remove_request(struct wlan_objmgr_vdev *vdev,
|
||||
{
|
||||
struct wlan_serialization_queued_cmd_info cmd = {0};
|
||||
|
||||
mlme_debug("Remove the cmd type:%d", cmd_type);
|
||||
mlme_debug("Vdev:%d remove cmd:%d", wlan_vdev_get_id(vdev), cmd_type);
|
||||
|
||||
cmd.vdev = vdev;
|
||||
cmd.cmd_id = cmd_id;
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2018 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2018-2019 The Linux Foundation. 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
|
||||
@@ -49,13 +49,22 @@ enum wlan_serialization_status
|
||||
wlan_vdev_mlme_ser_stop_bss(struct wlan_serialization_command *cmd);
|
||||
|
||||
/**
|
||||
* wlan_vdev_mlme_ser_restart_bss() - Add restart bss cmd to serialization
|
||||
* wlan_vdev_mlme_ser_vdev_restart() - Add vdev restart cmd to serialization
|
||||
* @cmd: Serialization command
|
||||
*
|
||||
* Return: Status of enqueue in the serialization module
|
||||
*/
|
||||
enum wlan_serialization_status
|
||||
wlan_vdev_mlme_ser_restart_bss(struct wlan_serialization_command *cmd);
|
||||
wlan_vdev_mlme_ser_vdev_restart(struct wlan_serialization_command *cmd);
|
||||
|
||||
/**
|
||||
* wlan_vdev_mlme_ser_pdev_restart() - Add pdev restart cmd to serialization
|
||||
* @cmd: Serialization command
|
||||
*
|
||||
* Return: Status of enqueue in the serialization module
|
||||
*/
|
||||
enum wlan_serialization_status
|
||||
wlan_vdev_mlme_ser_pdev_restart(struct wlan_serialization_command *cmd);
|
||||
|
||||
/**
|
||||
* wlan_vdev_mlme_ser_connect() - Add connect cmd to serialization
|
||||
|
在新工单中引用
屏蔽一个用户