qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/11] HP-PARISC 715 machine with NCR710 SCSI chip
@ 2025-10-25 16:18 deller
  2025-10-25 16:18 ` [PATCH v2 02/11] lasi_ncr710: Add LASI wrapper for NCR 53c710 " deller
                   ` (9 more replies)
  0 siblings, 10 replies; 19+ messages in thread
From: deller @ 2025-10-25 16:18 UTC (permalink / raw)
  To: qemu-devel, Richard Henderson
  Cc: Fam Zheng, Philippe Mathieu-Daudé, Soumyajyotii Ssarkar,
	Helge Deller, Paolo Bonzini

From: Helge Deller <deller@gmx.de>

Second round for review:
- previous big SCSI patch has been splitted up -> now patches #2 and #3
- Soumyajyotii has heavily cleaned up the SCSI driver (patches #2 & #3)
- I have reviewed the SCSI patches (#2 and #3), of course additional review
  is welcome.
- added R-b tags to patches #4 - #7
- new review needed for patches #8 & patch #9, both changed according to Richard's feedback.

---------

Additional generic info:

This patch series adds a new emulation for a HP PA-RISC 715/64 model,
as descrived here:
https://www.openpa.net/systems/hp-9000_715.html.

That machine has no PCI bus and instead uses a "LASI" chip which has built-in
NCR 53c710 SCSI and i82596 network chips. Compared to the other already
emulated machines B160L and C3700, this machine should be able to support older
operating systems like HP-UX 9 as well.

The QEMU project participated in the Google Summer of Code 2025 program by
"Implementing LASI Network Card and NCR 710 SCSI Controller Device Models", and
Soumyajyotii Ssarkar stepped up to develop those drivers.

This patch series includes the code for the NCR710 SCSI controller,
the network code will follow in later patch series.

Helge & Soumyajyotii

Helge Deller (7):
  target/hppa: Update SeaBIOS-hppa to version 19
  hw/hppa: Fix firmware end address for LASI chip
  hw/hppa: Fix interrupt of LASI parallel port
  hw/hppa: Add NCR 710 SCSI driver to LASI chip Kconfig entry
  hw/hppa: PCI devices depend on availability of PCI bus
  hw/hppa: Require SeaBIOS version 19 for 715 machine
  hw/hppa: Add 715 machine type including NCR710 SCSI

Soumyajyotii Ssarkar (4):
  lasi_ncr710: Add LASI wrapper for NCR 53c710 SCSI chip
  ncr710: Add driver for the NCR 53c710 SCSI chip
  lasi: Forward LASI SCSI ports to NCR 53c710 driver
  hw/scsi: Add config option for new ncr710 driver

 MAINTAINERS                 |    2 +
 hw/hppa/Kconfig             |    2 -
 hw/hppa/hppa_hardware.h     |    3 +-
 hw/hppa/machine.c           |  127 +-
 hw/misc/Kconfig             |    5 +
 hw/misc/lasi.c              |    6 +-
 hw/scsi/Kconfig             |    5 +
 hw/scsi/lasi_ncr710.c       |  282 ++++
 hw/scsi/lasi_ncr710.h       |   57 +
 hw/scsi/meson.build         |    1 +
 hw/scsi/ncr53c710.c         | 2432 +++++++++++++++++++++++++++++++++++
 hw/scsi/ncr53c710.h         |  246 ++++
 hw/scsi/trace-events        |   29 +
 include/hw/misc/lasi.h      |    2 +
 pc-bios/hppa-firmware.img   |  Bin 167644 -> 630056 bytes
 pc-bios/hppa-firmware64.img |  Bin 206104 -> 699872 bytes
 roms/seabios-hppa           |    2 +-
 17 files changed, 3179 insertions(+), 22 deletions(-)
 create mode 100644 hw/scsi/lasi_ncr710.c
 create mode 100644 hw/scsi/lasi_ncr710.h
 create mode 100644 hw/scsi/ncr53c710.c
 create mode 100644 hw/scsi/ncr53c710.h

-- 
2.51.0



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

end of thread, other threads:[~2025-10-25 17:07 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-25 16:18 [PATCH v2 00/11] HP-PARISC 715 machine with NCR710 SCSI chip deller
2025-10-25 16:18 ` [PATCH v2 02/11] lasi_ncr710: Add LASI wrapper for NCR 53c710 " deller
2025-10-25 16:18 ` [PATCH v2 03/11] ncr710: Add driver for the " deller
2025-10-25 16:59   ` BALATON Zoltan
2025-10-25 17:07     ` Helge Deller
2025-10-25 16:18 ` [PATCH v2 04/11] lasi: Forward LASI SCSI ports to NCR 53c710 driver deller
2025-10-25 16:18 ` [PATCH v2 05/11] hw/scsi: Add config option for new ncr710 driver deller
2025-10-25 16:18 ` [PATCH v2 06/11] hw/hppa: Fix firmware end address for LASI chip deller
2025-10-25 16:18 ` [PATCH v2 07/11] hw/hppa: Fix interrupt of LASI parallel port deller
2025-10-25 16:21   ` Philippe Mathieu-Daudé
2025-10-25 16:18 ` [PATCH v2 08/11] hw/hppa: Add NCR 710 SCSI driver to LASI chip Kconfig entry deller
2025-10-25 16:18 ` [PATCH v2 09/11] hw/hppa: PCI devices depend on availability of PCI bus deller
2025-10-25 16:23   ` Philippe Mathieu-Daudé
2025-10-25 16:57   ` Richard Henderson
2025-10-25 16:19 ` [PATCH v2 10/11] hw/hppa: Require SeaBIOS version 19 for 715 machine deller
2025-10-25 16:19 ` [PATCH v2 11/11] hw/hppa: Add 715 machine type including NCR710 SCSI deller
2025-10-25 16:25   ` Philippe Mathieu-Daudé
2025-10-25 16:32     ` Helge Deller
2025-10-25 16:48       ` [PATCH v3 " Helge Deller

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