2 * Qemu PowerPC MPC8544DS board emualtion
4 * Copyright (C) 2009 Freescale Semiconductor, Inc. All rights reserved.
6 * Author: Yu Liu, <yu.liu@freescale.com>
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
61 static int mpc8544_copy_soc_cell(void *fdt
, const char *node
, const char *prop
)
66 ret
= kvmppc_read_host_property(node
, prop
, &cell
, sizeof(cell
));
68 fprintf(stderr
, "couldn't read host %s/%s\n", node
, prop
);
72 ret
= qemu_devtree_setprop_cell(fdt
, "/cpus/PowerPC,8544@0",
75 fprintf(stderr
, "couldn't set guest /cpus/PowerPC,8544@0/%s\n", prop
);
84 static int mpc8544_load_device_tree(target_phys_addr_t addr
,
86 target_phys_addr_t initrd_base
,
87 target_phys_addr_t initrd_size
,
88 const char *kernel_cmdline
)
92 uint32_t mem_reg_property
[] = {0, cpu_to_be32(ramsize
)};
97 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, BINARY_DEVICE_TREE_FILE
);
101 fdt
= load_device_tree(filename
, &fdt_size
);
107 /* Manipulate device tree in memory. */
108 ret
= qemu_devtree_setprop(fdt
, "/memory", "reg", mem_reg_property
,
109 sizeof(mem_reg_property
));
111 fprintf(stderr
, "couldn't set /memory/reg\n");
114 ret
= qemu_devtree_setprop_cell(fdt
, "/chosen", "linux,initrd-start",
117 fprintf(stderr
, "couldn't set /chosen/linux,initrd-start\n");
120 ret
= qemu_devtree_setprop_cell(fdt
, "/chosen", "linux,initrd-end",
121 (initrd_base
+ initrd_size
));
123 fprintf(stderr
, "couldn't set /chosen/linux,initrd-end\n");
127 ret
= qemu_devtree_setprop_string(fdt
, "/chosen", "bootargs",
130 fprintf(stderr
, "couldn't set /chosen/bootargs\n");
137 if ((dp
= opendir("/proc/device-tree/cpus/")) == NULL
) {
138 printf("Can't open directory /proc/device-tree/cpus/\n");
144 while ((dirp
= readdir(dp
)) != NULL
) {
145 if (strncmp(dirp
->d_name
, "PowerPC", 7) == 0) {
146 snprintf(buf
, 128, "/cpus/%s", dirp
->d_name
);
151 if (buf
[0] == '\0') {
152 printf("Unknow host!\n");
157 mpc8544_copy_soc_cell(fdt
, buf
, "clock-frequency");
158 mpc8544_copy_soc_cell(fdt
, buf
, "timebase-frequency");
160 const uint32_t freq
= 400000000;
162 qemu_devtree_setprop_cell(fdt
, "/cpus/PowerPC,8544@0",
163 "clock-frequency", freq
);
164 qemu_devtree_setprop_cell(fdt
, "/cpus/PowerPC,8544@0",
165 "timebase-frequency", freq
);
168 ret
= rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE
, fdt
, fdt_size
, addr
);
177 /* Create -kernel TLB entries for BookE, linearly spanning 256MB. */
178 static void mmubooke_create_initial_mapping(CPUState
*env
,
180 target_phys_addr_t pa
)
182 ppcemb_tlb_t
*tlb
= booke206_get_tlbe(env
, 1, 0, 0);
185 tlb
->prot
= PAGE_VALID
| ((PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
) << 4);
186 tlb
->size
= 256 * 1024 * 1024;
187 tlb
->EPN
= va
& TARGET_PAGE_MASK
;
188 tlb
->RPN
= pa
& TARGET_PAGE_MASK
;
192 static void mpc8544ds_cpu_reset(void *opaque
)
194 CPUState
*env
= opaque
;
195 struct boot_info
*bi
= env
->load_info
;
199 /* Set initial guest state. */
200 env
->gpr
[1] = (16<<20) - 8;
201 env
->gpr
[3] = bi
->dt_base
;
202 env
->nip
= bi
->entry
;
203 mmubooke_create_initial_mapping(env
, 0, 0);
206 static void mpc8544ds_init(ram_addr_t ram_size
,
207 const char *boot_device
,
208 const char *kernel_filename
,
209 const char *kernel_cmdline
,
210 const char *initrd_filename
,
211 const char *cpu_model
)
216 uint64_t elf_lowaddr
;
217 target_phys_addr_t entry
=0;
218 target_phys_addr_t loadaddr
=UIMAGE_LOAD_BASE
;
219 target_long kernel_size
=0;
220 target_ulong dt_base
= 0;
221 target_ulong initrd_base
= 0;
222 target_long initrd_size
=0;
224 unsigned int pci_irq_nrs
[4] = {1, 2, 3, 4};
225 qemu_irq
*irqs
, *mpic
;
227 struct boot_info
*boot_info
;
230 if (cpu_model
== NULL
) {
231 cpu_model
= "e500v2_v30";
234 env
= cpu_ppc_init(cpu_model
);
236 fprintf(stderr
, "Unable to initialize CPU!\n");
240 /* XXX register timer? */
241 ppc_emb_timers_init(env
, 400000000, PPC_INTERRUPT_DECR
);
242 ppc_dcr_init(env
, NULL
, NULL
);
244 /* Register reset handler */
245 qemu_register_reset(mpc8544ds_cpu_reset
, env
);
247 /* Fixup Memory size on a alignment boundary */
248 ram_size
&= ~(RAM_SIZES_ALIGN
- 1);
250 /* Register Memory */
251 cpu_register_physical_memory(0, ram_size
, qemu_ram_alloc(NULL
,
252 "mpc8544ds.ram", ram_size
));
255 irqs
= qemu_mallocz(sizeof(qemu_irq
) * OPENPIC_OUTPUT_NB
);
256 irqs
[OPENPIC_OUTPUT_INT
] = ((qemu_irq
*)env
->irq_inputs
)[PPCE500_INPUT_INT
];
257 irqs
[OPENPIC_OUTPUT_CINT
] = ((qemu_irq
*)env
->irq_inputs
)[PPCE500_INPUT_CINT
];
258 mpic
= mpic_init(MPC8544_MPIC_REGS_BASE
, 1, &irqs
, NULL
);
262 serial_mm_init(MPC8544_SERIAL0_REGS_BASE
,
263 0, mpic
[12+26], 399193,
264 serial_hds
[0], 1, 1);
268 serial_mm_init(MPC8544_SERIAL1_REGS_BASE
,
269 0, mpic
[12+26], 399193,
270 serial_hds
[0], 1, 1);
274 dev
= sysbus_create_varargs("e500-pcihost", MPC8544_PCI_REGS_BASE
,
275 mpic
[pci_irq_nrs
[0]], mpic
[pci_irq_nrs
[1]],
276 mpic
[pci_irq_nrs
[2]], mpic
[pci_irq_nrs
[3]],
278 pci_bus
= (PCIBus
*)qdev_get_child_bus(dev
, "pci.0");
280 printf("couldn't create PCI controller!\n");
282 isa_mmio_init(MPC8544_PCI_IO
, MPC8544_PCI_IOLEN
);
285 /* Register network interfaces. */
286 for (i
= 0; i
< nb_nics
; i
++) {
287 pci_nic_init_nofail(&nd_table
[i
], "virtio", NULL
);
292 if (kernel_filename
) {
293 kernel_size
= load_uimage(kernel_filename
, &entry
, &loadaddr
, NULL
);
294 if (kernel_size
< 0) {
295 kernel_size
= load_elf(kernel_filename
, NULL
, NULL
, &elf_entry
,
296 &elf_lowaddr
, NULL
, 1, ELF_MACHINE
, 0);
298 loadaddr
= elf_lowaddr
;
300 /* XXX try again as binary */
301 if (kernel_size
< 0) {
302 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
309 if (initrd_filename
) {
310 initrd_base
= (kernel_size
+ INITRD_LOAD_PAD
) & ~INITRD_PAD_MASK
;
311 initrd_size
= load_image_targphys(initrd_filename
, initrd_base
,
312 ram_size
- initrd_base
);
314 if (initrd_size
< 0) {
315 fprintf(stderr
, "qemu: could not load initial ram disk '%s'\n",
321 boot_info
= qemu_mallocz(sizeof(struct boot_info
));
323 /* If we're loading a kernel directly, we must load the device tree too. */
324 if (kernel_filename
) {
326 cpu_abort(env
, "Compiled without FDT support - can't load kernel\n");
328 dt_base
= (kernel_size
+ DTC_LOAD_PAD
) & ~DTC_PAD_MASK
;
329 if (mpc8544_load_device_tree(dt_base
, ram_size
,
330 initrd_base
, initrd_size
, kernel_cmdline
) < 0) {
331 fprintf(stderr
, "couldn't load device tree\n");
335 boot_info
->entry
= entry
;
336 boot_info
->dt_base
= dt_base
;
338 env
->load_info
= boot_info
;
345 static QEMUMachine mpc8544ds_machine
= {
348 .init
= mpc8544ds_init
,
351 static void mpc8544ds_machine_init(void)
353 qemu_register_machine(&mpc8544ds_machine
);
356 machine_init(mpc8544ds_machine_init
);