Skip to content

Commit 002ed73

Browse files
JiafeiPancarlescufi
authored andcommitted
arm64: add sys_arch_reboot() support
If PSCI is enabled, it will leverage psci reset API to achieve system reboot, otherwise a weak dump reboot API is provided, and platform can override these APIs if platform specified implementation provided. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
1 parent a55bb95 commit 002ed73

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

arch/arm64/core/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ zephyr_library_sources(
99
irq_init.c
1010
irq_manage.c
1111
prep_c.c
12+
reboot.c
1213
reset.S
1314
reset.c
1415
switch.S

arch/arm64/core/reboot.c

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
* Copyright 2024 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include <zephyr/kernel.h>
8+
#include <zephyr/logging/log.h>
9+
#include <zephyr/sys/reboot.h>
10+
#include <zephyr/drivers/pm_cpu_ops.h>
11+
12+
LOG_MODULE_DECLARE(os, CONFIG_KERNEL_LOG_LEVEL);
13+
14+
#ifdef CONFIG_PM_CPU_OPS_PSCI
15+
void __weak sys_arch_reboot(int type)
16+
{
17+
unsigned char reset_type;
18+
19+
if (type == SYS_REBOOT_COLD) {
20+
reset_type = SYS_COLD_RESET;
21+
} else if (type == SYS_REBOOT_WARM) {
22+
reset_type = SYS_WARM_RESET;
23+
} else {
24+
LOG_ERR("Invalid reboot type");
25+
return;
26+
}
27+
pm_system_reset(reset_type);
28+
}
29+
#else
30+
void __weak sys_arch_reboot(int type)
31+
{
32+
LOG_WRN("%s is not implemented", __func__);
33+
ARG_UNUSED(type);
34+
}
35+
#endif

0 commit comments

Comments
 (0)