2 * Arm PrimeCell PL190 Vector Interrupt Controller
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licenced under the GPL.
11 #include "primecell.h"
14 /* The number of virtual priority levels. 16 user vectors plus the
15 unvectored IRQ. Chained interrupts would require an additional level
18 #define PL190_NUM_PRIO 17
26 uint32_t default_addr;
27 uint8_t vect_control[16];
28 uint32_t vect_addr[PL190_NUM_PRIO];
29 /* Mask containing interrupts with higher priority than this one. */
30 uint32_t prio_mask[PL190_NUM_PRIO + 1];
32 /* Current priority level. */
34 int prev_prio[PL190_NUM_PRIO];
39 static const unsigned char pl190_id[] =
40 { 0x90, 0x11, 0x04, 0x00, 0x0D, 0xf0, 0x05, 0xb1 };
42 static inline uint32_t pl190_irq_level(pl190_state *s)
44 return (s->level | s->soft_level) & s->irq_enable & ~s->fiq_select;
47 /* Update interrupts. */
48 static void pl190_update(pl190_state *s)
50 uint32_t level = pl190_irq_level(s);
53 set = (level & s->prio_mask[s->priority]) != 0;
54 qemu_set_irq(s->irq, set);
55 set = ((s->level | s->soft_level) & s->fiq_select) != 0;
56 qemu_set_irq(s->fiq, set);
59 static void pl190_set_irq(void *opaque, int irq, int level)
61 pl190_state *s = (pl190_state *)opaque;
64 s->level |= 1u << irq;
66 s->level &= ~(1u << irq);
70 static void pl190_update_vectors(pl190_state *s)
77 for (i = 0; i < 16; i++)
79 s->prio_mask[i] = mask;
80 if (s->vect_control[i] & 0x20)
82 n = s->vect_control[i] & 0x1f;
86 s->prio_mask[16] = mask;
90 static uint32_t pl190_read(void *opaque, target_phys_addr_t offset)
92 pl190_state *s = (pl190_state *)opaque;
96 if (offset >= 0xfe0 && offset < 0x1000) {
97 return pl190_id[(offset - 0xfe0) >> 2];
99 if (offset >= 0x100 && offset < 0x140) {
100 return s->vect_addr[(offset - 0x100) >> 2];
102 if (offset >= 0x200 && offset < 0x240) {
103 return s->vect_control[(offset - 0x200) >> 2];
105 switch (offset >> 2) {
106 case 0: /* IRQSTATUS */
107 return pl190_irq_level(s);
108 case 1: /* FIQSATUS */
109 return (s->level | s->soft_level) & s->fiq_select;
110 case 2: /* RAWINTR */
111 return s->level | s->soft_level;
112 case 3: /* INTSELECT */
113 return s->fiq_select;
114 case 4: /* INTENABLE */
115 return s->irq_enable;
116 case 6: /* SOFTINT */
117 return s->soft_level;
118 case 8: /* PROTECTION */
120 case 12: /* VECTADDR */
121 /* Read vector address at the start of an ISR. Increases the
122 current priority level to that of the current interrupt. */
123 for (i = 0; i < s->priority; i++)
125 if ((s->level | s->soft_level) & s->prio_mask[i])
128 /* Reading this value with no pending interrupts is undefined.
129 We return the default address. */
130 if (i == PL190_NUM_PRIO)
131 return s->vect_addr[16];
134 s->prev_prio[i] = s->priority;
138 return s->vect_addr[s->priority];
139 case 13: /* DEFVECTADDR */
140 return s->vect_addr[16];
142 cpu_abort (cpu_single_env, "pl190_read: Bad offset %x\n", (int)offset);
147 static void pl190_write(void *opaque, target_phys_addr_t offset, uint32_t val)
149 pl190_state *s = (pl190_state *)opaque;
152 if (offset >= 0x100 && offset < 0x140) {
153 s->vect_addr[(offset - 0x100) >> 2] = val;
154 pl190_update_vectors(s);
157 if (offset >= 0x200 && offset < 0x240) {
158 s->vect_control[(offset - 0x200) >> 2] = val;
159 pl190_update_vectors(s);
162 switch (offset >> 2) {
164 /* This is a readonly register, but linux tries to write to it
165 anyway. Ignore the write. */
167 case 3: /* INTSELECT */
170 case 4: /* INTENABLE */
171 s->irq_enable |= val;
173 case 5: /* INTENCLEAR */
174 s->irq_enable &= ~val;
176 case 6: /* SOFTINT */
177 s->soft_level |= val;
179 case 7: /* SOFTINTCLEAR */
180 s->soft_level &= ~val;
182 case 8: /* PROTECTION */
183 /* TODO: Protection (supervisor only access) is not implemented. */
184 s->protected = val & 1;
186 case 12: /* VECTADDR */
187 /* Restore the previous priority level. The value written is
189 if (s->priority < PL190_NUM_PRIO)
190 s->priority = s->prev_prio[s->priority];
192 case 13: /* DEFVECTADDR */
193 s->default_addr = val;
195 case 0xc0: /* ITCR */
197 cpu_abort(cpu_single_env, "pl190: Test mode not implemented\n");
200 cpu_abort(cpu_single_env, "pl190_write: Bad offset %x\n", (int)offset);
206 static CPUReadMemoryFunc *pl190_readfn[] = {
212 static CPUWriteMemoryFunc *pl190_writefn[] = {
218 static void pl190_reset(pl190_state *s)
222 for (i = 0; i < 16; i++)
225 s->vect_control[i] = 0;
227 s->vect_addr[16] = 0;
228 s->prio_mask[17] = 0xffffffff;
229 s->priority = PL190_NUM_PRIO;
230 pl190_update_vectors(s);
233 qemu_irq *pl190_init(uint32_t base, qemu_irq irq, qemu_irq fiq)
239 s = (pl190_state *)qemu_mallocz(sizeof(pl190_state));
240 iomemtype = cpu_register_io_memory(0, pl190_readfn,
242 cpu_register_physical_memory(base, 0x00001000, iomemtype);
243 qi = qemu_allocate_irqs(pl190_set_irq, s, 32);
248 /* ??? Save/restore. */