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