zephyr/arch/x86/core/reboot_rst_cnt.c
Qipeng Zha a638223df3 arch: x86: make sys_arch_reboot as weak function
Intel ISH SoC can't reboot via RST_CNT register,
so make sys_arch_reboot as weak function to allow
implement different arch reboot in SoC layer.

Signed-off-by: Dong Wang <dong.d.wang@intel.com>
Signed-off-by: Qipeng Zha <qipeng.zha@intel.com>
2023-05-10 09:21:15 -05:00

41 lines
783 B
C

/*
* Copyright (c) 2015 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file x86-specific reboot functionalities
*
* @details Implements the required 'arch' sub-APIs.
*/
#include <zephyr/kernel.h>
#include <zephyr/sys/reboot.h>
/* reboot through Reset Control Register (I/O port 0xcf9) */
#define X86_RST_CNT_REG 0xcf9
#define X86_RST_CNT_SYS_RST 0x02
#define X86_RST_CNT_CPU_RST 0x4
#define X86_RST_CNT_FULL_RST 0x08
static inline void cold_reboot(void)
{
uint8_t reset_value = X86_RST_CNT_CPU_RST | X86_RST_CNT_SYS_RST |
X86_RST_CNT_FULL_RST;
sys_out8(reset_value, X86_RST_CNT_REG);
}
void __weak sys_arch_reboot(int type)
{
switch (type) {
case SYS_REBOOT_COLD:
cold_reboot();
break;
default:
/* do nothing */
break;
}
}