board.c 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * File      : board.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2006, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.fayfayspace.org/license/LICENSE.
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-09-15     QiuYi        the first version
 * 2006-10-10     Bernard      add hardware related of finsh
 */
wuyangyong's avatar
wuyangyong 已提交
15

16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
#include <rtthread.h>
#include <rthw.h>

#include <bsp.h>

/**
 * @addtogroup QEMU
 */
/*@{*/

static void rt_timer_handler(int vector)
{
	rt_tick_increase();
}

/**
 * This function will init QEMU
 *
 */
void rt_hw_board_init(void)
{
wuyangyong's avatar
wuyangyong 已提交
37
	/* initialize 8253 clock to interrupt 1000 times/sec */
38
	outb(TIMER_MODE, TIMER_SEL0|TIMER_RATEGEN|TIMER_16BIT);
wuyangyong's avatar
wuyangyong 已提交
39 40
	outb(IO_TIMER1, TIMER_DIV(RT_TICK_PER_SECOND) % 256);
	outb(IO_TIMER1, TIMER_DIV(RT_TICK_PER_SECOND) / 256);
41 42 43 44 45

	/* install interrupt handler */
	rt_hw_interrupt_install(INTTIMER0, rt_timer_handler, RT_NULL);
	rt_hw_interrupt_umask(INTTIMER0);
}
wuyangyong's avatar
wuyangyong 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

void restart(void)
{
    outb(KBSTATP, 0xFE); /* pulse reset low */
    while(1);
}

#ifdef RT_USING_FINSH
#include <finsh.h>
FINSH_FUNCTION_EXPORT(restart, reboot PC)

void reboot(void)
{
    restart();
}
FINSH_FUNCTION_EXPORT(reboot, reboot PC)
#endif
63 64

/*@}*/