2009-03-02 17:42:42 +01:00
|
|
|
/*
|
|
|
|
* Qemu PowerPC MPC8544DS board emualtion
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Freescale Semiconductor, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Yu Liu, <yu.liu@freescale.com>
|
|
|
|
*
|
|
|
|
* This file is derived from hw/ppc440_bamboo.c,
|
|
|
|
* the copyright for that material belongs to the original owners.
|
|
|
|
*
|
|
|
|
* This is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "hw.h"
|
|
|
|
#include "pc.h"
|
|
|
|
#include "pci.h"
|
|
|
|
#include "boards.h"
|
|
|
|
#include "sysemu.h"
|
|
|
|
#include "kvm.h"
|
|
|
|
#include "kvm_ppc.h"
|
|
|
|
#include "device_tree.h"
|
|
|
|
#include "openpic.h"
|
2011-04-30 23:34:53 +02:00
|
|
|
#include "ppc.h"
|
2009-09-20 16:58:02 +02:00
|
|
|
#include "loader.h"
|
|
|
|
#include "elf.h"
|
2010-08-31 00:22:28 +02:00
|
|
|
#include "sysbus.h"
|
2011-08-12 01:07:16 +02:00
|
|
|
#include "exec-memory.h"
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
#define BINARY_DEVICE_TREE_FILE "mpc8544ds.dtb"
|
|
|
|
#define UIMAGE_LOAD_BASE 0
|
2010-02-02 09:49:03 +01:00
|
|
|
#define DTC_LOAD_PAD 0x500000
|
|
|
|
#define DTC_PAD_MASK 0xFFFFF
|
|
|
|
#define INITRD_LOAD_PAD 0x2000000
|
|
|
|
#define INITRD_PAD_MASK 0xFFFFFF
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
#define RAM_SIZES_ALIGN (64UL << 20)
|
|
|
|
|
|
|
|
#define MPC8544_CCSRBAR_BASE 0xE0000000
|
|
|
|
#define MPC8544_MPIC_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x40000)
|
|
|
|
#define MPC8544_SERIAL0_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4500)
|
|
|
|
#define MPC8544_SERIAL1_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4600)
|
|
|
|
#define MPC8544_PCI_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x8000)
|
|
|
|
#define MPC8544_PCI_REGS_SIZE 0x1000
|
|
|
|
#define MPC8544_PCI_IO 0xE1000000
|
|
|
|
#define MPC8544_PCI_IOLEN 0x10000
|
2011-06-02 13:53:40 +02:00
|
|
|
#define MPC8544_UTIL_BASE (MPC8544_CCSRBAR_BASE + 0xe0000)
|
2011-07-22 13:32:29 +02:00
|
|
|
#define MPC8544_SPIN_BASE 0xEF000000
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2011-04-30 23:34:53 +02:00
|
|
|
struct boot_info
|
|
|
|
{
|
|
|
|
uint32_t dt_base;
|
|
|
|
uint32_t entry;
|
|
|
|
};
|
|
|
|
|
2011-06-15 23:34:04 +02:00
|
|
|
static int mpc8544_load_device_tree(CPUState *env,
|
|
|
|
target_phys_addr_t addr,
|
|
|
|
uint32_t ramsize,
|
|
|
|
target_phys_addr_t initrd_base,
|
|
|
|
target_phys_addr_t initrd_size,
|
|
|
|
const char *kernel_cmdline)
|
2009-03-02 17:42:42 +01:00
|
|
|
{
|
2010-02-27 19:47:22 +01:00
|
|
|
int ret = -1;
|
2009-07-27 16:12:52 +02:00
|
|
|
#ifdef CONFIG_FDT
|
2011-04-30 23:34:53 +02:00
|
|
|
uint32_t mem_reg_property[] = {0, cpu_to_be32(ramsize)};
|
2009-05-30 01:52:44 +02:00
|
|
|
char *filename;
|
2009-04-10 18:23:59 +02:00
|
|
|
int fdt_size;
|
2010-02-27 19:47:22 +01:00
|
|
|
void *fdt;
|
2011-06-15 23:34:04 +02:00
|
|
|
uint8_t hypercall[16];
|
2011-07-21 02:34:11 +02:00
|
|
|
uint32_t clock_freq = 400000000;
|
|
|
|
uint32_t tb_freq = 400000000;
|
2011-07-21 03:01:11 +02:00
|
|
|
int i;
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2009-05-30 01:52:44 +02:00
|
|
|
filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, BINARY_DEVICE_TREE_FILE);
|
|
|
|
if (!filename) {
|
2009-03-02 17:42:42 +01:00
|
|
|
goto out;
|
2009-05-30 01:52:44 +02:00
|
|
|
}
|
|
|
|
fdt = load_device_tree(filename, &fdt_size);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(filename);
|
2009-05-30 01:52:44 +02:00
|
|
|
if (fdt == NULL) {
|
|
|
|
goto out;
|
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
/* Manipulate device tree in memory. */
|
|
|
|
ret = qemu_devtree_setprop(fdt, "/memory", "reg", mem_reg_property,
|
|
|
|
sizeof(mem_reg_property));
|
|
|
|
if (ret < 0)
|
|
|
|
fprintf(stderr, "couldn't set /memory/reg\n");
|
|
|
|
|
2011-04-30 23:34:53 +02:00
|
|
|
if (initrd_size) {
|
|
|
|
ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-start",
|
|
|
|
initrd_base);
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "couldn't set /chosen/linux,initrd-start\n");
|
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2011-04-30 23:34:53 +02:00
|
|
|
ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-end",
|
|
|
|
(initrd_base + initrd_size));
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "couldn't set /chosen/linux,initrd-end\n");
|
|
|
|
}
|
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
ret = qemu_devtree_setprop_string(fdt, "/chosen", "bootargs",
|
|
|
|
kernel_cmdline);
|
|
|
|
if (ret < 0)
|
|
|
|
fprintf(stderr, "couldn't set /chosen/bootargs\n");
|
|
|
|
|
|
|
|
if (kvm_enabled()) {
|
2011-07-21 02:34:11 +02:00
|
|
|
/* Read out host's frequencies */
|
|
|
|
clock_freq = kvmppc_get_clockfreq();
|
|
|
|
tb_freq = kvmppc_get_tbfreq();
|
2011-06-15 23:34:04 +02:00
|
|
|
|
|
|
|
/* indicate KVM hypercall interface */
|
|
|
|
qemu_devtree_setprop_string(fdt, "/hypervisor", "compatible",
|
|
|
|
"linux,kvm");
|
|
|
|
kvmppc_get_hypercall(env, hypercall, sizeof(hypercall));
|
|
|
|
qemu_devtree_setprop(fdt, "/hypervisor", "hcall-instructions",
|
|
|
|
hypercall, sizeof(hypercall));
|
2009-03-02 17:42:42 +01:00
|
|
|
}
|
2011-04-30 23:34:53 +02:00
|
|
|
|
2011-07-23 10:56:40 +02:00
|
|
|
/* We need to generate the cpu nodes in reverse order, so Linux can pick
|
|
|
|
the first node as boot node and be happy */
|
|
|
|
for (i = smp_cpus - 1; i >= 0; i--) {
|
2011-07-21 03:01:11 +02:00
|
|
|
char cpu_name[128];
|
2011-07-23 10:56:40 +02:00
|
|
|
uint64_t cpu_release_addr = cpu_to_be64(MPC8544_SPIN_BASE + (i * 0x20));
|
2011-07-21 03:06:12 +02:00
|
|
|
|
2011-07-23 10:56:40 +02:00
|
|
|
for (env = first_cpu; env != NULL; env = env->next_cpu) {
|
|
|
|
if (env->cpu_index == i) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!env) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(cpu_name, sizeof(cpu_name), "/cpus/PowerPC,8544@%x", env->cpu_index);
|
|
|
|
qemu_devtree_add_subnode(fdt, cpu_name);
|
2011-07-21 03:01:11 +02:00
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "clock-frequency", clock_freq);
|
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "timebase-frequency", tb_freq);
|
2011-07-23 10:56:40 +02:00
|
|
|
qemu_devtree_setprop_string(fdt, cpu_name, "device_type", "cpu");
|
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "reg", env->cpu_index);
|
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "d-cache-line-size",
|
|
|
|
env->dcache_line_size);
|
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "i-cache-line-size",
|
|
|
|
env->icache_line_size);
|
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "d-cache-size", 0x8000);
|
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "i-cache-size", 0x8000);
|
|
|
|
qemu_devtree_setprop_cell(fdt, cpu_name, "bus-frequency", 0);
|
|
|
|
if (env->cpu_index) {
|
|
|
|
qemu_devtree_setprop_string(fdt, cpu_name, "status", "disabled");
|
|
|
|
qemu_devtree_setprop_string(fdt, cpu_name, "enable-method", "spin-table");
|
|
|
|
qemu_devtree_setprop(fdt, cpu_name, "cpu-release-addr",
|
|
|
|
&cpu_release_addr, sizeof(cpu_release_addr));
|
|
|
|
} else {
|
|
|
|
qemu_devtree_setprop_string(fdt, cpu_name, "status", "okay");
|
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
}
|
|
|
|
|
2010-02-02 09:49:02 +01:00
|
|
|
ret = rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE, fdt, fdt_size, addr);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(fdt);
|
2009-04-10 18:23:59 +02:00
|
|
|
|
2009-03-02 17:42:42 +01:00
|
|
|
out:
|
|
|
|
#endif
|
|
|
|
|
2010-02-02 09:49:02 +01:00
|
|
|
return ret;
|
2009-03-02 17:42:42 +01:00
|
|
|
}
|
|
|
|
|
2011-04-30 23:34:53 +02:00
|
|
|
/* Create -kernel TLB entries for BookE, linearly spanning 256MB. */
|
2011-06-16 18:45:43 +02:00
|
|
|
static inline target_phys_addr_t booke206_page_size_to_tlb(uint64_t size)
|
|
|
|
{
|
2011-08-18 12:38:40 +02:00
|
|
|
return ffs(size >> 10) - 1;
|
2011-06-16 18:45:43 +02:00
|
|
|
}
|
|
|
|
|
2011-04-30 23:34:53 +02:00
|
|
|
static void mmubooke_create_initial_mapping(CPUState *env,
|
|
|
|
target_ulong va,
|
|
|
|
target_phys_addr_t pa)
|
|
|
|
{
|
2011-06-16 18:45:43 +02:00
|
|
|
ppcmas_tlb_t *tlb = booke206_get_tlbm(env, 1, 0, 0);
|
|
|
|
target_phys_addr_t size;
|
|
|
|
|
|
|
|
size = (booke206_page_size_to_tlb(256 * 1024 * 1024) << MAS1_TSIZE_SHIFT);
|
|
|
|
tlb->mas1 = MAS1_VALID | size;
|
|
|
|
tlb->mas2 = va & TARGET_PAGE_MASK;
|
|
|
|
tlb->mas7_3 = pa & TARGET_PAGE_MASK;
|
|
|
|
tlb->mas7_3 |= MAS3_UR | MAS3_UW | MAS3_UX | MAS3_SR | MAS3_SW | MAS3_SX;
|
2011-08-31 13:26:56 +02:00
|
|
|
|
|
|
|
env->tlb_dirty = true;
|
2011-04-30 23:34:53 +02:00
|
|
|
}
|
|
|
|
|
2011-07-22 13:32:29 +02:00
|
|
|
static void mpc8544ds_cpu_reset_sec(void *opaque)
|
|
|
|
{
|
|
|
|
CPUState *env = opaque;
|
|
|
|
|
|
|
|
cpu_reset(env);
|
|
|
|
|
|
|
|
/* Secondary CPU starts in halted state for now. Needs to change when
|
|
|
|
implementing non-kernel boot. */
|
|
|
|
env->halted = 1;
|
|
|
|
env->exception_index = EXCP_HLT;
|
2011-04-30 23:34:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mpc8544ds_cpu_reset(void *opaque)
|
|
|
|
{
|
|
|
|
CPUState *env = opaque;
|
|
|
|
struct boot_info *bi = env->load_info;
|
|
|
|
|
|
|
|
cpu_reset(env);
|
|
|
|
|
|
|
|
/* Set initial guest state. */
|
2011-07-22 13:32:29 +02:00
|
|
|
env->halted = 0;
|
2011-04-30 23:34:53 +02:00
|
|
|
env->gpr[1] = (16<<20) - 8;
|
|
|
|
env->gpr[3] = bi->dt_base;
|
|
|
|
env->nip = bi->entry;
|
|
|
|
mmubooke_create_initial_mapping(env, 0, 0);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static void mpc8544ds_init(ram_addr_t ram_size,
|
2009-03-02 17:42:42 +01:00
|
|
|
const char *boot_device,
|
|
|
|
const char *kernel_filename,
|
|
|
|
const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename,
|
|
|
|
const char *cpu_model)
|
|
|
|
{
|
2011-08-12 01:07:16 +02:00
|
|
|
MemoryRegion *address_space_mem = get_system_memory();
|
2011-10-02 16:43:01 +02:00
|
|
|
MemoryRegion *ram = g_new(MemoryRegion, 1);
|
2009-03-02 17:42:42 +01:00
|
|
|
PCIBus *pci_bus;
|
2011-07-21 01:41:16 +02:00
|
|
|
CPUState *env = NULL;
|
2009-03-02 17:42:42 +01:00
|
|
|
uint64_t elf_entry;
|
|
|
|
uint64_t elf_lowaddr;
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t entry=0;
|
|
|
|
target_phys_addr_t loadaddr=UIMAGE_LOAD_BASE;
|
2009-03-02 17:42:42 +01:00
|
|
|
target_long kernel_size=0;
|
2010-02-02 09:49:03 +01:00
|
|
|
target_ulong dt_base = 0;
|
|
|
|
target_ulong initrd_base = 0;
|
2009-03-02 17:42:42 +01:00
|
|
|
target_long initrd_size=0;
|
|
|
|
int i=0;
|
|
|
|
unsigned int pci_irq_nrs[4] = {1, 2, 3, 4};
|
2011-07-21 01:42:58 +02:00
|
|
|
qemu_irq **irqs, *mpic;
|
2010-08-31 00:22:28 +02:00
|
|
|
DeviceState *dev;
|
2011-07-21 01:41:16 +02:00
|
|
|
CPUState *firstenv = NULL;
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2011-07-21 01:41:16 +02:00
|
|
|
/* Setup CPUs */
|
2011-04-30 23:05:03 +02:00
|
|
|
if (cpu_model == NULL) {
|
|
|
|
cpu_model = "e500v2_v30";
|
|
|
|
}
|
|
|
|
|
2011-07-21 01:42:58 +02:00
|
|
|
irqs = g_malloc0(smp_cpus * sizeof(qemu_irq *));
|
|
|
|
irqs[0] = g_malloc0(smp_cpus * sizeof(qemu_irq) * OPENPIC_OUTPUT_NB);
|
2011-07-21 01:41:16 +02:00
|
|
|
for (i = 0; i < smp_cpus; i++) {
|
|
|
|
qemu_irq *input;
|
|
|
|
env = cpu_ppc_init(cpu_model);
|
|
|
|
if (!env) {
|
|
|
|
fprintf(stderr, "Unable to initialize CPU!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2011-07-21 01:41:16 +02:00
|
|
|
if (!firstenv) {
|
|
|
|
firstenv = env;
|
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2011-07-21 01:42:58 +02:00
|
|
|
irqs[i] = irqs[0] + (i * OPENPIC_OUTPUT_NB);
|
|
|
|
input = (qemu_irq *)env->irq_inputs;
|
|
|
|
irqs[i][OPENPIC_OUTPUT_INT] = input[PPCE500_INPUT_INT];
|
|
|
|
irqs[i][OPENPIC_OUTPUT_CINT] = input[PPCE500_INPUT_CINT];
|
2011-07-21 01:41:16 +02:00
|
|
|
env->spr[SPR_BOOKE_PIR] = env->cpu_index = i;
|
2011-04-30 23:34:53 +02:00
|
|
|
|
2011-09-13 06:00:32 +02:00
|
|
|
ppc_booke_timers_init(env, 400000000, PPC_TIMER_E500);
|
2011-07-21 01:41:16 +02:00
|
|
|
|
|
|
|
/* Register reset handler */
|
2011-07-22 13:32:29 +02:00
|
|
|
if (!i) {
|
|
|
|
/* Primary CPU */
|
|
|
|
struct boot_info *boot_info;
|
|
|
|
boot_info = g_malloc0(sizeof(struct boot_info));
|
|
|
|
qemu_register_reset(mpc8544ds_cpu_reset, env);
|
|
|
|
env->load_info = boot_info;
|
|
|
|
} else {
|
|
|
|
/* Secondary CPUs */
|
|
|
|
qemu_register_reset(mpc8544ds_cpu_reset_sec, env);
|
|
|
|
}
|
2011-07-21 01:41:16 +02:00
|
|
|
}
|
2011-04-30 23:34:53 +02:00
|
|
|
|
2011-07-21 01:41:16 +02:00
|
|
|
env = firstenv;
|
2011-04-30 23:34:53 +02:00
|
|
|
|
2009-03-02 17:42:42 +01:00
|
|
|
/* Fixup Memory size on a alignment boundary */
|
|
|
|
ram_size &= ~(RAM_SIZES_ALIGN - 1);
|
|
|
|
|
|
|
|
/* Register Memory */
|
2011-10-02 16:43:01 +02:00
|
|
|
memory_region_init_ram(ram, NULL, "mpc8544ds.ram", ram_size);
|
|
|
|
memory_region_add_subregion(address_space_mem, 0, ram);
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
/* MPIC */
|
2011-10-09 13:11:50 +02:00
|
|
|
mpic = mpic_init(address_space_mem, MPC8544_MPIC_REGS_BASE,
|
|
|
|
smp_cpus, irqs, NULL);
|
2011-07-21 01:42:58 +02:00
|
|
|
|
|
|
|
if (!mpic) {
|
|
|
|
cpu_abort(env, "MPIC failed to initialize\n");
|
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
/* Serial */
|
2010-03-21 20:47:11 +01:00
|
|
|
if (serial_hds[0]) {
|
2011-08-12 01:07:16 +02:00
|
|
|
serial_mm_init(address_space_mem, MPC8544_SERIAL0_REGS_BASE,
|
2010-10-13 20:41:29 +02:00
|
|
|
0, mpic[12+26], 399193,
|
2011-08-12 01:07:15 +02:00
|
|
|
serial_hds[0], DEVICE_BIG_ENDIAN);
|
2010-03-21 20:47:11 +01:00
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2010-03-21 20:47:11 +01:00
|
|
|
if (serial_hds[1]) {
|
2011-08-12 01:07:16 +02:00
|
|
|
serial_mm_init(address_space_mem, MPC8544_SERIAL1_REGS_BASE,
|
2010-10-13 20:41:29 +02:00
|
|
|
0, mpic[12+26], 399193,
|
2011-08-12 01:07:15 +02:00
|
|
|
serial_hds[0], DEVICE_BIG_ENDIAN);
|
2010-03-21 20:47:11 +01:00
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
|
2011-06-02 13:53:40 +02:00
|
|
|
/* General Utility device */
|
|
|
|
sysbus_create_simple("mpc8544-guts", MPC8544_UTIL_BASE, NULL);
|
|
|
|
|
2009-03-02 17:42:42 +01:00
|
|
|
/* PCI */
|
2010-08-31 00:22:28 +02:00
|
|
|
dev = sysbus_create_varargs("e500-pcihost", MPC8544_PCI_REGS_BASE,
|
|
|
|
mpic[pci_irq_nrs[0]], mpic[pci_irq_nrs[1]],
|
|
|
|
mpic[pci_irq_nrs[2]], mpic[pci_irq_nrs[3]],
|
|
|
|
NULL);
|
2011-05-27 03:23:26 +02:00
|
|
|
pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci.0");
|
2009-03-02 17:42:42 +01:00
|
|
|
if (!pci_bus)
|
|
|
|
printf("couldn't create PCI controller!\n");
|
|
|
|
|
2010-12-08 12:05:49 +01:00
|
|
|
isa_mmio_init(MPC8544_PCI_IO, MPC8544_PCI_IOLEN);
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
if (pci_bus) {
|
|
|
|
/* Register network interfaces. */
|
|
|
|
for (i = 0; i < nb_nics; i++) {
|
2009-09-25 03:53:51 +02:00
|
|
|
pci_nic_init_nofail(&nd_table[i], "virtio", NULL);
|
2009-03-02 17:42:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-22 13:32:29 +02:00
|
|
|
/* Register spinning region */
|
|
|
|
sysbus_create_simple("e500-spin", MPC8544_SPIN_BASE, NULL);
|
|
|
|
|
2009-03-02 17:42:42 +01:00
|
|
|
/* Load kernel. */
|
|
|
|
if (kernel_filename) {
|
|
|
|
kernel_size = load_uimage(kernel_filename, &entry, &loadaddr, NULL);
|
|
|
|
if (kernel_size < 0) {
|
2010-03-14 21:20:59 +01:00
|
|
|
kernel_size = load_elf(kernel_filename, NULL, NULL, &elf_entry,
|
|
|
|
&elf_lowaddr, NULL, 1, ELF_MACHINE, 0);
|
2009-03-02 17:42:42 +01:00
|
|
|
entry = elf_entry;
|
|
|
|
loadaddr = elf_lowaddr;
|
|
|
|
}
|
|
|
|
/* XXX try again as binary */
|
|
|
|
if (kernel_size < 0) {
|
|
|
|
fprintf(stderr, "qemu: could not load kernel '%s'\n",
|
|
|
|
kernel_filename);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load initrd. */
|
|
|
|
if (initrd_filename) {
|
2010-02-02 09:49:03 +01:00
|
|
|
initrd_base = (kernel_size + INITRD_LOAD_PAD) & ~INITRD_PAD_MASK;
|
2009-04-10 05:36:49 +02:00
|
|
|
initrd_size = load_image_targphys(initrd_filename, initrd_base,
|
|
|
|
ram_size - initrd_base);
|
2009-03-02 17:42:42 +01:00
|
|
|
|
|
|
|
if (initrd_size < 0) {
|
|
|
|
fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
|
|
|
|
initrd_filename);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we're loading a kernel directly, we must load the device tree too. */
|
|
|
|
if (kernel_filename) {
|
2011-07-22 13:32:29 +02:00
|
|
|
struct boot_info *boot_info;
|
|
|
|
|
2011-04-30 23:34:53 +02:00
|
|
|
#ifndef CONFIG_FDT
|
|
|
|
cpu_abort(env, "Compiled without FDT support - can't load kernel\n");
|
|
|
|
#endif
|
2010-02-02 09:49:03 +01:00
|
|
|
dt_base = (kernel_size + DTC_LOAD_PAD) & ~DTC_PAD_MASK;
|
2011-06-15 23:34:04 +02:00
|
|
|
if (mpc8544_load_device_tree(env, dt_base, ram_size,
|
2010-02-02 09:49:02 +01:00
|
|
|
initrd_base, initrd_size, kernel_cmdline) < 0) {
|
2009-03-02 17:42:42 +01:00
|
|
|
fprintf(stderr, "couldn't load device tree\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2011-07-21 01:41:16 +02:00
|
|
|
boot_info = env->load_info;
|
2011-04-30 23:34:53 +02:00
|
|
|
boot_info->entry = entry;
|
|
|
|
boot_info->dt_base = dt_base;
|
2009-03-02 17:42:42 +01:00
|
|
|
}
|
|
|
|
|
2011-04-30 23:34:53 +02:00
|
|
|
if (kvm_enabled()) {
|
2009-03-02 17:42:42 +01:00
|
|
|
kvmppc_init();
|
2011-04-30 23:34:53 +02:00
|
|
|
}
|
2009-03-02 17:42:42 +01:00
|
|
|
}
|
|
|
|
|
2009-05-21 01:38:09 +02:00
|
|
|
static QEMUMachine mpc8544ds_machine = {
|
2009-03-02 17:42:42 +01:00
|
|
|
.name = "mpc8544ds",
|
|
|
|
.desc = "mpc8544ds",
|
|
|
|
.init = mpc8544ds_init,
|
2011-07-21 01:45:37 +02:00
|
|
|
.max_cpus = 15,
|
2009-03-02 17:42:42 +01:00
|
|
|
};
|
2009-05-21 01:38:09 +02:00
|
|
|
|
|
|
|
static void mpc8544ds_machine_init(void)
|
|
|
|
{
|
|
|
|
qemu_register_machine(&mpc8544ds_machine);
|
|
|
|
}
|
|
|
|
|
|
|
|
machine_init(mpc8544ds_machine_init);
|