mirror of https://github.com/xqemu/xqemu.git
sun4u: initialize OBIO interrupt mappings
Similarly to PCI interrupt mappings, the OBIO ones have to be initialized. Signed-off-by: Artyom Tarasenko <atar4qemu@gmail.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
00b2ace509
commit
d1d80055ba
|
@ -404,6 +404,9 @@ static void pci_pbm_reset(DeviceState *d)
|
||||||
for (i = 0; i < 8; i++) {
|
for (i = 0; i < 8; i++) {
|
||||||
s->pci_irq_map[i] &= PBM_PCI_IMR_MASK;
|
s->pci_irq_map[i] &= PBM_PCI_IMR_MASK;
|
||||||
}
|
}
|
||||||
|
for (i = 0; i < 32; i++) {
|
||||||
|
s->obio_irq_map[i] &= PBM_PCI_IMR_MASK;
|
||||||
|
}
|
||||||
|
|
||||||
if (s->nr_resets++ == 0) {
|
if (s->nr_resets++ == 0) {
|
||||||
/* Power on reset */
|
/* Power on reset */
|
||||||
|
@ -426,6 +429,9 @@ static int pci_pbm_init_device(SysBusDevice *dev)
|
||||||
for (i = 0; i < 8; i++) {
|
for (i = 0; i < 8; i++) {
|
||||||
s->pci_irq_map[i] = (0x1f << 6) | (i << 2);
|
s->pci_irq_map[i] = (0x1f << 6) | (i << 2);
|
||||||
}
|
}
|
||||||
|
for (i = 0; i < 32; i++) {
|
||||||
|
s->obio_irq_map[i] = ((0x1f << 6) | 0x20) + i;
|
||||||
|
}
|
||||||
s->pbm_irqs = qemu_allocate_irqs(pci_apb_set_irq, s, MAX_IVEC);
|
s->pbm_irqs = qemu_allocate_irqs(pci_apb_set_irq, s, MAX_IVEC);
|
||||||
|
|
||||||
/* apb_config */
|
/* apb_config */
|
||||||
|
|
Loading…
Reference in New Issue