2015-09-29 04:04:34 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-09-29 04:04:34 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file x86-specific reboot functionalities
|
|
|
|
*
|
|
|
|
* @details Implements the required 'arch' sub-APIs.
|
|
|
|
*/
|
|
|
|
|
2016-12-23 21:35:34 +08:00
|
|
|
#include <kernel.h>
|
2019-06-26 22:44:43 +08:00
|
|
|
#include <power/reboot.h>
|
2015-09-29 04:04:34 +08:00
|
|
|
|
2019-06-24 04:43:50 +08:00
|
|
|
/* 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
|
|
|
|
|
2015-09-29 04:04:34 +08:00
|
|
|
static inline void cold_reboot(void)
|
|
|
|
{
|
2020-05-28 00:26:57 +08:00
|
|
|
uint8_t reset_value = X86_RST_CNT_CPU_RST | X86_RST_CNT_SYS_RST |
|
2019-06-24 04:43:50 +08:00
|
|
|
X86_RST_CNT_FULL_RST;
|
|
|
|
sys_out8(reset_value, X86_RST_CNT_REG);
|
2015-09-29 04:04:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void sys_arch_reboot(int type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case SYS_REBOOT_COLD:
|
|
|
|
cold_reboot();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* do nothing */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|