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"
33 #define BINARY_DEVICE_TREE_FILE "mpc8544ds.dtb"
34 #define UIMAGE_LOAD_BASE 0
35 #define DTB_LOAD_BASE 0x600000
36 #define INITRD_LOAD_BASE 0x2000000
38 #define RAM_SIZES_ALIGN (64UL << 20)
40 #define MPC8544_CCSRBAR_BASE 0xE0000000
41 #define MPC8544_MPIC_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x40000)
42 #define MPC8544_SERIAL0_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4500)
43 #define MPC8544_SERIAL1_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4600)
44 #define MPC8544_PCI_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x8000)
45 #define MPC8544_PCI_REGS_SIZE 0x1000
46 #define MPC8544_PCI_IO 0xE1000000
47 #define MPC8544_PCI_IOLEN 0x10000
50 static int mpc8544_copy_soc_cell(void *fdt
, const char *node
, const char *prop
)
55 ret
= kvmppc_read_host_property(node
, prop
, &cell
, sizeof(cell
));
57 fprintf(stderr
, "couldn't read host %s/%s\n", node
, prop
);
61 ret
= qemu_devtree_setprop_cell(fdt
, "/cpus/PowerPC,8544@0",
64 fprintf(stderr
, "couldn't set guest /cpus/PowerPC,8544@0/%s\n", prop
);
73 static void *mpc8544_load_device_tree(target_phys_addr_t addr
,
75 target_phys_addr_t initrd_base
,
76 target_phys_addr_t initrd_size
,
77 const char *kernel_cmdline
)
81 uint32_t mem_reg_property
[] = {0, ramsize
};
86 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, BINARY_DEVICE_TREE_FILE
);
90 fdt
= load_device_tree(filename
, &fdt_size
);
96 /* Manipulate device tree in memory. */
97 ret
= qemu_devtree_setprop(fdt
, "/memory", "reg", mem_reg_property
,
98 sizeof(mem_reg_property
));
100 fprintf(stderr
, "couldn't set /memory/reg\n");
102 ret
= qemu_devtree_setprop_cell(fdt
, "/chosen", "linux,initrd-start",
105 fprintf(stderr
, "couldn't set /chosen/linux,initrd-start\n");
107 ret
= qemu_devtree_setprop_cell(fdt
, "/chosen", "linux,initrd-end",
108 (initrd_base
+ initrd_size
));
110 fprintf(stderr
, "couldn't set /chosen/linux,initrd-end\n");
112 ret
= qemu_devtree_setprop_string(fdt
, "/chosen", "bootargs",
115 fprintf(stderr
, "couldn't set /chosen/bootargs\n");
122 if ((dp
= opendir("/proc/device-tree/cpus/")) == NULL
) {
123 printf("Can't open directory /proc/device-tree/cpus/\n");
128 while ((dirp
= readdir(dp
)) != NULL
) {
129 if (strncmp(dirp
->d_name
, "PowerPC", 7) == 0) {
130 snprintf(buf
, 128, "/cpus/%s", dirp
->d_name
);
135 if (buf
[0] == '\0') {
136 printf("Unknow host!\n");
140 mpc8544_copy_soc_cell(fdt
, buf
, "clock-frequency");
141 mpc8544_copy_soc_cell(fdt
, buf
, "timebase-frequency");
144 cpu_physical_memory_write (addr
, (void *)fdt
, fdt_size
);
152 static void mpc8544ds_init(ram_addr_t ram_size
,
153 const char *boot_device
,
154 const char *kernel_filename
,
155 const char *kernel_cmdline
,
156 const char *initrd_filename
,
157 const char *cpu_model
)
162 uint64_t elf_lowaddr
;
163 target_ulong entry
=0;
164 target_ulong loadaddr
=UIMAGE_LOAD_BASE
;
165 target_long kernel_size
=0;
166 target_ulong dt_base
=DTB_LOAD_BASE
;
167 target_ulong initrd_base
=INITRD_LOAD_BASE
;
168 target_long initrd_size
=0;
171 unsigned int pci_irq_nrs
[4] = {1, 2, 3, 4};
172 qemu_irq
*irqs
, *mpic
, *pci_irqs
;
173 SerialState
* serial
[2];
176 env
= cpu_ppc_init("e500v2_v30");
178 fprintf(stderr
, "Unable to initialize CPU!\n");
182 /* Fixup Memory size on a alignment boundary */
183 ram_size
&= ~(RAM_SIZES_ALIGN
- 1);
185 /* Register Memory */
186 cpu_register_physical_memory(0, ram_size
, qemu_ram_alloc(ram_size
));
189 irqs
= qemu_mallocz(sizeof(qemu_irq
) * OPENPIC_OUTPUT_NB
);
190 irqs
[OPENPIC_OUTPUT_INT
] = ((qemu_irq
*)env
->irq_inputs
)[PPCE500_INPUT_INT
];
191 irqs
[OPENPIC_OUTPUT_CINT
] = ((qemu_irq
*)env
->irq_inputs
)[PPCE500_INPUT_CINT
];
192 mpic
= mpic_init(MPC8544_MPIC_REGS_BASE
, 1, &irqs
, NULL
);
196 serial
[0] = serial_mm_init(MPC8544_SERIAL0_REGS_BASE
,
197 0, mpic
[12+26], 399193,
201 serial
[0] = serial_mm_init(MPC8544_SERIAL1_REGS_BASE
,
202 0, mpic
[12+26], 399193,
206 pci_irqs
= qemu_malloc(sizeof(qemu_irq
) * 4);
207 pci_irqs
[0] = mpic
[pci_irq_nrs
[0]];
208 pci_irqs
[1] = mpic
[pci_irq_nrs
[1]];
209 pci_irqs
[2] = mpic
[pci_irq_nrs
[2]];
210 pci_irqs
[3] = mpic
[pci_irq_nrs
[3]];
211 pci_bus
= ppce500_pci_init(pci_irqs
, MPC8544_PCI_REGS_BASE
);
213 printf("couldn't create PCI controller!\n");
215 isa_mmio_init(MPC8544_PCI_IO
, MPC8544_PCI_IOLEN
);
218 /* Register network interfaces. */
219 for (i
= 0; i
< nb_nics
; i
++) {
220 pci_nic_init(&nd_table
[i
], "virtio", NULL
);
225 if (kernel_filename
) {
226 kernel_size
= load_uimage(kernel_filename
, &entry
, &loadaddr
, NULL
);
227 if (kernel_size
< 0) {
228 kernel_size
= load_elf(kernel_filename
, 0, &elf_entry
, &elf_lowaddr
,
231 loadaddr
= elf_lowaddr
;
233 /* XXX try again as binary */
234 if (kernel_size
< 0) {
235 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
242 if (initrd_filename
) {
243 initrd_size
= load_image_targphys(initrd_filename
, initrd_base
,
244 ram_size
- initrd_base
);
246 if (initrd_size
< 0) {
247 fprintf(stderr
, "qemu: could not load initial ram disk '%s'\n",
253 /* If we're loading a kernel directly, we must load the device tree too. */
254 if (kernel_filename
) {
255 fdt
= mpc8544_load_device_tree(dt_base
, ram_size
,
256 initrd_base
, initrd_size
, kernel_cmdline
);
258 fprintf(stderr
, "couldn't load device tree\n");
262 /* Set initial guest state. */
263 env
->gpr
[1] = (16<<20) - 8;
264 env
->gpr
[3] = dt_base
;
266 /* XXX we currently depend on KVM to create some initial TLB entries. */
275 static QEMUMachine mpc8544ds_machine
= {
278 .init
= mpc8544ds_init
,
281 static void mpc8544ds_machine_init(void)
283 qemu_register_machine(&mpc8544ds_machine
);
286 machine_init(mpc8544ds_machine_init
);