1 /* 2 * Copyright (c) 2006-2024 RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2024-10-28 zhujiale The first version 9 */ 10 11 #define DBG_TAG "board" 12 #define DBG_LVL DBG_INFO 13 #include <rtdbg.h> 14 15 #include <rthw.h> 16 #include <rtthread.h> 17 #include <mm_aspace.h> 18 #include <setup.h> 19 #include "board.h" 20 #include "drv_uart.h" 21 22 #include "cp15.h" 23 #include "mmu.h" 24 #include <mm_page.h> 25 26 #ifdef RT_USING_SMART 27 #include <lwp_arch.h> 28 #endif rt_hw_board_init(void)29void rt_hw_board_init(void) 30 { 31 rt_hw_common_setup(); 32 } 33