]> git.proxmox.com Git - mirror_qemu.git/blame - hw/arm/virt-acpi-build.c
hw: Add compat machines for 7.2
[mirror_qemu.git] / hw / arm / virt-acpi-build.c
CommitLineData
f5d8c8cd
SZ
1/* Support for generating ACPI tables and passing them to Guests
2 *
3 * ARM virt ACPI generation
4 *
5 * Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net>
6 * Copyright (C) 2006 Fabrice Bellard
7 * Copyright (C) 2013 Red Hat Inc
8 *
9 * Author: Michael S. Tsirkin <mst@redhat.com>
10 *
11 * Copyright (c) 2015 HUAWEI TECHNOLOGIES CO.,LTD.
12 *
13 * Author: Shannon Zhao <zhaoshenglong@huawei.com>
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, see <http://www.gnu.org/licenses/>.
27 */
28
12b16722 29#include "qemu/osdep.h"
da34e65c 30#include "qapi/error.h"
f5d8c8cd
SZ
31#include "qemu/bitmap.h"
32#include "trace.h"
2e5b09fd 33#include "hw/core/cpu.h"
fcf5ef2a 34#include "target/arm/cpu.h"
f5d8c8cd
SZ
35#include "hw/acpi/acpi-defs.h"
36#include "hw/acpi/acpi.h"
37#include "hw/nvram/fw_cfg.h"
38#include "hw/acpi/bios-linker-loader.h"
f5d8c8cd 39#include "hw/acpi/aml-build.h"
82f76c67 40#include "hw/acpi/utils.h"
48cefd94 41#include "hw/acpi/pci.h"
cff51ac9
SK
42#include "hw/acpi/memory_hotplug.h"
43#include "hw/acpi/generic_event_device.h"
80bde693 44#include "hw/acpi/tpm.h"
84344884 45#include "hw/pci/pcie_host.h"
d4e5de1a 46#include "hw/pci/pci.h"
42e0f050 47#include "hw/pci/pci_bus.h"
06d2dd49 48#include "hw/pci-host/gpex.h"
d05fdab4 49#include "hw/arm/virt.h"
b5a60bee 50#include "hw/mem/nvdimm.h"
5ab540e9 51#include "hw/platform-bus.h"
2b302e1e 52#include "sysemu/numa.h"
71e8a915 53#include "sysemu/reset.h"
80bde693 54#include "sysemu/tpm.h"
13e5c54d 55#include "kvm_arm.h"
d6454270 56#include "migration/vmstate.h"
aa16508f 57#include "hw/acpi/ghes.h"
cf1a5cc9 58#include "hw/acpi/viot.h"
f5d8c8cd 59
dfccd8cf
SZ
60#define ARM_SPI_BASE 32
61
451b1570
YM
62#define ACPI_BUILD_TABLE_SIZE 0x20000
63
9cd07db9 64static void acpi_dsdt_add_cpus(Aml *scope, VirtMachineState *vms)
dfccd8cf 65{
9cd07db9 66 MachineState *ms = MACHINE(vms);
dfccd8cf
SZ
67 uint16_t i;
68
9cd07db9 69 for (i = 0; i < ms->smp.cpus; i++) {
f460be43 70 Aml *dev = aml_device("C%.03X", i);
dfccd8cf
SZ
71 aml_append(dev, aml_name_decl("_HID", aml_string("ACPI0007")));
72 aml_append(dev, aml_name_decl("_UID", aml_int(i)));
73 aml_append(scope, dev);
74 }
75}
76
77static void acpi_dsdt_add_uart(Aml *scope, const MemMapEntry *uart_memmap,
45fcf539 78 uint32_t uart_irq)
dfccd8cf
SZ
79{
80 Aml *dev = aml_device("COM0");
81 aml_append(dev, aml_name_decl("_HID", aml_string("ARMH0011")));
82 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
83
84 Aml *crs = aml_resource_template();
85 aml_append(crs, aml_memory32_fixed(uart_memmap->base,
86 uart_memmap->size, AML_READ_WRITE));
87 aml_append(crs,
88 aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
45fcf539 89 AML_EXCLUSIVE, &uart_irq, 1));
dfccd8cf 90 aml_append(dev, aml_name_decl("_CRS", crs));
f264d51d 91
dfccd8cf
SZ
92 aml_append(scope, dev);
93}
94
70bee80d
GS
95static void acpi_dsdt_add_fw_cfg(Aml *scope, const MemMapEntry *fw_cfg_memmap)
96{
97 Aml *dev = aml_device("FWCF");
98 aml_append(dev, aml_name_decl("_HID", aml_string("QEMU0002")));
99 /* device present, functioning, decoding, not shown in UI */
100 aml_append(dev, aml_name_decl("_STA", aml_int(0xB)));
3b5c492b 101 aml_append(dev, aml_name_decl("_CCA", aml_int(1)));
70bee80d
GS
102
103 Aml *crs = aml_resource_template();
104 aml_append(crs, aml_memory32_fixed(fw_cfg_memmap->base,
105 fw_cfg_memmap->size, AML_READ_WRITE));
106 aml_append(dev, aml_name_decl("_CRS", crs));
107 aml_append(scope, dev);
108}
109
dfccd8cf
SZ
110static void acpi_dsdt_add_flash(Aml *scope, const MemMapEntry *flash_memmap)
111{
112 Aml *dev, *crs;
113 hwaddr base = flash_memmap->base;
cd37aaf8 114 hwaddr size = flash_memmap->size / 2;
dfccd8cf
SZ
115
116 dev = aml_device("FLS0");
117 aml_append(dev, aml_name_decl("_HID", aml_string("LNRO0015")));
118 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
119
120 crs = aml_resource_template();
121 aml_append(crs, aml_memory32_fixed(base, size, AML_READ_WRITE));
122 aml_append(dev, aml_name_decl("_CRS", crs));
123 aml_append(scope, dev);
124
125 dev = aml_device("FLS1");
126 aml_append(dev, aml_name_decl("_HID", aml_string("LNRO0015")));
127 aml_append(dev, aml_name_decl("_UID", aml_int(1)));
128 crs = aml_resource_template();
129 aml_append(crs, aml_memory32_fixed(base + size, size, AML_READ_WRITE));
130 aml_append(dev, aml_name_decl("_CRS", crs));
131 aml_append(scope, dev);
132}
133
134static void acpi_dsdt_add_virtio(Aml *scope,
135 const MemMapEntry *virtio_mmio_memmap,
45fcf539 136 uint32_t mmio_irq, int num)
dfccd8cf
SZ
137{
138 hwaddr base = virtio_mmio_memmap->base;
139 hwaddr size = virtio_mmio_memmap->size;
dfccd8cf
SZ
140 int i;
141
142 for (i = 0; i < num; i++) {
45fcf539 143 uint32_t irq = mmio_irq + i;
dfccd8cf
SZ
144 Aml *dev = aml_device("VR%02u", i);
145 aml_append(dev, aml_name_decl("_HID", aml_string("LNRO0005")));
146 aml_append(dev, aml_name_decl("_UID", aml_int(i)));
76266d99 147 aml_append(dev, aml_name_decl("_CCA", aml_int(1)));
dfccd8cf
SZ
148
149 Aml *crs = aml_resource_template();
150 aml_append(crs, aml_memory32_fixed(base, size, AML_READ_WRITE));
151 aml_append(crs,
152 aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
45fcf539 153 AML_EXCLUSIVE, &irq, 1));
dfccd8cf
SZ
154 aml_append(dev, aml_name_decl("_CRS", crs));
155 aml_append(scope, dev);
156 base += size;
157 }
158}
159
45fcf539 160static void acpi_dsdt_add_pci(Aml *scope, const MemMapEntry *memmap,
c8f008c4 161 uint32_t irq, VirtMachineState *vms)
d4e5de1a 162{
c8f008c4 163 int ecam_id = VIRT_ECAM_ID(vms->highmem_ecam);
06d2dd49
GH
164 struct GPEXConfig cfg = {
165 .mmio32 = memmap[VIRT_PCIE_MMIO],
166 .pio = memmap[VIRT_PCIE_PIO],
167 .ecam = memmap[ecam_id],
168 .irq = irq,
6f9765fb 169 .bus = vms->bus,
06d2dd49 170 };
d4e5de1a 171
c8f008c4 172 if (vms->highmem_mmio) {
06d2dd49 173 cfg.mmio64 = memmap[VIRT_HIGH_PCIE_MMIO];
5125f9cd
PF
174 }
175
06d2dd49 176 acpi_dsdt_add_gpex(scope, &cfg);
d4e5de1a
SZ
177}
178
aeb1a36d
SZ
179static void acpi_dsdt_add_gpio(Aml *scope, const MemMapEntry *gpio_memmap,
180 uint32_t gpio_irq)
181{
182 Aml *dev = aml_device("GPO0");
183 aml_append(dev, aml_name_decl("_HID", aml_string("ARMH0061")));
aeb1a36d
SZ
184 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
185
186 Aml *crs = aml_resource_template();
187 aml_append(crs, aml_memory32_fixed(gpio_memmap->base, gpio_memmap->size,
188 AML_READ_WRITE));
189 aml_append(crs, aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
190 AML_EXCLUSIVE, &gpio_irq, 1));
191 aml_append(dev, aml_name_decl("_CRS", crs));
c1a158b7
SZ
192
193 Aml *aei = aml_resource_template();
194 /* Pin 3 for power button */
195 const uint32_t pin_list[1] = {3};
196 aml_append(aei, aml_gpio_int(AML_CONSUMER, AML_EDGE, AML_ACTIVE_HIGH,
197 AML_EXCLUSIVE, AML_PULL_UP, 0, pin_list, 1,
198 "GPO0", NULL, 0));
199 aml_append(dev, aml_name_decl("_AEI", aei));
200
201 /* _E03 is handle for power button */
202 Aml *method = aml_method("_E03", 0, AML_NOTSERIALIZED);
203 aml_append(method, aml_notify(aml_name(ACPI_POWER_BUTTON_DEVICE),
204 aml_int(0x80)));
205 aml_append(dev, method);
aeb1a36d
SZ
206 aml_append(scope, dev);
207}
208
f50be48a 209#ifdef CONFIG_TPM
5ab540e9
EA
210static void acpi_dsdt_add_tpm(Aml *scope, VirtMachineState *vms)
211{
212 PlatformBusDevice *pbus = PLATFORM_BUS_DEVICE(vms->platform_bus_dev);
213 hwaddr pbus_base = vms->memmap[VIRT_PLATFORM_BUS].base;
214 SysBusDevice *sbdev = SYS_BUS_DEVICE(tpm_find());
215 MemoryRegion *sbdev_mr;
216 hwaddr tpm_base;
217
218 if (!sbdev) {
219 return;
220 }
221
222 tpm_base = platform_bus_get_mmio_addr(pbus, sbdev, 0);
223 assert(tpm_base != -1);
224
225 tpm_base += pbus_base;
226
227 sbdev_mr = sysbus_mmio_get_region(sbdev, 0);
228
229 Aml *dev = aml_device("TPM0");
230 aml_append(dev, aml_name_decl("_HID", aml_string("MSFT0101")));
5903646d 231 aml_append(dev, aml_name_decl("_STR", aml_string("TPM 2.0 Device")));
5ab540e9
EA
232 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
233
234 Aml *crs = aml_resource_template();
235 aml_append(crs,
236 aml_memory32_fixed(tpm_base,
237 (uint32_t)memory_region_size(sbdev_mr),
238 AML_READ_WRITE));
239 aml_append(dev, aml_name_decl("_CRS", crs));
240 aml_append(scope, dev);
241}
f50be48a 242#endif
5ab540e9 243
271cbb2f 244#define ID_MAPPING_ENTRY_SIZE 20
1c2cb7e0
EA
245#define SMMU_V3_ENTRY_SIZE 68
246#define ROOT_COMPLEX_ENTRY_SIZE 36
271cbb2f
IM
247#define IORT_NODE_OFFSET 48
248
249static void build_iort_id_mapping(GArray *table_data, uint32_t input_base,
250 uint32_t id_count, uint32_t out_ref)
251{
1c2cb7e0 252 /* Table 4 ID mapping format */
271cbb2f
IM
253 build_append_int_noprefix(table_data, input_base, 4); /* Input base */
254 build_append_int_noprefix(table_data, id_count, 4); /* Number of IDs */
255 build_append_int_noprefix(table_data, input_base, 4); /* Output base */
256 build_append_int_noprefix(table_data, out_ref, 4); /* Output Reference */
1c2cb7e0
EA
257 /* Flags */
258 build_append_int_noprefix(table_data, 0 /* Single mapping (disabled) */, 4);
271cbb2f
IM
259}
260
261struct AcpiIortIdMapping {
262 uint32_t input_base;
263 uint32_t id_count;
264};
265typedef struct AcpiIortIdMapping AcpiIortIdMapping;
266
42e0f050
XW
267/* Build the iort ID mapping to SMMUv3 for a given PCI host bridge */
268static int
269iort_host_bridges(Object *obj, void *opaque)
270{
271 GArray *idmap_blob = opaque;
272
273 if (object_dynamic_cast(obj, TYPE_PCI_HOST_BRIDGE)) {
274 PCIBus *bus = PCI_HOST_BRIDGE(obj)->bus;
275
276 if (bus && !pci_bus_bypass_iommu(bus)) {
277 int min_bus, max_bus;
278
279 pci_bus_range(bus, &min_bus, &max_bus);
280
281 AcpiIortIdMapping idmap = {
282 .input_base = min_bus << 8,
283 .id_count = (max_bus - min_bus + 1) << 8,
284 };
285 g_array_append_val(idmap_blob, idmap);
286 }
287 }
288
289 return 0;
290}
291
292static int iort_idmap_compare(gconstpointer a, gconstpointer b)
293{
294 AcpiIortIdMapping *idmap_a = (AcpiIortIdMapping *)a;
295 AcpiIortIdMapping *idmap_b = (AcpiIortIdMapping *)b;
296
297 return idmap_a->input_base - idmap_b->input_base;
298}
299
3548494e
IM
300/*
301 * Input Output Remapping Table (IORT)
302 * Conforms to "IO Remapping Table System Software on ARM Platforms",
1c2cb7e0 303 * Document number: ARM DEN 0049E.b, Feb 2021
3548494e 304 */
e78f1222 305static void
a703b4f6 306build_iort(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
e78f1222 307{
3548494e 308 int i, nb_nodes, rc_mapping_count;
271cbb2f 309 const uint32_t iort_node_offset = IORT_NODE_OFFSET;
3548494e 310 size_t node_size, smmu_offset = 0;
271cbb2f 311 AcpiIortIdMapping *idmap;
1c2cb7e0 312 uint32_t id = 0;
42e0f050
XW
313 GArray *smmu_idmaps = g_array_new(false, true, sizeof(AcpiIortIdMapping));
314 GArray *its_idmaps = g_array_new(false, true, sizeof(AcpiIortIdMapping));
e78f1222 315
1c2cb7e0 316 AcpiTable table = { .sig = "IORT", .rev = 3, .oem_id = vms->oem_id,
3548494e 317 .oem_table_id = vms->oem_table_id };
271cbb2f
IM
318 /* Table 2 The IORT */
319 acpi_table_begin(&table, table_data);
e78f1222 320
a703b4f6 321 if (vms->iommu == VIRT_IOMMU_SMMUV3) {
42e0f050
XW
322 AcpiIortIdMapping next_range = {0};
323
324 object_child_foreach_recursive(object_get_root(),
325 iort_host_bridges, smmu_idmaps);
326
327 /* Sort the smmu idmap by input_base */
328 g_array_sort(smmu_idmaps, iort_idmap_compare);
329
330 /*
331 * Split the whole RIDs by mapping from RC to SMMU,
332 * build the ID mapping from RC to ITS directly.
333 */
334 for (i = 0; i < smmu_idmaps->len; i++) {
335 idmap = &g_array_index(smmu_idmaps, AcpiIortIdMapping, i);
336
337 if (next_range.input_base < idmap->input_base) {
338 next_range.id_count = idmap->input_base - next_range.input_base;
339 g_array_append_val(its_idmaps, next_range);
340 }
341
342 next_range.input_base = idmap->input_base + idmap->id_count;
343 }
344
345 /* Append the last RC -> ITS ID mapping */
346 if (next_range.input_base < 0xFFFF) {
347 next_range.id_count = 0xFFFF - next_range.input_base;
348 g_array_append_val(its_idmaps, next_range);
349 }
350
a703b4f6 351 nb_nodes = 3; /* RC, ITS, SMMUv3 */
42e0f050 352 rc_mapping_count = smmu_idmaps->len + its_idmaps->len;
a703b4f6
PM
353 } else {
354 nb_nodes = 2; /* RC, ITS */
42e0f050 355 rc_mapping_count = 1;
a703b4f6 356 }
3548494e
IM
357 /* Number of IORT Nodes */
358 build_append_int_noprefix(table_data, nb_nodes, 4);
271cbb2f 359
3548494e 360 /* Offset to Array of IORT Nodes */
271cbb2f 361 build_append_int_noprefix(table_data, IORT_NODE_OFFSET, 4);
3548494e 362 build_append_int_noprefix(table_data, 0, 4); /* Reserved */
e78f1222 363
1c2cb7e0 364 /* Table 12 ITS Group Format */
271cbb2f
IM
365 build_append_int_noprefix(table_data, 0 /* ITS Group */, 1); /* Type */
366 node_size = 20 /* fixed header size */ + 4 /* 1 GIC ITS Identifier */;
367 build_append_int_noprefix(table_data, node_size, 2); /* Length */
1c2cb7e0
EA
368 build_append_int_noprefix(table_data, 1, 1); /* Revision */
369 build_append_int_noprefix(table_data, id++, 4); /* Identifier */
271cbb2f
IM
370 build_append_int_noprefix(table_data, 0, 4); /* Number of ID mappings */
371 build_append_int_noprefix(table_data, 0, 4); /* Reference to ID Array */
372 build_append_int_noprefix(table_data, 1, 4); /* Number of ITSs */
373 /* GIC ITS Identifier Array */
374 build_append_int_noprefix(table_data, 0 /* MADT translation_id */, 4);
e78f1222 375
a703b4f6 376 if (vms->iommu == VIRT_IOMMU_SMMUV3) {
41c4fb94 377 int irq = vms->irqmap[VIRT_SMMU] + ARM_SPI_BASE;
a703b4f6 378
271cbb2f 379 smmu_offset = table_data->len - table.table_offset;
1c2cb7e0 380 /* Table 9 SMMUv3 Format */
271cbb2f
IM
381 build_append_int_noprefix(table_data, 4 /* SMMUv3 */, 1); /* Type */
382 node_size = SMMU_V3_ENTRY_SIZE + ID_MAPPING_ENTRY_SIZE;
383 build_append_int_noprefix(table_data, node_size, 2); /* Length */
1c2cb7e0
EA
384 build_append_int_noprefix(table_data, 4, 1); /* Revision */
385 build_append_int_noprefix(table_data, id++, 4); /* Identifier */
271cbb2f
IM
386 build_append_int_noprefix(table_data, 1, 4); /* Number of ID mappings */
387 /* Reference to ID Array */
388 build_append_int_noprefix(table_data, SMMU_V3_ENTRY_SIZE, 4);
389 /* Base address */
390 build_append_int_noprefix(table_data, vms->memmap[VIRT_SMMU].base, 8);
391 /* Flags */
1c2cb7e0 392 build_append_int_noprefix(table_data, 1 /* COHACC Override */, 4);
271cbb2f
IM
393 build_append_int_noprefix(table_data, 0, 4); /* Reserved */
394 build_append_int_noprefix(table_data, 0, 8); /* VATOS address */
395 /* Model */
396 build_append_int_noprefix(table_data, 0 /* Generic SMMU-v3 */, 4);
397 build_append_int_noprefix(table_data, irq, 4); /* Event */
398 build_append_int_noprefix(table_data, irq + 1, 4); /* PRI */
399 build_append_int_noprefix(table_data, irq + 3, 4); /* GERR */
400 build_append_int_noprefix(table_data, irq + 2, 4); /* Sync */
1c2cb7e0
EA
401 build_append_int_noprefix(table_data, 0, 4); /* Proximity domain */
402 /* DeviceID mapping index (ignored since interrupts are GSIV based) */
403 build_append_int_noprefix(table_data, 0, 4);
271cbb2f 404
a703b4f6 405 /* output IORT node is the ITS group node (the first node) */
271cbb2f 406 build_iort_id_mapping(table_data, 0, 0xFFFF, IORT_NODE_OFFSET);
a703b4f6
PM
407 }
408
1c2cb7e0 409 /* Table 17 Root Complex Node */
271cbb2f
IM
410 build_append_int_noprefix(table_data, 2 /* Root complex */, 1); /* Type */
411 node_size = ROOT_COMPLEX_ENTRY_SIZE +
412 ID_MAPPING_ENTRY_SIZE * rc_mapping_count;
413 build_append_int_noprefix(table_data, node_size, 2); /* Length */
1c2cb7e0
EA
414 build_append_int_noprefix(table_data, 3, 1); /* Revision */
415 build_append_int_noprefix(table_data, id++, 4); /* Identifier */
271cbb2f
IM
416 /* Number of ID mappings */
417 build_append_int_noprefix(table_data, rc_mapping_count, 4);
418 /* Reference to ID Array */
419 build_append_int_noprefix(table_data, ROOT_COMPLEX_ENTRY_SIZE, 4);
420
1c2cb7e0 421 /* Table 14 Memory access properties */
271cbb2f
IM
422 /* CCA: Cache Coherent Attribute */
423 build_append_int_noprefix(table_data, 1 /* fully coherent */, 4);
424 build_append_int_noprefix(table_data, 0, 1); /* AH: Note Allocation Hints */
425 build_append_int_noprefix(table_data, 0, 2); /* Reserved */
1c2cb7e0
EA
426 /* Table 15 Memory Access Flags */
427 build_append_int_noprefix(table_data, 0x3 /* CCA = CPM = DACS = 1 */, 1);
271cbb2f
IM
428
429 build_append_int_noprefix(table_data, 0, 4); /* ATS Attribute */
430 /* MCFG pci_segment */
431 build_append_int_noprefix(table_data, 0, 4); /* PCI Segment number */
432
1c2cb7e0
EA
433 /* Memory address size limit */
434 build_append_int_noprefix(table_data, 64, 1);
435
436 build_append_int_noprefix(table_data, 0, 3); /* Reserved */
437
271cbb2f 438 /* Output Reference */
a703b4f6 439 if (vms->iommu == VIRT_IOMMU_SMMUV3) {
42e0f050
XW
440 AcpiIortIdMapping *range;
441
442 /* translated RIDs connect to SMMUv3 node: RC -> SMMUv3 -> ITS */
443 for (i = 0; i < smmu_idmaps->len; i++) {
42e0f050 444 range = &g_array_index(smmu_idmaps, AcpiIortIdMapping, i);
42e0f050 445 /* output IORT node is the smmuv3 node */
271cbb2f
IM
446 build_iort_id_mapping(table_data, range->input_base,
447 range->id_count, smmu_offset);
42e0f050
XW
448 }
449
450 /* bypassed RIDs connect to ITS group node directly: RC -> ITS */
451 for (i = 0; i < its_idmaps->len; i++) {
42e0f050 452 range = &g_array_index(its_idmaps, AcpiIortIdMapping, i);
42e0f050 453 /* output IORT node is the ITS group node (the first node) */
271cbb2f
IM
454 build_iort_id_mapping(table_data, range->input_base,
455 range->id_count, iort_node_offset);
42e0f050 456 }
a703b4f6
PM
457 } else {
458 /* output IORT node is the ITS group node (the first node) */
271cbb2f 459 build_iort_id_mapping(table_data, 0, 0xFFFF, IORT_NODE_OFFSET);
a703b4f6 460 }
e78f1222 461
3548494e 462 acpi_table_end(linker, &table);
42e0f050
XW
463 g_array_free(smmu_idmaps, true);
464 g_array_free(its_idmaps, true);
e78f1222
PM
465}
466
a86d86ac
IM
467/*
468 * Serial Port Console Redirection Table (SPCR)
469 * Rev: 1.07
470 */
f264d51d 471static void
da4f09a7 472build_spcr(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
f264d51d 473{
a86d86ac
IM
474 AcpiTable table = { .sig = "SPCR", .rev = 2, .oem_id = vms->oem_id,
475 .oem_table_id = vms->oem_table_id };
f264d51d 476
a86d86ac 477 acpi_table_begin(&table, table_data);
f264d51d 478
a86d86ac
IM
479 /* Interface Type */
480 build_append_int_noprefix(table_data, 3, 1); /* ARM PL011 UART */
481 build_append_int_noprefix(table_data, 0, 3); /* Reserved */
482 /* Base Address */
483 build_append_gas(table_data, AML_AS_SYSTEM_MEMORY, 8, 0, 1,
484 vms->memmap[VIRT_UART].base);
485 /* Interrupt Type */
486 build_append_int_noprefix(table_data,
487 (1 << 3) /* Bit[3] ARMH GIC interrupt */, 1);
488 build_append_int_noprefix(table_data, 0, 1); /* IRQ */
489 /* Global System Interrupt */
490 build_append_int_noprefix(table_data,
491 vms->irqmap[VIRT_UART] + ARM_SPI_BASE, 4);
492 build_append_int_noprefix(table_data, 3 /* 9600 */, 1); /* Baud Rate */
493 build_append_int_noprefix(table_data, 0 /* No Parity */, 1); /* Parity */
494 /* Stop Bits */
495 build_append_int_noprefix(table_data, 1 /* 1 Stop bit */, 1);
496 /* Flow Control */
497 build_append_int_noprefix(table_data,
498 (1 << 1) /* RTS/CTS hardware flow control */, 1);
499 /* Terminal Type */
500 build_append_int_noprefix(table_data, 0 /* VT100 */, 1);
501 build_append_int_noprefix(table_data, 0, 1); /* Language */
502 /* PCI Device ID */
503 build_append_int_noprefix(table_data, 0xffff /* not a PCI device*/, 2);
504 /* PCI Vendor ID */
505 build_append_int_noprefix(table_data, 0xffff /* not a PCI device*/, 2);
506 build_append_int_noprefix(table_data, 0, 1); /* PCI Bus Number */
507 build_append_int_noprefix(table_data, 0, 1); /* PCI Device Number */
508 build_append_int_noprefix(table_data, 0, 1); /* PCI Function Number */
509 build_append_int_noprefix(table_data, 0, 4); /* PCI Flags */
510 build_append_int_noprefix(table_data, 0, 1); /* PCI Segment */
511 build_append_int_noprefix(table_data, 0, 4); /* Reserved */
f264d51d 512
a86d86ac 513 acpi_table_end(linker, &table);
f264d51d
AJ
514}
515
e5b6d55a
IM
516/*
517 * ACPI spec, Revision 5.1
518 * 5.2.16 System Resource Affinity Table (SRAT)
519 */
2b302e1e 520static void
da4f09a7 521build_srat(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
2b302e1e 522{
255bf20f 523 int i;
2b302e1e 524 uint64_t mem_base;
4ccf5826 525 MachineClass *mc = MACHINE_GET_CLASS(vms);
aa570207
TX
526 MachineState *ms = MACHINE(vms);
527 const CPUArchIdList *cpu_list = mc->possible_cpu_arch_ids(ms);
255bf20f
IM
528 AcpiTable table = { .sig = "SRAT", .rev = 3, .oem_id = vms->oem_id,
529 .oem_table_id = vms->oem_table_id };
2b302e1e 530
255bf20f
IM
531 acpi_table_begin(&table, table_data);
532 build_append_int_noprefix(table_data, 1, 4); /* Reserved */
533 build_append_int_noprefix(table_data, 0, 8); /* Reserved */
2b302e1e 534
4ccf5826 535 for (i = 0; i < cpu_list->len; ++i) {
e5b6d55a
IM
536 uint32_t nodeid = cpu_list->cpus[i].props.node_id;
537 /*
538 * 5.2.16.4 GICC Affinity Structure
539 */
540 build_append_int_noprefix(table_data, 3, 1); /* Type */
541 build_append_int_noprefix(table_data, 18, 1); /* Length */
542 build_append_int_noprefix(table_data, nodeid, 4); /* Proximity Domain */
543 build_append_int_noprefix(table_data, i, 4); /* ACPI Processor UID */
544 /* Flags, Table 5-76 */
545 build_append_int_noprefix(table_data, 1 /* Enabled */, 4);
546 build_append_int_noprefix(table_data, 0, 4); /* Clock Domain */
2b302e1e 547 }
2b302e1e 548
da4f09a7 549 mem_base = vms->memmap[VIRT_MEM].base;
aa570207 550 for (i = 0; i < ms->numa_state->num_nodes; ++i) {
7e721e7b 551 if (ms->numa_state->nodes[i].node_mem > 0) {
e5b6d55a 552 build_srat_memory(table_data, mem_base,
7e721e7b 553 ms->numa_state->nodes[i].node_mem, i,
66c353ce 554 MEM_AFFINITY_ENABLED);
7e721e7b 555 mem_base += ms->numa_state->nodes[i].node_mem;
66c353ce 556 }
2b302e1e
SZ
557 }
558
c3b0cf6e
VV
559 if (ms->nvdimms_state->is_enabled) {
560 nvdimm_build_srat(table_data);
561 }
562
442da7dc 563 if (ms->device_memory) {
e5b6d55a 564 build_srat_memory(table_data, ms->device_memory->base,
442da7dc
SK
565 memory_region_size(&ms->device_memory->mr),
566 ms->numa_state->num_nodes - 1,
567 MEM_AFFINITY_HOTPLUGGABLE | MEM_AFFINITY_ENABLED);
568 }
569
255bf20f 570 acpi_table_end(linker, &table);
2b302e1e
SZ
571}
572
41041e57
IM
573/*
574 * ACPI spec, Revision 5.1
575 * 5.2.24 Generic Timer Description Table (GTDT)
576 */
ee246400 577static void
8dd845d3 578build_gtdt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
ee246400 579{
8dd845d3 580 VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
41041e57
IM
581 /*
582 * Table 5-117 Flag Definitions
583 * set only "Timer interrupt Mode" and assume "Timer Interrupt
584 * polarity" bit as '0: Interrupt is Active high'
585 */
586 uint32_t irqflags = vmc->claim_edge_triggered_timers ?
587 1 : /* Interrupt is Edge triggered */
588 0; /* Interrupt is Level triggered */
589 AcpiTable table = { .sig = "GTDT", .rev = 2, .oem_id = vms->oem_id,
590 .oem_table_id = vms->oem_table_id };
ee246400 591
41041e57 592 acpi_table_begin(&table, table_data);
ee246400 593
41041e57
IM
594 /* CntControlBase Physical Address */
595 /* FIXME: invalid value, should be 0xFFFFFFFFFFFFFFFF if not impl. ? */
596 build_append_int_noprefix(table_data, 0, 8);
597 build_append_int_noprefix(table_data, 0, 4); /* Reserved */
598 /*
599 * FIXME: clarify comment:
600 * The interrupt values are the same with the device tree when adding 16
601 */
602 /* Secure EL1 timer GSIV */
603 build_append_int_noprefix(table_data, ARCH_TIMER_S_EL1_IRQ + 16, 4);
604 /* Secure EL1 timer Flags */
605 build_append_int_noprefix(table_data, irqflags, 4);
606 /* Non-Secure EL1 timer GSIV */
607 build_append_int_noprefix(table_data, ARCH_TIMER_NS_EL1_IRQ + 16, 4);
608 /* Non-Secure EL1 timer Flags */
609 build_append_int_noprefix(table_data, irqflags |
610 1UL << 2, /* Always-on Capability */
611 4);
612 /* Virtual timer GSIV */
613 build_append_int_noprefix(table_data, ARCH_TIMER_VIRT_IRQ + 16, 4);
614 /* Virtual Timer Flags */
615 build_append_int_noprefix(table_data, irqflags, 4);
616 /* Non-Secure EL2 timer GSIV */
617 build_append_int_noprefix(table_data, ARCH_TIMER_NS_EL2_IRQ + 16, 4);
618 /* Non-Secure EL2 timer Flags */
619 build_append_int_noprefix(table_data, irqflags, 4);
620 /* CntReadBase Physical address */
621 build_append_int_noprefix(table_data, 0, 8);
622 /* Platform Timer Count */
623 build_append_int_noprefix(table_data, 0, 4);
624 /* Platform Timer Offset */
625 build_append_int_noprefix(table_data, 0, 4);
ee246400 626
41041e57 627 acpi_table_end(linker, &table);
ee246400
SZ
628}
629
f0dc9a5d
EA
630/* Debug Port Table 2 (DBG2) */
631static void
632build_dbg2(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
633{
634 AcpiTable table = { .sig = "DBG2", .rev = 0, .oem_id = vms->oem_id,
635 .oem_table_id = vms->oem_table_id };
636 int dbg2devicelength;
637 const char name[] = "COM0";
638 const int namespace_length = sizeof(name);
639
640 acpi_table_begin(&table, table_data);
641
642 dbg2devicelength = 22 + /* BaseAddressRegister[] offset */
643 12 + /* BaseAddressRegister[] */
644 4 + /* AddressSize[] */
645 namespace_length /* NamespaceString[] */;
646
647 /* OffsetDbgDeviceInfo */
648 build_append_int_noprefix(table_data, 44, 4);
649 /* NumberDbgDeviceInfo */
650 build_append_int_noprefix(table_data, 1, 4);
651
652 /* Table 2. Debug Device Information structure format */
653 build_append_int_noprefix(table_data, 0, 1); /* Revision */
654 build_append_int_noprefix(table_data, dbg2devicelength, 2); /* Length */
655 /* NumberofGenericAddressRegisters */
656 build_append_int_noprefix(table_data, 1, 1);
657 /* NameSpaceStringLength */
658 build_append_int_noprefix(table_data, namespace_length, 2);
659 build_append_int_noprefix(table_data, 38, 2); /* NameSpaceStringOffset */
660 build_append_int_noprefix(table_data, 0, 2); /* OemDataLength */
661 /* OemDataOffset (0 means no OEM data) */
662 build_append_int_noprefix(table_data, 0, 2);
663
664 /* Port Type */
665 build_append_int_noprefix(table_data, 0x8000 /* Serial */, 2);
666 /* Port Subtype */
667 build_append_int_noprefix(table_data, 0x3 /* ARM PL011 UART */, 2);
668 build_append_int_noprefix(table_data, 0, 2); /* Reserved */
669 /* BaseAddressRegisterOffset */
670 build_append_int_noprefix(table_data, 22, 2);
671 /* AddressSizeOffset */
672 build_append_int_noprefix(table_data, 34, 2);
673
674 /* BaseAddressRegister[] */
675 build_append_gas(table_data, AML_AS_SYSTEM_MEMORY, 8, 0, 1,
676 vms->memmap[VIRT_UART].base);
677
678 /* AddressSize[] */
679 build_append_int_noprefix(table_data,
680 vms->memmap[VIRT_UART].size, 4);
681
682 /* NamespaceString[] */
683 g_array_append_vals(table_data, name, namespace_length);
684
685 acpi_table_end(linker, &table);
686};
687
99a7545f 688/*
37f33084 689 * ACPI spec, Revision 5.1 Errata A
99a7545f
IM
690 * 5.2.12 Multiple APIC Description Table (MADT)
691 */
37f33084
IM
692static void build_append_gicr(GArray *table_data, uint64_t base, uint32_t size)
693{
694 build_append_int_noprefix(table_data, 0xE, 1); /* Type */
695 build_append_int_noprefix(table_data, 16, 1); /* Length */
696 build_append_int_noprefix(table_data, 0, 2); /* Reserved */
697 /* Discovery Range Base Addres */
698 build_append_int_noprefix(table_data, base, 8);
699 build_append_int_noprefix(table_data, size, 4); /* Discovery Range Length */
700}
701
982d06c5 702static void
da4f09a7 703build_madt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
982d06c5 704{
37f33084 705 int i;
da4f09a7 706 VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
da4f09a7 707 const MemMapEntry *memmap = vms->memmap;
99a7545f
IM
708 AcpiTable table = { .sig = "APIC", .rev = 3, .oem_id = vms->oem_id,
709 .oem_table_id = vms->oem_table_id };
982d06c5 710
99a7545f
IM
711 acpi_table_begin(&table, table_data);
712 /* Local Interrupt Controller Address */
713 build_append_int_noprefix(table_data, 0, 4);
37f33084
IM
714 build_append_int_noprefix(table_data, 0, 4); /* Flags */
715
716 /* 5.2.12.15 GIC Distributor Structure */
717 build_append_int_noprefix(table_data, 0xC, 1); /* Type */
718 build_append_int_noprefix(table_data, 24, 1); /* Length */
719 build_append_int_noprefix(table_data, 0, 2); /* Reserved */
720 build_append_int_noprefix(table_data, 0, 4); /* GIC ID */
721 /* Physical Base Address */
722 build_append_int_noprefix(table_data, memmap[VIRT_GIC_DIST].base, 8);
723 build_append_int_noprefix(table_data, 0, 4); /* System Vector Base */
724 /* GIC version */
725 build_append_int_noprefix(table_data, vms->gic_version, 1);
726 build_append_int_noprefix(table_data, 0, 3); /* Reserved */
982d06c5 727
9cd07db9 728 for (i = 0; i < MACHINE(vms)->smp.cpus; i++) {
5d9c1756 729 ARMCPU *armcpu = ARM_CPU(qemu_get_cpu(i));
37f33084
IM
730 uint64_t physical_base_address = 0, gich = 0, gicv = 0;
731 uint32_t vgic_interrupt = vms->virt ? PPI(ARCH_GIC_MAINT_IRQ) : 0;
732 uint32_t pmu_interrupt = arm_feature(&armcpu->env, ARM_FEATURE_PMU) ?
733 PPI(VIRTUAL_PMU_IRQ) : 0;
5d9c1756 734
e1f04578 735 if (vms->gic_version == VIRT_GIC_VERSION_2) {
37f33084
IM
736 physical_base_address = memmap[VIRT_GIC_CPU].base;
737 gicv = memmap[VIRT_GIC_VCPU].base;
738 gich = memmap[VIRT_GIC_HYP].base;
f2fbface 739 }
8433dee0 740
37f33084
IM
741 /* 5.2.12.14 GIC Structure */
742 build_append_int_noprefix(table_data, 0xB, 1); /* Type */
743 build_append_int_noprefix(table_data, 76, 1); /* Length */
744 build_append_int_noprefix(table_data, 0, 2); /* Reserved */
745 build_append_int_noprefix(table_data, i, 4); /* GIC ID */
746 build_append_int_noprefix(table_data, i, 4); /* ACPI Processor UID */
747 /* Flags */
748 build_append_int_noprefix(table_data, 1, 4); /* Enabled */
749 /* Parking Protocol Version */
750 build_append_int_noprefix(table_data, 0, 4);
751 /* Performance Interrupt GSIV */
752 build_append_int_noprefix(table_data, pmu_interrupt, 4);
753 build_append_int_noprefix(table_data, 0, 8); /* Parked Address */
754 /* Physical Base Address */
755 build_append_int_noprefix(table_data, physical_base_address, 8);
756 build_append_int_noprefix(table_data, gicv, 8); /* GICV */
757 build_append_int_noprefix(table_data, gich, 8); /* GICH */
758 /* VGIC Maintenance interrupt */
759 build_append_int_noprefix(table_data, vgic_interrupt, 4);
760 build_append_int_noprefix(table_data, 0, 8); /* GICR Base Address*/
761 /* MPIDR */
762 build_append_int_noprefix(table_data, armcpu->mp_affinity, 8);
f2fbface
SZ
763 }
764
e1f04578 765 if (vms->gic_version != VIRT_GIC_VERSION_2) {
37f33084
IM
766 build_append_gicr(table_data, memmap[VIRT_GIC_REDIST].base,
767 memmap[VIRT_GIC_REDIST].size);
768 if (virt_gicv3_redist_region_count(vms) == 2) {
769 build_append_gicr(table_data, memmap[VIRT_HIGH_GIC_REDIST2].base,
770 memmap[VIRT_HIGH_GIC_REDIST2].size);
a1de312f
EA
771 }
772
da4f09a7 773 if (its_class_name() && !vmc->no_its) {
37f33084
IM
774 /*
775 * FIXME: Structure is from Revision 6.0 where 'GIC Structure'
776 * has additional fields on top of implemented 5.1 Errata A,
777 * to make it consistent with v6.0 we need to bump everything
778 * to v6.0
779 */
780 /*
781 * ACPI spec, Revision 6.0 Errata A
782 * (original 6.0 definition has invalid Length)
783 * 5.2.12.18 GIC ITS Structure
784 */
785 build_append_int_noprefix(table_data, 0xF, 1); /* Type */
786 build_append_int_noprefix(table_data, 20, 1); /* Length */
787 build_append_int_noprefix(table_data, 0, 2); /* Reserved */
788 build_append_int_noprefix(table_data, 0, 4); /* GIC ITS ID */
789 /* Physical Base Address */
790 build_append_int_noprefix(table_data, memmap[VIRT_GIC_ITS].base, 8);
791 build_append_int_noprefix(table_data, 0, 4); /* Reserved */
13e5c54d 792 }
b92ad394 793 } else {
37f33084
IM
794 const uint16_t spi_base = vms->irqmap[VIRT_GIC_V2M] + ARM_SPI_BASE;
795
796 /* 5.2.12.16 GIC MSI Frame Structure */
797 build_append_int_noprefix(table_data, 0xD, 1); /* Type */
798 build_append_int_noprefix(table_data, 24, 1); /* Length */
799 build_append_int_noprefix(table_data, 0, 2); /* Reserved */
800 build_append_int_noprefix(table_data, 0, 4); /* GIC MSI Frame ID */
801 /* Physical Base Address */
802 build_append_int_noprefix(table_data, memmap[VIRT_GIC_V2M].base, 8);
803 build_append_int_noprefix(table_data, 1, 4); /* Flags */
804 /* SPI Count */
805 build_append_int_noprefix(table_data, NUM_GICV2M_SPIS, 2);
806 build_append_int_noprefix(table_data, spi_base, 2); /* SPI Base */
b92ad394 807 }
99a7545f 808 acpi_table_end(linker, &table);
982d06c5
SZ
809}
810
c2f7c0c3 811/* FADT */
8612f8bd
IM
812static void build_fadt_rev5(GArray *table_data, BIOSLinker *linker,
813 VirtMachineState *vms, unsigned dsdt_tbl_offset)
c2f7c0c3 814{
dd1b2037
IM
815 /* ACPI v5.1 */
816 AcpiFadtData fadt = {
817 .rev = 5,
818 .minor_ver = 1,
819 .flags = 1 << ACPI_FADT_F_HW_REDUCED_ACPI,
820 .xdsdt_tbl_offset = &dsdt_tbl_offset,
821 };
79e993a0
AJ
822
823 switch (vms->psci_conduit) {
824 case QEMU_PSCI_CONDUIT_DISABLED:
dd1b2037 825 fadt.arm_boot_arch = 0;
79e993a0
AJ
826 break;
827 case QEMU_PSCI_CONDUIT_HVC:
dd1b2037
IM
828 fadt.arm_boot_arch = ACPI_FADT_ARM_PSCI_COMPLIANT |
829 ACPI_FADT_ARM_PSCI_USE_HVC;
79e993a0
AJ
830 break;
831 case QEMU_PSCI_CONDUIT_SMC:
dd1b2037 832 fadt.arm_boot_arch = ACPI_FADT_ARM_PSCI_COMPLIANT;
79e993a0
AJ
833 break;
834 default:
835 g_assert_not_reached();
836 }
c2f7c0c3 837
602b4582 838 build_fadt(table_data, linker, &fadt, vms->oem_id, vms->oem_table_id);
c2f7c0c3
SZ
839}
840
dfccd8cf
SZ
841/* DSDT */
842static void
da4f09a7 843build_dsdt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
dfccd8cf 844{
2c1fb4d5 845 VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
dfccd8cf 846 Aml *scope, *dsdt;
cff51ac9 847 MachineState *ms = MACHINE(vms);
da4f09a7
AJ
848 const MemMapEntry *memmap = vms->memmap;
849 const int *irqmap = vms->irqmap;
fc02b869
IM
850 AcpiTable table = { .sig = "DSDT", .rev = 2, .oem_id = vms->oem_id,
851 .oem_table_id = vms->oem_table_id };
dfccd8cf 852
fc02b869 853 acpi_table_begin(&table, table_data);
dfccd8cf 854 dsdt = init_aml_allocator();
dfccd8cf 855
67736a25
SZ
856 /* When booting the VM with UEFI, UEFI takes ownership of the RTC hardware.
857 * While UEFI can use libfdt to disable the RTC device node in the DTB that
858 * it passes to the OS, it cannot modify AML. Therefore, we won't generate
859 * the RTC ACPI device at all when using UEFI.
860 */
dfccd8cf 861 scope = aml_scope("\\_SB");
9cd07db9 862 acpi_dsdt_add_cpus(scope, vms);
dfccd8cf
SZ
863 acpi_dsdt_add_uart(scope, &memmap[VIRT_UART],
864 (irqmap[VIRT_UART] + ARM_SPI_BASE));
2c1fb4d5
AJ
865 if (vmc->acpi_expose_flash) {
866 acpi_dsdt_add_flash(scope, &memmap[VIRT_FLASH]);
867 }
70bee80d 868 acpi_dsdt_add_fw_cfg(scope, &memmap[VIRT_FW_CFG]);
dfccd8cf
SZ
869 acpi_dsdt_add_virtio(scope, &memmap[VIRT_MMIO],
870 (irqmap[VIRT_MMIO] + ARM_SPI_BASE), NUM_VIRTIO_TRANSPORTS);
c8f008c4 871 acpi_dsdt_add_pci(scope, memmap, irqmap[VIRT_PCIE] + ARM_SPI_BASE, vms);
cff51ac9
SK
872 if (vms->acpi_dev) {
873 build_ged_aml(scope, "\\_SB."GED_DEVICE,
874 HOTPLUG_HANDLER(vms->acpi_dev),
875 irqmap[VIRT_ACPI_GED] + ARM_SPI_BASE, AML_SYSTEM_MEMORY,
876 memmap[VIRT_ACPI_GED].base);
1962f31b
SK
877 } else {
878 acpi_dsdt_add_gpio(scope, &memmap[VIRT_GPIO],
879 (irqmap[VIRT_GPIO] + ARM_SPI_BASE));
cff51ac9
SK
880 }
881
882 if (vms->acpi_dev) {
883 uint32_t event = object_property_get_uint(OBJECT(vms->acpi_dev),
884 "ged-event", &error_abort);
885
886 if (event & ACPI_GED_MEM_HOTPLUG_EVT) {
887 build_memory_hotplug_aml(scope, ms->ram_slots, "\\_SB", NULL,
888 AML_SYSTEM_MEMORY,
889 memmap[VIRT_PCDIMM_ACPI].base);
890 }
891 }
892
ac6aa59a 893 acpi_dsdt_add_power_button(scope);
f50be48a 894#ifdef CONFIG_TPM
5ab540e9 895 acpi_dsdt_add_tpm(scope, vms);
f50be48a 896#endif
d4e5de1a 897
dfccd8cf
SZ
898 aml_append(dsdt, scope);
899
fc02b869 900 /* copy AML table into ACPI tables blob */
dfccd8cf 901 g_array_append_vals(table_data, dsdt->buf->data, dsdt->buf->len);
fc02b869
IM
902
903 acpi_table_end(linker, &table);
dfccd8cf
SZ
904 free_aml_allocator();
905}
906
f5d8c8cd
SZ
907typedef
908struct AcpiBuildState {
909 /* Copy of table in RAM (for patching). */
910 MemoryRegion *table_mr;
911 MemoryRegion *rsdp_mr;
912 MemoryRegion *linker_mr;
913 /* Is table patched? */
914 bool patched;
f5d8c8cd
SZ
915} AcpiBuildState;
916
451b1570
YM
917static void acpi_align_size(GArray *blob, unsigned align)
918{
919 /*
920 * Align size to multiple of given size. This reduces the chance
921 * we need to change size in the future (breaking cross version migration).
922 */
923 g_array_set_size(blob, ROUND_UP(acpi_data_len(blob), align));
924}
925
f5d8c8cd 926static
da4f09a7 927void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables)
f5d8c8cd 928{
da4f09a7 929 VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
f5d8c8cd 930 GArray *table_offsets;
cb51ac2f 931 unsigned dsdt, xsdt;
dfccd8cf 932 GArray *tables_blob = tables->table_data;
aa570207 933 MachineState *ms = MACHINE(vms);
f5d8c8cd
SZ
934
935 table_offsets = g_array_new(false, true /* clear */,
936 sizeof(uint32_t));
937
ad9671b8
IM
938 bios_linker_loader_alloc(tables->linker,
939 ACPI_BUILD_TABLE_FILE, tables_blob,
f5d8c8cd
SZ
940 64, false /* high memory */);
941
dfccd8cf 942 /* DSDT is pointed to by FADT */
c2f7c0c3 943 dsdt = tables_blob->len;
da4f09a7 944 build_dsdt(tables_blob, tables->linker, vms);
dfccd8cf 945
70d23ed5 946 /* FADT MADT PPTT GTDT MCFG SPCR DBG2 pointed to by RSDT */
c2f7c0c3 947 acpi_add_table(table_offsets, tables_blob);
8612f8bd 948 build_fadt_rev5(tables_blob, tables->linker, vms, dsdt);
c2f7c0c3 949
982d06c5 950 acpi_add_table(table_offsets, tables_blob);
da4f09a7 951 build_madt(tables_blob, tables->linker, vms);
982d06c5 952
70d23ed5
YW
953 if (!vmc->no_cpu_topology) {
954 acpi_add_table(table_offsets, tables_blob);
955 build_pptt(tables_blob, tables->linker, ms,
956 vms->oem_id, vms->oem_table_id);
957 }
958
ee246400 959 acpi_add_table(table_offsets, tables_blob);
8dd845d3 960 build_gtdt(tables_blob, tables->linker, vms);
ee246400 961
84344884 962 acpi_add_table(table_offsets, tables_blob);
48cefd94
WY
963 {
964 AcpiMcfgInfo mcfg = {
965 .base = vms->memmap[VIRT_ECAM_ID(vms->highmem_ecam)].base,
966 .size = vms->memmap[VIRT_ECAM_ID(vms->highmem_ecam)].size,
967 };
602b4582
MP
968 build_mcfg(tables_blob, tables->linker, &mcfg, vms->oem_id,
969 vms->oem_table_id);
48cefd94 970 }
84344884 971
f264d51d 972 acpi_add_table(table_offsets, tables_blob);
da4f09a7 973 build_spcr(tables_blob, tables->linker, vms);
f264d51d 974
f0dc9a5d
EA
975 acpi_add_table(table_offsets, tables_blob);
976 build_dbg2(tables_blob, tables->linker, vms);
977
aa16508f
DG
978 if (vms->ras) {
979 build_ghes_error_table(tables->hardware_errors, tables->linker);
205cc75d 980 acpi_add_table(table_offsets, tables_blob);
602b4582
MP
981 acpi_build_hest(tables_blob, tables->linker, vms->oem_id,
982 vms->oem_table_id);
aa16508f
DG
983 }
984
aa570207 985 if (ms->numa_state->num_nodes > 0) {
2b302e1e 986 acpi_add_table(table_offsets, tables_blob);
da4f09a7 987 build_srat(tables_blob, tables->linker, vms);
118154b7 988 if (ms->numa_state->have_numa_distance) {
94a66456 989 acpi_add_table(table_offsets, tables_blob);
602b4582
MP
990 build_slit(tables_blob, tables->linker, ms, vms->oem_id,
991 vms->oem_table_id);
94a66456 992 }
2b302e1e
SZ
993 }
994
b5a60bee
KL
995 if (ms->nvdimms_state->is_enabled) {
996 nvdimm_build_acpi(table_offsets, tables_blob, tables->linker,
602b4582
MP
997 ms->nvdimms_state, ms->ram_slots, vms->oem_id,
998 vms->oem_table_id);
b5a60bee
KL
999 }
1000
da4f09a7 1001 if (its_class_name() && !vmc->no_its) {
e78f1222 1002 acpi_add_table(table_offsets, tables_blob);
a703b4f6 1003 build_iort(tables_blob, tables->linker, vms);
e78f1222
PM
1004 }
1005
f50be48a 1006#ifdef CONFIG_TPM
80bde693
EA
1007 if (tpm_get_version(tpm_find()) == TPM_VERSION_2_0) {
1008 acpi_add_table(table_offsets, tables_blob);
602b4582
MP
1009 build_tpm2(tables_blob, tables->linker, tables->tcpalog, vms->oem_id,
1010 vms->oem_table_id);
80bde693 1011 }
f50be48a 1012#endif
80bde693 1013
cf1a5cc9
JPB
1014 if (vms->iommu == VIRT_IOMMU_VIRTIO) {
1015 acpi_add_table(table_offsets, tables_blob);
1016 build_viot(ms, tables_blob, tables->linker, vms->virtio_iommu_bdf,
1017 vms->oem_id, vms->oem_table_id);
1018 }
1019
cb51ac2f
AB
1020 /* XSDT is pointed to by RSDP */
1021 xsdt = tables_blob->len;
602b4582
MP
1022 build_xsdt(tables_blob, tables->linker, table_offsets, vms->oem_id,
1023 vms->oem_table_id);
243bdb79 1024
d4bec5d8 1025 /* RSDP is in FSEG memory, so allocate it separately */
5c5fce1a
SO
1026 {
1027 AcpiRsdpData rsdp_data = {
1028 .revision = 2,
602b4582 1029 .oem_id = vms->oem_id,
5c5fce1a
SO
1030 .xsdt_tbl_offset = &xsdt,
1031 .rsdt_tbl_offset = NULL,
1032 };
1033 build_rsdp(tables->rsdp, tables->linker, &rsdp_data);
1034 }
d4bec5d8 1035
451b1570
YM
1036 /*
1037 * The align size is 128, warn if 64k is not enough therefore
1038 * the align size could be resized.
1039 */
1040 if (tables_blob->len > ACPI_BUILD_TABLE_SIZE / 2) {
1041 warn_report("ACPI table size %u exceeds %d bytes,"
1042 " migration may not work",
1043 tables_blob->len, ACPI_BUILD_TABLE_SIZE / 2);
1044 error_printf("Try removing CPUs, NUMA nodes, memory slots"
1045 " or PCI bridges.");
1046 }
1047 acpi_align_size(tables_blob, ACPI_BUILD_TABLE_SIZE);
1048
1049
f5d8c8cd
SZ
1050 /* Cleanup memory that's no longer used. */
1051 g_array_free(table_offsets, true);
1052}
1053
1054static void acpi_ram_update(MemoryRegion *mr, GArray *data)
1055{
1056 uint32_t size = acpi_data_len(data);
1057
1058 /* Make sure RAM size is correct - in case it got changed
1059 * e.g. by migration */
1060 memory_region_ram_resize(mr, size, &error_abort);
1061
1062 memcpy(memory_region_get_ram_ptr(mr), data->data, size);
1063 memory_region_set_dirty(mr, 0, size);
1064}
1065
3f8752b4 1066static void virt_acpi_build_update(void *build_opaque)
f5d8c8cd
SZ
1067{
1068 AcpiBuildState *build_state = build_opaque;
1069 AcpiBuildTables tables;
1070
1071 /* No state to update or already patched? Nothing to do. */
1072 if (!build_state || build_state->patched) {
1073 return;
1074 }
1075 build_state->patched = true;
1076
1077 acpi_build_tables_init(&tables);
1078
4dad9e74 1079 virt_acpi_build(VIRT_MACHINE(qdev_get_machine()), &tables);
f5d8c8cd
SZ
1080
1081 acpi_ram_update(build_state->table_mr, tables.table_data);
1082 acpi_ram_update(build_state->rsdp_mr, tables.rsdp);
0e9b9eda 1083 acpi_ram_update(build_state->linker_mr, tables.linker->cmd_blob);
f5d8c8cd 1084
f5d8c8cd
SZ
1085 acpi_build_tables_cleanup(&tables, true);
1086}
1087
1088static void virt_acpi_build_reset(void *build_opaque)
1089{
1090 AcpiBuildState *build_state = build_opaque;
1091 build_state->patched = false;
1092}
1093
f5d8c8cd
SZ
1094static const VMStateDescription vmstate_virt_acpi_build = {
1095 .name = "virt_acpi_build",
1096 .version_id = 1,
1097 .minimum_version_id = 1,
1098 .fields = (VMStateField[]) {
1099 VMSTATE_BOOL(patched, AcpiBuildState),
1100 VMSTATE_END_OF_LIST()
1101 },
1102};
1103
e9a8e474 1104void virt_acpi_setup(VirtMachineState *vms)
f5d8c8cd
SZ
1105{
1106 AcpiBuildTables tables;
1107 AcpiBuildState *build_state;
a08a6462 1108 AcpiGedState *acpi_ged_state;
f5d8c8cd 1109
af1f60a4 1110 if (!vms->fw_cfg) {
f5d8c8cd
SZ
1111 trace_virt_acpi_setup();
1112 return;
1113 }
1114
17e89077 1115 if (!virt_is_acpi_enabled(vms)) {
f5d8c8cd
SZ
1116 trace_virt_acpi_setup();
1117 return;
1118 }
1119
1120 build_state = g_malloc0(sizeof *build_state);
f5d8c8cd
SZ
1121
1122 acpi_build_tables_init(&tables);
da4f09a7 1123 virt_acpi_build(vms, &tables);
f5d8c8cd
SZ
1124
1125 /* Now expose it all to Guest */
82f76c67
WY
1126 build_state->table_mr = acpi_add_rom_blob(virt_acpi_build_update,
1127 build_state, tables.table_data,
6930ba0d 1128 ACPI_BUILD_TABLE_FILE);
f5d8c8cd
SZ
1129 assert(build_state->table_mr != NULL);
1130
6930ba0d
DH
1131 build_state->linker_mr = acpi_add_rom_blob(virt_acpi_build_update,
1132 build_state,
1133 tables.linker->cmd_blob,
1134 ACPI_BUILD_LOADER_FILE);
f5d8c8cd 1135
af1f60a4
AJ
1136 fw_cfg_add_file(vms->fw_cfg, ACPI_BUILD_TPMLOG_FILE, tables.tcpalog->data,
1137 acpi_data_len(tables.tcpalog));
f5d8c8cd 1138
a08a6462
DG
1139 if (vms->ras) {
1140 assert(vms->acpi_dev);
1141 acpi_ged_state = ACPI_GED(vms->acpi_dev);
1142 acpi_ghes_add_fw_cfg(&acpi_ged_state->ghes_state,
1143 vms->fw_cfg, tables.hardware_errors);
1144 }
1145
82f76c67
WY
1146 build_state->rsdp_mr = acpi_add_rom_blob(virt_acpi_build_update,
1147 build_state, tables.rsdp,
6930ba0d 1148 ACPI_BUILD_RSDP_FILE);
f5d8c8cd
SZ
1149
1150 qemu_register_reset(virt_acpi_build_reset, build_state);
1151 virt_acpi_build_reset(build_state);
1152 vmstate_register(NULL, 0, &vmstate_virt_acpi_build, build_state);
1153
1154 /* Cleanup tables but don't free the memory: we track it
1155 * in build_state.
1156 */
1157 acpi_build_tables_cleanup(&tables, false);
1158}