| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:19 +00:00
										 |  |  |  * QEMU PowerPC e500-based platforms | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2009 Freescale Semiconductor, Inc. All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Author: Yu Liu,     <yu.liu@freescale.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is derived from hw/ppc440_bamboo.c, | 
					
						
							|  |  |  |  * the copyright for that material belongs to the original owners. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of  the GNU General  Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation;  either version 2 of the  License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:16:58 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
											  
											
												include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef.  Since then, we've moved to include qemu/osdep.h
everywhere.  Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h.  That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h.  Include qapi/error.h in .c files that need it and don't
get it now.  Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly.  Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h.  Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third.  Unfortunately, the number depending on
qapi-types.h shrinks only a little.  More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
											
										 
											2016-03-14 09:01:28 +01:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | #include "qemu-common.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:20 +00:00
										 |  |  | #include "e500.h"
 | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  | #include "e500-ccsr.h"
 | 
					
						
							| 
									
										
										
										
											2012-10-24 08:43:34 +02:00
										 |  |  | #include "net/net.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/config-file.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:18 +00:00
										 |  |  | #include "hw/hw.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/char/serial.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-12 14:24:50 +02:00
										 |  |  | #include "hw/pci/pci.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:18 +00:00
										 |  |  | #include "hw/boards.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/sysemu.h"
 | 
					
						
							|  |  |  | #include "sysemu/kvm.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | #include "kvm_ppc.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/device_tree.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/ppc/openpic.h"
 | 
					
						
							|  |  |  | #include "hw/ppc/ppc.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:18 +00:00
										 |  |  | #include "hw/loader.h"
 | 
					
						
							| 
									
										
										
										
											2009-09-20 14:58:02 +00:00
										 |  |  | #include "elf.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:18 +00:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:49 +01:00
										 |  |  | #include "exec/address-spaces.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/host-utils.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/pci-host/ppce500.h"
 | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  | #include "qemu/error-report.h"
 | 
					
						
							|  |  |  | #include "hw/platform-bus.h"
 | 
					
						
							| 
									
										
										
										
											2014-07-01 23:30:06 +02:00
										 |  |  | #include "hw/net/fsl_etsec/etsec.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 04:40:56 +00:00
										 |  |  | #define EPAPR_MAGIC                (0x45504150)
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | #define BINARY_DEVICE_TREE_FILE    "mpc8544ds.dtb"
 | 
					
						
							| 
									
										
										
										
											2012-08-22 14:55:40 +00:00
										 |  |  | #define DTC_LOAD_PAD               0x1800000
 | 
					
						
							| 
									
										
										
										
											2010-02-02 16:49:03 +08:00
										 |  |  | #define DTC_PAD_MASK               0xFFFFF
 | 
					
						
							| 
									
										
										
										
											2013-01-17 11:19:28 +01:00
										 |  |  | #define DTB_MAX_SIZE               (8 * 1024 * 1024)
 | 
					
						
							| 
									
										
										
										
											2010-02-02 16:49:03 +08:00
										 |  |  | #define INITRD_LOAD_PAD            0x2000000
 | 
					
						
							|  |  |  | #define INITRD_PAD_MASK            0xFFFFFF
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define RAM_SIZES_ALIGN            (64UL << 20)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:19 +00:00
										 |  |  | /* TODO: parameterize */ | 
					
						
							| 
									
										
										
										
											2012-06-06 00:30:36 +02:00
										 |  |  | #define MPC8544_CCSRBAR_SIZE       0x00100000ULL
 | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  | #define MPC8544_MPIC_REGS_OFFSET   0x40000ULL
 | 
					
						
							| 
									
										
										
										
											2012-12-08 14:26:37 +01:00
										 |  |  | #define MPC8544_MSI_REGS_OFFSET   0x41600ULL
 | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  | #define MPC8544_SERIAL0_REGS_OFFSET 0x4500ULL
 | 
					
						
							|  |  |  | #define MPC8544_SERIAL1_REGS_OFFSET 0x4600ULL
 | 
					
						
							|  |  |  | #define MPC8544_PCI_REGS_OFFSET    0x8000ULL
 | 
					
						
							| 
									
										
										
										
											2012-06-06 00:30:36 +02:00
										 |  |  | #define MPC8544_PCI_REGS_SIZE      0x1000ULL
 | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  | #define MPC8544_UTIL_OFFSET        0xe0000ULL
 | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  | #define MPC8XXX_GPIO_OFFSET        0x000FF000ULL
 | 
					
						
							| 
									
										
										
										
											2014-12-19 14:20:37 +00:00
										 |  |  | #define MPC8XXX_GPIO_IRQ           47
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | struct boot_info | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t dt_base; | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     uint32_t dt_size; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |     uint32_t entry; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-12 13:47:07 +01:00
										 |  |  | static uint32_t *pci_map_create(void *fdt, uint32_t mpic, int first_slot, | 
					
						
							|  |  |  |                                 int nr_slots, int *len) | 
					
						
							| 
									
										
										
										
											2012-05-17 15:34:34 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-12-12 13:47:07 +01:00
										 |  |  |     int i = 0; | 
					
						
							|  |  |  |     int slot; | 
					
						
							|  |  |  |     int pci_irq; | 
					
						
							| 
									
										
										
										
											2012-12-13 01:16:24 +01:00
										 |  |  |     int host_irq; | 
					
						
							| 
									
										
										
										
											2012-12-12 13:47:07 +01:00
										 |  |  |     int last_slot = first_slot + nr_slots; | 
					
						
							|  |  |  |     uint32_t *pci_map; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *len = nr_slots * 4 * 7 * sizeof(uint32_t); | 
					
						
							|  |  |  |     pci_map = g_malloc(*len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (slot = first_slot; slot < last_slot; slot++) { | 
					
						
							|  |  |  |         for (pci_irq = 0; pci_irq < 4; pci_irq++) { | 
					
						
							|  |  |  |             pci_map[i++] = cpu_to_be32(slot << 11); | 
					
						
							|  |  |  |             pci_map[i++] = cpu_to_be32(0x0); | 
					
						
							|  |  |  |             pci_map[i++] = cpu_to_be32(0x0); | 
					
						
							|  |  |  |             pci_map[i++] = cpu_to_be32(pci_irq + 1); | 
					
						
							|  |  |  |             pci_map[i++] = cpu_to_be32(mpic); | 
					
						
							| 
									
										
										
										
											2012-12-13 01:16:24 +01:00
										 |  |  |             host_irq = ppce500_pci_map_irq_slot(slot, pci_irq); | 
					
						
							|  |  |  |             pci_map[i++] = cpu_to_be32(host_irq + 1); | 
					
						
							| 
									
										
										
										
											2012-12-12 13:47:07 +01:00
										 |  |  |             pci_map[i++] = cpu_to_be32(0x1); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-05-17 15:34:34 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-12-12 13:47:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert((i * sizeof(uint32_t)) == *len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pci_map; | 
					
						
							| 
									
										
										
										
											2012-05-17 15:34:34 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-06 01:19:40 +02:00
										 |  |  | static void dt_serial_create(void *fdt, unsigned long long offset, | 
					
						
							|  |  |  |                              const char *soc, const char *mpic, | 
					
						
							|  |  |  |                              const char *alias, int idx, bool defcon) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char ser[128]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     snprintf(ser, sizeof(ser), "%s/serial@%llx", soc, offset); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, ser); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, ser, "device_type", "serial"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, ser, "compatible", "ns16550"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, ser, "reg", offset, 0x100); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, ser, "cell-index", idx); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, ser, "clock-frequency", 0); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, ser, "interrupts", 42, 2); | 
					
						
							|  |  |  |     qemu_fdt_setprop_phandle(fdt, ser, "interrupt-parent", mpic); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, "/aliases", alias, ser); | 
					
						
							| 
									
										
										
										
											2012-06-06 01:19:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (defcon) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_setprop_string(fdt, "/chosen", "linux,stdout-path", ser); | 
					
						
							| 
									
										
										
										
											2012-06-06 01:19:40 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  | static void create_dt_mpc8xxx_gpio(void *fdt, const char *soc, const char *mpic) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     hwaddr mmio0 = MPC8XXX_GPIO_OFFSET; | 
					
						
							|  |  |  |     int irq0 = MPC8XXX_GPIO_IRQ; | 
					
						
							|  |  |  |     gchar *node = g_strdup_printf("%s/gpio@%"PRIx64, soc, mmio0); | 
					
						
							| 
									
										
										
										
											2014-10-01 16:05:47 +02:00
										 |  |  |     gchar *poweroff = g_strdup_printf("%s/power-off", soc); | 
					
						
							|  |  |  |     int gpio_ph; | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qemu_fdt_add_subnode(fdt, node); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, node, "compatible", "fsl,qoriq-gpio"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, node, "reg", mmio0, 0x1000); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, node, "interrupts", irq0, 0x2); | 
					
						
							|  |  |  |     qemu_fdt_setprop_phandle(fdt, node, "interrupt-parent", mpic); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, node, "#gpio-cells", 2); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, node, "gpio-controller", NULL, 0); | 
					
						
							| 
									
										
										
										
											2014-10-01 16:05:47 +02:00
										 |  |  |     gpio_ph = qemu_fdt_alloc_phandle(fdt); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, node, "phandle", gpio_ph); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, node, "linux,phandle", gpio_ph); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Power Off Pin */ | 
					
						
							|  |  |  |     qemu_fdt_add_subnode(fdt, poweroff); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, poweroff, "compatible", "gpio-poweroff"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, poweroff, "gpios", gpio_ph, 0, 0); | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     g_free(node); | 
					
						
							| 
									
										
										
										
											2014-10-01 16:05:47 +02:00
										 |  |  |     g_free(poweroff); | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  | typedef struct PlatformDevtreeData { | 
					
						
							|  |  |  |     void *fdt; | 
					
						
							|  |  |  |     const char *mpic; | 
					
						
							|  |  |  |     int irq_start; | 
					
						
							|  |  |  |     const char *node; | 
					
						
							|  |  |  |     PlatformBusDevice *pbus; | 
					
						
							|  |  |  | } PlatformDevtreeData; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 23:30:06 +02:00
										 |  |  | static int create_devtree_etsec(SysBusDevice *sbdev, PlatformDevtreeData *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     eTSEC *etsec = ETSEC_COMMON(sbdev); | 
					
						
							|  |  |  |     PlatformBusDevice *pbus = data->pbus; | 
					
						
							|  |  |  |     hwaddr mmio0 = platform_bus_get_mmio_addr(pbus, sbdev, 0); | 
					
						
							|  |  |  |     int irq0 = platform_bus_get_irqn(pbus, sbdev, 0); | 
					
						
							|  |  |  |     int irq1 = platform_bus_get_irqn(pbus, sbdev, 1); | 
					
						
							|  |  |  |     int irq2 = platform_bus_get_irqn(pbus, sbdev, 2); | 
					
						
							|  |  |  |     gchar *node = g_strdup_printf("/platform/ethernet@%"PRIx64, mmio0); | 
					
						
							|  |  |  |     gchar *group = g_strdup_printf("%s/queue-group", node); | 
					
						
							|  |  |  |     void *fdt = data->fdt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert((int64_t)mmio0 >= 0); | 
					
						
							|  |  |  |     assert(irq0 >= 0); | 
					
						
							|  |  |  |     assert(irq1 >= 0); | 
					
						
							|  |  |  |     assert(irq2 >= 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_fdt_add_subnode(fdt, node); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, node, "device_type", "network"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, node, "compatible", "fsl,etsec2"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, node, "model", "eTSEC"); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, node, "local-mac-address", etsec->conf.macaddr.a, 6); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, node, "fixed-link", 0, 1, 1000, 0, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_fdt_add_subnode(fdt, group); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, group, "reg", mmio0, 0x1000); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, group, "interrupts", | 
					
						
							|  |  |  |         data->irq_start + irq0, 0x2, | 
					
						
							|  |  |  |         data->irq_start + irq1, 0x2, | 
					
						
							|  |  |  |         data->irq_start + irq2, 0x2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     g_free(node); | 
					
						
							|  |  |  |     g_free(group); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-21 15:23:53 +10:00
										 |  |  | static void sysbus_device_create_devtree(SysBusDevice *sbdev, void *opaque) | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     PlatformDevtreeData *data = opaque; | 
					
						
							|  |  |  |     bool matched = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 23:30:06 +02:00
										 |  |  |     if (object_dynamic_cast(OBJECT(sbdev), TYPE_ETSEC_COMMON)) { | 
					
						
							|  |  |  |         create_devtree_etsec(sbdev, data); | 
					
						
							|  |  |  |         matched = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  |     if (!matched) { | 
					
						
							|  |  |  |         error_report("Device %s is not supported by this machine yet.", | 
					
						
							|  |  |  |                      qdev_fw_name(DEVICE(sbdev))); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void platform_bus_create_devtree(PPCE500Params *params, void *fdt, | 
					
						
							|  |  |  |                                         const char *mpic) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     gchar *node = g_strdup_printf("/platform@%"PRIx64, params->platform_bus_base); | 
					
						
							|  |  |  |     const char platcomp[] = "qemu,platform\0simple-bus"; | 
					
						
							|  |  |  |     uint64_t addr = params->platform_bus_base; | 
					
						
							|  |  |  |     uint64_t size = params->platform_bus_size; | 
					
						
							|  |  |  |     int irq_start = params->platform_bus_first_irq; | 
					
						
							|  |  |  |     PlatformBusDevice *pbus; | 
					
						
							|  |  |  |     DeviceState *dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Create a /platform node that we can put all devices into */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_fdt_add_subnode(fdt, node); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, node, "compatible", platcomp, sizeof(platcomp)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Our platform bus region is less than 32bit big, so 1 cell is enough for
 | 
					
						
							|  |  |  |        address and size */ | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, node, "#size-cells", 1); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, node, "#address-cells", 1); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, node, "ranges", 0, addr >> 32, addr, size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_fdt_setprop_phandle(fdt, node, "interrupt-parent", mpic); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dev = qdev_find_recursive(sysbus_get_default(), TYPE_PLATFORM_BUS_DEVICE); | 
					
						
							|  |  |  |     pbus = PLATFORM_BUS_DEVICE(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* We can only create dt nodes for dynamic devices when they're ready */ | 
					
						
							|  |  |  |     if (pbus->done_gathering) { | 
					
						
							|  |  |  |         PlatformDevtreeData data = { | 
					
						
							|  |  |  |             .fdt = fdt, | 
					
						
							|  |  |  |             .mpic = mpic, | 
					
						
							|  |  |  |             .irq_start = irq_start, | 
					
						
							|  |  |  |             .node = node, | 
					
						
							|  |  |  |             .pbus = pbus, | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Loop through all dynamic sysbus devices and create nodes for them */ | 
					
						
							|  |  |  |         foreach_dynamic_sysbus_device(sysbus_device_create_devtree, &data); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     g_free(node); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  | static int ppce500_load_device_tree(MachineState *machine, | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:20 +00:00
										 |  |  |                                     PPCE500Params *params, | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                                     hwaddr addr, | 
					
						
							|  |  |  |                                     hwaddr initrd_base, | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |                                     hwaddr initrd_size, | 
					
						
							| 
									
										
										
										
											2014-01-20 00:21:04 +01:00
										 |  |  |                                     hwaddr kernel_base, | 
					
						
							|  |  |  |                                     hwaddr kernel_size, | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |                                     bool dry_run) | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |     CPUPPCState *env = first_cpu->env_ptr; | 
					
						
							| 
									
										
										
										
											2010-02-27 19:47:22 +01:00
										 |  |  |     int ret = -1; | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     uint64_t mem_reg_property[] = { 0, cpu_to_be64(machine->ram_size) }; | 
					
						
							| 
									
										
										
										
											2009-04-10 16:23:59 +00:00
										 |  |  |     int fdt_size; | 
					
						
							| 
									
										
										
										
											2010-02-27 19:47:22 +01:00
										 |  |  |     void *fdt; | 
					
						
							| 
									
										
										
										
											2011-06-15 23:34:04 +02:00
										 |  |  |     uint8_t hypercall[16]; | 
					
						
							| 
									
										
										
										
											2011-07-21 02:34:11 +02:00
										 |  |  |     uint32_t clock_freq = 400000000; | 
					
						
							|  |  |  |     uint32_t tb_freq = 400000000; | 
					
						
							| 
									
										
										
										
											2011-07-21 03:01:11 +02:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2012-06-06 00:20:20 +02:00
										 |  |  |     char compatible_sb[] = "fsl,mpc8544-immr\0simple-bus"; | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:07 +02:00
										 |  |  |     char soc[128]; | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:51 +02:00
										 |  |  |     char mpic[128]; | 
					
						
							|  |  |  |     uint32_t mpic_ph; | 
					
						
							| 
									
										
										
										
											2012-12-08 14:26:37 +01:00
										 |  |  |     uint32_t msi_ph; | 
					
						
							| 
									
										
										
										
											2012-05-17 14:52:46 +02:00
										 |  |  |     char gutil[128]; | 
					
						
							| 
									
										
										
										
											2012-05-17 15:34:34 +02:00
										 |  |  |     char pci[128]; | 
					
						
							| 
									
										
										
										
											2012-12-08 14:26:37 +01:00
										 |  |  |     char msi[128]; | 
					
						
							| 
									
										
										
										
											2012-12-12 13:47:07 +01:00
										 |  |  |     uint32_t *pci_map = NULL; | 
					
						
							|  |  |  |     int len; | 
					
						
							| 
									
										
										
										
											2012-06-06 00:25:06 +02:00
										 |  |  |     uint32_t pci_ranges[14] = | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2014-11-12 22:44:52 +01:00
										 |  |  |             0x2000000, 0x0, params->pci_mmio_bus_base, | 
					
						
							|  |  |  |             params->pci_mmio_base >> 32, params->pci_mmio_base, | 
					
						
							| 
									
										
										
										
											2012-06-06 00:25:06 +02:00
										 |  |  |             0x0, 0x20000000, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             0x1000000, 0x0, 0x0, | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |             params->pci_pio_base >> 32, params->pci_pio_base, | 
					
						
							| 
									
										
										
										
											2012-06-06 00:25:06 +02:00
										 |  |  |             0x0, 0x10000, | 
					
						
							|  |  |  |         }; | 
					
						
							| 
									
										
										
										
											2013-07-04 15:09:22 +02:00
										 |  |  |     QemuOpts *machine_opts = qemu_get_machine_opts(); | 
					
						
							|  |  |  |     const char *dtb_file = qemu_opt_get(machine_opts, "dtb"); | 
					
						
							|  |  |  |     const char *toplevel_compat = qemu_opt_get(machine_opts, "dt_compatible"); | 
					
						
							| 
									
										
										
										
											2012-05-22 14:28:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (dtb_file) { | 
					
						
							|  |  |  |         char *filename; | 
					
						
							|  |  |  |         filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, dtb_file); | 
					
						
							|  |  |  |         if (!filename) { | 
					
						
							|  |  |  |             goto out; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fdt = load_device_tree(filename, &fdt_size); | 
					
						
							| 
									
										
										
										
											2015-02-28 20:27:43 +03:00
										 |  |  |         g_free(filename); | 
					
						
							| 
									
										
										
										
											2012-05-22 14:28:50 +02:00
										 |  |  |         if (!fdt) { | 
					
						
							|  |  |  |             goto out; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         goto done; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:50:14 +02:00
										 |  |  |     fdt = create_device_tree(&fdt_size); | 
					
						
							| 
									
										
										
										
											2009-05-30 00:52:44 +01:00
										 |  |  |     if (fdt == NULL) { | 
					
						
							|  |  |  |         goto out; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Manipulate device tree in memory. */ | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_setprop_cell(fdt, "/", "#address-cells", 2); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, "/", "#size-cells", 2); | 
					
						
							| 
									
										
										
										
											2012-05-17 12:20:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, "/memory"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, "/memory", "device_type", "memory"); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, "/memory", "reg", mem_reg_property, | 
					
						
							|  |  |  |                      sizeof(mem_reg_property)); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, "/chosen"); | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |     if (initrd_size) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         ret = qemu_fdt_setprop_cell(fdt, "/chosen", "linux,initrd-start", | 
					
						
							|  |  |  |                                     initrd_base); | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |             fprintf(stderr, "couldn't set /chosen/linux,initrd-start\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         ret = qemu_fdt_setprop_cell(fdt, "/chosen", "linux,initrd-end", | 
					
						
							|  |  |  |                                     (initrd_base + initrd_size)); | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |             fprintf(stderr, "couldn't set /chosen/linux,initrd-end\n"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-01-20 00:21:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (kernel_base != -1ULL) { | 
					
						
							|  |  |  |         qemu_fdt_setprop_cells(fdt, "/chosen", "qemu,boot-kernel", | 
					
						
							|  |  |  |                                      kernel_base >> 32, kernel_base, | 
					
						
							|  |  |  |                                      kernel_size >> 32, kernel_size); | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     ret = qemu_fdt_setprop_string(fdt, "/chosen", "bootargs", | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |                                       machine->kernel_cmdline); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     if (ret < 0) | 
					
						
							|  |  |  |         fprintf(stderr, "couldn't set /chosen/bootargs\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (kvm_enabled()) { | 
					
						
							| 
									
										
										
										
											2011-07-21 02:34:11 +02:00
										 |  |  |         /* Read out host's frequencies */ | 
					
						
							|  |  |  |         clock_freq = kvmppc_get_clockfreq(); | 
					
						
							|  |  |  |         tb_freq = kvmppc_get_tbfreq(); | 
					
						
							| 
									
										
										
										
											2011-06-15 23:34:04 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* indicate KVM hypercall interface */ | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_add_subnode(fdt, "/hypervisor"); | 
					
						
							|  |  |  |         qemu_fdt_setprop_string(fdt, "/hypervisor", "compatible", | 
					
						
							|  |  |  |                                 "linux,kvm"); | 
					
						
							| 
									
										
										
										
											2011-06-15 23:34:04 +02:00
										 |  |  |         kvmppc_get_hypercall(env, hypercall, sizeof(hypercall)); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_setprop(fdt, "/hypervisor", "hcall-instructions", | 
					
						
							|  |  |  |                          hypercall, sizeof(hypercall)); | 
					
						
							| 
									
										
										
										
											2013-01-03 12:37:02 +00:00
										 |  |  |         /* if KVM supports the idle hcall, set property indicating this */ | 
					
						
							|  |  |  |         if (kvmppc_get_hasidle(env)) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |             qemu_fdt_setprop(fdt, "/hypervisor", "has-idle", NULL, 0); | 
					
						
							| 
									
										
										
										
											2013-01-03 12:37:02 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 11:48:16 +02:00
										 |  |  |     /* Create CPU nodes */ | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, "/cpus"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, "/cpus", "#address-cells", 1); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, "/cpus", "#size-cells", 0); | 
					
						
							| 
									
										
										
										
											2012-05-17 11:48:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-23 10:56:40 +02:00
										 |  |  |     /* We need to generate the cpu nodes in reverse order, so Linux can pick
 | 
					
						
							|  |  |  |        the first node as boot node and be happy */ | 
					
						
							|  |  |  |     for (i = smp_cpus - 1; i >= 0; i--) { | 
					
						
							| 
									
										
										
										
											2013-02-15 15:21:13 +01:00
										 |  |  |         CPUState *cpu; | 
					
						
							| 
									
										
										
										
											2014-02-02 01:45:52 +11:00
										 |  |  |         PowerPCCPU *pcpu; | 
					
						
							| 
									
										
										
										
											2011-07-21 03:01:11 +02:00
										 |  |  |         char cpu_name[128]; | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |         uint64_t cpu_release_addr = params->spin_base + (i * 0x20); | 
					
						
							| 
									
										
										
										
											2011-07-21 03:06:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-15 15:21:13 +01:00
										 |  |  |         cpu = qemu_get_cpu(i); | 
					
						
							| 
									
										
										
										
											2012-12-17 06:18:02 +01:00
										 |  |  |         if (cpu == NULL) { | 
					
						
							| 
									
										
										
										
											2011-07-23 10:56:40 +02:00
										 |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-02-15 15:21:13 +01:00
										 |  |  |         env = cpu->env_ptr; | 
					
						
							| 
									
										
										
										
											2014-02-02 01:45:52 +11:00
										 |  |  |         pcpu = POWERPC_CPU(cpu); | 
					
						
							| 
									
										
										
										
											2011-07-23 10:56:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 06:18:02 +01:00
										 |  |  |         snprintf(cpu_name, sizeof(cpu_name), "/cpus/PowerPC,8544@%x", | 
					
						
							| 
									
										
										
										
											2014-02-02 01:45:52 +11:00
										 |  |  |                  ppc_get_vcpu_dt_id(pcpu)); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_add_subnode(fdt, cpu_name); | 
					
						
							|  |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "clock-frequency", clock_freq); | 
					
						
							|  |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "timebase-frequency", tb_freq); | 
					
						
							|  |  |  |         qemu_fdt_setprop_string(fdt, cpu_name, "device_type", "cpu"); | 
					
						
							| 
									
										
										
										
											2014-02-02 01:45:52 +11:00
										 |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "reg", | 
					
						
							|  |  |  |                               ppc_get_vcpu_dt_id(pcpu)); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "d-cache-line-size", | 
					
						
							|  |  |  |                               env->dcache_line_size); | 
					
						
							|  |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "i-cache-line-size", | 
					
						
							|  |  |  |                               env->icache_line_size); | 
					
						
							|  |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "d-cache-size", 0x8000); | 
					
						
							|  |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "i-cache-size", 0x8000); | 
					
						
							|  |  |  |         qemu_fdt_setprop_cell(fdt, cpu_name, "bus-frequency", 0); | 
					
						
							| 
									
										
										
										
											2012-12-17 06:18:02 +01:00
										 |  |  |         if (cpu->cpu_index) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |             qemu_fdt_setprop_string(fdt, cpu_name, "status", "disabled"); | 
					
						
							|  |  |  |             qemu_fdt_setprop_string(fdt, cpu_name, "enable-method", | 
					
						
							|  |  |  |                                     "spin-table"); | 
					
						
							|  |  |  |             qemu_fdt_setprop_u64(fdt, cpu_name, "cpu-release-addr", | 
					
						
							|  |  |  |                                  cpu_release_addr); | 
					
						
							| 
									
										
										
										
											2011-07-23 10:56:40 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |             qemu_fdt_setprop_string(fdt, cpu_name, "status", "okay"); | 
					
						
							| 
									
										
										
										
											2011-07-23 10:56:40 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, "/aliases"); | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:07 +02:00
										 |  |  |     /* XXX These should go into their respective devices' code */ | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |     snprintf(soc, sizeof(soc), "/soc@%"PRIx64, params->ccsrbar_base); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, soc); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, soc, "device_type", "soc"); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, soc, "compatible", compatible_sb, | 
					
						
							|  |  |  |                      sizeof(compatible_sb)); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, soc, "#address-cells", 1); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, soc, "#size-cells", 1); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, soc, "ranges", 0x0, | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |                            params->ccsrbar_base >> 32, params->ccsrbar_base, | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |                            MPC8544_CCSRBAR_SIZE); | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:07 +02:00
										 |  |  |     /* XXX should contain a reasonable value */ | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_setprop_cell(fdt, soc, "bus-frequency", 0); | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |     snprintf(mpic, sizeof(mpic), "%s/pic@%llx", soc, MPC8544_MPIC_REGS_OFFSET); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, mpic); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, mpic, "device_type", "open-pic"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, mpic, "compatible", "fsl,mpic"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, mpic, "reg", MPC8544_MPIC_REGS_OFFSET, | 
					
						
							|  |  |  |                            0x40000); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, mpic, "#address-cells", 0); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, mpic, "#interrupt-cells", 2); | 
					
						
							|  |  |  |     mpic_ph = qemu_fdt_alloc_phandle(fdt); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, mpic, "phandle", mpic_ph); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, mpic, "linux,phandle", mpic_ph); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, mpic, "interrupt-controller", NULL, 0); | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:34 +02:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We have to generate ser1 first, because Linux takes the first | 
					
						
							|  |  |  |      * device it finds in the dt as serial output device. And we generate | 
					
						
							|  |  |  |      * devices in reverse order to the dt. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2014-06-04 13:48:18 +02:00
										 |  |  |     if (serial_hds[1]) { | 
					
						
							|  |  |  |         dt_serial_create(fdt, MPC8544_SERIAL1_REGS_OFFSET, | 
					
						
							|  |  |  |                          soc, mpic, "serial1", 1, false); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (serial_hds[0]) { | 
					
						
							|  |  |  |         dt_serial_create(fdt, MPC8544_SERIAL0_REGS_OFFSET, | 
					
						
							|  |  |  |                          soc, mpic, "serial0", 0, true); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-05-17 14:51:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-06 00:30:36 +02:00
										 |  |  |     snprintf(gutil, sizeof(gutil), "%s/global-utilities@%llx", soc, | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |              MPC8544_UTIL_OFFSET); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, gutil); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, gutil, "compatible", "fsl,mpc8544-guts"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, gutil, "reg", MPC8544_UTIL_OFFSET, 0x1000); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, gutil, "fsl,has-rstcr", NULL, 0); | 
					
						
							| 
									
										
										
										
											2012-05-17 14:52:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 14:26:37 +01:00
										 |  |  |     snprintf(msi, sizeof(msi), "/%s/msi@%llx", soc, MPC8544_MSI_REGS_OFFSET); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, msi); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, msi, "compatible", "fsl,mpic-msi"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, msi, "reg", MPC8544_MSI_REGS_OFFSET, 0x200); | 
					
						
							|  |  |  |     msi_ph = qemu_fdt_alloc_phandle(fdt); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, msi, "msi-available-ranges", 0x0, 0x100); | 
					
						
							|  |  |  |     qemu_fdt_setprop_phandle(fdt, msi, "interrupt-parent", mpic); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, msi, "interrupts", | 
					
						
							| 
									
										
										
										
											2012-12-08 14:26:37 +01:00
										 |  |  |         0xe0, 0x0, | 
					
						
							|  |  |  |         0xe1, 0x0, | 
					
						
							|  |  |  |         0xe2, 0x0, | 
					
						
							|  |  |  |         0xe3, 0x0, | 
					
						
							|  |  |  |         0xe4, 0x0, | 
					
						
							|  |  |  |         0xe5, 0x0, | 
					
						
							|  |  |  |         0xe6, 0x0, | 
					
						
							|  |  |  |         0xe7, 0x0); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_setprop_cell(fdt, msi, "phandle", msi_ph); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, msi, "linux,phandle", msi_ph); | 
					
						
							| 
									
										
										
										
											2012-12-08 14:26:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |     snprintf(pci, sizeof(pci), "/pci@%llx", | 
					
						
							|  |  |  |              params->ccsrbar_base + MPC8544_PCI_REGS_OFFSET); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_add_subnode(fdt, pci); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, pci, "cell-index", 0); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, pci, "compatible", "fsl,mpc8540-pci"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, pci, "device_type", "pci"); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, pci, "interrupt-map-mask", 0xf800, 0x0, | 
					
						
							|  |  |  |                            0x0, 0x7); | 
					
						
							|  |  |  |     pci_map = pci_map_create(fdt, qemu_fdt_get_phandle(fdt, mpic), | 
					
						
							| 
									
										
										
										
											2012-12-12 13:53:53 +01:00
										 |  |  |                              params->pci_first_slot, params->pci_nr_slots, | 
					
						
							|  |  |  |                              &len); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_setprop(fdt, pci, "interrupt-map", pci_map, len); | 
					
						
							|  |  |  |     qemu_fdt_setprop_phandle(fdt, pci, "interrupt-parent", mpic); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, pci, "interrupts", 24, 2); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cells(fdt, pci, "bus-range", 0, 255); | 
					
						
							| 
									
										
										
										
											2012-06-06 00:25:06 +02:00
										 |  |  |     for (i = 0; i < 14; i++) { | 
					
						
							| 
									
										
										
										
											2012-05-17 15:34:34 +02:00
										 |  |  |         pci_ranges[i] = cpu_to_be32(pci_ranges[i]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_setprop_cell(fdt, pci, "fsl,msi", msi_ph); | 
					
						
							|  |  |  |     qemu_fdt_setprop(fdt, pci, "ranges", pci_ranges, sizeof(pci_ranges)); | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |     qemu_fdt_setprop_cells(fdt, pci, "reg", | 
					
						
							|  |  |  |                            (params->ccsrbar_base + MPC8544_PCI_REGS_OFFSET) >> 32, | 
					
						
							|  |  |  |                            (params->ccsrbar_base + MPC8544_PCI_REGS_OFFSET), | 
					
						
							|  |  |  |                            0, 0x1000); | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |     qemu_fdt_setprop_cell(fdt, pci, "clock-frequency", 66666666); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, pci, "#interrupt-cells", 1); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, pci, "#size-cells", 2); | 
					
						
							|  |  |  |     qemu_fdt_setprop_cell(fdt, pci, "#address-cells", 3); | 
					
						
							|  |  |  |     qemu_fdt_setprop_string(fdt, "/aliases", "pci0", pci); | 
					
						
							| 
									
										
										
										
											2012-05-17 15:34:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  |     if (params->has_mpc8xxx_gpio) { | 
					
						
							|  |  |  |         create_dt_mpc8xxx_gpio(fdt, soc, mpic); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  |     if (params->has_platform_bus) { | 
					
						
							|  |  |  |         platform_bus_create_devtree(params, fdt, mpic); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:20 +00:00
										 |  |  |     params->fixup_devtree(params, fdt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (toplevel_compat) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_setprop(fdt, "/", "compatible", toplevel_compat, | 
					
						
							|  |  |  |                          strlen(toplevel_compat) + 1); | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:20 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-22 14:28:50 +02:00
										 |  |  | done: | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |     if (!dry_run) { | 
					
						
							| 
									
										
										
										
											2013-11-11 18:14:41 +10:00
										 |  |  |         qemu_fdt_dumpdtb(fdt, fdt_size); | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |         cpu_physical_memory_write(addr, fdt, fdt_size); | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = fdt_size; | 
					
						
							| 
									
										
										
										
											2009-04-10 16:23:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | out: | 
					
						
							| 
									
										
										
										
											2012-12-12 13:47:07 +01:00
										 |  |  |     g_free(pci_map); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 16:49:02 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  | typedef struct DeviceTreeParams { | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     MachineState *machine; | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |     PPCE500Params params; | 
					
						
							|  |  |  |     hwaddr addr; | 
					
						
							|  |  |  |     hwaddr initrd_base; | 
					
						
							|  |  |  |     hwaddr initrd_size; | 
					
						
							| 
									
										
										
										
											2014-01-20 00:21:04 +01:00
										 |  |  |     hwaddr kernel_base; | 
					
						
							|  |  |  |     hwaddr kernel_size; | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  |     Notifier notifier; | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  | } DeviceTreeParams; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void ppce500_reset_device_tree(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceTreeParams *p = opaque; | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     ppce500_load_device_tree(p->machine, &p->params, p->addr, p->initrd_base, | 
					
						
							| 
									
										
										
										
											2014-01-20 00:21:04 +01:00
										 |  |  |                              p->initrd_size, p->kernel_base, p->kernel_size, | 
					
						
							|  |  |  |                              false); | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  | static void ppce500_init_notify(Notifier *notifier, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceTreeParams *p = container_of(notifier, DeviceTreeParams, notifier); | 
					
						
							|  |  |  |     ppce500_reset_device_tree(p); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  | static int ppce500_prep_device_tree(MachineState *machine, | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |                                     PPCE500Params *params, | 
					
						
							|  |  |  |                                     hwaddr addr, | 
					
						
							|  |  |  |                                     hwaddr initrd_base, | 
					
						
							| 
									
										
										
										
											2014-01-20 00:21:04 +01:00
										 |  |  |                                     hwaddr initrd_size, | 
					
						
							|  |  |  |                                     hwaddr kernel_base, | 
					
						
							|  |  |  |                                     hwaddr kernel_size) | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     DeviceTreeParams *p = g_new(DeviceTreeParams, 1); | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     p->machine = machine; | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  |     p->params = *params; | 
					
						
							|  |  |  |     p->addr = addr; | 
					
						
							|  |  |  |     p->initrd_base = initrd_base; | 
					
						
							|  |  |  |     p->initrd_size = initrd_size; | 
					
						
							| 
									
										
										
										
											2014-01-20 00:21:04 +01:00
										 |  |  |     p->kernel_base = kernel_base; | 
					
						
							|  |  |  |     p->kernel_size = kernel_size; | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qemu_register_reset(ppce500_reset_device_tree, p); | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  |     p->notifier.notify = ppce500_init_notify; | 
					
						
							|  |  |  |     qemu_add_machine_init_done_notifier(&p->notifier); | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Issue the device tree loader once, so that we get the size of the blob */ | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     return ppce500_load_device_tree(machine, params, addr, initrd_base, | 
					
						
							| 
									
										
										
										
											2014-01-20 00:21:04 +01:00
										 |  |  |                                     initrd_size, kernel_base, kernel_size, | 
					
						
							|  |  |  |                                     true); | 
					
						
							| 
									
										
										
										
											2013-07-19 12:56:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  | /* Create -kernel TLB entries for BookE.  */ | 
					
						
							| 
									
										
										
										
											2016-06-28 06:50:05 -07:00
										 |  |  | hwaddr booke206_page_size_to_tlb(uint64_t size) | 
					
						
							| 
									
										
										
										
											2011-06-16 18:45:43 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     return 63 - clz64(size >> 10); | 
					
						
							| 
									
										
										
										
											2011-06-16 18:45:43 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 04:40:56 +00:00
										 |  |  | static int booke206_initial_map_tsize(CPUPPCState *env) | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     struct boot_info *bi = env->load_info; | 
					
						
							| 
									
										
										
										
											2013-04-29 04:40:56 +00:00
										 |  |  |     hwaddr dt_end; | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     int ps; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Our initial TLB entry needs to cover everything from 0 to
 | 
					
						
							|  |  |  |        the device tree top */ | 
					
						
							|  |  |  |     dt_end = bi->dt_base + bi->dt_size; | 
					
						
							|  |  |  |     ps = booke206_page_size_to_tlb(dt_end) + 1; | 
					
						
							| 
									
										
										
										
											2012-10-04 18:52:21 +02:00
										 |  |  |     if (ps & 1) { | 
					
						
							|  |  |  |         /* e500v2 can only do even TLB size bits */ | 
					
						
							|  |  |  |         ps++; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-29 04:40:56 +00:00
										 |  |  |     return ps; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint64_t mmubooke_initial_mapsize(CPUPPCState *env) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int tsize; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tsize = booke206_initial_map_tsize(env); | 
					
						
							|  |  |  |     return (1ULL << 10 << tsize); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mmubooke_create_initial_mapping(CPUPPCState *env) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ppcmas_tlb_t *tlb = booke206_get_tlbm(env, 1, 0, 0); | 
					
						
							|  |  |  |     hwaddr size; | 
					
						
							|  |  |  |     int ps; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ps = booke206_initial_map_tsize(env); | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     size = (ps << MAS1_TSIZE_SHIFT); | 
					
						
							| 
									
										
										
										
											2011-06-16 18:45:43 +02:00
										 |  |  |     tlb->mas1 = MAS1_VALID | size; | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     tlb->mas2 = 0; | 
					
						
							|  |  |  |     tlb->mas7_3 = 0; | 
					
						
							| 
									
										
										
										
											2011-06-16 18:45:43 +02:00
										 |  |  |     tlb->mas7_3 |= MAS3_UR | MAS3_UW | MAS3_UX | MAS3_SR | MAS3_SW | MAS3_SX; | 
					
						
							| 
									
										
										
										
											2011-08-31 11:26:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     env->tlb_dirty = true; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:19 +00:00
										 |  |  | static void ppce500_cpu_reset_sec(void *opaque) | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-04 02:09:06 +02:00
										 |  |  |     PowerPCCPU *cpu = opaque; | 
					
						
							| 
									
										
										
										
											2013-01-17 18:51:17 +01:00
										 |  |  |     CPUState *cs = CPU(cpu); | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-17 18:51:17 +01:00
										 |  |  |     cpu_reset(cs); | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Secondary CPU starts in halted state for now. Needs to change when
 | 
					
						
							|  |  |  |        implementing non-kernel boot. */ | 
					
						
							| 
									
										
										
										
											2013-01-17 18:51:17 +01:00
										 |  |  |     cs->halted = 1; | 
					
						
							| 
									
										
										
										
											2013-08-26 08:31:06 +02:00
										 |  |  |     cs->exception_index = EXCP_HLT; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:19 +00:00
										 |  |  | static void ppce500_cpu_reset(void *opaque) | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-04 02:09:06 +02:00
										 |  |  |     PowerPCCPU *cpu = opaque; | 
					
						
							| 
									
										
										
										
											2013-01-17 18:51:17 +01:00
										 |  |  |     CPUState *cs = CPU(cpu); | 
					
						
							| 
									
										
										
										
											2012-05-04 02:09:06 +02:00
										 |  |  |     CPUPPCState *env = &cpu->env; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |     struct boot_info *bi = env->load_info; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-17 18:51:17 +01:00
										 |  |  |     cpu_reset(cs); | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Set initial guest state. */ | 
					
						
							| 
									
										
										
										
											2013-01-17 18:51:17 +01:00
										 |  |  |     cs->halted = 0; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |     env->gpr[1] = (16<<20) - 8; | 
					
						
							|  |  |  |     env->gpr[3] = bi->dt_base; | 
					
						
							| 
									
										
										
										
											2013-04-29 04:40:56 +00:00
										 |  |  |     env->gpr[4] = 0; | 
					
						
							|  |  |  |     env->gpr[5] = 0; | 
					
						
							|  |  |  |     env->gpr[6] = EPAPR_MAGIC; | 
					
						
							|  |  |  |     env->gpr[7] = mmubooke_initial_mapsize(env); | 
					
						
							|  |  |  |     env->gpr[8] = 0; | 
					
						
							|  |  |  |     env->gpr[9] = 0; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  |     env->nip = bi->entry; | 
					
						
							| 
									
										
										
										
											2012-05-19 00:48:50 +02:00
										 |  |  |     mmubooke_create_initial_mapping(env); | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  | static DeviceState *ppce500_init_mpic_qemu(PPCE500Params *params, | 
					
						
							|  |  |  |                                            qemu_irq **irqs) | 
					
						
							| 
									
										
										
										
											2013-04-15 13:19:33 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     DeviceState *dev; | 
					
						
							|  |  |  |     SysBusDevice *s; | 
					
						
							|  |  |  |     int i, j, k; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-18 03:58:07 +02:00
										 |  |  |     dev = qdev_create(NULL, TYPE_OPENPIC); | 
					
						
							| 
									
										
										
										
											2013-04-15 13:19:33 +00:00
										 |  |  |     qdev_prop_set_uint32(dev, "model", params->mpic_version); | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |     qdev_prop_set_uint32(dev, "nb_cpus", smp_cpus); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-15 13:19:33 +00:00
										 |  |  |     qdev_init_nofail(dev); | 
					
						
							|  |  |  |     s = SYS_BUS_DEVICE(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     k = 0; | 
					
						
							|  |  |  |     for (i = 0; i < smp_cpus; i++) { | 
					
						
							|  |  |  |         for (j = 0; j < OPENPIC_OUTPUT_NB; j++) { | 
					
						
							|  |  |  |             sysbus_connect_irq(s, k++, irqs[i][j]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |     return dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DeviceState *ppce500_init_mpic_kvm(PPCE500Params *params, | 
					
						
							| 
									
										
										
										
											2015-02-05 10:34:47 +01:00
										 |  |  |                                           qemu_irq **irqs, Error **errp) | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-02-05 10:34:47 +01:00
										 |  |  |     Error *err = NULL; | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |     DeviceState *dev; | 
					
						
							|  |  |  |     CPUState *cs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-16 21:30:40 +02:00
										 |  |  |     dev = qdev_create(NULL, TYPE_KVM_OPENPIC); | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |     qdev_prop_set_uint32(dev, "model", params->mpic_version); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-05 10:34:47 +01:00
										 |  |  |     object_property_set_bool(OBJECT(dev), true, "realized", &err); | 
					
						
							|  |  |  |     if (err) { | 
					
						
							|  |  |  |         error_propagate(errp, err); | 
					
						
							|  |  |  |         object_unparent(OBJECT(dev)); | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 23:50:24 +02:00
										 |  |  |     CPU_FOREACH(cs) { | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |         if (kvm_openpic_connect_vcpu(dev, cs)) { | 
					
						
							|  |  |  |             fprintf(stderr, "%s: failed to connect vcpu to irqchip\n", | 
					
						
							|  |  |  |                     __func__); | 
					
						
							|  |  |  |             abort(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:59:54 +02:00
										 |  |  | static qemu_irq *ppce500_init_mpic(MachineState *machine, PPCE500Params *params, | 
					
						
							|  |  |  |                                    MemoryRegion *ccsr, qemu_irq **irqs) | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     qemu_irq *mpic; | 
					
						
							|  |  |  |     DeviceState *dev = NULL; | 
					
						
							|  |  |  |     SysBusDevice *s; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 01:15:10 -07:00
										 |  |  |     mpic = g_new0(qemu_irq, 256); | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (kvm_enabled()) { | 
					
						
							| 
									
										
										
										
											2015-02-05 10:34:47 +01:00
										 |  |  |         Error *err = NULL; | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:59:54 +02:00
										 |  |  |         if (machine_kernel_irqchip_allowed(machine)) { | 
					
						
							| 
									
										
										
										
											2015-02-05 10:34:47 +01:00
										 |  |  |             dev = ppce500_init_mpic_kvm(params, irqs, &err); | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-03-10 18:59:54 +02:00
										 |  |  |         if (machine_kernel_irqchip_required(machine) && !dev) { | 
					
						
							| 
									
										
										
										
											2015-12-18 16:35:14 +01:00
										 |  |  |             error_reportf_err(err, | 
					
						
							|  |  |  |                               "kernel_irqchip requested but unavailable: "); | 
					
						
							| 
									
										
										
										
											2015-02-05 10:34:47 +01:00
										 |  |  |             exit(1); | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!dev) { | 
					
						
							|  |  |  |         dev = ppce500_init_mpic_qemu(params, irqs); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-15 13:19:33 +00:00
										 |  |  |     for (i = 0; i < 256; i++) { | 
					
						
							|  |  |  |         mpic[i] = qdev_get_gpio_in(dev, i); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:32:51 -05:00
										 |  |  |     s = SYS_BUS_DEVICE(dev); | 
					
						
							| 
									
										
										
										
											2013-04-15 13:19:33 +00:00
										 |  |  |     memory_region_add_subregion(ccsr, MPC8544_MPIC_REGS_OFFSET, | 
					
						
							|  |  |  |                                 s->mmio[0].memory); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return mpic; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 16:05:47 +02:00
										 |  |  | static void ppce500_power_off(void *opaque, int line, int on) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (on) { | 
					
						
							|  |  |  |         qemu_system_shutdown_request(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  | void ppce500_init(MachineState *machine, PPCE500Params *params) | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-11 16:07:16 -07:00
										 |  |  |     MemoryRegion *address_space_mem = get_system_memory(); | 
					
						
							| 
									
										
										
										
											2011-10-02 16:43:01 +02:00
										 |  |  |     MemoryRegion *ram = g_new(MemoryRegion, 1); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     PCIBus *pci_bus; | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:23 +01:00
										 |  |  |     CPUPPCState *env = NULL; | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     uint64_t loadaddr; | 
					
						
							|  |  |  |     hwaddr kernel_base = -1LL; | 
					
						
							|  |  |  |     int kernel_size = 0; | 
					
						
							|  |  |  |     hwaddr dt_base = 0; | 
					
						
							|  |  |  |     hwaddr initrd_base = 0; | 
					
						
							|  |  |  |     int initrd_size = 0; | 
					
						
							|  |  |  |     hwaddr cur_base = 0; | 
					
						
							|  |  |  |     char *filename; | 
					
						
							|  |  |  |     hwaddr bios_entry = 0; | 
					
						
							|  |  |  |     target_long bios_size; | 
					
						
							|  |  |  |     struct boot_info *boot_info; | 
					
						
							|  |  |  |     int dt_size; | 
					
						
							| 
									
										
										
										
											2013-04-15 13:19:33 +00:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2014-05-12 15:15:39 +05:30
										 |  |  |     /* irq num for pin INTA, INTB, INTC and INTD is 1, 2, 3 and
 | 
					
						
							|  |  |  |      * 4 respectively */ | 
					
						
							|  |  |  |     unsigned int pci_irq_nrs[PCI_NUM_PINS] = {1, 2, 3, 4}; | 
					
						
							| 
									
										
										
										
											2011-07-21 01:42:58 +02:00
										 |  |  |     qemu_irq **irqs, *mpic; | 
					
						
							| 
									
										
										
										
											2010-08-31 00:22:28 +02:00
										 |  |  |     DeviceState *dev; | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:23 +01:00
										 |  |  |     CPUPPCState *firstenv = NULL; | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |     MemoryRegion *ccsr_addr_space; | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |     SysBusDevice *s; | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |     PPCE500CCSRState *ccsr; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  |     /* Setup CPUs */ | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     if (machine->cpu_model == NULL) { | 
					
						
							|  |  |  |         machine->cpu_model = "e500v2_v30"; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:05:03 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-21 01:42:58 +02:00
										 |  |  |     irqs = g_malloc0(smp_cpus * sizeof(qemu_irq *)); | 
					
						
							|  |  |  |     irqs[0] = g_malloc0(smp_cpus * sizeof(qemu_irq) * OPENPIC_OUTPUT_NB); | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  |     for (i = 0; i < smp_cpus; i++) { | 
					
						
							| 
									
										
										
										
											2012-05-03 05:43:05 +02:00
										 |  |  |         PowerPCCPU *cpu; | 
					
						
							| 
									
										
										
										
											2012-12-17 06:18:02 +01:00
										 |  |  |         CPUState *cs; | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  |         qemu_irq *input; | 
					
						
							| 
									
										
										
										
											2012-05-03 05:43:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |         cpu = cpu_ppc_init(machine->cpu_model); | 
					
						
							| 
									
										
										
										
											2012-05-03 05:43:05 +02:00
										 |  |  |         if (cpu == NULL) { | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  |             fprintf(stderr, "Unable to initialize CPU!\n"); | 
					
						
							|  |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-05-03 05:43:05 +02:00
										 |  |  |         env = &cpu->env; | 
					
						
							| 
									
										
										
										
											2012-12-17 06:18:02 +01:00
										 |  |  |         cs = CPU(cpu); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  |         if (!firstenv) { | 
					
						
							|  |  |  |             firstenv = env; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-21 01:42:58 +02:00
										 |  |  |         irqs[i] = irqs[0] + (i * OPENPIC_OUTPUT_NB); | 
					
						
							|  |  |  |         input = (qemu_irq *)env->irq_inputs; | 
					
						
							|  |  |  |         irqs[i][OPENPIC_OUTPUT_INT] = input[PPCE500_INPUT_INT]; | 
					
						
							|  |  |  |         irqs[i][OPENPIC_OUTPUT_CINT] = input[PPCE500_INPUT_CINT]; | 
					
						
							| 
									
										
										
										
											2014-04-03 20:45:27 +02:00
										 |  |  |         env->spr_cb[SPR_BOOKE_PIR].default_value = cs->cpu_index = i; | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |         env->mpic_iack = params->ccsrbar_base + | 
					
						
							| 
									
										
										
										
											2013-01-21 15:53:54 +00:00
										 |  |  |                          MPC8544_MPIC_REGS_OFFSET + 0xa0; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-01 04:43:18 +01:00
										 |  |  |         ppc_booke_timers_init(cpu, 400000000, PPC_TIMER_E500); | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Register reset handler */ | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  |         if (!i) { | 
					
						
							|  |  |  |             /* Primary CPU */ | 
					
						
							|  |  |  |             struct boot_info *boot_info; | 
					
						
							|  |  |  |             boot_info = g_malloc0(sizeof(struct boot_info)); | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:19 +00:00
										 |  |  |             qemu_register_reset(ppce500_cpu_reset, cpu); | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  |             env->load_info = boot_info; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             /* Secondary CPUs */ | 
					
						
							| 
									
										
										
										
											2012-07-02 13:03:19 +00:00
										 |  |  |             qemu_register_reset(ppce500_cpu_reset_sec, cpu); | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-21 01:41:16 +02:00
										 |  |  |     env = firstenv; | 
					
						
							| 
									
										
										
										
											2011-04-30 23:34:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     /* Fixup Memory size on a alignment boundary */ | 
					
						
							|  |  |  |     ram_size &= ~(RAM_SIZES_ALIGN - 1); | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     machine->ram_size = ram_size; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Register Memory */ | 
					
						
							| 
									
										
										
										
											2014-07-10 17:31:03 +05:30
										 |  |  |     memory_region_allocate_system_memory(ram, NULL, "mpc8544ds.ram", ram_size); | 
					
						
							| 
									
										
										
										
											2011-10-02 16:43:01 +02:00
										 |  |  |     memory_region_add_subregion(address_space_mem, 0, ram); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |     dev = qdev_create(NULL, "e500-ccsr"); | 
					
						
							|  |  |  |     object_property_add_child(qdev_get_machine(), "e500-ccsr", | 
					
						
							|  |  |  |                               OBJECT(dev), NULL); | 
					
						
							|  |  |  |     qdev_init_nofail(dev); | 
					
						
							|  |  |  |     ccsr = CCSR(dev); | 
					
						
							|  |  |  |     ccsr_addr_space = &ccsr->ccsr_space; | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |     memory_region_add_subregion(address_space_mem, params->ccsrbar_base, | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |                                 ccsr_addr_space); | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:59:54 +02:00
										 |  |  |     mpic = ppce500_init_mpic(machine, params, ccsr_addr_space, irqs); | 
					
						
							| 
									
										
										
										
											2012-12-08 05:17:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     /* Serial */ | 
					
						
							| 
									
										
										
										
											2010-03-21 19:47:11 +00:00
										 |  |  |     if (serial_hds[0]) { | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |         serial_mm_init(ccsr_addr_space, MPC8544_SERIAL0_REGS_OFFSET, | 
					
						
							| 
									
										
										
										
											2012-12-07 16:10:34 +01:00
										 |  |  |                        0, mpic[42], 399193, | 
					
						
							| 
									
										
										
										
											2011-08-11 16:07:15 -07:00
										 |  |  |                        serial_hds[0], DEVICE_BIG_ENDIAN); | 
					
						
							| 
									
										
										
										
											2010-03-21 19:47:11 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-21 19:47:11 +00:00
										 |  |  |     if (serial_hds[1]) { | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |         serial_mm_init(ccsr_addr_space, MPC8544_SERIAL1_REGS_OFFSET, | 
					
						
							| 
									
										
										
										
											2012-12-07 16:10:34 +01:00
										 |  |  |                        0, mpic[42], 399193, | 
					
						
							| 
									
										
										
										
											2012-10-08 06:46:54 +00:00
										 |  |  |                        serial_hds[1], DEVICE_BIG_ENDIAN); | 
					
						
							| 
									
										
										
										
											2010-03-21 19:47:11 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-02 13:53:40 +02:00
										 |  |  |     /* General Utility device */ | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |     dev = qdev_create(NULL, "mpc8544-guts"); | 
					
						
							|  |  |  |     qdev_init_nofail(dev); | 
					
						
							|  |  |  |     s = SYS_BUS_DEVICE(dev); | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |     memory_region_add_subregion(ccsr_addr_space, MPC8544_UTIL_OFFSET, | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |                                 sysbus_mmio_get_region(s, 0)); | 
					
						
							| 
									
										
										
										
											2011-06-02 13:53:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     /* PCI */ | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |     dev = qdev_create(NULL, "e500-pcihost"); | 
					
						
							| 
									
										
										
										
											2012-12-12 13:53:53 +01:00
										 |  |  |     qdev_prop_set_uint32(dev, "first_slot", params->pci_first_slot); | 
					
						
							| 
									
										
										
										
											2014-05-12 15:15:40 +05:30
										 |  |  |     qdev_prop_set_uint32(dev, "first_pin_irq", pci_irq_nrs[0]); | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |     qdev_init_nofail(dev); | 
					
						
							|  |  |  |     s = SYS_BUS_DEVICE(dev); | 
					
						
							| 
									
										
										
										
											2014-05-12 15:15:39 +05:30
										 |  |  |     for (i = 0; i < PCI_NUM_PINS; i++) { | 
					
						
							|  |  |  |         sysbus_connect_irq(s, i, mpic[pci_irq_nrs[i]]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |     memory_region_add_subregion(ccsr_addr_space, MPC8544_PCI_REGS_OFFSET, | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:27 +00:00
										 |  |  |                                 sysbus_mmio_get_region(s, 0)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-27 03:23:26 +02:00
										 |  |  |     pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci.0"); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     if (!pci_bus) | 
					
						
							|  |  |  |         printf("couldn't create PCI controller!\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (pci_bus) { | 
					
						
							|  |  |  |         /* Register network interfaces. */ | 
					
						
							|  |  |  |         for (i = 0; i < nb_nics; i++) { | 
					
						
							| 
									
										
										
										
											2013-06-06 18:48:51 +10:00
										 |  |  |             pci_nic_init_nofail(&nd_table[i], pci_bus, "virtio", NULL); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  |     /* Register spinning region */ | 
					
						
							| 
									
										
										
										
											2014-11-07 16:50:44 +01:00
										 |  |  |     sysbus_create_simple("e500-spin", params->spin_base, NULL); | 
					
						
							| 
									
										
										
										
											2011-07-22 13:32:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     if (cur_base < (32 * 1024 * 1024)) { | 
					
						
							|  |  |  |         /* u-boot occupies memory up to 32MB, so load blobs above */ | 
					
						
							|  |  |  |         cur_base = (32 * 1024 * 1024); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  |     if (params->has_mpc8xxx_gpio) { | 
					
						
							| 
									
										
										
										
											2014-10-01 16:05:47 +02:00
										 |  |  |         qemu_irq poweroff_irq; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  |         dev = qdev_create(NULL, "mpc8xxx_gpio"); | 
					
						
							|  |  |  |         s = SYS_BUS_DEVICE(dev); | 
					
						
							|  |  |  |         qdev_init_nofail(dev); | 
					
						
							|  |  |  |         sysbus_connect_irq(s, 0, mpic[MPC8XXX_GPIO_IRQ]); | 
					
						
							|  |  |  |         memory_region_add_subregion(ccsr_addr_space, MPC8XXX_GPIO_OFFSET, | 
					
						
							|  |  |  |                                     sysbus_mmio_get_region(s, 0)); | 
					
						
							| 
									
										
										
										
											2014-10-01 16:05:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Power Off GPIO at Pin 0 */ | 
					
						
							|  |  |  |         poweroff_irq = qemu_allocate_irq(ppce500_power_off, NULL, 0); | 
					
						
							|  |  |  |         qdev_connect_gpio_out(dev, 0, poweroff_irq); | 
					
						
							| 
									
										
										
										
											2014-10-01 16:00:49 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-01 16:27:09 +02:00
										 |  |  |     /* Platform Bus Device */ | 
					
						
							|  |  |  |     if (params->has_platform_bus) { | 
					
						
							|  |  |  |         dev = qdev_create(NULL, TYPE_PLATFORM_BUS_DEVICE); | 
					
						
							|  |  |  |         dev->id = TYPE_PLATFORM_BUS_DEVICE; | 
					
						
							|  |  |  |         qdev_prop_set_uint32(dev, "num_irqs", params->platform_bus_num_irqs); | 
					
						
							|  |  |  |         qdev_prop_set_uint32(dev, "mmio_size", params->platform_bus_size); | 
					
						
							|  |  |  |         qdev_init_nofail(dev); | 
					
						
							|  |  |  |         s = SYS_BUS_DEVICE(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (i = 0; i < params->platform_bus_num_irqs; i++) { | 
					
						
							|  |  |  |             int irqn = params->platform_bus_first_irq + i; | 
					
						
							|  |  |  |             sysbus_connect_irq(s, i, mpic[irqn]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         memory_region_add_subregion(address_space_mem, | 
					
						
							|  |  |  |                                     params->platform_bus_base, | 
					
						
							|  |  |  |                                     sysbus_mmio_get_region(s, 0)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     /* Load kernel. */ | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     if (machine->kernel_filename) { | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |         kernel_base = cur_base; | 
					
						
							|  |  |  |         kernel_size = load_image_targphys(machine->kernel_filename, | 
					
						
							|  |  |  |                                           cur_base, | 
					
						
							|  |  |  |                                           ram_size - cur_base); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |         if (kernel_size < 0) { | 
					
						
							|  |  |  |             fprintf(stderr, "qemu: could not load kernel '%s'\n", | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |                     machine->kernel_filename); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-01-14 20:24:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |         cur_base += kernel_size; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Load initrd. */ | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     if (machine->initrd_filename) { | 
					
						
							| 
									
										
										
										
											2013-01-14 20:24:16 +01:00
										 |  |  |         initrd_base = (cur_base + INITRD_LOAD_PAD) & ~INITRD_PAD_MASK; | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |         initrd_size = load_image_targphys(machine->initrd_filename, initrd_base, | 
					
						
							| 
									
										
										
										
											2009-04-10 03:36:49 +00:00
										 |  |  |                                           ram_size - initrd_base); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (initrd_size < 0) { | 
					
						
							|  |  |  |             fprintf(stderr, "qemu: could not load initial ram disk '%s'\n", | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |                     machine->initrd_filename); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-01-14 20:24:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         cur_base = initrd_base + initrd_size; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Smart firmware defaults ahead! | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * We follow the following table to select which payload we execute. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      *  -kernel | -bios | payload | 
					
						
							|  |  |  |      * ---------+-------+--------- | 
					
						
							|  |  |  |      *     N    |   Y   | u-boot | 
					
						
							|  |  |  |      *     N    |   N   | u-boot | 
					
						
							|  |  |  |      *     Y    |   Y   | u-boot | 
					
						
							|  |  |  |      *     Y    |   N   | kernel | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This ensures backwards compatibility with how we used to expose | 
					
						
							|  |  |  |      * -kernel to users but allows them to run through u-boot as well. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (bios_name == NULL) { | 
					
						
							|  |  |  |         if (machine->kernel_filename) { | 
					
						
							|  |  |  |             bios_name = machine->kernel_filename; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             bios_name = "u-boot.e500"; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bios_size = load_elf(filename, NULL, NULL, &bios_entry, &loadaddr, NULL, | 
					
						
							| 
									
										
										
										
											2016-03-04 11:30:21 +00:00
										 |  |  |                          1, PPC_ELF_MACHINE, 0, 0); | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     if (bios_size < 0) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Hrm. No ELF image? Try a uImage, maybe someone is giving us an | 
					
						
							|  |  |  |          * ePAPR compliant kernel | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2014-10-19 07:42:22 +04:00
										 |  |  |         kernel_size = load_uimage(filename, &bios_entry, &loadaddr, NULL, | 
					
						
							|  |  |  |                                   NULL, NULL); | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |         if (kernel_size < 0) { | 
					
						
							|  |  |  |             fprintf(stderr, "qemu: could not load firmware '%s'\n", filename); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-28 20:39:43 +08:00
										 |  |  |     g_free(filename); | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Reserve space for dtb */ | 
					
						
							|  |  |  |     dt_base = (loadaddr + bios_size + DTC_LOAD_PAD) & ~DTC_PAD_MASK; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     dt_size = ppce500_prep_device_tree(machine, params, dt_base, | 
					
						
							|  |  |  |                                        initrd_base, initrd_size, | 
					
						
							|  |  |  |                                        kernel_base, kernel_size); | 
					
						
							|  |  |  |     if (dt_size < 0) { | 
					
						
							|  |  |  |         fprintf(stderr, "couldn't load device tree\n"); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-01-20 00:27:25 +01:00
										 |  |  |     assert(dt_size < DTB_MAX_SIZE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     boot_info = env->load_info; | 
					
						
							|  |  |  |     boot_info->entry = bios_entry; | 
					
						
							|  |  |  |     boot_info->dt_base = dt_base; | 
					
						
							|  |  |  |     boot_info->dt_size = dt_size; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:42:42 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int e500_ccsr_initfn(SysBusDevice *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PPCE500CCSRState *ccsr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ccsr = CCSR(dev); | 
					
						
							| 
									
										
										
										
											2013-06-06 21:25:08 -04:00
										 |  |  |     memory_region_init(&ccsr->ccsr_space, OBJECT(ccsr), "e500-ccsr", | 
					
						
							| 
									
										
										
										
											2012-10-10 04:28:28 +00:00
										 |  |  |                        MPC8544_CCSRBAR_SIZE); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void e500_ccsr_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); | 
					
						
							|  |  |  |     k->init = e500_ccsr_initfn; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo e500_ccsr_info = { | 
					
						
							|  |  |  |     .name          = TYPE_CCSR, | 
					
						
							|  |  |  |     .parent        = TYPE_SYS_BUS_DEVICE, | 
					
						
							|  |  |  |     .instance_size = sizeof(PPCE500CCSRState), | 
					
						
							|  |  |  |     .class_init    = e500_ccsr_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void e500_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&e500_ccsr_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(e500_register_types) |