qcacmn: Interrupt assignment for UMAC HW reset feature

UMAC HW reset feature will be using the last interrupt context in each
DP interrupt combination i.e., on a system with more than 8 MSIs for DP,
UMAC HW reset will be assigned a dedicated interrupt context.
Add the necessary support for the same.

CRs-Fixed: 3163900
Change-Id: I26abd01e4261661ed95e1aa3cb2a774e78b50d9f
This commit is contained in:
Shiva Krishna Pittala
2022-06-23 14:06:59 +05:30
committed by Madan Koyyalamudi
父節點 0e54add2cb
當前提交 f853241025
共有 6 個文件被更改,包括 118 次插入1 次删除

查看文件

@@ -14,11 +14,43 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <dp_types.h>
#include <wlan_cfg.h>
/**
* dp_get_umac_reset_intr_ctx() - Get the interrupt context to be used by
* UMAC reset feature
* @soc: DP soc object
* @intr_ctx: Interrupt context variable to be populated by this API
*
* Return: QDF_STATUS of operation
*/
static QDF_STATUS dp_get_umac_reset_intr_ctx(struct dp_soc *soc, int *intr_ctx)
{
int umac_reset_mask, i;
/**
* Go over all the contexts and check which interrupt context has
* the UMAC reset mask set.
*/
for (i = 0; i < wlan_cfg_get_num_contexts(soc->wlan_cfg_ctx); i++) {
umac_reset_mask = wlan_cfg_get_umac_reset_intr_mask(
soc->wlan_cfg_ctx, i);
if (umac_reset_mask) {
*intr_ctx = i;
return QDF_STATUS_SUCCESS;
}
}
*intr_ctx = -1;
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS dp_soc_umac_reset_init(struct dp_soc *soc)
{
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
size_t alloc_size;
QDF_STATUS status;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
@@ -30,6 +62,12 @@ QDF_STATUS dp_soc_umac_reset_init(struct dp_soc *soc)
umac_reset_ctx->current_state = UMAC_RESET_STATE_WAIT_FOR_PRE_RESET;
status = dp_get_umac_reset_intr_ctx(soc, &umac_reset_ctx->intr_offset);
if (QDF_IS_STATUS_ERROR(status)) {
dp_umac_reset_err("No interrupt assignment");
return status;
}
alloc_size = sizeof(struct umac_reset_shmem) +
DP_UMAC_RESET_SHMEM_ALIGN - 1;
umac_reset_ctx->shmem_vaddr_unaligned =