File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ config SOC_SERIES_NRF92X
7
7
select HAS_NRFS
8
8
select HAS_NRFX
9
9
select HAS_NORDIC_DRIVERS
10
+ select SOC_EARLY_INIT_HOOK if ARM
10
11
select NRF_PLATFORM_HALTIUM
11
12
12
13
config SOC_NRF9230_ENGB_CPUAPP
@@ -48,3 +49,6 @@ config SOC_NRF9230_ENGB_CPURAD
48
49
49
50
config SOC_NRF9230_ENGB_CPUPPR
50
51
select RISCV_CORE_NORDIC_VPR
52
+
53
+ config SOC_NRF9280_IRON
54
+ select EXPERIMENTAL if MCUBOOT
Original file line number Diff line number Diff line change @@ -62,5 +62,10 @@ config SOC_NRF9280_CPUPPR
62
62
help
63
63
nRF9280 CPUPPR
64
64
65
+ config SOC_NRF9280_IRON
66
+ bool
67
+ help
68
+ Indicates that local domain firmware is compatible with Nordic IRONside SE.
69
+
65
70
config SOC
66
71
default "nrf9280" if SOC_NRF9280
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ static int trim_hsfll(void)
84
84
return 0 ;
85
85
}
86
86
87
- static int nordicsemi_nrf92_init (void )
87
+ void soc_early_init_hook (void )
88
88
{
89
89
sys_cache_instr_enable ();
90
90
sys_cache_data_enable ();
@@ -102,13 +102,9 @@ static int nordicsemi_nrf92_init(void)
102
102
103
103
nrf_spu_periph_perm_dmasec_set (spu , nrf_address_slave_get (ccm030_addr ), true);
104
104
#endif
105
-
106
- return 0 ;
107
105
}
108
106
109
107
void arch_busy_wait (uint32_t time_us )
110
108
{
111
109
nrfx_coredep_delay_us (time_us );
112
110
}
113
-
114
- SYS_INIT (nordicsemi_nrf92_init , PRE_KERNEL_1 , CONFIG_KERNEL_INIT_PRIORITY_DEFAULT );
You can’t perform that action at this time.
0 commit comments