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"
35 #define BINARY_DEVICE_TREE_FILE "mpc8544ds.dtb"
36 #define UIMAGE_LOAD_BASE 0
37 #define DTC_LOAD_PAD 0x500000
38 #define DTC_PAD_MASK 0xFFFFF
39 #define INITRD_LOAD_PAD 0x2000000
40 #define INITRD_PAD_MASK 0xFFFFFF
42 #define RAM_SIZES_ALIGN (64UL << 20)
44 #define MPC8544_CCSRBAR_BASE 0xE0000000
45 #define MPC8544_MPIC_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x40000)
46 #define MPC8544_SERIAL0_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4500)
47 #define MPC8544_SERIAL1_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4600)
48 #define MPC8544_PCI_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x8000)
49 #define MPC8544_PCI_REGS_SIZE 0x1000
50 #define MPC8544_PCI_IO 0xE1000000
51 #define MPC8544_PCI_IOLEN 0x10000
54 static int mpc8544_copy_soc_cell(void *fdt
, const char *node
, const char *prop
)
59 ret
= kvmppc_read_host_property(node
, prop
, &cell
, sizeof(cell
));
61 fprintf(stderr
, "couldn't read host %s/%s\n", node
, prop
);
65 ret
= qemu_devtree_setprop_cell(fdt
, "/cpus/PowerPC,8544@0",
68 fprintf(stderr
, "couldn't set guest /cpus/PowerPC,8544@0/%s\n", prop
);
77 static int mpc8544_load_device_tree(target_phys_addr_t addr
,
79 target_phys_addr_t initrd_base
,
80 target_phys_addr_t initrd_size
,
81 const char *kernel_cmdline
)
85 uint32_t mem_reg_property
[] = {0, ramsize
};
90 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, BINARY_DEVICE_TREE_FILE
);
94 fdt
= load_device_tree(filename
, &fdt_size
);
100 /* Manipulate device tree in memory. */
101 ret
= qemu_devtree_setprop(fdt
, "/memory", "reg", mem_reg_property
,
102 sizeof(mem_reg_property
));
104 fprintf(stderr
, "couldn't set /memory/reg\n");
106 ret
= qemu_devtree_setprop_cell(fdt
, "/chosen", "linux,initrd-start",
109 fprintf(stderr
, "couldn't set /chosen/linux,initrd-start\n");
111 ret
= qemu_devtree_setprop_cell(fdt
, "/chosen", "linux,initrd-end",
112 (initrd_base
+ initrd_size
));
114 fprintf(stderr
, "couldn't set /chosen/linux,initrd-end\n");
116 ret
= qemu_devtree_setprop_string(fdt
, "/chosen", "bootargs",
119 fprintf(stderr
, "couldn't set /chosen/bootargs\n");
126 if ((dp
= opendir("/proc/device-tree/cpus/")) == NULL
) {
127 printf("Can't open directory /proc/device-tree/cpus/\n");
133 while ((dirp
= readdir(dp
)) != NULL
) {
134 if (strncmp(dirp
->d_name
, "PowerPC", 7) == 0) {
135 snprintf(buf
, 128, "/cpus/%s", dirp
->d_name
);
140 if (buf
[0] == '\0') {
141 printf("Unknow host!\n");
146 mpc8544_copy_soc_cell(fdt
, buf
, "clock-frequency");
147 mpc8544_copy_soc_cell(fdt
, buf
, "timebase-frequency");
150 ret
= rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE
, fdt
, fdt_size
, addr
);
159 static void mpc8544ds_init(ram_addr_t ram_size
,
160 const char *boot_device
,
161 const char *kernel_filename
,
162 const char *kernel_cmdline
,
163 const char *initrd_filename
,
164 const char *cpu_model
)
169 uint64_t elf_lowaddr
;
170 target_phys_addr_t entry
=0;
171 target_phys_addr_t loadaddr
=UIMAGE_LOAD_BASE
;
172 target_long kernel_size
=0;
173 target_ulong dt_base
= 0;
174 target_ulong initrd_base
= 0;
175 target_long initrd_size
=0;
177 unsigned int pci_irq_nrs
[4] = {1, 2, 3, 4};
178 qemu_irq
*irqs
, *mpic
, *pci_irqs
;
179 SerialState
* serial
[2];
182 env
= cpu_ppc_init("e500v2_v30");
184 fprintf(stderr
, "Unable to initialize CPU!\n");
188 /* Fixup Memory size on a alignment boundary */
189 ram_size
&= ~(RAM_SIZES_ALIGN
- 1);
191 /* Register Memory */
192 cpu_register_physical_memory(0, ram_size
, qemu_ram_alloc(NULL
,
193 "mpc8544ds.ram", ram_size
));
196 irqs
= qemu_mallocz(sizeof(qemu_irq
) * OPENPIC_OUTPUT_NB
);
197 irqs
[OPENPIC_OUTPUT_INT
] = ((qemu_irq
*)env
->irq_inputs
)[PPCE500_INPUT_INT
];
198 irqs
[OPENPIC_OUTPUT_CINT
] = ((qemu_irq
*)env
->irq_inputs
)[PPCE500_INPUT_CINT
];
199 mpic
= mpic_init(MPC8544_MPIC_REGS_BASE
, 1, &irqs
, NULL
);
203 serial
[0] = serial_mm_init(MPC8544_SERIAL0_REGS_BASE
,
204 0, mpic
[12+26], 399193,
205 serial_hds
[0], 1, 1);
209 serial
[0] = serial_mm_init(MPC8544_SERIAL1_REGS_BASE
,
210 0, mpic
[12+26], 399193,
211 serial_hds
[0], 1, 1);
215 pci_irqs
= qemu_malloc(sizeof(qemu_irq
) * 4);
216 pci_irqs
[0] = mpic
[pci_irq_nrs
[0]];
217 pci_irqs
[1] = mpic
[pci_irq_nrs
[1]];
218 pci_irqs
[2] = mpic
[pci_irq_nrs
[2]];
219 pci_irqs
[3] = mpic
[pci_irq_nrs
[3]];
220 pci_bus
= ppce500_pci_init(pci_irqs
, MPC8544_PCI_REGS_BASE
);
222 printf("couldn't create PCI controller!\n");
224 isa_mmio_init(MPC8544_PCI_IO
, MPC8544_PCI_IOLEN
, 1);
227 /* Register network interfaces. */
228 for (i
= 0; i
< nb_nics
; i
++) {
229 pci_nic_init_nofail(&nd_table
[i
], "virtio", NULL
);
234 if (kernel_filename
) {
235 kernel_size
= load_uimage(kernel_filename
, &entry
, &loadaddr
, NULL
);
236 if (kernel_size
< 0) {
237 kernel_size
= load_elf(kernel_filename
, NULL
, NULL
, &elf_entry
,
238 &elf_lowaddr
, NULL
, 1, ELF_MACHINE
, 0);
240 loadaddr
= elf_lowaddr
;
242 /* XXX try again as binary */
243 if (kernel_size
< 0) {
244 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
251 if (initrd_filename
) {
252 initrd_base
= (kernel_size
+ INITRD_LOAD_PAD
) & ~INITRD_PAD_MASK
;
253 initrd_size
= load_image_targphys(initrd_filename
, initrd_base
,
254 ram_size
- initrd_base
);
256 if (initrd_size
< 0) {
257 fprintf(stderr
, "qemu: could not load initial ram disk '%s'\n",
263 /* If we're loading a kernel directly, we must load the device tree too. */
264 if (kernel_filename
) {
265 dt_base
= (kernel_size
+ DTC_LOAD_PAD
) & ~DTC_PAD_MASK
;
266 if (mpc8544_load_device_tree(dt_base
, ram_size
,
267 initrd_base
, initrd_size
, kernel_cmdline
) < 0) {
268 fprintf(stderr
, "couldn't load device tree\n");
272 cpu_synchronize_state(env
);
274 /* Set initial guest state. */
275 env
->gpr
[1] = (16<<20) - 8;
276 env
->gpr
[3] = dt_base
;
278 /* XXX we currently depend on KVM to create some initial TLB entries. */
287 static QEMUMachine mpc8544ds_machine
= {
290 .init
= mpc8544ds_init
,
293 static void mpc8544ds_machine_init(void)
295 qemu_register_machine(&mpc8544ds_machine
);
298 machine_init(mpc8544ds_machine_init
);