code cleanup for interrupt description
This commit is contained in:
parent
17ab3fcdba
commit
bb72be94b2
|
@ -22,6 +22,8 @@
|
||||||
|
|
||||||
#define RT_USING_OVERFLOW_CHECK
|
#define RT_USING_OVERFLOW_CHECK
|
||||||
|
|
||||||
|
#define RT_USING_INTERRUPT_INFO
|
||||||
|
|
||||||
/* Using Hook */
|
/* Using Hook */
|
||||||
#define RT_USING_HOOK
|
#define RT_USING_HOOK
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,9 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* CPU interfaces
|
||||||
|
*/
|
||||||
void rt_hw_cpu_icache_enable(void);
|
void rt_hw_cpu_icache_enable(void);
|
||||||
void rt_hw_cpu_icache_disable(void);
|
void rt_hw_cpu_icache_disable(void);
|
||||||
rt_base_t rt_hw_cpu_icache_status(void);
|
rt_base_t rt_hw_cpu_icache_status(void);
|
||||||
|
@ -38,6 +41,24 @@ rt_uint8_t *rt_hw_stack_init(void *entry,
|
||||||
rt_uint8_t *stack_addr,
|
rt_uint8_t *stack_addr,
|
||||||
void *exit);
|
void *exit);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Interrupt handler definition
|
||||||
|
*/
|
||||||
|
typedef void (*rt_isr_handler_t)(int vector, void *param);
|
||||||
|
|
||||||
|
struct rt_irq_desc {
|
||||||
|
rt_isr_handler_t handler;
|
||||||
|
void *param;
|
||||||
|
|
||||||
|
#ifdef RT_USING_INTERRUPT_INFO
|
||||||
|
char name[RT_NAME_MAX];
|
||||||
|
rt_uint32_t counter;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Interrupt interfaces
|
||||||
|
*/
|
||||||
void rt_hw_interrupt_init(void);
|
void rt_hw_interrupt_init(void);
|
||||||
void rt_hw_interrupt_mask(int vector);
|
void rt_hw_interrupt_mask(int vector);
|
||||||
void rt_hw_interrupt_umask(int vector);
|
void rt_hw_interrupt_umask(int vector);
|
||||||
|
@ -45,10 +66,13 @@ rt_isr_handler_t rt_hw_interrupt_install(int vector,
|
||||||
rt_isr_handler_t handler,
|
rt_isr_handler_t handler,
|
||||||
void *param,
|
void *param,
|
||||||
char *name);
|
char *name);
|
||||||
void rt_hw_interrupt_handle(int vector);
|
|
||||||
|
|
||||||
rt_base_t rt_hw_interrupt_disable(void);
|
rt_base_t rt_hw_interrupt_disable(void);
|
||||||
void rt_hw_interrupt_enable(rt_base_t level);
|
void rt_hw_interrupt_enable(rt_base_t level);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Context interfaces
|
||||||
|
*/
|
||||||
void rt_hw_context_switch(rt_uint32_t from, rt_uint32_t to);
|
void rt_hw_context_switch(rt_uint32_t from, rt_uint32_t to);
|
||||||
void rt_hw_context_switch_to(rt_uint32_t to);
|
void rt_hw_context_switch_to(rt_uint32_t to);
|
||||||
void rt_hw_context_switch_interrupt(rt_uint32_t from, rt_uint32_t to);
|
void rt_hw_context_switch_interrupt(rt_uint32_t from, rt_uint32_t to);
|
||||||
|
@ -59,7 +83,7 @@ void rt_hw_backtrace(rt_uint32_t *fp, rt_uint32_t thread_entry);
|
||||||
void rt_hw_show_memory(rt_uint32_t addr, rt_uint32_t size);
|
void rt_hw_show_memory(rt_uint32_t addr, rt_uint32_t size);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* exception interfaces
|
* Exception interfaces
|
||||||
*/
|
*/
|
||||||
void rt_hw_exception_install(rt_err_t (*exception_handle)(void* context));
|
void rt_hw_exception_install(rt_err_t (*exception_handle)(void* context));
|
||||||
|
|
||||||
|
|
|
@ -425,15 +425,6 @@ void rt_module_unload_sethook(void (*hook)(rt_module_t module));
|
||||||
/*
|
/*
|
||||||
* interrupt service
|
* interrupt service
|
||||||
*/
|
*/
|
||||||
typedef void (*rt_isr_handler_t)(int vector, void *param);
|
|
||||||
|
|
||||||
struct rt_irq_desc {
|
|
||||||
char irq_name[RT_NAME_MAX];
|
|
||||||
rt_isr_handler_t isr_handle;
|
|
||||||
void *param;
|
|
||||||
rt_uint32_t interrupt_cnt;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* rt_interrupt_enter and rt_interrupt_leave only can be called by BSP
|
* rt_interrupt_enter and rt_interrupt_leave only can be called by BSP
|
||||||
|
|
|
@ -12,10 +12,10 @@
|
||||||
* 2011-01-13 weety first version
|
* 2011-01-13 weety first version
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <rtthread.h>
|
#include <rthw.h>
|
||||||
#include "at91sam926x.h"
|
#include "at91sam926x.h"
|
||||||
|
|
||||||
#define MAX_HANDLERS (AIC_IRQS + PIN_IRQS)
|
#define MAX_HANDLERS (AIC_IRQS + PIN_IRQS)
|
||||||
|
|
||||||
extern rt_uint32_t rt_interrupt_nest;
|
extern rt_uint32_t rt_interrupt_nest;
|
||||||
|
|
||||||
|
@ -38,38 +38,38 @@ rt_uint32_t at91_extern_irq;
|
||||||
* The default interrupt priority levels (0 = lowest, 7 = highest).
|
* The default interrupt priority levels (0 = lowest, 7 = highest).
|
||||||
*/
|
*/
|
||||||
static rt_uint32_t at91sam9260_default_irq_priority[MAX_HANDLERS] = {
|
static rt_uint32_t at91sam9260_default_irq_priority[MAX_HANDLERS] = {
|
||||||
7, /* Advanced Interrupt Controller */
|
7, /* Advanced Interrupt Controller */
|
||||||
7, /* System Peripherals */
|
7, /* System Peripherals */
|
||||||
1, /* Parallel IO Controller A */
|
1, /* Parallel IO Controller A */
|
||||||
1, /* Parallel IO Controller B */
|
1, /* Parallel IO Controller B */
|
||||||
1, /* Parallel IO Controller C */
|
1, /* Parallel IO Controller C */
|
||||||
0, /* Analog-to-Digital Converter */
|
0, /* Analog-to-Digital Converter */
|
||||||
5, /* USART 0 */
|
5, /* USART 0 */
|
||||||
5, /* USART 1 */
|
5, /* USART 1 */
|
||||||
5, /* USART 2 */
|
5, /* USART 2 */
|
||||||
0, /* Multimedia Card Interface */
|
0, /* Multimedia Card Interface */
|
||||||
2, /* USB Device Port */
|
2, /* USB Device Port */
|
||||||
6, /* Two-Wire Interface */
|
6, /* Two-Wire Interface */
|
||||||
5, /* Serial Peripheral Interface 0 */
|
5, /* Serial Peripheral Interface 0 */
|
||||||
5, /* Serial Peripheral Interface 1 */
|
5, /* Serial Peripheral Interface 1 */
|
||||||
5, /* Serial Synchronous Controller */
|
5, /* Serial Synchronous Controller */
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
0, /* Timer Counter 0 */
|
0, /* Timer Counter 0 */
|
||||||
0, /* Timer Counter 1 */
|
0, /* Timer Counter 1 */
|
||||||
0, /* Timer Counter 2 */
|
0, /* Timer Counter 2 */
|
||||||
2, /* USB Host port */
|
2, /* USB Host port */
|
||||||
3, /* Ethernet */
|
3, /* Ethernet */
|
||||||
0, /* Image Sensor Interface */
|
0, /* Image Sensor Interface */
|
||||||
5, /* USART 3 */
|
5, /* USART 3 */
|
||||||
5, /* USART 4 */
|
5, /* USART 4 */
|
||||||
5, /* USART 5 */
|
5, /* USART 5 */
|
||||||
0, /* Timer Counter 3 */
|
0, /* Timer Counter 3 */
|
||||||
0, /* Timer Counter 4 */
|
0, /* Timer Counter 4 */
|
||||||
0, /* Timer Counter 5 */
|
0, /* Timer Counter 5 */
|
||||||
0, /* Advanced Interrupt Controller */
|
0, /* Advanced Interrupt Controller */
|
||||||
0, /* Advanced Interrupt Controller */
|
0, /* Advanced Interrupt Controller */
|
||||||
0, /* Advanced Interrupt Controller */
|
0, /* Advanced Interrupt Controller */
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -82,45 +82,45 @@ void rt_hw_interrupt_umask(int irq);
|
||||||
|
|
||||||
rt_isr_handler_t rt_hw_interrupt_handle(rt_uint32_t vector, void *param)
|
rt_isr_handler_t rt_hw_interrupt_handle(rt_uint32_t vector, void *param)
|
||||||
{
|
{
|
||||||
rt_kprintf("Unhandled interrupt %d occured!!!\n", vector);
|
rt_kprintf("Unhandled interrupt %d occured!!!\n", vector);
|
||||||
return RT_NULL;
|
return RT_NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
rt_isr_handler_t at91_gpio_irq_handle(rt_uint32_t vector, void *param)
|
rt_isr_handler_t at91_gpio_irq_handle(rt_uint32_t vector, void *param)
|
||||||
{
|
{
|
||||||
rt_uint32_t isr, pio, irq_n;
|
rt_uint32_t isr, pio, irq_n;
|
||||||
void *parameter;
|
void *parameter;
|
||||||
|
|
||||||
if (vector == AT91SAM9260_ID_PIOA)
|
if (vector == AT91SAM9260_ID_PIOA)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOA;
|
pio = AT91_PIOA;
|
||||||
irq_n = AIC_IRQS;
|
irq_n = AIC_IRQS;
|
||||||
}
|
}
|
||||||
else if (vector == AT91SAM9260_ID_PIOB)
|
else if (vector == AT91SAM9260_ID_PIOB)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOB;
|
pio = AT91_PIOB;
|
||||||
irq_n = AIC_IRQS + 32;
|
irq_n = AIC_IRQS + 32;
|
||||||
}
|
}
|
||||||
else if (vector == AT91SAM9260_ID_PIOC)
|
else if (vector == AT91SAM9260_ID_PIOC)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOC;
|
pio = AT91_PIOC;
|
||||||
irq_n = AIC_IRQS + 32*2;
|
irq_n = AIC_IRQS + 32*2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return RT_NULL;
|
return RT_NULL;
|
||||||
isr = at91_sys_read(pio+PIO_ISR) & at91_sys_read(pio+PIO_IMR);
|
isr = at91_sys_read(pio+PIO_ISR) & at91_sys_read(pio+PIO_IMR);
|
||||||
while (isr)
|
while (isr)
|
||||||
{
|
{
|
||||||
if (isr & 1)
|
if (isr & 1)
|
||||||
{
|
{
|
||||||
parameter = irq_desc[irq_n].param;
|
parameter = irq_desc[irq_n].param;
|
||||||
irq_desc[irq_n].isr_handle(irq_n, parameter);
|
irq_desc[irq_n].handler(irq_n, parameter);
|
||||||
}
|
}
|
||||||
isr >>= 1;
|
isr >>= 1;
|
||||||
irq_n++;
|
irq_n++;
|
||||||
}
|
}
|
||||||
|
|
||||||
return RT_NULL;
|
return RT_NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -128,61 +128,61 @@ rt_isr_handler_t at91_gpio_irq_handle(rt_uint32_t vector, void *param)
|
||||||
*/
|
*/
|
||||||
void at91_aic_init(rt_uint32_t *priority)
|
void at91_aic_init(rt_uint32_t *priority)
|
||||||
{
|
{
|
||||||
rt_uint32_t i;
|
rt_uint32_t i;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The IVR is used by macro get_irqnr_and_base to read and verify.
|
* The IVR is used by macro get_irqnr_and_base to read and verify.
|
||||||
* The irq number is NR_AIC_IRQS when a spurious interrupt has occurred.
|
* The irq number is NR_AIC_IRQS when a spurious interrupt has occurred.
|
||||||
*/
|
*/
|
||||||
for (i = 0; i < AIC_IRQS; i++) {
|
for (i = 0; i < AIC_IRQS; i++) {
|
||||||
/* Put irq number in Source Vector Register: */
|
/* Put irq number in Source Vector Register: */
|
||||||
at91_sys_write(AT91_AIC_SVR(i), i);
|
at91_sys_write(AT91_AIC_SVR(i), i);
|
||||||
/* Active Low interrupt, with the specified priority */
|
/* Active Low interrupt, with the specified priority */
|
||||||
at91_sys_write(AT91_AIC_SMR(i), AT91_AIC_SRCTYPE_LOW | priority[i]);
|
at91_sys_write(AT91_AIC_SMR(i), AT91_AIC_SRCTYPE_LOW | priority[i]);
|
||||||
//AT91_AIC_SRCTYPE_FALLING
|
//AT91_AIC_SRCTYPE_FALLING
|
||||||
|
|
||||||
/* Perform 8 End Of Interrupt Command to make sure AIC will not Lock out nIRQ */
|
/* Perform 8 End Of Interrupt Command to make sure AIC will not Lock out nIRQ */
|
||||||
if (i < 8)
|
if (i < 8)
|
||||||
at91_sys_write(AT91_AIC_EOICR, 0);
|
at91_sys_write(AT91_AIC_EOICR, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Spurious Interrupt ID in Spurious Vector Register is NR_AIC_IRQS
|
* Spurious Interrupt ID in Spurious Vector Register is NR_AIC_IRQS
|
||||||
* When there is no current interrupt, the IRQ Vector Register reads the value stored in AIC_SPU
|
* When there is no current interrupt, the IRQ Vector Register reads the value stored in AIC_SPU
|
||||||
*/
|
*/
|
||||||
at91_sys_write(AT91_AIC_SPU, AIC_IRQS);
|
at91_sys_write(AT91_AIC_SPU, AIC_IRQS);
|
||||||
|
|
||||||
/* No debugging in AIC: Debug (Protect) Control Register */
|
/* No debugging in AIC: Debug (Protect) Control Register */
|
||||||
at91_sys_write(AT91_AIC_DCR, 0);
|
at91_sys_write(AT91_AIC_DCR, 0);
|
||||||
|
|
||||||
/* Disable and clear all interrupts initially */
|
/* Disable and clear all interrupts initially */
|
||||||
at91_sys_write(AT91_AIC_IDCR, 0xFFFFFFFF);
|
at91_sys_write(AT91_AIC_IDCR, 0xFFFFFFFF);
|
||||||
at91_sys_write(AT91_AIC_ICCR, 0xFFFFFFFF);
|
at91_sys_write(AT91_AIC_ICCR, 0xFFFFFFFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void at91_gpio_irq_init()
|
static void at91_gpio_irq_init()
|
||||||
{
|
{
|
||||||
int i, idx;
|
int i, idx;
|
||||||
char *name[] = {"PIOA", "PIOB", "PIOC"};
|
char *name[] = {"PIOA", "PIOB", "PIOC"};
|
||||||
|
|
||||||
at91_sys_write(AT91_PIOA+PIO_IDR, 0xffffffff);
|
at91_sys_write(AT91_PIOA+PIO_IDR, 0xffffffff);
|
||||||
at91_sys_write(AT91_PIOB+PIO_IDR, 0xffffffff);
|
at91_sys_write(AT91_PIOB+PIO_IDR, 0xffffffff);
|
||||||
at91_sys_write(AT91_PIOC+PIO_IDR, 0xffffffff);
|
at91_sys_write(AT91_PIOC+PIO_IDR, 0xffffffff);
|
||||||
|
|
||||||
idx = AT91SAM9260_ID_PIOA;
|
idx = AT91SAM9260_ID_PIOA;
|
||||||
for (i = 0; i < 3; i++)
|
for (i = 0; i < 3; i++)
|
||||||
{
|
{
|
||||||
rt_snprintf(irq_desc[idx].irq_name, RT_NAME_MAX - 1, name[i]);
|
rt_snprintf(irq_desc[idx].name, RT_NAME_MAX - 1, name[i]);
|
||||||
irq_desc[idx].isr_handle = (rt_isr_handler_t)at91_gpio_irq_handle;
|
irq_desc[idx].handler = (rt_isr_handler_t)at91_gpio_irq_handle;
|
||||||
irq_desc[idx].param = RT_NULL;
|
irq_desc[idx].param = RT_NULL;
|
||||||
irq_desc[idx].interrupt_cnt = 0;
|
irq_desc[idx].counter = 0;
|
||||||
idx++;
|
idx++;
|
||||||
}
|
}
|
||||||
|
|
||||||
rt_hw_interrupt_umask(AT91SAM9260_ID_PIOA);
|
rt_hw_interrupt_umask(AT91SAM9260_ID_PIOA);
|
||||||
rt_hw_interrupt_umask(AT91SAM9260_ID_PIOB);
|
rt_hw_interrupt_umask(AT91SAM9260_ID_PIOB);
|
||||||
rt_hw_interrupt_umask(AT91SAM9260_ID_PIOC);
|
rt_hw_interrupt_umask(AT91SAM9260_ID_PIOC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -191,56 +191,55 @@ static void at91_gpio_irq_init()
|
||||||
*/
|
*/
|
||||||
void rt_hw_interrupt_init(void)
|
void rt_hw_interrupt_init(void)
|
||||||
{
|
{
|
||||||
rt_int32_t i;
|
rt_int32_t i;
|
||||||
register rt_uint32_t idx;
|
register rt_uint32_t idx;
|
||||||
rt_uint32_t *priority = at91sam9260_default_irq_priority;
|
rt_uint32_t *priority = at91sam9260_default_irq_priority;
|
||||||
|
|
||||||
at91_extern_irq = (1 << AT91SAM9260_ID_IRQ0) | (1 << AT91SAM9260_ID_IRQ1)
|
at91_extern_irq = (1 << AT91SAM9260_ID_IRQ0) | (1 << AT91SAM9260_ID_IRQ1)
|
||||||
| (1 << AT91SAM9260_ID_IRQ2);
|
| (1 << AT91SAM9260_ID_IRQ2);
|
||||||
|
|
||||||
/* Initialize the AIC interrupt controller */
|
/* Initialize the AIC interrupt controller */
|
||||||
at91_aic_init(priority);
|
at91_aic_init(priority);
|
||||||
|
|
||||||
/* init exceptions table */
|
/* init exceptions table */
|
||||||
for(idx=0; idx < MAX_HANDLERS; idx++)
|
for(idx=0; idx < MAX_HANDLERS; idx++)
|
||||||
{
|
{
|
||||||
rt_snprintf(irq_desc[idx].irq_name, RT_NAME_MAX - 1, "default");
|
rt_snprintf(irq_desc[idx].name, RT_NAME_MAX - 1, "default");
|
||||||
irq_desc[idx].isr_handle = (rt_isr_handler_t)rt_hw_interrupt_handle;
|
irq_desc[idx].handler = (rt_isr_handler_t)rt_hw_interrupt_handle;
|
||||||
irq_desc[idx].param = RT_NULL;
|
irq_desc[idx].param = RT_NULL;
|
||||||
irq_desc[idx].interrupt_cnt = 0;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
at91_gpio_irq_init();
|
at91_gpio_irq_init();
|
||||||
|
|
||||||
/* init interrupt nest, and context in thread sp */
|
/* init interrupt nest, and context in thread sp */
|
||||||
rt_interrupt_nest = 0;
|
rt_interrupt_nest = 0;
|
||||||
rt_interrupt_from_thread = 0;
|
rt_interrupt_from_thread = 0;
|
||||||
rt_interrupt_to_thread = 0;
|
rt_interrupt_to_thread = 0;
|
||||||
rt_thread_switch_interrupt_flag = 0;
|
rt_thread_switch_interrupt_flag = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void at91_gpio_irq_mask(int irq)
|
static void at91_gpio_irq_mask(int irq)
|
||||||
{
|
{
|
||||||
rt_uint32_t pin, pio, bank;
|
rt_uint32_t pin, pio, bank;
|
||||||
|
|
||||||
bank = (irq - AIC_IRQS)>>5;
|
bank = (irq - AIC_IRQS)>>5;
|
||||||
|
|
||||||
if (bank == 0)
|
if (bank == 0)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOA;
|
pio = AT91_PIOA;
|
||||||
}
|
}
|
||||||
else if (bank == 1)
|
else if (bank == 1)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOB;
|
pio = AT91_PIOB;
|
||||||
}
|
}
|
||||||
else if (bank == 2)
|
else if (bank == 2)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOC;
|
pio = AT91_PIOC;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
pin = 1 << ((irq - AIC_IRQS) & 31);
|
pin = 1 << ((irq - AIC_IRQS) & 31);
|
||||||
at91_sys_write(pio+PIO_IDR, pin);
|
at91_sys_write(pio+PIO_IDR, pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -249,39 +248,39 @@ static void at91_gpio_irq_mask(int irq)
|
||||||
*/
|
*/
|
||||||
void rt_hw_interrupt_mask(int irq)
|
void rt_hw_interrupt_mask(int irq)
|
||||||
{
|
{
|
||||||
if (irq >= AIC_IRQS)
|
if (irq >= AIC_IRQS)
|
||||||
{
|
{
|
||||||
at91_gpio_irq_mask(irq);
|
at91_gpio_irq_mask(irq);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Disable interrupt on AIC */
|
/* Disable interrupt on AIC */
|
||||||
at91_sys_write(AT91_AIC_IDCR, 1 << irq);
|
at91_sys_write(AT91_AIC_IDCR, 1 << irq);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void at91_gpio_irq_umask(int irq)
|
static void at91_gpio_irq_umask(int irq)
|
||||||
{
|
{
|
||||||
rt_uint32_t pin, pio, bank;
|
rt_uint32_t pin, pio, bank;
|
||||||
|
|
||||||
bank = (irq - AIC_IRQS)>>5;
|
bank = (irq - AIC_IRQS)>>5;
|
||||||
|
|
||||||
if (bank == 0)
|
if (bank == 0)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOA;
|
pio = AT91_PIOA;
|
||||||
}
|
}
|
||||||
else if (bank == 1)
|
else if (bank == 1)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOB;
|
pio = AT91_PIOB;
|
||||||
}
|
}
|
||||||
else if (bank == 2)
|
else if (bank == 2)
|
||||||
{
|
{
|
||||||
pio = AT91_PIOC;
|
pio = AT91_PIOC;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
pin = 1 << ((irq - AIC_IRQS) & 31);
|
pin = 1 << ((irq - AIC_IRQS) & 31);
|
||||||
at91_sys_write(pio+PIO_IER, pin);
|
at91_sys_write(pio+PIO_IER, pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -290,15 +289,15 @@ static void at91_gpio_irq_umask(int irq)
|
||||||
*/
|
*/
|
||||||
void rt_hw_interrupt_umask(int irq)
|
void rt_hw_interrupt_umask(int irq)
|
||||||
{
|
{
|
||||||
if (irq >= AIC_IRQS)
|
if (irq >= AIC_IRQS)
|
||||||
{
|
{
|
||||||
at91_gpio_irq_umask(irq);
|
at91_gpio_irq_umask(irq);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Enable interrupt on AIC */
|
/* Enable interrupt on AIC */
|
||||||
at91_sys_write(AT91_AIC_IECR, 1 << irq);
|
at91_sys_write(AT91_AIC_IECR, 1 << irq);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -310,23 +309,22 @@ void rt_hw_interrupt_umask(int irq)
|
||||||
* @return old handler
|
* @return old handler
|
||||||
*/
|
*/
|
||||||
rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler,
|
rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler,
|
||||||
void *param, char *name)
|
void *param, char *name)
|
||||||
{
|
{
|
||||||
rt_isr_handler_t old_handler = RT_NULL;
|
rt_isr_handler_t old_handler = RT_NULL;
|
||||||
|
|
||||||
if(vector < MAX_HANDLERS)
|
if(vector < MAX_HANDLERS)
|
||||||
{
|
{
|
||||||
old_handler = irq_desc[vector].isr_handle;
|
old_handler = irq_desc[vector].handler;
|
||||||
if (handler != RT_NULL)
|
if (handler != RT_NULL)
|
||||||
{
|
{
|
||||||
rt_snprintf(irq_desc[vector].irq_name, RT_NAME_MAX - 1, "%s", name);
|
rt_snprintf(irq_desc[vector].name, RT_NAME_MAX - 1, "%s", name);
|
||||||
irq_desc[vector].isr_handle = (rt_isr_handler_t)handler;
|
irq_desc[vector].handler = (rt_isr_handler_t)handler;
|
||||||
irq_desc[vector].param = param;
|
irq_desc[vector].param = param;
|
||||||
irq_desc[vector].interrupt_cnt = 0;
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return old_handler;
|
return old_handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
@ -334,49 +332,49 @@ rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler,
|
||||||
|
|
||||||
static int at91_aic_set_type(unsigned irq, unsigned type)
|
static int at91_aic_set_type(unsigned irq, unsigned type)
|
||||||
{
|
{
|
||||||
unsigned int smr, srctype;
|
unsigned int smr, srctype;
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case IRQ_TYPE_LEVEL_HIGH:
|
case IRQ_TYPE_LEVEL_HIGH:
|
||||||
srctype = AT91_AIC_SRCTYPE_HIGH;
|
srctype = AT91_AIC_SRCTYPE_HIGH;
|
||||||
break;
|
break;
|
||||||
case IRQ_TYPE_EDGE_RISING:
|
case IRQ_TYPE_EDGE_RISING:
|
||||||
srctype = AT91_AIC_SRCTYPE_RISING;
|
srctype = AT91_AIC_SRCTYPE_RISING;
|
||||||
break;
|
break;
|
||||||
case IRQ_TYPE_LEVEL_LOW:
|
case IRQ_TYPE_LEVEL_LOW:
|
||||||
if ((irq == AT91_ID_FIQ) || is_extern_irq(irq)) /* only supported on external interrupts */
|
if ((irq == AT91_ID_FIQ) || is_extern_irq(irq)) /* only supported on external interrupts */
|
||||||
srctype = AT91_AIC_SRCTYPE_LOW;
|
srctype = AT91_AIC_SRCTYPE_LOW;
|
||||||
else
|
else
|
||||||
return -1;
|
return -1;
|
||||||
break;
|
break;
|
||||||
case IRQ_TYPE_EDGE_FALLING:
|
case IRQ_TYPE_EDGE_FALLING:
|
||||||
if ((irq == AT91_ID_FIQ) || is_extern_irq(irq)) /* only supported on external interrupts */
|
if ((irq == AT91_ID_FIQ) || is_extern_irq(irq)) /* only supported on external interrupts */
|
||||||
srctype = AT91_AIC_SRCTYPE_FALLING;
|
srctype = AT91_AIC_SRCTYPE_FALLING;
|
||||||
else
|
else
|
||||||
return -1;
|
return -1;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
smr = at91_sys_read(AT91_AIC_SMR(irq)) & ~AT91_AIC_SRCTYPE;
|
smr = at91_sys_read(AT91_AIC_SMR(irq)) & ~AT91_AIC_SRCTYPE;
|
||||||
at91_sys_write(AT91_AIC_SMR(irq), smr | srctype);
|
at91_sys_write(AT91_AIC_SMR(irq), smr | srctype);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef RT_USING_FINSH
|
#ifdef RT_USING_FINSH
|
||||||
void list_irq(void)
|
void list_irq(void)
|
||||||
{
|
{
|
||||||
int irq;
|
int irq;
|
||||||
|
|
||||||
rt_kprintf("number\tcount\tname\n");
|
rt_kprintf("number\tcount\tname\n");
|
||||||
for (irq = 0; irq < MAX_HANDLERS; irq++)
|
for (irq = 0; irq < MAX_HANDLERS; irq++)
|
||||||
{
|
{
|
||||||
if (rt_strncmp(irq_desc[irq].irq_name, "default", sizeof("default")))
|
if (rt_strncmp(irq_desc[irq].name, "default", sizeof("default")))
|
||||||
{
|
{
|
||||||
rt_kprintf("%02ld: %10ld %s\n", irq, irq_desc[irq].interrupt_cnt, irq_desc[irq].irq_name);
|
rt_kprintf("%02ld: %10ld %s\n", irq, irq_desc[irq].name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <finsh.h>
|
#include <finsh.h>
|
||||||
|
|
|
@ -159,13 +159,13 @@ void rt_hw_trap_irq()
|
||||||
//at91_sys_write(AT91_AIC_EOICR, 0x55555555);
|
//at91_sys_write(AT91_AIC_EOICR, 0x55555555);
|
||||||
|
|
||||||
/* get interrupt service routine */
|
/* get interrupt service routine */
|
||||||
isr_func = irq_desc[irq].isr_handle;
|
isr_func = irq_desc[irq].handler;
|
||||||
param = irq_desc[irq].param;
|
param = irq_desc[irq].param;
|
||||||
|
|
||||||
/* turn to interrupt service routine */
|
/* turn to interrupt service routine */
|
||||||
isr_func(irq, param);
|
isr_func(irq, param);
|
||||||
at91_sys_write(AT91_AIC_EOICR, 0x55555555); //EIOCR must be write any value after interrupt, or else can't response next interrupt
|
at91_sys_write(AT91_AIC_EOICR, 0x55555555); //EIOCR must be write any value after interrupt, or else can't response next interrupt
|
||||||
irq_desc[irq].interrupt_cnt++;
|
irq_desc[irq].counter ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
void rt_hw_trap_fiq()
|
void rt_hw_trap_fiq()
|
||||||
|
|
|
@ -162,28 +162,28 @@ void rt_hw_cpu_shutdown(void)
|
||||||
#if defined(__CC_ARM)
|
#if defined(__CC_ARM)
|
||||||
__asm int __rt_ffs(int value)
|
__asm int __rt_ffs(int value)
|
||||||
{
|
{
|
||||||
CMP r0, #0x00
|
CMP r0, #0x00
|
||||||
BEQ exit
|
BEQ exit
|
||||||
RBIT r0, r0
|
RBIT r0, r0
|
||||||
CLZ r0, r0
|
CLZ r0, r0
|
||||||
ADDS r0, r0, #0x01
|
ADDS r0, r0, #0x01
|
||||||
|
|
||||||
exit
|
exit
|
||||||
BX lr
|
BX lr
|
||||||
}
|
}
|
||||||
#elif defined(__IAR_SYSTEMS_ICC__)
|
#elif defined(__IAR_SYSTEMS_ICC__)
|
||||||
int __rt_ffs(int value)
|
int __rt_ffs(int value)
|
||||||
{
|
{
|
||||||
if (value == 0) return value;
|
if (value == 0) return value;
|
||||||
|
|
||||||
__ASM("RBIT r0, r0");
|
__ASM("RBIT r0, r0");
|
||||||
__ASM("CLZ r0, r0");
|
__ASM("CLZ r0, r0");
|
||||||
__ASM("ADDS r0, r0, #0x01");
|
__ASM("ADDS r0, r0, #0x01");
|
||||||
}
|
}
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__)
|
||||||
int __rt_ffs(int value)
|
int __rt_ffs(int value)
|
||||||
{
|
{
|
||||||
return __builtin_ffs(value);
|
return __builtin_ffs(value);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue