2 * QEMU Sparc SBI interrupt controller emulation
4 * Based on slavio_intctl, copyright (c) 2003-2005 Fabrice Bellard
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
30 #define DPRINTF(fmt, ...) \
31 do { printf("IRQ: " fmt , ## __VA_ARGS__); } while (0)
33 #define DPRINTF(fmt, ...)
40 typedef struct SBIState
{
43 uint32_t regs
[SBI_NREGS
];
44 uint32_t intreg_pending
[MAX_CPUS
];
45 qemu_irq cpu_irqs
[MAX_CPUS
];
46 uint32_t pil_out
[MAX_CPUS
];
49 #define SBI_SIZE (SBI_NREGS * 4)
51 static void sbi_set_irq(void *opaque
, int irq
, int level
)
55 static uint64_t sbi_mem_read(void *opaque
, hwaddr addr
,
67 DPRINTF("read system reg 0x" TARGET_FMT_plx
" = %x\n", addr
, ret
);
72 static void sbi_mem_write(void *opaque
, hwaddr addr
,
73 uint64_t val
, unsigned dize
)
79 DPRINTF("write system reg 0x" TARGET_FMT_plx
" = %x\n", addr
, (int)val
);
87 static const MemoryRegionOps sbi_mem_ops
= {
89 .write
= sbi_mem_write
,
90 .endianness
= DEVICE_NATIVE_ENDIAN
,
97 static const VMStateDescription vmstate_sbi
= {
100 .minimum_version_id
= 1,
101 .minimum_version_id_old
= 1,
102 .fields
= (VMStateField
[]) {
103 VMSTATE_UINT32_ARRAY(intreg_pending
, SBIState
, MAX_CPUS
),
104 VMSTATE_END_OF_LIST()
108 static void sbi_reset(DeviceState
*d
)
110 SBIState
*s
= container_of(d
, SBIState
, busdev
.qdev
);
113 for (i
= 0; i
< MAX_CPUS
; i
++) {
114 s
->intreg_pending
[i
] = 0;
118 static int sbi_init1(SysBusDevice
*dev
)
120 SBIState
*s
= FROM_SYSBUS(SBIState
, dev
);
123 qdev_init_gpio_in(&dev
->qdev
, sbi_set_irq
, 32 + MAX_CPUS
);
124 for (i
= 0; i
< MAX_CPUS
; i
++) {
125 sysbus_init_irq(dev
, &s
->cpu_irqs
[i
]);
128 memory_region_init_io(&s
->iomem
, &sbi_mem_ops
, s
, "sbi", SBI_SIZE
);
129 sysbus_init_mmio(dev
, &s
->iomem
);
134 static void sbi_class_init(ObjectClass
*klass
, void *data
)
136 DeviceClass
*dc
= DEVICE_CLASS(klass
);
137 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
140 dc
->reset
= sbi_reset
;
141 dc
->vmsd
= &vmstate_sbi
;
144 static TypeInfo sbi_info
= {
146 .parent
= TYPE_SYS_BUS_DEVICE
,
147 .instance_size
= sizeof(SBIState
),
148 .class_init
= sbi_class_init
,
151 static void sbi_register_types(void)
153 type_register_static(&sbi_info
);
156 type_init(sbi_register_types
)