]>
Commit | Line | Data |
---|---|---|
4690bf4e AF |
1 | /* |
2 | * Xilinx Zynq MPSoC PMU (Power Management Unit) emulation | |
3 | * | |
4 | * Copyright (C) 2017 Xilinx Inc | |
5 | * Written by Alistair Francis <[email protected]> | |
6 | * | |
7 | * This program is free software; you can redistribute it and/or modify it | |
8 | * under the terms of the GNU General Public License as published by the | |
9 | * Free Software Foundation; either version 2 of the License, or | |
10 | * (at your option) any later version. | |
11 | * | |
12 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 | * for more details. | |
16 | */ | |
17 | ||
18 | #include "qemu/osdep.h" | |
19 | #include "qapi/error.h" | |
133d23b3 | 20 | #include "exec/address-spaces.h" |
4690bf4e AF |
21 | #include "hw/boards.h" |
22 | #include "cpu.h" | |
133d23b3 | 23 | #include "boot.h" |
4690bf4e | 24 | |
07b30201 | 25 | #include "hw/intc/xlnx-zynqmp-ipi.h" |
633a91b6 AF |
26 | #include "hw/intc/xlnx-pmu-iomod-intc.h" |
27 | ||
4690bf4e AF |
28 | /* Define the PMU device */ |
29 | ||
30 | #define TYPE_XLNX_ZYNQMP_PMU_SOC "xlnx,zynqmp-pmu-soc" | |
31 | #define XLNX_ZYNQMP_PMU_SOC(obj) OBJECT_CHECK(XlnxZynqMPPMUSoCState, (obj), \ | |
32 | TYPE_XLNX_ZYNQMP_PMU_SOC) | |
33 | ||
133d23b3 AF |
34 | #define XLNX_ZYNQMP_PMU_ROM_SIZE 0x8000 |
35 | #define XLNX_ZYNQMP_PMU_ROM_ADDR 0xFFD00000 | |
36 | #define XLNX_ZYNQMP_PMU_RAM_ADDR 0xFFDC0000 | |
37 | ||
633a91b6 AF |
38 | #define XLNX_ZYNQMP_PMU_INTC_ADDR 0xFFD40000 |
39 | ||
07b30201 AF |
40 | #define XLNX_ZYNQMP_PMU_NUM_IPIS 4 |
41 | ||
42 | static const uint64_t ipi_addr[XLNX_ZYNQMP_PMU_NUM_IPIS] = { | |
43 | 0xFF340000, 0xFF350000, 0xFF360000, 0xFF370000, | |
44 | }; | |
45 | static const uint64_t ipi_irq[XLNX_ZYNQMP_PMU_NUM_IPIS] = { | |
46 | 19, 20, 21, 22, | |
47 | }; | |
48 | ||
4690bf4e AF |
49 | typedef struct XlnxZynqMPPMUSoCState { |
50 | /*< private >*/ | |
51 | DeviceState parent_obj; | |
52 | ||
53 | /*< public >*/ | |
133d23b3 | 54 | MicroBlazeCPU cpu; |
633a91b6 | 55 | XlnxPMUIOIntc intc; |
a8ae92e0 | 56 | XlnxZynqMPIPI ipi[XLNX_ZYNQMP_PMU_NUM_IPIS]; |
4690bf4e AF |
57 | } XlnxZynqMPPMUSoCState; |
58 | ||
633a91b6 | 59 | |
4690bf4e AF |
60 | static void xlnx_zynqmp_pmu_soc_init(Object *obj) |
61 | { | |
133d23b3 | 62 | XlnxZynqMPPMUSoCState *s = XLNX_ZYNQMP_PMU_SOC(obj); |
4690bf4e | 63 | |
9fc7fc4d | 64 | object_initialize_child(obj, "pmu-cpu", &s->cpu, TYPE_MICROBLAZE_CPU); |
633a91b6 | 65 | |
db873cc5 | 66 | object_initialize_child(obj, "intc", &s->intc, TYPE_XLNX_PMU_IO_INTC); |
da4aeff9 PMD |
67 | |
68 | /* Create the IPI device */ | |
69 | for (int i = 0; i < XLNX_ZYNQMP_PMU_NUM_IPIS; i++) { | |
ff5d4dc9 | 70 | char *name = g_strdup_printf("ipi%d", i); |
db873cc5 | 71 | object_initialize_child(obj, name, &s->ipi[i], TYPE_XLNX_ZYNQMP_IPI); |
ff5d4dc9 | 72 | g_free(name); |
da4aeff9 | 73 | } |
4690bf4e AF |
74 | } |
75 | ||
76 | static void xlnx_zynqmp_pmu_soc_realize(DeviceState *dev, Error **errp) | |
77 | { | |
133d23b3 AF |
78 | XlnxZynqMPPMUSoCState *s = XLNX_ZYNQMP_PMU_SOC(dev); |
79 | Error *err = NULL; | |
80 | ||
81 | object_property_set_uint(OBJECT(&s->cpu), XLNX_ZYNQMP_PMU_ROM_ADDR, | |
82 | "base-vectors", &error_abort); | |
83 | object_property_set_bool(OBJECT(&s->cpu), true, "use-stack-protection", | |
84 | &error_abort); | |
85 | object_property_set_uint(OBJECT(&s->cpu), 0, "use-fpu", &error_abort); | |
86 | object_property_set_uint(OBJECT(&s->cpu), 0, "use-hw-mul", &error_abort); | |
87 | object_property_set_bool(OBJECT(&s->cpu), true, "use-barrel", | |
88 | &error_abort); | |
89 | object_property_set_bool(OBJECT(&s->cpu), true, "use-msr-instr", | |
90 | &error_abort); | |
91 | object_property_set_bool(OBJECT(&s->cpu), true, "use-pcmp-instr", | |
92 | &error_abort); | |
93 | object_property_set_bool(OBJECT(&s->cpu), false, "use-mmu", &error_abort); | |
94 | object_property_set_bool(OBJECT(&s->cpu), true, "endianness", | |
95 | &error_abort); | |
96 | object_property_set_str(OBJECT(&s->cpu), "8.40.b", "version", | |
97 | &error_abort); | |
98 | object_property_set_uint(OBJECT(&s->cpu), 0, "pvr", &error_abort); | |
118bfd76 | 99 | if (!qdev_realize(DEVICE(&s->cpu), NULL, &err)) { |
133d23b3 AF |
100 | error_propagate(errp, err); |
101 | return; | |
102 | } | |
633a91b6 AF |
103 | |
104 | object_property_set_uint(OBJECT(&s->intc), 0x10, "intc-intr-size", | |
105 | &error_abort); | |
106 | object_property_set_uint(OBJECT(&s->intc), 0x0, "intc-level-edge", | |
107 | &error_abort); | |
108 | object_property_set_uint(OBJECT(&s->intc), 0xffff, "intc-positive", | |
109 | &error_abort); | |
118bfd76 | 110 | if (!sysbus_realize(SYS_BUS_DEVICE(&s->intc), &err)) { |
633a91b6 AF |
111 | error_propagate(errp, err); |
112 | return; | |
113 | } | |
114 | sysbus_mmio_map(SYS_BUS_DEVICE(&s->intc), 0, XLNX_ZYNQMP_PMU_INTC_ADDR); | |
115 | sysbus_connect_irq(SYS_BUS_DEVICE(&s->intc), 0, | |
116 | qdev_get_gpio_in(DEVICE(&s->cpu), MB_CPU_IRQ)); | |
da4aeff9 PMD |
117 | |
118 | /* Connect the IPI device */ | |
119 | for (int i = 0; i < XLNX_ZYNQMP_PMU_NUM_IPIS; i++) { | |
db873cc5 | 120 | sysbus_realize(SYS_BUS_DEVICE(&s->ipi[i]), &error_abort); |
da4aeff9 PMD |
121 | sysbus_mmio_map(SYS_BUS_DEVICE(&s->ipi[i]), 0, ipi_addr[i]); |
122 | sysbus_connect_irq(SYS_BUS_DEVICE(&s->ipi[i]), 0, | |
123 | qdev_get_gpio_in(DEVICE(&s->intc), ipi_irq[i])); | |
124 | } | |
4690bf4e AF |
125 | } |
126 | ||
127 | static void xlnx_zynqmp_pmu_soc_class_init(ObjectClass *oc, void *data) | |
128 | { | |
129 | DeviceClass *dc = DEVICE_CLASS(oc); | |
130 | ||
131 | dc->realize = xlnx_zynqmp_pmu_soc_realize; | |
132 | } | |
133 | ||
134 | static const TypeInfo xlnx_zynqmp_pmu_soc_type_info = { | |
135 | .name = TYPE_XLNX_ZYNQMP_PMU_SOC, | |
136 | .parent = TYPE_DEVICE, | |
137 | .instance_size = sizeof(XlnxZynqMPPMUSoCState), | |
138 | .instance_init = xlnx_zynqmp_pmu_soc_init, | |
139 | .class_init = xlnx_zynqmp_pmu_soc_class_init, | |
140 | }; | |
141 | ||
142 | static void xlnx_zynqmp_pmu_soc_register_types(void) | |
143 | { | |
144 | type_register_static(&xlnx_zynqmp_pmu_soc_type_info); | |
145 | } | |
146 | ||
147 | type_init(xlnx_zynqmp_pmu_soc_register_types) | |
148 | ||
149 | /* Define the PMU Machine */ | |
150 | ||
151 | static void xlnx_zynqmp_pmu_init(MachineState *machine) | |
152 | { | |
133d23b3 AF |
153 | XlnxZynqMPPMUSoCState *pmu = g_new0(XlnxZynqMPPMUSoCState, 1); |
154 | MemoryRegion *address_space_mem = get_system_memory(); | |
155 | MemoryRegion *pmu_rom = g_new(MemoryRegion, 1); | |
156 | MemoryRegion *pmu_ram = g_new(MemoryRegion, 1); | |
157 | ||
158 | /* Create the ROM */ | |
159 | memory_region_init_rom(pmu_rom, NULL, "xlnx-zynqmp-pmu.rom", | |
160 | XLNX_ZYNQMP_PMU_ROM_SIZE, &error_fatal); | |
161 | memory_region_add_subregion(address_space_mem, XLNX_ZYNQMP_PMU_ROM_ADDR, | |
162 | pmu_rom); | |
163 | ||
164 | /* Create the RAM */ | |
165 | memory_region_init_ram(pmu_ram, NULL, "xlnx-zynqmp-pmu.ram", | |
166 | machine->ram_size, &error_fatal); | |
167 | memory_region_add_subregion(address_space_mem, XLNX_ZYNQMP_PMU_RAM_ADDR, | |
168 | pmu_ram); | |
169 | ||
170 | /* Create the PMU device */ | |
9fc7fc4d MA |
171 | object_initialize_child(OBJECT(machine), "pmu", pmu, |
172 | TYPE_XLNX_ZYNQMP_PMU_SOC); | |
ce189ab2 | 173 | qdev_realize(DEVICE(pmu), NULL, &error_fatal); |
133d23b3 AF |
174 | |
175 | /* Load the kernel */ | |
176 | microblaze_load_kernel(&pmu->cpu, XLNX_ZYNQMP_PMU_RAM_ADDR, | |
177 | machine->ram_size, | |
178 | machine->initrd_filename, | |
179 | machine->dtb, | |
180 | NULL); | |
4690bf4e AF |
181 | } |
182 | ||
183 | static void xlnx_zynqmp_pmu_machine_init(MachineClass *mc) | |
184 | { | |
185 | mc->desc = "Xilinx ZynqMP PMU machine"; | |
186 | mc->init = xlnx_zynqmp_pmu_init; | |
187 | } | |
188 | ||
189 | DEFINE_MACHINE("xlnx-zynqmp-pmu", xlnx_zynqmp_pmu_machine_init) | |
190 |