2009-07-03 07:18:14 +08:00
|
|
|
/*
|
2018-10-15 01:35:07 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2009-07-03 07:18:14 +08:00
|
|
|
*
|
2018-10-15 01:35:07 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2009-07-03 07:18:14 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2006-08-25 Bernard first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rthw.h>
|
|
|
|
|
2009-12-29 15:17:58 +08:00
|
|
|
#include "AT91SAM7X256.h"
|
2009-07-03 07:18:14 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup AT91SAM7
|
|
|
|
*/
|
|
|
|
/*@{*/
|
|
|
|
|
2013-03-23 20:13:43 +08:00
|
|
|
void rt_hw_trap_irq(void)
|
2009-07-03 07:18:14 +08:00
|
|
|
{
|
2013-03-30 08:15:27 +08:00
|
|
|
int irqno;
|
|
|
|
extern struct rt_irq_desc irq_desc[];
|
2009-07-03 07:18:14 +08:00
|
|
|
|
2013-03-30 08:15:27 +08:00
|
|
|
/* get interrupt number */
|
|
|
|
irqno = AT91C_BASE_AIC->AIC_ISR;
|
|
|
|
|
|
|
|
/* invoke isr with parameters */
|
|
|
|
irq_desc[irqno].handler(irqno, irq_desc[irqno].param);
|
2009-07-03 07:18:14 +08:00
|
|
|
|
|
|
|
/* end of interrupt */
|
2009-12-29 15:17:58 +08:00
|
|
|
AT91C_BASE_AIC->AIC_EOICR = 0;
|
2009-07-03 07:18:14 +08:00
|
|
|
}
|
|
|
|
|
2013-03-23 20:13:43 +08:00
|
|
|
void rt_hw_trap_fiq(void)
|
2009-07-03 07:18:14 +08:00
|
|
|
{
|
|
|
|
rt_kprintf("fast interrupt request\n");
|
|
|
|
}
|
2013-01-08 21:05:02 +08:00
|
|
|
|
2009-12-29 16:13:45 +08:00
|
|
|
extern struct rt_thread* rt_current_thread;
|
2013-03-23 20:13:43 +08:00
|
|
|
void rt_hw_trap_abort(void)
|
2013-01-08 21:05:02 +08:00
|
|
|
{
|
|
|
|
rt_kprintf("Abort occured!!! Thread [%s] suspended.\n",rt_current_thread->name);
|
|
|
|
rt_thread_suspend(rt_current_thread);
|
2009-12-29 16:13:45 +08:00
|
|
|
rt_schedule();
|
|
|
|
|
2009-12-29 15:17:58 +08:00
|
|
|
}
|
2009-07-03 07:18:14 +08:00
|
|
|
/*@}*/
|