board.c 568 B

1234567891011121314151617181920212223242526272829303132
  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. #define DBG_TAG "board"
  11. #define DBG_LVL DBG_INFO
  12. #include <rtdbg.h>
  13. #include <rthw.h>
  14. #include <rtthread.h>
  15. #include <mm_aspace.h>
  16. #include <setup.h>
  17. #include "board.h"
  18. #include "drv_uart.h"
  19. #include "cp15.h"
  20. #include "mmu.h"
  21. #include <mm_page.h>
  22. #ifdef RT_USING_SMART
  23. #include <lwp_arch.h>
  24. #endif
  25. void rt_hw_board_init(void)
  26. {
  27. rt_hw_common_setup();
  28. }