Skip to content

Commit

Permalink
[nrf fromtree] soc: nordic: Extend address validation for Haltium pla…
Browse files Browse the repository at this point in the history
…tform

VPR addresses are platform-dependent, so let's use a common symbol -
CONFIG_NRF_PLATFORM_HALTIUM - to cover both nRF54H and nRF92 series.

Signed-off-by: Grzegorz Swiderski <grzegorz.swiderski@nordicsemi.no>
(cherry picked from commit 26c99a6)
  • Loading branch information
57300 authored and rlubos committed Sep 13, 2024
1 parent 570c90e commit de695ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soc/nordic/validate_base_addresses.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ CHECK_DT_REG(vmc, NRF_VMC);
CHECK_DT_REG(cpuflpr_clic, NRF_FLPR_VPRCLIC);
#if defined(CONFIG_SOC_NRF54L15)
CHECK_DT_REG(cpuflpr_vpr, NRF_VPR00);
#elif defined(CONFIG_SOC_NRF54H20)
#elif defined(CONFIG_NRF_PLATFORM_HALTIUM)
CHECK_DT_REG(cpuflpr_vpr, NRF_VPR121);
CHECK_DT_REG(cpuppr_vpr, NRF_VPR130);
#endif
Expand Down

0 comments on commit de695ea

Please sign in to comment.