123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /*
- * Copyright (c) 2006-2024, RT-Thread Development Team
- * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2024-01-29 yandld first implementation
- */
- #include <rthw.h>
- #include <rtthread.h>
- #include "board.h"
- #include "clock_config.h"
- #include "drv_uart.h"
- #include "fsl_cache_lpcac.h"
- /**
- * This is the timer interrupt service routine.
- *
- */
- void SysTick_Handler(void)
- {
- /* enter interrupt */
- rt_interrupt_enter();
- rt_tick_increase();
- /* leave interrupt */
- rt_interrupt_leave();
- }
- /**
- * This function will initial board.
- */
- void rt_hw_board_init()
- {
- /* Hardware Initialization */
- BOARD_InitBootPins();
- L1CACHE_EnableCodeCache();
- CLOCK_EnableClock(kCLOCK_Freqme);
- CLOCK_EnableClock(kCLOCK_InputMux);
- CLOCK_EnableClock(kCLOCK_Port0);
- CLOCK_EnableClock(kCLOCK_Port1);
- CLOCK_EnableClock(kCLOCK_Port2);
- CLOCK_EnableClock(kCLOCK_Port3);
- CLOCK_EnableClock(kCLOCK_Port4);
- CLOCK_EnableClock(kCLOCK_Gpio0);
- CLOCK_EnableClock(kCLOCK_Gpio1);
- CLOCK_EnableClock(kCLOCK_Gpio2);
- CLOCK_EnableClock(kCLOCK_Gpio3);
- CLOCK_EnableClock(kCLOCK_Gpio4);
- CLOCK_EnableClock(kCLOCK_Pint);
- CLOCK_EnableClock(kCLOCK_Flexcan0);
- CLOCK_EnableClock(kCLOCK_Flexcan1);
- CLOCK_AttachClk(kFRO_HF_to_ADC0);
- CLOCK_SetClkDiv(kCLOCK_DivAdc0Clk, 1u);
- /* enable VREF */
- SPC0->ACTIVE_CFG1 |= 0xFFFFFFFF;
- CLOCK_EnableClock(kCLOCK_Dma0);
- CLOCK_EnableClock(kCLOCK_Dma1);
- edma_config_t userConfig = {0};
- EDMA_GetDefaultConfig(&userConfig);
- EDMA_Init(DMA0, &userConfig);
- EDMA_Init(DMA1, &userConfig);
- /* This init has finished in secure side of TF-M */
- BOARD_InitBootClocks();
- SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND);
- /* set pend exception priority */
- NVIC_SetPriority(PendSV_IRQn, (1 << __NVIC_PRIO_BITS) - 1);
- /*init uart device*/
- rt_hw_uart_init();
- #if defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE)
- rt_console_set_device(RT_CONSOLE_DEVICE_NAME);
- #endif
- #ifdef RT_USING_COMPONENTS_INIT
- /* initialization board with RT-Thread Components */
- rt_components_board_init();
- #endif
- #ifdef RT_USING_HEAP
- rt_kprintf("sram heap, begin: 0x%p, end: 0x%p\n", HEAP_BEGIN, HEAP_END);
- rt_system_heap_init((void *)HEAP_BEGIN, (void *)(HEAP_END));
- #endif
- }
- /**
- * This function will called when memory fault.
- */
- void MemManage_Handler(void)
- {
- extern void HardFault_Handler(void);
- rt_kprintf("Memory Fault!\n");
- HardFault_Handler();
- }
- void rt_hw_us_delay(rt_uint32_t us)
- {
- rt_uint32_t ticks;
- rt_uint32_t told, tnow, tcnt = 0;
- rt_uint32_t reload = SysTick->LOAD;
- ticks = us * reload / (1000000 / RT_TICK_PER_SECOND);
- told = SysTick->VAL;
- while (1)
- {
- tnow = SysTick->VAL;
- if (tnow != told)
- {
- if (tnow < told)
- {
- tcnt += told - tnow;
- }
- else
- {
- tcnt += reload - tnow + told;
- }
- told = tnow;
- if (tcnt >= ticks)
- {
- break;
- }
- }
- }
- }
|