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 "qemu/osdep.h"
19 #include "qapi/error.h"
20 #include "qemu/module.h"
22 #include "hw/arm/xlnx-zynqmp.h"
23 #include "hw/intc/arm_gic_common.h"
24 #include "hw/boards.h"
25 #include "exec/address-spaces.h"
26 #include "sysemu/kvm.h"
27 #include "sysemu/sysemu.h"
30 #define GIC_NUM_SPI_INTR 160
32 #define ARM_PHYS_TIMER_PPI 30
33 #define ARM_VIRT_TIMER_PPI 27
34 #define ARM_HYP_TIMER_PPI 26
35 #define ARM_SEC_TIMER_PPI 29
36 #define GIC_MAINTENANCE_PPI 25
38 #define GEM_REVISION 0x40070106
40 #define GIC_BASE_ADDR 0xf9000000
41 #define GIC_DIST_ADDR 0xf9010000
42 #define GIC_CPU_ADDR 0xf9020000
43 #define GIC_VIFACE_ADDR 0xf9040000
44 #define GIC_VCPU_ADDR 0xf9060000
47 #define SATA_ADDR 0xFD0C0000
48 #define SATA_NUM_PORTS 2
50 #define QSPI_ADDR 0xff0f0000
51 #define LQSPI_ADDR 0xc0000000
54 #define DP_ADDR 0xfd4a0000
57 #define DPDMA_ADDR 0xfd4c0000
60 #define IPI_ADDR 0xFF300000
63 #define RTC_ADDR 0xffa60000
66 #define SDHCI_CAPABILITIES 0x280737ec6481 /* Datasheet: UG1085 (v1.7) */
68 static const uint64_t gem_addr
[XLNX_ZYNQMP_NUM_GEMS
] = {
69 0xFF0B0000, 0xFF0C0000, 0xFF0D0000, 0xFF0E0000,
72 static const int gem_intr
[XLNX_ZYNQMP_NUM_GEMS
] = {
76 static const uint64_t uart_addr
[XLNX_ZYNQMP_NUM_UARTS
] = {
77 0xFF000000, 0xFF010000,
80 static const int uart_intr
[XLNX_ZYNQMP_NUM_UARTS
] = {
84 static const uint64_t sdhci_addr
[XLNX_ZYNQMP_NUM_SDHCI
] = {
85 0xFF160000, 0xFF170000,
88 static const int sdhci_intr
[XLNX_ZYNQMP_NUM_SDHCI
] = {
92 static const uint64_t spi_addr
[XLNX_ZYNQMP_NUM_SPIS
] = {
93 0xFF040000, 0xFF050000,
96 static const int spi_intr
[XLNX_ZYNQMP_NUM_SPIS
] = {
100 static const uint64_t gdma_ch_addr
[XLNX_ZYNQMP_NUM_GDMA_CH
] = {
101 0xFD500000, 0xFD510000, 0xFD520000, 0xFD530000,
102 0xFD540000, 0xFD550000, 0xFD560000, 0xFD570000
105 static const int gdma_ch_intr
[XLNX_ZYNQMP_NUM_GDMA_CH
] = {
106 124, 125, 126, 127, 128, 129, 130, 131
109 static const uint64_t adma_ch_addr
[XLNX_ZYNQMP_NUM_ADMA_CH
] = {
110 0xFFA80000, 0xFFA90000, 0xFFAA0000, 0xFFAB0000,
111 0xFFAC0000, 0xFFAD0000, 0xFFAE0000, 0xFFAF0000
114 static const int adma_ch_intr
[XLNX_ZYNQMP_NUM_ADMA_CH
] = {
115 77, 78, 79, 80, 81, 82, 83, 84
118 typedef struct XlnxZynqMPGICRegion
{
123 } XlnxZynqMPGICRegion
;
125 static const XlnxZynqMPGICRegion xlnx_zynqmp_gic_regions
[] = {
129 .address
= GIC_DIST_ADDR
,
137 .address
= GIC_CPU_ADDR
,
143 .address
= GIC_CPU_ADDR
+ 0x10000,
148 /* Virtual interface */
151 .address
= GIC_VIFACE_ADDR
,
156 /* Virtual CPU interface */
159 .address
= GIC_VCPU_ADDR
,
165 .address
= GIC_VCPU_ADDR
+ 0x10000,
171 static inline int arm_gic_ppi_index(int cpu_nr
, int ppi_index
)
173 return GIC_NUM_SPI_INTR
+ cpu_nr
* GIC_INTERNAL
+ ppi_index
;
176 static void xlnx_zynqmp_create_rpu(MachineState
*ms
, XlnxZynqMPState
*s
,
177 const char *boot_cpu
, Error
**errp
)
181 int num_rpus
= MIN(ms
->smp
.cpus
- XLNX_ZYNQMP_NUM_APU_CPUS
,
182 XLNX_ZYNQMP_NUM_RPU_CPUS
);
185 /* Don't create rpu-cluster object if there's nothing to put in it */
189 object_initialize_child(OBJECT(s
), "rpu-cluster", &s
->rpu_cluster
,
190 sizeof(s
->rpu_cluster
), TYPE_CPU_CLUSTER
,
192 qdev_prop_set_uint32(DEVICE(&s
->rpu_cluster
), "cluster-id", 1);
194 for (i
= 0; i
< num_rpus
; i
++) {
197 object_initialize_child(OBJECT(&s
->rpu_cluster
), "rpu-cpu[*]",
198 &s
->rpu_cpu
[i
], sizeof(s
->rpu_cpu
[i
]),
199 ARM_CPU_TYPE_NAME("cortex-r5f"),
202 name
= object_get_canonical_path_component(OBJECT(&s
->rpu_cpu
[i
]));
203 if (strcmp(name
, boot_cpu
)) {
204 /* Secondary CPUs start in PSCI powered-down state */
205 object_property_set_bool(OBJECT(&s
->rpu_cpu
[i
]), true,
206 "start-powered-off", &error_abort
);
208 s
->boot_cpu_ptr
= &s
->rpu_cpu
[i
];
212 object_property_set_bool(OBJECT(&s
->rpu_cpu
[i
]), true, "reset-hivecs",
214 object_property_set_bool(OBJECT(&s
->rpu_cpu
[i
]), true, "realized",
217 error_propagate(errp
, err
);
222 qdev_init_nofail(DEVICE(&s
->rpu_cluster
));
225 static void xlnx_zynqmp_init(Object
*obj
)
227 MachineState
*ms
= MACHINE(qdev_get_machine());
228 XlnxZynqMPState
*s
= XLNX_ZYNQMP(obj
);
230 int num_apus
= MIN(ms
->smp
.cpus
, XLNX_ZYNQMP_NUM_APU_CPUS
);
232 object_initialize_child(obj
, "apu-cluster", &s
->apu_cluster
,
233 sizeof(s
->apu_cluster
), TYPE_CPU_CLUSTER
,
235 qdev_prop_set_uint32(DEVICE(&s
->apu_cluster
), "cluster-id", 0);
237 for (i
= 0; i
< num_apus
; i
++) {
238 object_initialize_child(OBJECT(&s
->apu_cluster
), "apu-cpu[*]",
239 &s
->apu_cpu
[i
], sizeof(s
->apu_cpu
[i
]),
240 ARM_CPU_TYPE_NAME("cortex-a53"),
244 sysbus_init_child_obj(obj
, "gic", &s
->gic
, sizeof(s
->gic
),
247 for (i
= 0; i
< XLNX_ZYNQMP_NUM_GEMS
; i
++) {
248 sysbus_init_child_obj(obj
, "gem[*]", &s
->gem
[i
], sizeof(s
->gem
[i
]),
252 for (i
= 0; i
< XLNX_ZYNQMP_NUM_UARTS
; i
++) {
253 sysbus_init_child_obj(obj
, "uart[*]", &s
->uart
[i
], sizeof(s
->uart
[i
]),
257 sysbus_init_child_obj(obj
, "sata", &s
->sata
, sizeof(s
->sata
),
260 for (i
= 0; i
< XLNX_ZYNQMP_NUM_SDHCI
; i
++) {
261 sysbus_init_child_obj(obj
, "sdhci[*]", &s
->sdhci
[i
],
262 sizeof(s
->sdhci
[i
]), TYPE_SYSBUS_SDHCI
);
265 for (i
= 0; i
< XLNX_ZYNQMP_NUM_SPIS
; i
++) {
266 sysbus_init_child_obj(obj
, "spi[*]", &s
->spi
[i
], sizeof(s
->spi
[i
]),
270 sysbus_init_child_obj(obj
, "qspi", &s
->qspi
, sizeof(s
->qspi
),
271 TYPE_XLNX_ZYNQMP_QSPIPS
);
273 sysbus_init_child_obj(obj
, "xxxdp", &s
->dp
, sizeof(s
->dp
), TYPE_XLNX_DP
);
275 sysbus_init_child_obj(obj
, "dp-dma", &s
->dpdma
, sizeof(s
->dpdma
),
278 sysbus_init_child_obj(obj
, "ipi", &s
->ipi
, sizeof(s
->ipi
),
279 TYPE_XLNX_ZYNQMP_IPI
);
281 sysbus_init_child_obj(obj
, "rtc", &s
->rtc
, sizeof(s
->rtc
),
282 TYPE_XLNX_ZYNQMP_RTC
);
284 for (i
= 0; i
< XLNX_ZYNQMP_NUM_GDMA_CH
; i
++) {
285 sysbus_init_child_obj(obj
, "gdma[*]", &s
->gdma
[i
], sizeof(s
->gdma
[i
]),
289 for (i
= 0; i
< XLNX_ZYNQMP_NUM_ADMA_CH
; i
++) {
290 sysbus_init_child_obj(obj
, "adma[*]", &s
->adma
[i
], sizeof(s
->adma
[i
]),
295 static void xlnx_zynqmp_realize(DeviceState
*dev
, Error
**errp
)
297 MachineState
*ms
= MACHINE(qdev_get_machine());
298 XlnxZynqMPState
*s
= XLNX_ZYNQMP(dev
);
299 MemoryRegion
*system_memory
= get_system_memory();
302 int num_apus
= MIN(ms
->smp
.cpus
, XLNX_ZYNQMP_NUM_APU_CPUS
);
303 const char *boot_cpu
= s
->boot_cpu
? s
->boot_cpu
: "apu-cpu[0]";
304 ram_addr_t ddr_low_size
, ddr_high_size
;
305 qemu_irq gic_spi
[GIC_NUM_SPI_INTR
];
308 ram_size
= memory_region_size(s
->ddr_ram
);
310 /* Create the DDR Memory Regions. User friendly checks should happen at
313 if (ram_size
> XLNX_ZYNQMP_MAX_LOW_RAM_SIZE
) {
314 /* The RAM size is above the maximum available for the low DDR.
315 * Create the high DDR memory region as well.
317 assert(ram_size
<= XLNX_ZYNQMP_MAX_RAM_SIZE
);
318 ddr_low_size
= XLNX_ZYNQMP_MAX_LOW_RAM_SIZE
;
319 ddr_high_size
= ram_size
- XLNX_ZYNQMP_MAX_LOW_RAM_SIZE
;
321 memory_region_init_alias(&s
->ddr_ram_high
, NULL
,
322 "ddr-ram-high", s
->ddr_ram
,
323 ddr_low_size
, ddr_high_size
);
324 memory_region_add_subregion(get_system_memory(),
325 XLNX_ZYNQMP_HIGH_RAM_START
,
328 /* RAM must be non-zero */
330 ddr_low_size
= ram_size
;
333 memory_region_init_alias(&s
->ddr_ram_low
, NULL
,
334 "ddr-ram-low", s
->ddr_ram
,
336 memory_region_add_subregion(get_system_memory(), 0, &s
->ddr_ram_low
);
338 /* Create the four OCM banks */
339 for (i
= 0; i
< XLNX_ZYNQMP_NUM_OCM_BANKS
; i
++) {
340 char *ocm_name
= g_strdup_printf("zynqmp.ocm_ram_bank_%d", i
);
342 memory_region_init_ram(&s
->ocm_ram
[i
], NULL
, ocm_name
,
343 XLNX_ZYNQMP_OCM_RAM_SIZE
, &error_fatal
);
344 memory_region_add_subregion(get_system_memory(),
345 XLNX_ZYNQMP_OCM_RAM_0_ADDRESS
+
346 i
* XLNX_ZYNQMP_OCM_RAM_SIZE
,
352 qdev_prop_set_uint32(DEVICE(&s
->gic
), "num-irq", GIC_NUM_SPI_INTR
+ 32);
353 qdev_prop_set_uint32(DEVICE(&s
->gic
), "revision", 2);
354 qdev_prop_set_uint32(DEVICE(&s
->gic
), "num-cpu", num_apus
);
355 qdev_prop_set_bit(DEVICE(&s
->gic
), "has-security-extensions", s
->secure
);
356 qdev_prop_set_bit(DEVICE(&s
->gic
),
357 "has-virtualization-extensions", s
->virt
);
359 qdev_init_nofail(DEVICE(&s
->apu_cluster
));
361 /* Realize APUs before realizing the GIC. KVM requires this. */
362 for (i
= 0; i
< num_apus
; i
++) {
365 object_property_set_int(OBJECT(&s
->apu_cpu
[i
]), QEMU_PSCI_CONDUIT_SMC
,
366 "psci-conduit", &error_abort
);
368 name
= object_get_canonical_path_component(OBJECT(&s
->apu_cpu
[i
]));
369 if (strcmp(name
, boot_cpu
)) {
370 /* Secondary CPUs start in PSCI powered-down state */
371 object_property_set_bool(OBJECT(&s
->apu_cpu
[i
]), true,
372 "start-powered-off", &error_abort
);
374 s
->boot_cpu_ptr
= &s
->apu_cpu
[i
];
378 object_property_set_bool(OBJECT(&s
->apu_cpu
[i
]),
379 s
->secure
, "has_el3", NULL
);
380 object_property_set_bool(OBJECT(&s
->apu_cpu
[i
]),
381 s
->virt
, "has_el2", NULL
);
382 object_property_set_int(OBJECT(&s
->apu_cpu
[i
]), GIC_BASE_ADDR
,
383 "reset-cbar", &error_abort
);
384 object_property_set_int(OBJECT(&s
->apu_cpu
[i
]), num_apus
,
385 "core-count", &error_abort
);
386 object_property_set_bool(OBJECT(&s
->apu_cpu
[i
]), true, "realized",
389 error_propagate(errp
, err
);
394 object_property_set_bool(OBJECT(&s
->gic
), true, "realized", &err
);
396 error_propagate(errp
, err
);
400 assert(ARRAY_SIZE(xlnx_zynqmp_gic_regions
) == XLNX_ZYNQMP_GIC_REGIONS
);
401 for (i
= 0; i
< XLNX_ZYNQMP_GIC_REGIONS
; i
++) {
402 SysBusDevice
*gic
= SYS_BUS_DEVICE(&s
->gic
);
403 const XlnxZynqMPGICRegion
*r
= &xlnx_zynqmp_gic_regions
[i
];
405 uint32_t addr
= r
->address
;
408 if (r
->virt
&& !s
->virt
) {
412 mr
= sysbus_mmio_get_region(gic
, r
->region_index
);
413 for (j
= 0; j
< XLNX_ZYNQMP_GIC_ALIASES
; j
++) {
414 MemoryRegion
*alias
= &s
->gic_mr
[i
][j
];
416 memory_region_init_alias(alias
, OBJECT(s
), "zynqmp-gic-alias", mr
,
417 r
->offset
, XLNX_ZYNQMP_GIC_REGION_SIZE
);
418 memory_region_add_subregion(system_memory
, addr
, alias
);
420 addr
+= XLNX_ZYNQMP_GIC_REGION_SIZE
;
424 for (i
= 0; i
< num_apus
; i
++) {
427 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gic
), i
,
428 qdev_get_gpio_in(DEVICE(&s
->apu_cpu
[i
]),
430 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gic
), i
+ num_apus
,
431 qdev_get_gpio_in(DEVICE(&s
->apu_cpu
[i
]),
433 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gic
), i
+ num_apus
* 2,
434 qdev_get_gpio_in(DEVICE(&s
->apu_cpu
[i
]),
436 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gic
), i
+ num_apus
* 3,
437 qdev_get_gpio_in(DEVICE(&s
->apu_cpu
[i
]),
439 irq
= qdev_get_gpio_in(DEVICE(&s
->gic
),
440 arm_gic_ppi_index(i
, ARM_PHYS_TIMER_PPI
));
441 qdev_connect_gpio_out(DEVICE(&s
->apu_cpu
[i
]), GTIMER_PHYS
, irq
);
442 irq
= qdev_get_gpio_in(DEVICE(&s
->gic
),
443 arm_gic_ppi_index(i
, ARM_VIRT_TIMER_PPI
));
444 qdev_connect_gpio_out(DEVICE(&s
->apu_cpu
[i
]), GTIMER_VIRT
, irq
);
445 irq
= qdev_get_gpio_in(DEVICE(&s
->gic
),
446 arm_gic_ppi_index(i
, ARM_HYP_TIMER_PPI
));
447 qdev_connect_gpio_out(DEVICE(&s
->apu_cpu
[i
]), GTIMER_HYP
, irq
);
448 irq
= qdev_get_gpio_in(DEVICE(&s
->gic
),
449 arm_gic_ppi_index(i
, ARM_SEC_TIMER_PPI
));
450 qdev_connect_gpio_out(DEVICE(&s
->apu_cpu
[i
]), GTIMER_SEC
, irq
);
453 irq
= qdev_get_gpio_in(DEVICE(&s
->gic
),
454 arm_gic_ppi_index(i
, GIC_MAINTENANCE_PPI
));
455 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gic
), i
+ num_apus
* 4, irq
);
460 info_report("The 'has_rpu' property is no longer required, to use the "
461 "RPUs just use -smp 6.");
464 xlnx_zynqmp_create_rpu(ms
, s
, boot_cpu
, &err
);
466 error_propagate(errp
, err
);
470 if (!s
->boot_cpu_ptr
) {
471 error_setg(errp
, "ZynqMP Boot cpu %s not found", boot_cpu
);
475 for (i
= 0; i
< GIC_NUM_SPI_INTR
; i
++) {
476 gic_spi
[i
] = qdev_get_gpio_in(DEVICE(&s
->gic
), i
);
479 for (i
= 0; i
< XLNX_ZYNQMP_NUM_GEMS
; i
++) {
480 NICInfo
*nd
= &nd_table
[i
];
483 qemu_check_nic_model(nd
, TYPE_CADENCE_GEM
);
484 qdev_set_nic_properties(DEVICE(&s
->gem
[i
]), nd
);
486 object_property_set_int(OBJECT(&s
->gem
[i
]), GEM_REVISION
, "revision",
488 object_property_set_int(OBJECT(&s
->gem
[i
]), 2, "num-priority-queues",
490 object_property_set_bool(OBJECT(&s
->gem
[i
]), true, "realized", &err
);
492 error_propagate(errp
, err
);
495 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->gem
[i
]), 0, gem_addr
[i
]);
496 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gem
[i
]), 0,
497 gic_spi
[gem_intr
[i
]]);
500 for (i
= 0; i
< XLNX_ZYNQMP_NUM_UARTS
; i
++) {
501 qdev_prop_set_chr(DEVICE(&s
->uart
[i
]), "chardev", serial_hd(i
));
502 object_property_set_bool(OBJECT(&s
->uart
[i
]), true, "realized", &err
);
504 error_propagate(errp
, err
);
507 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->uart
[i
]), 0, uart_addr
[i
]);
508 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->uart
[i
]), 0,
509 gic_spi
[uart_intr
[i
]]);
512 object_property_set_int(OBJECT(&s
->sata
), SATA_NUM_PORTS
, "num-ports",
514 object_property_set_bool(OBJECT(&s
->sata
), true, "realized", &err
);
516 error_propagate(errp
, err
);
520 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->sata
), 0, SATA_ADDR
);
521 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->sata
), 0, gic_spi
[SATA_INTR
]);
523 for (i
= 0; i
< XLNX_ZYNQMP_NUM_SDHCI
; i
++) {
524 char *bus_name
= g_strdup_printf("sd-bus%d", i
);
525 SysBusDevice
*sbd
= SYS_BUS_DEVICE(&s
->sdhci
[i
]);
526 Object
*sdhci
= OBJECT(&s
->sdhci
[i
]);
529 * - SD Host Controller Specification Version 3.00
530 * - SDIO Specification Version 3.0
531 * - eMMC Specification Version 4.51
533 object_property_set_uint(sdhci
, 3, "sd-spec-version", &err
);
534 object_property_set_uint(sdhci
, SDHCI_CAPABILITIES
, "capareg", &err
);
535 object_property_set_uint(sdhci
, UHS_I
, "uhs", &err
);
536 object_property_set_bool(sdhci
, true, "realized", &err
);
538 error_propagate(errp
, err
);
541 sysbus_mmio_map(sbd
, 0, sdhci_addr
[i
]);
542 sysbus_connect_irq(sbd
, 0, gic_spi
[sdhci_intr
[i
]]);
544 /* Alias controller SD bus to the SoC itself */
545 object_property_add_alias(OBJECT(s
), bus_name
, sdhci
, "sd-bus",
550 for (i
= 0; i
< XLNX_ZYNQMP_NUM_SPIS
; i
++) {
553 object_property_set_bool(OBJECT(&s
->spi
[i
]), true, "realized", &err
);
555 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->spi
[i
]), 0, spi_addr
[i
]);
556 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->spi
[i
]), 0,
557 gic_spi
[spi_intr
[i
]]);
559 /* Alias controller SPI bus to the SoC itself */
560 bus_name
= g_strdup_printf("spi%d", i
);
561 object_property_add_alias(OBJECT(s
), bus_name
,
562 OBJECT(&s
->spi
[i
]), "spi0",
567 object_property_set_bool(OBJECT(&s
->qspi
), true, "realized", &err
);
568 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->qspi
), 0, QSPI_ADDR
);
569 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->qspi
), 1, LQSPI_ADDR
);
570 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->qspi
), 0, gic_spi
[QSPI_IRQ
]);
572 for (i
= 0; i
< XLNX_ZYNQMP_NUM_QSPI_BUS
; i
++) {
576 /* Alias controller SPI bus to the SoC itself */
577 bus_name
= g_strdup_printf("qspi%d", i
);
578 target_bus
= g_strdup_printf("spi%d", i
);
579 object_property_add_alias(OBJECT(s
), bus_name
,
580 OBJECT(&s
->qspi
), target_bus
,
586 object_property_set_bool(OBJECT(&s
->dp
), true, "realized", &err
);
588 error_propagate(errp
, err
);
591 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->dp
), 0, DP_ADDR
);
592 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->dp
), 0, gic_spi
[DP_IRQ
]);
594 object_property_set_bool(OBJECT(&s
->dpdma
), true, "realized", &err
);
596 error_propagate(errp
, err
);
599 object_property_set_link(OBJECT(&s
->dp
), OBJECT(&s
->dpdma
), "dpdma",
601 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->dpdma
), 0, DPDMA_ADDR
);
602 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->dpdma
), 0, gic_spi
[DPDMA_IRQ
]);
604 object_property_set_bool(OBJECT(&s
->ipi
), true, "realized", &err
);
606 error_propagate(errp
, err
);
609 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->ipi
), 0, IPI_ADDR
);
610 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->ipi
), 0, gic_spi
[IPI_IRQ
]);
612 object_property_set_bool(OBJECT(&s
->rtc
), true, "realized", &err
);
614 error_propagate(errp
, err
);
617 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->rtc
), 0, RTC_ADDR
);
618 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->rtc
), 0, gic_spi
[RTC_IRQ
]);
620 for (i
= 0; i
< XLNX_ZYNQMP_NUM_GDMA_CH
; i
++) {
621 object_property_set_uint(OBJECT(&s
->gdma
[i
]), 128, "bus-width", &err
);
622 object_property_set_bool(OBJECT(&s
->gdma
[i
]), true, "realized", &err
);
624 error_propagate(errp
, err
);
628 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->gdma
[i
]), 0, gdma_ch_addr
[i
]);
629 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->gdma
[i
]), 0,
630 gic_spi
[gdma_ch_intr
[i
]]);
633 for (i
= 0; i
< XLNX_ZYNQMP_NUM_ADMA_CH
; i
++) {
634 object_property_set_bool(OBJECT(&s
->adma
[i
]), true, "realized", &err
);
636 error_propagate(errp
, err
);
640 sysbus_mmio_map(SYS_BUS_DEVICE(&s
->adma
[i
]), 0, adma_ch_addr
[i
]);
641 sysbus_connect_irq(SYS_BUS_DEVICE(&s
->adma
[i
]), 0,
642 gic_spi
[adma_ch_intr
[i
]]);
646 static Property xlnx_zynqmp_props
[] = {
647 DEFINE_PROP_STRING("boot-cpu", XlnxZynqMPState
, boot_cpu
),
648 DEFINE_PROP_BOOL("secure", XlnxZynqMPState
, secure
, false),
649 DEFINE_PROP_BOOL("virtualization", XlnxZynqMPState
, virt
, false),
650 DEFINE_PROP_BOOL("has_rpu", XlnxZynqMPState
, has_rpu
, false),
651 DEFINE_PROP_LINK("ddr-ram", XlnxZynqMPState
, ddr_ram
, TYPE_MEMORY_REGION
,
653 DEFINE_PROP_END_OF_LIST()
656 static void xlnx_zynqmp_class_init(ObjectClass
*oc
, void *data
)
658 DeviceClass
*dc
= DEVICE_CLASS(oc
);
660 dc
->props
= xlnx_zynqmp_props
;
661 dc
->realize
= xlnx_zynqmp_realize
;
662 /* Reason: Uses serial_hds in realize function, thus can't be used twice */
663 dc
->user_creatable
= false;
666 static const TypeInfo xlnx_zynqmp_type_info
= {
667 .name
= TYPE_XLNX_ZYNQMP
,
668 .parent
= TYPE_DEVICE
,
669 .instance_size
= sizeof(XlnxZynqMPState
),
670 .instance_init
= xlnx_zynqmp_init
,
671 .class_init
= xlnx_zynqmp_class_init
,
674 static void xlnx_zynqmp_register_types(void)
676 type_register_static(&xlnx_zynqmp_type_info
);
679 type_init(xlnx_zynqmp_register_types
)