[158] | 1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : irq_handler.c |
---|
| 3 | // Date : 01/04/2012 |
---|
[189] | 4 | // Author : alain greiner |
---|
[158] | 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 7 | // The irq_handler.c and irq_handler.h files are part of the GIET-VM nano-kernel. |
---|
| 8 | // They contain the code of the _irq_demux() function that access the XICU or |
---|
| 9 | // ICU component (Interupt Controler Unit), and the various ISRs (Interrupt |
---|
| 10 | // Service Routine) associated to the peripherals. |
---|
[158] | 11 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 12 | |
---|
| 13 | #include <giet_config.h> |
---|
| 14 | #include <irq_handler.h> |
---|
| 15 | #include <sys_handler.h> |
---|
| 16 | #include <drivers.h> |
---|
| 17 | #include <common.h> |
---|
| 18 | #include <ctx_handler.h> |
---|
| 19 | #include <hwr_mapping.h> |
---|
| 20 | |
---|
| 21 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 22 | // _irq_demux() |
---|
| 23 | // This function uses the ICU or XICU component (Interrupt Controler Unit) |
---|
| 24 | // to get the interrupt vector entry. There is one ICU or XICU component per |
---|
| 25 | // cluster, and this component can support up to NB_PROCS_MAX output IRQs. |
---|
| 26 | // It returns the highest priority active interrupt index (smaller |
---|
| 27 | // indexes have the highest priority). |
---|
| 28 | // Any value larger than 31 means "no active interrupt", and no ISR is executed. |
---|
[158] | 29 | // |
---|
[189] | 30 | // There is one interrupt vector per processor (stored in the scheduler associated |
---|
| 31 | // to the processor. Each interrupt vector entry contains two 16 bits fields: |
---|
| 32 | // - isr_id : defines the type of ISR to be executed. |
---|
| 33 | // - channel_id : defines the specific channel for multi-channels peripherals. |
---|
[158] | 34 | // |
---|
[189] | 35 | // If the peripheral is replicated in clusters (TIMER or DMA), the channel_id is |
---|
| 36 | // a global index : channel_id = cluster_id * NB_CHANNELS_MAX + loc_id |
---|
[158] | 37 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 38 | void _irq_demux() |
---|
[158] | 39 | { |
---|
[189] | 40 | unsigned int pid = _procid(); |
---|
| 41 | unsigned int irq_id; |
---|
[158] | 42 | |
---|
[189] | 43 | // get the highest priority active IRQ index |
---|
| 44 | |
---|
| 45 | #if GIET_USE_XICU |
---|
| 46 | |
---|
| 47 | #else |
---|
| 48 | |
---|
| 49 | if ( _icu_read( pid / NB_PROCS_MAX, |
---|
| 50 | pid % NB_PROCS_MAX, |
---|
[165] | 51 | ICU_IT_VECTOR, |
---|
[189] | 52 | &irq_id ) ) |
---|
[158] | 53 | { |
---|
[189] | 54 | _puts("\n[GIET ERROR] wrong _icu_read in _irq_demux() function\n"); |
---|
| 55 | _exit(); |
---|
| 56 | } |
---|
[158] | 57 | |
---|
[189] | 58 | #endif |
---|
| 59 | |
---|
| 60 | if ( irq_id < 32 ) // do nothing if no interrupt active |
---|
[165] | 61 | { |
---|
[189] | 62 | unsigned int entry = _get_interrupt_vector_entry(irq_id); |
---|
| 63 | unsigned int isr_id = entry & 0x000000FF; |
---|
| 64 | unsigned int channel_id = (entry>>16) & 0x0000FFFF; |
---|
| 65 | if ( isr_id == ISR_SWITCH ) _isr_switch(); |
---|
| 66 | else if ( isr_id == ISR_IOC ) _isr_ioc(); |
---|
| 67 | else if ( isr_id == ISR_DMA ) _isr_dma( channel_id ); |
---|
| 68 | else if ( isr_id == ISR_TTY ) _isr_tty( channel_id ); |
---|
| 69 | else if ( isr_id == ISR_TIMER ) _isr_timer( channel_id ); |
---|
| 70 | else _isr_default(); |
---|
[165] | 71 | } |
---|
[158] | 72 | } |
---|
| 73 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 74 | // _isr_default() |
---|
| 75 | // The default ISR is called when no specific ISR has been installed in the |
---|
[189] | 76 | // interrupt vector. It simply displays a message on kernel TTY[0]. |
---|
[158] | 77 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 78 | void _isr_default() |
---|
| 79 | { |
---|
[189] | 80 | _puts("\n\n!!! Strange... Default ISR activated !!!\n"); |
---|
[158] | 81 | } |
---|
[165] | 82 | |
---|
[158] | 83 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 84 | // _isr_dma() |
---|
[189] | 85 | // This ISR handles all IRQs generated by the multi-channels DMA controlers. |
---|
| 86 | // The multi_dma components can be distributed in the clusters. |
---|
| 87 | // The channel_id argument is the global DMA channel index. |
---|
| 88 | // channel_id = cluster_id*NB_DMAS_MAX + loc_id |
---|
| 89 | // - The ISR saves the transfert status in _dma_status[channel_id]. |
---|
| 90 | // - It acknowledges the interrupt to reinitialize the DMA controler. |
---|
| 91 | // - it resets the synchronisation variable _dma_busy[channel_id]. |
---|
[158] | 92 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 93 | void _isr_dma( unsigned int channel_id ) |
---|
[158] | 94 | { |
---|
[189] | 95 | // compute cluster_id and loc_id |
---|
| 96 | unsigned int cluster_id = channel_id / NB_DMAS_MAX; |
---|
| 97 | unsigned int loc_id = channel_id % NB_DMAS_MAX; |
---|
[158] | 98 | |
---|
[169] | 99 | // compute DMA channel address |
---|
[189] | 100 | unsigned int* dma_address = (unsigned int*)&seg_dma_base + |
---|
| 101 | (loc_id * DMA_SPAN) + |
---|
| 102 | (cluster_id * CLUSTER_SPAN); |
---|
[158] | 103 | |
---|
[169] | 104 | // save DMA channel status |
---|
[189] | 105 | _dma_status[channel_id] = dma_address[DMA_LEN]; |
---|
[169] | 106 | |
---|
| 107 | // reset DMA channel |
---|
[189] | 108 | dma_address[DMA_RESET] = 0; |
---|
[165] | 109 | |
---|
[169] | 110 | // release DMA channel |
---|
[189] | 111 | _dma_done[channel_id] = 1; |
---|
[158] | 112 | } |
---|
[165] | 113 | |
---|
[158] | 114 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 115 | // _isr_ioc() |
---|
[189] | 116 | // There is only one IOC controler shared by all tasks. |
---|
| 117 | // - The ISR save the status and acknowledge the IRQ. |
---|
| 118 | // - It sets the _ioc_done variable to signal completion. |
---|
[158] | 119 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 120 | void _isr_ioc() |
---|
| 121 | { |
---|
[189] | 122 | unsigned int* ioc_address = (unsigned int*)&seg_ioc_base; |
---|
[158] | 123 | |
---|
| 124 | _ioc_status = ioc_address[BLOCK_DEVICE_STATUS]; /* save status & reset IRQ */ |
---|
| 125 | _ioc_done = 1; /* signals completion */ |
---|
| 126 | } |
---|
[165] | 127 | |
---|
[158] | 128 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 129 | // _isr_timer() |
---|
| 130 | // This ISR handles the IRQs generated by the "user" timers (the IRQs |
---|
| 131 | // generated by the "system" timers should be handled by the _isr_switch(). |
---|
| 132 | // These timers are distributed in all clusters, and can be implemented |
---|
| 133 | // in a vci_multi_timer component, or in a vci_xicu component. |
---|
| 134 | // The channel_id argument is the global channel index: |
---|
| 135 | // channel_id = cluster_id*(NB_TIMERS_MAX+NB_PROCS_MAX) + loc_id |
---|
| 136 | // The user timer local index is (loc_id - NB_PROCS_MAX). |
---|
| 137 | // |
---|
| 138 | // The ISR acknowledges the IRQ and registers the event in the proper entry |
---|
| 139 | // of the _timer_event[] array. |
---|
| 140 | // A log message is displayed on the kernel terminal. |
---|
[158] | 141 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 142 | void _isr_timer(unsigned int channel_id) |
---|
[158] | 143 | { |
---|
| 144 | |
---|
[189] | 145 | unsigned int cluster_id = channel_id / (NB_TIMERS_MAX + NB_PROCS_MAX); |
---|
| 146 | unsigned int loc_id = channel_id % (NB_TIMERS_MAX + NB_PROCS_MAX); |
---|
[158] | 147 | |
---|
[189] | 148 | if (loc_id < NB_PROCS_MAX ) |
---|
| 149 | { |
---|
| 150 | _puts("[GIET ERROR] Receiving a user timer IRQ for a system timer\n"); |
---|
| 151 | _puts(" cluster = "); |
---|
| 152 | _putw(cluster_id); |
---|
| 153 | _puts(" / local_id = "); |
---|
| 154 | _putw(loc_id); |
---|
| 155 | } |
---|
[158] | 156 | |
---|
[189] | 157 | #if GIET_USE_XICU |
---|
| 158 | |
---|
| 159 | // TODO |
---|
| 160 | |
---|
| 161 | #else |
---|
| 162 | |
---|
| 163 | // compute Timer address |
---|
| 164 | unsigned int* timer_address = (unsigned int*)&seg_timer_base + |
---|
| 165 | (loc_id * TIMER_SPAN) + |
---|
| 166 | (cluster_id * CLUSTER_SPAN); |
---|
| 167 | |
---|
| 168 | // reset IRQ |
---|
| 169 | timer_address[TIMER_RESETIRQ] = 0; |
---|
| 170 | |
---|
| 171 | #endif |
---|
| 172 | |
---|
| 173 | #if NB_TIMERS_MAX |
---|
| 174 | // register the event |
---|
| 175 | _timer_event[(cluster_id*NB_TIMERS_MAX) + (loc_id - NB_PROCS_MAX)] = 1; |
---|
| 176 | #endif |
---|
| 177 | |
---|
| 178 | // display a message on TTY 0 |
---|
| 179 | _puts("[GIET] User Timer IRQ / cluster = "); |
---|
| 180 | _putw(cluster_id); |
---|
| 181 | _puts(" / timer = "); |
---|
| 182 | _putw(loc_id - NB_PROCS_MAX); |
---|
| 183 | _puts("\n"); |
---|
[158] | 184 | } |
---|
| 185 | |
---|
| 186 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 187 | // _isr_tty() |
---|
| 188 | // This ISR handles the IRQs generated by the multi_tty controler, |
---|
| 189 | // signaling that a character is available. |
---|
| 190 | // There is one single multi_tty component controling all TTYs, and the tty_id |
---|
| 191 | // argument is the global TTY index. |
---|
| 192 | // There is one communication buffer _tty_buf[tty_id] per terminal. |
---|
| 193 | // The sychronisation variable _tty_full[tty_id], is set by the ISR, |
---|
[158] | 194 | // and reset by the OS. |
---|
| 195 | // A character is lost if the buffer is full when the ISR is executed. |
---|
| 196 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[189] | 197 | void _isr_tty(unsigned int tty_id) |
---|
[158] | 198 | { |
---|
[189] | 199 | // compute terminal base address |
---|
| 200 | unsigned int *tty_address = (unsigned int*)&seg_tty_base + (tty_id * TTY_SPAN); |
---|
[158] | 201 | |
---|
[189] | 202 | // save character and reset IRQ |
---|
[158] | 203 | _tty_get_buf[tty_id] = (unsigned char)tty_address[TTY_READ]; |
---|
| 204 | |
---|
[189] | 205 | // signals character available |
---|
[158] | 206 | _tty_get_full[tty_id] = 1; |
---|
| 207 | } |
---|
| 208 | |
---|
| 209 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
| 210 | // _isr_switch |
---|
[189] | 211 | // This ISR is in charge of context switch, and handle the IRQs generated by |
---|
| 212 | // the "system" timers. |
---|
| 213 | // The IRQs can be generated by the MULTI_TIMER component or by the XICU component, |
---|
| 214 | // that are distributed in all clusters. |
---|
| 215 | // The ISR acknowledges the IRQ and calls the _ctx_switch() function. |
---|
[158] | 216 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
| 217 | void _isr_switch() |
---|
| 218 | { |
---|
[189] | 219 | // get cluster index and proc local index |
---|
| 220 | unsigned int pid = _procid(); |
---|
| 221 | unsigned int loc_id = pid % NB_PROCS_MAX; |
---|
| 222 | unsigned int cluster_id = pid / NB_PROCS_MAX; |
---|
[158] | 223 | |
---|
[189] | 224 | #if GIET_USE_XICU |
---|
[158] | 225 | |
---|
[189] | 226 | unsigned int* timer_address = // TODO |
---|
| 227 | |
---|
| 228 | #else |
---|
| 229 | |
---|
| 230 | // compute Timer address |
---|
| 231 | unsigned int* timer_address = (unsigned int*)&seg_timer_base + |
---|
| 232 | (loc_id * TIMER_SPAN) + |
---|
| 233 | (cluster_id * CLUSTER_SPAN); |
---|
| 234 | |
---|
| 235 | // reset IRQ |
---|
| 236 | timer_address[TIMER_RESETIRQ] = 0; |
---|
| 237 | |
---|
| 238 | #endif |
---|
| 239 | |
---|
| 240 | // performs the context switch |
---|
[158] | 241 | _ctx_switch(); |
---|
[189] | 242 | |
---|
[158] | 243 | } |
---|
| 244 | |
---|