meson: use pkg-config method for libudev
[qemu/ar7.git] / hw / intc / etraxfs_pic.c
blob54ed4c77f73411d42ddd6f7f9bd4e1ec204c12de
1 /*
2 * QEMU ETRAX Interrupt Controller.
4 * Copyright (c) 2008 Edgar E. Iglesias, Axis Communications AB.
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
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "hw/sysbus.h"
27 #include "qemu/module.h"
28 #include "hw/irq.h"
29 #include "hw/qdev-properties.h"
30 #include "qom/object.h"
32 #define D(x)
34 #define R_RW_MASK 0
35 #define R_R_VECT 1
36 #define R_R_MASKED_VECT 2
37 #define R_R_NMI 3
38 #define R_R_GURU 4
39 #define R_MAX 5
41 #define TYPE_ETRAX_FS_PIC "etraxfs,pic"
42 DECLARE_INSTANCE_CHECKER(struct etrax_pic, ETRAX_FS_PIC,
43 TYPE_ETRAX_FS_PIC)
45 struct etrax_pic
47 SysBusDevice parent_obj;
49 MemoryRegion mmio;
50 qemu_irq parent_irq;
51 qemu_irq parent_nmi;
52 uint32_t regs[R_MAX];
55 static void pic_update(struct etrax_pic *fs)
57 uint32_t vector = 0;
58 int i;
60 fs->regs[R_R_MASKED_VECT] = fs->regs[R_R_VECT] & fs->regs[R_RW_MASK];
62 /* The ETRAX interrupt controller signals interrupts to the core
63 through an interrupt request wire and an irq vector bus. If
64 multiple interrupts are simultaneously active it chooses vector
65 0x30 and lets the sw choose the priorities. */
66 if (fs->regs[R_R_MASKED_VECT]) {
67 uint32_t mv = fs->regs[R_R_MASKED_VECT];
68 for (i = 0; i < 31; i++) {
69 if (mv & 1) {
70 vector = 0x31 + i;
71 /* Check for multiple interrupts. */
72 if (mv > 1)
73 vector = 0x30;
74 break;
76 mv >>= 1;
80 qemu_set_irq(fs->parent_irq, vector);
83 static uint64_t
84 pic_read(void *opaque, hwaddr addr, unsigned int size)
86 struct etrax_pic *fs = opaque;
87 uint32_t rval;
89 rval = fs->regs[addr >> 2];
90 D(printf("%s %x=%x\n", __func__, addr, rval));
91 return rval;
94 static void pic_write(void *opaque, hwaddr addr,
95 uint64_t value, unsigned int size)
97 struct etrax_pic *fs = opaque;
98 D(printf("%s addr=%x val=%x\n", __func__, addr, value));
100 if (addr == R_RW_MASK) {
101 fs->regs[R_RW_MASK] = value;
102 pic_update(fs);
106 static const MemoryRegionOps pic_ops = {
107 .read = pic_read,
108 .write = pic_write,
109 .endianness = DEVICE_NATIVE_ENDIAN,
110 .valid = {
111 .min_access_size = 4,
112 .max_access_size = 4
116 static void nmi_handler(void *opaque, int irq, int level)
118 struct etrax_pic *fs = (void *)opaque;
119 uint32_t mask;
121 mask = 1 << irq;
122 if (level)
123 fs->regs[R_R_NMI] |= mask;
124 else
125 fs->regs[R_R_NMI] &= ~mask;
127 qemu_set_irq(fs->parent_nmi, !!fs->regs[R_R_NMI]);
130 static void irq_handler(void *opaque, int irq, int level)
132 struct etrax_pic *fs = (void *)opaque;
134 if (irq >= 30) {
135 nmi_handler(opaque, irq, level);
136 return;
139 irq -= 1;
140 fs->regs[R_R_VECT] &= ~(1 << irq);
141 fs->regs[R_R_VECT] |= (!!level << irq);
142 pic_update(fs);
145 static void etraxfs_pic_init(Object *obj)
147 DeviceState *dev = DEVICE(obj);
148 struct etrax_pic *s = ETRAX_FS_PIC(obj);
149 SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
151 qdev_init_gpio_in(dev, irq_handler, 32);
152 sysbus_init_irq(sbd, &s->parent_irq);
153 sysbus_init_irq(sbd, &s->parent_nmi);
155 memory_region_init_io(&s->mmio, obj, &pic_ops, s,
156 "etraxfs-pic", R_MAX * 4);
157 sysbus_init_mmio(sbd, &s->mmio);
160 static const TypeInfo etraxfs_pic_info = {
161 .name = TYPE_ETRAX_FS_PIC,
162 .parent = TYPE_SYS_BUS_DEVICE,
163 .instance_size = sizeof(struct etrax_pic),
164 .instance_init = etraxfs_pic_init,
167 static void etraxfs_pic_register_types(void)
169 type_register_static(&etraxfs_pic_info);
172 type_init(etraxfs_pic_register_types)