update LPC214X: Modify the interrupt interface implementations.
This commit is contained in:
parent
eab20a9975
commit
1549b7db90
|
@ -27,7 +27,7 @@
|
||||||
* This is the timer interrupt service routine.
|
* This is the timer interrupt service routine.
|
||||||
* @param vector the irq number for timer
|
* @param vector the irq number for timer
|
||||||
*/
|
*/
|
||||||
void rt_hw_timer_handler(int vector)
|
void rt_hw_timer_handler(int vector, void *param)
|
||||||
{
|
{
|
||||||
rt_tick_increase();
|
rt_tick_increase();
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ void rt_hw_console_init()
|
||||||
/**
|
/**
|
||||||
* This function will initial sam7x256 board.
|
* This function will initial sam7x256 board.
|
||||||
*/
|
*/
|
||||||
void rt_hw_board_init()
|
void rt_hw_board_init(void)
|
||||||
{
|
{
|
||||||
/* console init */
|
/* console init */
|
||||||
rt_hw_console_init();
|
rt_hw_console_init();
|
||||||
|
@ -99,7 +99,7 @@ void rt_hw_board_init()
|
||||||
T0TCR = 1;
|
T0TCR = 1;
|
||||||
|
|
||||||
/* install timer handler */
|
/* install timer handler */
|
||||||
rt_hw_interrupt_install(TIMER0_INT, rt_hw_timer_handler, RT_NULL);
|
rt_hw_interrupt_install(TIMER0_INT, rt_hw_timer_handler, RT_NULL, "TIMER0");
|
||||||
rt_hw_interrupt_umask(TIMER0_INT);
|
rt_hw_interrupt_umask(TIMER0_INT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,7 @@ void rt_hw_uart_isr(struct rt_lpcserial* lpc_serial)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef RT_USING_UART1
|
#ifdef RT_USING_UART1
|
||||||
void rt_hw_uart_isr_1(int irqno)
|
void rt_hw_uart_isr_1(int irqno, void *param)
|
||||||
{
|
{
|
||||||
/* get lpc serial device */
|
/* get lpc serial device */
|
||||||
rt_hw_uart_isr(&serial1);
|
rt_hw_uart_isr(&serial1);
|
||||||
|
@ -121,7 +121,7 @@ void rt_hw_uart_isr_1(int irqno)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef RT_USING_UART2
|
#ifdef RT_USING_UART2
|
||||||
void rt_hw_uart_isr_2(int irqno)
|
void rt_hw_uart_isr_2(int irqno, void *param)
|
||||||
{
|
{
|
||||||
/* get lpc serial device */
|
/* get lpc serial device */
|
||||||
rt_hw_uart_isr(&serial2);
|
rt_hw_uart_isr(&serial2);
|
||||||
|
@ -153,13 +153,15 @@ static rt_err_t rt_serial_open(rt_device_t dev, rt_uint16_t oflag)
|
||||||
if (lpc_serial->irqno == UART0_INT)
|
if (lpc_serial->irqno == UART0_INT)
|
||||||
{
|
{
|
||||||
#ifdef RT_USING_UART1
|
#ifdef RT_USING_UART1
|
||||||
rt_hw_interrupt_install(lpc_serial->irqno, rt_hw_uart_isr_1, RT_NULL);
|
rt_hw_interrupt_install(lpc_serial->irqno,
|
||||||
|
rt_hw_uart_isr_1, &serial1, "UART1");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#ifdef RT_USING_UART2
|
#ifdef RT_USING_UART2
|
||||||
rt_hw_interrupt_install(lpc_serial->irqno, rt_hw_uart_isr_2, RT_NULL);
|
rt_hw_interrupt_install(lpc_serial->irqno,
|
||||||
|
rt_hw_uart_isr_2, &serial2, "UART2");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,7 +324,7 @@ void rt_hw_serial_init(void)
|
||||||
lpc_serial->read_index = lpc_serial->save_index = 0;
|
lpc_serial->read_index = lpc_serial->save_index = 0;
|
||||||
|
|
||||||
/* Enable UART0 RxD and TxD pins */
|
/* Enable UART0 RxD and TxD pins */
|
||||||
PINSEL0 |= 0x05;
|
PINSEL0 |= 0x05;
|
||||||
|
|
||||||
/* 8 bits, no Parity, 1 Stop bit */
|
/* 8 bits, no Parity, 1 Stop bit */
|
||||||
UART_LCR(lpc_serial->hw_base) = 0x83;
|
UART_LCR(lpc_serial->hw_base) = 0x83;
|
||||||
|
@ -334,6 +336,7 @@ void rt_hw_serial_init(void)
|
||||||
/* DLAB = 0 */
|
/* DLAB = 0 */
|
||||||
UART_LCR(lpc_serial->hw_base) = 0x03;
|
UART_LCR(lpc_serial->hw_base) = 0x03;
|
||||||
|
|
||||||
|
lpc_serial->parent.type = RT_Device_Class_Char;
|
||||||
lpc_serial->parent.init = rt_serial_init;
|
lpc_serial->parent.init = rt_serial_init;
|
||||||
lpc_serial->parent.open = rt_serial_open;
|
lpc_serial->parent.open = rt_serial_open;
|
||||||
lpc_serial->parent.close = rt_serial_close;
|
lpc_serial->parent.close = rt_serial_close;
|
||||||
|
@ -371,6 +374,7 @@ void rt_hw_serial_init(void)
|
||||||
/* DLAB = 0 */
|
/* DLAB = 0 */
|
||||||
UART_LCR(lpc_serial->hw_base) = 0x03;
|
UART_LCR(lpc_serial->hw_base) = 0x03;
|
||||||
|
|
||||||
|
lpc_serial->parent.type = RT_Device_Class_Char;
|
||||||
lpc_serial->parent.init = rt_serial_init;
|
lpc_serial->parent.init = rt_serial_init;
|
||||||
lpc_serial->parent.open = rt_serial_open;
|
lpc_serial->parent.open = rt_serial_open;
|
||||||
lpc_serial->parent.close = rt_serial_close;
|
lpc_serial->parent.close = rt_serial_close;
|
||||||
|
|
|
@ -10,9 +10,11 @@
|
||||||
* Change Logs:
|
* Change Logs:
|
||||||
* Date Author Notes
|
* Date Author Notes
|
||||||
* 2011-06-15 aozima the first version for lpc214x
|
* 2011-06-15 aozima the first version for lpc214x
|
||||||
|
* 2013-03-29 aozima Modify the interrupt interface implementations.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <rtthread.h>
|
#include <rtthread.h>
|
||||||
|
#include <rthw.h>
|
||||||
#include "lpc214x.h"
|
#include "lpc214x.h"
|
||||||
|
|
||||||
#define MAX_HANDLERS 32
|
#define MAX_HANDLERS 32
|
||||||
|
@ -20,6 +22,9 @@
|
||||||
|
|
||||||
extern rt_uint32_t rt_interrupt_nest;
|
extern rt_uint32_t rt_interrupt_nest;
|
||||||
|
|
||||||
|
/* exception and interrupt handler table */
|
||||||
|
struct rt_irq_desc irq_desc[MAX_HANDLERS];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @addtogroup LPC214x
|
* @addtogroup LPC214x
|
||||||
*/
|
*/
|
||||||
|
@ -71,7 +76,7 @@ rt_uint8_t *rt_hw_stack_init(void *tentry, void *parameter,
|
||||||
rt_uint32_t rt_interrupt_from_thread, rt_interrupt_to_thread;
|
rt_uint32_t rt_interrupt_from_thread, rt_interrupt_to_thread;
|
||||||
rt_uint32_t rt_thread_switch_interrupt_flag;
|
rt_uint32_t rt_thread_switch_interrupt_flag;
|
||||||
|
|
||||||
void rt_hw_interrupt_handler(int vector)
|
void rt_hw_interrupt_handler(int vector, void *param)
|
||||||
{
|
{
|
||||||
rt_kprintf("Unhandled interrupt %d occured!!!\n", vector);
|
rt_kprintf("Unhandled interrupt %d occured!!!\n", vector);
|
||||||
}
|
}
|
||||||
|
@ -79,7 +84,7 @@ void rt_hw_interrupt_handler(int vector)
|
||||||
/**
|
/**
|
||||||
* This function will initialize hardware interrupt
|
* This function will initialize hardware interrupt
|
||||||
*/
|
*/
|
||||||
void rt_hw_interrupt_init()
|
void rt_hw_interrupt_init(void)
|
||||||
{
|
{
|
||||||
rt_base_t index;
|
rt_base_t index;
|
||||||
rt_uint32_t *vect_addr, *vect_ctl;
|
rt_uint32_t *vect_addr, *vect_ctl;
|
||||||
|
@ -90,12 +95,15 @@ void rt_hw_interrupt_init()
|
||||||
/* set all to IRQ */
|
/* set all to IRQ */
|
||||||
VICIntSelect = 0;
|
VICIntSelect = 0;
|
||||||
|
|
||||||
|
rt_memset(irq_desc, 0x00, sizeof(irq_desc));
|
||||||
for (index = 0; index < MAX_HANDLERS; index ++)
|
for (index = 0; index < MAX_HANDLERS; index ++)
|
||||||
{
|
{
|
||||||
|
irq_desc[index].handler = rt_hw_interrupt_handler;
|
||||||
|
|
||||||
vect_addr = (rt_uint32_t *)(VIC_BASE_ADDR + 0x100 + (index << 2));
|
vect_addr = (rt_uint32_t *)(VIC_BASE_ADDR + 0x100 + (index << 2));
|
||||||
vect_ctl = (rt_uint32_t *)(VIC_BASE_ADDR + 0x200 + (index << 2));
|
vect_ctl = (rt_uint32_t *)(VIC_BASE_ADDR + 0x200 + (index << 2));
|
||||||
|
|
||||||
*vect_addr = (rt_uint32_t)rt_hw_interrupt_handler;
|
*vect_addr = (rt_uint32_t)&irq_desc[index];
|
||||||
*vect_ctl = 0xF;
|
*vect_ctl = 0xF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,30 +135,39 @@ void rt_hw_interrupt_umask(int vector)
|
||||||
/**
|
/**
|
||||||
* This function will install a interrupt service routine to a interrupt.
|
* This function will install a interrupt service routine to a interrupt.
|
||||||
* @param vector the interrupt number
|
* @param vector the interrupt number
|
||||||
* @param new_handler the interrupt service routine to be installed
|
* @param handler the interrupt service routine to be installed
|
||||||
* @param old_handler the old interrupt service routine
|
* @param param the interrupt service function parameter
|
||||||
|
* @param name the interrupt name
|
||||||
|
* @return old handler
|
||||||
*/
|
*/
|
||||||
void rt_hw_interrupt_install(int vector, rt_isr_handler_t new_handler, rt_isr_handler_t *old_handler)
|
rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler,
|
||||||
|
void *param, char *name)
|
||||||
{
|
{
|
||||||
if(vector >= 0 && vector < MAX_HANDLERS)
|
rt_isr_handler_t old_handler = RT_NULL;
|
||||||
{
|
|
||||||
/* get VIC address */
|
|
||||||
rt_uint32_t* vect_addr = (rt_uint32_t *)(VIC_BASE_ADDR + 0x100 + (vector << 2));
|
|
||||||
rt_uint32_t* vect_ctl = (rt_uint32_t *)(VIC_BASE_ADDR + 0x200 + (vector << 2));
|
|
||||||
|
|
||||||
/* assign IRQ slot and enable this slot */
|
if(vector >= 0 && vector < MAX_HANDLERS)
|
||||||
*vect_ctl = 0x20 | (vector & 0x1F);
|
{
|
||||||
|
rt_uint32_t* vect_ctl = (rt_uint32_t *)(VIC_BASE_ADDR + 0x200 + (vector << 2));
|
||||||
|
|
||||||
if (old_handler != RT_NULL) *old_handler = (rt_isr_handler_t) *vect_addr;
|
/* assign IRQ slot and enable this slot */
|
||||||
if (new_handler != RT_NULL) *vect_addr = (rt_uint32_t) new_handler;
|
*vect_ctl = 0x20 | (vector & 0x1F);
|
||||||
}
|
|
||||||
|
old_handler = irq_desc[vector].handler;
|
||||||
|
if (handler != RT_NULL)
|
||||||
|
{
|
||||||
|
irq_desc[vector].handler = handler;
|
||||||
|
irq_desc[vector].param = param;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return old_handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* this function will reset CPU
|
* this function will reset CPU
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void rt_hw_cpu_reset()
|
void rt_hw_cpu_reset(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -165,18 +182,23 @@ void rt_hw_cpu_shutdown()
|
||||||
while (1);
|
while (1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void rt_hw_trap_irq()
|
void rt_hw_trap_irq(void)
|
||||||
{
|
{
|
||||||
rt_isr_handler_t isr_func;
|
int irqno;
|
||||||
|
struct rt_irq_desc* irq;
|
||||||
|
extern struct rt_irq_desc irq_desc[];
|
||||||
|
|
||||||
isr_func = (rt_isr_handler_t) VICVectAddr;
|
irq = (struct rt_irq_desc*) VICVectAddr;
|
||||||
isr_func(0);
|
irqno = ((rt_uint32_t) irq - (rt_uint32_t) &irq_desc[0])/sizeof(struct rt_irq_desc);
|
||||||
|
|
||||||
/* acknowledge Interrupt */
|
/* invoke isr */
|
||||||
// VICVectAddr = 0;
|
irq->handler(irqno, irq->param);
|
||||||
|
|
||||||
|
/* acknowledge Interrupt */
|
||||||
|
// VICVectAddr = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void rt_hw_trap_fiq()
|
void rt_hw_trap_fiq(void)
|
||||||
{
|
{
|
||||||
rt_kprintf("fast interrupt request\n");
|
rt_kprintf("fast interrupt request\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue