]> git.proxmox.com Git - qemu.git/blob - hw/ppce500_mpc8544ds.c
PPC: E500: Add PV spinning code
[qemu.git] / hw / ppce500_mpc8544ds.c
1 /*
2 * Qemu PowerPC MPC8544DS board emualtion
3 *
4 * Copyright (C) 2009 Freescale Semiconductor, Inc. All rights reserved.
5 *
6 * Author: Yu Liu, <yu.liu@freescale.com>
7 *
8 * This file is derived from hw/ppc440_bamboo.c,
9 * the copyright for that material belongs to the original owners.
10 *
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.
15 */
16
17 #include "config.h"
18 #include "qemu-common.h"
19 #include "net.h"
20 #include "hw.h"
21 #include "pc.h"
22 #include "pci.h"
23 #include "boards.h"
24 #include "sysemu.h"
25 #include "kvm.h"
26 #include "kvm_ppc.h"
27 #include "device_tree.h"
28 #include "openpic.h"
29 #include "ppc.h"
30 #include "loader.h"
31 #include "elf.h"
32 #include "sysbus.h"
33
34 #define BINARY_DEVICE_TREE_FILE "mpc8544ds.dtb"
35 #define UIMAGE_LOAD_BASE 0
36 #define DTC_LOAD_PAD 0x500000
37 #define DTC_PAD_MASK 0xFFFFF
38 #define INITRD_LOAD_PAD 0x2000000
39 #define INITRD_PAD_MASK 0xFFFFFF
40
41 #define RAM_SIZES_ALIGN (64UL << 20)
42
43 #define MPC8544_CCSRBAR_BASE 0xE0000000
44 #define MPC8544_MPIC_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x40000)
45 #define MPC8544_SERIAL0_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4500)
46 #define MPC8544_SERIAL1_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x4600)
47 #define MPC8544_PCI_REGS_BASE (MPC8544_CCSRBAR_BASE + 0x8000)
48 #define MPC8544_PCI_REGS_SIZE 0x1000
49 #define MPC8544_PCI_IO 0xE1000000
50 #define MPC8544_PCI_IOLEN 0x10000
51 #define MPC8544_UTIL_BASE (MPC8544_CCSRBAR_BASE + 0xe0000)
52 #define MPC8544_SPIN_BASE 0xEF000000
53
54 struct boot_info
55 {
56 uint32_t dt_base;
57 uint32_t entry;
58 };
59
60 static int mpc8544_load_device_tree(CPUState *env,
61 target_phys_addr_t addr,
62 uint32_t ramsize,
63 target_phys_addr_t initrd_base,
64 target_phys_addr_t initrd_size,
65 const char *kernel_cmdline)
66 {
67 int ret = -1;
68 #ifdef CONFIG_FDT
69 uint32_t mem_reg_property[] = {0, cpu_to_be32(ramsize)};
70 char *filename;
71 int fdt_size;
72 void *fdt;
73 uint8_t hypercall[16];
74 uint32_t clock_freq = 400000000;
75 uint32_t tb_freq = 400000000;
76 int i;
77
78 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, BINARY_DEVICE_TREE_FILE);
79 if (!filename) {
80 goto out;
81 }
82 fdt = load_device_tree(filename, &fdt_size);
83 g_free(filename);
84 if (fdt == NULL) {
85 goto out;
86 }
87
88 /* Manipulate device tree in memory. */
89 ret = qemu_devtree_setprop(fdt, "/memory", "reg", mem_reg_property,
90 sizeof(mem_reg_property));
91 if (ret < 0)
92 fprintf(stderr, "couldn't set /memory/reg\n");
93
94 if (initrd_size) {
95 ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-start",
96 initrd_base);
97 if (ret < 0) {
98 fprintf(stderr, "couldn't set /chosen/linux,initrd-start\n");
99 }
100
101 ret = qemu_devtree_setprop_cell(fdt, "/chosen", "linux,initrd-end",
102 (initrd_base + initrd_size));
103 if (ret < 0) {
104 fprintf(stderr, "couldn't set /chosen/linux,initrd-end\n");
105 }
106 }
107
108 ret = qemu_devtree_setprop_string(fdt, "/chosen", "bootargs",
109 kernel_cmdline);
110 if (ret < 0)
111 fprintf(stderr, "couldn't set /chosen/bootargs\n");
112
113 if (kvm_enabled()) {
114 /* Read out host's frequencies */
115 clock_freq = kvmppc_get_clockfreq();
116 tb_freq = kvmppc_get_tbfreq();
117
118 /* indicate KVM hypercall interface */
119 qemu_devtree_setprop_string(fdt, "/hypervisor", "compatible",
120 "linux,kvm");
121 kvmppc_get_hypercall(env, hypercall, sizeof(hypercall));
122 qemu_devtree_setprop(fdt, "/hypervisor", "hcall-instructions",
123 hypercall, sizeof(hypercall));
124 }
125
126 for (i = 0; i < smp_cpus; i++) {
127 char cpu_name[128];
128 snprintf(cpu_name, sizeof(cpu_name), "/cpus/PowerPC,8544@%x", i);
129 qemu_devtree_setprop_cell(fdt, cpu_name, "clock-frequency", clock_freq);
130 qemu_devtree_setprop_cell(fdt, cpu_name, "timebase-frequency", tb_freq);
131 }
132
133 for (i = smp_cpus; i < 32; i++) {
134 char cpu_name[128];
135 snprintf(cpu_name, sizeof(cpu_name), "/cpus/PowerPC,8544@%x", i);
136 qemu_devtree_nop_node(fdt, cpu_name);
137 }
138
139 ret = rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE, fdt, fdt_size, addr);
140 g_free(fdt);
141
142 out:
143 #endif
144
145 return ret;
146 }
147
148 /* Create -kernel TLB entries for BookE, linearly spanning 256MB. */
149 static inline target_phys_addr_t booke206_page_size_to_tlb(uint64_t size)
150 {
151 return (ffs(size >> 10) - 1) >> 1;
152 }
153
154 static void mmubooke_create_initial_mapping(CPUState *env,
155 target_ulong va,
156 target_phys_addr_t pa)
157 {
158 ppcmas_tlb_t *tlb = booke206_get_tlbm(env, 1, 0, 0);
159 target_phys_addr_t size;
160
161 size = (booke206_page_size_to_tlb(256 * 1024 * 1024) << MAS1_TSIZE_SHIFT);
162 tlb->mas1 = MAS1_VALID | size;
163 tlb->mas2 = va & TARGET_PAGE_MASK;
164 tlb->mas7_3 = pa & TARGET_PAGE_MASK;
165 tlb->mas7_3 |= MAS3_UR | MAS3_UW | MAS3_UX | MAS3_SR | MAS3_SW | MAS3_SX;
166 }
167
168 static void mpc8544ds_cpu_reset_sec(void *opaque)
169 {
170 CPUState *env = opaque;
171
172 cpu_reset(env);
173
174 /* Secondary CPU starts in halted state for now. Needs to change when
175 implementing non-kernel boot. */
176 env->halted = 1;
177 env->exception_index = EXCP_HLT;
178 }
179
180 static void mpc8544ds_cpu_reset(void *opaque)
181 {
182 CPUState *env = opaque;
183 struct boot_info *bi = env->load_info;
184
185 cpu_reset(env);
186
187 /* Set initial guest state. */
188 env->halted = 0;
189 env->gpr[1] = (16<<20) - 8;
190 env->gpr[3] = bi->dt_base;
191 env->nip = bi->entry;
192 mmubooke_create_initial_mapping(env, 0, 0);
193 }
194
195 static void mpc8544ds_init(ram_addr_t ram_size,
196 const char *boot_device,
197 const char *kernel_filename,
198 const char *kernel_cmdline,
199 const char *initrd_filename,
200 const char *cpu_model)
201 {
202 PCIBus *pci_bus;
203 CPUState *env = NULL;
204 uint64_t elf_entry;
205 uint64_t elf_lowaddr;
206 target_phys_addr_t entry=0;
207 target_phys_addr_t loadaddr=UIMAGE_LOAD_BASE;
208 target_long kernel_size=0;
209 target_ulong dt_base = 0;
210 target_ulong initrd_base = 0;
211 target_long initrd_size=0;
212 int i=0;
213 unsigned int pci_irq_nrs[4] = {1, 2, 3, 4};
214 qemu_irq **irqs, *mpic;
215 DeviceState *dev;
216 CPUState *firstenv = NULL;
217
218 /* Setup CPUs */
219 if (cpu_model == NULL) {
220 cpu_model = "e500v2_v30";
221 }
222
223 irqs = g_malloc0(smp_cpus * sizeof(qemu_irq *));
224 irqs[0] = g_malloc0(smp_cpus * sizeof(qemu_irq) * OPENPIC_OUTPUT_NB);
225 for (i = 0; i < smp_cpus; i++) {
226 qemu_irq *input;
227 env = cpu_ppc_init(cpu_model);
228 if (!env) {
229 fprintf(stderr, "Unable to initialize CPU!\n");
230 exit(1);
231 }
232
233 if (!firstenv) {
234 firstenv = env;
235 }
236
237 irqs[i] = irqs[0] + (i * OPENPIC_OUTPUT_NB);
238 input = (qemu_irq *)env->irq_inputs;
239 irqs[i][OPENPIC_OUTPUT_INT] = input[PPCE500_INPUT_INT];
240 irqs[i][OPENPIC_OUTPUT_CINT] = input[PPCE500_INPUT_CINT];
241 env->spr[SPR_BOOKE_PIR] = env->cpu_index = i;
242
243 /* XXX register timer? */
244 ppc_emb_timers_init(env, 400000000, PPC_INTERRUPT_DECR);
245 ppc_dcr_init(env, NULL, NULL);
246 /* XXX Enable DEC interrupts - probably wrong in the backend */
247 env->spr[SPR_40x_TCR] = 1 << 26;
248
249 /* Register reset handler */
250 if (!i) {
251 /* Primary CPU */
252 struct boot_info *boot_info;
253 boot_info = g_malloc0(sizeof(struct boot_info));
254 qemu_register_reset(mpc8544ds_cpu_reset, env);
255 env->load_info = boot_info;
256 } else {
257 /* Secondary CPUs */
258 qemu_register_reset(mpc8544ds_cpu_reset_sec, env);
259 }
260 }
261
262 env = firstenv;
263
264 /* Fixup Memory size on a alignment boundary */
265 ram_size &= ~(RAM_SIZES_ALIGN - 1);
266
267 /* Register Memory */
268 cpu_register_physical_memory(0, ram_size, qemu_ram_alloc(NULL,
269 "mpc8544ds.ram", ram_size));
270
271 /* MPIC */
272 mpic = mpic_init(MPC8544_MPIC_REGS_BASE, smp_cpus, irqs, NULL);
273
274 if (!mpic) {
275 cpu_abort(env, "MPIC failed to initialize\n");
276 }
277
278 /* Serial */
279 if (serial_hds[0]) {
280 serial_mm_init(MPC8544_SERIAL0_REGS_BASE,
281 0, mpic[12+26], 399193,
282 serial_hds[0], 1, 1);
283 }
284
285 if (serial_hds[1]) {
286 serial_mm_init(MPC8544_SERIAL1_REGS_BASE,
287 0, mpic[12+26], 399193,
288 serial_hds[0], 1, 1);
289 }
290
291 /* General Utility device */
292 sysbus_create_simple("mpc8544-guts", MPC8544_UTIL_BASE, NULL);
293
294 /* PCI */
295 dev = sysbus_create_varargs("e500-pcihost", MPC8544_PCI_REGS_BASE,
296 mpic[pci_irq_nrs[0]], mpic[pci_irq_nrs[1]],
297 mpic[pci_irq_nrs[2]], mpic[pci_irq_nrs[3]],
298 NULL);
299 pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci.0");
300 if (!pci_bus)
301 printf("couldn't create PCI controller!\n");
302
303 isa_mmio_init(MPC8544_PCI_IO, MPC8544_PCI_IOLEN);
304
305 if (pci_bus) {
306 /* Register network interfaces. */
307 for (i = 0; i < nb_nics; i++) {
308 pci_nic_init_nofail(&nd_table[i], "virtio", NULL);
309 }
310 }
311
312 /* Register spinning region */
313 sysbus_create_simple("e500-spin", MPC8544_SPIN_BASE, NULL);
314
315 /* Load kernel. */
316 if (kernel_filename) {
317 kernel_size = load_uimage(kernel_filename, &entry, &loadaddr, NULL);
318 if (kernel_size < 0) {
319 kernel_size = load_elf(kernel_filename, NULL, NULL, &elf_entry,
320 &elf_lowaddr, NULL, 1, ELF_MACHINE, 0);
321 entry = elf_entry;
322 loadaddr = elf_lowaddr;
323 }
324 /* XXX try again as binary */
325 if (kernel_size < 0) {
326 fprintf(stderr, "qemu: could not load kernel '%s'\n",
327 kernel_filename);
328 exit(1);
329 }
330 }
331
332 /* Load initrd. */
333 if (initrd_filename) {
334 initrd_base = (kernel_size + INITRD_LOAD_PAD) & ~INITRD_PAD_MASK;
335 initrd_size = load_image_targphys(initrd_filename, initrd_base,
336 ram_size - initrd_base);
337
338 if (initrd_size < 0) {
339 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
340 initrd_filename);
341 exit(1);
342 }
343 }
344
345 /* If we're loading a kernel directly, we must load the device tree too. */
346 if (kernel_filename) {
347 struct boot_info *boot_info;
348
349 #ifndef CONFIG_FDT
350 cpu_abort(env, "Compiled without FDT support - can't load kernel\n");
351 #endif
352 dt_base = (kernel_size + DTC_LOAD_PAD) & ~DTC_PAD_MASK;
353 if (mpc8544_load_device_tree(env, dt_base, ram_size,
354 initrd_base, initrd_size, kernel_cmdline) < 0) {
355 fprintf(stderr, "couldn't load device tree\n");
356 exit(1);
357 }
358
359 boot_info = env->load_info;
360 boot_info->entry = entry;
361 boot_info->dt_base = dt_base;
362 }
363
364 if (kvm_enabled()) {
365 kvmppc_init();
366 }
367 }
368
369 static QEMUMachine mpc8544ds_machine = {
370 .name = "mpc8544ds",
371 .desc = "mpc8544ds",
372 .init = mpc8544ds_init,
373 };
374
375 static void mpc8544ds_machine_init(void)
376 {
377 qemu_register_machine(&mpc8544ds_machine);
378 }
379
380 machine_init(mpc8544ds_machine_init);