1 /* Support for generating ACPI tables and passing them to Guests
3 * ARM virt ACPI generation
5 * Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net>
6 * Copyright (C) 2006 Fabrice Bellard
7 * Copyright (C) 2013 Red Hat Inc
9 * Author: Michael S. Tsirkin <mst@redhat.com>
11 * Copyright (c) 2015 HUAWEI TECHNOLOGIES CO.,LTD.
13 * Author: Shannon Zhao <zhaoshenglong@huawei.com>
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.
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.
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/>.
29 #include "qemu/osdep.h"
30 #include "qapi/error.h"
31 #include "qemu/bitmap.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"
48 #include "migration/vmstate.h"
50 #define ARM_SPI_BASE 32
51 #define ACPI_POWER_BUTTON_DEVICE "PWRB"
53 static void acpi_dsdt_add_cpus(Aml
*scope
, int smp_cpus
)
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
);
65 static void acpi_dsdt_add_uart(Aml
*scope
, const MemMapEntry
*uart_memmap
,
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)));
72 Aml
*crs
= aml_resource_template();
73 aml_append(crs
, aml_memory32_fixed(uart_memmap
->base
,
74 uart_memmap
->size
, AML_READ_WRITE
));
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
));
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.
83 aml_append(dev
, aml_name_decl("_ADR", aml_int(uart_memmap
->base
)));
85 aml_append(scope
, dev
);
88 static void acpi_dsdt_add_fw_cfg(Aml
*scope
, const MemMapEntry
*fw_cfg_memmap
)
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)));
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
);
103 static void acpi_dsdt_add_flash(Aml
*scope
, const MemMapEntry
*flash_memmap
)
106 hwaddr base
= flash_memmap
->base
;
107 hwaddr size
= flash_memmap
->size
/ 2;
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)));
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
);
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
);
127 static void acpi_dsdt_add_virtio(Aml
*scope
,
128 const MemMapEntry
*virtio_mmio_memmap
,
129 uint32_t mmio_irq
, int num
)
131 hwaddr base
= virtio_mmio_memmap
->base
;
132 hwaddr size
= virtio_mmio_memmap
->size
;
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)));
142 Aml
*crs
= aml_resource_template();
143 aml_append(crs
, aml_memory32_fixed(base
, size
, AML_READ_WRITE
));
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
);
153 static void acpi_dsdt_add_pci(Aml
*scope
, const MemMapEntry
*memmap
,
154 uint32_t irq
, bool use_highmem
, bool highmem_ecam
)
156 int ecam_id
= VIRT_ECAM_ID(highmem_ecam
);
157 Aml
*method
, *crs
, *ifctx
, *UUID
, *ifctx1
, *elsectx
, *buf
;
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
;
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)));
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
);
190 aml_append(dev
, aml_name_decl("_PRT", rt_pkg
));
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();
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();
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
);
213 method
= aml_method("_CBA", 0, AML_NOTSERIALIZED
);
214 aml_append(method
, aml_return(aml_int(base_ecam
)));
215 aml_append(dev
, method
);
217 method
= aml_method("_CRS", 0, AML_NOTSERIALIZED
);
218 Aml
*rbuf
= aml_resource_template();
220 aml_word_bus_number(AML_MIN_FIXED
, AML_MAX_FIXED
, AML_POS_DECODE
,
221 0x0000, 0x0000, nr_pcie_buses
- 1, 0x0000,
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
));
228 aml_dword_io(AML_MIN_FIXED
, AML_MAX_FIXED
, AML_POS_DECODE
,
229 AML_ENTIRE_RANGE
, 0x0000, 0x0000, size_pio
- 1, base_pio
,
233 hwaddr base_mmio_high
= memmap
[VIRT_HIGH_PCIE_MMIO
].base
;
234 hwaddr size_mmio_high
= memmap
[VIRT_HIGH_PCIE_MMIO
].size
;
237 aml_qword_memory(AML_POS_DECODE
, AML_MIN_FIXED
, AML_MAX_FIXED
,
238 AML_NON_CACHEABLE
, AML_READ_WRITE
, 0x0000,
240 base_mmio_high
+ size_mmio_high
- 1, 0x0000,
244 aml_append(method
, aml_name_decl("RBUF", rbuf
));
245 aml_append(method
, aml_return(rbuf
));
246 aml_append(dev
, method
);
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
);
253 aml_create_dword_field(aml_arg(3), aml_int(0), "CDW1"));
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
261 UUID
= aml_touuid("33DB4D5B-1FF7-401C-9657-7441C03DD766");
262 ifctx
= aml_if(aml_equal(aml_arg(0), UUID
));
264 aml_create_dword_field(aml_arg(3), aml_int(4), "CDW2"));
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
),
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
),
275 aml_append(ifctx
, ifctx1
);
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
),
280 aml_append(ifctx
, ifctx1
);
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
);
286 elsectx
= aml_else();
287 aml_append(elsectx
, aml_store(aml_or(aml_name("CDW1"), aml_int(4), NULL
),
289 aml_append(elsectx
, aml_return(aml_arg(3)));
290 aml_append(method
, elsectx
);
291 aml_append(dev
, method
);
293 method
= aml_method("_DSM", 4, AML_NOTSERIALIZED
);
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}
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
);
310 buf
= aml_buffer(1, byte_list
);
311 aml_append(method
, aml_return(buf
));
312 aml_append(dev
, method
);
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
);
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();
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
);
330 static void acpi_dsdt_add_gpio(Aml
*scope
, const MemMapEntry
*gpio_memmap
,
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)));
338 Aml
*crs
= aml_resource_template();
339 aml_append(crs
, aml_memory32_fixed(gpio_memmap
->base
, gpio_memmap
->size
,
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
));
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,
351 aml_append(dev
, aml_name_decl("_AEI", aei
));
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
),
357 aml_append(dev
, method
);
358 aml_append(scope
, dev
);
361 static void acpi_dsdt_add_power_button(Aml
*scope
)
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
);
371 build_iort(GArray
*table_data
, BIOSLinker
*linker
, VirtMachineState
*vms
)
373 int nb_nodes
, iort_start
= table_data
->len
;
374 AcpiIortIdMapping
*idmap
;
375 AcpiIortItsGroup
*its
;
378 size_t node_size
, iort_node_offset
, iort_length
, smmu_offset
= 0;
381 iort
= acpi_data_push(table_data
, sizeof(*iort
));
383 if (vms
->iommu
== VIRT_IOMMU_SMMUV3
) {
384 nb_nodes
= 3; /* RC, ITS, SMMUv3 */
386 nb_nodes
= 2; /* RC, ITS */
389 iort_length
= sizeof(*iort
);
390 iort
->node_count
= cpu_to_le32(nb_nodes
);
392 * Use a copy in case table_data->data moves during acpi_data_push
395 iort_node_offset
= sizeof(*iort
);
396 iort
->node_offset
= cpu_to_le32(iort_node_offset
);
399 node_size
= sizeof(*its
) + sizeof(uint32_t);
400 iort_length
+= node_size
;
401 its
= acpi_data_push(table_data
, node_size
);
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 */
408 if (vms
->iommu
== VIRT_IOMMU_SMMUV3
) {
409 int irq
= vms
->irqmap
[VIRT_SMMU
] + ARM_SPI_BASE
;
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
);
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);
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
);
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
);
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
));
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 */
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;
458 if (vms
->iommu
== VIRT_IOMMU_SMMUV3
) {
459 /* output IORT node is the smmuv3 node */
460 idmap
->output_reference
= cpu_to_le32(smmu_offset
);
462 /* output IORT node is the ITS group node (the first node) */
463 idmap
->output_reference
= cpu_to_le32(iort_node_offset
);
467 * Update the pointer address in case table_data->data moves during above
468 * acpi_data_push operations.
470 iort
= (AcpiIortTable
*)(table_data
->data
+ iort_start
);
471 iort
->length
= cpu_to_le32(iort_length
);
473 build_header(linker
, table_data
, (void *)(table_data
->data
+ iort_start
),
474 "IORT", table_data
->len
- iort_start
, 0, NULL
, NULL
);
478 build_spcr(GArray
*table_data
, BIOSLinker
*linker
, VirtMachineState
*vms
)
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
;
485 spcr
= acpi_data_push(table_data
, sizeof(*spcr
));
487 spcr
->interface_type
= 0x3; /* ARM PL011 UART */
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
);
495 spcr
->interrupt_types
= (1 << 3); /* Bit[3] ARMH GIC interrupt */
496 spcr
->gsi
= cpu_to_le32(irq
); /* Global System Interrupt */
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 */
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 */
507 build_header(linker
, table_data
, (void *)(table_data
->data
+ spcr_start
),
508 "SPCR", table_data
->len
- spcr_start
, 2, NULL
, NULL
);
512 build_srat(GArray
*table_data
, BIOSLinker
*linker
, VirtMachineState
*vms
)
514 AcpiSystemResourceAffinityTable
*srat
;
515 AcpiSratProcessorGiccAffinity
*core
;
516 AcpiSratMemoryAffinity
*numamem
;
519 MachineClass
*mc
= MACHINE_GET_CLASS(vms
);
520 const CPUArchIdList
*cpu_list
= mc
->possible_cpu_arch_ids(MACHINE(vms
));
522 srat_start
= table_data
->len
;
523 srat
= acpi_data_push(table_data
, sizeof(*srat
));
524 srat
->reserved1
= cpu_to_le32(1);
526 for (i
= 0; i
< cpu_list
->len
; ++i
) {
527 core
= acpi_data_push(table_data
, sizeof(*core
));
528 core
->type
= ACPI_SRAT_PROCESSOR_GICC
;
529 core
->length
= sizeof(*core
);
530 core
->proximity
= cpu_to_le32(cpu_list
->cpus
[i
].props
.node_id
);
531 core
->acpi_processor_uid
= cpu_to_le32(i
);
532 core
->flags
= cpu_to_le32(1);
535 mem_base
= vms
->memmap
[VIRT_MEM
].base
;
536 for (i
= 0; i
< nb_numa_nodes
; ++i
) {
537 if (numa_info
[i
].node_mem
> 0) {
538 numamem
= acpi_data_push(table_data
, sizeof(*numamem
));
539 build_srat_memory(numamem
, mem_base
, numa_info
[i
].node_mem
, i
,
540 MEM_AFFINITY_ENABLED
);
541 mem_base
+= numa_info
[i
].node_mem
;
545 build_header(linker
, table_data
, (void *)(table_data
->data
+ srat_start
),
546 "SRAT", table_data
->len
- srat_start
, 3, NULL
, NULL
);
551 build_gtdt(GArray
*table_data
, BIOSLinker
*linker
, VirtMachineState
*vms
)
553 VirtMachineClass
*vmc
= VIRT_MACHINE_GET_CLASS(vms
);
554 int gtdt_start
= table_data
->len
;
555 AcpiGenericTimerTable
*gtdt
;
558 if (vmc
->claim_edge_triggered_timers
) {
559 irqflags
= ACPI_GTDT_INTERRUPT_MODE_EDGE
;
561 irqflags
= ACPI_GTDT_INTERRUPT_MODE_LEVEL
;
564 gtdt
= acpi_data_push(table_data
, sizeof *gtdt
);
565 /* The interrupt values are the same with the device tree when adding 16 */
566 gtdt
->secure_el1_interrupt
= cpu_to_le32(ARCH_TIMER_S_EL1_IRQ
+ 16);
567 gtdt
->secure_el1_flags
= cpu_to_le32(irqflags
);
569 gtdt
->non_secure_el1_interrupt
= cpu_to_le32(ARCH_TIMER_NS_EL1_IRQ
+ 16);
570 gtdt
->non_secure_el1_flags
= cpu_to_le32(irqflags
|
571 ACPI_GTDT_CAP_ALWAYS_ON
);
573 gtdt
->virtual_timer_interrupt
= cpu_to_le32(ARCH_TIMER_VIRT_IRQ
+ 16);
574 gtdt
->virtual_timer_flags
= cpu_to_le32(irqflags
);
576 gtdt
->non_secure_el2_interrupt
= cpu_to_le32(ARCH_TIMER_NS_EL2_IRQ
+ 16);
577 gtdt
->non_secure_el2_flags
= cpu_to_le32(irqflags
);
579 build_header(linker
, table_data
,
580 (void *)(table_data
->data
+ gtdt_start
), "GTDT",
581 table_data
->len
- gtdt_start
, 2, NULL
, NULL
);
586 build_madt(GArray
*table_data
, BIOSLinker
*linker
, VirtMachineState
*vms
)
588 VirtMachineClass
*vmc
= VIRT_MACHINE_GET_CLASS(vms
);
589 int madt_start
= table_data
->len
;
590 const MemMapEntry
*memmap
= vms
->memmap
;
591 const int *irqmap
= vms
->irqmap
;
592 AcpiMultipleApicTable
*madt
;
593 AcpiMadtGenericDistributor
*gicd
;
594 AcpiMadtGenericMsiFrame
*gic_msi
;
597 madt
= acpi_data_push(table_data
, sizeof *madt
);
599 gicd
= acpi_data_push(table_data
, sizeof *gicd
);
600 gicd
->type
= ACPI_APIC_GENERIC_DISTRIBUTOR
;
601 gicd
->length
= sizeof(*gicd
);
602 gicd
->base_address
= cpu_to_le64(memmap
[VIRT_GIC_DIST
].base
);
603 gicd
->version
= vms
->gic_version
;
605 for (i
= 0; i
< vms
->smp_cpus
; i
++) {
606 AcpiMadtGenericCpuInterface
*gicc
= acpi_data_push(table_data
,
608 ARMCPU
*armcpu
= ARM_CPU(qemu_get_cpu(i
));
610 gicc
->type
= ACPI_APIC_GENERIC_CPU_INTERFACE
;
611 gicc
->length
= sizeof(*gicc
);
612 if (vms
->gic_version
== 2) {
613 gicc
->base_address
= cpu_to_le64(memmap
[VIRT_GIC_CPU
].base
);
614 gicc
->gich_base_address
= cpu_to_le64(memmap
[VIRT_GIC_HYP
].base
);
615 gicc
->gicv_base_address
= cpu_to_le64(memmap
[VIRT_GIC_VCPU
].base
);
617 gicc
->cpu_interface_number
= cpu_to_le32(i
);
618 gicc
->arm_mpidr
= cpu_to_le64(armcpu
->mp_affinity
);
619 gicc
->uid
= cpu_to_le32(i
);
620 gicc
->flags
= cpu_to_le32(ACPI_MADT_GICC_ENABLED
);
622 if (arm_feature(&armcpu
->env
, ARM_FEATURE_PMU
)) {
623 gicc
->performance_interrupt
= cpu_to_le32(PPI(VIRTUAL_PMU_IRQ
));
626 gicc
->vgic_interrupt
= cpu_to_le32(PPI(ARCH_GIC_MAINT_IRQ
));
630 if (vms
->gic_version
== 3) {
631 AcpiMadtGenericTranslator
*gic_its
;
632 int nb_redist_regions
= virt_gicv3_redist_region_count(vms
);
633 AcpiMadtGenericRedistributor
*gicr
= acpi_data_push(table_data
,
636 gicr
->type
= ACPI_APIC_GENERIC_REDISTRIBUTOR
;
637 gicr
->length
= sizeof(*gicr
);
638 gicr
->base_address
= cpu_to_le64(memmap
[VIRT_GIC_REDIST
].base
);
639 gicr
->range_length
= cpu_to_le32(memmap
[VIRT_GIC_REDIST
].size
);
641 if (nb_redist_regions
== 2) {
642 gicr
= acpi_data_push(table_data
, sizeof(*gicr
));
643 gicr
->type
= ACPI_APIC_GENERIC_REDISTRIBUTOR
;
644 gicr
->length
= sizeof(*gicr
);
646 cpu_to_le64(memmap
[VIRT_HIGH_GIC_REDIST2
].base
);
648 cpu_to_le32(memmap
[VIRT_HIGH_GIC_REDIST2
].size
);
651 if (its_class_name() && !vmc
->no_its
) {
652 gic_its
= acpi_data_push(table_data
, sizeof *gic_its
);
653 gic_its
->type
= ACPI_APIC_GENERIC_TRANSLATOR
;
654 gic_its
->length
= sizeof(*gic_its
);
655 gic_its
->translation_id
= 0;
656 gic_its
->base_address
= cpu_to_le64(memmap
[VIRT_GIC_ITS
].base
);
659 gic_msi
= acpi_data_push(table_data
, sizeof *gic_msi
);
660 gic_msi
->type
= ACPI_APIC_GENERIC_MSI_FRAME
;
661 gic_msi
->length
= sizeof(*gic_msi
);
662 gic_msi
->gic_msi_frame_id
= 0;
663 gic_msi
->base_address
= cpu_to_le64(memmap
[VIRT_GIC_V2M
].base
);
664 gic_msi
->flags
= cpu_to_le32(1);
665 gic_msi
->spi_count
= cpu_to_le16(NUM_GICV2M_SPIS
);
666 gic_msi
->spi_base
= cpu_to_le16(irqmap
[VIRT_GIC_V2M
] + ARM_SPI_BASE
);
669 build_header(linker
, table_data
,
670 (void *)(table_data
->data
+ madt_start
), "APIC",
671 table_data
->len
- madt_start
, 3, NULL
, NULL
);
675 static void build_fadt_rev5(GArray
*table_data
, BIOSLinker
*linker
,
676 VirtMachineState
*vms
, unsigned dsdt_tbl_offset
)
679 AcpiFadtData fadt
= {
682 .flags
= 1 << ACPI_FADT_F_HW_REDUCED_ACPI
,
683 .xdsdt_tbl_offset
= &dsdt_tbl_offset
,
686 switch (vms
->psci_conduit
) {
687 case QEMU_PSCI_CONDUIT_DISABLED
:
688 fadt
.arm_boot_arch
= 0;
690 case QEMU_PSCI_CONDUIT_HVC
:
691 fadt
.arm_boot_arch
= ACPI_FADT_ARM_PSCI_COMPLIANT
|
692 ACPI_FADT_ARM_PSCI_USE_HVC
;
694 case QEMU_PSCI_CONDUIT_SMC
:
695 fadt
.arm_boot_arch
= ACPI_FADT_ARM_PSCI_COMPLIANT
;
698 g_assert_not_reached();
701 build_fadt(table_data
, linker
, &fadt
, NULL
, NULL
);
706 build_dsdt(GArray
*table_data
, BIOSLinker
*linker
, VirtMachineState
*vms
)
709 const MemMapEntry
*memmap
= vms
->memmap
;
710 const int *irqmap
= vms
->irqmap
;
712 dsdt
= init_aml_allocator();
713 /* Reserve space for header */
714 acpi_data_push(dsdt
->buf
, sizeof(AcpiTableHeader
));
716 /* When booting the VM with UEFI, UEFI takes ownership of the RTC hardware.
717 * While UEFI can use libfdt to disable the RTC device node in the DTB that
718 * it passes to the OS, it cannot modify AML. Therefore, we won't generate
719 * the RTC ACPI device at all when using UEFI.
721 scope
= aml_scope("\\_SB");
722 acpi_dsdt_add_cpus(scope
, vms
->smp_cpus
);
723 acpi_dsdt_add_uart(scope
, &memmap
[VIRT_UART
],
724 (irqmap
[VIRT_UART
] + ARM_SPI_BASE
));
725 acpi_dsdt_add_flash(scope
, &memmap
[VIRT_FLASH
]);
726 acpi_dsdt_add_fw_cfg(scope
, &memmap
[VIRT_FW_CFG
]);
727 acpi_dsdt_add_virtio(scope
, &memmap
[VIRT_MMIO
],
728 (irqmap
[VIRT_MMIO
] + ARM_SPI_BASE
), NUM_VIRTIO_TRANSPORTS
);
729 acpi_dsdt_add_pci(scope
, memmap
, (irqmap
[VIRT_PCIE
] + ARM_SPI_BASE
),
730 vms
->highmem
, vms
->highmem_ecam
);
731 acpi_dsdt_add_gpio(scope
, &memmap
[VIRT_GPIO
],
732 (irqmap
[VIRT_GPIO
] + ARM_SPI_BASE
));
733 acpi_dsdt_add_power_button(scope
);
735 aml_append(dsdt
, scope
);
737 /* copy AML table into ACPI tables blob and patch header there */
738 g_array_append_vals(table_data
, dsdt
->buf
->data
, dsdt
->buf
->len
);
739 build_header(linker
, table_data
,
740 (void *)(table_data
->data
+ table_data
->len
- dsdt
->buf
->len
),
741 "DSDT", dsdt
->buf
->len
, 2, NULL
, NULL
);
742 free_aml_allocator();
746 struct AcpiBuildState
{
747 /* Copy of table in RAM (for patching). */
748 MemoryRegion
*table_mr
;
749 MemoryRegion
*rsdp_mr
;
750 MemoryRegion
*linker_mr
;
751 /* Is table patched? */
756 void virt_acpi_build(VirtMachineState
*vms
, AcpiBuildTables
*tables
)
758 VirtMachineClass
*vmc
= VIRT_MACHINE_GET_CLASS(vms
);
759 GArray
*table_offsets
;
761 GArray
*tables_blob
= tables
->table_data
;
763 table_offsets
= g_array_new(false, true /* clear */,
766 bios_linker_loader_alloc(tables
->linker
,
767 ACPI_BUILD_TABLE_FILE
, tables_blob
,
768 64, false /* high memory */);
770 /* DSDT is pointed to by FADT */
771 dsdt
= tables_blob
->len
;
772 build_dsdt(tables_blob
, tables
->linker
, vms
);
774 /* FADT MADT GTDT MCFG SPCR pointed to by RSDT */
775 acpi_add_table(table_offsets
, tables_blob
);
776 build_fadt_rev5(tables_blob
, tables
->linker
, vms
, dsdt
);
778 acpi_add_table(table_offsets
, tables_blob
);
779 build_madt(tables_blob
, tables
->linker
, vms
);
781 acpi_add_table(table_offsets
, tables_blob
);
782 build_gtdt(tables_blob
, tables
->linker
, vms
);
784 acpi_add_table(table_offsets
, tables_blob
);
786 AcpiMcfgInfo mcfg
= {
787 .base
= vms
->memmap
[VIRT_ECAM_ID(vms
->highmem_ecam
)].base
,
788 .size
= vms
->memmap
[VIRT_ECAM_ID(vms
->highmem_ecam
)].size
,
790 build_mcfg(tables_blob
, tables
->linker
, &mcfg
);
793 acpi_add_table(table_offsets
, tables_blob
);
794 build_spcr(tables_blob
, tables
->linker
, vms
);
796 if (nb_numa_nodes
> 0) {
797 acpi_add_table(table_offsets
, tables_blob
);
798 build_srat(tables_blob
, tables
->linker
, vms
);
799 if (have_numa_distance
) {
800 acpi_add_table(table_offsets
, tables_blob
);
801 build_slit(tables_blob
, tables
->linker
);
805 if (its_class_name() && !vmc
->no_its
) {
806 acpi_add_table(table_offsets
, tables_blob
);
807 build_iort(tables_blob
, tables
->linker
, vms
);
810 /* XSDT is pointed to by RSDP */
811 xsdt
= tables_blob
->len
;
812 build_xsdt(tables_blob
, tables
->linker
, table_offsets
, NULL
, NULL
);
814 /* RSDP is in FSEG memory, so allocate it separately */
816 AcpiRsdpData rsdp_data
= {
818 .oem_id
= ACPI_BUILD_APPNAME6
,
819 .xsdt_tbl_offset
= &xsdt
,
820 .rsdt_tbl_offset
= NULL
,
822 build_rsdp(tables
->rsdp
, tables
->linker
, &rsdp_data
);
825 /* Cleanup memory that's no longer used. */
826 g_array_free(table_offsets
, true);
829 static void acpi_ram_update(MemoryRegion
*mr
, GArray
*data
)
831 uint32_t size
= acpi_data_len(data
);
833 /* Make sure RAM size is correct - in case it got changed
834 * e.g. by migration */
835 memory_region_ram_resize(mr
, size
, &error_abort
);
837 memcpy(memory_region_get_ram_ptr(mr
), data
->data
, size
);
838 memory_region_set_dirty(mr
, 0, size
);
841 static void virt_acpi_build_update(void *build_opaque
)
843 AcpiBuildState
*build_state
= build_opaque
;
844 AcpiBuildTables tables
;
846 /* No state to update or already patched? Nothing to do. */
847 if (!build_state
|| build_state
->patched
) {
850 build_state
->patched
= true;
852 acpi_build_tables_init(&tables
);
854 virt_acpi_build(VIRT_MACHINE(qdev_get_machine()), &tables
);
856 acpi_ram_update(build_state
->table_mr
, tables
.table_data
);
857 acpi_ram_update(build_state
->rsdp_mr
, tables
.rsdp
);
858 acpi_ram_update(build_state
->linker_mr
, tables
.linker
->cmd_blob
);
860 acpi_build_tables_cleanup(&tables
, true);
863 static void virt_acpi_build_reset(void *build_opaque
)
865 AcpiBuildState
*build_state
= build_opaque
;
866 build_state
->patched
= false;
869 static const VMStateDescription vmstate_virt_acpi_build
= {
870 .name
= "virt_acpi_build",
872 .minimum_version_id
= 1,
873 .fields
= (VMStateField
[]) {
874 VMSTATE_BOOL(patched
, AcpiBuildState
),
875 VMSTATE_END_OF_LIST()
879 void virt_acpi_setup(VirtMachineState
*vms
)
881 AcpiBuildTables tables
;
882 AcpiBuildState
*build_state
;
885 trace_virt_acpi_setup();
890 trace_virt_acpi_setup();
894 build_state
= g_malloc0(sizeof *build_state
);
896 acpi_build_tables_init(&tables
);
897 virt_acpi_build(vms
, &tables
);
899 /* Now expose it all to Guest */
900 build_state
->table_mr
= acpi_add_rom_blob(virt_acpi_build_update
,
901 build_state
, tables
.table_data
,
902 ACPI_BUILD_TABLE_FILE
,
903 ACPI_BUILD_TABLE_MAX_SIZE
);
904 assert(build_state
->table_mr
!= NULL
);
906 build_state
->linker_mr
=
907 acpi_add_rom_blob(virt_acpi_build_update
, build_state
,
908 tables
.linker
->cmd_blob
, "etc/table-loader", 0);
910 fw_cfg_add_file(vms
->fw_cfg
, ACPI_BUILD_TPMLOG_FILE
, tables
.tcpalog
->data
,
911 acpi_data_len(tables
.tcpalog
));
913 build_state
->rsdp_mr
= acpi_add_rom_blob(virt_acpi_build_update
,
914 build_state
, tables
.rsdp
,
915 ACPI_BUILD_RSDP_FILE
, 0);
917 qemu_register_reset(virt_acpi_build_reset
, build_state
);
918 virt_acpi_build_reset(build_state
);
919 vmstate_register(NULL
, 0, &vmstate_virt_acpi_build
, build_state
);
921 /* Cleanup tables but don't free the memory: we track it
924 acpi_build_tables_cleanup(&tables
, false);