qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] Pegasos2 fixes and audio output support
@ 2023-02-21 18:44 BALATON Zoltan
  2023-02-21 18:44 ` [PATCH 1/5] hw/isa/vt82c686: Implement interrupt routing in via_isa_set_irq BALATON Zoltan
                   ` (5 more replies)
  0 siblings, 6 replies; 43+ messages in thread
From: BALATON Zoltan @ 2023-02-21 18:44 UTC (permalink / raw)
  To: qemu-devel, qemu-ppc
  Cc: Gerd Hoffmann, Daniel Henrique Barboza, Bernhard Beschow, philmd

This series fixes PCI interrupts on the ppc/pegasos2 machine and adds
partial implementation of the via-ac97 sound part enough to get audio
output. I'd like this to be merged for QEMU 8.0.

Regards,
BALATON Zoltan

BALATON Zoltan (5):
  hw/isa/vt82c686: Implement interrupt routing in via_isa_set_irq
  hw/isa/vt82c686: Implement PIRQ pins
  hw/ppc/pegasos2: Fix PCI interrupt routing
  hw/audio/ac97: Split off some definitions to a header
  hw/audio/via-ac97: Basic implementation of audio playback

 hw/audio/ac97.c            |  43 +---
 hw/audio/ac97.h            |  65 ++++++
 hw/audio/trace-events      |   6 +
 hw/audio/via-ac97.c        | 436 ++++++++++++++++++++++++++++++++++++-
 hw/ide/via.c               |   2 +-
 hw/isa/vt82c686.c          |  61 +++++-
 hw/pci-host/mv64361.c      |   4 -
 hw/ppc/pegasos2.c          |  26 ++-
 hw/usb/vt82c686-uhci-pci.c |   5 +-
 include/hw/isa/vt82c686.h  |  39 +++-
 10 files changed, 626 insertions(+), 61 deletions(-)
 create mode 100644 hw/audio/ac97.h

-- 
2.30.7



