cpu.c 651 字节
Newer Older
G
Grissiom 已提交
1
/*
2
 * Copyright (c) 2006-2018, RT-Thread Development Team
G
Grissiom 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
G
Grissiom 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * Change Logs:
 * Date           Author       Notes
 * 2013-07-20     Bernard      first version
 */

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

/**
 * reset cpu by dog's time-out
 *
 */
19
RT_WEAK void rt_hw_cpu_reset()
G
Grissiom 已提交
20 21 22 23 24 25 26 27 28 29
{
    while (1);  /* loop forever and wait for reset to happen */

    /* NEVER REACHED */
}

/**
 *  shutdown CPU
 *
 */
30
RT_WEAK void rt_hw_cpu_shutdown()
G
Grissiom 已提交
31 32 33 34 35 36 37 38 39 40 41
{
    rt_uint32_t level;
    rt_kprintf("shutdown...\n");

    level = rt_hw_interrupt_disable();
    while (level)
    {
        RT_ASSERT(0);
    }
}