123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*
- * Copyright (c) 2006-2020, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2020-04-05 bigmagic Initial version
- */
- #include <rtthread.h>
- #include <rthw.h>
- #include "mips_regs.h"
- #include "mips_fpu.h"
- #include "exception.h"
- #include "drv_uart.h"
- #include "board.h"
- #include "ls2k1000.h"
- /**
- * this function will reset CPU
- *
- */
- void rt_hw_cpu_reset(void)
- {
- WDT_EN = 0x01;
- WDT_TIMER = 0x01;
- WDT_SET = 0x01;
- rt_kprintf("reboot system...\n");
- while (1);
- }
- MSH_CMD_EXPORT_ALIAS(rt_hw_cpu_reset, reboot, reset cpu);
- /**
- * this function will shutdown CPU
- *
- */
- void rt_hw_cpu_shutdown(void)
- {
- PM1_STS &= 0xffffffff;
- PM1_CNT = 0x3c00;
- rt_kprintf("shutdown...\n");
- while (1);
- }
- MSH_CMD_EXPORT_ALIAS(rt_hw_cpu_shutdown, poweroff, shutdown cpu);
- /**
- * This is the timer interrupt service routine.
- */
- void rt_hw_timer_handler(void)
- {
- unsigned int count;
- count = read_c0_compare();
- write_c0_compare(count);
- write_c0_count(0);
- /* increase a OS tick */
- rt_tick_increase();
- }
- /**
- * This function will initial OS timer
- */
- void rt_hw_timer_init(void)
- {
- write_c0_compare(CPU_HZ / 2 / RT_TICK_PER_SECOND);
- write_c0_count(0);
- mips_unmask_cpu_irq(7);
- }
- /**
- * Board level initialization
- */
- void rt_hw_board_init(void)
- {
- rt_hw_exception_init();
- /* init hardware interrupt */
- rt_hw_interrupt_init();
- #ifdef RT_USING_FPU
- /* init hardware fpu */
- rt_hw_fpu_init();
- #endif
- #ifdef RT_USING_SERIAL
- /* init hardware UART device */
- rt_hw_uart_init();
- /* set console device */
- rt_console_set_device(RT_CONSOLE_DEVICE_NAME);
- #endif
- #ifdef RT_USING_HEAP
- rt_system_heap_init((void *)RT_HW_HEAP_BEGIN, (void *)RT_HW_HEAP_END);
- #endif
- /* init operating system timer */
- rt_hw_timer_init();
- #ifdef RT_USING_COMPONENTS_INIT
- rt_components_board_init();
- #endif
- rt_kprintf("Current SR: 0x%08x\n", read_c0_status());
- }
|