[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 08/12] hw/hppa: Require at least SeaBIOS-hppa version 10
From: |
deller |
Subject: |
[PATCH 08/12] hw/hppa: Require at least SeaBIOS-hppa version 10 |
Date: |
Sat, 14 Oct 2023 21:57:15 +0200 |
From: Helge Deller <deller@gmx.de>
The new SeaBIOS-hppa version 10 includes initial support
for PA2.0 CPUs.
Signed-off-by: Helge Deller <deller@gmx.de>
---
hw/hppa/machine.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/hw/hppa/machine.c b/hw/hppa/machine.c
index cf28cb9586..c6d8deffcf 100644
--- a/hw/hppa/machine.c
+++ b/hw/hppa/machine.c
@@ -1,6 +1,8 @@
/*
* QEMU HPPA hardware system emulator.
- * Copyright 2018 Helge Deller <deller@gmx.de>
+ * (C) Copyright 2018-2023 Helge Deller <deller@gmx.de>
+ *
+ * This work is licensed under the GNU GPL license version 2 or later.
*/
#include "qemu/osdep.h"
@@ -29,7 +31,7 @@
#include "net/net.h"
#include "qemu/log.h"
-#define MIN_SEABIOS_HPPA_VERSION 6 /* require at least this fw version */
+#define MIN_SEABIOS_HPPA_VERSION 10 /* require at least this fw version */
#define HPA_POWER_BUTTON (FIRMWARE_END - 0x10)
@@ -95,9 +97,7 @@ static ISABus *hppa_isa_bus(void)
isa_bus = isa_bus_new(NULL, get_system_memory(), isa_region,
&error_abort);
- isa_irqs = i8259_init(isa_bus,
- /* qemu_allocate_irq(dino_set_isa_irq, s, 0)); */
- NULL);
+ isa_irqs = i8259_init(isa_bus, NULL);
isa_bus_register_input_irqs(isa_bus, isa_irqs);
return isa_bus;
--
2.41.0
- [PATCH 00/12] target/hppa: Add emulation of a C3700 HP-PARISC workstation, deller, 2023/10/14
- [PATCH 07/12] pci-host: Wire up new Astro/Elroy PCI bridge, deller, 2023/10/14
- [PATCH 02/12] pci_ids: Add PCI vendor ID for HP, deller, 2023/10/14
- [PATCH 08/12] hw/hppa: Require at least SeaBIOS-hppa version 10,
deller <=
- [PATCH 09/12] hw/hppa: Export machine name, BTLBs, power-button address via fw_cfg, deller, 2023/10/14
- [PATCH 04/12] MAINTAINERS: Add Astro PCI host for hppa machines, deller, 2023/10/14
- [PATCH 06/12] tulip: Use the HP PCI vendor ID instead of number, deller, 2023/10/14
- [PATCH 10/12] hw/hppa: Provide RTC and DebugOutputPort on CPU #0, deller, 2023/10/14
- [PATCH 12/12] hw/hppa: Add new HP C3700 machine, deller, 2023/10/14
- [PATCH 03/12] hw/pci-host: Add Astro system bus adapter found on PA-RISC machines, deller, 2023/10/14
- [PATCH 05/12] lasips2: LASI PS/2 devices are not user-createable, deller, 2023/10/14