[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 17/19] mac_newworld: Deprecate mac99 with G5 CPU
From: |
BALATON Zoltan |
Subject: |
[PATCH v4 17/19] mac_newworld: Deprecate mac99 with G5 CPU |
Date: |
Tue, 25 Oct 2022 18:44:52 +0200 (CEST) |
Besides resolving the confusing behaviour mentioned in previous commit
this might also allow unifying qemu-system-ppc and qemu-system-ppc64
in the future.
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
hw/ppc/mac_newworld.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/hw/ppc/mac_newworld.c b/hw/ppc/mac_newworld.c
index 7321ac925e..d6f504eef2 100644
--- a/hw/ppc/mac_newworld.c
+++ b/hw/ppc/mac_newworld.c
@@ -165,6 +165,12 @@ static void ppc_core99_init(MachineState *machine)
qemu_register_reset(ppc_core99_reset, cpu);
}
+ if (object_property_find(OBJECT(machine), "via")) {
+ if (PPC_INPUT(env) == PPC_FLAGS_INPUT_970) {
+ warn_report("mac99 with G5 CPU is deprecated, "
+ "use powermac7_3 instead");
+ }
+ }
/* allocate RAM */
if (machine->ram_size > 2 * GiB) {
error_report("RAM size more than 2 GiB is not supported");
--
2.30.4
- [PATCH v4 11/19] hw/ppc/mac.h: Move PROM and KERNEL defines to board code, (continued)
- [PATCH v4 11/19] hw/ppc/mac.h: Move PROM and KERNEL defines to board code, BALATON Zoltan, 2022/10/25
- [PATCH v4 10/19] hw/ppc/mac.h: Move grackle-pcihost type declaration out to a header, BALATON Zoltan, 2022/10/25
- [PATCH v4 13/19] mac_nvram: Use NVRAM_SIZE constant, BALATON Zoltan, 2022/10/25
- [PATCH v4 15/19] mac_newworld: Turn CORE99_VIA_CONFIG defines into an enum, BALATON Zoltan, 2022/10/25
- [PATCH v4 12/19] hw/ppc/mac.h: Rename to include/hw/nvram/mac_nvram.h, BALATON Zoltan, 2022/10/25
- [PATCH v4 16/19] mac_newworld: Add machine types for different mac99 configs, BALATON Zoltan, 2022/10/25
[PATCH v4 17/19] mac_newworld: Deprecate mac99 with G5 CPU,
BALATON Zoltan <=
[PATCH v4 19/19] mac_newworld: Document deprecation, BALATON Zoltan, 2022/10/25
[PATCH v4 18/19] mac_newworld: Deprecate mac99 "via" option, BALATON Zoltan, 2022/10/25
[PATCH v4 14/19] mac_{old|new}world: Code style fix adding missing braces to if-s, BALATON Zoltan, 2022/10/25
[PATCH v5 19/20] mac_newworld: Document deprecation, BALATON Zoltan, 2022/10/25
[PATCH v5 20/20] mac_{old, new}world: Pass MacOS VGA NDRV in card ROM instead of fw_cfg, BALATON Zoltan, 2022/10/25