1 /*
2 *
3 * Copyright (c) 2015 Linaro Limited
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2 or later, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * Emulate a virtual board which works by passing Linux all the information
18 * it needs about what devices are present via the device tree.
19 * There are some restrictions about what we can do here:
20 * + we can only present devices whose Linux drivers will work based
21 * purely on the device tree with no platform data at all
22 * + we want to present a very stripped-down minimalist platform,
23 * both because this reduces the security attack surface from the guest
24 * and also because it reduces our exposure to being broken when
25 * the kernel updates its device tree bindings and requires further
26 * information in a device binding that we aren't providing.
27 * This is essentially the same approach kvmtool uses.
28 */
29
30 #ifndef QEMU_ARM_VIRT_H
31 #define QEMU_ARM_VIRT_H
32
33 #include "exec/hwaddr.h"
34 #include "qemu/notify.h"
35 #include "hw/boards.h"
36 #include "hw/arm/boot.h"
37 #include "hw/arm/bsa.h"
38 #include "hw/block/flash.h"
39 #include "sysemu/kvm.h"
40 #include "hw/intc/arm_gicv3_common.h"
41 #include "qom/object.h"
42
43 #define NUM_GICV2M_SPIS 64
44 #define NUM_VIRTIO_TRANSPORTS 32
45 #define NUM_SMMU_IRQS 4
46
47 /* See Linux kernel arch/arm64/include/asm/pvclock-abi.h */
48 #define PVTIME_SIZE_PER_CPU 64
49
50 /* GPIO pins */
51 #define GPIO_PIN_POWER_BUTTON 3
52
53 enum {
54 VIRT_FLASH,
55 VIRT_MEM,
56 VIRT_CPUPERIPHS,
57 VIRT_GIC_DIST,
58 VIRT_GIC_CPU,
59 VIRT_GIC_V2M,
60 VIRT_GIC_HYP,
61 VIRT_GIC_VCPU,
62 VIRT_GIC_ITS,
63 VIRT_GIC_REDIST,
64 VIRT_SMMU,
65 VIRT_UART0,
66 VIRT_MMIO,
67 VIRT_RTC,
68 VIRT_FW_CFG,
69 VIRT_PCIE,
70 VIRT_PCIE_MMIO,
71 VIRT_PCIE_PIO,
72 VIRT_PCIE_ECAM,
73 VIRT_PLATFORM_BUS,
74 VIRT_GPIO,
75 VIRT_UART1,
76 VIRT_SECURE_MEM,
77 VIRT_SECURE_GPIO,
78 VIRT_PCDIMM_ACPI,
79 VIRT_ACPI_GED,
80 VIRT_NVDIMM_ACPI,
81 VIRT_PVTIME,
82 VIRT_LOWMEMMAP_LAST,
83 };
84
85 /* indices of IO regions located after the RAM */
86 enum {
87 VIRT_HIGH_GIC_REDIST2 = VIRT_LOWMEMMAP_LAST,
88 VIRT_HIGH_PCIE_ECAM,
89 VIRT_HIGH_PCIE_MMIO,
90 };
91
92 typedef enum VirtIOMMUType {
93 VIRT_IOMMU_NONE,
94 VIRT_IOMMU_SMMUV3,
95 VIRT_IOMMU_VIRTIO,
96 } VirtIOMMUType;
97
98 typedef enum VirtMSIControllerType {
99 VIRT_MSI_CTRL_NONE,
100 VIRT_MSI_CTRL_GICV2M,
101 VIRT_MSI_CTRL_ITS,
102 } VirtMSIControllerType;
103
104 typedef enum VirtGICType {
105 VIRT_GIC_VERSION_MAX = 0,
106 VIRT_GIC_VERSION_HOST = 1,
107 /* The concrete GIC values have to match the GIC version number */
108 VIRT_GIC_VERSION_2 = 2,
109 VIRT_GIC_VERSION_3 = 3,
110 VIRT_GIC_VERSION_4 = 4,
111 VIRT_GIC_VERSION_NOSEL,
112 } VirtGICType;
113
114 #define VIRT_GIC_VERSION_2_MASK BIT(VIRT_GIC_VERSION_2)
115 #define VIRT_GIC_VERSION_3_MASK BIT(VIRT_GIC_VERSION_3)
116 #define VIRT_GIC_VERSION_4_MASK BIT(VIRT_GIC_VERSION_4)
117
118 struct VirtMachineClass {
119 MachineClass parent;
120 bool disallow_affinity_adjustment;
121 bool no_its;
122 bool no_tcg_its;
123 bool no_pmu;
124 bool claim_edge_triggered_timers;
125 bool smbios_old_sys_ver;
126 bool no_highmem_compact;
127 bool no_highmem_ecam;
128 bool no_ged; /* Machines < 4.2 have no support for ACPI GED device */
129 bool kvm_no_adjvtime;
130 bool no_kvm_steal_time;
131 bool acpi_expose_flash;
132 bool no_secure_gpio;
133 /* Machines < 6.2 have no support for describing cpu topology to guest */
134 bool no_cpu_topology;
135 bool no_tcg_lpa2;
136 bool no_ns_el2_virt_timer_irq;
137 };
138
139 struct VirtMachineState {
140 MachineState parent;
141 Notifier machine_done;
142 DeviceState *platform_bus_dev;
143 FWCfgState *fw_cfg;
144 PFlashCFI01 *flash[2];
145 bool secure;
146 bool highmem;
147 bool highmem_compact;
148 bool highmem_ecam;
149 bool highmem_mmio;
150 bool highmem_redists;
151 bool its;
152 bool tcg_its;
153 bool virt;
154 bool ras;
155 bool mte;
156 bool dtb_randomness;
157 bool second_ns_uart_present;
158 OnOffAuto acpi;
159 VirtGICType gic_version;
160 VirtIOMMUType iommu;
161 bool default_bus_bypass_iommu;
162 VirtMSIControllerType msi_controller;
163 uint16_t virtio_iommu_bdf;
164 struct arm_boot_info bootinfo;
165 MemMapEntry *memmap;
166 char *pciehb_nodename;
167 const int *irqmap;
168 int fdt_size;
169 uint32_t clock_phandle;
170 uint32_t gic_phandle;
171 uint32_t msi_phandle;
172 uint32_t iommu_phandle;
173 int psci_conduit;
174 hwaddr highest_gpa;
175 DeviceState *gic;
176 DeviceState *acpi_dev;
177 Notifier powerdown_notifier;
178 PCIBus *bus;
179 char *oem_id;
180 char *oem_table_id;
181 bool ns_el2_virt_timer_irq;
182 };
183
184 #define VIRT_ECAM_ID(high) (high ? VIRT_HIGH_PCIE_ECAM : VIRT_PCIE_ECAM)
185
186 #define TYPE_VIRT_MACHINE MACHINE_TYPE_NAME("virt")
187 OBJECT_DECLARE_TYPE(VirtMachineState, VirtMachineClass, VIRT_MACHINE)
188
189 void virt_acpi_setup(VirtMachineState *vms);
190 bool virt_is_acpi_enabled(VirtMachineState *vms);
191
192 /* Return number of redistributors that fit in the specified region */
virt_redist_capacity(VirtMachineState * vms,int region)193 static uint32_t virt_redist_capacity(VirtMachineState *vms, int region)
194 {
195 uint32_t redist_size;
196
197 if (vms->gic_version == VIRT_GIC_VERSION_3) {
198 redist_size = GICV3_REDIST_SIZE;
199 } else {
200 redist_size = GICV4_REDIST_SIZE;
201 }
202 return vms->memmap[region].size / redist_size;
203 }
204
205 /* Return the number of used redistributor regions */
virt_gicv3_redist_region_count(VirtMachineState * vms)206 static inline int virt_gicv3_redist_region_count(VirtMachineState *vms)
207 {
208 uint32_t redist0_capacity = virt_redist_capacity(vms, VIRT_GIC_REDIST);
209
210 assert(vms->gic_version != VIRT_GIC_VERSION_2);
211
212 return (MACHINE(vms)->smp.cpus > redist0_capacity &&
213 vms->highmem_redists) ? 2 : 1;
214 }
215
216 #endif /* QEMU_ARM_VIRT_H */
217