123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2012-11-20 Bernard the first version
- * 2018-11-22 Jesven add rt_hw_spin_lock
- * add rt_hw_spin_unlock
- * add smp ipi init
- */
- #include <rthw.h>
- #include <rtthread.h>
- #include <rtdbg.h>
- #include "board.h"
- #include "mm_aspace.h"
- #include <mmu.h>
- #ifdef RT_USING_SMART
- #include <page.h>
- #include <lwp_arch.h>
- #endif
- #ifdef RT_USING_SMART
- extern size_t MMUTable[];
- struct mem_desc platform_mem_desc[] = { /* 100ask_imx6ull ddr 512M */
- {KERNEL_VADDR_START, KERNEL_VADDR_START + 0x1FFFFFFF, (rt_size_t)ARCH_MAP_FAILED, NORMAL_MEM}
- };
- #else
- struct mem_desc platform_mem_desc[] = {
- {0x00000000, 0x80000000, 0x00000000, DEVICE_MEM},
- {0x80000000, 0xFFF00000, 0x80000000, NORMAL_MEM}
- };
- #endif
- const rt_uint32_t platform_mem_desc_size = sizeof(platform_mem_desc)/sizeof(platform_mem_desc[0]);
- void idle_wfi(void)
- {
- asm volatile ("wfi");
- }
- /**
- * This function will initialize board
- */
- #ifdef RT_USING_SMART
- rt_region_t init_page_region = {
- (uint32_t)PAGE_START,
- (uint32_t)PAGE_END,
- };
- #endif
- int board_reboot(int argc, char **argv)
- {
- wdog_config_t config;
- SRC_Type *src = (SRC_Type*)g_src_vbase;
- WDOG_Type *wdog = (WDOG_Type*)g_wdog1_vbase;
- LOG_E("resetting ...\n");
- rt_hw_ms_delay(50);
- src->SCR &= ~SRC_SCR_WARM_RESET_ENABLE_MASK;
- CLOCK_EnableClock(kCLOCK_Wdog1);
- WDOG_GetDefaultConfig(&config);
- config.timeoutValue = 0x00u;
- WDOG_Init(wdog, &config);
- while (1)
- {
- //waiting...
- }
- return 0;
- }
- MSH_CMD_EXPORT_ALIAS(board_reboot, reboot, reboot system);
- void assert_handler(const char *ex_string, const char *func, rt_size_t line)
- {
- volatile char dummy = 0;
- extern int list_thread(void);
- list_thread();
- rt_backtrace();
- rt_kprintf("(%s) assertion failed at function:%s, line number:%d \n", ex_string, func, line);
- while (dummy == 0)
- ;
- }
- #define PUTC(periph, ch) \
- do { \
- while (0 == (periph->USR2 & UART_USR2_TXDC_MASK)); \
- periph->UTXD = ch; \
- } while (0)
- void rt_hw_board_init(void)
- {
- #ifdef RT_USING_SMART
- rt_uint32_t mmutable_p = 0;
- rt_hw_mmu_map_init(&rt_kernel_space, (void*)0xf0000000, 0x10000000, MMUTable, PV_OFFSET);
- rt_hw_init_mmu_table(platform_mem_desc, platform_mem_desc_size);
- mmutable_p = (rt_uint32_t)MMUTable + (rt_uint32_t)PV_OFFSET ;
- rt_hw_mmu_switch((void*)mmutable_p);
- rt_page_init(init_page_region);
- rt_hw_mmu_ioremap_init(&rt_kernel_space, (void*)0xf0000000, 0x10000000);
- arch_kuser_init(&rt_kernel_space, (void*)0xffff0000);
- #else
- rt_hw_mmu_map_init(&rt_kernel_space, (void*)0x80000000, 0x10000000, MMUTable, 0);
- rt_hw_init_mmu_table(platform_mem_desc,platform_mem_desc_size);
- rt_hw_mmu_init();
- rt_hw_mmu_ioremap_init(&rt_kernel_space, (void*)0x80000000, 0x10000000);
- #endif
- /* initialize system heap */
- rt_system_heap_init(HEAP_BEGIN, HEAP_END);
- /* initialize hardware interrupt */
- rt_hw_interrupt_init();
- SystemAddressMapping();
- SystemClockInit();
- rt_components_board_init();
- rt_console_set_device(RT_CONSOLE_DEVICE_NAME);
- rt_thread_idle_sethook(idle_wfi);
- rt_assert_set_hook(assert_handler);
- }
|