2021-05-18 09:57:25 +08:00
|
|
|
/*
|
2021-05-21 18:39:41 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2021-05-18 09:57:25 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2021-01-30 lizhirui first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rthw.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rtdevice.h>
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "tick.h"
|
|
|
|
|
|
|
|
#include "drv_uart.h"
|
|
|
|
#include "encoding.h"
|
|
|
|
#include "stack.h"
|
|
|
|
#include "riscv.h"
|
|
|
|
#include "stack.h"
|
2021-05-21 17:03:30 +08:00
|
|
|
#include "riscv_io.h"
|
|
|
|
#include "plic.h"
|
|
|
|
#include "interrupt.h"
|
2022-05-27 23:31:35 +08:00
|
|
|
#ifdef CONFIG_RISCV_S_MODE
|
|
|
|
#include "sbi.h"
|
|
|
|
#endif
|
2021-05-18 09:57:25 +08:00
|
|
|
|
|
|
|
void primary_cpu_entry(void)
|
|
|
|
{
|
|
|
|
extern void entry(void);
|
|
|
|
|
|
|
|
/* disable global interrupt */
|
2021-05-18 19:05:06 +08:00
|
|
|
rt_memset(&__bss_start, 0x0, (rt_uint8_t*)&__bss_end - (rt_uint8_t*)&__bss_start);
|
|
|
|
|
2021-05-18 09:57:25 +08:00
|
|
|
rt_hw_interrupt_disable();
|
|
|
|
entry();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void rt_hw_board_init(void)
|
|
|
|
{
|
|
|
|
/* initalize interrupt */
|
|
|
|
rt_hw_interrupt_init();
|
|
|
|
/* initialize hardware interrupt */
|
|
|
|
rt_hw_uart_init();
|
|
|
|
|
2022-01-08 23:29:41 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
|
|
|
/* initialize memory system */
|
|
|
|
rt_system_heap_init(RT_HW_HEAP_BEGIN, RT_HW_HEAP_END);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE)
|
|
|
|
/* set console device */
|
|
|
|
rt_console_set_device("uart");
|
|
|
|
#endif
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2021-05-21 17:03:30 +08:00
|
|
|
rt_hw_tick_init();
|
|
|
|
rt_kprintf("heap: [0x%08x - 0x%08x]\n", (rt_ubase_t) RT_HW_HEAP_BEGIN, (rt_ubase_t) RT_HW_HEAP_END);
|
2021-05-21 18:39:41 +08:00
|
|
|
|
2022-01-08 23:29:41 +08:00
|
|
|
#ifdef RT_USING_COMPONENTS_INIT
|
|
|
|
rt_components_board_init();
|
|
|
|
#endif
|
2021-05-18 09:57:25 +08:00
|
|
|
}
|
|
|
|
|
2022-05-27 23:31:35 +08:00
|
|
|
#ifdef CONFIG_RISCV_S_MODE
|
|
|
|
static void cmd_shutdown(void)
|
2021-05-18 09:57:25 +08:00
|
|
|
{
|
2021-05-18 18:58:39 +08:00
|
|
|
sbi_shutdown();
|
2021-05-18 09:57:25 +08:00
|
|
|
while(1);
|
|
|
|
}
|
2022-05-27 23:31:35 +08:00
|
|
|
MSH_CMD_EXPORT_ALIAS(cmd_shutdown, shutdown, shutdown qemu-virt64);
|
|
|
|
#endif
|