123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2017-5-30 Bernard the first version
- */
- #include <rthw.h>
- #include <rtthread.h>
- #include "board.h"
- #include "drv_uart.h"
- #include "interrupt.h"
- #include "mmu.h"
- static void os_clock_irq_handle(int irqno, void *param)
- {
- volatile rt_uint32_t *temp_addr = (rt_uint32_t *)(0x01C20C00 + 0x04);
- /* clear timer */
- *temp_addr |= 0x01;
- rt_tick_increase();
- }
- static void mmu_init(void)
- {
- struct mem_desc r6_mem_desc[] =
- {
- { 0x00000000, 0xFFFFFFFF, 0x00000000, RW_NCNB }, /* None cached for 4G memory */
- { 0x80000000, 0x82000000 - 1, 0x80000000, RW_CB }, /* 32M cached SDRAM memory */
- //{ 0x00000000, 0x00001000-1, 0x80000000, RW_CB }, /* isr vector table */
- //here not set mmu
- //start_gcc.S Copy vector to the correct address
- };
- rt_hw_mmu_init(r6_mem_desc, sizeof(r6_mem_desc) / sizeof(r6_mem_desc[0]));
- }
- static void os_clock_init(void)
- {
- rt_uint32_t temp;
- volatile rt_uint32_t *temp_addr;
- /* reload value */
- temp = 0xB71B00 / RT_TICK_PER_SECOND;
- temp_addr = (rt_uint32_t *)(0x01C20C00 + 0x14);
- *temp_addr = temp;
- /* continuous | /2 | 24Mhz | reload*/
- temp = (0x00 << 7) | (0x01 << 4) | (0x01 << 2) | (0x00 << 1);
- temp_addr = (rt_uint32_t *)(0x01C20C00 + 0x10);
- *temp_addr &= 0xffffff00;
- *temp_addr |= temp;
- /* open timer irq */
- temp = 0x01 << 0;
- temp_addr = (rt_uint32_t *)(0x01C20C00);
- *temp_addr |= temp;
- /* set init value */
- temp_addr = (rt_uint32_t *)(0x01C20C00 + 0x18);
- *temp_addr = 0;
- /* begin run timer */
- temp = 0x01 << 0;
- temp_addr = (rt_uint32_t *)(0x01C20C00 + 0x10);
- *temp_addr |= temp;
- temp_addr = (rt_uint32_t *)(0x01C20C00);
- /* set irq handle */
- rt_hw_interrupt_install(TIMER0_INTERRUPT, os_clock_irq_handle, (void *)temp_addr, "timer");
- rt_hw_interrupt_umask(TIMER0_INTERRUPT);
- }
- void rt_hw_board_init(void)
- {
- mmu_init();
- rt_hw_interrupt_init();
- #ifdef RT_USING_HEAP
- /* init memory system */
- rt_system_heap_init(RT_HW_HEAP_BEGIN, RT_HW_HEAP_END);
- #endif
- #ifdef RT_USING_SERIAL
- /* init hardware interrupt */
- rt_hw_uart_init();
- #endif
- #if defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE)
- /* set console device */
- rt_console_set_device(RT_CONSOLE_DEVICE_NAME);
- #endif
- os_clock_init();
- #ifdef RT_USING_COMPONENTS_INIT
- rt_components_board_init();
- #endif
- }
|