2 * QEMU Xilinx OPB Interrupt Controller.
4 * Copyright (c) 2009 Edgar E. Iglesias.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "hw/sysbus.h"
27 #include "qemu/module.h"
29 #include "hw/qdev-properties.h"
43 #define TYPE_XILINX_INTC "xlnx.xps-intc"
44 #define XILINX_INTC(obj) OBJECT_CHECK(struct xlx_pic, (obj), TYPE_XILINX_INTC)
48 SysBusDevice parent_obj
;
53 /* Configuration reg chosen at synthesis-time. QEMU populates
54 the bits at board-setup. */
55 uint32_t c_kind_of_intr
;
57 /* Runtime control registers. */
59 /* state of the interrupt input pins */
60 uint32_t irq_pin_state
;
63 static void update_irq(struct xlx_pic
*p
)
67 /* level triggered interrupt */
68 if (p
->regs
[R_MER
] & 2) {
69 p
->regs
[R_ISR
] |= p
->irq_pin_state
& ~p
->c_kind_of_intr
;
72 /* Update the pending register. */
73 p
->regs
[R_IPR
] = p
->regs
[R_ISR
] & p
->regs
[R_IER
];
75 /* Update the vector register. */
76 for (i
= 0; i
< 32; i
++) {
77 if (p
->regs
[R_IPR
] & (1U << i
)) {
85 qemu_set_irq(p
->parent_irq
, (p
->regs
[R_MER
] & 1) && p
->regs
[R_IPR
]);
89 pic_read(void *opaque
, hwaddr addr
, unsigned int size
)
91 struct xlx_pic
*p
= opaque
;
98 if (addr
< ARRAY_SIZE(p
->regs
))
103 D(printf("%s %x=%x\n", __func__
, addr
* 4, r
));
108 pic_write(void *opaque
, hwaddr addr
,
109 uint64_t val64
, unsigned int size
)
111 struct xlx_pic
*p
= opaque
;
112 uint32_t value
= val64
;
115 D(qemu_log("%s addr=%x val=%x\n", __func__
, addr
* 4, value
));
119 p
->regs
[R_ISR
] &= ~value
; /* ACK. */
122 p
->regs
[R_IER
] |= value
; /* Atomic set ie. */
125 p
->regs
[R_IER
] &= ~value
; /* Atomic clear ie. */
128 p
->regs
[R_MER
] = value
& 0x3;
131 if ((p
->regs
[R_MER
] & 2)) {
136 if (addr
< ARRAY_SIZE(p
->regs
))
137 p
->regs
[addr
] = value
;
143 static const MemoryRegionOps pic_ops
= {
146 .endianness
= DEVICE_NATIVE_ENDIAN
,
148 .min_access_size
= 4,
153 static void irq_handler(void *opaque
, int irq
, int level
)
155 struct xlx_pic
*p
= opaque
;
157 /* edge triggered interrupt */
158 if (p
->c_kind_of_intr
& (1 << irq
) && p
->regs
[R_MER
] & 2) {
159 p
->regs
[R_ISR
] |= (level
<< irq
);
162 p
->irq_pin_state
&= ~(1 << irq
);
163 p
->irq_pin_state
|= level
<< irq
;
167 static void xilinx_intc_init(Object
*obj
)
169 struct xlx_pic
*p
= XILINX_INTC(obj
);
171 qdev_init_gpio_in(DEVICE(obj
), irq_handler
, 32);
172 sysbus_init_irq(SYS_BUS_DEVICE(obj
), &p
->parent_irq
);
174 memory_region_init_io(&p
->mmio
, obj
, &pic_ops
, p
, "xlnx.xps-intc",
176 sysbus_init_mmio(SYS_BUS_DEVICE(obj
), &p
->mmio
);
179 static Property xilinx_intc_properties
[] = {
180 DEFINE_PROP_UINT32("kind-of-intr", struct xlx_pic
, c_kind_of_intr
, 0),
181 DEFINE_PROP_END_OF_LIST(),
184 static void xilinx_intc_class_init(ObjectClass
*klass
, void *data
)
186 DeviceClass
*dc
= DEVICE_CLASS(klass
);
188 device_class_set_props(dc
, xilinx_intc_properties
);
191 static const TypeInfo xilinx_intc_info
= {
192 .name
= TYPE_XILINX_INTC
,
193 .parent
= TYPE_SYS_BUS_DEVICE
,
194 .instance_size
= sizeof(struct xlx_pic
),
195 .instance_init
= xilinx_intc_init
,
196 .class_init
= xilinx_intc_class_init
,
199 static void xilinx_intc_register_types(void)
201 type_register_static(&xilinx_intc_info
);
204 type_init(xilinx_intc_register_types
)