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" 35*32cad1ffSPhilippe 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" 48*32cad1ffSPhilippe Mathieu-Daudé #include "system/kvm.h" 49*32cad1ffSPhilippe 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, 139464c73e8SBALATON Zoltan NULL, NULL, 1, 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) { 1566120dc8dSBALATON Zoltan int bswap_needed = 0; 157ca20cf32SBlue Swirl 158ca20cf32SBlue Swirl #ifdef BSWAP_NEEDED 159ca20cf32SBlue Swirl bswap_needed = 1; 160ca20cf32SBlue Swirl #endif 1613cbee15bSj_mayer kernel_base = KERNEL_LOAD_ADDR; 162b8df3255SBALATON Zoltan kernel_size = load_elf(machine->kernel_filename, NULL, 163617160c9SBALATON Zoltan translate_kernel_address, NULL, NULL, NULL, 164617160c9SBALATON Zoltan NULL, NULL, 1, PPC_ELF_MACHINE, 0, 0); 165cc537e13SBALATON Zoltan if (kernel_size < 0) { 166b8df3255SBALATON Zoltan kernel_size = load_aout(machine->kernel_filename, kernel_base, 16794c92e1aSBALATON Zoltan machine->ram_size - kernel_base, 16894c92e1aSBALATON Zoltan bswap_needed, TARGET_PAGE_SIZE); 169cc537e13SBALATON Zoltan } 170cc537e13SBALATON Zoltan if (kernel_size < 0) { 171b8df3255SBALATON Zoltan kernel_size = load_image_targphys(machine->kernel_filename, 17252f163b7Sblueswir1 kernel_base, 17394c92e1aSBALATON Zoltan machine->ram_size - kernel_base); 174cc537e13SBALATON Zoltan } 1753cbee15bSj_mayer if (kernel_size < 0) { 176b8df3255SBALATON Zoltan error_report("could not load kernel '%s'", 177b8df3255SBALATON Zoltan machine->kernel_filename); 1783cbee15bSj_mayer exit(1); 1793cbee15bSj_mayer } 1803cbee15bSj_mayer /* load initrd */ 181b8df3255SBALATON Zoltan if (machine->initrd_filename) { 182b8df3255SBALATON Zoltan initrd_base = TARGET_PAGE_ALIGN(kernel_base + kernel_size + 183b8df3255SBALATON Zoltan KERNEL_GAP); 184b8df3255SBALATON Zoltan initrd_size = load_image_targphys(machine->initrd_filename, 185b8df3255SBALATON Zoltan initrd_base, 18694c92e1aSBALATON Zoltan machine->ram_size - initrd_base); 1873cbee15bSj_mayer if (initrd_size < 0) { 188c525436eSMarkus Armbruster error_report("could not load initial ram disk '%s'", 189b8df3255SBALATON Zoltan machine->initrd_filename); 1903cbee15bSj_mayer exit(1); 1913cbee15bSj_mayer } 19239d96847SKamil Rytarowski cmdline_base = TARGET_PAGE_ALIGN(initrd_base + initrd_size); 1933cbee15bSj_mayer } else { 19439d96847SKamil Rytarowski cmdline_base = TARGET_PAGE_ALIGN(kernel_base + kernel_size + KERNEL_GAP); 1953cbee15bSj_mayer } 1966ac0e82dSbalrog ppc_boot_device = 'm'; 1973cbee15bSj_mayer } else { 19828c5af54Sj_mayer ppc_boot_device = '\0'; 19994c92e1aSBALATON Zoltan for (i = 0; machine->boot_config.order[i] != '\0'; i++) { 20094c92e1aSBALATON Zoltan /* 20194c92e1aSBALATON Zoltan * TOFIX: for now, the second IDE channel is not properly 2020d913fdbSj_mayer * used by OHW. The Mac floppy disk are not emulated. 20328c5af54Sj_mayer * For now, OHW cannot boot from the network. 20428c5af54Sj_mayer */ 20528c5af54Sj_mayer #if 0 20694c92e1aSBALATON Zoltan if (machine->boot_config.order[i] >= 'a' && 20794c92e1aSBALATON Zoltan machine->boot_config.order[i] <= 'f') { 20894c92e1aSBALATON Zoltan ppc_boot_device = machine->boot_config.order[i]; 20928c5af54Sj_mayer break; 2100d913fdbSj_mayer } 21128c5af54Sj_mayer #else 21294c92e1aSBALATON Zoltan if (machine->boot_config.order[i] >= 'c' && 21394c92e1aSBALATON Zoltan machine->boot_config.order[i] <= 'd') { 21494c92e1aSBALATON Zoltan ppc_boot_device = machine->boot_config.order[i]; 21528c5af54Sj_mayer break; 2160d913fdbSj_mayer } 21728c5af54Sj_mayer #endif 21828c5af54Sj_mayer } 21928c5af54Sj_mayer if (ppc_boot_device == '\0') { 2206f76b817SAlistair Francis error_report("No valid boot device for G3 Beige machine"); 22128c5af54Sj_mayer exit(1); 22228c5af54Sj_mayer } 2233cbee15bSj_mayer } 2243cbee15bSj_mayer 22549ac51aeSMark Cave-Ayland /* Grackle PCI host bridge */ 226370022ceSMark Cave-Ayland grackle_dev = qdev_new(TYPE_GRACKLE_PCI_HOST_BRIDGE); 227370022ceSMark Cave-Ayland qdev_prop_set_uint32(grackle_dev, "ofw-addr", 0x80000000); 228370022ceSMark Cave-Ayland s = SYS_BUS_DEVICE(grackle_dev); 22949ac51aeSMark Cave-Ayland sysbus_realize_and_unref(s, &error_fatal); 23049ac51aeSMark Cave-Ayland 23149ac51aeSMark Cave-Ayland sysbus_mmio_map(s, 0, GRACKLE_BASE); 23249ac51aeSMark Cave-Ayland sysbus_mmio_map(s, 1, GRACKLE_BASE + 0x200000); 23349ac51aeSMark Cave-Ayland /* PCI hole */ 23449ac51aeSMark Cave-Ayland memory_region_add_subregion(get_system_memory(), 0x80000000ULL, 23549ac51aeSMark Cave-Ayland sysbus_mmio_get_region(s, 2)); 23649ac51aeSMark Cave-Ayland /* Register 2 MB of ISA IO space */ 23749ac51aeSMark Cave-Ayland memory_region_add_subregion(get_system_memory(), 0xfe000000, 23849ac51aeSMark Cave-Ayland sysbus_mmio_get_region(s, 3)); 23949ac51aeSMark Cave-Ayland 240370022ceSMark Cave-Ayland pci_bus = PCI_HOST_BRIDGE(grackle_dev)->bus; 241370022ceSMark Cave-Ayland 242370022ceSMark Cave-Ayland /* MacIO */ 24318e0383bSBALATON Zoltan macio = OBJECT(pci_new(PCI_DEVFN(16, 0), TYPE_OLDWORLD_MACIO)); 24418e0383bSBALATON Zoltan qdev_prop_set_uint64(DEVICE(macio), "frequency", tbfreq); 245370022ceSMark Cave-Ayland 24618e0383bSBALATON Zoltan dev = DEVICE(object_resolve_path_component(macio, "escc")); 24718e0383bSBALATON Zoltan qdev_prop_set_chr(dev, "chrA", serial_hd(0)); 24818e0383bSBALATON Zoltan qdev_prop_set_chr(dev, "chrB", serial_hd(1)); 249370022ceSMark Cave-Ayland 2505df3eb4dSBALATON Zoltan dinfo = drive_get(IF_MTD, 0, 0); 2515df3eb4dSBALATON Zoltan if (dinfo) { 2525df3eb4dSBALATON Zoltan dev = DEVICE(object_resolve_path_component(macio, "nvram")); 2535df3eb4dSBALATON Zoltan qdev_prop_set_drive(dev, "drive", blk_by_legacy_dinfo(dinfo)); 2545df3eb4dSBALATON Zoltan } 2555df3eb4dSBALATON Zoltan 25618e0383bSBALATON Zoltan pci_realize_and_unref(PCI_DEVICE(macio), pci_bus, &error_fatal); 257370022ceSMark Cave-Ayland 25818e0383bSBALATON Zoltan pic_dev = DEVICE(object_resolve_path_component(macio, "pic")); 259370022ceSMark Cave-Ayland for (i = 0; i < 4; i++) { 260370022ceSMark Cave-Ayland qdev_connect_gpio_out(grackle_dev, i, 261370022ceSMark Cave-Ayland qdev_get_gpio_in(pic_dev, 0x15 + i)); 262370022ceSMark Cave-Ayland } 263a5ed75feSMark Cave-Ayland 2643cbee15bSj_mayer /* Connect the heathrow PIC outputs to the 6xx bus */ 26594c92e1aSBALATON Zoltan for (i = 0; i < machine->smp.cpus; i++) { 2663cbee15bSj_mayer switch (PPC_INPUT(env)) { 2673cbee15bSj_mayer case PPC_FLAGS_INPUT_6xx: 268370022ceSMark Cave-Ayland /* XXX: we register only 1 output pin for heathrow PIC */ 269a5ed75feSMark Cave-Ayland qdev_connect_gpio_out(pic_dev, 0, 2700f3e0c6fSCédric Le Goater qdev_get_gpio_in(DEVICE(cpu), PPC6xx_INPUT_INT)); 2713cbee15bSj_mayer break; 2723cbee15bSj_mayer default: 273c525436eSMarkus Armbruster error_report("Bus model not supported on OldWorld Mac machine"); 274c525436eSMarkus Armbruster exit(1); 2753cbee15bSj_mayer } 2763cbee15bSj_mayer } 2773cbee15bSj_mayer 2783e20ad3aSAurelien Jarno pci_vga_init(pci_bus); 2793cbee15bSj_mayer 28036b6968dSDavid Woodhouse pci_init_nic_devices(pci_bus, mc->default_nic); 281e4bcb14cSths 282370022ceSMark Cave-Ayland /* MacIO IDE */ 283d8f94e1bSJohn Snow ide_drive_get(hd, ARRAY_SIZE(hd)); 28418e0383bSBALATON Zoltan macio_ide = MACIO_IDE(object_resolve_path_component(macio, "ide[0]")); 28507a7484eSAndreas Färber macio_ide_init_drives(macio_ide, hd); 28607a7484eSAndreas Färber 28718e0383bSBALATON Zoltan macio_ide = MACIO_IDE(object_resolve_path_component(macio, "ide[1]")); 28814eefd0eSAlexander Graf macio_ide_init_drives(macio_ide, &hd[MAX_IDE_DEVS]); 2893cbee15bSj_mayer 290370022ceSMark Cave-Ayland /* MacIO CUDA/ADB */ 29118e0383bSBALATON Zoltan dev = DEVICE(object_resolve_path_component(macio, "cuda")); 292293c867dSAndreas Färber adb_bus = qdev_get_child_bus(dev, "adb.0"); 2933e80f690SMarkus Armbruster dev = qdev_new(TYPE_ADB_KEYBOARD); 2943e80f690SMarkus Armbruster qdev_realize_and_unref(dev, adb_bus, &error_fatal); 2953e80f690SMarkus Armbruster dev = qdev_new(TYPE_ADB_MOUSE); 2963e80f690SMarkus Armbruster qdev_realize_and_unref(dev, adb_bus, &error_fatal); 29745fa67fbSAndreas Färber 2984bcbe0b6SEduardo Habkost if (machine_usb(machine)) { 299afb9a60eSGerd Hoffmann pci_create_simple(pci_bus, -1, "pci-ohci"); 3003cbee15bSj_mayer } 3013cbee15bSj_mayer 302cc537e13SBALATON Zoltan if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8) { 3033cbee15bSj_mayer graphic_depth = 15; 304cc537e13SBALATON Zoltan } 3053cbee15bSj_mayer 3063cbee15bSj_mayer /* No PCI init: the BIOS will do it */ 3073cbee15bSj_mayer 3083e80f690SMarkus Armbruster dev = qdev_new(TYPE_FW_CFG_MEM); 30981a07050SMark Cave-Ayland fw_cfg = FW_CFG(dev); 31081a07050SMark Cave-Ayland qdev_prop_set_uint32(dev, "data_width", 1); 31181a07050SMark Cave-Ayland qdev_prop_set_bit(dev, "dma_enabled", false); 3124db4847dSBALATON Zoltan object_property_add_child(OBJECT(machine), TYPE_FW_CFG, OBJECT(fw_cfg)); 31381a07050SMark Cave-Ayland s = SYS_BUS_DEVICE(dev); 3143c6ef471SMarkus Armbruster sysbus_realize_and_unref(s, &error_fatal); 31581a07050SMark Cave-Ayland sysbus_mmio_map(s, 0, CFG_ADDR); 31681a07050SMark Cave-Ayland sysbus_mmio_map(s, 1, CFG_ADDR + 2); 31781a07050SMark Cave-Ayland 31894c92e1aSBALATON Zoltan fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, (uint16_t)machine->smp.cpus); 319fe6b6346SLike Xu fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)machine->smp.max_cpus); 32094c92e1aSBALATON Zoltan fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)machine->ram_size); 321271dd5e0Sblueswir1 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, ARCH_HEATHROW); 322513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, kernel_base); 323513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size); 324b8df3255SBALATON Zoltan if (machine->kernel_cmdline) { 325b9e17a34SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, cmdline_base); 326b8df3255SBALATON Zoltan pstrcpy_targphys("cmdline", cmdline_base, TARGET_PAGE_SIZE, 327b8df3255SBALATON Zoltan machine->kernel_cmdline); 328513f789fSblueswir1 } else { 329513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, 0); 330513f789fSblueswir1 } 331513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_base); 332513f789fSblueswir1 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); 333513f789fSblueswir1 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, ppc_boot_device); 3347f1aec5fSLaurent Vivier 3357f1aec5fSLaurent Vivier fw_cfg_add_i16(fw_cfg, FW_CFG_PPC_WIDTH, graphic_width); 3367f1aec5fSLaurent Vivier fw_cfg_add_i16(fw_cfg, FW_CFG_PPC_HEIGHT, graphic_height); 3377f1aec5fSLaurent Vivier fw_cfg_add_i16(fw_cfg, FW_CFG_PPC_DEPTH, graphic_depth); 3387f1aec5fSLaurent Vivier 33945024f09SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_IS_KVM, kvm_enabled()); 340dc333cd6SAlexander Graf if (kvm_enabled()) { 34145024f09SAlexander Graf uint8_t *hypercall; 34245024f09SAlexander Graf 3437267c094SAnthony Liguori hypercall = g_malloc(16); 34445024f09SAlexander Graf kvmppc_get_hypercall(env, hypercall, 16); 34545024f09SAlexander Graf fw_cfg_add_bytes(fw_cfg, FW_CFG_PPC_KVM_HC, hypercall, 16); 34645024f09SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_KVM_PID, getpid()); 347dc333cd6SAlexander Graf } 348caae6c96SAlexander Graf fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_TBFREQ, tbfreq); 349a1014f25SAlexander Graf /* Mac OS X requires a "known good" clock-frequency value; pass it one. */ 3509d1c1283SBALATON Zoltan fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_CLOCKFREQ, CLOCKFREQ); 3519d1c1283SBALATON Zoltan fw_cfg_add_i32(fw_cfg, FW_CFG_PPC_BUSFREQ, BUSFREQ); 352dc333cd6SAlexander Graf 353b50de5cdSMark Cave-Ayland /* MacOS NDRV VGA driver */ 354b50de5cdSMark Cave-Ayland filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, NDRV_VGA_FILENAME); 355b50de5cdSMark Cave-Ayland if (filename) { 3569776874fSPeter Maydell gchar *ndrv_file; 3579776874fSPeter Maydell gsize ndrv_size; 358b50de5cdSMark Cave-Ayland 3599776874fSPeter Maydell if (g_file_get_contents(filename, &ndrv_file, &ndrv_size, NULL)) { 360b50de5cdSMark Cave-Ayland fw_cfg_add_file(fw_cfg, "ndrv/qemu_vga.ndrv", ndrv_file, ndrv_size); 361b50de5cdSMark Cave-Ayland } 362b50de5cdSMark Cave-Ayland g_free(filename); 363b50de5cdSMark Cave-Ayland } 364b50de5cdSMark Cave-Ayland 365513f789fSblueswir1 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg); 3663cbee15bSj_mayer } 3673cbee15bSj_mayer 368bbcc635fSMark Cave-Ayland /* 369bbcc635fSMark Cave-Ayland * Implementation of an interface to adjust firmware path 370bbcc635fSMark Cave-Ayland * for the bootindex property handling. 371bbcc635fSMark Cave-Ayland */ 372bbcc635fSMark Cave-Ayland static char *heathrow_fw_dev_path(FWPathProvider *p, BusState *bus, 373bbcc635fSMark Cave-Ayland DeviceState *dev) 374bbcc635fSMark Cave-Ayland { 375bbcc635fSMark Cave-Ayland PCIDevice *pci; 376bbcc635fSMark Cave-Ayland MACIOIDEState *macio_ide; 377bbcc635fSMark Cave-Ayland 378bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "macio-oldworld")) { 379bbcc635fSMark Cave-Ayland pci = PCI_DEVICE(dev); 380bbcc635fSMark Cave-Ayland return g_strdup_printf("mac-io@%x", PCI_SLOT(pci->devfn)); 381bbcc635fSMark Cave-Ayland } 382bbcc635fSMark Cave-Ayland 383bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "macio-ide")) { 384bbcc635fSMark Cave-Ayland macio_ide = MACIO_IDE(dev); 385bbcc635fSMark Cave-Ayland return g_strdup_printf("ata-3@%x", macio_ide->addr); 386bbcc635fSMark Cave-Ayland } 387bbcc635fSMark Cave-Ayland 388bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "ide-hd")) { 389484d366eSMark Cave-Ayland return g_strdup("disk"); 390bbcc635fSMark Cave-Ayland } 391bbcc635fSMark Cave-Ayland 392bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "ide-cd")) { 393bbcc635fSMark Cave-Ayland return g_strdup("cdrom"); 394bbcc635fSMark Cave-Ayland } 395bbcc635fSMark Cave-Ayland 396bbcc635fSMark Cave-Ayland if (!strcmp(object_get_typename(OBJECT(dev)), "virtio-blk-device")) { 397bbcc635fSMark Cave-Ayland return g_strdup("disk"); 398bbcc635fSMark Cave-Ayland } 399bbcc635fSMark Cave-Ayland 400bbcc635fSMark Cave-Ayland return NULL; 401bbcc635fSMark Cave-Ayland } 402bbcc635fSMark Cave-Ayland 403dc0ca80eSEric Auger static int heathrow_kvm_type(MachineState *machine, const char *arg) 404277c7a4dSAlexander Graf { 405277c7a4dSAlexander Graf /* Always force PR KVM */ 406277c7a4dSAlexander Graf return 2; 407277c7a4dSAlexander Graf } 408277c7a4dSAlexander Graf 409c8bd3526SMark Cave-Ayland static void heathrow_class_init(ObjectClass *oc, void *data) 410e264d29dSEduardo Habkost { 411c8bd3526SMark Cave-Ayland MachineClass *mc = MACHINE_CLASS(oc); 412bbcc635fSMark Cave-Ayland FWPathProviderClass *fwc = FW_PATH_PROVIDER_CLASS(oc); 413c8bd3526SMark Cave-Ayland 4149d906ad1STejas Vipin mc->desc = "Heathrow based PowerMac"; 415e264d29dSEduardo Habkost mc->init = ppc_heathrow_init; 4162059839bSMarkus Armbruster mc->block_default_type = IF_IDE; 41783234b82SPeter Maydell /* SMP is not supported currently */ 41883234b82SPeter Maydell mc->max_cpus = 1; 41946214a27SAndreas Färber #ifndef TARGET_PPC64 420ea0ac7f6SPhilippe Mathieu-Daudé mc->is_default = true; 42146214a27SAndreas Färber #endif 422f309ae85SEduardo Habkost /* TOFIX "cad" when Mac floppy is implemented */ 423e264d29dSEduardo Habkost mc->default_boot_order = "cd"; 424e264d29dSEduardo Habkost mc->kvm_type = heathrow_kvm_type; 425f4c6604eSIgor Mammedov mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("750_v3.1"); 4263232794bSMark Cave-Ayland mc->default_display = "std"; 427053b7086SThomas Huth mc->default_nic = "ne2k_pci"; 428bbcc635fSMark Cave-Ayland mc->ignore_boot_device_suffixes = true; 4298ee06e4cSIgor Mammedov mc->default_ram_id = "ppc_heathrow.ram"; 430bbcc635fSMark Cave-Ayland fwc->get_dev_path = heathrow_fw_dev_path; 431f80f9ec9SAnthony Liguori } 432f80f9ec9SAnthony Liguori 433c8bd3526SMark Cave-Ayland static const TypeInfo ppc_heathrow_machine_info = { 434c8bd3526SMark Cave-Ayland .name = MACHINE_TYPE_NAME("g3beige"), 435c8bd3526SMark Cave-Ayland .parent = TYPE_MACHINE, 436bbcc635fSMark Cave-Ayland .class_init = heathrow_class_init, 437bbcc635fSMark Cave-Ayland .interfaces = (InterfaceInfo[]) { 438bbcc635fSMark Cave-Ayland { TYPE_FW_PATH_PROVIDER }, 439bbcc635fSMark Cave-Ayland { } 440bbcc635fSMark Cave-Ayland }, 441c8bd3526SMark Cave-Ayland }; 442c8bd3526SMark Cave-Ayland 443c8bd3526SMark Cave-Ayland static void ppc_heathrow_register_types(void) 444c8bd3526SMark Cave-Ayland { 445c8bd3526SMark Cave-Ayland type_register_static(&ppc_heathrow_machine_info); 446c8bd3526SMark Cave-Ayland } 447c8bd3526SMark Cave-Ayland 448c8bd3526SMark Cave-Ayland type_init(ppc_heathrow_register_types); 449