2 * Qemu PowerPC MPC8544DS board emualtion
4 * Copyright (C) 2009 Freescale Semiconductor, Inc. All rights reserved.
8 * This file is derived from hw/ppc440_bamboo.c,
9 * the copyright for that material belongs to the original owners.
11 * This is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
20 #include "qemu-common.h"
29 #include "device_tree.h"
36 #define BINARY_DEVICE_TREE_FILE "mpc8544ds.dtb"
37 #define UIMAGE_LOAD_BASE 0
38 #define DTC_LOAD_PAD 0x500000
39 #define DTC_PAD_MASK 0xFFFFF
40 #define INITRD_LOAD_PAD 0x2000000
41 #define INITRD_PAD_MASK 0xFFFFFF
43 #define RAM_SIZES_ALIGN (64UL << 20)
45 #define MPC8544_CCSRBAR_BASE 0xE0000000
46 #define MPC8544_MPIC_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x40000)
47 #define MPC8544_SERIAL0_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4500)
48 #define MPC8544_SERIAL1_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4600)
49 #define MPC8544_PCI_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x8000)
50 #define MPC8544_PCI_REGS_SIZE 0x1000
51 #define MPC8544_PCI_IO 0xE1000000
52 #define MPC8544_PCI_IOLEN 0x10000
53 #define MPC8544_UTIL_BASE (MPC8544_CCSRBAR_BASE + 0xe0000)
62 static int mpc8544_copy_soc_cell(void *fdt, const char *node, const char *prop)
67 ret = kvmppc_read_host_property(node, prop, &cell, sizeof(cell));
69 fprintf(stderr, "couldn't read host %s/%s\n", node, prop);
73 ret = qemu_devtree_setprop_cell(fdt, "/cpus/PowerPC,8544@0",
76 fprintf(stderr, "couldn't set guest /cpus/PowerPC,8544@0/%s\n", prop);
85 static int mpc8544_load_device_tree(CPUState *env,
86 target_phys_addr_t addr,
88 target_phys_addr_t initrd_base,
89 target_phys_addr_t initrd_size,
90 const char *kernel_cmdline)
94 uint32_t mem_reg_property[] = {0, cpu_to_be32(ramsize)};
98 uint8_t hypercall[16];
100 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, BINARY_DEVICE_TREE_FILE);
104 fdt = load_device_tree(filename, &fdt_size);
110 /* Manipulate device tree in memory. */
111 ret = qemu_devtree_setprop(fdt, "/memory", "reg", mem_reg_property,
112 sizeof(mem_reg_property));
114 fprintf(stderr, "couldn't set /memory/reg\n");
117 ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-start",
120 fprintf(stderr, "couldn't set /chosen/linux,initrd-start\n");
123 ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-end",
124 (initrd_base + initrd_size));
126 fprintf(stderr, "couldn't set /chosen/linux,initrd-end\n");
130 ret = qemu_devtree_setprop_string(fdt, "/chosen", "bootargs",
133 fprintf(stderr, "couldn't set /chosen/bootargs\n");
140 if ((dp = opendir("/proc/device-tree/cpus/")) == NULL) {
141 printf("Can't open directory /proc/device-tree/cpus/\n");
147 while ((dirp = readdir(dp)) != NULL) {
148 if (strncmp(dirp->d_name, "PowerPC", 7) == 0) {
149 snprintf(buf, 128, "/cpus/%s", dirp->d_name);
154 if (buf[0] == '\0') {
155 printf("Unknow host!\n");
160 mpc8544_copy_soc_cell(fdt, buf, "clock-frequency");
161 mpc8544_copy_soc_cell(fdt, buf, "timebase-frequency");
163 /* indicate KVM hypercall interface */
164 qemu_devtree_setprop_string(fdt, "/hypervisor", "compatible",
166 kvmppc_get_hypercall(env, hypercall, sizeof(hypercall));
167 qemu_devtree_setprop(fdt, "/hypervisor", "hcall-instructions",
168 hypercall, sizeof(hypercall));
170 const uint32_t freq = 400000000;
172 qemu_devtree_setprop_cell(fdt, "/cpus/PowerPC,8544@0",
173 "clock-frequency", freq);
174 qemu_devtree_setprop_cell(fdt, "/cpus/PowerPC,8544@0",
175 "timebase-frequency", freq);
178 ret = rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE, fdt, fdt_size, addr);
187 /* Create -kernel TLB entries for BookE, linearly spanning 256MB. */
188 static inline target_phys_addr_t booke206_page_size_to_tlb(uint64_t size)
190 return (ffs(size >> 10) - 1) >> 1;
193 static void mmubooke_create_initial_mapping(CPUState *env,
195 target_phys_addr_t pa)
197 ppcmas_tlb_t *tlb = booke206_get_tlbm(env, 1, 0, 0);
198 target_phys_addr_t size;
200 size = (booke206_page_size_to_tlb(256 * 1024 * 1024) << MAS1_TSIZE_SHIFT);
201 tlb->mas1 = MAS1_VALID | size;
202 tlb->mas2 = va & TARGET_PAGE_MASK;
203 tlb->mas7_3 = pa & TARGET_PAGE_MASK;
204 tlb->mas7_3 |= MAS3_UR | MAS3_UW | MAS3_UX | MAS3_SR | MAS3_SW | MAS3_SX;
207 static void mpc8544ds_cpu_reset(void *opaque)
209 CPUState *env = opaque;
210 struct boot_info *bi = env->load_info;
214 /* Set initial guest state. */
215 env->gpr[1] = (16<<20) - 8;
216 env->gpr[3] = bi->dt_base;
217 env->nip = bi->entry;
218 mmubooke_create_initial_mapping(env, 0, 0);
221 static void mpc8544ds_init(ram_addr_t ram_size,
222 const char *boot_device,
223 const char *kernel_filename,
224 const char *kernel_cmdline,
225 const char *initrd_filename,
226 const char *cpu_model)
231 uint64_t elf_lowaddr;
232 target_phys_addr_t entry=0;
233 target_phys_addr_t loadaddr=UIMAGE_LOAD_BASE;
234 target_long kernel_size=0;
235 target_ulong dt_base = 0;
236 target_ulong initrd_base = 0;
237 target_long initrd_size=0;
239 unsigned int pci_irq_nrs[4] = {1, 2, 3, 4};
240 qemu_irq *irqs, *mpic;
242 struct boot_info *boot_info;
245 if (cpu_model == NULL) {
246 cpu_model = "e500v2_v30";
249 env = cpu_ppc_init(cpu_model);
251 fprintf(stderr, "Unable to initialize CPU!\n");
255 /* XXX register timer? */
256 ppc_emb_timers_init(env, 400000000, PPC_INTERRUPT_DECR);
257 ppc_dcr_init(env, NULL, NULL);
259 /* Register reset handler */
260 qemu_register_reset(mpc8544ds_cpu_reset, env);
262 /* Fixup Memory size on a alignment boundary */
263 ram_size &= ~(RAM_SIZES_ALIGN - 1);
265 /* Register Memory */
266 cpu_register_physical_memory(0, ram_size, qemu_ram_alloc(NULL,
267 "mpc8544ds.ram", ram_size));
270 irqs = qemu_mallocz(sizeof(qemu_irq) * OPENPIC_OUTPUT_NB);
271 irqs[OPENPIC_OUTPUT_INT] = ((qemu_irq *)env->irq_inputs)[PPCE500_INPUT_INT];
272 irqs[OPENPIC_OUTPUT_CINT] = ((qemu_irq *)env->irq_inputs)[PPCE500_INPUT_CINT];
273 mpic = mpic_init(MPC8544_MPIC_REGS_BASE, 1, &irqs, NULL);
277 serial_mm_init(MPC8544_SERIAL0_REGS_BASE,
278 0, mpic[12+26], 399193,
279 serial_hds[0], 1, 1);
283 serial_mm_init(MPC8544_SERIAL1_REGS_BASE,
284 0, mpic[12+26], 399193,
285 serial_hds[0], 1, 1);
288 /* General Utility device */
289 sysbus_create_simple("mpc8544-guts", MPC8544_UTIL_BASE, NULL);
292 dev = sysbus_create_varargs("e500-pcihost", MPC8544_PCI_REGS_BASE,
293 mpic[pci_irq_nrs[0]], mpic[pci_irq_nrs[1]],
294 mpic[pci_irq_nrs[2]], mpic[pci_irq_nrs[3]],
296 pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci.0");
298 printf("couldn't create PCI controller!\n");
300 isa_mmio_init(MPC8544_PCI_IO, MPC8544_PCI_IOLEN);
303 /* Register network interfaces. */
304 for (i = 0; i < nb_nics; i++) {
305 pci_nic_init_nofail(&nd_table[i], "virtio", NULL);
310 if (kernel_filename) {
311 kernel_size = load_uimage(kernel_filename, &entry, &loadaddr, NULL);
312 if (kernel_size < 0) {
313 kernel_size = load_elf(kernel_filename, NULL, NULL, &elf_entry,
314 &elf_lowaddr, NULL, 1, ELF_MACHINE, 0);
316 loadaddr = elf_lowaddr;
318 /* XXX try again as binary */
319 if (kernel_size < 0) {
320 fprintf(stderr, "qemu: could not load kernel '%s'\n",
327 if (initrd_filename) {
328 initrd_base = (kernel_size + INITRD_LOAD_PAD) & ~INITRD_PAD_MASK;
329 initrd_size = load_image_targphys(initrd_filename, initrd_base,
330 ram_size - initrd_base);
332 if (initrd_size < 0) {
333 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
339 boot_info = qemu_mallocz(sizeof(struct boot_info));
341 /* If we're loading a kernel directly, we must load the device tree too. */
342 if (kernel_filename) {
344 cpu_abort(env, "Compiled without FDT support - can't load kernel\n");
346 dt_base = (kernel_size + DTC_LOAD_PAD) & ~DTC_PAD_MASK;
347 if (mpc8544_load_device_tree(env, dt_base, ram_size,
348 initrd_base, initrd_size, kernel_cmdline) < 0) {
349 fprintf(stderr, "couldn't load device tree\n");
353 boot_info->entry = entry;
354 boot_info->dt_base = dt_base;
356 env->load_info = boot_info;
363 static QEMUMachine mpc8544ds_machine = {
366 .init = mpc8544ds_init,
369 static void mpc8544ds_machine_init(void)
371 qemu_register_machine(&mpc8544ds_machine);
374 machine_init(mpc8544ds_machine_init);