qcacmn: Support multivdev restart response handling

Add UMAC change to support consolidated multi vdev
response handling.

Change-Id: I3383c723a96b1c8009665b00e19aa5aa4bf65bfb
CRs-Fixed: 2595743
This commit is contained in:
Santosh Anbu
2020-01-02 15:12:04 +05:30
committed by nshrivas
parent 8fcc17ccf9
commit 060bf3975a
5 changed files with 60 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2019-2020 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
@@ -150,4 +150,17 @@ struct peer_delete_all_response {
uint8_t status;
};
#define VDEV_ID_BMAP_SIZE 2
/**
* struct multi_vdev_restart_resp - multi-vdev restart response structure
* @pdev_id: pdev id
* @status: FW status for multi vdev restart request
* @vdev_id_bmap: Bitmap of vdev_ids
*/
struct multi_vdev_restart_resp {
uint8_t pdev_id;
uint8_t status;
unsigned long vdev_id_bmap[VDEV_ID_BMAP_SIZE];
};
#endif /* __WLAN_VDEV_MGR_TGT_IF_RX_DEFS_H__ */