Skip to content

Commit 830ee0e

Browse files
soc: nordic: activate uicr generation and use correct dt reg check
- Activate the UICR file generation and PeriphConf for nRF92 application. - Add condition in reg dt check file to use the correct uicr node name for nRF92X. Signed-off-by: Aymen LAOUINI <[email protected]>
1 parent 9c04a1d commit 830ee0e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

soc/nordic/common/uicr/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
config NRF_HALTIUM_GENERATE_UICR
55
bool "Generate UICR file"
6-
depends on SOC_NRF54H20_CPUAPP
6+
depends on SOC_NRF54H20_CPUAPP || SOC_NRF9280_CPUAPP
77
default y
88
help
99
Generate UICR HEX file.
@@ -23,7 +23,7 @@ endif
2323

2424
config NRF_PERIPHCONF_SECTION
2525
bool "Populate global peripheral initialization section"
26-
default y if SOC_NRF54H20_CPUAPP
26+
default y if SOC_NRF54H20_CPUAPP || SOC_NRF9280_CPUAPP
2727
depends on LINKER_DEVNULL_SUPPORT
2828
imply LINKER_DEVNULL_MEMORY
2929
help

soc/nordic/validate_base_addresses.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ CHECK_DT_REG(uart134, NRF_UARTE134);
341341
CHECK_DT_REG(uart135, NRF_UARTE135);
342342
CHECK_DT_REG(uart136, NRF_UARTE136);
343343
CHECK_DT_REG(uart137, NRF_UARTE137);
344-
#if !defined(CONFIG_SOC_SERIES_NRF54HX)
344+
#if !defined(CONFIG_SOC_SERIES_NRF54HX) && !defined(CONFIG_SOC_SERIES_NRF92X)
345345
CHECK_DT_REG(uicr, NRF_UICR);
346346
#else
347347
CHECK_DT_REG(uicr, NRF_APPLICATION_UICR);

0 commit comments

Comments
 (0)