^ permalink raw reply	[flat|nested] 43+ messages in thread
* [PATCH 0/5] VT82xx PCI fixes and audio output support
@ 2023-02-23 20:20 Bernhard Beschow
  2023-02-23 20:20 ` [PATCH 5/5] hw/audio/via-ac97: Basic implementation of audio playback Bernhard Beschow
  0 siblings, 1 reply; 43+ messages in thread
From: Bernhard Beschow @ 2023-02-23 20:20 UTC (permalink / raw)
  To: qemu-devel
  Cc: Philippe Mathieu-Daudé, Huacai Chen, qemu-ppc, Gerd Hoffmann,
	Jiaxun Yang, BALATON Zoltan, Bernhard Beschow

This series is v2 of [1] ("[PATCH 0/5] Pegasos2 fixes and audio output
support"). It makes PCI interrupt routing on the VIA south bridges more
compliant to the PCI specification and adds partial implementation of the
via-ac97 sound part enough to get audio output working on the ppc/pegasos2
machine.

All credits for implementing AC'97 support go to Zoltan who would like this
series to be merged for QEMU 8.0.

v2:
* Rework PCI IRQ routing in the VIA south bridges
* Use pci_set_irq() rather than via_isa_set_irq() in via-ac97

Testing done:
* `make check`
* `qemu-system-ppc -M pegasos2 -rtc base=localtime -device
  ati-vga,guest_hwcursor=true,romfile="" -cdrom morphos-3.17.iso -kernel
  morphos-3.17/boot.img`
  -> There is a nice sound when the Desktop becomes visible.
* `qemu-system-ppc -M pegasos2 -bios pegasos2.rom -rtc base=localtime -device
  ati-vga,guest_hwcursor=true,romfile="" -cdrom morphos-3.17.iso`
  -> There is a nice sound when the Desktop becomes visible.
* `qemu-system-ppc -M pegasos2 -bios pegasos2.rom -rtc base=localtime -device
  ati-vga,guest_hwcursor=true,romfile="" -cdrom morphos-3.17.iso -device
  usb-mouse -device usb-kbd`
  -> The machine hangs when audio is supposed to play while the mouse is moved.
     This behavior can also be reproduced in v1.

[1] https://lore.kernel.org/qemu-devel/cover.1677004414.git.balaton@eik.bme.hu/

BALATON Zoltan (2):
  hw/audio/ac97: Split off some definitions to a header
  hw/audio/via-ac97: Basic implementation of audio playback

Bernhard Beschow (3):
  hw/ppc/pegasos2: Initialize VT8231 PCI IRQ router
  hw/isa/vt82c686: Implement PCI IRQ routing
  hw/usb/vt82c686-uhci-pci: Use PCI IRQ routing

 hw/audio/ac97.h            |  65 ++++++
 include/hw/isa/vt82c686.h  |  25 +++
 hw/audio/ac97.c            |  43 +---
 hw/audio/via-ac97.c        | 436 ++++++++++++++++++++++++++++++++++++-
 hw/isa/vt82c686.c          |  46 +++-
 hw/ppc/pegasos2.c          |   6 +
 hw/usb/vt82c686-uhci-pci.c |  12 -
 hw/audio/trace-events      |   6 +
 8 files changed, 580 insertions(+), 59 deletions(-)
 create mode 100644 hw/audio/ac97.h

-- 
2.39.2



^ permalink raw reply	[flat|nested] 43+ messages in thread

end of thread, other threads:[~2023-03-01 21:06 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-21 18:44 [PATCH 0/5] Pegasos2 fixes and audio output support BALATON Zoltan
2023-02-21 18:44 ` [PATCH 1/5] hw/isa/vt82c686: Implement interrupt routing in via_isa_set_irq BALATON Zoltan
2023-02-21 18:44 ` [PATCH 2/5] hw/isa/vt82c686: Implement PIRQ pins BALATON Zoltan
2023-02-21 18:44 ` [PATCH 3/5] hw/ppc/pegasos2: Fix PCI interrupt routing BALATON Zoltan
2023-02-24 17:04   ` Daniel Henrique Barboza
2023-02-25 19:34   ` Philippe Mathieu-Daudé
2023-02-25 20:19     ` BALATON Zoltan
2023-02-26 22:22     ` BALATON Zoltan
2023-02-21 18:44 ` [PATCH 4/5] hw/audio/ac97: Split off some definitions to a header BALATON Zoltan
2023-02-25 19:35   ` Philippe Mathieu-Daudé
2023-02-26 22:17     ` BALATON Zoltan
2023-02-21 18:44 ` [PATCH 5/5] hw/audio/via-ac97: Basic implementation of audio playback BALATON Zoltan
2023-02-23 19:40   ` Volker Rümelin
2023-02-24  9:53     ` Bernhard Beschow
2023-02-24 12:26       ` BALATON Zoltan
2023-02-24 13:05       ` BALATON Zoltan
2023-02-24 17:14         ` Daniel Henrique Barboza
2023-02-24 21:08           ` BALATON Zoltan
2023-02-25  8:58             ` Daniel Henrique Barboza
2023-02-22 15:38 ` [PATCH 0/5] Pegasos2 fixes and audio output support Bernhard Beschow
2023-02-22 18:56   ` Bernhard Beschow
2023-02-22 19:25     ` BALATON Zoltan
2023-02-22 20:59       ` Bernhard Beschow
2023-02-22 21:12         ` BALATON Zoltan
2023-02-22 22:20           ` Bernhard Beschow
2023-02-22 23:00             ` BALATON Zoltan
2023-02-23  9:13               ` Bernhard Beschow
2023-02-23 12:33                 ` BALATON Zoltan
2023-02-23 13:17                   ` Bernhard Beschow
2023-02-23 14:23                     ` BALATON Zoltan
2023-02-23 20:28                       ` Bernhard Beschow
2023-03-01 13:49                 ` Mark Cave-Ayland
2023-03-01 19:24                   ` BALATON Zoltan
2023-03-01 20:53                     ` Bernhard Beschow
2023-03-01 21:05                       ` BALATON Zoltan
2023-03-01 13:42           ` Mark Cave-Ayland
2023-03-01 19:21             ` BALATON Zoltan
2023-02-22 22:23         ` BALATON Zoltan
2023-02-23  0:43           ` BALATON Zoltan
2023-03-01 13:47             ` Mark Cave-Ayland
  -- strict thread matches above, loose matches on Subject: below --
2023-02-23 20:20 [PATCH 0/5] VT82xx PCI " Bernhard Beschow
2023-02-23 20:20 ` [PATCH 5/5] hw/audio/via-ac97: Basic implementation of audio playback Bernhard Beschow
2023-03-01 14:25   ` Mark Cave-Ayland
2023-03-01 16:09     ` BALATON Zoltan

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).