2 * Xilinx Zynq MPSoC emulation
4 * Copyright (C) 2015 Xilinx Inc
5 * Written by Peter Crosthwaite <peter.crosthwaite@xilinx.com>
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.
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
18 #include "hw/arm/xlnx-zynqmp.h"
19 #include "hw/intc/arm_gic_common.h"
20 #include "exec/address-spaces.h"
22 #define GIC_NUM_SPI_INTR 160
24 #define ARM_PHYS_TIMER_PPI 30
25 #define ARM_VIRT_TIMER_PPI 27
27 #define GIC_BASE_ADDR 0xf9000000
28 #define GIC_DIST_ADDR 0xf9010000
29 #define GIC_CPU_ADDR 0xf9020000
31 static const uint64_t gem_addr
[XLNX_ZYNQMP_NUM_GEMS
] = {
32 0xFF0B0000, 0xFF0C0000, 0xFF0D0000, 0xFF0E0000,
35 static const int gem_intr
[XLNX_ZYNQMP_NUM_GEMS
] = {
39 static const uint64_t uart_addr
[XLNX_ZYNQMP_NUM_UARTS
] = {
40 0xFF000000, 0xFF010000,
43 static const int uart_intr
[XLNX_ZYNQMP_NUM_UARTS
] = {
47 typedef struct XlnxZynqMPGICRegion
{
50 } XlnxZynqMPGICRegion
;
52 static const XlnxZynqMPGICRegion xlnx_zynqmp_gic_regions
[] = {
53 { .region_index
= 0, .address
= GIC_DIST_ADDR
, },
54 { .region_index
= 1, .address
= GIC_CPU_ADDR
, },
57 static inline int arm_gic_ppi_index(int cpu_nr
, int ppi_index
)
59 return GIC_NUM_SPI_INTR
+ cpu_nr
* GIC_INTERNAL
+ ppi_index
;
62 static void xlnx_zynqmp_init(Object
*obj
)
64 XlnxZynqMPState
*s
= XLNX_ZYNQMP(obj
);
67 for (i
= 0; i
< XLNX_ZYNQMP_NUM_APU_CPUS
; i
++) {
68 object_initialize(&s
->apu_cpu
[i
], sizeof(s
->apu_cpu
[i
]),
69 "cortex-a53-" TYPE_ARM_CPU
);
70 object_property_add_child(obj
, "apu-cpu[*]", OBJECT(&s
->apu_cpu
[i
]),
74 for (i
= 0; i
< XLNX_ZYNQMP_NUM_RPU_CPUS
; i
++) {
75 object_initialize(&s
->rpu_cpu
[i
], sizeof(s
->rpu_cpu
[i
]),
76 "cortex-r5-" TYPE_ARM_CPU
);
77 object_property_add_child(obj
, "rpu-cpu[*]", OBJECT(&s
->rpu_cpu
[i
]),
81 object_initialize(&s
->gic
, sizeof(s
->gic
), TYPE_ARM_GIC
);
82 qdev_set_parent_bus(DEVICE(&s
->gic
), sysbus_get_default());
84 for (i
= 0; i
< XLNX_ZYNQMP_NUM_GEMS
; i
++) {
85 object_initialize(&s
->gem
[i
], sizeof(s
->gem
[i
]), TYPE_CADENCE_GEM
);
86 qdev_set_parent_bus(DEVICE(&s
->gem
[i
]), sysbus_get_default());
89 for (i
= 0; i
< XLNX_ZYNQMP_NUM_UARTS
; i
++) {
90 object_initialize(&s
->uart
[i
], sizeof(s
->uart
[i
]), TYPE_CADENCE_UART
);
91 qdev_set_parent_bus(DEVICE(&s
->uart
[i
]), sysbus_get_default());
95 static void xlnx_zynqmp_realize(DeviceState
*dev
, Error
**errp
)
97 XlnxZynqMPState
*s
= XLNX_ZYNQMP(dev
);
98 MemoryRegion
*system_memory
= get_system_memory();
100 const char *boot_cpu
= s
->boot_cpu
? s
->boot_cpu
: "apu-cpu[0]";
101 qemu_irq gic_spi
[GIC_NUM_SPI_INTR
];
104 qdev_prop_set_uint32(DEVICE(&s
->gic
), "num-irq", GIC_NUM_SPI_INTR
+ 32);
105 qdev_prop_set_uint32(DEVICE(&s
->gic
), "revision", 2);
106 qdev_prop_set_uint32(DEVICE(&s
->gic
), "num-cpu", XLNX_ZYNQMP_NUM_APU_CPUS
);
107 object_property_set_bool(OBJECT(&s
->gic
), true, "realized", &err
);
109 error_propagate((errp
), (err
));
112 assert(ARRAY_SIZE(xlnx_zynqmp_gic_regions
) == XLNX_ZYNQMP_GIC_REGIONS
);
113 for (i
= 0; i
< XLNX_ZYNQMP_GIC_REGIONS
; i
++) {
114 SysBusDevice
*gic
= SYS_BUS_DEVICE(&s
->gic
);
115 const XlnxZynqMPGICRegion
*r
= &xlnx_zynqmp_gic_regions
[i
];
116 MemoryRegion
*mr
= sysbus_mmio_get_region(gic
, r
->region_index
);
117 uint32_t addr
= r
->address
;
120 sysbus_mmio_map(gic
, r
->region_index
, addr
);
122 for (j
= 0; j
< XLNX_ZYNQMP_GIC_ALIASES
; j
++) {
123 MemoryRegion
*alias
= &s
->gic_mr
[i
][j
];
125 addr
+= XLNX_ZYNQMP_GIC_REGION_SIZE
;
126 memory_region_init_alias(alias
, OBJECT(s
), "zynqmp-gic-alias", mr
,
127 0, XLNX_ZYNQMP_GIC_REGION_SIZE
);
128 memory_region_add_subregion(system_memory
, addr
, alias
);
132 for (i
= 0; i
< XLNX_ZYNQMP_NUM_APU_CPUS
; i
++) {
136 object_property_set_int(OBJECT(&s
->apu_cpu
[i
]), QEMU_PSCI_CONDUIT_SMC
,
137 "psci-conduit", &error_abort
);
139 name
= object_get_canonical_path_component(OBJECT(&s
->apu_cpu
[i
]));
140 if (strcmp(name
, boot_cpu
)) {
141 /* Secondary CPUs start in PSCI powered-down state */
142 object_property_set_bool(OBJECT(&s
->apu_cpu
[i
]), true,
143 "start-powered-off", &error_abort
);
145 s
->boot_cpu_ptr
= &s
->apu_cpu
[i
];
149 object_property_set_int(OBJECT(&s
->apu_cpu
[i
]), GIC_BASE_ADDR
,
152 error_propagate((errp
), (err
));
156 object_property_set_bool(OBJECT(&s
->apu_cpu
[i
]), true, "realized",
159 error_propagate((errp
), (err
));
163 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gic
), i
,
164 qdev_get_gpio_in(DEVICE(&s
->apu_cpu
[i
]),
166 irq
= qdev_get_gpio_in(DEVICE(&s
->gic
),
167 arm_gic_ppi_index(i
, ARM_PHYS_TIMER_PPI
));
168 qdev_connect_gpio_out(DEVICE(&s
->apu_cpu
[i
]), 0, irq
);
169 irq
= qdev_get_gpio_in(DEVICE(&s
->gic
),
170 arm_gic_ppi_index(i
, ARM_VIRT_TIMER_PPI
));
171 qdev_connect_gpio_out(DEVICE(&s
->apu_cpu
[i
]), 1, irq
);
174 for (i
= 0; i
< XLNX_ZYNQMP_NUM_RPU_CPUS
; i
++) {
177 name
= object_get_canonical_path_component(OBJECT(&s
->rpu_cpu
[i
]));
178 if (strcmp(name
, boot_cpu
)) {
179 /* Secondary CPUs start in PSCI powered-down state */
180 object_property_set_bool(OBJECT(&s
->rpu_cpu
[i
]), true,
181 "start-powered-off", &error_abort
);
183 s
->boot_cpu_ptr
= &s
->rpu_cpu
[i
];
187 object_property_set_bool(OBJECT(&s
->rpu_cpu
[i
]), true, "reset-hivecs",
190 error_propagate(errp
, err
);
194 object_property_set_bool(OBJECT(&s
->rpu_cpu
[i
]), true, "realized",
197 error_propagate((errp
), (err
));
202 if (!s
->boot_cpu_ptr
) {
203 error_setg(errp
, "ZynqMP Boot cpu %s not found\n", boot_cpu
);
207 for (i
= 0; i
< GIC_NUM_SPI_INTR
; i
++) {
208 gic_spi
[i
] = qdev_get_gpio_in(DEVICE(&s
->gic
), i
);
211 for (i
= 0; i
< XLNX_ZYNQMP_NUM_GEMS
; i
++) {
212 NICInfo
*nd
= &nd_table
[i
];
215 qemu_check_nic_model(nd
, TYPE_CADENCE_GEM
);
216 qdev_set_nic_properties(DEVICE(&s
->gem
[i
]), nd
);
218 object_property_set_bool(OBJECT(&s
->gem
[i
]), true, "realized", &err
);
220 error_propagate((errp
), (err
));
223 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->gem
[i
]), 0, gem_addr
[i
]);
224 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gem
[i
]), 0,
225 gic_spi
[gem_intr
[i
]]);
228 for (i
= 0; i
< XLNX_ZYNQMP_NUM_UARTS
; i
++) {
229 object_property_set_bool(OBJECT(&s
->uart
[i
]), true, "realized", &err
);
231 error_propagate((errp
), (err
));
234 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->uart
[i
]), 0, uart_addr
[i
]);
235 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->uart
[i
]), 0,
236 gic_spi
[uart_intr
[i
]]);
240 static Property xlnx_zynqmp_props
[] = {
241 DEFINE_PROP_STRING("boot-cpu", XlnxZynqMPState
, boot_cpu
),
242 DEFINE_PROP_END_OF_LIST()
245 static void xlnx_zynqmp_class_init(ObjectClass
*oc
, void *data
)
247 DeviceClass
*dc
= DEVICE_CLASS(oc
);
249 dc
->props
= xlnx_zynqmp_props
;
250 dc
->realize
= xlnx_zynqmp_realize
;
253 static const TypeInfo xlnx_zynqmp_type_info
= {
254 .name
= TYPE_XLNX_ZYNQMP
,
255 .parent
= TYPE_DEVICE
,
256 .instance_size
= sizeof(XlnxZynqMPState
),
257 .instance_init
= xlnx_zynqmp_init
,
258 .class_init
= xlnx_zynqmp_class_init
,
261 static void xlnx_zynqmp_register_types(void)
263 type_register_static(&xlnx_zynqmp_type_info
);
266 type_init(xlnx_zynqmp_register_types
)