1 /* 2 * Model of the Xilinx Versal 3 * 4 * Copyright (c) 2018 Xilinx Inc. 5 * Written by Edgar E. Iglesias 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 or 9 * (at your option) any later version. 10 */ 11 12 #ifndef XLNX_VERSAL_H 13 #define XLNX_VERSAL_H 14 15 #include "hw/sysbus.h" 16 #include "hw/arm/boot.h" 17 #include "hw/sd/sdhci.h" 18 #include "hw/intc/arm_gicv3.h" 19 #include "hw/char/pl011.h" 20 #include "hw/dma/xlnx-zdma.h" 21 #include "hw/net/cadence_gem.h" 22 #include "hw/rtc/xlnx-zynqmp-rtc.h" 23 #include "qom/object.h" 24 #include "hw/usb/xlnx-usb-subsystem.h" 25 26 #define TYPE_XLNX_VERSAL "xlnx-versal" 27 OBJECT_DECLARE_SIMPLE_TYPE(Versal, XLNX_VERSAL) 28 29 #define XLNX_VERSAL_NR_ACPUS 2 30 #define XLNX_VERSAL_NR_UARTS 2 31 #define XLNX_VERSAL_NR_GEMS 2 32 #define XLNX_VERSAL_NR_ADMAS 8 33 #define XLNX_VERSAL_NR_SDS 2 34 #define XLNX_VERSAL_NR_IRQS 192 35 36 struct Versal { 37 /*< private >*/ 38 SysBusDevice parent_obj; 39 40 /*< public >*/ 41 struct { 42 struct { 43 MemoryRegion mr; 44 ARMCPU cpu[XLNX_VERSAL_NR_ACPUS]; 45 GICv3State gic; 46 } apu; 47 } fpd; 48 49 MemoryRegion mr_ps; 50 51 struct { 52 /* 4 ranges to access DDR. */ 53 MemoryRegion mr_ddr_ranges[4]; 54 } noc; 55 56 struct { 57 MemoryRegion mr_ocm; 58 59 struct { 60 PL011State uart[XLNX_VERSAL_NR_UARTS]; 61 CadenceGEMState gem[XLNX_VERSAL_NR_GEMS]; 62 XlnxZDMA adma[XLNX_VERSAL_NR_ADMAS]; 63 VersalUsb2 usb; 64 } iou; 65 } lpd; 66 67 /* The Platform Management Controller subsystem. */ 68 struct { 69 struct { 70 SDHCIState sd[XLNX_VERSAL_NR_SDS]; 71 } iou; 72 73 XlnxZynqMPRTC rtc; 74 } pmc; 75 76 struct { 77 MemoryRegion *mr_ddr; 78 uint32_t psci_conduit; 79 } cfg; 80 }; 81 82 /* Memory-map and IRQ definitions. Copied a subset from 83 * auto-generated files. */ 84 85 #define VERSAL_GIC_MAINT_IRQ 9 86 #define VERSAL_TIMER_VIRT_IRQ 11 87 #define VERSAL_TIMER_S_EL1_IRQ 13 88 #define VERSAL_TIMER_NS_EL1_IRQ 14 89 #define VERSAL_TIMER_NS_EL2_IRQ 10 90 91 #define VERSAL_UART0_IRQ_0 18 92 #define VERSAL_UART1_IRQ_0 19 93 #define VERSAL_USB0_IRQ_0 22 94 #define VERSAL_GEM0_IRQ_0 56 95 #define VERSAL_GEM0_WAKE_IRQ_0 57 96 #define VERSAL_GEM1_IRQ_0 58 97 #define VERSAL_GEM1_WAKE_IRQ_0 59 98 #define VERSAL_ADMA_IRQ_0 60 99 #define VERSAL_RTC_APB_ERR_IRQ 121 100 #define VERSAL_SD0_IRQ_0 126 101 #define VERSAL_RTC_ALARM_IRQ 142 102 #define VERSAL_RTC_SECONDS_IRQ 143 103 104 /* Architecturally reserved IRQs suitable for virtualization. */ 105 #define VERSAL_RSVD_IRQ_FIRST 111 106 #define VERSAL_RSVD_IRQ_LAST 118 107 108 #define MM_TOP_RSVD 0xa0000000U 109 #define MM_TOP_RSVD_SIZE 0x4000000 110 #define MM_GIC_APU_DIST_MAIN 0xf9000000U 111 #define MM_GIC_APU_DIST_MAIN_SIZE 0x10000 112 #define MM_GIC_APU_REDIST_0 0xf9080000U 113 #define MM_GIC_APU_REDIST_0_SIZE 0x80000 114 115 #define MM_UART0 0xff000000U 116 #define MM_UART0_SIZE 0x10000 117 #define MM_UART1 0xff010000U 118 #define MM_UART1_SIZE 0x10000 119 120 #define MM_GEM0 0xff0c0000U 121 #define MM_GEM0_SIZE 0x10000 122 #define MM_GEM1 0xff0d0000U 123 #define MM_GEM1_SIZE 0x10000 124 125 #define MM_ADMA_CH0 0xffa80000U 126 #define MM_ADMA_CH0_SIZE 0x10000 127 128 #define MM_OCM 0xfffc0000U 129 #define MM_OCM_SIZE 0x40000 130 131 #define MM_USB2_CTRL_REGS 0xFF9D0000 132 #define MM_USB2_CTRL_REGS_SIZE 0x10000 133 134 #define MM_USB_0 0xFE200000 135 #define MM_USB_0_SIZE 0x10000 136 137 #define MM_TOP_DDR 0x0 138 #define MM_TOP_DDR_SIZE 0x80000000U 139 #define MM_TOP_DDR_2 0x800000000ULL 140 #define MM_TOP_DDR_2_SIZE 0x800000000ULL 141 #define MM_TOP_DDR_3 0xc000000000ULL 142 #define MM_TOP_DDR_3_SIZE 0x4000000000ULL 143 #define MM_TOP_DDR_4 0x10000000000ULL 144 #define MM_TOP_DDR_4_SIZE 0xb780000000ULL 145 146 #define MM_PSM_START 0xffc80000U 147 #define MM_PSM_END 0xffcf0000U 148 149 #define MM_CRL 0xff5e0000U 150 #define MM_CRL_SIZE 0x300000 151 #define MM_IOU_SCNTR 0xff130000U 152 #define MM_IOU_SCNTR_SIZE 0x10000 153 #define MM_IOU_SCNTRS 0xff140000U 154 #define MM_IOU_SCNTRS_SIZE 0x10000 155 #define MM_FPD_CRF 0xfd1a0000U 156 #define MM_FPD_CRF_SIZE 0x140000 157 158 #define MM_PMC_SD0 0xf1040000U 159 #define MM_PMC_SD0_SIZE 0x10000 160 #define MM_PMC_CRP 0xf1260000U 161 #define MM_PMC_CRP_SIZE 0x10000 162 #define MM_PMC_RTC 0xf12a0000 163 #define MM_PMC_RTC_SIZE 0x10000 164 #endif 165