Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-03-01 Thread Bernhard Beschow
Am 1. März 2023 14:20:54 UTC schrieb Mark Cave-Ayland : >On 23/02/2023 20:20, Bernhard Beschow wrote: > >> The real VIA south bridges implement a PCI IRQ router which is configured >> by the BIOS or the OS. In order to respect these configurations, QEMU >> needs to implement it as well. >> >>

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-03-01 Thread Mark Cave-Ayland
On 23/02/2023 20:20, Bernhard Beschow wrote: The real VIA south bridges implement a PCI IRQ router which is configured by the BIOS or the OS. In order to respect these configurations, QEMU needs to implement it as well. Note: The implementation was taken from piix4_set_irq() in hw/isa/piix4.

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-25 Thread Bernhard Beschow
Am 25. Februar 2023 13:12:05 UTC schrieb BALATON Zoltan : >On Fri, 24 Feb 2023, Bernhard Beschow wrote: >> I can only take the three VT82xx patches as I proposed since I don't know >> the Pegasos2 board as well as you do and I don't want to iterate on any >> review comments for the other

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-25 Thread BALATON Zoltan
On Fri, 24 Feb 2023, Bernhard Beschow wrote: I can only take the three VT82xx patches as I proposed since I don't know the Pegasos2 board as well as you do and I don't want to iterate on any review comments for the other patches. I'll send my series soonish. Does soonish means still today?

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-23 Thread Bernhard Beschow
Am 23. Februar 2023 23:47:58 UTC schrieb BALATON Zoltan : >On Thu, 23 Feb 2023, Bernhard Beschow wrote: >> Am 23. Februar 2023 21:11:23 UTC schrieb BALATON Zoltan : >>> On Thu, 23 Feb 2023, Bernhard Beschow wrote: The real VIA south bridges implement a PCI IRQ router which is configured

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-23 Thread BALATON Zoltan
On Fri, 24 Feb 2023, BALATON Zoltan wrote: On Thu, 23 Feb 2023, Bernhard Beschow wrote: Am 23. Februar 2023 21:11:23 UTC schrieb BALATON Zoltan : On Thu, 23 Feb 2023, Bernhard Beschow wrote: The real VIA south bridges implement a PCI IRQ router which is configured by the BIOS or the OS. In

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-23 Thread BALATON Zoltan
On Thu, 23 Feb 2023, Bernhard Beschow wrote: Am 23. Februar 2023 21:11:23 UTC schrieb BALATON Zoltan : On Thu, 23 Feb 2023, Bernhard Beschow wrote: The real VIA south bridges implement a PCI IRQ router which is configured by the BIOS or the OS. In order to respect these configurations, QEMU

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-23 Thread BALATON Zoltan
On Thu, 23 Feb 2023, BALATON Zoltan wrote: On Thu, 23 Feb 2023, Bernhard Beschow wrote: The real VIA south bridges implement a PCI IRQ router which is configured by the BIOS or the OS. In order to respect these configurations, QEMU needs to implement it as well. Note: The implementation was

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-23 Thread Bernhard Beschow
Am 23. Februar 2023 21:11:23 UTC schrieb BALATON Zoltan : >On Thu, 23 Feb 2023, Bernhard Beschow wrote: >> The real VIA south bridges implement a PCI IRQ router which is configured >> by the BIOS or the OS. In order to respect these configurations, QEMU >> needs to implement it as well. >> >>

Re: [PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-23 Thread BALATON Zoltan
On Thu, 23 Feb 2023, Bernhard Beschow wrote: The real VIA south bridges implement a PCI IRQ router which is configured by the BIOS or the OS. In order to respect these configurations, QEMU needs to implement it as well. Note: The implementation was taken from piix4_set_irq() in hw/isa/piix4.

[PATCH 2/5] hw/isa/vt82c686: Implement PCI IRQ routing

2023-02-23 Thread Bernhard Beschow
The real VIA south bridges implement a PCI IRQ router which is configured by the BIOS or the OS. In order to respect these configurations, QEMU needs to implement it as well. Note: The implementation was taken from piix4_set_irq() in hw/isa/piix4. Signed-off-by: Bernhard Beschow ---