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>
|
2015-09-29 04:04:34 +08:00
|
|
|
#include <misc/reboot.h>
|
|
|
|
|
|
|
|
static inline void cold_reboot(void)
|
|
|
|
{
|
2017-04-21 02:30:33 +08:00
|
|
|
u8_t reset_value = SYS_X86_RST_CNT_CPU_RST | SYS_X86_RST_CNT_SYS_RST |
|
2015-09-29 04:04:34 +08:00
|
|
|
SYS_X86_RST_CNT_FULL_RST;
|
|
|
|
sys_out8(reset_value, SYS_X86_RST_CNT_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sys_arch_reboot(int type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case SYS_REBOOT_COLD:
|
|
|
|
cold_reboot();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* do nothing */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|