* [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs
@ 2024-06-28 16:03 Mark Cave-Ayland
2024-06-28 16:20 ` Philippe Mathieu-Daudé
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Mark Cave-Ayland @ 2024-06-28 16:03 UTC (permalink / raw)
To: qemu-devel, qemu-ppc, qemu-block, akihiko.odaki
This prevents the IRQs from being leaked when the macio IDE device is used.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
---
hw/ide/macio.c | 10 ++++++----
include/hw/misc/macio/macio.h | 7 +++++--
2 files changed, 11 insertions(+), 6 deletions(-)
v2:
- Delete dma_irq and ide_irq from MACIOIDEState
- Add R-B tag from Peter
diff --git a/hw/ide/macio.c b/hw/ide/macio.c
index aca90d04f0..e84bf2c9f6 100644
--- a/hw/ide/macio.c
+++ b/hw/ide/macio.c
@@ -420,7 +420,8 @@ static void macio_ide_realizefn(DeviceState *dev, Error **errp)
{
MACIOIDEState *s = MACIO_IDE(dev);
- ide_bus_init_output_irq(&s->bus, s->ide_irq);
+ ide_bus_init_output_irq(&s->bus,
+ qdev_get_gpio_in(dev, MACIO_IDE_PMAC_IDE_IRQ));
/* Register DMA callbacks */
s->dma.ops = &dbdma_ops;
@@ -456,8 +457,8 @@ static void macio_ide_initfn(Object *obj)
sysbus_init_mmio(d, &s->mem);
sysbus_init_irq(d, &s->real_ide_irq);
sysbus_init_irq(d, &s->real_dma_irq);
- s->dma_irq = qemu_allocate_irq(pmac_ide_irq, s, 0);
- s->ide_irq = qemu_allocate_irq(pmac_ide_irq, s, 1);
+
+ qdev_init_gpio_in(DEVICE(obj), pmac_ide_irq, MACIO_IDE_PMAC_NIRQS);
object_property_add_link(obj, "dbdma", TYPE_MAC_DBDMA,
(Object **) &s->dbdma,
@@ -508,7 +509,8 @@ void macio_ide_init_drives(MACIOIDEState *s, DriveInfo **hd_table)
void macio_ide_register_dma(MACIOIDEState *s)
{
- DBDMA_register_channel(s->dbdma, s->channel, s->dma_irq,
+ DBDMA_register_channel(s->dbdma, s->channel,
+ qdev_get_gpio_in(DEVICE(s), MACIO_IDE_PMAC_DMA_IRQ),
pmac_ide_transfer, pmac_ide_flush, s);
}
diff --git a/include/hw/misc/macio/macio.h b/include/hw/misc/macio/macio.h
index 2b54da6b31..16aa95b876 100644
--- a/include/hw/misc/macio/macio.h
+++ b/include/hw/misc/macio/macio.h
@@ -80,8 +80,6 @@ struct MACIOIDEState {
uint32_t channel;
qemu_irq real_ide_irq;
qemu_irq real_dma_irq;
- qemu_irq ide_irq;
- qemu_irq dma_irq;
MemoryRegion mem;
IDEBus bus;
@@ -92,6 +90,11 @@ struct MACIOIDEState {
uint32_t irq_reg;
};
+#define MACIO_IDE_PMAC_NIRQS 2
+
+#define MACIO_IDE_PMAC_DMA_IRQ 0
+#define MACIO_IDE_PMAC_IDE_IRQ 1
+
void macio_ide_init_drives(MACIOIDEState *ide, DriveInfo **hd_table);
void macio_ide_register_dma(MACIOIDEState *ide);
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs
2024-06-28 16:03 [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs Mark Cave-Ayland
@ 2024-06-28 16:20 ` Philippe Mathieu-Daudé
2024-06-29 6:47 ` Akihiko Odaki
2024-07-01 15:00 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-06-28 16:20 UTC (permalink / raw)
To: Mark Cave-Ayland, qemu-devel, qemu-ppc, qemu-block, akihiko.odaki
On 28/6/24 18:03, Mark Cave-Ayland wrote:
> This prevents the IRQs from being leaked when the macio IDE device is used.
>
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> hw/ide/macio.c | 10 ++++++----
> include/hw/misc/macio/macio.h | 7 +++++--
> 2 files changed, 11 insertions(+), 6 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs
2024-06-28 16:03 [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs Mark Cave-Ayland
2024-06-28 16:20 ` Philippe Mathieu-Daudé
@ 2024-06-29 6:47 ` Akihiko Odaki
2024-07-01 15:00 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 4+ messages in thread
From: Akihiko Odaki @ 2024-06-29 6:47 UTC (permalink / raw)
To: Mark Cave-Ayland, qemu-devel, qemu-ppc, qemu-block
On 2024/06/29 1:03, Mark Cave-Ayland wrote:
> This prevents the IRQs from being leaked when the macio IDE device is used.
>
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs
2024-06-28 16:03 [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs Mark Cave-Ayland
2024-06-28 16:20 ` Philippe Mathieu-Daudé
2024-06-29 6:47 ` Akihiko Odaki
@ 2024-07-01 15:00 ` Philippe Mathieu-Daudé
2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-07-01 15:00 UTC (permalink / raw)
To: Mark Cave-Ayland, qemu-devel, qemu-ppc, qemu-block, akihiko.odaki
On 28/6/24 18:03, Mark Cave-Ayland wrote:
> This prevents the IRQs from being leaked when the macio IDE device is used.
>
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> hw/ide/macio.c | 10 ++++++----
> include/hw/misc/macio/macio.h | 7 +++++--
> 2 files changed, 11 insertions(+), 6 deletions(-)
Thanks, patch queued.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-01 15:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-28 16:03 [PATCH v2] hw/ide/macio.c: switch from using qemu_allocate_irq() to qdev input GPIOs Mark Cave-Ayland
2024-06-28 16:20 ` Philippe Mathieu-Daudé
2024-06-29 6:47 ` Akihiko Odaki
2024-07-01 15:00 ` Philippe Mathieu-Daudé
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).