soc: arm: ti_k3: am62x_m4: Lower Initialization level for init

Other drivers like the pinctrl_ti_k3 rely on a fully initialized system.
Move the am62x_init to an earlier stage than PRE_KERNEL_1 to keep both
PRE_KERNEL_{1,2} free for drivers.

Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
This commit is contained in:
Daniel Schultz 2023-09-08 14:21:39 -07:00 committed by Carles Cufí
parent 9f3858aad9
commit a2f971795f
1 changed files with 1 additions and 1 deletions

View File

@ -70,4 +70,4 @@ static int am62x_m4_init(void)
return 0;
}
SYS_INIT(am62x_m4_init, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
SYS_INIT(am62x_m4_init, EARLY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);