1ae0bfb79SBlue Swirl 23cbee15bSj_mayer /* 34d7ca41eSaurel32 * QEMU OldWorld PowerMac (currently ~G3 Beige) hardware System Emulator 43cbee15bSj_mayer * 53cbee15bSj_mayer * Copyright (c) 2004-2007 Fabrice Bellard 63cbee15bSj_mayer * Copyright (c) 2007 Jocelyn Mayer 73cbee15bSj_mayer * 83cbee15bSj_mayer * Permission is hereby granted, free of charge, to any person obtaining a copy 93cbee15bSj_mayer * of this software and associated documentation files (the "Software"), to deal 103cbee15bSj_mayer * in the Software without restriction, including without limitation the rights 113cbee15bSj_mayer * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 123cbee15bSj_mayer * copies of the Software, and to permit persons to whom the Software is 133cbee15bSj_mayer * furnished to do so, subject to the following conditions: 143cbee15bSj_mayer * 153cbee15bSj_mayer * The above copyright notice and this permission notice shall be included in 163cbee15bSj_mayer * all copies or substantial portions of the Software. 173cbee15bSj_mayer * 183cbee15bSj_mayer * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 193cbee15bSj_mayer * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 203cbee15bSj_mayer * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 213cbee15bSj_mayer * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 223cbee15bSj_mayer * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 233cbee15bSj_mayer * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 243cbee15bSj_mayer * THE SOFTWARE. 253cbee15bSj_mayer */ 26a8d25326SMarkus Armbruster 270d75590dSPeter Maydell #include "qemu/osdep.h" 282c65db5eSPaolo Bonzini #include "qemu/datadir.h" 29ab3dd749SPhilippe Mathieu-Daudé #include "qemu/units.h" 30da34e65cSMarkus Armbruster #include "qapi/error.h" 310d09e41aSPaolo Bonzini #include "hw/ppc/ppc.h" 32a27bd6c7SMarkus Armbruster #include "hw/qdev-properties.h" 33cfb47bfaSBALATON Zoltan #include "hw/boards.h" 340d09e41aSPaolo Bonzini #include "hw/input/adb.h" 3532cad1ffSPhilippe Mathieu-Daudé #include "system/system.h" 361422e32dSPaolo Bonzini #include "net/net.h" 370d09e41aSPaolo Bonzini #include "hw/isa/isa.h" 38baec1910SAndreas Färber #include "hw/pci/pci.h" 39a773e64aSMark Cave-Ayland #include "hw/pci/pci_host.h" 4087e5a4f8SBALATON Zoltan #include "hw/pci-host/grackle.h" 410d09e41aSPaolo Bonzini #include "hw/nvram/fw_cfg.h" 420d09e41aSPaolo Bonzini #include "hw/char/escc.h" 43e1218e48SMark Cave-Ayland #include "hw/misc/macio/macio.h" 44baec1910SAndreas Färber #include "hw/loader.h" 45bbcc635fSMark Cave-Ayland #include "hw/fw-path-provider.h" 46ca20cf32SBlue Swirl #include "elf.h" 47c525436eSMarkus Armbruster #include "qemu/error-report.h" 4832cad1ffSPhilippe Mathieu-Daudé #include "system/kvm.h" 4932cad1ffSPhilippe Mathieu-Daudé #include "system/reset.h" 50dc333cd6SAlexander Graf #include "kvm_ppc.h" 513cbee15bSj_mayer 52e4bcb14cSths #define MAX_IDE_BUS 2 53271dd5e0Sblueswir1 #define CFG_ADDR 0xf0000510 54536d8cdaSAlexander Graf #define TBFREQ 16600000UL 559d1c1283SBALATON Zoltan #define CLOCKFREQ 266000000UL 569d1c1283SBALATON Zoltan #define BUSFREQ 66000000UL 57271dd5e0Sblueswir1 58b50de5cdSMark Cave-Ayland #define NDRV_VGA_FILENAME "qemu_vga.ndrv" 59b50de5cdSMark Cave-Ayland 603d0031c1SBALATON Zoltan #define PROM_FILENAME "openbios-ppc" 61464c73e8SBALATON Zoltan #define PROM_BASE 0xffc00000 62464c73e8SBALATON Zoltan #define PROM_SIZE (4 * MiB) 63a773e64aSMark Cave-Ayland 643d0031c1SBALATON Zoltan #define KERNEL_LOAD_ADDR 0x01000000 653d0031c1SBALATON Zoltan #define KERNEL_GAP 0x00100000 663d0031c1SBALATON Zoltan 673d0031c1SBALATON Zoltan #define GRACKLE_BASE 0xfec00000 683d0031c1SBALATON Zoltan 69ddcd5531SGonglei static void fw_cfg_boot_set(void *opaque, const char *boot_device, 70ddcd5531SGonglei Error **errp) 71513f789fSblueswir1 { 7248779e50SGabriel L. Somlo fw_cfg_modify_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]); 73513f789fSblueswir1 } 74513f789fSblueswir1 75409dbce5SAurelien Jarno static uint64_t translate_kernel_address(void *opaque, uint64_t addr) 76409dbce5SAurelien Jarno { 77409dbce5SAurelien Jarno return (addr & 0x0fffffff) + KERNEL_LOAD_ADDR; 78409dbce5SAurelien Jarno } 79409dbce5SAurelien Jarno 801bba0dc9SAndreas Färber static void ppc_heathrow_reset(void *opaque) 811bba0dc9SAndreas Färber { 82cd79664fSAndreas Färber PowerPCCPU *cpu = opaque; 831bba0dc9SAndreas Färber 8430d0647bSNicholas Piggin cpu_ppc_tb_reset(&cpu->env); 85cd79664fSAndreas Färber cpu_reset(CPU(cpu)); 861bba0dc9SAndreas Färber } 871bba0dc9SAndreas Färber 883ef96221SMarcel Apfelbaum static void ppc_heathrow_init(MachineState *machine) 893cbee15bSj_mayer { 90cd7b9498SPaolo Bonzini const char *bios_name = machine->firmware ?: PROM_FILENAME; 91053b7086SThomas Huth MachineClass *mc = MACHINE_GET_CLASS(machine); 9272c33dd7SAndreas Färber PowerPCCPU *cpu = NULL; 93e2684c0bSAndreas Färber CPUPPCState *env = NULL; 945cea8590SPaul Brook char *filename; 956120dc8dSBALATON Zoltan int i, bios_size = -1; 96c92bb2c7SAvi Kivity MemoryRegion *bios = g_new(MemoryRegion, 1); 9794c92e1aSBALATON Zoltan uint64_t bios_addr; 986120dc8dSBALATON Zoltan uint32_t kernel_base = 0, initrd_base = 0, cmdline_base = 0; 996120dc8dSBALATON Zoltan int32_t kernel_size = 0, initrd_size = 0; 1003cbee15bSj_mayer PCIBus *pci_bus; 10118e0383bSBALATON Zoltan Object *macio; 10207a7484eSAndreas Färber MACIOIDEState *macio_ide; 103a773e64aSMark Cave-Ayland SysBusDevice *s; 104370022ceSMark Cave-Ayland DeviceState *dev, *pic_dev, *grackle_dev; 105293c867dSAndreas Färber BusState *adb_bus; 106513f789fSblueswir1 uint16_t ppc_boot_device; 1075df3eb4dSBALATON Zoltan DriveInfo *dinfo, *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; 108271dd5e0Sblueswir1 void *fw_cfg; 1096b924abeSBALATON Zoltan uint64_t tbfreq = kvm_enabled() ? kvmppc_get_tbfreq() : TBFREQ; 1103cbee15bSj_mayer 1113cbee15bSj_mayer /* init CPUs */ 11294c92e1aSBALATON Zoltan for (i = 0; i < machine->smp.cpus; i++) { 113f4c6604eSIgor Mammedov cpu = POWERPC_CPU(cpu_create(machine->cpu_type)); 11472c33dd7SAndreas Färber env = &cpu->env; 11572c33dd7SAndreas Färber 116b0fb43d8Saurel32 /* Set time-base frequency to 16.6 Mhz */ 117536d8cdaSAlexander Graf cpu_ppc_tb_init(env, TBFREQ); 118cd79664fSAndreas Färber qemu_register_reset(ppc_heathrow_reset, cpu); 1193cbee15bSj_mayer } 1203cbee15bSj_mayer 1213cbee15bSj_mayer /* allocate RAM */ 12294c92e1aSBALATON Zoltan if (machine->ram_size > 2047 * MiB) { 123ab3dd749SPhilippe Mathieu-Daudé error_report("Too much memory for this machine: %" PRId64 " MB, " 12494c92e1aSBALATON Zoltan "maximum 2047 MB", machine->ram_size / MiB); 1256b4079f8Saurel32 exit(1); 1266b4079f8Saurel32 } 1276b4079f8Saurel32 128c3481ab0SBALATON Zoltan memory_region_add_subregion(get_system_memory(), 0, machine->ram); 129a748ab6dSaurel32 130464c73e8SBALATON Zoltan /* allocate and load firmware ROM */ 131464c73e8SBALATON Zoltan memory_region_init_rom(bios, NULL, "ppc_heathrow.bios", PROM_SIZE, 132f8ed85acSMarkus Armbruster &error_fatal); 133c3481ab0SBALATON Zoltan memory_region_add_subregion(get_system_memory(), PROM_BASE, bios); 134e206ad48SHu Tao 1355cea8590SPaul Brook filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); 1365cea8590SPaul Brook if (filename) { 137464c73e8SBALATON Zoltan /* Load OpenBIOS (ELF) */ 138464c73e8SBALATON Zoltan bios_size = load_elf(filename, NULL, NULL, NULL, NULL, &bios_addr, 139adc1a4a2SPhilippe Mathieu-Daudé NULL, NULL, ELFDATA2MSB, PPC_ELF_MACHINE, 0, 0); 140464c73e8SBALATON Zoltan /* Unfortunately, load_elf sign-extends reading elf32 */ 141464c73e8SBALATON Zoltan bios_addr = (uint32_t)bios_addr; 142464c73e8SBALATON Zoltan 143464c73e8SBALATON Zoltan if (bios_size <= 0) { 144b8df3255SBALATON Zoltan /* or if could not load ELF try loading a binary ROM image */ 145464c73e8SBALATON Zoltan bios_size = load_image_targphys(filename, PROM_BASE, PROM_SIZE); 146464c73e8SBALATON Zoltan bios_addr = PROM_BASE; 147464c73e8SBALATON Zoltan } 1487267c094SAnthony Liguori g_free(filename); 1495cea8590SPaul Brook } 150464c73e8SBALATON Zoltan if (bios_size < 0 || bios_addr - PROM_BASE + bios_size > PROM_SIZE) { 151c525436eSMarkus Armbruster error_report("could not load PowerPC bios '%s'", bios_name); 1523cbee15bSj_mayer exit(1); 1533cbee15bSj_mayer } 1543cbee15bSj_mayer 155b8df3255SBALATON Zoltan if (machine->kernel_filename) { 1563cbee15bSj_mayer kernel_base = KERNEL_LOAD_ADDR; 157b8df3255SBALATON Zoltan kernel_size = load_elf(machine->kernel_filename, NULL, 158617160c9SBALATON Zoltan translate_kernel_address, NULL, NULL, NULL, 159adc1a4a2SPhilippe Mathieu-Daudé NULL, NULL, ELFDATA2MSB, PPC_ELF_MACHINE, 0, 0); 160cc537e13SBALATON Zoltan if (kernel_size < 0) { 161b8df3255SBALATON Zoltan kernel_size = load_aout(machine->kernel_filename, kernel_base, 16294c92e1aSBALATON Zoltan machine->ram_size - kernel_base, 163*134ab17fSPaolo Bonzini true, TARGET_PAGE_SIZE); 164cc537e13SBALATON Zoltan } 165cc537e13SBALATON Zoltan if (kernel_size < 0) { 166b8df3255SBALATON Zoltan kernel_size = load_image_targphys(machine->kernel_filename, 16752f163b7Sblueswir1 kernel_base, 16894c92e1aSBALATON Zoltan machine->ram_size - kernel_base); 169cc537e13SBALATON Zoltan } 1703cbee15bSj_mayer if (kernel_size < 0) { 171b8df3255SBALATON Zoltan error_report("could not load kernel '%s'", 172b8df3255SBALATON Zoltan machine->kernel_filename); 1733cbee15bSj_mayer exit(1); 1743cbee15bSj_mayer } 1753cbee15bSj_mayer /* load initrd */ 176b8df3255SBALATON Zoltan if (machine->initrd_filename) { 177b8df3255SBALATON Zoltan initrd_base = TARGET_PAGE_ALIGN(kernel_base + kernel_size + 178b8df3255SBALATON Zoltan KERNEL_GAP); 179b8df3255SBALATON Zoltan initrd_size = load_image_targphys(machine->initrd_filename, 180b8df3255SBALATON Zoltan initrd_base, 18194c92e1aSBALATON Zoltan machine->ram_size - initrd_base); 1823cbee15bSj_mayer if (initrd_size < 0) { 183c525436eSMarkus Armbruster error_report("could not load initial ram disk '%s'", 184b8df3255SBALATON Zoltan machine->initrd_filename); 1853cbee15bSj_mayer exit(1); 1863cbee15bSj_mayer } 18739d96847SKamil Rytarowski cmdline_base = TARGET_PAGE_ALIGN(initrd_base + initrd_size); 1883cbee15bSj_mayer } else { 18939d96847SKamil Rytarowski cmdline_base = TARGET_PAGE_ALIGN(kernel_base + kernel_size + KERNEL_GAP); 1903cbee15bSj_mayer } 1916ac0e82dSbalrog ppc_boot_device = 'm'; 1923cbee15bSj_mayer } else { 19328c5af54Sj_mayer ppc_boot_device = '\0'; 19494c92e1aSBALATON Zoltan for (i = 0; machine->boot_config.order[i] != '\0'; i++) { 19594c92e1aSBALATON Zoltan /* 19694c92e1aSBALATON Zoltan * TOFIX: for now, the second IDE channel is not properly 1970d913fdbSj_mayer * used by OHW. The Mac floppy disk are not emulated. 19828c5af54Sj_mayer * For now, OHW cannot boot from the network. 19928c5af54Sj_mayer */ 20028c5af54Sj_mayer #if 0 20194c92e1aSBALATON Zoltan if (machine->boot_config.order[i] >= 'a' && 20294c92e1aSBALATON Zoltan machine->boot_config.order[i] <= 'f') { 20394c92e1aSBALATON Zoltan ppc_boot_device = machine->boot_config.order[i]; 20428c5af54Sj_mayer break; 2050d913fdbSj_mayer } 20628c5af54Sj_mayer #else 20794c92e1aSBALATON Zoltan if (machine->boot_config.order[i] >= 'c' && 20894c92e1aSBALATON Zoltan machine->boot_config.order[i] <= 'd') { 20994c92e1aSBALATON Zoltan ppc_boot_device = machine->boot_config.order[i]; 21028c5af54Sj_mayer break; 2110d913fdbSj_mayer } 21228c5af54Sj_mayer #endif 21328c5af54Sj_mayer } 21428c5af54Sj_mayer if (ppc_boot_device == '\0') { 2156f76b817SAlistair Francis error_report("No valid boot device for G3 Beige machine"); 21628c5af54Sj_mayer exit(1); 21728c5af54Sj_mayer } 2183cbee15bSj_mayer } 2193cbee15bSj_mayer 22049ac51aeSMark Cave-Ayland /* Grackle PCI host bridge */ 221370022ceSMark Cave-Ayland grackle_dev = qdev_new(TYPE_GRACKLE_PCI_HOST_BRIDGE); 222370022ceSMark Cave-Ayland qdev_prop_set_uint32(grackle_dev, "ofw-addr", 0x80000000); 223370022ceSMark Cave-Ayland s = SYS_BUS_DEVICE(grackle_dev); 22449ac51aeSMark Cave-Ayland sysbus_realize_and_unref(s, &error_fatal); 22549ac51aeSMark Cave-Ayland 22649ac51aeSMark Cave-Ayland sysbus_mmio_map(s, 0, GRACKLE_BASE); 22749ac51aeSMark Cave-Ayland sysbus_mmio_map(s, 1, GRACKLE_BASE + 0x200000); 22849ac51aeSMark Cave-Ayland /* PCI hole */ 22949ac51aeSMark Cave-Ayland memory_region_add_subregion(get_system_memory(), 0x80000000ULL, 23049ac51aeSMark Cave-Ayland sysbus_mmio_get_region(s, 2)); 23149ac51aeSMark Cave-Ayland /* Register 2 MB of ISA IO space */ 23249ac51aeSMark Cave-Ayland memory_region_add_subregion(get_system_memory(), 0xfe000000, 23349ac51aeSMark Cave-Ayland sysbus_mmio_get_region(s, 3)); 23449ac51aeSMark Cave-Ayland 235370022ceSMark Cave-Ayland pci_bus = PCI_HOST_BRIDGE(grackle_dev)->bus; 236370022ceSMark Cave-Ayland 237370022ceSMark Cave-Ayland /* MacIO */ 23818e0383bSBALATON Zoltan macio = OBJECT(pci_new(PCI_DEVFN(16, 0), TYPE_OLDWORLD_MACIO)); 23918e0383bSBALATON Zoltan qdev_prop_set_uint64(DEVICE(macio), "frequency", tbfreq); 240370022ceSMark Cave-Ayland 24118e0383bSBALATON Zoltan dev = DEVICE(object_resolve_path_component(macio, "escc")); 24218e0383bSBALATON Zoltan qdev_prop_set_chr(dev, "chrA", serial_hd(0)); 24318e0383bSBALATON Zoltan qdev_prop_set_chr(dev, "chrB", serial_hd(1)); 244370022ceSMark Cave-Ayland 2455df3eb4dSBALATON Zoltan dinfo = drive_get(IF_MTD, 0, 0); 2465df3eb4dSBALATON Zoltan if (dinfo) { 2475df3eb4dSBALATON Zoltan dev = DEVICE(object_resolve_path_component(macio, "nvram")); 2485df3eb4dSBALATON Zoltan qdev_prop_set_drive(dev, "drive", blk_by_legacy_dinfo(dinfo)); 2495df3eb4dSBALATON Zoltan } 2505df3eb4dSBALATON Zoltan 25118e0383bSBALATON Zoltan pci_realize_and_unref(PCI_DEVICE(macio), pci_bus, &error_fatal); 252370022ceSMark Cave-Ayland 25318e0383bSBALATON Zoltan pic_dev = DEVICE(object_resolve_path_component(macio, "pic")); 254370022ceSMark Cave-Ayland for (i = 0; i < 4; i++) { 255370022ceSMark Cave-Ayland qdev_connect_gpio_out(grackle_dev, i, 256370022ceSMark Cave-Ayland qdev_get_gpio_in(pic_dev, 0x15 + i)); 257370022ceSMark Cave-Ayland } 258a5ed75feSMark Cave-Ayland 2593cbee15bSj_mayer /* Connect the heathrow PIC outputs to the 6xx bus */ 26094c92e1aSBALATON Zoltan for (i = 0; i < machine->smp.cpus; i++) { 2613cbee15bSj_mayer switch (PPC_INPUT(env)) { 2623cbee15bSj_mayer case PPC_FLAGS_INPUT_6xx: 263370022ceSMark Cave-Ayland /* XXX: we register only 1 output pin for heathrow PIC */ 264a5ed75feSMark Cave-Ayland qdev_connect_gpio_out(pic_dev, 0, 2650f3e0c6fSCédric Le Goater qdev_get_gpio_in(DEVICE(cpu), PPC6xx_INPUT_INT)); 2663cbee15bSj_mayer break; 2673cbee15bSj_mayer default: 268c525436eSMarkus Armbruster error_report("Bus model not supported on OldWorld Mac machine"); 269c525436eSMarkus Armbruster exit(1); 2703cbee15bSj_mayer } 2713cbee15bSj_mayer } 2723cbee15bSj_mayer 2733e20ad3aSAurelien Jarno pci_vga_init(pci_bus); 2743cbee15bSj_mayer 27536b6968dSDavid Woodhouse pci_init_nic_devices(pci_bus, mc->default_nic); 276e4bcb14cSths 277370022ceSMark Cave-Ayland /* MacIO IDE */ 278d8f94e1bSJohn Snow ide_drive_get(hd, ARRAY_SIZE(hd)); 27918e0383bSBALATON Zoltan macio_ide = MACIO_IDE(object_resolve_path_component(macio, "ide[0]")); 28007a7484eSAndreas Färber macio_ide_init_drives(macio_ide, hd); 28107a7484eSAndreas Färber 28218e0383bSBALATON Zoltan macio_ide = MACIO_IDE(object_resolve_path_component(macio, "ide[1]")); 28314eefd0eSAlexander Graf macio_ide_init_drives(macio_ide, &hd[MAX_IDE_DEVS]); 2843cbee15bSj_mayer 285370022ceSMark Cave-Ayland /* MacIO CUDA/ADB */ 28618e0383bSBALATON Zoltan dev = DEVICE(object_resolve_path_component(macio, "cuda")); 287293c867dSAndreas Färber adb_bus = qdev_get_child_bus(dev, "adb.0"); 2883e80f690SMarkus Armbruster dev = qdev_new(TYPE_ADB_KEYBOARD); 2893e80f690SMarkus Armbruster qdev_realize_and_unref(dev, adb_bus, &error_fatal); 2903e80f690SMarkus Armbruster dev = qdev_new(TYPE_ADB_MOUSE); 2913e80f690SMarkus Armbruster qdev_realize_and_unref(dev, adb_bus, &error_fatal); 29245fa67fbSAndreas Färber 2934bcbe0b6SEduardo Habkost if (machine_usb(machine)) { 294afb9a60eSGerd Hoffmann pci_create_simple(pci_bus, -1, "pci-ohci"); 2953cbee15bSj_mayer } 2963cbee15bSj_mayer 297cc537e13SBALATON Zoltan if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8) { 2983cbee15bSj_mayer graphic_depth = 15; 299cc537e13SBALATON Zoltan } 3003cbee15bSj_mayer 3013cbee15bSj_mayer /* No PCI init: the BIOS will do it */ 3023cbee15bSj_mayer 3033e80f690SMarkus Armbruster dev = qdev_new(TYPE_FW_CFG_MEM); 30481a07050SMark Cave-Ayland fw_cfg = FW_CFG(dev); 30581a07050SMark Cave-Ayland qdev_prop_set_uint32(dev, "data_width", 1); 30681a07050SMark Cave-Ayland qdev_prop_set_bit(dev, "dma_enabled", false); 3074db4847dSBALATON Zoltan object_property_add_child(OBJECT(machine), TYPE_FW_CFG, OBJECT(fw_cfg)); 30881a07050SMark Cave-Ayland s = SYS_BUS_DEVICE(dev); 3093c6ef471SMarkus Armbruster sysbus_realize_and_unref(s, &error_fatal); 31081a07050SMark Cave-Ayland sysbus_mmio_map(s, 0, CFG_ADDR); 31181a07050SMark Cave-Ayland sysbus_mmio_map(s, 1, CFG_ADDR + 2); 31281a07050SMark Cave-Ayland 31394c92e1aSBALATON Zoltan fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, (uint16_t)machine->smp.cpus); 314fe6b6346SLike Xu fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)machine->smp.max_cpus); 31594c92e1aSBALATON Zoltan fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)machine->ram_size); 316271dd5e0Sblueswir1 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, ARCH_HEATHROW); 317513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, kernel_base); 318513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size); 319b8df3255SBALATON Zoltan if (machine->kernel_cmdline) { 320b9e17a34SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, cmdline_base); 321b8df3255SBALATON Zoltan pstrcpy_targphys("cmdline", cmdline_base, TARGET_PAGE_SIZE, 322b8df3255SBALATON Zoltan machine->kernel_cmdline); 323513f789fSblueswir1 } else { 324513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, 0); 325513f789fSblueswir1 } 326513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_base); 327513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); 328513f789fSblueswir1 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, ppc_boot_device); 3297f1aec5fSLaurent Vivier 3307f1aec5fSLaurent Vivier fw_cfg_add_i16(fw_cfg, FW_CFG_PPC_WIDTH, graphic_width); 3317f1aec5fSLaurent Vivier fw_cfg_add_i16(fw_cfg, FW_CFG_PPC_HEIGHT, graphic_height); 3327f1aec5fSLaurent Vivier fw_cfg_add_i16(fw_cfg, FW_CFG_PPC_DEPTH, graphic_depth); 3337f1aec5fSLaurent Vivier 33445024f09SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_IS_KVM, kvm_enabled()); 335dc333cd6SAlexander Graf if (kvm_enabled()) { 33645024f09SAlexander Graf uint8_t *hypercall; 33745024f09SAlexander Graf 3387267c094SAnthony Liguori hypercall = g_malloc(16); 33945024f09SAlexander Graf kvmppc_get_hypercall(env, hypercall, 16); 34045024f09SAlexander Graf fw_cfg_add_bytes(fw_cfg, FW_CFG_PPC_KVM_HC, hypercall, 16); 34145024f09SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_KVM_PID, getpid()); 342dc333cd6SAlexander Graf } 343caae6c96SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_TBFREQ, tbfreq); 344a1014f25SAlexander Graf /* Mac OS X requires a "known good" clock-frequency value; pass it one. */ 3459d1c1283SBALATON Zoltan fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_CLOCKFREQ, CLOCKFREQ); 3469d1c1283SBALATON Zoltan fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_BUSFREQ, BUSFREQ); 347dc333cd6SAlexander Graf 348b50de5cdSMark Cave-Ayland /* MacOS NDRV VGA driver */ 349b50de5cdSMark Cave-Ayland filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, NDRV_VGA_FILENAME); 350b50de5cdSMark Cave-Ayland if (filename) { 3519776874fSPeter Maydell gchar *ndrv_file; 3529776874fSPeter Maydell gsize ndrv_size; 353b50de5cdSMark Cave-Ayland 3549776874fSPeter Maydell if (g_file_get_contents(filename, &ndrv_file, &ndrv_size, NULL)) { 355b50de5cdSMark Cave-Ayland fw_cfg_add_file(fw_cfg, "ndrv/qemu_vga.ndrv", ndrv_file, ndrv_size); 356b50de5cdSMark Cave-Ayland } 357b50de5cdSMark Cave-Ayland g_free(filename); 358b50de5cdSMark Cave-Ayland } 359b50de5cdSMark Cave-Ayland 360513f789fSblueswir1 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg); 3613cbee15bSj_mayer } 3623cbee15bSj_mayer 363bbcc635fSMark Cave-Ayland /* 364bbcc635fSMark Cave-Ayland * Implementation of an interface to adjust firmware path 365bbcc635fSMark Cave-Ayland * for the bootindex property handling. 366bbcc635fSMark Cave-Ayland */ 367bbcc635fSMark Cave-Ayland static char *heathrow_fw_dev_path(FWPathProvider *p, BusState *bus, 368bbcc635fSMark Cave-Ayland DeviceState *dev) 369bbcc635fSMark Cave-Ayland { 370bbcc635fSMark Cave-Ayland PCIDevice *pci; 371bbcc635fSMark Cave-Ayland MACIOIDEState *macio_ide; 372bbcc635fSMark Cave-Ayland 373bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "macio-oldworld")) { 374bbcc635fSMark Cave-Ayland pci = PCI_DEVICE(dev); 375bbcc635fSMark Cave-Ayland return g_strdup_printf("mac-io@%x", PCI_SLOT(pci->devfn)); 376bbcc635fSMark Cave-Ayland } 377bbcc635fSMark Cave-Ayland 378bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "macio-ide")) { 379bbcc635fSMark Cave-Ayland macio_ide = MACIO_IDE(dev); 380bbcc635fSMark Cave-Ayland return g_strdup_printf("ata-3@%x", macio_ide->addr); 381bbcc635fSMark Cave-Ayland } 382bbcc635fSMark Cave-Ayland 383bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "ide-hd")) { 384484d366eSMark Cave-Ayland return g_strdup("disk"); 385bbcc635fSMark Cave-Ayland } 386bbcc635fSMark Cave-Ayland 387bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "ide-cd")) { 388bbcc635fSMark Cave-Ayland return g_strdup("cdrom"); 389bbcc635fSMark Cave-Ayland } 390bbcc635fSMark Cave-Ayland 391bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "virtio-blk-device")) { 392bbcc635fSMark Cave-Ayland return g_strdup("disk"); 393bbcc635fSMark Cave-Ayland } 394bbcc635fSMark Cave-Ayland 395bbcc635fSMark Cave-Ayland return NULL; 396bbcc635fSMark Cave-Ayland } 397bbcc635fSMark Cave-Ayland 398dc0ca80eSEric Auger static int heathrow_kvm_type(MachineState *machine, const char *arg) 399277c7a4dSAlexander Graf { 400277c7a4dSAlexander Graf /* Always force PR KVM */ 401277c7a4dSAlexander Graf return 2; 402277c7a4dSAlexander Graf } 403277c7a4dSAlexander Graf 404c8bd3526SMark Cave-Ayland static void heathrow_class_init(ObjectClass *oc, void *data) 405e264d29dSEduardo Habkost { 406c8bd3526SMark Cave-Ayland MachineClass *mc = MACHINE_CLASS(oc); 407bbcc635fSMark Cave-Ayland FWPathProviderClass *fwc = FW_PATH_PROVIDER_CLASS(oc); 408c8bd3526SMark Cave-Ayland 4099d906ad1STejas Vipin mc->desc = "Heathrow based PowerMac"; 410e264d29dSEduardo Habkost mc->init = ppc_heathrow_init; 4112059839bSMarkus Armbruster mc->block_default_type = IF_IDE; 41283234b82SPeter Maydell /* SMP is not supported currently */ 41383234b82SPeter Maydell mc->max_cpus = 1; 41446214a27SAndreas Färber #ifndef TARGET_PPC64 415ea0ac7f6SPhilippe Mathieu-Daudé mc->is_default = true; 41646214a27SAndreas Färber #endif 417f309ae85SEduardo Habkost /* TOFIX "cad" when Mac floppy is implemented */ 418e264d29dSEduardo Habkost mc->default_boot_order = "cd"; 419e264d29dSEduardo Habkost mc->kvm_type = heathrow_kvm_type; 420f4c6604eSIgor Mammedov mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("750_v3.1"); 4213232794bSMark Cave-Ayland mc->default_display = "std"; 422053b7086SThomas Huth mc->default_nic = "ne2k_pci"; 423bbcc635fSMark Cave-Ayland mc->ignore_boot_device_suffixes = true; 4248ee06e4cSIgor Mammedov mc->default_ram_id = "ppc_heathrow.ram"; 425bbcc635fSMark Cave-Ayland fwc->get_dev_path = heathrow_fw_dev_path; 426f80f9ec9SAnthony Liguori } 427f80f9ec9SAnthony Liguori 428c8bd3526SMark Cave-Ayland static const TypeInfo ppc_heathrow_machine_info = { 429c8bd3526SMark Cave-Ayland .name = MACHINE_TYPE_NAME("g3beige"), 430c8bd3526SMark Cave-Ayland .parent = TYPE_MACHINE, 431bbcc635fSMark Cave-Ayland .class_init = heathrow_class_init, 432bbcc635fSMark Cave-Ayland .interfaces = (InterfaceInfo[]) { 433bbcc635fSMark Cave-Ayland { TYPE_FW_PATH_PROVIDER }, 434bbcc635fSMark Cave-Ayland { } 435bbcc635fSMark Cave-Ayland }, 436c8bd3526SMark Cave-Ayland }; 437c8bd3526SMark Cave-Ayland 438c8bd3526SMark Cave-Ayland static void ppc_heathrow_register_types(void) 439c8bd3526SMark Cave-Ayland { 440c8bd3526SMark Cave-Ayland type_register_static(&ppc_heathrow_machine_info); 441c8bd3526SMark Cave-Ayland } 442c8bd3526SMark Cave-Ayland 443c8bd3526SMark Cave-Ayland type_init(ppc_heathrow_register_types); 444