From nobody Fri Apr 4 21:41:28 2025 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=eik.bme.hu Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1740246839420131.5037355581145; Sat, 22 Feb 2025 09:53:59 -0800 (PST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tltgC-0000e4-GD; Sat, 22 Feb 2025 12:52:44 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tltg4-0000aw-ON; Sat, 22 Feb 2025 12:52:36 -0500 Received: from zero.eik.bme.hu ([2001:738:2001:2001::2001]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tltg2-0008Fp-SS; Sat, 22 Feb 2025 12:52:36 -0500 Received: from zero.eik.bme.hu (localhost [127.0.0.1]) by zero.eik.bme.hu (Postfix) with ESMTP id 6D7B34E6046; Sat, 22 Feb 2025 18:52:33 +0100 (CET) Received: from zero.eik.bme.hu ([127.0.0.1]) by zero.eik.bme.hu (zero.eik.bme.hu [127.0.0.1]) (amavisd-new, port 10028) with ESMTP id yyZb_5BG6OT1; Sat, 22 Feb 2025 18:52:31 +0100 (CET) Received: by zero.eik.bme.hu (Postfix, from userid 432) id 377E24E6045; Sat, 22 Feb 2025 18:52:31 +0100 (CET) X-Virus-Scanned: amavisd-new at eik.bme.hu Message-Id: <8a5529e445844a34cd4efb25de12ea0d9934186c.1740243918.git.balaton@eik.bme.hu> In-Reply-To: References: From: BALATON Zoltan Subject: [PATCH 4/4] ppc/amigaone: Add kernel and initrd support To: qemu-devel@nongnu.org, qemu-ppc@nongnu.org Cc: Nicholas Piggin Date: Sat, 22 Feb 2025 18:52:31 +0100 (CET) Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=2001:738:2001:2001::2001; envelope-from=balaton@eik.bme.hu; helo=zero.eik.bme.hu X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: qemu-devel-bounces+importer=patchew.org@nongnu.org X-ZM-MESSAGEID: 1740246841975019000 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Add support for -kernel, -initrd and -append command line options. Signed-off-by: BALATON Zoltan Reviewed-by: Nicholas Piggin --- hw/ppc/amigaone.c | 113 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 112 insertions(+), 1 deletion(-) diff --git a/hw/ppc/amigaone.c b/hw/ppc/amigaone.c index 35e4075cc3..94682de1c7 100644 --- a/hw/ppc/amigaone.c +++ b/hw/ppc/amigaone.c @@ -25,11 +25,14 @@ #include "system/qtest.h" #include "system/reset.h" #include "kvm_ppc.h" +#include "elf.h" =20 #include /* for crc32 */ =20 #define BUS_FREQ_HZ 100000000 =20 +#define INITRD_MIN_ADDR 0x600000 + /* * Firmware binary available at * https://www.hyperion-entertainment.com/index.php/downloads?view=3Dfiles= &parent=3D28 @@ -181,12 +184,68 @@ static const TypeInfo nvram_types[] =3D { }; DEFINE_TYPES(nvram_types) =20 +struct boot_info { + hwaddr entry; + hwaddr stack; + hwaddr bd_info; + hwaddr initrd_start; + hwaddr initrd_end; + hwaddr cmdline_start; + hwaddr cmdline_end; +}; + +/* Board info struct from U-Boot */ +struct bd_info { + uint32_t bi_memstart; + uint32_t bi_memsize; + uint32_t bi_flashstart; + uint32_t bi_flashsize; + uint32_t bi_flashoffset; + uint32_t bi_sramstart; + uint32_t bi_sramsize; + uint32_t bi_bootflags; + uint32_t bi_ip_addr; + uint8_t bi_enetaddr[6]; + uint16_t bi_ethspeed; + uint32_t bi_intfreq; + uint32_t bi_busfreq; + uint32_t bi_baudrate; +} QEMU_PACKED; + +static void create_bd_info(hwaddr addr, ram_addr_t ram_size) +{ + struct bd_info *bd =3D g_new0(struct bd_info, 1); + + bd->bi_memsize =3D cpu_to_be32(ram_size); + bd->bi_flashstart =3D cpu_to_be32(PROM_ADDR); + bd->bi_flashsize =3D cpu_to_be32(1); /* match what U-Boot detects */ + bd->bi_bootflags =3D cpu_to_be32(1); + bd->bi_intfreq =3D cpu_to_be32(11.5 * BUS_FREQ_HZ); + bd->bi_busfreq =3D cpu_to_be32(BUS_FREQ_HZ); + bd->bi_baudrate =3D cpu_to_be32(115200); + + cpu_physical_memory_write(addr, bd, sizeof(*bd)); +} + static void amigaone_cpu_reset(void *opaque) { PowerPCCPU *cpu =3D opaque; + CPUPPCState *env =3D &cpu->env; =20 cpu_reset(CPU(cpu)); - cpu_ppc_tb_reset(&cpu->env); + if (env->load_info) { + struct boot_info *bi =3D env->load_info; + + env->gpr[1] =3D bi->stack; + env->gpr[2] =3D 1024; + env->gpr[3] =3D bi->bd_info; + env->gpr[4] =3D bi->initrd_start; + env->gpr[5] =3D bi->initrd_end; + env->gpr[6] =3D bi->cmdline_start; + env->gpr[7] =3D bi->cmdline_end; + env->nip =3D bi->entry; + } + cpu_ppc_tb_reset(env); } =20 static void fix_spd_data(uint8_t *spd) @@ -208,6 +267,8 @@ static void amigaone_init(MachineState *machine) I2CBus *i2c_bus; uint8_t *spd_data; DriveInfo *di; + hwaddr loadaddr; + struct boot_info *bi =3D NULL; =20 /* init CPU */ cpu =3D POWERPC_CPU(cpu_create(machine->cpu_type)); @@ -304,6 +365,56 @@ static void amigaone_init(MachineState *machine) } pci_ide_create_devs(PCI_DEVICE(object_resolve_path_component(via, "ide= "))); pci_vga_init(pci_bus); + + if (!machine->kernel_filename) { + return; + } + + /* handle -kernel, -initrd, -append options and emulate U-Boot */ + bi =3D g_new0(struct boot_info, 1); + cpu->env.load_info =3D bi; + + loadaddr =3D MIN(machine->ram_size, 256 * MiB); + bi->bd_info =3D loadaddr - 8 * MiB; + create_bd_info(bi->bd_info, machine->ram_size); + bi->stack =3D bi->bd_info - 64 * KiB - 8; + + if (machine->kernel_cmdline && machine->kernel_cmdline[0]) { + size_t len =3D strlen(machine->kernel_cmdline); + + loadaddr =3D bi->bd_info + 1 * MiB; + cpu_physical_memory_write(loadaddr, machine->kernel_cmdline, len += 1); + bi->cmdline_start =3D loadaddr; + bi->cmdline_end =3D loadaddr + len + 1; /* including terminating '= \0' */ + } + + sz =3D load_elf(machine->kernel_filename, NULL, NULL, NULL, + &bi->entry, &loadaddr, NULL, NULL, + ELFDATA2MSB, PPC_ELF_MACHINE, 0, 0); + if (sz <=3D 0) { + sz =3D load_uimage(machine->kernel_filename, &bi->entry, &loadaddr, + NULL, NULL, NULL); + } + if (sz <=3D 0) { + error_report("Could not load kernel '%s'", + machine->kernel_filename); + exit(1); + } + loadaddr +=3D sz; + + if (machine->initrd_filename) { + loadaddr =3D ROUND_UP(loadaddr + 4 * MiB, 4 * KiB); + loadaddr =3D MAX(loadaddr, INITRD_MIN_ADDR); + sz =3D load_image_targphys(machine->initrd_filename, loadaddr, + bi->bd_info - loadaddr); + if (sz <=3D 0) { + error_report("Could not load initrd '%s'", + machine->initrd_filename); + exit(1); + } + bi->initrd_start =3D loadaddr; + bi->initrd_end =3D loadaddr + sz; + } } =20 static void amigaone_machine_init(MachineClass *mc) --=20 2.30.9