Skip to content

Commit b131329

Browse files
tomeuvstorulf
authored andcommitted
pmdomain: amlogic: Fix mask for the second NNA mem PD domain
Without this change, the NPU hangs when the 8th NN core is used. It matches what the out-of-tree driver does. Signed-off-by: Tomeu Vizoso <[email protected]> Fixes: 9a217b7 ("soc: amlogic: meson-pwrc: Add NNA power domain for A311D") Acked-by: Neil Armstrong <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Ulf Hansson <[email protected]>
1 parent 374de39 commit b131329

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pmdomain/amlogic/meson-ee-pwrc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ static struct meson_ee_pwrc_mem_domain sm1_pwrc_mem_audio[] = {
228228

229229
static struct meson_ee_pwrc_mem_domain g12a_pwrc_mem_nna[] = {
230230
{ G12A_HHI_NANOQ_MEM_PD_REG0, GENMASK(31, 0) },
231-
{ G12A_HHI_NANOQ_MEM_PD_REG1, GENMASK(23, 0) },
231+
{ G12A_HHI_NANOQ_MEM_PD_REG1, GENMASK(31, 0) },
232232
};
233233

234234
#define VPU_PD(__name, __top_pd, __mem, __is_pwr_off, __resets, __clks) \

0 commit comments

Comments
 (0)