2013-07-21 17:19:30 +08:00
|
|
|
/*
|
2021-04-09 10:52:34 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2013-07-21 17:19:30 +08:00
|
|
|
*
|
2021-04-09 10:52:34 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-07-21 17:19:30 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2011-01-13 weety modified from mini2440
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rthw.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include "at91sam926x.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup AT91SAM926X
|
|
|
|
*/
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
void machine_reset(void)
|
|
|
|
{
|
2021-04-09 10:52:34 +08:00
|
|
|
at91_sys_write(AT91_RSTC_CR, AT91_RSTC_KEY | AT91_RSTC_PROCRST | AT91_RSTC_PERRST);
|
2013-07-21 17:19:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void machine_shutdown(void)
|
|
|
|
{
|
2021-04-09 10:52:34 +08:00
|
|
|
at91_sys_write(AT91_SHDW_CR, AT91_SHDW_KEY | AT91_SHDW_SHDW);
|
2013-07-21 17:19:30 +08:00
|
|
|
}
|
|
|
|
|
2017-10-19 23:46:17 +08:00
|
|
|
#ifdef RT_USING_FINSH
|
|
|
|
|
|
|
|
#include <finsh.h>
|
|
|
|
FINSH_FUNCTION_EXPORT_ALIAS(rt_hw_cpu_reset, reset, restart the system);
|
|
|
|
|
|
|
|
#ifdef FINSH_USING_MSH
|
|
|
|
int cmd_reset(int argc, char** argv)
|
|
|
|
{
|
2021-04-09 10:52:34 +08:00
|
|
|
rt_hw_cpu_reset();
|
|
|
|
return 0;
|
2017-10-19 23:46:17 +08:00
|
|
|
}
|
2021-09-05 13:50:58 +08:00
|
|
|
MSH_CMD_EXPORT_ALIAS(cmd_reset, reset, restart the system);
|
2017-10-19 23:46:17 +08:00
|
|
|
|
|
|
|
int cmd_shutdown(int argc, char** argv)
|
|
|
|
{
|
2021-04-09 10:52:34 +08:00
|
|
|
rt_hw_cpu_shutdown();
|
|
|
|
return 0;
|
2017-10-19 23:46:17 +08:00
|
|
|
}
|
2021-09-05 13:50:58 +08:00
|
|
|
MSH_CMD_EXPORT_ALIAS(cmd_shutdown, shutdown, shutdown the system);
|
2017-10-19 23:46:17 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2013-07-21 17:19:30 +08:00
|
|
|
/*@}*/
|