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
29#include "qemu/osdep.h"
30#include "qapi/error.h"
31#include "qemu/bitmap.h"
32#include "trace.h"
33#include "hw/core/cpu.h"
34#include "target/arm/cpu.h"
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"
39#include "hw/acpi/aml-build.h"
40#include "hw/acpi/utils.h"
41#include "hw/acpi/pci.h"
42#include "hw/pci/pcie_host.h"
43#include "hw/pci/pci.h"
44#include "hw/arm/virt.h"
45#include "sysemu/numa.h"
46#include "sysemu/reset.h"
47#include "kvm_arm.h"
48#include "migration/vmstate.h"
49
50#define ARM_SPI_BASE 32
51#define ACPI_POWER_BUTTON_DEVICE "PWRB"
52
53static void acpi_dsdt_add_cpus(Aml *scope, int smp_cpus)
54{
55 uint16_t i;
56
57 for (i = 0; i < smp_cpus; i++) {
58 Aml *dev = aml_device("C%.03X", i);
59 aml_append(dev, aml_name_decl("_HID", aml_string("ACPI0007")));
60 aml_append(dev, aml_name_decl("_UID", aml_int(i)));
61 aml_append(scope, dev);
62 }
63}
64
65static void acpi_dsdt_add_uart(Aml *scope, const MemMapEntry *uart_memmap,
66 uint32_t uart_irq)
67{
68 Aml *dev = aml_device("COM0");
69 aml_append(dev, aml_name_decl("_HID", aml_string("ARMH0011")));
70 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
71
72 Aml *crs = aml_resource_template();
73 aml_append(crs, aml_memory32_fixed(uart_memmap->base,
74 uart_memmap->size, AML_READ_WRITE));
75 aml_append(crs,
76 aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
77 AML_EXCLUSIVE, &uart_irq, 1));
78 aml_append(dev, aml_name_decl("_CRS", crs));
79
80 /* The _ADR entry is used to link this device to the UART described
81 * in the SPCR table, i.e. SPCR.base_address.address == _ADR.
82 */
83 aml_append(dev, aml_name_decl("_ADR", aml_int(uart_memmap->base)));
84
85 aml_append(scope, dev);
86}
87
88static void acpi_dsdt_add_fw_cfg(Aml *scope, const MemMapEntry *fw_cfg_memmap)
89{
90 Aml *dev = aml_device("FWCF");
91 aml_append(dev, aml_name_decl("_HID", aml_string("QEMU0002")));
92 /* device present, functioning, decoding, not shown in UI */
93 aml_append(dev, aml_name_decl("_STA", aml_int(0xB)));
94 aml_append(dev, aml_name_decl("_CCA", aml_int(1)));
95
96 Aml *crs = aml_resource_template();
97 aml_append(crs, aml_memory32_fixed(fw_cfg_memmap->base,
98 fw_cfg_memmap->size, AML_READ_WRITE));
99 aml_append(dev, aml_name_decl("_CRS", crs));
100 aml_append(scope, dev);
101}
102
103static void acpi_dsdt_add_flash(Aml *scope, const MemMapEntry *flash_memmap)
104{
105 Aml *dev, *crs;
106 hwaddr base = flash_memmap->base;
107 hwaddr size = flash_memmap->size / 2;
108
109 dev = aml_device("FLS0");
110 aml_append(dev, aml_name_decl("_HID", aml_string("LNRO0015")));
111 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
112
113 crs = aml_resource_template();
114 aml_append(crs, aml_memory32_fixed(base, size, AML_READ_WRITE));
115 aml_append(dev, aml_name_decl("_CRS", crs));
116 aml_append(scope, dev);
117
118 dev = aml_device("FLS1");
119 aml_append(dev, aml_name_decl("_HID", aml_string("LNRO0015")));
120 aml_append(dev, aml_name_decl("_UID", aml_int(1)));
121 crs = aml_resource_template();
122 aml_append(crs, aml_memory32_fixed(base + size, size, AML_READ_WRITE));
123 aml_append(dev, aml_name_decl("_CRS", crs));
124 aml_append(scope, dev);
125}
126
127static void acpi_dsdt_add_virtio(Aml *scope,
128 const MemMapEntry *virtio_mmio_memmap,
129 uint32_t mmio_irq, int num)
130{
131 hwaddr base = virtio_mmio_memmap->base;
132 hwaddr size = virtio_mmio_memmap->size;
133 int i;
134
135 for (i = 0; i < num; i++) {
136 uint32_t irq = mmio_irq + i;
137 Aml *dev = aml_device("VR%02u", i);
138 aml_append(dev, aml_name_decl("_HID", aml_string("LNRO0005")));
139 aml_append(dev, aml_name_decl("_UID", aml_int(i)));
140 aml_append(dev, aml_name_decl("_CCA", aml_int(1)));
141
142 Aml *crs = aml_resource_template();
143 aml_append(crs, aml_memory32_fixed(base, size, AML_READ_WRITE));
144 aml_append(crs,
145 aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
146 AML_EXCLUSIVE, &irq, 1));
147 aml_append(dev, aml_name_decl("_CRS", crs));
148 aml_append(scope, dev);
149 base += size;
150 }
151}
152
153static void acpi_dsdt_add_pci(Aml *scope, const MemMapEntry *memmap,
154 uint32_t irq, bool use_highmem, bool highmem_ecam)
155{
156 int ecam_id = VIRT_ECAM_ID(highmem_ecam);
157 Aml *method, *crs, *ifctx, *UUID, *ifctx1, *elsectx, *buf;
158 int i, bus_no;
159 hwaddr base_mmio = memmap[VIRT_PCIE_MMIO].base;
160 hwaddr size_mmio = memmap[VIRT_PCIE_MMIO].size;
161 hwaddr base_pio = memmap[VIRT_PCIE_PIO].base;
162 hwaddr size_pio = memmap[VIRT_PCIE_PIO].size;
163 hwaddr base_ecam = memmap[ecam_id].base;
164 hwaddr size_ecam = memmap[ecam_id].size;
165 int nr_pcie_buses = size_ecam / PCIE_MMCFG_SIZE_MIN;
166
167 Aml *dev = aml_device("%s", "PCI0");
168 aml_append(dev, aml_name_decl("_HID", aml_string("PNP0A08")));
169 aml_append(dev, aml_name_decl("_CID", aml_string("PNP0A03")));
170 aml_append(dev, aml_name_decl("_SEG", aml_int(0)));
171 aml_append(dev, aml_name_decl("_BBN", aml_int(0)));
172 aml_append(dev, aml_name_decl("_ADR", aml_int(0)));
173 aml_append(dev, aml_name_decl("_UID", aml_string("PCI0")));
174 aml_append(dev, aml_name_decl("_STR", aml_unicode("PCIe 0 Device")));
175 aml_append(dev, aml_name_decl("_CCA", aml_int(1)));
176
177 /* Declare the PCI Routing Table. */
178 Aml *rt_pkg = aml_varpackage(nr_pcie_buses * PCI_NUM_PINS);
179 for (bus_no = 0; bus_no < nr_pcie_buses; bus_no++) {
180 for (i = 0; i < PCI_NUM_PINS; i++) {
181 int gsi = (i + bus_no) % PCI_NUM_PINS;
182 Aml *pkg = aml_package(4);
183 aml_append(pkg, aml_int((bus_no << 16) | 0xFFFF));
184 aml_append(pkg, aml_int(i));
185 aml_append(pkg, aml_name("GSI%d", gsi));
186 aml_append(pkg, aml_int(0));
187 aml_append(rt_pkg, pkg);
188 }
189 }
190 aml_append(dev, aml_name_decl("_PRT", rt_pkg));
191
192 /* Create GSI link device */
193 for (i = 0; i < PCI_NUM_PINS; i++) {
194 uint32_t irqs = irq + i;
195 Aml *dev_gsi = aml_device("GSI%d", i);
196 aml_append(dev_gsi, aml_name_decl("_HID", aml_string("PNP0C0F")));
197 aml_append(dev_gsi, aml_name_decl("_UID", aml_int(0)));
198 crs = aml_resource_template();
199 aml_append(crs,
200 aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
201 AML_EXCLUSIVE, &irqs, 1));
202 aml_append(dev_gsi, aml_name_decl("_PRS", crs));
203 crs = aml_resource_template();
204 aml_append(crs,
205 aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
206 AML_EXCLUSIVE, &irqs, 1));
207 aml_append(dev_gsi, aml_name_decl("_CRS", crs));
208 method = aml_method("_SRS", 1, AML_NOTSERIALIZED);
209 aml_append(dev_gsi, method);
210 aml_append(dev, dev_gsi);
211 }
212
213 method = aml_method("_CBA", 0, AML_NOTSERIALIZED);
214 aml_append(method, aml_return(aml_int(base_ecam)));
215 aml_append(dev, method);
216
217 method = aml_method("_CRS", 0, AML_NOTSERIALIZED);
218 Aml *rbuf = aml_resource_template();
219 aml_append(rbuf,
220 aml_word_bus_number(AML_MIN_FIXED, AML_MAX_FIXED, AML_POS_DECODE,
221 0x0000, 0x0000, nr_pcie_buses - 1, 0x0000,
222 nr_pcie_buses));
223 aml_append(rbuf,
224 aml_dword_memory(AML_POS_DECODE, AML_MIN_FIXED, AML_MAX_FIXED,
225 AML_NON_CACHEABLE, AML_READ_WRITE, 0x0000, base_mmio,
226 base_mmio + size_mmio - 1, 0x0000, size_mmio));
227 aml_append(rbuf,
228 aml_dword_io(AML_MIN_FIXED, AML_MAX_FIXED, AML_POS_DECODE,
229 AML_ENTIRE_RANGE, 0x0000, 0x0000, size_pio - 1, base_pio,
230 size_pio));
231
232 if (use_highmem) {
233 hwaddr base_mmio_high = memmap[VIRT_HIGH_PCIE_MMIO].base;
234 hwaddr size_mmio_high = memmap[VIRT_HIGH_PCIE_MMIO].size;
235
236 aml_append(rbuf,
237 aml_qword_memory(AML_POS_DECODE, AML_MIN_FIXED, AML_MAX_FIXED,
238 AML_NON_CACHEABLE, AML_READ_WRITE, 0x0000,
239 base_mmio_high,
240 base_mmio_high + size_mmio_high - 1, 0x0000,
241 size_mmio_high));
242 }
243
244 aml_append(method, aml_name_decl("RBUF", rbuf));
245 aml_append(method, aml_return(rbuf));
246 aml_append(dev, method);
247
248 /* Declare an _OSC (OS Control Handoff) method */
249 aml_append(dev, aml_name_decl("SUPP", aml_int(0)));
250 aml_append(dev, aml_name_decl("CTRL", aml_int(0)));
251 method = aml_method("_OSC", 4, AML_NOTSERIALIZED);
252 aml_append(method,
253 aml_create_dword_field(aml_arg(3), aml_int(0), "CDW1"));
254
255 /* PCI Firmware Specification 3.0
256 * 4.5.1. _OSC Interface for PCI Host Bridge Devices
257 * The _OSC interface for a PCI/PCI-X/PCI Express hierarchy is
258 * identified by the Universal Unique IDentifier (UUID)
259 * 33DB4D5B-1FF7-401C-9657-7441C03DD766
260 */
261 UUID = aml_touuid("33DB4D5B-1FF7-401C-9657-7441C03DD766");
262 ifctx = aml_if(aml_equal(aml_arg(0), UUID));
263 aml_append(ifctx,
264 aml_create_dword_field(aml_arg(3), aml_int(4), "CDW2"));
265 aml_append(ifctx,
266 aml_create_dword_field(aml_arg(3), aml_int(8), "CDW3"));
267 aml_append(ifctx, aml_store(aml_name("CDW2"), aml_name("SUPP")));
268 aml_append(ifctx, aml_store(aml_name("CDW3"), aml_name("CTRL")));
269 aml_append(ifctx, aml_store(aml_and(aml_name("CTRL"), aml_int(0x1D), NULL),
270 aml_name("CTRL")));
271
272 ifctx1 = aml_if(aml_lnot(aml_equal(aml_arg(1), aml_int(0x1))));
273 aml_append(ifctx1, aml_store(aml_or(aml_name("CDW1"), aml_int(0x08), NULL),
274 aml_name("CDW1")));
275 aml_append(ifctx, ifctx1);
276
277 ifctx1 = aml_if(aml_lnot(aml_equal(aml_name("CDW3"), aml_name("CTRL"))));
278 aml_append(ifctx1, aml_store(aml_or(aml_name("CDW1"), aml_int(0x10), NULL),
279 aml_name("CDW1")));
280 aml_append(ifctx, ifctx1);
281
282 aml_append(ifctx, aml_store(aml_name("CTRL"), aml_name("CDW3")));
283 aml_append(ifctx, aml_return(aml_arg(3)));
284 aml_append(method, ifctx);
285
286 elsectx = aml_else();
287 aml_append(elsectx, aml_store(aml_or(aml_name("CDW1"), aml_int(4), NULL),
288 aml_name("CDW1")));
289 aml_append(elsectx, aml_return(aml_arg(3)));
290 aml_append(method, elsectx);
291 aml_append(dev, method);
292
293 method = aml_method("_DSM", 4, AML_NOTSERIALIZED);
294
295 /* PCI Firmware Specification 3.0
296 * 4.6.1. _DSM for PCI Express Slot Information
297 * The UUID in _DSM in this context is
298 * {E5C937D0-3553-4D7A-9117-EA4D19C3434D}
299 */
300 UUID = aml_touuid("E5C937D0-3553-4D7A-9117-EA4D19C3434D");
301 ifctx = aml_if(aml_equal(aml_arg(0), UUID));
302 ifctx1 = aml_if(aml_equal(aml_arg(2), aml_int(0)));
303 uint8_t byte_list[1] = {1};
304 buf = aml_buffer(1, byte_list);
305 aml_append(ifctx1, aml_return(buf));
306 aml_append(ifctx, ifctx1);
307 aml_append(method, ifctx);
308
309 byte_list[0] = 0;
310 buf = aml_buffer(1, byte_list);
311 aml_append(method, aml_return(buf));
312 aml_append(dev, method);
313
314 Aml *dev_rp0 = aml_device("%s", "RP0");
315 aml_append(dev_rp0, aml_name_decl("_ADR", aml_int(0)));
316 aml_append(dev, dev_rp0);
317
318 Aml *dev_res0 = aml_device("%s", "RES0");
319 aml_append(dev_res0, aml_name_decl("_HID", aml_string("PNP0C02")));
320 crs = aml_resource_template();
321 aml_append(crs,
322 aml_qword_memory(AML_POS_DECODE, AML_MIN_FIXED, AML_MAX_FIXED,
323 AML_NON_CACHEABLE, AML_READ_WRITE, 0x0000, base_ecam,
324 base_ecam + size_ecam - 1, 0x0000, size_ecam));
325 aml_append(dev_res0, aml_name_decl("_CRS", crs));
326 aml_append(dev, dev_res0);
327 aml_append(scope, dev);
328}
329
330static void acpi_dsdt_add_gpio(Aml *scope, const MemMapEntry *gpio_memmap,
331 uint32_t gpio_irq)
332{
333 Aml *dev = aml_device("GPO0");
334 aml_append(dev, aml_name_decl("_HID", aml_string("ARMH0061")));
335 aml_append(dev, aml_name_decl("_ADR", aml_int(0)));
336 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
337
338 Aml *crs = aml_resource_template();
339 aml_append(crs, aml_memory32_fixed(gpio_memmap->base, gpio_memmap->size,
340 AML_READ_WRITE));
341 aml_append(crs, aml_interrupt(AML_CONSUMER, AML_LEVEL, AML_ACTIVE_HIGH,
342 AML_EXCLUSIVE, &gpio_irq, 1));
343 aml_append(dev, aml_name_decl("_CRS", crs));
344
345 Aml *aei = aml_resource_template();
346 /* Pin 3 for power button */
347 const uint32_t pin_list[1] = {3};
348 aml_append(aei, aml_gpio_int(AML_CONSUMER, AML_EDGE, AML_ACTIVE_HIGH,
349 AML_EXCLUSIVE, AML_PULL_UP, 0, pin_list, 1,
350 "GPO0", NULL, 0));
351 aml_append(dev, aml_name_decl("_AEI", aei));
352
353 /* _E03 is handle for power button */
354 Aml *method = aml_method("_E03", 0, AML_NOTSERIALIZED);
355 aml_append(method, aml_notify(aml_name(ACPI_POWER_BUTTON_DEVICE),
356 aml_int(0x80)));
357 aml_append(dev, method);
358 aml_append(scope, dev);
359}
360
361static void acpi_dsdt_add_power_button(Aml *scope)
362{
363 Aml *dev = aml_device(ACPI_POWER_BUTTON_DEVICE);
364 aml_append(dev, aml_name_decl("_HID", aml_string("PNP0C0C")));
365 aml_append(dev, aml_name_decl("_ADR", aml_int(0)));
366 aml_append(dev, aml_name_decl("_UID", aml_int(0)));
367 aml_append(scope, dev);
368}
369
370static void
371build_iort(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
372{
373 int nb_nodes, iort_start = table_data->len;
374 AcpiIortIdMapping *idmap;
375 AcpiIortItsGroup *its;
376 AcpiIortTable *iort;
377 AcpiIortSmmu3 *smmu;
378 size_t node_size, iort_node_offset, iort_length, smmu_offset = 0;
379 AcpiIortRC *rc;
380
381 iort = acpi_data_push(table_data, sizeof(*iort));
382
383 if (vms->iommu == VIRT_IOMMU_SMMUV3) {
384 nb_nodes = 3; /* RC, ITS, SMMUv3 */
385 } else {
386 nb_nodes = 2; /* RC, ITS */
387 }
388
389 iort_length = sizeof(*iort);
390 iort->node_count = cpu_to_le32(nb_nodes);
391 /*
392 * Use a copy in case table_data->data moves during acpi_data_push
393 * operations.
394 */
395 iort_node_offset = sizeof(*iort);
396 iort->node_offset = cpu_to_le32(iort_node_offset);
397
398 /* ITS group node */
399 node_size = sizeof(*its) + sizeof(uint32_t);
400 iort_length += node_size;
401 its = acpi_data_push(table_data, node_size);
402
403 its->type = ACPI_IORT_NODE_ITS_GROUP;
404 its->length = cpu_to_le16(node_size);
405 its->its_count = cpu_to_le32(1);
406 its->identifiers[0] = 0; /* MADT translation_id */
407
408 if (vms->iommu == VIRT_IOMMU_SMMUV3) {
409 int irq = vms->irqmap[VIRT_SMMU] + ARM_SPI_BASE;
410
411 /* SMMUv3 node */
412 smmu_offset = iort_node_offset + node_size;
413 node_size = sizeof(*smmu) + sizeof(*idmap);
414 iort_length += node_size;
415 smmu = acpi_data_push(table_data, node_size);
416
417 smmu->type = ACPI_IORT_NODE_SMMU_V3;
418 smmu->length = cpu_to_le16(node_size);
419 smmu->mapping_count = cpu_to_le32(1);
420 smmu->mapping_offset = cpu_to_le32(sizeof(*smmu));
421 smmu->base_address = cpu_to_le64(vms->memmap[VIRT_SMMU].base);
422 smmu->flags = cpu_to_le32(ACPI_IORT_SMMU_V3_COHACC_OVERRIDE);
423 smmu->event_gsiv = cpu_to_le32(irq);
424 smmu->pri_gsiv = cpu_to_le32(irq + 1);
425 smmu->gerr_gsiv = cpu_to_le32(irq + 2);
426 smmu->sync_gsiv = cpu_to_le32(irq + 3);
427
428 /* Identity RID mapping covering the whole input RID range */
429 idmap = &smmu->id_mapping_array[0];
430 idmap->input_base = 0;
431 idmap->id_count = cpu_to_le32(0xFFFF);
432 idmap->output_base = 0;
433 /* output IORT node is the ITS group node (the first node) */
434 idmap->output_reference = cpu_to_le32(iort_node_offset);
435 }
436
437 /* Root Complex Node */
438 node_size = sizeof(*rc) + sizeof(*idmap);
439 iort_length += node_size;
440 rc = acpi_data_push(table_data, node_size);
441
442 rc->type = ACPI_IORT_NODE_PCI_ROOT_COMPLEX;
443 rc->length = cpu_to_le16(node_size);
444 rc->mapping_count = cpu_to_le32(1);
445 rc->mapping_offset = cpu_to_le32(sizeof(*rc));
446
447 /* fully coherent device */
448 rc->memory_properties.cache_coherency = cpu_to_le32(1);
449 rc->memory_properties.memory_flags = 0x3; /* CCA = CPM = DCAS = 1 */
450 rc->pci_segment_number = 0; /* MCFG pci_segment */
451
452 /* Identity RID mapping covering the whole input RID range */
453 idmap = &rc->id_mapping_array[0];
454 idmap->input_base = 0;
455 idmap->id_count = cpu_to_le32(0xFFFF);
456 idmap->output_base = 0;
457
458 if (vms->iommu == VIRT_IOMMU_SMMUV3) {
459 /* output IORT node is the smmuv3 node */
460 idmap->output_reference = cpu_to_le32(smmu_offset);
461 } else {
462 /* output IORT node is the ITS group node (the first node) */
463 idmap->output_reference = cpu_to_le32(iort_node_offset);
464 }
465
466 /*
467 * Update the pointer address in case table_data->data moves during above
468 * acpi_data_push operations.
469 */
470 iort = (AcpiIortTable *)(table_data->data + iort_start);
471 iort->length = cpu_to_le32(iort_length);
472
473 build_header(linker, table_data, (void *)(table_data->data + iort_start),
474 "IORT", table_data->len - iort_start, 0, NULL, NULL);
475}
476
477static void
478build_spcr(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
479{
480 AcpiSerialPortConsoleRedirection *spcr;
481 const MemMapEntry *uart_memmap = &vms->memmap[VIRT_UART];
482 int irq = vms->irqmap[VIRT_UART] + ARM_SPI_BASE;
483 int spcr_start = table_data->len;
484
485 spcr = acpi_data_push(table_data, sizeof(*spcr));
486
487 spcr->interface_type = 0x3; /* ARM PL011 UART */
488
489 spcr->base_address.space_id = AML_SYSTEM_MEMORY;
490 spcr->base_address.bit_width = 8;
491 spcr->base_address.bit_offset = 0;
492 spcr->base_address.access_width = 1;
493 spcr->base_address.address = cpu_to_le64(uart_memmap->base);
494
495 spcr->interrupt_types = (1 << 3); /* Bit[3] ARMH GIC interrupt */
496 spcr->gsi = cpu_to_le32(irq); /* Global System Interrupt */
497
498 spcr->baud = 3; /* Baud Rate: 3 = 9600 */
499 spcr->parity = 0; /* No Parity */
500 spcr->stopbits = 1; /* 1 Stop bit */
501 spcr->flowctrl = (1 << 1); /* Bit[1] = RTS/CTS hardware flow control */
502 spcr->term_type = 0; /* Terminal Type: 0 = VT100 */
503
504 spcr->pci_device_id = 0xffff; /* PCI Device ID: not a PCI device */
505 spcr->pci_vendor_id = 0xffff; /* PCI Vendor ID: not a PCI device */
506
507 build_header(linker, table_data, (void *)(table_data->data + spcr_start),
508 "SPCR", table_data->len - spcr_start, 2, NULL, NULL);
509}
510
511static void
512build_srat(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
513{
514 AcpiSystemResourceAffinityTable *srat;
515 AcpiSratProcessorGiccAffinity *core;
516 AcpiSratMemoryAffinity *numamem;
517 int i, srat_start;
518 uint64_t mem_base;
519 MachineClass *mc = MACHINE_GET_CLASS(vms);
520 MachineState *ms = MACHINE(vms);
521 const CPUArchIdList *cpu_list = mc->possible_cpu_arch_ids(ms);
522
523 srat_start = table_data->len;
524 srat = acpi_data_push(table_data, sizeof(*srat));
525 srat->reserved1 = cpu_to_le32(1);
526
527 for (i = 0; i < cpu_list->len; ++i) {
528 core = acpi_data_push(table_data, sizeof(*core));
529 core->type = ACPI_SRAT_PROCESSOR_GICC;
530 core->length = sizeof(*core);
531 core->proximity = cpu_to_le32(cpu_list->cpus[i].props.node_id);
532 core->acpi_processor_uid = cpu_to_le32(i);
533 core->flags = cpu_to_le32(1);
534 }
535
536 mem_base = vms->memmap[VIRT_MEM].base;
537 for (i = 0; i < ms->numa_state->num_nodes; ++i) {
538 if (ms->numa_state->nodes[i].node_mem > 0) {
539 numamem = acpi_data_push(table_data, sizeof(*numamem));
540 build_srat_memory(numamem, mem_base,
541 ms->numa_state->nodes[i].node_mem, i,
542 MEM_AFFINITY_ENABLED);
543 mem_base += ms->numa_state->nodes[i].node_mem;
544 }
545 }
546
547 build_header(linker, table_data, (void *)(table_data->data + srat_start),
548 "SRAT", table_data->len - srat_start, 3, NULL, NULL);
549}
550
551/* GTDT */
552static void
553build_gtdt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
554{
555 VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
556 int gtdt_start = table_data->len;
557 AcpiGenericTimerTable *gtdt;
558 uint32_t irqflags;
559
560 if (vmc->claim_edge_triggered_timers) {
561 irqflags = ACPI_GTDT_INTERRUPT_MODE_EDGE;
562 } else {
563 irqflags = ACPI_GTDT_INTERRUPT_MODE_LEVEL;
564 }
565
566 gtdt = acpi_data_push(table_data, sizeof *gtdt);
567 /* The interrupt values are the same with the device tree when adding 16 */
568 gtdt->secure_el1_interrupt = cpu_to_le32(ARCH_TIMER_S_EL1_IRQ + 16);
569 gtdt->secure_el1_flags = cpu_to_le32(irqflags);
570
571 gtdt->non_secure_el1_interrupt = cpu_to_le32(ARCH_TIMER_NS_EL1_IRQ + 16);
572 gtdt->non_secure_el1_flags = cpu_to_le32(irqflags |
573 ACPI_GTDT_CAP_ALWAYS_ON);
574
575 gtdt->virtual_timer_interrupt = cpu_to_le32(ARCH_TIMER_VIRT_IRQ + 16);
576 gtdt->virtual_timer_flags = cpu_to_le32(irqflags);
577
578 gtdt->non_secure_el2_interrupt = cpu_to_le32(ARCH_TIMER_NS_EL2_IRQ + 16);
579 gtdt->non_secure_el2_flags = cpu_to_le32(irqflags);
580
581 build_header(linker, table_data,
582 (void *)(table_data->data + gtdt_start), "GTDT",
583 table_data->len - gtdt_start, 2, NULL, NULL);
584}
585
586/* MADT */
587static void
588build_madt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
589{
590 VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
591 int madt_start = table_data->len;
592 const MemMapEntry *memmap = vms->memmap;
593 const int *irqmap = vms->irqmap;
594 AcpiMultipleApicTable *madt;
595 AcpiMadtGenericDistributor *gicd;
596 AcpiMadtGenericMsiFrame *gic_msi;
597 int i;
598
599 madt = acpi_data_push(table_data, sizeof *madt);
600
601 gicd = acpi_data_push(table_data, sizeof *gicd);
602 gicd->type = ACPI_APIC_GENERIC_DISTRIBUTOR;
603 gicd->length = sizeof(*gicd);
604 gicd->base_address = cpu_to_le64(memmap[VIRT_GIC_DIST].base);
605 gicd->version = vms->gic_version;
606
607 for (i = 0; i < vms->smp_cpus; i++) {
608 AcpiMadtGenericCpuInterface *gicc = acpi_data_push(table_data,
609 sizeof(*gicc));
610 ARMCPU *armcpu = ARM_CPU(qemu_get_cpu(i));
611
612 gicc->type = ACPI_APIC_GENERIC_CPU_INTERFACE;
613 gicc->length = sizeof(*gicc);
614 if (vms->gic_version == 2) {
615 gicc->base_address = cpu_to_le64(memmap[VIRT_GIC_CPU].base);
616 gicc->gich_base_address = cpu_to_le64(memmap[VIRT_GIC_HYP].base);
617 gicc->gicv_base_address = cpu_to_le64(memmap[VIRT_GIC_VCPU].base);
618 }
619 gicc->cpu_interface_number = cpu_to_le32(i);
620 gicc->arm_mpidr = cpu_to_le64(armcpu->mp_affinity);
621 gicc->uid = cpu_to_le32(i);
622 gicc->flags = cpu_to_le32(ACPI_MADT_GICC_ENABLED);
623
624 if (arm_feature(&armcpu->env, ARM_FEATURE_PMU)) {
625 gicc->performance_interrupt = cpu_to_le32(PPI(VIRTUAL_PMU_IRQ));
626 }
627 if (vms->virt) {
628 gicc->vgic_interrupt = cpu_to_le32(PPI(ARCH_GIC_MAINT_IRQ));
629 }
630 }
631
632 if (vms->gic_version == 3) {
633 AcpiMadtGenericTranslator *gic_its;
634 int nb_redist_regions = virt_gicv3_redist_region_count(vms);
635 AcpiMadtGenericRedistributor *gicr = acpi_data_push(table_data,
636 sizeof *gicr);
637
638 gicr->type = ACPI_APIC_GENERIC_REDISTRIBUTOR;
639 gicr->length = sizeof(*gicr);
640 gicr->base_address = cpu_to_le64(memmap[VIRT_GIC_REDIST].base);
641 gicr->range_length = cpu_to_le32(memmap[VIRT_GIC_REDIST].size);
642
643 if (nb_redist_regions == 2) {
644 gicr = acpi_data_push(table_data, sizeof(*gicr));
645 gicr->type = ACPI_APIC_GENERIC_REDISTRIBUTOR;
646 gicr->length = sizeof(*gicr);
647 gicr->base_address =
648 cpu_to_le64(memmap[VIRT_HIGH_GIC_REDIST2].base);
649 gicr->range_length =
650 cpu_to_le32(memmap[VIRT_HIGH_GIC_REDIST2].size);
651 }
652
653 if (its_class_name() && !vmc->no_its) {
654 gic_its = acpi_data_push(table_data, sizeof *gic_its);
655 gic_its->type = ACPI_APIC_GENERIC_TRANSLATOR;
656 gic_its->length = sizeof(*gic_its);
657 gic_its->translation_id = 0;
658 gic_its->base_address = cpu_to_le64(memmap[VIRT_GIC_ITS].base);
659 }
660 } else {
661 gic_msi = acpi_data_push(table_data, sizeof *gic_msi);
662 gic_msi->type = ACPI_APIC_GENERIC_MSI_FRAME;
663 gic_msi->length = sizeof(*gic_msi);
664 gic_msi->gic_msi_frame_id = 0;
665 gic_msi->base_address = cpu_to_le64(memmap[VIRT_GIC_V2M].base);
666 gic_msi->flags = cpu_to_le32(1);
667 gic_msi->spi_count = cpu_to_le16(NUM_GICV2M_SPIS);
668 gic_msi->spi_base = cpu_to_le16(irqmap[VIRT_GIC_V2M] + ARM_SPI_BASE);
669 }
670
671 build_header(linker, table_data,
672 (void *)(table_data->data + madt_start), "APIC",
673 table_data->len - madt_start, 3, NULL, NULL);
674}
675
676/* FADT */
677static void build_fadt_rev5(GArray *table_data, BIOSLinker *linker,
678 VirtMachineState *vms, unsigned dsdt_tbl_offset)
679{
680 /* ACPI v5.1 */
681 AcpiFadtData fadt = {
682 .rev = 5,
683 .minor_ver = 1,
684 .flags = 1 << ACPI_FADT_F_HW_REDUCED_ACPI,
685 .xdsdt_tbl_offset = &dsdt_tbl_offset,
686 };
687
688 switch (vms->psci_conduit) {
689 case QEMU_PSCI_CONDUIT_DISABLED:
690 fadt.arm_boot_arch = 0;
691 break;
692 case QEMU_PSCI_CONDUIT_HVC:
693 fadt.arm_boot_arch = ACPI_FADT_ARM_PSCI_COMPLIANT |
694 ACPI_FADT_ARM_PSCI_USE_HVC;
695 break;
696 case QEMU_PSCI_CONDUIT_SMC:
697 fadt.arm_boot_arch = ACPI_FADT_ARM_PSCI_COMPLIANT;
698 break;
699 default:
700 g_assert_not_reached();
701 }
702
703 build_fadt(table_data, linker, &fadt, NULL, NULL);
704}
705
706/* DSDT */
707static void
708build_dsdt(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
709{
710 Aml *scope, *dsdt;
711 const MemMapEntry *memmap = vms->memmap;
712 const int *irqmap = vms->irqmap;
713
714 dsdt = init_aml_allocator();
715 /* Reserve space for header */
716 acpi_data_push(dsdt->buf, sizeof(AcpiTableHeader));
717
718 /* When booting the VM with UEFI, UEFI takes ownership of the RTC hardware.
719 * While UEFI can use libfdt to disable the RTC device node in the DTB that
720 * it passes to the OS, it cannot modify AML. Therefore, we won't generate
721 * the RTC ACPI device at all when using UEFI.
722 */
723 scope = aml_scope("\\_SB");
724 acpi_dsdt_add_cpus(scope, vms->smp_cpus);
725 acpi_dsdt_add_uart(scope, &memmap[VIRT_UART],
726 (irqmap[VIRT_UART] + ARM_SPI_BASE));
727 acpi_dsdt_add_flash(scope, &memmap[VIRT_FLASH]);
728 acpi_dsdt_add_fw_cfg(scope, &memmap[VIRT_FW_CFG]);
729 acpi_dsdt_add_virtio(scope, &memmap[VIRT_MMIO],
730 (irqmap[VIRT_MMIO] + ARM_SPI_BASE), NUM_VIRTIO_TRANSPORTS);
731 acpi_dsdt_add_pci(scope, memmap, (irqmap[VIRT_PCIE] + ARM_SPI_BASE),
732 vms->highmem, vms->highmem_ecam);
733 acpi_dsdt_add_gpio(scope, &memmap[VIRT_GPIO],
734 (irqmap[VIRT_GPIO] + ARM_SPI_BASE));
735 acpi_dsdt_add_power_button(scope);
736
737 aml_append(dsdt, scope);
738
739 /* copy AML table into ACPI tables blob and patch header there */
740 g_array_append_vals(table_data, dsdt->buf->data, dsdt->buf->len);
741 build_header(linker, table_data,
742 (void *)(table_data->data + table_data->len - dsdt->buf->len),
743 "DSDT", dsdt->buf->len, 2, NULL, NULL);
744 free_aml_allocator();
745}
746
747typedef
748struct AcpiBuildState {
749 /* Copy of table in RAM (for patching). */
750 MemoryRegion *table_mr;
751 MemoryRegion *rsdp_mr;
752 MemoryRegion *linker_mr;
753 /* Is table patched? */
754 bool patched;
755} AcpiBuildState;
756
757static
758void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables)
759{
760 VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
761 GArray *table_offsets;
762 unsigned dsdt, xsdt;
763 GArray *tables_blob = tables->table_data;
764 MachineState *ms = MACHINE(vms);
765
766 table_offsets = g_array_new(false, true /* clear */,
767 sizeof(uint32_t));
768
769 bios_linker_loader_alloc(tables->linker,
770 ACPI_BUILD_TABLE_FILE, tables_blob,
771 64, false /* high memory */);
772
773 /* DSDT is pointed to by FADT */
774 dsdt = tables_blob->len;
775 build_dsdt(tables_blob, tables->linker, vms);
776
777 /* FADT MADT GTDT MCFG SPCR pointed to by RSDT */
778 acpi_add_table(table_offsets, tables_blob);
779 build_fadt_rev5(tables_blob, tables->linker, vms, dsdt);
780
781 acpi_add_table(table_offsets, tables_blob);
782 build_madt(tables_blob, tables->linker, vms);
783
784 acpi_add_table(table_offsets, tables_blob);
785 build_gtdt(tables_blob, tables->linker, vms);
786
787 acpi_add_table(table_offsets, tables_blob);
788 {
789 AcpiMcfgInfo mcfg = {
790 .base = vms->memmap[VIRT_ECAM_ID(vms->highmem_ecam)].base,
791 .size = vms->memmap[VIRT_ECAM_ID(vms->highmem_ecam)].size,
792 };
793 build_mcfg(tables_blob, tables->linker, &mcfg);
794 }
795
796 acpi_add_table(table_offsets, tables_blob);
797 build_spcr(tables_blob, tables->linker, vms);
798
799 if (ms->numa_state->num_nodes > 0) {
800 acpi_add_table(table_offsets, tables_blob);
801 build_srat(tables_blob, tables->linker, vms);
802 if (ms->numa_state->have_numa_distance) {
803 acpi_add_table(table_offsets, tables_blob);
804 build_slit(tables_blob, tables->linker, ms);
805 }
806 }
807
808 if (its_class_name() && !vmc->no_its) {
809 acpi_add_table(table_offsets, tables_blob);
810 build_iort(tables_blob, tables->linker, vms);
811 }
812
813 /* XSDT is pointed to by RSDP */
814 xsdt = tables_blob->len;
815 build_xsdt(tables_blob, tables->linker, table_offsets, NULL, NULL);
816
817 /* RSDP is in FSEG memory, so allocate it separately */
818 {
819 AcpiRsdpData rsdp_data = {
820 .revision = 2,
821 .oem_id = ACPI_BUILD_APPNAME6,
822 .xsdt_tbl_offset = &xsdt,
823 .rsdt_tbl_offset = NULL,
824 };
825 build_rsdp(tables->rsdp, tables->linker, &rsdp_data);
826 }
827
828 /* Cleanup memory that's no longer used. */
829 g_array_free(table_offsets, true);
830}
831
832static void acpi_ram_update(MemoryRegion *mr, GArray *data)
833{
834 uint32_t size = acpi_data_len(data);
835
836 /* Make sure RAM size is correct - in case it got changed
837 * e.g. by migration */
838 memory_region_ram_resize(mr, size, &error_abort);
839
840 memcpy(memory_region_get_ram_ptr(mr), data->data, size);
841 memory_region_set_dirty(mr, 0, size);
842}
843
844static void virt_acpi_build_update(void *build_opaque)
845{
846 AcpiBuildState *build_state = build_opaque;
847 AcpiBuildTables tables;
848
849 /* No state to update or already patched? Nothing to do. */
850 if (!build_state || build_state->patched) {
851 return;
852 }
853 build_state->patched = true;
854
855 acpi_build_tables_init(&tables);
856
857 virt_acpi_build(VIRT_MACHINE(qdev_get_machine()), &tables);
858
859 acpi_ram_update(build_state->table_mr, tables.table_data);
860 acpi_ram_update(build_state->rsdp_mr, tables.rsdp);
861 acpi_ram_update(build_state->linker_mr, tables.linker->cmd_blob);
862
863 acpi_build_tables_cleanup(&tables, true);
864}
865
866static void virt_acpi_build_reset(void *build_opaque)
867{
868 AcpiBuildState *build_state = build_opaque;
869 build_state->patched = false;
870}
871
872static const VMStateDescription vmstate_virt_acpi_build = {
873 .name = "virt_acpi_build",
874 .version_id = 1,
875 .minimum_version_id = 1,
876 .fields = (VMStateField[]) {
877 VMSTATE_BOOL(patched, AcpiBuildState),
878 VMSTATE_END_OF_LIST()
879 },
880};
881
882void virt_acpi_setup(VirtMachineState *vms)
883{
884 AcpiBuildTables tables;
885 AcpiBuildState *build_state;
886
887 if (!vms->fw_cfg) {
888 trace_virt_acpi_setup();
889 return;
890 }
891
892 if (!acpi_enabled) {
893 trace_virt_acpi_setup();
894 return;
895 }
896
897 build_state = g_malloc0(sizeof *build_state);
898
899 acpi_build_tables_init(&tables);
900 virt_acpi_build(vms, &tables);
901
902 /* Now expose it all to Guest */
903 build_state->table_mr = acpi_add_rom_blob(virt_acpi_build_update,
904 build_state, tables.table_data,
905 ACPI_BUILD_TABLE_FILE,
906 ACPI_BUILD_TABLE_MAX_SIZE);
907 assert(build_state->table_mr != NULL);
908
909 build_state->linker_mr =
910 acpi_add_rom_blob(virt_acpi_build_update, build_state,
911 tables.linker->cmd_blob, "etc/table-loader", 0);
912
913 fw_cfg_add_file(vms->fw_cfg, ACPI_BUILD_TPMLOG_FILE, tables.tcpalog->data,
914 acpi_data_len(tables.tcpalog));
915
916 build_state->rsdp_mr = acpi_add_rom_blob(virt_acpi_build_update,
917 build_state, tables.rsdp,
918 ACPI_BUILD_RSDP_FILE, 0);
919
920 qemu_register_reset(virt_acpi_build_reset, build_state);
921 virt_acpi_build_reset(build_state);
922 vmstate_register(NULL, 0, &vmstate_virt_acpi_build, build_state);
923
924 /* Cleanup tables but don't free the memory: we track it
925 * in build_state.
926 */
927 acpi_build_tables_cleanup(&tables, false);
928}
929