xref: /qemu/include/hw/arm/virt.h (revision b5a60bee)
1afe0b380SShannon Zhao /*
2afe0b380SShannon Zhao  *
3afe0b380SShannon Zhao  * Copyright (c) 2015 Linaro Limited
4afe0b380SShannon Zhao  *
5afe0b380SShannon Zhao  * This program is free software; you can redistribute it and/or modify it
6afe0b380SShannon Zhao  * under the terms and conditions of the GNU General Public License,
7afe0b380SShannon Zhao  * version 2 or later, as published by the Free Software Foundation.
8afe0b380SShannon Zhao  *
9afe0b380SShannon Zhao  * This program is distributed in the hope it will be useful, but WITHOUT
10afe0b380SShannon Zhao  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11afe0b380SShannon Zhao  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12afe0b380SShannon Zhao  * more details.
13afe0b380SShannon Zhao  *
14afe0b380SShannon Zhao  * You should have received a copy of the GNU General Public License along with
15afe0b380SShannon Zhao  * this program.  If not, see <http://www.gnu.org/licenses/>.
16afe0b380SShannon Zhao  *
17afe0b380SShannon Zhao  * Emulate a virtual board which works by passing Linux all the information
18afe0b380SShannon Zhao  * it needs about what devices are present via the device tree.
19afe0b380SShannon Zhao  * There are some restrictions about what we can do here:
20afe0b380SShannon Zhao  *  + we can only present devices whose Linux drivers will work based
21afe0b380SShannon Zhao  *    purely on the device tree with no platform data at all
22afe0b380SShannon Zhao  *  + we want to present a very stripped-down minimalist platform,
23afe0b380SShannon Zhao  *    both because this reduces the security attack surface from the guest
24afe0b380SShannon Zhao  *    and also because it reduces our exposure to being broken when
25afe0b380SShannon Zhao  *    the kernel updates its device tree bindings and requires further
26afe0b380SShannon Zhao  *    information in a device binding that we aren't providing.
27afe0b380SShannon Zhao  * This is essentially the same approach kvmtool uses.
28afe0b380SShannon Zhao  */
29afe0b380SShannon Zhao 
30afe0b380SShannon Zhao #ifndef QEMU_ARM_VIRT_H
31afe0b380SShannon Zhao #define QEMU_ARM_VIRT_H
32afe0b380SShannon Zhao 
3333c11879SPaolo Bonzini #include "exec/hwaddr.h"
34d05fdab4SAndrew Jones #include "qemu/notify.h"
35a72d4363SAndrew Jones #include "hw/boards.h"
3612ec8bd5SPeter Maydell #include "hw/arm/boot.h"
37e0561e60SMarkus Armbruster #include "hw/block/flash.h"
38f90747c4SEric Auger #include "sysemu/kvm.h"
39f90747c4SEric Auger #include "hw/intc/arm_gicv3_common.h"
40afe0b380SShannon Zhao 
41bd204e63SChristoffer Dall #define NUM_GICV2M_SPIS       64
42afe0b380SShannon Zhao #define NUM_VIRTIO_TRANSPORTS 32
43584105eaSPrem Mallappa #define NUM_SMMU_IRQS          4
44afe0b380SShannon Zhao 
4555ef3233SLuc Michel #define ARCH_GIC_MAINT_IRQ  9
465454006aSPeter Maydell 
47ee246400SShannon Zhao #define ARCH_TIMER_VIRT_IRQ   11
48ee246400SShannon Zhao #define ARCH_TIMER_S_EL1_IRQ  13
49ee246400SShannon Zhao #define ARCH_TIMER_NS_EL1_IRQ 14
50ee246400SShannon Zhao #define ARCH_TIMER_NS_EL2_IRQ 10
51ee246400SShannon Zhao 
5201fe6b60SShannon Zhao #define VIRTUAL_PMU_IRQ 7
5301fe6b60SShannon Zhao 
5401fe6b60SShannon Zhao #define PPI(irq) ((irq) + 16)
5501fe6b60SShannon Zhao 
56afe0b380SShannon Zhao enum {
57afe0b380SShannon Zhao     VIRT_FLASH,
58afe0b380SShannon Zhao     VIRT_MEM,
59afe0b380SShannon Zhao     VIRT_CPUPERIPHS,
60afe0b380SShannon Zhao     VIRT_GIC_DIST,
61afe0b380SShannon Zhao     VIRT_GIC_CPU,
62b92ad394SPavel Fedin     VIRT_GIC_V2M,
6355ef3233SLuc Michel     VIRT_GIC_HYP,
6455ef3233SLuc Michel     VIRT_GIC_VCPU,
65b92ad394SPavel Fedin     VIRT_GIC_ITS,
66b92ad394SPavel Fedin     VIRT_GIC_REDIST,
67584105eaSPrem Mallappa     VIRT_SMMU,
68afe0b380SShannon Zhao     VIRT_UART,
69afe0b380SShannon Zhao     VIRT_MMIO,
70afe0b380SShannon Zhao     VIRT_RTC,
71afe0b380SShannon Zhao     VIRT_FW_CFG,
72afe0b380SShannon Zhao     VIRT_PCIE,
736a1f001bSShannon Zhao     VIRT_PCIE_MMIO,
746a1f001bSShannon Zhao     VIRT_PCIE_PIO,
756a1f001bSShannon Zhao     VIRT_PCIE_ECAM,
765f7a5a0eSEric Auger     VIRT_PLATFORM_BUS,
77b0a3721eSShannon Zhao     VIRT_GPIO,
783df708ebSPeter Maydell     VIRT_SECURE_UART,
7983ec1923SPeter Maydell     VIRT_SECURE_MEM,
80cff51ac9SShameer Kolothum     VIRT_PCDIMM_ACPI,
81cff51ac9SShameer Kolothum     VIRT_ACPI_GED,
82*b5a60beeSKwangwoo Lee     VIRT_NVDIMM_ACPI,
83350a9c9eSEric Auger     VIRT_LOWMEMMAP_LAST,
84350a9c9eSEric Auger };
85350a9c9eSEric Auger 
86350a9c9eSEric Auger /* indices of IO regions located after the RAM */
87350a9c9eSEric Auger enum {
88350a9c9eSEric Auger     VIRT_HIGH_GIC_REDIST2 =  VIRT_LOWMEMMAP_LAST,
89350a9c9eSEric Auger     VIRT_HIGH_PCIE_ECAM,
90350a9c9eSEric Auger     VIRT_HIGH_PCIE_MMIO,
91afe0b380SShannon Zhao };
92afe0b380SShannon Zhao 
93584105eaSPrem Mallappa typedef enum VirtIOMMUType {
94584105eaSPrem Mallappa     VIRT_IOMMU_NONE,
95584105eaSPrem Mallappa     VIRT_IOMMU_SMMUV3,
96584105eaSPrem Mallappa     VIRT_IOMMU_VIRTIO,
97584105eaSPrem Mallappa } VirtIOMMUType;
98584105eaSPrem Mallappa 
99d04460e5SEric Auger typedef enum VirtGICType {
100d04460e5SEric Auger     VIRT_GIC_VERSION_MAX,
101d04460e5SEric Auger     VIRT_GIC_VERSION_HOST,
102d04460e5SEric Auger     VIRT_GIC_VERSION_2,
103d04460e5SEric Auger     VIRT_GIC_VERSION_3,
10436bf4ec8SEric Auger     VIRT_GIC_VERSION_NOSEL,
105d04460e5SEric Auger } VirtGICType;
106d04460e5SEric Auger 
107afe0b380SShannon Zhao typedef struct MemMapEntry {
108afe0b380SShannon Zhao     hwaddr base;
109afe0b380SShannon Zhao     hwaddr size;
110afe0b380SShannon Zhao } MemMapEntry;
111afe0b380SShannon Zhao 
112a72d4363SAndrew Jones typedef struct {
113a72d4363SAndrew Jones     MachineClass parent;
114a72d4363SAndrew Jones     bool disallow_affinity_adjustment;
115a72d4363SAndrew Jones     bool no_its;
116a72d4363SAndrew Jones     bool no_pmu;
117a72d4363SAndrew Jones     bool claim_edge_triggered_timers;
118dfadc3bfSWei Huang     bool smbios_old_sys_ver;
11917ec075aSEric Auger     bool no_highmem_ecam;
120cff51ac9SShameer Kolothum     bool no_ged;   /* Machines < 4.2 has no support for ACPI GED device */
121dea101a1SAndrew Jones     bool kvm_no_adjvtime;
122a72d4363SAndrew Jones } VirtMachineClass;
123a72d4363SAndrew Jones 
124a72d4363SAndrew Jones typedef struct {
125a72d4363SAndrew Jones     MachineState parent;
126a72d4363SAndrew Jones     Notifier machine_done;
127a3fc8396SIgor Mammedov     DeviceState *platform_bus_dev;
128af1f60a4SAndrew Jones     FWCfgState *fw_cfg;
129e0561e60SMarkus Armbruster     PFlashCFI01 *flash[2];
130a72d4363SAndrew Jones     bool secure;
131a72d4363SAndrew Jones     bool highmem;
132601d626dSEric Auger     bool highmem_ecam;
133ccc11b02SEric Auger     bool its;
134f29cacfbSPeter Maydell     bool virt;
13517e89077SGerd Hoffmann     OnOffAuto acpi;
136d04460e5SEric Auger     VirtGICType gic_version;
137584105eaSPrem Mallappa     VirtIOMMUType iommu;
13870e89132SEric Auger     uint16_t virtio_iommu_bdf;
139a72d4363SAndrew Jones     struct arm_boot_info bootinfo;
140350a9c9eSEric Auger     MemMapEntry *memmap;
14170e89132SEric Auger     char *pciehb_nodename;
142a72d4363SAndrew Jones     const int *irqmap;
143a72d4363SAndrew Jones     int smp_cpus;
144a72d4363SAndrew Jones     void *fdt;
145a72d4363SAndrew Jones     int fdt_size;
146a72d4363SAndrew Jones     uint32_t clock_phandle;
147a72d4363SAndrew Jones     uint32_t gic_phandle;
148a72d4363SAndrew Jones     uint32_t msi_phandle;
149584105eaSPrem Mallappa     uint32_t iommu_phandle;
1502013c566SPeter Maydell     int psci_conduit;
151957e32cfSEric Auger     hwaddr highest_gpa;
152b8b69f4cSPhilippe Mathieu-Daudé     DeviceState *gic;
153cff51ac9SShameer Kolothum     DeviceState *acpi_dev;
154c345680cSShameer Kolothum     Notifier powerdown_notifier;
155a72d4363SAndrew Jones } VirtMachineState;
156a72d4363SAndrew Jones 
157bf424a12SEric Auger #define VIRT_ECAM_ID(high) (high ? VIRT_HIGH_PCIE_ECAM : VIRT_PCIE_ECAM)
158601d626dSEric Auger 
159a72d4363SAndrew Jones #define TYPE_VIRT_MACHINE   MACHINE_TYPE_NAME("virt")
160a72d4363SAndrew Jones #define VIRT_MACHINE(obj) \
161a72d4363SAndrew Jones     OBJECT_CHECK(VirtMachineState, (obj), TYPE_VIRT_MACHINE)
162a72d4363SAndrew Jones #define VIRT_MACHINE_GET_CLASS(obj) \
163a72d4363SAndrew Jones     OBJECT_GET_CLASS(VirtMachineClass, obj, TYPE_VIRT_MACHINE)
164a72d4363SAndrew Jones #define VIRT_MACHINE_CLASS(klass) \
165a72d4363SAndrew Jones     OBJECT_CLASS_CHECK(VirtMachineClass, klass, TYPE_VIRT_MACHINE)
166a72d4363SAndrew Jones 
167e9a8e474SAndrew Jones void virt_acpi_setup(VirtMachineState *vms);
16817e89077SGerd Hoffmann bool virt_is_acpi_enabled(VirtMachineState *vms);
169d05fdab4SAndrew Jones 
170f90747c4SEric Auger /* Return the number of used redistributor regions  */
171f90747c4SEric Auger static inline int virt_gicv3_redist_region_count(VirtMachineState *vms)
172f90747c4SEric Auger {
173f90747c4SEric Auger     uint32_t redist0_capacity =
174f90747c4SEric Auger                 vms->memmap[VIRT_GIC_REDIST].size / GICV3_REDIST_SIZE;
175f90747c4SEric Auger 
176d04460e5SEric Auger     assert(vms->gic_version == VIRT_GIC_VERSION_3);
177f90747c4SEric Auger 
178f90747c4SEric Auger     return vms->smp_cpus > redist0_capacity ? 2 : 1;
179f90747c4SEric Auger }
180f90747c4SEric Auger 
181d05fdab4SAndrew Jones #endif /* QEMU_ARM_VIRT_H */
182