Last change
on this file since 199 was
189,
checked in by alain, 12 years ago
|
Introducing a new release where all initialisation
is done in the boot code.
|
File size:
630 bytes
|
Rev | Line | |
---|
[158] | 1 | #ifndef _IRQ_HANDLER_H |
---|
| 2 | #define _IRQ_HANDLER_H |
---|
| 3 | |
---|
[189] | 4 | enum |
---|
| 5 | { |
---|
| 6 | ISR_DEFAULT = 0, |
---|
| 7 | ISR_SWITCH = 1, |
---|
| 8 | ISR_TTY = 2, |
---|
| 9 | ISR_DMA = 3, |
---|
| 10 | ISR_IOC = 4, |
---|
| 11 | ISR_TIMER = 5, |
---|
| 12 | }; |
---|
[158] | 13 | |
---|
| 14 | |
---|
[189] | 15 | /////////////////////////////////////////////////////////////////////////////// |
---|
| 16 | // Prototypes of the Interrupt Service Routines (ISRs) supported by the GIET. |
---|
| 17 | /////////////////////////////////////////////////////////////////////////////// |
---|
[158] | 18 | |
---|
[189] | 19 | void _irq_demux(); |
---|
| 20 | |
---|
[158] | 21 | void _isr_default(); |
---|
| 22 | void _isr_ioc(); |
---|
[189] | 23 | void _isr_timer( unsigned int channel ); |
---|
| 24 | void _isr_dma( unsigned int channel ); |
---|
| 25 | void _isr_tty( unsigned int channel ); |
---|
[158] | 26 | void _isr_switch(); |
---|
| 27 | |
---|
| 28 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.