reset.c 924 字节
Newer Older
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Change Logs:
 * Date           Author       Notes
 * 2011-01-13     weety      modified from mini2440
 */

#include <rthw.h>
#include <rtthread.h>
#include "at91sam9g45.h"

/**
 * @addtogroup AT91SAM926X
 */
/*@{*/

void machine_reset(void)
{
22
    AT91C_BASE_RSTC->RSTC_RCR = AT91C_RSTC_KEY | AT91C_RSTC_PROCRST | AT91C_RSTC_PERRST;
23 24 25 26
}

void machine_shutdown(void)
{
27
    AT91C_BASE_SHDWC->SHDWC_SHCR = AT91C_SHDWC_KEY | AT91C_SHDWC_SHDW;
28 29 30 31 32 33 34 35 36
}

#ifdef RT_USING_FINSH

#include <finsh.h>

#ifdef FINSH_USING_MSH
int cmd_reset(int argc, char** argv)
{
37 38
    rt_hw_cpu_reset();
    return 0;
39
}
40
MSH_CMD_EXPORT_ALIAS(cmd_reset, reset, restart the system);
41 42 43

int cmd_shutdown(int argc, char** argv)
{
44 45
    rt_hw_cpu_shutdown();
    return 0;
46
}
47
MSH_CMD_EXPORT_ALIAS(cmd_shutdown, shutdown, shutdown the system);
48 49 50 51 52

#endif
#endif

/*@}*/