xtensa: intel_adsp: lnl: Fix dspcs struct

This is struct is used to access to contiguous registers for each core
and lnl has 5.

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
Flavio Ceolin 2023-06-16 04:56:52 +00:00 committed by Anas Nashif
commit 5dfaf23f47

View file

@ -21,8 +21,8 @@ struct dspcs {
struct {
uint32_t cap;
uint32_t ctl;
} capctl[3];
uint32_t unused0[10];
} capctl[5];
uint32_t unused0[6];
/*
* DSPBRx
@ -40,7 +40,7 @@ struct dspcs {
uint32_t baddr;
uint32_t battr;
uint32_t unused2;
} bootctl[3];
} bootctl[5];
};
#define DSPCS_CTL_SPA BIT(0)