123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*
- * Copyright (c) 2006-2023, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023/06/25 flyingcys first version
- */
- #include <rthw.h>
- #include <rtthread.h>
- #include "board.h"
- #include "sbi.h"
- #ifdef RT_USING_SMART
- #include "riscv_mmu.h"
- #include "mmu.h"
- #include "page.h"
- #include "lwp_arch.h"
- /* respect to boot loader, must be 0xFFFFFFC000200000 */
- RT_STATIC_ASSERT(kmem_region, KERNEL_VADDR_START == 0xFFFFFFC000200000);
- rt_region_t init_page_region = {(rt_size_t)RT_HW_PAGE_START, (rt_size_t)RT_HW_PAGE_END};
- extern size_t MMUTable[];
- struct mem_desc platform_mem_desc[] = {
- {KERNEL_VADDR_START, (rt_size_t)RT_HW_PAGE_END - 1, (rt_size_t)ARCH_MAP_FAILED, NORMAL_MEM},
- };
- #define NUM_MEM_DESC (sizeof(platform_mem_desc) / sizeof(platform_mem_desc[0]))
- #endif /* RT_USING_SMART */
- void init_bss(void)
- {
- unsigned int *dst;
- dst = &__bss_start;
- while ((rt_ubase_t)dst < (rt_ubase_t)&__bss_end)
- {
- *dst++ = 0;
- }
- }
- static void __rt_assert_handler(const char *ex_string, const char *func, rt_size_t line)
- {
- rt_kprintf("(%s) assertion failed at function:%s, line number:%d \n", ex_string, func, line);
- asm volatile("ebreak" ::
- : "memory");
- }
- void primary_cpu_entry(void)
- {
- /* disable global interrupt */
- rt_hw_interrupt_disable();
- rt_assert_set_hook(__rt_assert_handler);
- entry();
- }
- #define IOREMAP_SIZE (1ul << 30)
- #ifndef ARCH_REMAP_KERNEL
- #define IOREMAP_VEND USER_VADDR_START
- #else
- #define IOREMAP_VEND 0ul
- #endif
- void rt_hw_board_init(void)
- {
- #ifdef RT_USING_SMART
- /* init data structure */
- rt_hw_mmu_map_init(&rt_kernel_space, (void *)(IOREMAP_VEND - IOREMAP_SIZE), IOREMAP_SIZE, (rt_size_t *)MMUTable, PV_OFFSET);
- /* init page allocator */
- rt_page_init(init_page_region);
- /* setup region, and enable MMU */
- rt_hw_mmu_setup(&rt_kernel_space, platform_mem_desc, NUM_MEM_DESC);
- #endif
- /* initialize memory system */
- #ifdef RT_USING_HEAP
- rt_system_heap_init(RT_HW_HEAP_BEGIN, RT_HW_HEAP_END);
- #endif
- /* initalize interrupt */
- rt_hw_interrupt_init();
- /* init rtthread hardware */
- rt_hw_tick_init();
- #ifdef RT_USING_SERIAL
- rt_hw_uart_init();
- #endif
- #ifdef RT_USING_CONSOLE
- /* set console device */
- rt_console_set_device(RT_CONSOLE_DEVICE_NAME);
- #endif /* RT_USING_CONSOLE */
- #ifdef RT_USING_COMPONENTS_INIT
- rt_components_board_init();
- #endif
- #ifdef RT_USING_HEAP
- rt_kprintf("heap: [0x%p - 0x%p]\n", (rt_ubase_t)RT_HW_HEAP_BEGIN, (rt_ubase_t)RT_HW_HEAP_END);
- #endif /* RT_USING_HEAP */
- }
|