Changes between Version 20 and Version 21 of Component/Vci Xicu
- Timestamp:
- Apr 13, 2013, 11:01:01 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Component/Vci Xicu
v20 v21 9 9 * up to 32 internal programmable timer interrupts (PTI), 10 10 * up to 32 external hardware interrupt lines (HWI), 11 * up to 32 internal write-triggered interrupts (WTI).11 * up to 32 internal software-triggered interrupts (WTI). 12 12 All these interrupt sources can be routed to up to 32 interrupt outputs. Each output can 13 13 mask individual interrupt sources. … … 52 52 ||W || XICU_MSK_HWI_DISABLE || 01010 || OUT_INDEX || 53 53 ||R || XICU_HWI_ACTIVE || 01010 || OUT_INDEX || 54 || || Reserved || 01 111 || ||54 || || Reserved || 01011 || || 55 55 ||R/W || XICU_MSK_WTI || 01100 || OUT_INDEX || 56 56 ||W || XICU_MSK_WTI_ENABLE || 01101 || OUT_INDEX || … … 58 58 ||R || XICU_WTI_ACTIVE || 01110 || OUT_INDEX || 59 59 ||R || XICU_PRIO || 01111 || OUT_INDEX || 60 || || Reserved || 1---- || || 61 60 ||R || XICU_CONFIG || 10000 || unused || 62 61 Software can use the following macro to access registers: 63 62 … … 168 167 '''PRIO[OUT_INDEX] : Priority Encoder for IRQ[OUT_INDEX]''' 169 168 170 This re gister holds the index of the highest priority, active and unmasked interrupt for each source type.169 This read-only register holds the index of the highest priority, active and unmasked interrupt for each source type. 171 170 * On write : Unsupported 172 171 * On read : Get the three highest-priority active interrupt indexes for IRQ[OUT_INDEX]. … … 180 179 * Field PRIO_HWI (5 bits) contains the index of the highest priority hardware interrupt. 181 180 * Field PRIO_WTI (5 bits) contains the index of the highest priority software interrupt. 181 182 '''CONFIG : Global XICU configuration register''' 183 184 This read-only register return the XICU hardware parameters. 185 * On write : Unsupported 186 * On read : returns the IRQ_COUNT, WTI_COUNT, HWI_COUNT, PTI_COUNT values. Each value (between 0 & 32) coded on 6 bits 187 188 ||00IRQ_COUNT||00WTI_COUNT||00HWI_COUNT||00PTI_COUNT|| 189 190 * IRQ_COUNT : total number of output IRQs. 191 * WTI_COUNT : total number of software triggered interrupts. 192 * HWI_COUNT : total number of hardware interrupts. 193 * PTI_COUNT : total number of programmable timer interrupts. 182 194 183 195 Complete specification is in [attachment:xicu-1.0.pdf].