qemu/hw/arm/virt-acpi-build.c
<<
>>
Prefs
   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 "hw/arm/virt-acpi-build.h"
  33#include "qemu/bitmap.h"
  34#include "trace.h"
  35#include "qom/cpu.h"
  36#include "target-arm/cpu.h"
  37#include "hw/acpi/acpi-defs.h"
  38#include "hw/acpi/acpi.h"
  39#include "hw/nvram/fw_cfg.h"
  40#include "hw/acpi/bios-linker-loader.h"
  41#include "hw/loader.h"
  42#include "hw/hw.h"
  43#include "hw/acpi/aml-build.h"
  44#include "hw/pci/pcie_host.h"
  45#include "hw/pci/pci.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
  52static 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
  64static 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
  87static 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
 101static 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
 125static 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
 150static 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
 316static 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
 347static 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 */
 357static GArray *
 358build_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
 386static void
 387build_iort(GArray *table_data, BIOSLinker *linker, VirtGuestInfo *guest_info)
 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
 441static void
 442build_spcr(GArray *table_data, BIOSLinker *linker, VirtGuestInfo *guest_info)
 443{
 444    AcpiSerialPortConsoleRedirection *spcr;
 445    const MemMapEntry *uart_memmap = &guest_info->memmap[VIRT_UART];
 446    int irq = guest_info->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
 474static void
 475build_srat(GArray *table_data, BIOSLinker *linker, VirtGuestInfo *guest_info)
 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(guest_info->smp_cpus * sizeof(uint32_t));
 483
 484    for (i = 0; i < guest_info->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 < guest_info->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 = guest_info->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
 517static void
 518build_mcfg(GArray *table_data, BIOSLinker *linker, VirtGuestInfo *guest_info)
 519{
 520    AcpiTableMcfg *mcfg;
 521    const MemMapEntry *memmap = guest_info->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 */
 537static void
 538build_gtdt(GArray *table_data, BIOSLinker *linker)
 539{
 540    int gtdt_start = table_data->len;
 541    AcpiGenericTimerTable *gtdt;
 542
 543    gtdt = acpi_data_push(table_data, sizeof *gtdt);
 544    /* The interrupt values are the same with the device tree when adding 16 */
 545    gtdt->secure_el1_interrupt = ARCH_TIMER_S_EL1_IRQ + 16;
 546    gtdt->secure_el1_flags = ACPI_EDGE_SENSITIVE;
 547
 548    gtdt->non_secure_el1_interrupt = ARCH_TIMER_NS_EL1_IRQ + 16;
 549    gtdt->non_secure_el1_flags = ACPI_EDGE_SENSITIVE | ACPI_GTDT_ALWAYS_ON;
 550
 551    gtdt->virtual_timer_interrupt = ARCH_TIMER_VIRT_IRQ + 16;
 552    gtdt->virtual_timer_flags = ACPI_EDGE_SENSITIVE;
 553
 554    gtdt->non_secure_el2_interrupt = ARCH_TIMER_NS_EL2_IRQ + 16;
 555    gtdt->non_secure_el2_flags = ACPI_EDGE_SENSITIVE;
 556
 557    build_header(linker, table_data,
 558                 (void *)(table_data->data + gtdt_start), "GTDT",
 559                 table_data->len - gtdt_start, 2, NULL, NULL);
 560}
 561
 562/* MADT */
 563static void
 564build_madt(GArray *table_data, BIOSLinker *linker, VirtGuestInfo *guest_info)
 565{
 566    int madt_start = table_data->len;
 567    const MemMapEntry *memmap = guest_info->memmap;
 568    const int *irqmap = guest_info->irqmap;
 569    AcpiMultipleApicTable *madt;
 570    AcpiMadtGenericDistributor *gicd;
 571    AcpiMadtGenericMsiFrame *gic_msi;
 572    int i;
 573
 574    madt = acpi_data_push(table_data, sizeof *madt);
 575
 576    gicd = acpi_data_push(table_data, sizeof *gicd);
 577    gicd->type = ACPI_APIC_GENERIC_DISTRIBUTOR;
 578    gicd->length = sizeof(*gicd);
 579    gicd->base_address = memmap[VIRT_GIC_DIST].base;
 580    gicd->version = guest_info->gic_version;
 581
 582    for (i = 0; i < guest_info->smp_cpus; i++) {
 583        AcpiMadtGenericInterrupt *gicc = acpi_data_push(table_data,
 584                                                     sizeof *gicc);
 585        ARMCPU *armcpu = ARM_CPU(qemu_get_cpu(i));
 586
 587        gicc->type = ACPI_APIC_GENERIC_INTERRUPT;
 588        gicc->length = sizeof(*gicc);
 589        if (guest_info->gic_version == 2) {
 590            gicc->base_address = memmap[VIRT_GIC_CPU].base;
 591        }
 592        gicc->cpu_interface_number = i;
 593        gicc->arm_mpidr = armcpu->mp_affinity;
 594        gicc->uid = i;
 595        gicc->flags = cpu_to_le32(ACPI_GICC_ENABLED);
 596
 597        if (arm_feature(&armcpu->env, ARM_FEATURE_PMU)) {
 598            gicc->performance_interrupt = cpu_to_le32(PPI(VIRTUAL_PMU_IRQ));
 599        }
 600    }
 601
 602    if (guest_info->gic_version == 3) {
 603        AcpiMadtGenericTranslator *gic_its;
 604        AcpiMadtGenericRedistributor *gicr = acpi_data_push(table_data,
 605                                                         sizeof *gicr);
 606
 607        gicr->type = ACPI_APIC_GENERIC_REDISTRIBUTOR;
 608        gicr->length = sizeof(*gicr);
 609        gicr->base_address = cpu_to_le64(memmap[VIRT_GIC_REDIST].base);
 610        gicr->range_length = cpu_to_le32(memmap[VIRT_GIC_REDIST].size);
 611
 612        if (its_class_name() && !guest_info->no_its) {
 613            gic_its = acpi_data_push(table_data, sizeof *gic_its);
 614            gic_its->type = ACPI_APIC_GENERIC_TRANSLATOR;
 615            gic_its->length = sizeof(*gic_its);
 616            gic_its->translation_id = 0;
 617            gic_its->base_address = cpu_to_le64(memmap[VIRT_GIC_ITS].base);
 618        }
 619    } else {
 620        gic_msi = acpi_data_push(table_data, sizeof *gic_msi);
 621        gic_msi->type = ACPI_APIC_GENERIC_MSI_FRAME;
 622        gic_msi->length = sizeof(*gic_msi);
 623        gic_msi->gic_msi_frame_id = 0;
 624        gic_msi->base_address = cpu_to_le64(memmap[VIRT_GIC_V2M].base);
 625        gic_msi->flags = cpu_to_le32(1);
 626        gic_msi->spi_count = cpu_to_le16(NUM_GICV2M_SPIS);
 627        gic_msi->spi_base = cpu_to_le16(irqmap[VIRT_GIC_V2M] + ARM_SPI_BASE);
 628    }
 629
 630    build_header(linker, table_data,
 631                 (void *)(table_data->data + madt_start), "APIC",
 632                 table_data->len - madt_start, 3, NULL, NULL);
 633}
 634
 635/* FADT */
 636static void
 637build_fadt(GArray *table_data, BIOSLinker *linker, unsigned dsdt_tbl_offset)
 638{
 639    AcpiFadtDescriptorRev5_1 *fadt = acpi_data_push(table_data, sizeof(*fadt));
 640    unsigned dsdt_entry_offset = (char *)&fadt->dsdt - table_data->data;
 641
 642    /* Hardware Reduced = 1 and use PSCI 0.2+ and with HVC */
 643    fadt->flags = cpu_to_le32(1 << ACPI_FADT_F_HW_REDUCED_ACPI);
 644    fadt->arm_boot_flags = cpu_to_le16((1 << ACPI_FADT_ARM_USE_PSCI_G_0_2) |
 645                                       (1 << ACPI_FADT_ARM_PSCI_USE_HVC));
 646
 647    /* ACPI v5.1 (fadt->revision.fadt->minor_revision) */
 648    fadt->minor_revision = 0x1;
 649
 650    /* DSDT address to be filled by Guest linker */
 651    bios_linker_loader_add_pointer(linker,
 652        ACPI_BUILD_TABLE_FILE, dsdt_entry_offset, sizeof(fadt->dsdt),
 653        ACPI_BUILD_TABLE_FILE, dsdt_tbl_offset);
 654
 655    build_header(linker, table_data,
 656                 (void *)fadt, "FACP", sizeof(*fadt), 5, NULL, NULL);
 657}
 658
 659/* DSDT */
 660static void
 661build_dsdt(GArray *table_data, BIOSLinker *linker, VirtGuestInfo *guest_info)
 662{
 663    Aml *scope, *dsdt;
 664    const MemMapEntry *memmap = guest_info->memmap;
 665    const int *irqmap = guest_info->irqmap;
 666
 667    dsdt = init_aml_allocator();
 668    /* Reserve space for header */
 669    acpi_data_push(dsdt->buf, sizeof(AcpiTableHeader));
 670
 671    /* When booting the VM with UEFI, UEFI takes ownership of the RTC hardware.
 672     * While UEFI can use libfdt to disable the RTC device node in the DTB that
 673     * it passes to the OS, it cannot modify AML. Therefore, we won't generate
 674     * the RTC ACPI device at all when using UEFI.
 675     */
 676    scope = aml_scope("\\_SB");
 677    acpi_dsdt_add_cpus(scope, guest_info->smp_cpus);
 678    acpi_dsdt_add_uart(scope, &memmap[VIRT_UART],
 679                       (irqmap[VIRT_UART] + ARM_SPI_BASE));
 680    acpi_dsdt_add_flash(scope, &memmap[VIRT_FLASH]);
 681    acpi_dsdt_add_fw_cfg(scope, &memmap[VIRT_FW_CFG]);
 682    acpi_dsdt_add_virtio(scope, &memmap[VIRT_MMIO],
 683                    (irqmap[VIRT_MMIO] + ARM_SPI_BASE), NUM_VIRTIO_TRANSPORTS);
 684    acpi_dsdt_add_pci(scope, memmap, (irqmap[VIRT_PCIE] + ARM_SPI_BASE),
 685                      guest_info->use_highmem);
 686    acpi_dsdt_add_gpio(scope, &memmap[VIRT_GPIO],
 687                       (irqmap[VIRT_GPIO] + ARM_SPI_BASE));
 688    acpi_dsdt_add_power_button(scope);
 689
 690    aml_append(dsdt, scope);
 691
 692    /* copy AML table into ACPI tables blob and patch header there */
 693    g_array_append_vals(table_data, dsdt->buf->data, dsdt->buf->len);
 694    build_header(linker, table_data,
 695        (void *)(table_data->data + table_data->len - dsdt->buf->len),
 696        "DSDT", dsdt->buf->len, 2, NULL, NULL);
 697    free_aml_allocator();
 698}
 699
 700typedef
 701struct AcpiBuildState {
 702    /* Copy of table in RAM (for patching). */
 703    MemoryRegion *table_mr;
 704    MemoryRegion *rsdp_mr;
 705    MemoryRegion *linker_mr;
 706    /* Is table patched? */
 707    bool patched;
 708    VirtGuestInfo *guest_info;
 709} AcpiBuildState;
 710
 711static
 712void virt_acpi_build(VirtGuestInfo *guest_info, AcpiBuildTables *tables)
 713{
 714    GArray *table_offsets;
 715    unsigned dsdt, rsdt;
 716    GArray *tables_blob = tables->table_data;
 717
 718    table_offsets = g_array_new(false, true /* clear */,
 719                                        sizeof(uint32_t));
 720
 721    bios_linker_loader_alloc(tables->linker,
 722                             ACPI_BUILD_TABLE_FILE, tables_blob,
 723                             64, false /* high memory */);
 724
 725    /* DSDT is pointed to by FADT */
 726    dsdt = tables_blob->len;
 727    build_dsdt(tables_blob, tables->linker, guest_info);
 728
 729    /* FADT MADT GTDT MCFG SPCR pointed to by RSDT */
 730    acpi_add_table(table_offsets, tables_blob);
 731    build_fadt(tables_blob, tables->linker, dsdt);
 732
 733    acpi_add_table(table_offsets, tables_blob);
 734    build_madt(tables_blob, tables->linker, guest_info);
 735
 736    acpi_add_table(table_offsets, tables_blob);
 737    build_gtdt(tables_blob, tables->linker);
 738
 739    acpi_add_table(table_offsets, tables_blob);
 740    build_mcfg(tables_blob, tables->linker, guest_info);
 741
 742    acpi_add_table(table_offsets, tables_blob);
 743    build_spcr(tables_blob, tables->linker, guest_info);
 744
 745    if (nb_numa_nodes > 0) {
 746        acpi_add_table(table_offsets, tables_blob);
 747        build_srat(tables_blob, tables->linker, guest_info);
 748    }
 749
 750    if (its_class_name() && !guest_info->no_its) {
 751        acpi_add_table(table_offsets, tables_blob);
 752        build_iort(tables_blob, tables->linker, guest_info);
 753    }
 754
 755    /* RSDT is pointed to by RSDP */
 756    rsdt = tables_blob->len;
 757    build_rsdt(tables_blob, tables->linker, table_offsets, NULL, NULL);
 758
 759    /* RSDP is in FSEG memory, so allocate it separately */
 760    build_rsdp(tables->rsdp, tables->linker, rsdt);
 761
 762    /* Cleanup memory that's no longer used. */
 763    g_array_free(table_offsets, true);
 764}
 765
 766static void acpi_ram_update(MemoryRegion *mr, GArray *data)
 767{
 768    uint32_t size = acpi_data_len(data);
 769
 770    /* Make sure RAM size is correct - in case it got changed
 771     * e.g. by migration */
 772    memory_region_ram_resize(mr, size, &error_abort);
 773
 774    memcpy(memory_region_get_ram_ptr(mr), data->data, size);
 775    memory_region_set_dirty(mr, 0, size);
 776}
 777
 778static void virt_acpi_build_update(void *build_opaque)
 779{
 780    AcpiBuildState *build_state = build_opaque;
 781    AcpiBuildTables tables;
 782
 783    /* No state to update or already patched? Nothing to do. */
 784    if (!build_state || build_state->patched) {
 785        return;
 786    }
 787    build_state->patched = true;
 788
 789    acpi_build_tables_init(&tables);
 790
 791    virt_acpi_build(build_state->guest_info, &tables);
 792
 793    acpi_ram_update(build_state->table_mr, tables.table_data);
 794    acpi_ram_update(build_state->rsdp_mr, tables.rsdp);
 795    acpi_ram_update(build_state->linker_mr, tables.linker->cmd_blob);
 796
 797
 798    acpi_build_tables_cleanup(&tables, true);
 799}
 800
 801static void virt_acpi_build_reset(void *build_opaque)
 802{
 803    AcpiBuildState *build_state = build_opaque;
 804    build_state->patched = false;
 805}
 806
 807static MemoryRegion *acpi_add_rom_blob(AcpiBuildState *build_state,
 808                                       GArray *blob, const char *name,
 809                                       uint64_t max_size)
 810{
 811    return rom_add_blob(name, blob->data, acpi_data_len(blob), max_size, -1,
 812                        name, virt_acpi_build_update, build_state, NULL);
 813}
 814
 815static const VMStateDescription vmstate_virt_acpi_build = {
 816    .name = "virt_acpi_build",
 817    .version_id = 1,
 818    .minimum_version_id = 1,
 819    .fields = (VMStateField[]) {
 820        VMSTATE_BOOL(patched, AcpiBuildState),
 821        VMSTATE_END_OF_LIST()
 822    },
 823};
 824
 825void virt_acpi_setup(VirtGuestInfo *guest_info)
 826{
 827    AcpiBuildTables tables;
 828    AcpiBuildState *build_state;
 829
 830    if (!guest_info->fw_cfg) {
 831        trace_virt_acpi_setup();
 832        return;
 833    }
 834
 835    if (!acpi_enabled) {
 836        trace_virt_acpi_setup();
 837        return;
 838    }
 839
 840    build_state = g_malloc0(sizeof *build_state);
 841    build_state->guest_info = guest_info;
 842
 843    acpi_build_tables_init(&tables);
 844    virt_acpi_build(build_state->guest_info, &tables);
 845
 846    /* Now expose it all to Guest */
 847    build_state->table_mr = acpi_add_rom_blob(build_state, tables.table_data,
 848                                               ACPI_BUILD_TABLE_FILE,
 849                                               ACPI_BUILD_TABLE_MAX_SIZE);
 850    assert(build_state->table_mr != NULL);
 851
 852    build_state->linker_mr =
 853        acpi_add_rom_blob(build_state, tables.linker->cmd_blob,
 854                          "etc/table-loader", 0);
 855
 856    fw_cfg_add_file(guest_info->fw_cfg, ACPI_BUILD_TPMLOG_FILE,
 857                    tables.tcpalog->data, acpi_data_len(tables.tcpalog));
 858
 859    build_state->rsdp_mr = acpi_add_rom_blob(build_state, tables.rsdp,
 860                                              ACPI_BUILD_RSDP_FILE, 0);
 861
 862    qemu_register_reset(virt_acpi_build_reset, build_state);
 863    virt_acpi_build_reset(build_state);
 864    vmstate_register(NULL, 0, &vmstate_virt_acpi_build, build_state);
 865
 866    /* Cleanup tables but don't free the memory: we track it
 867     * in build_state.
 868     */
 869    acpi_build_tables_cleanup(&tables, false);
 870}
 871