[528] | 1 | /////////////////////////////////////////////////////////////////////////// |
---|
[294] | 2 | // File : irq_handler.h |
---|
| 3 | // Date : 01/04/2012 |
---|
| 4 | // Author : alain greiner |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
[528] | 6 | /////////////////////////////////////////////////////////////////////////// |
---|
| 7 | // The irq_handler.c and irq_handler.h files are part of the GIET-VM. |
---|
| 8 | // They contain the code of used to handlle HWI, WTI, PTI interrupts. |
---|
| 9 | /////////////////////////////////////////////////////////////////////////// |
---|
[294] | 10 | |
---|
[258] | 11 | #ifndef _IRQ_HANDLER_H |
---|
| 12 | #define _IRQ_HANDLER_H |
---|
| 13 | |
---|
[528] | 14 | /////////////////////////////////////////////////////////////////////////// |
---|
[519] | 15 | // This enum must consistent with the values defined in |
---|
[528] | 16 | // xml_driver.c / xml_parser.c / irq_handler.c / mapping.py |
---|
| 17 | /////////////////////////////////////////////////////////////////////////// |
---|
[294] | 18 | |
---|
[258] | 19 | enum isr_type_t |
---|
| 20 | { |
---|
| 21 | ISR_DEFAULT = 0, |
---|
[294] | 22 | ISR_TICK = 1, |
---|
| 23 | ISR_TTY_RX = 2, |
---|
| 24 | ISR_TTY_TX = 3, |
---|
| 25 | ISR_BDV = 4, |
---|
[258] | 26 | ISR_TIMER = 5, |
---|
| 27 | ISR_WAKUP = 6, |
---|
[294] | 28 | ISR_NIC_RX = 7, |
---|
| 29 | ISR_NIC_TX = 8, |
---|
| 30 | ISR_CMA = 9, |
---|
[297] | 31 | ISR_MMC = 10, |
---|
[322] | 32 | ISR_DMA = 11, |
---|
[547] | 33 | ISR_SDC = 12, |
---|
[519] | 34 | ISR_MWR = 13, |
---|
[528] | 35 | ISR_HBA = 14, |
---|
[258] | 36 | }; |
---|
| 37 | |
---|
[528] | 38 | /////////////////////////////////////////////////////////////////////////// |
---|
| 39 | // Global variables allocated in irq_handler.c |
---|
| 40 | /////////////////////////////////////////////////////////////////////////// |
---|
| 41 | |
---|
| 42 | // array of external IRQ indexes for each (isr/channel) couple |
---|
| 43 | extern unsigned char _ext_irq_index[GIET_ISR_TYPE_MAX][GIET_ISR_CHANNEL_MAX]; |
---|
| 44 | |
---|
| 45 | // WTI mailbox allocators for external IRQ routing (3 allocators per proc) |
---|
| 46 | extern unsigned char _wti_alloc_one[X_SIZE][Y_SIZE][NB_PROCS_MAX]; |
---|
| 47 | extern unsigned char _wti_alloc_two[X_SIZE][Y_SIZE][NB_PROCS_MAX]; |
---|
| 48 | extern unsigned char _wti_alloc_ter[X_SIZE][Y_SIZE][NB_PROCS_MAX]; |
---|
| 49 | |
---|
[547] | 50 | // ISR type names |
---|
| 51 | extern char* _isr_type_str[GIET_ISR_TYPE_MAX]; |
---|
| 52 | |
---|
| 53 | // IRQ type names |
---|
| 54 | extern char* _irq_type_str[3]; |
---|
| 55 | |
---|
[528] | 56 | /////////////////////////////////////////////////////////////////////////// |
---|
[440] | 57 | // irq_handler functions |
---|
[528] | 58 | /////////////////////////////////////////////////////////////////////////// |
---|
[258] | 59 | |
---|
[528] | 60 | /////////////////////////////////////////////////////////////////////////// |
---|
| 61 | // This function is only used when the architecture contains an external |
---|
| 62 | // IOPIC component. It initializes the _ext_irq_index[isr][channel] array, |
---|
| 63 | // defining the IRQ index associated to (isr_type/isr_channel) couple. |
---|
| 64 | // This array is used by the kernel for dynamic routing of an external IRQ |
---|
| 65 | // signaling completion to the processor that launched the I/O operation. |
---|
| 66 | /////////////////////////////////////////////////////////////////////////// |
---|
| 67 | |
---|
| 68 | extern void _ext_irq_init(); |
---|
| 69 | |
---|
| 70 | /////////////////////////////////////////////////////////////////////////// |
---|
| 71 | // This function is only used when the architecture contains an external |
---|
| 72 | // IOPIC component. It dynamically routes an external IRQ signaling |
---|
| 73 | // completion of an I/O operation to the processor P[x,y,p] running |
---|
| 74 | // the calling task. |
---|
| 75 | // 1) it allocates a WTI mailbox in the XCU of cluster[x,y] : Each processor |
---|
| 76 | // has 3 mailboxes, with index in [4*p+1, 4*p+2, 4*p+3]. |
---|
| 77 | // 2) it initialises the IOPIC_ADDRESS and IOPIC_MASK registers associated |
---|
| 78 | // to the (isr_type/isr_channel) couple. |
---|
| 79 | // 3) it initializes the proper entry in the WTI interrupt vector associated |
---|
| 80 | // to processor P[x,y,p]. |
---|
| 81 | /////////////////////////////////////////////////////////////////////////// |
---|
| 82 | |
---|
| 83 | extern void _ext_irq_alloc( unsigned int isr_type, |
---|
| 84 | unsigned int isr_channel, |
---|
| 85 | unsigned int* wti_index ); |
---|
| 86 | |
---|
| 87 | /////////////////////////////////////////////////////////////////////////// |
---|
| 88 | // This function is only used when the architecture contains an external |
---|
| 89 | // IOPIC component. It desallocates all ressources allocated by the |
---|
| 90 | // previous _ext_irq_alloc() function to the calling processor. |
---|
| 91 | // 1) it desactivates the PIC entry associated to (isr_type/isr_channel). |
---|
| 92 | // 2) it releases the WTI mailbox in the XCU of cluster[x,y]. |
---|
| 93 | /////////////////////////////////////////////////////////////////////////// |
---|
| 94 | |
---|
| 95 | extern void _ext_irq_release( unsigned int isr_type, |
---|
| 96 | unsigned int isr_channel, |
---|
| 97 | unsigned int wti_index ); |
---|
| 98 | |
---|
| 99 | /////////////////////////////////////////////////////////////////////////// |
---|
| 100 | // This function access the XICU component (Interrupt Controler Unit) |
---|
| 101 | // to get the interrupt vector entry. There is one XICU component per |
---|
[440] | 102 | // cluster, and this component can support up to NB_PROCS_MAX output IRQs. |
---|
| 103 | // It returns the highest priority active interrupt index (smaller |
---|
| 104 | // indexes have the highest priority). |
---|
[528] | 105 | // Any value larger than 31 means "no active interrupt". |
---|
[440] | 106 | // |
---|
| 107 | // There is three interrupt vectors per processor (stored in the processor's |
---|
| 108 | // scheduler) for the three HWI, PTI, and WTI interrupts types. |
---|
[528] | 109 | // Each interrupt vector entry contains two fields: |
---|
| 110 | // - isr_type bits[15:0] : defines the type of ISR to be executed. |
---|
| 111 | // - isr_channel bits[31:16] : defines the channel index |
---|
[440] | 112 | // If the peripheral is replicated in clusters, the channel_id is |
---|
| 113 | // a global index : channel_id = cluster_id * NB_CHANNELS_MAX + loc_id |
---|
[528] | 114 | /////////////////////////////////////////////////////////////////////////// |
---|
| 115 | |
---|
[258] | 116 | extern void _irq_demux(); |
---|
| 117 | |
---|
[528] | 118 | /////////////////////////////////////////////////////////////////////////// |
---|
[440] | 119 | // This default ISR is called when the interrupt handler is called, |
---|
[528] | 120 | // and there is no active IRQ. It displays a warning message on TTY[0]. |
---|
| 121 | /////////////////////////////////////////////////////////////////////////// |
---|
| 122 | |
---|
[258] | 123 | extern void _isr_default(); |
---|
| 124 | |
---|
[528] | 125 | /////////////////////////////////////////////////////////////////////////// |
---|
| 126 | // This ISR can only be executed after a WTI to force a context switch |
---|
| 127 | // on a remote processor. The context switch is only executed if the |
---|
| 128 | // current task is the IDLE_TASK, or if the value written in the mailbox |
---|
| 129 | // is non zero. |
---|
| 130 | /////////////////////////////////////////////////////////////////////////// |
---|
| 131 | |
---|
[440] | 132 | extern void _isr_wakup( unsigned int irq_type, |
---|
| 133 | unsigned int irq_id, |
---|
| 134 | unsigned int channel ); |
---|
| 135 | |
---|
| 136 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
| 137 | // This ISR is in charge of context switch, and handles the IRQs generated by |
---|
| 138 | // the "system" timers. It can be PTI in case of XCU, or it can be HWI generated |
---|
| 139 | // by an external timer in case of ICU. |
---|
| 140 | // The ISR acknowledges the IRQ, and calls the _ctx_switch() function. |
---|
| 141 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
[294] | 142 | extern void _isr_tick( unsigned int irq_type, |
---|
| 143 | unsigned int irq_id, |
---|
| 144 | unsigned int channel ); |
---|
| 145 | |
---|
[258] | 146 | #endif |
---|
| 147 | |
---|
| 148 | // Local Variables: |
---|
| 149 | // tab-width: 4 |
---|
| 150 | // c-basic-offset: 4 |
---|
| 151 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 152 | // indent-tabs-mode: nil |
---|
| 153 | // End: |
---|
| 154 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 155 | |
---|