1 /* Support for generating ACPI tables and passing them to Guests
3 * Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net>
4 * Copyright (C) 2006 Fabrice Bellard
5 * Copyright (C) 2013 Red Hat Inc
7 * Author: Michael S. Tsirkin <mst@redhat.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "qemu/osdep.h"
24 #include "qapi/error.h"
25 #include "acpi-build.h"
26 #include "qemu-common.h"
27 #include "qemu/bitmap.h"
28 #include "qemu/error-report.h"
29 #include "hw/pci/pci.h"
31 #include "hw/i386/pc.h"
32 #include "target/i386/cpu.h"
33 #include "hw/timer/hpet.h"
34 #include "hw/acpi/acpi-defs.h"
35 #include "hw/acpi/acpi.h"
36 #include "hw/acpi/cpu.h"
37 #include "hw/nvram/fw_cfg.h"
38 #include "hw/acpi/bios-linker-loader.h"
39 #include "hw/loader.h"
40 #include "hw/isa/isa.h"
41 #include "hw/block/fdc.h"
42 #include "hw/acpi/memory_hotplug.h"
43 #include "sysemu/tpm.h"
44 #include "hw/acpi/tpm.h"
45 #include "hw/acpi/vmgenid.h"
46 #include "sysemu/tpm_backend.h"
47 #include "hw/timer/mc146818rtc_regs.h"
48 #include "sysemu/numa.h"
50 /* Supported chipsets: */
51 #include "hw/acpi/piix4.h"
52 #include "hw/acpi/pcihp.h"
53 #include "hw/i386/ich9.h"
54 #include "hw/pci/pci_bus.h"
55 #include "hw/pci-host/q35.h"
56 #include "hw/i386/x86-iommu.h"
58 #include "hw/acpi/aml-build.h"
60 #include "qom/qom-qobject.h"
61 #include "hw/i386/amd_iommu.h"
62 #include "hw/i386/intel_iommu.h"
64 #include "hw/acpi/ipmi.h"
66 /* These are used to size the ACPI tables for -M pc-i440fx-1.7 and
67 * -M pc-i440fx-2.0. Even if the actual amount of AML generated grows
68 * a little bit, there should be plenty of free space since the DSDT
69 * shrunk by ~1.5k between QEMU 2.0 and QEMU 2.1.
71 #define ACPI_BUILD_LEGACY_CPU_AML_SIZE 97
72 #define ACPI_BUILD_ALIGN_SIZE 0x1000
74 #define ACPI_BUILD_TABLE_SIZE 0x20000
76 /* #define DEBUG_ACPI_BUILD */
77 #ifdef DEBUG_ACPI_BUILD
78 #define ACPI_BUILD_DPRINTF(fmt, ...) \
79 do {printf("ACPI_BUILD: " fmt, ## __VA_ARGS__); } while (0)
81 #define ACPI_BUILD_DPRINTF(fmt, ...)
84 /* Default IOAPIC ID */
85 #define ACPI_BUILD_IOAPIC_ID 0x0
87 typedef struct AcpiMcfgInfo
{
92 typedef struct AcpiPmInfo
{
99 uint8_t acpi_enable_cmd
;
100 uint8_t acpi_disable_cmd
;
102 uint32_t gpe0_blk_len
;
104 uint16_t cpu_hp_io_base
;
105 uint16_t pcihp_io_base
;
106 uint16_t pcihp_io_len
;
109 typedef struct AcpiMiscInfo
{
112 TPMVersion tpm_version
;
113 const unsigned char *dsdt_code
;
115 uint16_t pvpanic_port
;
116 uint16_t applesmc_io_base
;
119 typedef struct AcpiBuildPciBusHotplugState
{
120 GArray
*device_table
;
121 GArray
*notify_table
;
122 struct AcpiBuildPciBusHotplugState
*parent
;
123 bool pcihp_bridge_en
;
124 } AcpiBuildPciBusHotplugState
;
126 static void acpi_get_pm_info(AcpiPmInfo
*pm
)
128 Object
*piix
= piix4_pm_find();
129 Object
*lpc
= ich9_lpc_find();
133 pm
->force_rev1_fadt
= false;
134 pm
->cpu_hp_io_base
= 0;
135 pm
->pcihp_io_base
= 0;
136 pm
->pcihp_io_len
= 0;
138 /* w2k requires FADT(rev1) or it won't boot, keep PC compatible */
139 pm
->force_rev1_fadt
= true;
141 pm
->cpu_hp_io_base
= PIIX4_CPU_HOTPLUG_IO_BASE
;
143 object_property_get_uint(obj
, ACPI_PCIHP_IO_BASE_PROP
, NULL
);
145 object_property_get_uint(obj
, ACPI_PCIHP_IO_LEN_PROP
, NULL
);
149 pm
->cpu_hp_io_base
= ICH9_CPU_HOTPLUG_IO_BASE
;
153 /* Fill in optional s3/s4 related properties */
154 o
= object_property_get_qobject(obj
, ACPI_PM_PROP_S3_DISABLED
, NULL
);
156 pm
->s3_disabled
= qnum_get_uint(qobject_to_qnum(o
));
158 pm
->s3_disabled
= false;
161 o
= object_property_get_qobject(obj
, ACPI_PM_PROP_S4_DISABLED
, NULL
);
163 pm
->s4_disabled
= qnum_get_uint(qobject_to_qnum(o
));
165 pm
->s4_disabled
= false;
168 o
= object_property_get_qobject(obj
, ACPI_PM_PROP_S4_VAL
, NULL
);
170 pm
->s4_val
= qnum_get_uint(qobject_to_qnum(o
));
176 /* Fill in mandatory properties */
177 pm
->sci_int
= object_property_get_uint(obj
, ACPI_PM_PROP_SCI_INT
, NULL
);
179 pm
->acpi_enable_cmd
= object_property_get_uint(obj
,
180 ACPI_PM_PROP_ACPI_ENABLE_CMD
,
182 pm
->acpi_disable_cmd
=
183 object_property_get_uint(obj
,
184 ACPI_PM_PROP_ACPI_DISABLE_CMD
,
186 pm
->io_base
= object_property_get_uint(obj
, ACPI_PM_PROP_PM_IO_BASE
,
188 pm
->gpe0_blk
= object_property_get_uint(obj
, ACPI_PM_PROP_GPE0_BLK
,
190 pm
->gpe0_blk_len
= object_property_get_uint(obj
, ACPI_PM_PROP_GPE0_BLK_LEN
,
192 pm
->pcihp_bridge_en
=
193 object_property_get_bool(obj
, "acpi-pci-hotplug-with-bridge-support",
197 static void acpi_get_misc_info(AcpiMiscInfo
*info
)
199 Object
*piix
= piix4_pm_find();
200 Object
*lpc
= ich9_lpc_find();
201 assert(!!piix
!= !!lpc
);
204 info
->is_piix4
= true;
207 info
->is_piix4
= false;
210 info
->has_hpet
= hpet_find();
211 info
->tpm_version
= tpm_get_version();
212 info
->pvpanic_port
= pvpanic_port();
213 info
->applesmc_io_base
= applesmc_port();
217 * Because of the PXB hosts we cannot simply query TYPE_PCI_HOST_BRIDGE.
218 * On i386 arch we only have two pci hosts, so we can look only for them.
220 static Object
*acpi_get_i386_pci_host(void)
224 host
= OBJECT_CHECK(PCIHostState
,
225 object_resolve_path("/machine/i440fx", NULL
),
226 TYPE_PCI_HOST_BRIDGE
);
228 host
= OBJECT_CHECK(PCIHostState
,
229 object_resolve_path("/machine/q35", NULL
),
230 TYPE_PCI_HOST_BRIDGE
);
236 static void acpi_get_pci_holes(Range
*hole
, Range
*hole64
)
240 pci_host
= acpi_get_i386_pci_host();
243 range_set_bounds1(hole
,
244 object_property_get_uint(pci_host
,
245 PCI_HOST_PROP_PCI_HOLE_START
,
247 object_property_get_uint(pci_host
,
248 PCI_HOST_PROP_PCI_HOLE_END
,
250 range_set_bounds1(hole64
,
251 object_property_get_uint(pci_host
,
252 PCI_HOST_PROP_PCI_HOLE64_START
,
254 object_property_get_uint(pci_host
,
255 PCI_HOST_PROP_PCI_HOLE64_END
,
259 #define ACPI_PORT_SMI_CMD 0x00b2 /* TODO: this is APM_CNT_IOPORT */
261 static void acpi_align_size(GArray
*blob
, unsigned align
)
263 /* Align size to multiple of given size. This reduces the chance
264 * we need to change size in the future (breaking cross version migration).
266 g_array_set_size(blob
, ROUND_UP(acpi_data_len(blob
), align
));
271 build_facs(GArray
*table_data
, BIOSLinker
*linker
)
273 AcpiFacsDescriptorRev1
*facs
= acpi_data_push(table_data
, sizeof *facs
);
274 memcpy(&facs
->signature
, "FACS", 4);
275 facs
->length
= cpu_to_le32(sizeof(*facs
));
278 /* Load chipset information in FADT */
279 static void fadt_setup(AcpiFadtDescriptorRev3
*fadt
, AcpiPmInfo
*pm
)
283 fadt
->sci_int
= cpu_to_le16(pm
->sci_int
);
284 fadt
->smi_cmd
= cpu_to_le32(ACPI_PORT_SMI_CMD
);
285 fadt
->acpi_enable
= pm
->acpi_enable_cmd
;
286 fadt
->acpi_disable
= pm
->acpi_disable_cmd
;
287 /* EVT, CNT, TMR offset matches hw/acpi/core.c */
288 fadt
->pm1a_evt_blk
= cpu_to_le32(pm
->io_base
);
289 fadt
->pm1a_cnt_blk
= cpu_to_le32(pm
->io_base
+ 0x04);
290 fadt
->pm_tmr_blk
= cpu_to_le32(pm
->io_base
+ 0x08);
291 fadt
->gpe0_blk
= cpu_to_le32(pm
->gpe0_blk
);
292 /* EVT, CNT, TMR length matches hw/acpi/core.c */
293 fadt
->pm1_evt_len
= 4;
294 fadt
->pm1_cnt_len
= 2;
295 fadt
->pm_tmr_len
= 4;
296 fadt
->gpe0_blk_len
= pm
->gpe0_blk_len
;
297 fadt
->plvl2_lat
= cpu_to_le16(0xfff); /* C2 state not supported */
298 fadt
->plvl3_lat
= cpu_to_le16(0xfff); /* C3 state not supported */
299 fadt
->flags
= cpu_to_le32((1 << ACPI_FADT_F_WBINVD
) |
300 (1 << ACPI_FADT_F_PROC_C1
) |
301 (1 << ACPI_FADT_F_SLP_BUTTON
) |
302 (1 << ACPI_FADT_F_RTC_S4
));
303 fadt
->flags
|= cpu_to_le32(1 << ACPI_FADT_F_USE_PLATFORM_CLOCK
);
304 /* APIC destination mode ("Flat Logical") has an upper limit of 8 CPUs
305 * For more than 8 CPUs, "Clustered Logical" mode has to be used
308 fadt
->flags
|= cpu_to_le32(1 << ACPI_FADT_F_FORCE_APIC_CLUSTER_MODEL
);
310 fadt
->century
= RTC_CENTURY
;
311 if (pm
->force_rev1_fadt
) {
315 fadt
->flags
|= cpu_to_le32(1 << ACPI_FADT_F_RESET_REG_SUP
);
316 fadt
->reset_value
= 0xf;
317 fadt
->reset_register
.space_id
= AML_SYSTEM_IO
;
318 fadt
->reset_register
.bit_width
= 8;
319 fadt
->reset_register
.address
= cpu_to_le64(ICH9_RST_CNT_IOPORT
);
320 /* The above need not be conditional on machine type because the reset port
321 * happens to be the same on PIIX (pc) and ICH9 (q35). */
322 QEMU_BUILD_BUG_ON(ICH9_RST_CNT_IOPORT
!= RCR_IOPORT
);
324 fadt
->xpm1a_event_block
.space_id
= AML_SYSTEM_IO
;
325 fadt
->xpm1a_event_block
.bit_width
= fadt
->pm1_evt_len
* 8;
326 fadt
->xpm1a_event_block
.address
= cpu_to_le64(pm
->io_base
);
328 fadt
->xpm1a_control_block
.space_id
= AML_SYSTEM_IO
;
329 fadt
->xpm1a_control_block
.bit_width
= fadt
->pm1_cnt_len
* 8;
330 fadt
->xpm1a_control_block
.address
= cpu_to_le64(pm
->io_base
+ 0x4);
332 fadt
->xpm_timer_block
.space_id
= AML_SYSTEM_IO
;
333 fadt
->xpm_timer_block
.bit_width
= fadt
->pm_tmr_len
* 8;
334 fadt
->xpm_timer_block
.address
= cpu_to_le64(pm
->io_base
+ 0x8);
336 fadt
->xgpe0_block
.space_id
= AML_SYSTEM_IO
;
337 fadt
->xgpe0_block
.bit_width
= pm
->gpe0_blk_len
* 8;
338 fadt
->xgpe0_block
.address
= cpu_to_le64(pm
->gpe0_blk
);
344 build_fadt(GArray
*table_data
, BIOSLinker
*linker
, AcpiPmInfo
*pm
,
345 unsigned facs_tbl_offset
, unsigned dsdt_tbl_offset
,
346 const char *oem_id
, const char *oem_table_id
)
348 AcpiFadtDescriptorRev3
*fadt
= acpi_data_push(table_data
, sizeof(*fadt
));
349 unsigned fw_ctrl_offset
= (char *)&fadt
->firmware_ctrl
- table_data
->data
;
350 unsigned dsdt_entry_offset
= (char *)&fadt
->dsdt
- table_data
->data
;
351 unsigned xdsdt_entry_offset
= (char *)&fadt
->x_dsdt
- table_data
->data
;
352 int fadt_size
= sizeof(*fadt
);
355 /* FACS address to be filled by Guest linker */
356 bios_linker_loader_add_pointer(linker
,
357 ACPI_BUILD_TABLE_FILE
, fw_ctrl_offset
, sizeof(fadt
->firmware_ctrl
),
358 ACPI_BUILD_TABLE_FILE
, facs_tbl_offset
);
360 /* DSDT address to be filled by Guest linker */
361 fadt_setup(fadt
, pm
);
362 bios_linker_loader_add_pointer(linker
,
363 ACPI_BUILD_TABLE_FILE
, dsdt_entry_offset
, sizeof(fadt
->dsdt
),
364 ACPI_BUILD_TABLE_FILE
, dsdt_tbl_offset
);
365 if (pm
->force_rev1_fadt
) {
367 fadt_size
= offsetof(typeof(*fadt
), reset_register
);
369 bios_linker_loader_add_pointer(linker
,
370 ACPI_BUILD_TABLE_FILE
, xdsdt_entry_offset
, sizeof(fadt
->x_dsdt
),
371 ACPI_BUILD_TABLE_FILE
, dsdt_tbl_offset
);
374 build_header(linker
, table_data
,
375 (void *)fadt
, "FACP", fadt_size
, rev
, oem_id
, oem_table_id
);
378 void pc_madt_cpu_entry(AcpiDeviceIf
*adev
, int uid
,
379 const CPUArchIdList
*apic_ids
, GArray
*entry
)
381 uint32_t apic_id
= apic_ids
->cpus
[uid
].arch_id
;
383 /* ACPI spec says that LAPIC entry for non present
384 * CPU may be omitted from MADT or it must be marked
385 * as disabled. However omitting non present CPU from
386 * MADT breaks hotplug on linux. So possible CPUs
387 * should be put in MADT but kept disabled.
390 AcpiMadtProcessorApic
*apic
= acpi_data_push(entry
, sizeof *apic
);
392 apic
->type
= ACPI_APIC_PROCESSOR
;
393 apic
->length
= sizeof(*apic
);
394 apic
->processor_id
= uid
;
395 apic
->local_apic_id
= apic_id
;
396 if (apic_ids
->cpus
[uid
].cpu
!= NULL
) {
397 apic
->flags
= cpu_to_le32(1);
399 apic
->flags
= cpu_to_le32(0);
402 AcpiMadtProcessorX2Apic
*apic
= acpi_data_push(entry
, sizeof *apic
);
404 apic
->type
= ACPI_APIC_LOCAL_X2APIC
;
405 apic
->length
= sizeof(*apic
);
406 apic
->uid
= cpu_to_le32(uid
);
407 apic
->x2apic_id
= cpu_to_le32(apic_id
);
408 if (apic_ids
->cpus
[uid
].cpu
!= NULL
) {
409 apic
->flags
= cpu_to_le32(1);
411 apic
->flags
= cpu_to_le32(0);
417 build_madt(GArray
*table_data
, BIOSLinker
*linker
, PCMachineState
*pcms
)
419 MachineClass
*mc
= MACHINE_GET_CLASS(pcms
);
420 const CPUArchIdList
*apic_ids
= mc
->possible_cpu_arch_ids(MACHINE(pcms
));
421 int madt_start
= table_data
->len
;
422 AcpiDeviceIfClass
*adevc
= ACPI_DEVICE_IF_GET_CLASS(pcms
->acpi_dev
);
423 AcpiDeviceIf
*adev
= ACPI_DEVICE_IF(pcms
->acpi_dev
);
424 bool x2apic_mode
= false;
426 AcpiMultipleApicTable
*madt
;
427 AcpiMadtIoApic
*io_apic
;
428 AcpiMadtIntsrcovr
*intsrcovr
;
431 madt
= acpi_data_push(table_data
, sizeof *madt
);
432 madt
->local_apic_address
= cpu_to_le32(APIC_DEFAULT_ADDRESS
);
433 madt
->flags
= cpu_to_le32(1);
435 for (i
= 0; i
< apic_ids
->len
; i
++) {
436 adevc
->madt_cpu(adev
, i
, apic_ids
, table_data
);
437 if (apic_ids
->cpus
[i
].arch_id
> 254) {
442 io_apic
= acpi_data_push(table_data
, sizeof *io_apic
);
443 io_apic
->type
= ACPI_APIC_IO
;
444 io_apic
->length
= sizeof(*io_apic
);
445 io_apic
->io_apic_id
= ACPI_BUILD_IOAPIC_ID
;
446 io_apic
->address
= cpu_to_le32(IO_APIC_DEFAULT_ADDRESS
);
447 io_apic
->interrupt
= cpu_to_le32(0);
449 if (pcms
->apic_xrupt_override
) {
450 intsrcovr
= acpi_data_push(table_data
, sizeof *intsrcovr
);
451 intsrcovr
->type
= ACPI_APIC_XRUPT_OVERRIDE
;
452 intsrcovr
->length
= sizeof(*intsrcovr
);
453 intsrcovr
->source
= 0;
454 intsrcovr
->gsi
= cpu_to_le32(2);
455 intsrcovr
->flags
= cpu_to_le16(0); /* conforms to bus specifications */
457 for (i
= 1; i
< 16; i
++) {
458 #define ACPI_BUILD_PCI_IRQS ((1<<5) | (1<<9) | (1<<10) | (1<<11))
459 if (!(ACPI_BUILD_PCI_IRQS
& (1 << i
))) {
460 /* No need for a INT source override structure. */
463 intsrcovr
= acpi_data_push(table_data
, sizeof *intsrcovr
);
464 intsrcovr
->type
= ACPI_APIC_XRUPT_OVERRIDE
;
465 intsrcovr
->length
= sizeof(*intsrcovr
);
466 intsrcovr
->source
= i
;
467 intsrcovr
->gsi
= cpu_to_le32(i
);
468 intsrcovr
->flags
= cpu_to_le16(0xd); /* active high, level triggered */
472 AcpiMadtLocalX2ApicNmi
*local_nmi
;
474 local_nmi
= acpi_data_push(table_data
, sizeof *local_nmi
);
475 local_nmi
->type
= ACPI_APIC_LOCAL_X2APIC_NMI
;
476 local_nmi
->length
= sizeof(*local_nmi
);
477 local_nmi
->uid
= 0xFFFFFFFF; /* all processors */
478 local_nmi
->flags
= cpu_to_le16(0);
479 local_nmi
->lint
= 1; /* ACPI_LINT1 */
481 AcpiMadtLocalNmi
*local_nmi
;
483 local_nmi
= acpi_data_push(table_data
, sizeof *local_nmi
);
484 local_nmi
->type
= ACPI_APIC_LOCAL_NMI
;
485 local_nmi
->length
= sizeof(*local_nmi
);
486 local_nmi
->processor_id
= 0xff; /* all processors */
487 local_nmi
->flags
= cpu_to_le16(0);
488 local_nmi
->lint
= 1; /* ACPI_LINT1 */
491 build_header(linker
, table_data
,
492 (void *)(table_data
->data
+ madt_start
), "APIC",
493 table_data
->len
- madt_start
, 1, NULL
, NULL
);
496 static void build_append_pcihp_notify_entry(Aml
*method
, int slot
)
499 int32_t devfn
= PCI_DEVFN(slot
, 0);
501 if_ctx
= aml_if(aml_and(aml_arg(0), aml_int(0x1U
<< slot
), NULL
));
502 aml_append(if_ctx
, aml_notify(aml_name("S%.02X", devfn
), aml_arg(1)));
503 aml_append(method
, if_ctx
);
506 static void build_append_pci_bus_devices(Aml
*parent_scope
, PCIBus
*bus
,
507 bool pcihp_bridge_en
)
509 Aml
*dev
, *notify_method
, *method
;
514 bsel
= object_property_get_qobject(OBJECT(bus
), ACPI_PCIHP_PROP_BSEL
, NULL
);
516 uint64_t bsel_val
= qnum_get_uint(qobject_to_qnum(bsel
));
518 aml_append(parent_scope
, aml_name_decl("BSEL", aml_int(bsel_val
)));
519 notify_method
= aml_method("DVNT", 2, AML_NOTSERIALIZED
);
522 for (i
= 0; i
< ARRAY_SIZE(bus
->devices
); i
+= PCI_FUNC_MAX
) {
525 PCIDevice
*pdev
= bus
->devices
[i
];
526 int slot
= PCI_SLOT(i
);
527 bool hotplug_enabled_dev
;
531 if (bsel
) { /* add hotplug slots for non present devices */
532 dev
= aml_device("S%.02X", PCI_DEVFN(slot
, 0));
533 aml_append(dev
, aml_name_decl("_SUN", aml_int(slot
)));
534 aml_append(dev
, aml_name_decl("_ADR", aml_int(slot
<< 16)));
535 method
= aml_method("_EJ0", 1, AML_NOTSERIALIZED
);
537 aml_call2("PCEJ", aml_name("BSEL"), aml_name("_SUN"))
539 aml_append(dev
, method
);
540 aml_append(parent_scope
, dev
);
542 build_append_pcihp_notify_entry(notify_method
, slot
);
547 pc
= PCI_DEVICE_GET_CLASS(pdev
);
548 dc
= DEVICE_GET_CLASS(pdev
);
550 /* When hotplug for bridges is enabled, bridges are
551 * described in ACPI separately (see build_pci_bus_end).
552 * In this case they aren't themselves hot-pluggable.
553 * Hotplugged bridges *are* hot-pluggable.
555 bridge_in_acpi
= pc
->is_bridge
&& pcihp_bridge_en
&&
556 !DEVICE(pdev
)->hotplugged
;
558 hotplug_enabled_dev
= bsel
&& dc
->hotpluggable
&& !bridge_in_acpi
;
560 if (pc
->class_id
== PCI_CLASS_BRIDGE_ISA
) {
564 /* start to compose PCI slot descriptor */
565 dev
= aml_device("S%.02X", PCI_DEVFN(slot
, 0));
566 aml_append(dev
, aml_name_decl("_ADR", aml_int(slot
<< 16)));
568 if (pc
->class_id
== PCI_CLASS_DISPLAY_VGA
) {
569 /* add VGA specific AML methods */
572 if (object_dynamic_cast(OBJECT(pdev
), "qxl-vga")) {
578 method
= aml_method("_S1D", 0, AML_NOTSERIALIZED
);
579 aml_append(method
, aml_return(aml_int(0)));
580 aml_append(dev
, method
);
582 method
= aml_method("_S2D", 0, AML_NOTSERIALIZED
);
583 aml_append(method
, aml_return(aml_int(0)));
584 aml_append(dev
, method
);
586 method
= aml_method("_S3D", 0, AML_NOTSERIALIZED
);
587 aml_append(method
, aml_return(aml_int(s3d
)));
588 aml_append(dev
, method
);
589 } else if (hotplug_enabled_dev
) {
590 /* add _SUN/_EJ0 to make slot hotpluggable */
591 aml_append(dev
, aml_name_decl("_SUN", aml_int(slot
)));
593 method
= aml_method("_EJ0", 1, AML_NOTSERIALIZED
);
595 aml_call2("PCEJ", aml_name("BSEL"), aml_name("_SUN"))
597 aml_append(dev
, method
);
600 build_append_pcihp_notify_entry(notify_method
, slot
);
602 } else if (bridge_in_acpi
) {
604 * device is coldplugged bridge,
605 * add child device descriptions into its scope
607 PCIBus
*sec_bus
= pci_bridge_get_sec_bus(PCI_BRIDGE(pdev
));
609 build_append_pci_bus_devices(dev
, sec_bus
, pcihp_bridge_en
);
611 /* slot descriptor has been composed, add it into parent context */
612 aml_append(parent_scope
, dev
);
616 aml_append(parent_scope
, notify_method
);
619 /* Append PCNT method to notify about events on local and child buses.
620 * Add unconditionally for root since DSDT expects it.
622 method
= aml_method("PCNT", 0, AML_NOTSERIALIZED
);
624 /* If bus supports hotplug select it and notify about local events */
626 uint64_t bsel_val
= qnum_get_uint(qobject_to_qnum(bsel
));
628 aml_append(method
, aml_store(aml_int(bsel_val
), aml_name("BNUM")));
630 aml_call2("DVNT", aml_name("PCIU"), aml_int(1) /* Device Check */)
633 aml_call2("DVNT", aml_name("PCID"), aml_int(3)/* Eject Request */)
637 /* Notify about child bus events in any case */
638 if (pcihp_bridge_en
) {
639 QLIST_FOREACH(sec
, &bus
->child
, sibling
) {
640 int32_t devfn
= sec
->parent_dev
->devfn
;
642 if (pci_bus_is_root(sec
) || pci_bus_is_express(sec
)) {
646 aml_append(method
, aml_name("^S%.02X.PCNT", devfn
));
649 aml_append(parent_scope
, method
);
650 qobject_decref(bsel
);
655 * @link_name: link name for PCI route entry
657 * build AML package containing a PCI route entry for @link_name
659 static Aml
*build_prt_entry(const char *link_name
)
661 Aml
*a_zero
= aml_int(0);
662 Aml
*pkg
= aml_package(4);
663 aml_append(pkg
, a_zero
);
664 aml_append(pkg
, a_zero
);
665 aml_append(pkg
, aml_name("%s", link_name
));
666 aml_append(pkg
, a_zero
);
671 * initialize_route - Initialize the interrupt routing rule
672 * through a specific LINK:
673 * if (lnk_idx == idx)
674 * route using link 'link_name'
676 static Aml
*initialize_route(Aml
*route
, const char *link_name
,
677 Aml
*lnk_idx
, int idx
)
679 Aml
*if_ctx
= aml_if(aml_equal(lnk_idx
, aml_int(idx
)));
680 Aml
*pkg
= build_prt_entry(link_name
);
682 aml_append(if_ctx
, aml_store(pkg
, route
));
688 * build_prt - Define interrupt rounting rules
690 * Returns an array of 128 routes, one for each device,
691 * based on device location.
692 * The main goal is to equaly distribute the interrupts
693 * over the 4 existing ACPI links (works only for i440fx).
694 * The hash function is (slot + pin) & 3 -> "LNK[D|A|B|C]".
697 static Aml
*build_prt(bool is_pci0_prt
)
699 Aml
*method
, *while_ctx
, *pin
, *res
;
701 method
= aml_method("_PRT", 0, AML_NOTSERIALIZED
);
704 aml_append(method
, aml_store(aml_package(128), res
));
705 aml_append(method
, aml_store(aml_int(0), pin
));
707 /* while (pin < 128) */
708 while_ctx
= aml_while(aml_lless(pin
, aml_int(128)));
710 Aml
*slot
= aml_local(2);
711 Aml
*lnk_idx
= aml_local(3);
712 Aml
*route
= aml_local(4);
714 /* slot = pin >> 2 */
715 aml_append(while_ctx
,
716 aml_store(aml_shiftright(pin
, aml_int(2), NULL
), slot
));
717 /* lnk_idx = (slot + pin) & 3 */
718 aml_append(while_ctx
,
719 aml_store(aml_and(aml_add(pin
, slot
, NULL
), aml_int(3), NULL
),
722 /* route[2] = "LNK[D|A|B|C]", selection based on pin % 3 */
723 aml_append(while_ctx
, initialize_route(route
, "LNKD", lnk_idx
, 0));
725 Aml
*if_device_1
, *if_pin_4
, *else_pin_4
;
727 /* device 1 is the power-management device, needs SCI */
728 if_device_1
= aml_if(aml_equal(lnk_idx
, aml_int(1)));
730 if_pin_4
= aml_if(aml_equal(pin
, aml_int(4)));
733 aml_store(build_prt_entry("LNKS"), route
));
735 aml_append(if_device_1
, if_pin_4
);
736 else_pin_4
= aml_else();
738 aml_append(else_pin_4
,
739 aml_store(build_prt_entry("LNKA"), route
));
741 aml_append(if_device_1
, else_pin_4
);
743 aml_append(while_ctx
, if_device_1
);
745 aml_append(while_ctx
, initialize_route(route
, "LNKA", lnk_idx
, 1));
747 aml_append(while_ctx
, initialize_route(route
, "LNKB", lnk_idx
, 2));
748 aml_append(while_ctx
, initialize_route(route
, "LNKC", lnk_idx
, 3));
750 /* route[0] = 0x[slot]FFFF */
751 aml_append(while_ctx
,
752 aml_store(aml_or(aml_shiftleft(slot
, aml_int(16)), aml_int(0xFFFF),
754 aml_index(route
, aml_int(0))));
755 /* route[1] = pin & 3 */
756 aml_append(while_ctx
,
757 aml_store(aml_and(pin
, aml_int(3), NULL
),
758 aml_index(route
, aml_int(1))));
759 /* res[pin] = route */
760 aml_append(while_ctx
, aml_store(route
, aml_index(res
, pin
)));
762 aml_append(while_ctx
, aml_increment(pin
));
764 aml_append(method
, while_ctx
);
766 aml_append(method
, aml_return(res
));
771 typedef struct CrsRangeEntry
{
776 static void crs_range_insert(GPtrArray
*ranges
, uint64_t base
, uint64_t limit
)
778 CrsRangeEntry
*entry
;
780 entry
= g_malloc(sizeof(*entry
));
782 entry
->limit
= limit
;
784 g_ptr_array_add(ranges
, entry
);
787 static void crs_range_free(gpointer data
)
789 CrsRangeEntry
*entry
= (CrsRangeEntry
*)data
;
793 typedef struct CrsRangeSet
{
794 GPtrArray
*io_ranges
;
795 GPtrArray
*mem_ranges
;
796 GPtrArray
*mem_64bit_ranges
;
799 static void crs_range_set_init(CrsRangeSet
*range_set
)
801 range_set
->io_ranges
= g_ptr_array_new_with_free_func(crs_range_free
);
802 range_set
->mem_ranges
= g_ptr_array_new_with_free_func(crs_range_free
);
803 range_set
->mem_64bit_ranges
=
804 g_ptr_array_new_with_free_func(crs_range_free
);
807 static void crs_range_set_free(CrsRangeSet
*range_set
)
809 g_ptr_array_free(range_set
->io_ranges
, true);
810 g_ptr_array_free(range_set
->mem_ranges
, true);
811 g_ptr_array_free(range_set
->mem_64bit_ranges
, true);
814 static gint
crs_range_compare(gconstpointer a
, gconstpointer b
)
816 CrsRangeEntry
*entry_a
= *(CrsRangeEntry
**)a
;
817 CrsRangeEntry
*entry_b
= *(CrsRangeEntry
**)b
;
819 return (int64_t)entry_a
->base
- (int64_t)entry_b
->base
;
823 * crs_replace_with_free_ranges - given the 'used' ranges within [start - end]
824 * interval, computes the 'free' ranges from the same interval.
825 * Example: If the input array is { [a1 - a2],[b1 - b2] }, the function
826 * will return { [base - a1], [a2 - b1], [b2 - limit] }.
828 static void crs_replace_with_free_ranges(GPtrArray
*ranges
,
829 uint64_t start
, uint64_t end
)
831 GPtrArray
*free_ranges
= g_ptr_array_new();
832 uint64_t free_base
= start
;
835 g_ptr_array_sort(ranges
, crs_range_compare
);
836 for (i
= 0; i
< ranges
->len
; i
++) {
837 CrsRangeEntry
*used
= g_ptr_array_index(ranges
, i
);
839 if (free_base
< used
->base
) {
840 crs_range_insert(free_ranges
, free_base
, used
->base
- 1);
843 free_base
= used
->limit
+ 1;
846 if (free_base
< end
) {
847 crs_range_insert(free_ranges
, free_base
, end
);
850 g_ptr_array_set_size(ranges
, 0);
851 for (i
= 0; i
< free_ranges
->len
; i
++) {
852 g_ptr_array_add(ranges
, g_ptr_array_index(free_ranges
, i
));
855 g_ptr_array_free(free_ranges
, true);
859 * crs_range_merge - merges adjacent ranges in the given array.
860 * Array elements are deleted and replaced with the merged ranges.
862 static void crs_range_merge(GPtrArray
*range
)
864 GPtrArray
*tmp
= g_ptr_array_new_with_free_func(crs_range_free
);
865 CrsRangeEntry
*entry
;
866 uint64_t range_base
, range_limit
;
873 g_ptr_array_sort(range
, crs_range_compare
);
875 entry
= g_ptr_array_index(range
, 0);
876 range_base
= entry
->base
;
877 range_limit
= entry
->limit
;
878 for (i
= 1; i
< range
->len
; i
++) {
879 entry
= g_ptr_array_index(range
, i
);
880 if (entry
->base
- 1 == range_limit
) {
881 range_limit
= entry
->limit
;
883 crs_range_insert(tmp
, range_base
, range_limit
);
884 range_base
= entry
->base
;
885 range_limit
= entry
->limit
;
888 crs_range_insert(tmp
, range_base
, range_limit
);
890 g_ptr_array_set_size(range
, 0);
891 for (i
= 0; i
< tmp
->len
; i
++) {
892 entry
= g_ptr_array_index(tmp
, i
);
893 crs_range_insert(range
, entry
->base
, entry
->limit
);
895 g_ptr_array_free(tmp
, true);
898 static Aml
*build_crs(PCIHostState
*host
, CrsRangeSet
*range_set
)
900 Aml
*crs
= aml_resource_template();
901 CrsRangeSet temp_range_set
;
902 CrsRangeEntry
*entry
;
903 uint8_t max_bus
= pci_bus_num(host
->bus
);
908 crs_range_set_init(&temp_range_set
);
909 for (devfn
= 0; devfn
< ARRAY_SIZE(host
->bus
->devices
); devfn
++) {
910 uint64_t range_base
, range_limit
;
911 PCIDevice
*dev
= host
->bus
->devices
[devfn
];
917 for (i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
918 PCIIORegion
*r
= &dev
->io_regions
[i
];
920 range_base
= r
->addr
;
921 range_limit
= r
->addr
+ r
->size
- 1;
924 * Work-around for old bioses
925 * that do not support multiple root buses
927 if (!range_base
|| range_base
> range_limit
) {
931 if (r
->type
& PCI_BASE_ADDRESS_SPACE_IO
) {
932 crs_range_insert(temp_range_set
.io_ranges
,
933 range_base
, range_limit
);
934 } else { /* "memory" */
935 crs_range_insert(temp_range_set
.mem_ranges
,
936 range_base
, range_limit
);
940 type
= dev
->config
[PCI_HEADER_TYPE
] & ~PCI_HEADER_TYPE_MULTI_FUNCTION
;
941 if (type
== PCI_HEADER_TYPE_BRIDGE
) {
942 uint8_t subordinate
= dev
->config
[PCI_SUBORDINATE_BUS
];
943 if (subordinate
> max_bus
) {
944 max_bus
= subordinate
;
947 range_base
= pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_SPACE_IO
);
948 range_limit
= pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_SPACE_IO
);
951 * Work-around for old bioses
952 * that do not support multiple root buses
954 if (range_base
&& range_base
<= range_limit
) {
955 crs_range_insert(temp_range_set
.io_ranges
,
956 range_base
, range_limit
);
960 pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
);
962 pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_SPACE_MEMORY
);
965 * Work-around for old bioses
966 * that do not support multiple root buses
968 if (range_base
&& range_base
<= range_limit
) {
969 uint64_t length
= range_limit
- range_base
+ 1;
970 if (range_limit
<= UINT32_MAX
&& length
<= UINT32_MAX
) {
971 crs_range_insert(temp_range_set
.mem_ranges
,
972 range_base
, range_limit
);
974 crs_range_insert(temp_range_set
.mem_64bit_ranges
,
975 range_base
, range_limit
);
980 pci_bridge_get_base(dev
, PCI_BASE_ADDRESS_MEM_PREFETCH
);
982 pci_bridge_get_limit(dev
, PCI_BASE_ADDRESS_MEM_PREFETCH
);
985 * Work-around for old bioses
986 * that do not support multiple root buses
988 if (range_base
&& range_base
<= range_limit
) {
989 uint64_t length
= range_limit
- range_base
+ 1;
990 if (range_limit
<= UINT32_MAX
&& length
<= UINT32_MAX
) {
991 crs_range_insert(temp_range_set
.mem_ranges
,
992 range_base
, range_limit
);
994 crs_range_insert(temp_range_set
.mem_64bit_ranges
,
995 range_base
, range_limit
);
1001 crs_range_merge(temp_range_set
.io_ranges
);
1002 for (i
= 0; i
< temp_range_set
.io_ranges
->len
; i
++) {
1003 entry
= g_ptr_array_index(temp_range_set
.io_ranges
, i
);
1005 aml_word_io(AML_MIN_FIXED
, AML_MAX_FIXED
,
1006 AML_POS_DECODE
, AML_ENTIRE_RANGE
,
1007 0, entry
->base
, entry
->limit
, 0,
1008 entry
->limit
- entry
->base
+ 1));
1009 crs_range_insert(range_set
->io_ranges
, entry
->base
, entry
->limit
);
1012 crs_range_merge(temp_range_set
.mem_ranges
);
1013 for (i
= 0; i
< temp_range_set
.mem_ranges
->len
; i
++) {
1014 entry
= g_ptr_array_index(temp_range_set
.mem_ranges
, i
);
1016 aml_dword_memory(AML_POS_DECODE
, AML_MIN_FIXED
,
1017 AML_MAX_FIXED
, AML_NON_CACHEABLE
,
1019 0, entry
->base
, entry
->limit
, 0,
1020 entry
->limit
- entry
->base
+ 1));
1021 crs_range_insert(range_set
->mem_ranges
, entry
->base
, entry
->limit
);
1024 crs_range_merge(temp_range_set
.mem_64bit_ranges
);
1025 for (i
= 0; i
< temp_range_set
.mem_64bit_ranges
->len
; i
++) {
1026 entry
= g_ptr_array_index(temp_range_set
.mem_64bit_ranges
, i
);
1028 aml_qword_memory(AML_POS_DECODE
, AML_MIN_FIXED
,
1029 AML_MAX_FIXED
, AML_NON_CACHEABLE
,
1031 0, entry
->base
, entry
->limit
, 0,
1032 entry
->limit
- entry
->base
+ 1));
1033 crs_range_insert(range_set
->mem_64bit_ranges
,
1034 entry
->base
, entry
->limit
);
1037 crs_range_set_free(&temp_range_set
);
1040 aml_word_bus_number(AML_MIN_FIXED
, AML_MAX_FIXED
, AML_POS_DECODE
,
1042 pci_bus_num(host
->bus
),
1045 max_bus
- pci_bus_num(host
->bus
) + 1));
1050 static void build_hpet_aml(Aml
*table
)
1056 Aml
*scope
= aml_scope("_SB");
1057 Aml
*dev
= aml_device("HPET");
1058 Aml
*zero
= aml_int(0);
1059 Aml
*id
= aml_local(0);
1060 Aml
*period
= aml_local(1);
1062 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0103")));
1063 aml_append(dev
, aml_name_decl("_UID", zero
));
1066 aml_operation_region("HPTM", AML_SYSTEM_MEMORY
, aml_int(HPET_BASE
),
1068 field
= aml_field("HPTM", AML_DWORD_ACC
, AML_LOCK
, AML_PRESERVE
);
1069 aml_append(field
, aml_named_field("VEND", 32));
1070 aml_append(field
, aml_named_field("PRD", 32));
1071 aml_append(dev
, field
);
1073 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
1074 aml_append(method
, aml_store(aml_name("VEND"), id
));
1075 aml_append(method
, aml_store(aml_name("PRD"), period
));
1076 aml_append(method
, aml_shiftright(id
, aml_int(16), id
));
1077 if_ctx
= aml_if(aml_lor(aml_equal(id
, zero
),
1078 aml_equal(id
, aml_int(0xffff))));
1080 aml_append(if_ctx
, aml_return(zero
));
1082 aml_append(method
, if_ctx
);
1084 if_ctx
= aml_if(aml_lor(aml_equal(period
, zero
),
1085 aml_lgreater(period
, aml_int(100000000))));
1087 aml_append(if_ctx
, aml_return(zero
));
1089 aml_append(method
, if_ctx
);
1091 aml_append(method
, aml_return(aml_int(0x0F)));
1092 aml_append(dev
, method
);
1094 crs
= aml_resource_template();
1095 aml_append(crs
, aml_memory32_fixed(HPET_BASE
, HPET_LEN
, AML_READ_ONLY
));
1096 aml_append(dev
, aml_name_decl("_CRS", crs
));
1098 aml_append(scope
, dev
);
1099 aml_append(table
, scope
);
1102 static Aml
*build_fdinfo_aml(int idx
, FloppyDriveType type
)
1105 uint8_t maxc
, maxh
, maxs
;
1107 isa_fdc_get_drive_max_chs(type
, &maxc
, &maxh
, &maxs
);
1109 dev
= aml_device("FLP%c", 'A' + idx
);
1111 aml_append(dev
, aml_name_decl("_ADR", aml_int(idx
)));
1113 fdi
= aml_package(16);
1114 aml_append(fdi
, aml_int(idx
)); /* Drive Number */
1116 aml_int(cmos_get_fd_drive_type(type
))); /* Device Type */
1118 * the values below are the limits of the drive, and are thus independent
1119 * of the inserted media
1121 aml_append(fdi
, aml_int(maxc
)); /* Maximum Cylinder Number */
1122 aml_append(fdi
, aml_int(maxs
)); /* Maximum Sector Number */
1123 aml_append(fdi
, aml_int(maxh
)); /* Maximum Head Number */
1125 * SeaBIOS returns the below values for int 0x13 func 0x08 regardless of
1126 * the drive type, so shall we
1128 aml_append(fdi
, aml_int(0xAF)); /* disk_specify_1 */
1129 aml_append(fdi
, aml_int(0x02)); /* disk_specify_2 */
1130 aml_append(fdi
, aml_int(0x25)); /* disk_motor_wait */
1131 aml_append(fdi
, aml_int(0x02)); /* disk_sector_siz */
1132 aml_append(fdi
, aml_int(0x12)); /* disk_eot */
1133 aml_append(fdi
, aml_int(0x1B)); /* disk_rw_gap */
1134 aml_append(fdi
, aml_int(0xFF)); /* disk_dtl */
1135 aml_append(fdi
, aml_int(0x6C)); /* disk_formt_gap */
1136 aml_append(fdi
, aml_int(0xF6)); /* disk_fill */
1137 aml_append(fdi
, aml_int(0x0F)); /* disk_head_sttl */
1138 aml_append(fdi
, aml_int(0x08)); /* disk_motor_strt */
1140 aml_append(dev
, aml_name_decl("_FDI", fdi
));
1144 static Aml
*build_fdc_device_aml(ISADevice
*fdc
)
1150 #define ACPI_FDE_MAX_FD 4
1151 uint32_t fde_buf
[5] = {
1152 0, 0, 0, 0, /* presence of floppy drives #0 - #3 */
1153 cpu_to_le32(2) /* tape presence (2 == never present) */
1156 dev
= aml_device("FDC0");
1157 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0700")));
1159 crs
= aml_resource_template();
1160 aml_append(crs
, aml_io(AML_DECODE16
, 0x03F2, 0x03F2, 0x00, 0x04));
1161 aml_append(crs
, aml_io(AML_DECODE16
, 0x03F7, 0x03F7, 0x00, 0x01));
1162 aml_append(crs
, aml_irq_no_flags(6));
1164 aml_dma(AML_COMPATIBILITY
, AML_NOTBUSMASTER
, AML_TRANSFER8
, 2));
1165 aml_append(dev
, aml_name_decl("_CRS", crs
));
1167 for (i
= 0; i
< MIN(MAX_FD
, ACPI_FDE_MAX_FD
); i
++) {
1168 FloppyDriveType type
= isa_fdc_get_drive_type(fdc
, i
);
1170 if (type
< FLOPPY_DRIVE_TYPE_NONE
) {
1171 fde_buf
[i
] = cpu_to_le32(1); /* drive present */
1172 aml_append(dev
, build_fdinfo_aml(i
, type
));
1175 aml_append(dev
, aml_name_decl("_FDE",
1176 aml_buffer(sizeof(fde_buf
), (uint8_t *)fde_buf
)));
1181 static Aml
*build_rtc_device_aml(void)
1186 dev
= aml_device("RTC");
1187 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0B00")));
1188 crs
= aml_resource_template();
1189 aml_append(crs
, aml_io(AML_DECODE16
, 0x0070, 0x0070, 0x10, 0x02));
1190 aml_append(crs
, aml_irq_no_flags(8));
1191 aml_append(crs
, aml_io(AML_DECODE16
, 0x0072, 0x0072, 0x02, 0x06));
1192 aml_append(dev
, aml_name_decl("_CRS", crs
));
1197 static Aml
*build_kbd_device_aml(void)
1203 dev
= aml_device("KBD");
1204 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0303")));
1206 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
1207 aml_append(method
, aml_return(aml_int(0x0f)));
1208 aml_append(dev
, method
);
1210 crs
= aml_resource_template();
1211 aml_append(crs
, aml_io(AML_DECODE16
, 0x0060, 0x0060, 0x01, 0x01));
1212 aml_append(crs
, aml_io(AML_DECODE16
, 0x0064, 0x0064, 0x01, 0x01));
1213 aml_append(crs
, aml_irq_no_flags(1));
1214 aml_append(dev
, aml_name_decl("_CRS", crs
));
1219 static Aml
*build_mouse_device_aml(void)
1225 dev
= aml_device("MOU");
1226 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0F13")));
1228 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
1229 aml_append(method
, aml_return(aml_int(0x0f)));
1230 aml_append(dev
, method
);
1232 crs
= aml_resource_template();
1233 aml_append(crs
, aml_irq_no_flags(12));
1234 aml_append(dev
, aml_name_decl("_CRS", crs
));
1239 static Aml
*build_lpt_device_aml(void)
1246 Aml
*zero
= aml_int(0);
1247 Aml
*is_present
= aml_local(0);
1249 dev
= aml_device("LPT");
1250 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0400")));
1252 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
1253 aml_append(method
, aml_store(aml_name("LPEN"), is_present
));
1254 if_ctx
= aml_if(aml_equal(is_present
, zero
));
1256 aml_append(if_ctx
, aml_return(aml_int(0x00)));
1258 aml_append(method
, if_ctx
);
1259 else_ctx
= aml_else();
1261 aml_append(else_ctx
, aml_return(aml_int(0x0f)));
1263 aml_append(method
, else_ctx
);
1264 aml_append(dev
, method
);
1266 crs
= aml_resource_template();
1267 aml_append(crs
, aml_io(AML_DECODE16
, 0x0378, 0x0378, 0x08, 0x08));
1268 aml_append(crs
, aml_irq_no_flags(7));
1269 aml_append(dev
, aml_name_decl("_CRS", crs
));
1274 static Aml
*build_com_device_aml(uint8_t uid
)
1281 Aml
*zero
= aml_int(0);
1282 Aml
*is_present
= aml_local(0);
1283 const char *enabled_field
= "CAEN";
1285 uint16_t io_port
= 0x03F8;
1287 assert(uid
== 1 || uid
== 2);
1289 enabled_field
= "CBEN";
1294 dev
= aml_device("COM%d", uid
);
1295 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0501")));
1296 aml_append(dev
, aml_name_decl("_UID", aml_int(uid
)));
1298 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
1299 aml_append(method
, aml_store(aml_name("%s", enabled_field
), is_present
));
1300 if_ctx
= aml_if(aml_equal(is_present
, zero
));
1302 aml_append(if_ctx
, aml_return(aml_int(0x00)));
1304 aml_append(method
, if_ctx
);
1305 else_ctx
= aml_else();
1307 aml_append(else_ctx
, aml_return(aml_int(0x0f)));
1309 aml_append(method
, else_ctx
);
1310 aml_append(dev
, method
);
1312 crs
= aml_resource_template();
1313 aml_append(crs
, aml_io(AML_DECODE16
, io_port
, io_port
, 0x00, 0x08));
1314 aml_append(crs
, aml_irq_no_flags(irq
));
1315 aml_append(dev
, aml_name_decl("_CRS", crs
));
1320 static void build_isa_devices_aml(Aml
*table
)
1322 ISADevice
*fdc
= pc_find_fdc0();
1325 Aml
*scope
= aml_scope("_SB.PCI0.ISA");
1326 Object
*obj
= object_resolve_path_type("", TYPE_ISA_BUS
, &ambiguous
);
1328 aml_append(scope
, build_rtc_device_aml());
1329 aml_append(scope
, build_kbd_device_aml());
1330 aml_append(scope
, build_mouse_device_aml());
1332 aml_append(scope
, build_fdc_device_aml(fdc
));
1334 aml_append(scope
, build_lpt_device_aml());
1335 aml_append(scope
, build_com_device_aml(1));
1336 aml_append(scope
, build_com_device_aml(2));
1339 error_report("Multiple ISA busses, unable to define IPMI ACPI data");
1341 error_report("No ISA bus, unable to define IPMI ACPI data");
1343 build_acpi_ipmi_devices(scope
, BUS(obj
));
1346 aml_append(table
, scope
);
1349 static void build_dbg_aml(Aml
*table
)
1354 Aml
*scope
= aml_scope("\\");
1355 Aml
*buf
= aml_local(0);
1356 Aml
*len
= aml_local(1);
1357 Aml
*idx
= aml_local(2);
1360 aml_operation_region("DBG", AML_SYSTEM_IO
, aml_int(0x0402), 0x01));
1361 field
= aml_field("DBG", AML_BYTE_ACC
, AML_NOLOCK
, AML_PRESERVE
);
1362 aml_append(field
, aml_named_field("DBGB", 8));
1363 aml_append(scope
, field
);
1365 method
= aml_method("DBUG", 1, AML_NOTSERIALIZED
);
1367 aml_append(method
, aml_to_hexstring(aml_arg(0), buf
));
1368 aml_append(method
, aml_to_buffer(buf
, buf
));
1369 aml_append(method
, aml_subtract(aml_sizeof(buf
), aml_int(1), len
));
1370 aml_append(method
, aml_store(aml_int(0), idx
));
1372 while_ctx
= aml_while(aml_lless(idx
, len
));
1373 aml_append(while_ctx
,
1374 aml_store(aml_derefof(aml_index(buf
, idx
)), aml_name("DBGB")));
1375 aml_append(while_ctx
, aml_increment(idx
));
1376 aml_append(method
, while_ctx
);
1378 aml_append(method
, aml_store(aml_int(0x0A), aml_name("DBGB")));
1379 aml_append(scope
, method
);
1381 aml_append(table
, scope
);
1384 static Aml
*build_link_dev(const char *name
, uint8_t uid
, Aml
*reg
)
1389 uint32_t irqs
[] = {5, 10, 11};
1391 dev
= aml_device("%s", name
);
1392 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0C0F")));
1393 aml_append(dev
, aml_name_decl("_UID", aml_int(uid
)));
1395 crs
= aml_resource_template();
1396 aml_append(crs
, aml_interrupt(AML_CONSUMER
, AML_LEVEL
, AML_ACTIVE_HIGH
,
1397 AML_SHARED
, irqs
, ARRAY_SIZE(irqs
)));
1398 aml_append(dev
, aml_name_decl("_PRS", crs
));
1400 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
1401 aml_append(method
, aml_return(aml_call1("IQST", reg
)));
1402 aml_append(dev
, method
);
1404 method
= aml_method("_DIS", 0, AML_NOTSERIALIZED
);
1405 aml_append(method
, aml_or(reg
, aml_int(0x80), reg
));
1406 aml_append(dev
, method
);
1408 method
= aml_method("_CRS", 0, AML_NOTSERIALIZED
);
1409 aml_append(method
, aml_return(aml_call1("IQCR", reg
)));
1410 aml_append(dev
, method
);
1412 method
= aml_method("_SRS", 1, AML_NOTSERIALIZED
);
1413 aml_append(method
, aml_create_dword_field(aml_arg(0), aml_int(5), "PRRI"));
1414 aml_append(method
, aml_store(aml_name("PRRI"), reg
));
1415 aml_append(dev
, method
);
1420 static Aml
*build_gsi_link_dev(const char *name
, uint8_t uid
, uint8_t gsi
)
1427 dev
= aml_device("%s", name
);
1428 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0C0F")));
1429 aml_append(dev
, aml_name_decl("_UID", aml_int(uid
)));
1431 crs
= aml_resource_template();
1433 aml_append(crs
, aml_interrupt(AML_CONSUMER
, AML_LEVEL
, AML_ACTIVE_HIGH
,
1434 AML_SHARED
, &irqs
, 1));
1435 aml_append(dev
, aml_name_decl("_PRS", crs
));
1437 aml_append(dev
, aml_name_decl("_CRS", crs
));
1440 * _DIS can be no-op because the interrupt cannot be disabled.
1442 method
= aml_method("_DIS", 0, AML_NOTSERIALIZED
);
1443 aml_append(dev
, method
);
1445 method
= aml_method("_SRS", 1, AML_NOTSERIALIZED
);
1446 aml_append(dev
, method
);
1451 /* _CRS method - get current settings */
1452 static Aml
*build_iqcr_method(bool is_piix4
)
1456 Aml
*method
= aml_method("IQCR", 1, AML_SERIALIZED
);
1457 Aml
*crs
= aml_resource_template();
1460 aml_append(crs
, aml_interrupt(AML_CONSUMER
, AML_LEVEL
,
1461 AML_ACTIVE_HIGH
, AML_SHARED
, &irqs
, 1));
1462 aml_append(method
, aml_name_decl("PRR0", crs
));
1465 aml_create_dword_field(aml_name("PRR0"), aml_int(5), "PRRI"));
1468 if_ctx
= aml_if(aml_lless(aml_arg(0), aml_int(0x80)));
1469 aml_append(if_ctx
, aml_store(aml_arg(0), aml_name("PRRI")));
1470 aml_append(method
, if_ctx
);
1473 aml_store(aml_and(aml_arg(0), aml_int(0xF), NULL
),
1477 aml_append(method
, aml_return(aml_name("PRR0")));
1481 /* _STA method - get status */
1482 static Aml
*build_irq_status_method(void)
1485 Aml
*method
= aml_method("IQST", 1, AML_NOTSERIALIZED
);
1487 if_ctx
= aml_if(aml_and(aml_int(0x80), aml_arg(0), NULL
));
1488 aml_append(if_ctx
, aml_return(aml_int(0x09)));
1489 aml_append(method
, if_ctx
);
1490 aml_append(method
, aml_return(aml_int(0x0B)));
1494 static void build_piix4_pci0_int(Aml
*table
)
1501 Aml
*sb_scope
= aml_scope("_SB");
1502 Aml
*pci0_scope
= aml_scope("PCI0");
1504 aml_append(pci0_scope
, build_prt(true));
1505 aml_append(sb_scope
, pci0_scope
);
1507 field
= aml_field("PCI0.ISA.P40C", AML_BYTE_ACC
, AML_NOLOCK
, AML_PRESERVE
);
1508 aml_append(field
, aml_named_field("PRQ0", 8));
1509 aml_append(field
, aml_named_field("PRQ1", 8));
1510 aml_append(field
, aml_named_field("PRQ2", 8));
1511 aml_append(field
, aml_named_field("PRQ3", 8));
1512 aml_append(sb_scope
, field
);
1514 aml_append(sb_scope
, build_irq_status_method());
1515 aml_append(sb_scope
, build_iqcr_method(true));
1517 aml_append(sb_scope
, build_link_dev("LNKA", 0, aml_name("PRQ0")));
1518 aml_append(sb_scope
, build_link_dev("LNKB", 1, aml_name("PRQ1")));
1519 aml_append(sb_scope
, build_link_dev("LNKC", 2, aml_name("PRQ2")));
1520 aml_append(sb_scope
, build_link_dev("LNKD", 3, aml_name("PRQ3")));
1522 dev
= aml_device("LNKS");
1524 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0C0F")));
1525 aml_append(dev
, aml_name_decl("_UID", aml_int(4)));
1527 crs
= aml_resource_template();
1529 aml_append(crs
, aml_interrupt(AML_CONSUMER
, AML_LEVEL
,
1530 AML_ACTIVE_HIGH
, AML_SHARED
,
1532 aml_append(dev
, aml_name_decl("_PRS", crs
));
1534 /* The SCI cannot be disabled and is always attached to GSI 9,
1535 * so these are no-ops. We only need this link to override the
1536 * polarity to active high and match the content of the MADT.
1538 method
= aml_method("_STA", 0, AML_NOTSERIALIZED
);
1539 aml_append(method
, aml_return(aml_int(0x0b)));
1540 aml_append(dev
, method
);
1542 method
= aml_method("_DIS", 0, AML_NOTSERIALIZED
);
1543 aml_append(dev
, method
);
1545 method
= aml_method("_CRS", 0, AML_NOTSERIALIZED
);
1546 aml_append(method
, aml_return(aml_name("_PRS")));
1547 aml_append(dev
, method
);
1549 method
= aml_method("_SRS", 1, AML_NOTSERIALIZED
);
1550 aml_append(dev
, method
);
1552 aml_append(sb_scope
, dev
);
1554 aml_append(table
, sb_scope
);
1557 static void append_q35_prt_entry(Aml
*ctx
, uint32_t nr
, const char *name
)
1562 char base
= name
[3] < 'E' ? 'A' : 'E';
1563 char *s
= g_strdup(name
);
1564 Aml
*a_nr
= aml_int((nr
<< 16) | 0xffff);
1566 assert(strlen(s
) == 4);
1568 head
= name
[3] - base
;
1569 for (i
= 0; i
< 4; i
++) {
1573 s
[3] = base
+ head
+ i
;
1574 pkg
= aml_package(4);
1575 aml_append(pkg
, a_nr
);
1576 aml_append(pkg
, aml_int(i
));
1577 aml_append(pkg
, aml_name("%s", s
));
1578 aml_append(pkg
, aml_int(0));
1579 aml_append(ctx
, pkg
);
1584 static Aml
*build_q35_routing_table(const char *str
)
1588 char *name
= g_strdup_printf("%s ", str
);
1590 pkg
= aml_package(128);
1591 for (i
= 0; i
< 0x18; i
++) {
1592 name
[3] = 'E' + (i
& 0x3);
1593 append_q35_prt_entry(pkg
, i
, name
);
1597 append_q35_prt_entry(pkg
, 0x18, name
);
1599 /* INTA -> PIRQA for slot 25 - 31, see the default value of D<N>IR */
1600 for (i
= 0x0019; i
< 0x1e; i
++) {
1602 append_q35_prt_entry(pkg
, i
, name
);
1605 /* PCIe->PCI bridge. use PIRQ[E-H] */
1607 append_q35_prt_entry(pkg
, 0x1e, name
);
1609 append_q35_prt_entry(pkg
, 0x1f, name
);
1615 static void build_q35_pci0_int(Aml
*table
)
1619 Aml
*sb_scope
= aml_scope("_SB");
1620 Aml
*pci0_scope
= aml_scope("PCI0");
1622 /* Zero => PIC mode, One => APIC Mode */
1623 aml_append(table
, aml_name_decl("PICF", aml_int(0)));
1624 method
= aml_method("_PIC", 1, AML_NOTSERIALIZED
);
1626 aml_append(method
, aml_store(aml_arg(0), aml_name("PICF")));
1628 aml_append(table
, method
);
1630 aml_append(pci0_scope
,
1631 aml_name_decl("PRTP", build_q35_routing_table("LNK")));
1632 aml_append(pci0_scope
,
1633 aml_name_decl("PRTA", build_q35_routing_table("GSI")));
1635 method
= aml_method("_PRT", 0, AML_NOTSERIALIZED
);
1640 /* PCI IRQ routing table, example from ACPI 2.0a specification,
1642 /* Note: we provide the same info as the PCI routing
1643 table of the Bochs BIOS */
1644 if_ctx
= aml_if(aml_equal(aml_name("PICF"), aml_int(0)));
1645 aml_append(if_ctx
, aml_return(aml_name("PRTP")));
1646 aml_append(method
, if_ctx
);
1647 else_ctx
= aml_else();
1648 aml_append(else_ctx
, aml_return(aml_name("PRTA")));
1649 aml_append(method
, else_ctx
);
1651 aml_append(pci0_scope
, method
);
1652 aml_append(sb_scope
, pci0_scope
);
1654 field
= aml_field("PCI0.ISA.PIRQ", AML_BYTE_ACC
, AML_NOLOCK
, AML_PRESERVE
);
1655 aml_append(field
, aml_named_field("PRQA", 8));
1656 aml_append(field
, aml_named_field("PRQB", 8));
1657 aml_append(field
, aml_named_field("PRQC", 8));
1658 aml_append(field
, aml_named_field("PRQD", 8));
1659 aml_append(field
, aml_reserved_field(0x20));
1660 aml_append(field
, aml_named_field("PRQE", 8));
1661 aml_append(field
, aml_named_field("PRQF", 8));
1662 aml_append(field
, aml_named_field("PRQG", 8));
1663 aml_append(field
, aml_named_field("PRQH", 8));
1664 aml_append(sb_scope
, field
);
1666 aml_append(sb_scope
, build_irq_status_method());
1667 aml_append(sb_scope
, build_iqcr_method(false));
1669 aml_append(sb_scope
, build_link_dev("LNKA", 0, aml_name("PRQA")));
1670 aml_append(sb_scope
, build_link_dev("LNKB", 1, aml_name("PRQB")));
1671 aml_append(sb_scope
, build_link_dev("LNKC", 2, aml_name("PRQC")));
1672 aml_append(sb_scope
, build_link_dev("LNKD", 3, aml_name("PRQD")));
1673 aml_append(sb_scope
, build_link_dev("LNKE", 4, aml_name("PRQE")));
1674 aml_append(sb_scope
, build_link_dev("LNKF", 5, aml_name("PRQF")));
1675 aml_append(sb_scope
, build_link_dev("LNKG", 6, aml_name("PRQG")));
1676 aml_append(sb_scope
, build_link_dev("LNKH", 7, aml_name("PRQH")));
1678 aml_append(sb_scope
, build_gsi_link_dev("GSIA", 0x10, 0x10));
1679 aml_append(sb_scope
, build_gsi_link_dev("GSIB", 0x11, 0x11));
1680 aml_append(sb_scope
, build_gsi_link_dev("GSIC", 0x12, 0x12));
1681 aml_append(sb_scope
, build_gsi_link_dev("GSID", 0x13, 0x13));
1682 aml_append(sb_scope
, build_gsi_link_dev("GSIE", 0x14, 0x14));
1683 aml_append(sb_scope
, build_gsi_link_dev("GSIF", 0x15, 0x15));
1684 aml_append(sb_scope
, build_gsi_link_dev("GSIG", 0x16, 0x16));
1685 aml_append(sb_scope
, build_gsi_link_dev("GSIH", 0x17, 0x17));
1687 aml_append(table
, sb_scope
);
1690 static void build_q35_isa_bridge(Aml
*table
)
1696 scope
= aml_scope("_SB.PCI0");
1697 dev
= aml_device("ISA");
1698 aml_append(dev
, aml_name_decl("_ADR", aml_int(0x001F0000)));
1700 /* ICH9 PCI to ISA irq remapping */
1701 aml_append(dev
, aml_operation_region("PIRQ", AML_PCI_CONFIG
,
1702 aml_int(0x60), 0x0C));
1704 aml_append(dev
, aml_operation_region("LPCD", AML_PCI_CONFIG
,
1705 aml_int(0x80), 0x02));
1706 field
= aml_field("LPCD", AML_ANY_ACC
, AML_NOLOCK
, AML_PRESERVE
);
1707 aml_append(field
, aml_named_field("COMA", 3));
1708 aml_append(field
, aml_reserved_field(1));
1709 aml_append(field
, aml_named_field("COMB", 3));
1710 aml_append(field
, aml_reserved_field(1));
1711 aml_append(field
, aml_named_field("LPTD", 2));
1712 aml_append(dev
, field
);
1714 aml_append(dev
, aml_operation_region("LPCE", AML_PCI_CONFIG
,
1715 aml_int(0x82), 0x02));
1717 field
= aml_field("LPCE", AML_ANY_ACC
, AML_NOLOCK
, AML_PRESERVE
);
1718 aml_append(field
, aml_named_field("CAEN", 1));
1719 aml_append(field
, aml_named_field("CBEN", 1));
1720 aml_append(field
, aml_named_field("LPEN", 1));
1721 aml_append(dev
, field
);
1723 aml_append(scope
, dev
);
1724 aml_append(table
, scope
);
1727 static void build_piix4_pm(Aml
*table
)
1732 scope
= aml_scope("_SB.PCI0");
1733 dev
= aml_device("PX13");
1734 aml_append(dev
, aml_name_decl("_ADR", aml_int(0x00010003)));
1736 aml_append(dev
, aml_operation_region("P13C", AML_PCI_CONFIG
,
1737 aml_int(0x00), 0xff));
1738 aml_append(scope
, dev
);
1739 aml_append(table
, scope
);
1742 static void build_piix4_isa_bridge(Aml
*table
)
1748 scope
= aml_scope("_SB.PCI0");
1749 dev
= aml_device("ISA");
1750 aml_append(dev
, aml_name_decl("_ADR", aml_int(0x00010000)));
1752 /* PIIX PCI to ISA irq remapping */
1753 aml_append(dev
, aml_operation_region("P40C", AML_PCI_CONFIG
,
1754 aml_int(0x60), 0x04));
1756 field
= aml_field("^PX13.P13C", AML_ANY_ACC
, AML_NOLOCK
, AML_PRESERVE
);
1757 /* Offset(0x5f),, 7, */
1758 aml_append(field
, aml_reserved_field(0x2f8));
1759 aml_append(field
, aml_reserved_field(7));
1760 aml_append(field
, aml_named_field("LPEN", 1));
1761 /* Offset(0x67),, 3, */
1762 aml_append(field
, aml_reserved_field(0x38));
1763 aml_append(field
, aml_reserved_field(3));
1764 aml_append(field
, aml_named_field("CAEN", 1));
1765 aml_append(field
, aml_reserved_field(3));
1766 aml_append(field
, aml_named_field("CBEN", 1));
1767 aml_append(dev
, field
);
1769 aml_append(scope
, dev
);
1770 aml_append(table
, scope
);
1773 static void build_piix4_pci_hotplug(Aml
*table
)
1779 scope
= aml_scope("_SB.PCI0");
1782 aml_operation_region("PCST", AML_SYSTEM_IO
, aml_int(0xae00), 0x08));
1783 field
= aml_field("PCST", AML_DWORD_ACC
, AML_NOLOCK
, AML_WRITE_AS_ZEROS
);
1784 aml_append(field
, aml_named_field("PCIU", 32));
1785 aml_append(field
, aml_named_field("PCID", 32));
1786 aml_append(scope
, field
);
1789 aml_operation_region("SEJ", AML_SYSTEM_IO
, aml_int(0xae08), 0x04));
1790 field
= aml_field("SEJ", AML_DWORD_ACC
, AML_NOLOCK
, AML_WRITE_AS_ZEROS
);
1791 aml_append(field
, aml_named_field("B0EJ", 32));
1792 aml_append(scope
, field
);
1795 aml_operation_region("BNMR", AML_SYSTEM_IO
, aml_int(0xae10), 0x04));
1796 field
= aml_field("BNMR", AML_DWORD_ACC
, AML_NOLOCK
, AML_WRITE_AS_ZEROS
);
1797 aml_append(field
, aml_named_field("BNUM", 32));
1798 aml_append(scope
, field
);
1800 aml_append(scope
, aml_mutex("BLCK", 0));
1802 method
= aml_method("PCEJ", 2, AML_NOTSERIALIZED
);
1803 aml_append(method
, aml_acquire(aml_name("BLCK"), 0xFFFF));
1804 aml_append(method
, aml_store(aml_arg(0), aml_name("BNUM")));
1806 aml_store(aml_shiftleft(aml_int(1), aml_arg(1)), aml_name("B0EJ")));
1807 aml_append(method
, aml_release(aml_name("BLCK")));
1808 aml_append(method
, aml_return(aml_int(0)));
1809 aml_append(scope
, method
);
1811 aml_append(table
, scope
);
1814 static Aml
*build_q35_osc_method(void)
1820 Aml
*a_cwd1
= aml_name("CDW1");
1821 Aml
*a_ctrl
= aml_local(0);
1823 method
= aml_method("_OSC", 4, AML_NOTSERIALIZED
);
1824 aml_append(method
, aml_create_dword_field(aml_arg(3), aml_int(0), "CDW1"));
1826 if_ctx
= aml_if(aml_equal(
1827 aml_arg(0), aml_touuid("33DB4D5B-1FF7-401C-9657-7441C03DD766")));
1828 aml_append(if_ctx
, aml_create_dword_field(aml_arg(3), aml_int(4), "CDW2"));
1829 aml_append(if_ctx
, aml_create_dword_field(aml_arg(3), aml_int(8), "CDW3"));
1831 aml_append(if_ctx
, aml_store(aml_name("CDW3"), a_ctrl
));
1834 * Always allow native PME, AER (no dependencies)
1835 * Allow SHPC (PCI bridges can have SHPC controller)
1837 aml_append(if_ctx
, aml_and(a_ctrl
, aml_int(0x1F), a_ctrl
));
1839 if_ctx2
= aml_if(aml_lnot(aml_equal(aml_arg(1), aml_int(1))));
1840 /* Unknown revision */
1841 aml_append(if_ctx2
, aml_or(a_cwd1
, aml_int(0x08), a_cwd1
));
1842 aml_append(if_ctx
, if_ctx2
);
1844 if_ctx2
= aml_if(aml_lnot(aml_equal(aml_name("CDW3"), a_ctrl
)));
1845 /* Capabilities bits were masked */
1846 aml_append(if_ctx2
, aml_or(a_cwd1
, aml_int(0x10), a_cwd1
));
1847 aml_append(if_ctx
, if_ctx2
);
1849 /* Update DWORD3 in the buffer */
1850 aml_append(if_ctx
, aml_store(a_ctrl
, aml_name("CDW3")));
1851 aml_append(method
, if_ctx
);
1853 else_ctx
= aml_else();
1854 /* Unrecognized UUID */
1855 aml_append(else_ctx
, aml_or(a_cwd1
, aml_int(4), a_cwd1
));
1856 aml_append(method
, else_ctx
);
1858 aml_append(method
, aml_return(aml_arg(3)));
1863 build_dsdt(GArray
*table_data
, BIOSLinker
*linker
,
1864 AcpiPmInfo
*pm
, AcpiMiscInfo
*misc
,
1865 Range
*pci_hole
, Range
*pci_hole64
, MachineState
*machine
)
1867 CrsRangeEntry
*entry
;
1868 Aml
*dsdt
, *sb_scope
, *scope
, *dev
, *method
, *field
, *pkg
, *crs
;
1869 CrsRangeSet crs_range_set
;
1870 PCMachineState
*pcms
= PC_MACHINE(machine
);
1871 PCMachineClass
*pcmc
= PC_MACHINE_GET_CLASS(machine
);
1872 uint32_t nr_mem
= machine
->ram_slots
;
1873 int root_bus_limit
= 0xFF;
1877 dsdt
= init_aml_allocator();
1879 /* Reserve space for header */
1880 acpi_data_push(dsdt
->buf
, sizeof(AcpiTableHeader
));
1882 build_dbg_aml(dsdt
);
1883 if (misc
->is_piix4
) {
1884 sb_scope
= aml_scope("_SB");
1885 dev
= aml_device("PCI0");
1886 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0A03")));
1887 aml_append(dev
, aml_name_decl("_ADR", aml_int(0)));
1888 aml_append(dev
, aml_name_decl("_UID", aml_int(1)));
1889 aml_append(sb_scope
, dev
);
1890 aml_append(dsdt
, sb_scope
);
1892 build_hpet_aml(dsdt
);
1893 build_piix4_pm(dsdt
);
1894 build_piix4_isa_bridge(dsdt
);
1895 build_isa_devices_aml(dsdt
);
1896 build_piix4_pci_hotplug(dsdt
);
1897 build_piix4_pci0_int(dsdt
);
1899 sb_scope
= aml_scope("_SB");
1900 dev
= aml_device("PCI0");
1901 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0A08")));
1902 aml_append(dev
, aml_name_decl("_CID", aml_eisaid("PNP0A03")));
1903 aml_append(dev
, aml_name_decl("_ADR", aml_int(0)));
1904 aml_append(dev
, aml_name_decl("_UID", aml_int(1)));
1905 aml_append(dev
, build_q35_osc_method());
1906 aml_append(sb_scope
, dev
);
1907 aml_append(dsdt
, sb_scope
);
1909 build_hpet_aml(dsdt
);
1910 build_q35_isa_bridge(dsdt
);
1911 build_isa_devices_aml(dsdt
);
1912 build_q35_pci0_int(dsdt
);
1915 if (pcmc
->legacy_cpu_hotplug
) {
1916 build_legacy_cpu_hotplug_aml(dsdt
, machine
, pm
->cpu_hp_io_base
);
1918 CPUHotplugFeatures opts
= {
1919 .apci_1_compatible
= true, .has_legacy_cphp
= true
1921 build_cpus_aml(dsdt
, machine
, opts
, pm
->cpu_hp_io_base
,
1922 "\\_SB.PCI0", "\\_GPE._E02");
1924 build_memory_hotplug_aml(dsdt
, nr_mem
, "\\_SB.PCI0", "\\_GPE._E03");
1926 scope
= aml_scope("_GPE");
1928 aml_append(scope
, aml_name_decl("_HID", aml_string("ACPI0006")));
1930 if (misc
->is_piix4
) {
1931 method
= aml_method("_E01", 0, AML_NOTSERIALIZED
);
1933 aml_acquire(aml_name("\\_SB.PCI0.BLCK"), 0xFFFF));
1934 aml_append(method
, aml_call0("\\_SB.PCI0.PCNT"));
1935 aml_append(method
, aml_release(aml_name("\\_SB.PCI0.BLCK")));
1936 aml_append(scope
, method
);
1939 if (pcms
->acpi_nvdimm_state
.is_enabled
) {
1940 method
= aml_method("_E04", 0, AML_NOTSERIALIZED
);
1941 aml_append(method
, aml_notify(aml_name("\\_SB.NVDR"),
1943 aml_append(scope
, method
);
1946 aml_append(dsdt
, scope
);
1948 crs_range_set_init(&crs_range_set
);
1949 bus
= PC_MACHINE(machine
)->bus
;
1951 QLIST_FOREACH(bus
, &bus
->child
, sibling
) {
1952 uint8_t bus_num
= pci_bus_num(bus
);
1953 uint8_t numa_node
= pci_bus_numa_node(bus
);
1955 /* look only for expander root buses */
1956 if (!pci_bus_is_root(bus
)) {
1960 if (bus_num
< root_bus_limit
) {
1961 root_bus_limit
= bus_num
- 1;
1964 scope
= aml_scope("\\_SB");
1965 dev
= aml_device("PC%.02X", bus_num
);
1966 aml_append(dev
, aml_name_decl("_UID", aml_int(bus_num
)));
1967 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0A03")));
1968 aml_append(dev
, aml_name_decl("_BBN", aml_int(bus_num
)));
1969 if (pci_bus_is_express(bus
)) {
1970 aml_append(dev
, build_q35_osc_method());
1973 if (numa_node
!= NUMA_NODE_UNASSIGNED
) {
1974 aml_append(dev
, aml_name_decl("_PXM", aml_int(numa_node
)));
1977 aml_append(dev
, build_prt(false));
1978 crs
= build_crs(PCI_HOST_BRIDGE(BUS(bus
)->parent
), &crs_range_set
);
1979 aml_append(dev
, aml_name_decl("_CRS", crs
));
1980 aml_append(scope
, dev
);
1981 aml_append(dsdt
, scope
);
1985 scope
= aml_scope("\\_SB.PCI0");
1986 /* build PCI0._CRS */
1987 crs
= aml_resource_template();
1989 aml_word_bus_number(AML_MIN_FIXED
, AML_MAX_FIXED
, AML_POS_DECODE
,
1990 0x0000, 0x0, root_bus_limit
,
1991 0x0000, root_bus_limit
+ 1));
1992 aml_append(crs
, aml_io(AML_DECODE16
, 0x0CF8, 0x0CF8, 0x01, 0x08));
1995 aml_word_io(AML_MIN_FIXED
, AML_MAX_FIXED
,
1996 AML_POS_DECODE
, AML_ENTIRE_RANGE
,
1997 0x0000, 0x0000, 0x0CF7, 0x0000, 0x0CF8));
1999 crs_replace_with_free_ranges(crs_range_set
.io_ranges
, 0x0D00, 0xFFFF);
2000 for (i
= 0; i
< crs_range_set
.io_ranges
->len
; i
++) {
2001 entry
= g_ptr_array_index(crs_range_set
.io_ranges
, i
);
2003 aml_word_io(AML_MIN_FIXED
, AML_MAX_FIXED
,
2004 AML_POS_DECODE
, AML_ENTIRE_RANGE
,
2005 0x0000, entry
->base
, entry
->limit
,
2006 0x0000, entry
->limit
- entry
->base
+ 1));
2010 aml_dword_memory(AML_POS_DECODE
, AML_MIN_FIXED
, AML_MAX_FIXED
,
2011 AML_CACHEABLE
, AML_READ_WRITE
,
2012 0, 0x000A0000, 0x000BFFFF, 0, 0x00020000));
2014 crs_replace_with_free_ranges(crs_range_set
.mem_ranges
,
2015 range_lob(pci_hole
),
2016 range_upb(pci_hole
));
2017 for (i
= 0; i
< crs_range_set
.mem_ranges
->len
; i
++) {
2018 entry
= g_ptr_array_index(crs_range_set
.mem_ranges
, i
);
2020 aml_dword_memory(AML_POS_DECODE
, AML_MIN_FIXED
, AML_MAX_FIXED
,
2021 AML_NON_CACHEABLE
, AML_READ_WRITE
,
2022 0, entry
->base
, entry
->limit
,
2023 0, entry
->limit
- entry
->base
+ 1));
2026 if (!range_is_empty(pci_hole64
)) {
2027 crs_replace_with_free_ranges(crs_range_set
.mem_64bit_ranges
,
2028 range_lob(pci_hole64
),
2029 range_upb(pci_hole64
));
2030 for (i
= 0; i
< crs_range_set
.mem_64bit_ranges
->len
; i
++) {
2031 entry
= g_ptr_array_index(crs_range_set
.mem_64bit_ranges
, i
);
2033 aml_qword_memory(AML_POS_DECODE
, AML_MIN_FIXED
,
2035 AML_CACHEABLE
, AML_READ_WRITE
,
2036 0, entry
->base
, entry
->limit
,
2037 0, entry
->limit
- entry
->base
+ 1));
2041 if (misc
->tpm_version
!= TPM_VERSION_UNSPEC
) {
2042 aml_append(crs
, aml_memory32_fixed(TPM_TIS_ADDR_BASE
,
2043 TPM_TIS_ADDR_SIZE
, AML_READ_WRITE
));
2045 aml_append(scope
, aml_name_decl("_CRS", crs
));
2047 /* reserve GPE0 block resources */
2048 dev
= aml_device("GPE0");
2049 aml_append(dev
, aml_name_decl("_HID", aml_string("PNP0A06")));
2050 aml_append(dev
, aml_name_decl("_UID", aml_string("GPE0 resources")));
2051 /* device present, functioning, decoding, not shown in UI */
2052 aml_append(dev
, aml_name_decl("_STA", aml_int(0xB)));
2053 crs
= aml_resource_template();
2055 aml_io(AML_DECODE16
, pm
->gpe0_blk
, pm
->gpe0_blk
, 1, pm
->gpe0_blk_len
)
2057 aml_append(dev
, aml_name_decl("_CRS", crs
));
2058 aml_append(scope
, dev
);
2060 crs_range_set_free(&crs_range_set
);
2062 /* reserve PCIHP resources */
2063 if (pm
->pcihp_io_len
) {
2064 dev
= aml_device("PHPR");
2065 aml_append(dev
, aml_name_decl("_HID", aml_string("PNP0A06")));
2067 aml_name_decl("_UID", aml_string("PCI Hotplug resources")));
2068 /* device present, functioning, decoding, not shown in UI */
2069 aml_append(dev
, aml_name_decl("_STA", aml_int(0xB)));
2070 crs
= aml_resource_template();
2072 aml_io(AML_DECODE16
, pm
->pcihp_io_base
, pm
->pcihp_io_base
, 1,
2075 aml_append(dev
, aml_name_decl("_CRS", crs
));
2076 aml_append(scope
, dev
);
2078 aml_append(dsdt
, scope
);
2080 /* create S3_ / S4_ / S5_ packages if necessary */
2081 scope
= aml_scope("\\");
2082 if (!pm
->s3_disabled
) {
2083 pkg
= aml_package(4);
2084 aml_append(pkg
, aml_int(1)); /* PM1a_CNT.SLP_TYP */
2085 aml_append(pkg
, aml_int(1)); /* PM1b_CNT.SLP_TYP, FIXME: not impl. */
2086 aml_append(pkg
, aml_int(0)); /* reserved */
2087 aml_append(pkg
, aml_int(0)); /* reserved */
2088 aml_append(scope
, aml_name_decl("_S3", pkg
));
2091 if (!pm
->s4_disabled
) {
2092 pkg
= aml_package(4);
2093 aml_append(pkg
, aml_int(pm
->s4_val
)); /* PM1a_CNT.SLP_TYP */
2094 /* PM1b_CNT.SLP_TYP, FIXME: not impl. */
2095 aml_append(pkg
, aml_int(pm
->s4_val
));
2096 aml_append(pkg
, aml_int(0)); /* reserved */
2097 aml_append(pkg
, aml_int(0)); /* reserved */
2098 aml_append(scope
, aml_name_decl("_S4", pkg
));
2101 pkg
= aml_package(4);
2102 aml_append(pkg
, aml_int(0)); /* PM1a_CNT.SLP_TYP */
2103 aml_append(pkg
, aml_int(0)); /* PM1b_CNT.SLP_TYP not impl. */
2104 aml_append(pkg
, aml_int(0)); /* reserved */
2105 aml_append(pkg
, aml_int(0)); /* reserved */
2106 aml_append(scope
, aml_name_decl("_S5", pkg
));
2107 aml_append(dsdt
, scope
);
2109 /* create fw_cfg node, unconditionally */
2111 /* when using port i/o, the 8-bit data register *always* overlaps
2112 * with half of the 16-bit control register. Hence, the total size
2113 * of the i/o region used is FW_CFG_CTL_SIZE; when using DMA, the
2114 * DMA control register is located at FW_CFG_DMA_IO_BASE + 4 */
2115 uint8_t io_size
= object_property_get_bool(OBJECT(pcms
->fw_cfg
),
2116 "dma_enabled", NULL
) ?
2117 ROUND_UP(FW_CFG_CTL_SIZE
, 4) + sizeof(dma_addr_t
) :
2120 scope
= aml_scope("\\_SB.PCI0");
2121 dev
= aml_device("FWCF");
2123 aml_append(dev
, aml_name_decl("_HID", aml_string("QEMU0002")));
2125 /* device present, functioning, decoding, not shown in UI */
2126 aml_append(dev
, aml_name_decl("_STA", aml_int(0xB)));
2128 crs
= aml_resource_template();
2130 aml_io(AML_DECODE16
, FW_CFG_IO_BASE
, FW_CFG_IO_BASE
, 0x01, io_size
)
2132 aml_append(dev
, aml_name_decl("_CRS", crs
));
2134 aml_append(scope
, dev
);
2135 aml_append(dsdt
, scope
);
2138 if (misc
->applesmc_io_base
) {
2139 scope
= aml_scope("\\_SB.PCI0.ISA");
2140 dev
= aml_device("SMC");
2142 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("APP0001")));
2143 /* device present, functioning, decoding, not shown in UI */
2144 aml_append(dev
, aml_name_decl("_STA", aml_int(0xB)));
2146 crs
= aml_resource_template();
2148 aml_io(AML_DECODE16
, misc
->applesmc_io_base
, misc
->applesmc_io_base
,
2149 0x01, APPLESMC_MAX_DATA_LENGTH
)
2151 aml_append(crs
, aml_irq_no_flags(6));
2152 aml_append(dev
, aml_name_decl("_CRS", crs
));
2154 aml_append(scope
, dev
);
2155 aml_append(dsdt
, scope
);
2158 if (misc
->pvpanic_port
) {
2159 scope
= aml_scope("\\_SB.PCI0.ISA");
2161 dev
= aml_device("PEVT");
2162 aml_append(dev
, aml_name_decl("_HID", aml_string("QEMU0001")));
2164 crs
= aml_resource_template();
2166 aml_io(AML_DECODE16
, misc
->pvpanic_port
, misc
->pvpanic_port
, 1, 1)
2168 aml_append(dev
, aml_name_decl("_CRS", crs
));
2170 aml_append(dev
, aml_operation_region("PEOR", AML_SYSTEM_IO
,
2171 aml_int(misc
->pvpanic_port
), 1));
2172 field
= aml_field("PEOR", AML_BYTE_ACC
, AML_NOLOCK
, AML_PRESERVE
);
2173 aml_append(field
, aml_named_field("PEPT", 8));
2174 aml_append(dev
, field
);
2176 /* device present, functioning, decoding, shown in UI */
2177 aml_append(dev
, aml_name_decl("_STA", aml_int(0xF)));
2179 method
= aml_method("RDPT", 0, AML_NOTSERIALIZED
);
2180 aml_append(method
, aml_store(aml_name("PEPT"), aml_local(0)));
2181 aml_append(method
, aml_return(aml_local(0)));
2182 aml_append(dev
, method
);
2184 method
= aml_method("WRPT", 1, AML_NOTSERIALIZED
);
2185 aml_append(method
, aml_store(aml_arg(0), aml_name("PEPT")));
2186 aml_append(dev
, method
);
2188 aml_append(scope
, dev
);
2189 aml_append(dsdt
, scope
);
2192 sb_scope
= aml_scope("\\_SB");
2197 pci_host
= acpi_get_i386_pci_host();
2199 bus
= PCI_HOST_BRIDGE(pci_host
)->bus
;
2203 Aml
*scope
= aml_scope("PCI0");
2204 /* Scan all PCI buses. Generate tables to support hotplug. */
2205 build_append_pci_bus_devices(scope
, bus
, pm
->pcihp_bridge_en
);
2207 if (misc
->tpm_version
!= TPM_VERSION_UNSPEC
) {
2208 dev
= aml_device("ISA.TPM");
2209 aml_append(dev
, aml_name_decl("_HID", aml_eisaid("PNP0C31")));
2210 aml_append(dev
, aml_name_decl("_STA", aml_int(0xF)));
2211 crs
= aml_resource_template();
2212 aml_append(crs
, aml_memory32_fixed(TPM_TIS_ADDR_BASE
,
2213 TPM_TIS_ADDR_SIZE
, AML_READ_WRITE
));
2215 FIXME: TPM_TIS_IRQ=5 conflicts with PNP0C0F irqs,
2216 Rewrite to take IRQ from TPM device model and
2217 fix default IRQ value there to use some unused IRQ
2219 /* aml_append(crs, aml_irq_no_flags(TPM_TIS_IRQ)); */
2220 aml_append(dev
, aml_name_decl("_CRS", crs
));
2221 aml_append(scope
, dev
);
2224 aml_append(sb_scope
, scope
);
2227 aml_append(dsdt
, sb_scope
);
2229 /* copy AML table into ACPI tables blob and patch header there */
2230 g_array_append_vals(table_data
, dsdt
->buf
->data
, dsdt
->buf
->len
);
2231 build_header(linker
, table_data
,
2232 (void *)(table_data
->data
+ table_data
->len
- dsdt
->buf
->len
),
2233 "DSDT", dsdt
->buf
->len
, 1, NULL
, NULL
);
2234 free_aml_allocator();
2238 build_hpet(GArray
*table_data
, BIOSLinker
*linker
)
2242 hpet
= acpi_data_push(table_data
, sizeof(*hpet
));
2243 /* Note timer_block_id value must be kept in sync with value advertised by
2246 hpet
->timer_block_id
= cpu_to_le32(0x8086a201);
2247 hpet
->addr
.address
= cpu_to_le64(HPET_BASE
);
2248 build_header(linker
, table_data
,
2249 (void *)hpet
, "HPET", sizeof(*hpet
), 1, NULL
, NULL
);
2253 build_tpm_tcpa(GArray
*table_data
, BIOSLinker
*linker
, GArray
*tcpalog
)
2255 Acpi20Tcpa
*tcpa
= acpi_data_push(table_data
, sizeof *tcpa
);
2256 unsigned log_addr_size
= sizeof(tcpa
->log_area_start_address
);
2257 unsigned log_addr_offset
=
2258 (char *)&tcpa
->log_area_start_address
- table_data
->data
;
2260 tcpa
->platform_class
= cpu_to_le16(TPM_TCPA_ACPI_CLASS_CLIENT
);
2261 tcpa
->log_area_minimum_length
= cpu_to_le32(TPM_LOG_AREA_MINIMUM_SIZE
);
2262 acpi_data_push(tcpalog
, le32_to_cpu(tcpa
->log_area_minimum_length
));
2264 bios_linker_loader_alloc(linker
, ACPI_BUILD_TPMLOG_FILE
, tcpalog
, 1,
2265 false /* high memory */);
2267 /* log area start address to be filled by Guest linker */
2268 bios_linker_loader_add_pointer(linker
,
2269 ACPI_BUILD_TABLE_FILE
, log_addr_offset
, log_addr_size
,
2270 ACPI_BUILD_TPMLOG_FILE
, 0);
2272 build_header(linker
, table_data
,
2273 (void *)tcpa
, "TCPA", sizeof(*tcpa
), 2, NULL
, NULL
);
2277 build_tpm2(GArray
*table_data
, BIOSLinker
*linker
)
2279 Acpi20TPM2
*tpm2_ptr
;
2281 tpm2_ptr
= acpi_data_push(table_data
, sizeof *tpm2_ptr
);
2283 tpm2_ptr
->platform_class
= cpu_to_le16(TPM2_ACPI_CLASS_CLIENT
);
2284 tpm2_ptr
->control_area_address
= cpu_to_le64(0);
2285 tpm2_ptr
->start_method
= cpu_to_le32(TPM2_START_METHOD_MMIO
);
2287 build_header(linker
, table_data
,
2288 (void *)tpm2_ptr
, "TPM2", sizeof(*tpm2_ptr
), 4, NULL
, NULL
);
2291 #define HOLE_640K_START (640 * 1024)
2292 #define HOLE_640K_END (1024 * 1024)
2295 build_srat(GArray
*table_data
, BIOSLinker
*linker
, MachineState
*machine
)
2297 AcpiSystemResourceAffinityTable
*srat
;
2298 AcpiSratMemoryAffinity
*numamem
;
2301 int srat_start
, numa_start
, slots
;
2302 uint64_t mem_len
, mem_base
, next_base
;
2303 MachineClass
*mc
= MACHINE_GET_CLASS(machine
);
2304 const CPUArchIdList
*apic_ids
= mc
->possible_cpu_arch_ids(machine
);
2305 PCMachineState
*pcms
= PC_MACHINE(machine
);
2306 ram_addr_t hotplugabble_address_space_size
=
2307 object_property_get_int(OBJECT(pcms
), PC_MACHINE_MEMHP_REGION_SIZE
,
2310 srat_start
= table_data
->len
;
2312 srat
= acpi_data_push(table_data
, sizeof *srat
);
2313 srat
->reserved1
= cpu_to_le32(1);
2315 for (i
= 0; i
< apic_ids
->len
; i
++) {
2316 int node_id
= apic_ids
->cpus
[i
].props
.node_id
;
2317 uint32_t apic_id
= apic_ids
->cpus
[i
].arch_id
;
2319 if (apic_id
< 255) {
2320 AcpiSratProcessorAffinity
*core
;
2322 core
= acpi_data_push(table_data
, sizeof *core
);
2323 core
->type
= ACPI_SRAT_PROCESSOR_APIC
;
2324 core
->length
= sizeof(*core
);
2325 core
->local_apic_id
= apic_id
;
2326 core
->proximity_lo
= node_id
;
2327 memset(core
->proximity_hi
, 0, 3);
2328 core
->local_sapic_eid
= 0;
2329 core
->flags
= cpu_to_le32(1);
2331 AcpiSratProcessorX2ApicAffinity
*core
;
2333 core
= acpi_data_push(table_data
, sizeof *core
);
2334 core
->type
= ACPI_SRAT_PROCESSOR_x2APIC
;
2335 core
->length
= sizeof(*core
);
2336 core
->x2apic_id
= cpu_to_le32(apic_id
);
2337 core
->proximity_domain
= cpu_to_le32(node_id
);
2338 core
->flags
= cpu_to_le32(1);
2343 /* the memory map is a bit tricky, it contains at least one hole
2344 * from 640k-1M and possibly another one from 3.5G-4G.
2347 numa_start
= table_data
->len
;
2349 for (i
= 1; i
< pcms
->numa_nodes
+ 1; ++i
) {
2350 mem_base
= next_base
;
2351 mem_len
= pcms
->node_mem
[i
- 1];
2352 next_base
= mem_base
+ mem_len
;
2354 /* Cut out the 640K hole */
2355 if (mem_base
<= HOLE_640K_START
&&
2356 next_base
> HOLE_640K_START
) {
2357 mem_len
-= next_base
- HOLE_640K_START
;
2359 numamem
= acpi_data_push(table_data
, sizeof *numamem
);
2360 build_srat_memory(numamem
, mem_base
, mem_len
, i
- 1,
2361 MEM_AFFINITY_ENABLED
);
2364 /* Check for the rare case: 640K < RAM < 1M */
2365 if (next_base
<= HOLE_640K_END
) {
2366 next_base
= HOLE_640K_END
;
2369 mem_base
= HOLE_640K_END
;
2370 mem_len
= next_base
- HOLE_640K_END
;
2373 /* Cut out the ACPI_PCI hole */
2374 if (mem_base
<= pcms
->below_4g_mem_size
&&
2375 next_base
> pcms
->below_4g_mem_size
) {
2376 mem_len
-= next_base
- pcms
->below_4g_mem_size
;
2378 numamem
= acpi_data_push(table_data
, sizeof *numamem
);
2379 build_srat_memory(numamem
, mem_base
, mem_len
, i
- 1,
2380 MEM_AFFINITY_ENABLED
);
2382 mem_base
= 1ULL << 32;
2383 mem_len
= next_base
- pcms
->below_4g_mem_size
;
2384 next_base
+= (1ULL << 32) - pcms
->below_4g_mem_size
;
2386 numamem
= acpi_data_push(table_data
, sizeof *numamem
);
2387 build_srat_memory(numamem
, mem_base
, mem_len
, i
- 1,
2388 MEM_AFFINITY_ENABLED
);
2390 slots
= (table_data
->len
- numa_start
) / sizeof *numamem
;
2391 for (; slots
< pcms
->numa_nodes
+ 2; slots
++) {
2392 numamem
= acpi_data_push(table_data
, sizeof *numamem
);
2393 build_srat_memory(numamem
, 0, 0, 0, MEM_AFFINITY_NOFLAGS
);
2397 * Entry is required for Windows to enable memory hotplug in OS
2398 * and for Linux to enable SWIOTLB when booted with less than
2399 * 4G of RAM. Windows works better if the entry sets proximity
2400 * to the highest NUMA node in the machine.
2401 * Memory devices may override proximity set by this entry,
2402 * providing _PXM method if necessary.
2404 if (hotplugabble_address_space_size
) {
2405 numamem
= acpi_data_push(table_data
, sizeof *numamem
);
2406 build_srat_memory(numamem
, pcms
->hotplug_memory
.base
,
2407 hotplugabble_address_space_size
, pcms
->numa_nodes
- 1,
2408 MEM_AFFINITY_HOTPLUGGABLE
| MEM_AFFINITY_ENABLED
);
2411 build_header(linker
, table_data
,
2412 (void *)(table_data
->data
+ srat_start
),
2414 table_data
->len
- srat_start
, 1, NULL
, NULL
);
2418 build_mcfg_q35(GArray
*table_data
, BIOSLinker
*linker
, AcpiMcfgInfo
*info
)
2420 AcpiTableMcfg
*mcfg
;
2422 int len
= sizeof(*mcfg
) + 1 * sizeof(mcfg
->allocation
[0]);
2424 mcfg
= acpi_data_push(table_data
, len
);
2425 mcfg
->allocation
[0].address
= cpu_to_le64(info
->mcfg_base
);
2426 /* Only a single allocation so no need to play with segments */
2427 mcfg
->allocation
[0].pci_segment
= cpu_to_le16(0);
2428 mcfg
->allocation
[0].start_bus_number
= 0;
2429 mcfg
->allocation
[0].end_bus_number
= PCIE_MMCFG_BUS(info
->mcfg_size
- 1);
2431 /* MCFG is used for ECAM which can be enabled or disabled by guest.
2432 * To avoid table size changes (which create migration issues),
2433 * always create the table even if there are no allocations,
2434 * but set the signature to a reserved value in this case.
2435 * ACPI spec requires OSPMs to ignore such tables.
2437 if (info
->mcfg_base
== PCIE_BASE_ADDR_UNMAPPED
) {
2438 /* Reserved signature: ignored by OSPM */
2443 build_header(linker
, table_data
, (void *)mcfg
, sig
, len
, 1, NULL
, NULL
);
2447 * VT-d spec 8.1 DMA Remapping Reporting Structure
2448 * (version Oct. 2014 or later)
2451 build_dmar_q35(GArray
*table_data
, BIOSLinker
*linker
)
2453 int dmar_start
= table_data
->len
;
2455 AcpiTableDmar
*dmar
;
2456 AcpiDmarHardwareUnit
*drhd
;
2457 AcpiDmarRootPortATS
*atsr
;
2458 uint8_t dmar_flags
= 0;
2459 X86IOMMUState
*iommu
= x86_iommu_get_default();
2460 AcpiDmarDeviceScope
*scope
= NULL
;
2461 /* Root complex IOAPIC use one path[0] only */
2462 size_t ioapic_scope_size
= sizeof(*scope
) + sizeof(scope
->path
[0]);
2465 if (iommu
->intr_supported
) {
2466 dmar_flags
|= 0x1; /* Flags: 0x1: INT_REMAP */
2469 dmar
= acpi_data_push(table_data
, sizeof(*dmar
));
2470 dmar
->host_address_width
= VTD_HOST_ADDRESS_WIDTH
- 1;
2471 dmar
->flags
= dmar_flags
;
2473 /* DMAR Remapping Hardware Unit Definition structure */
2474 drhd
= acpi_data_push(table_data
, sizeof(*drhd
) + ioapic_scope_size
);
2475 drhd
->type
= cpu_to_le16(ACPI_DMAR_TYPE_HARDWARE_UNIT
);
2476 drhd
->length
= cpu_to_le16(sizeof(*drhd
) + ioapic_scope_size
);
2477 drhd
->flags
= ACPI_DMAR_INCLUDE_PCI_ALL
;
2478 drhd
->pci_segment
= cpu_to_le16(0);
2479 drhd
->address
= cpu_to_le64(Q35_HOST_BRIDGE_IOMMU_ADDR
);
2481 /* Scope definition for the root-complex IOAPIC. See VT-d spec
2482 * 8.3.1 (version Oct. 2014 or later). */
2483 scope
= &drhd
->scope
[0];
2484 scope
->entry_type
= 0x03; /* Type: 0x03 for IOAPIC */
2485 scope
->length
= ioapic_scope_size
;
2486 scope
->enumeration_id
= ACPI_BUILD_IOAPIC_ID
;
2487 scope
->bus
= Q35_PSEUDO_BUS_PLATFORM
;
2488 scope
->path
[0].device
= PCI_SLOT(Q35_PSEUDO_DEVFN_IOAPIC
);
2489 scope
->path
[0].function
= PCI_FUNC(Q35_PSEUDO_DEVFN_IOAPIC
);
2491 if (iommu
->dt_supported
) {
2492 atsr
= acpi_data_push(table_data
, sizeof(*atsr
));
2493 atsr
->type
= cpu_to_le16(ACPI_DMAR_TYPE_ATSR
);
2494 atsr
->length
= cpu_to_le16(sizeof(*atsr
));
2495 atsr
->flags
= ACPI_DMAR_ATSR_ALL_PORTS
;
2496 atsr
->pci_segment
= cpu_to_le16(0);
2499 build_header(linker
, table_data
, (void *)(table_data
->data
+ dmar_start
),
2500 "DMAR", table_data
->len
- dmar_start
, 1, NULL
, NULL
);
2503 * IVRS table as specified in AMD IOMMU Specification v2.62, Section 5.2
2504 * accessible here http://support.amd.com/TechDocs/48882_IOMMU.pdf
2507 build_amd_iommu(GArray
*table_data
, BIOSLinker
*linker
)
2509 int iommu_start
= table_data
->len
;
2510 AMDVIState
*s
= AMD_IOMMU_DEVICE(x86_iommu_get_default());
2513 acpi_data_push(table_data
, sizeof(AcpiTableHeader
));
2514 /* IVinfo - IO virtualization information common to all
2515 * IOMMU units in a system
2517 build_append_int_noprefix(table_data
, 40UL << 8/* PASize */, 4);
2519 build_append_int_noprefix(table_data
, 0, 8);
2521 /* IVHD definition - type 10h */
2522 build_append_int_noprefix(table_data
, 0x10, 1);
2523 /* virtualization flags */
2524 build_append_int_noprefix(table_data
,
2525 (1UL << 0) | /* HtTunEn */
2526 (1UL << 4) | /* iotblSup */
2527 (1UL << 6) | /* PrefSup */
2528 (1UL << 7), /* PPRSup */
2531 build_append_int_noprefix(table_data
, 0x24, 2);
2533 build_append_int_noprefix(table_data
, s
->devid
, 2);
2534 /* Capability offset */
2535 build_append_int_noprefix(table_data
, s
->capab_offset
, 2);
2536 /* IOMMU base address */
2537 build_append_int_noprefix(table_data
, s
->mmio
.addr
, 8);
2538 /* PCI Segment Group */
2539 build_append_int_noprefix(table_data
, 0, 2);
2541 build_append_int_noprefix(table_data
, 0, 2);
2542 /* IOMMU Feature Reporting */
2543 build_append_int_noprefix(table_data
,
2544 (48UL << 30) | /* HATS */
2545 (48UL << 28) | /* GATS */
2546 (1UL << 2), /* GTSup */
2549 * Type 1 device entry reporting all devices
2550 * These are 4-byte device entries currently reporting the range of
2551 * Refer to Spec - Table 95:IVHD Device Entry Type Codes(4-byte)
2553 build_append_int_noprefix(table_data
, 0x0000001, 4);
2555 build_header(linker
, table_data
, (void *)(table_data
->data
+ iommu_start
),
2556 "IVRS", table_data
->len
- iommu_start
, 1, NULL
, NULL
);
2560 build_rsdp(GArray
*rsdp_table
, BIOSLinker
*linker
, unsigned rsdt_tbl_offset
)
2562 AcpiRsdpDescriptor
*rsdp
= acpi_data_push(rsdp_table
, sizeof *rsdp
);
2563 unsigned rsdt_pa_size
= sizeof(rsdp
->rsdt_physical_address
);
2564 unsigned rsdt_pa_offset
=
2565 (char *)&rsdp
->rsdt_physical_address
- rsdp_table
->data
;
2567 bios_linker_loader_alloc(linker
, ACPI_BUILD_RSDP_FILE
, rsdp_table
, 16,
2568 true /* fseg memory */);
2570 memcpy(&rsdp
->signature
, "RSD PTR ", 8);
2571 memcpy(rsdp
->oem_id
, ACPI_BUILD_APPNAME6
, 6);
2572 /* Address to be filled by Guest linker */
2573 bios_linker_loader_add_pointer(linker
,
2574 ACPI_BUILD_RSDP_FILE
, rsdt_pa_offset
, rsdt_pa_size
,
2575 ACPI_BUILD_TABLE_FILE
, rsdt_tbl_offset
);
2577 /* Checksum to be filled by Guest linker */
2578 bios_linker_loader_add_checksum(linker
, ACPI_BUILD_RSDP_FILE
,
2579 (char *)rsdp
- rsdp_table
->data
, sizeof *rsdp
,
2580 (char *)&rsdp
->checksum
- rsdp_table
->data
);
2586 struct AcpiBuildState
{
2587 /* Copy of table in RAM (for patching). */
2588 MemoryRegion
*table_mr
;
2589 /* Is table patched? */
2592 MemoryRegion
*rsdp_mr
;
2593 MemoryRegion
*linker_mr
;
2596 static bool acpi_get_mcfg(AcpiMcfgInfo
*mcfg
)
2601 pci_host
= acpi_get_i386_pci_host();
2604 o
= object_property_get_qobject(pci_host
, PCIE_HOST_MCFG_BASE
, NULL
);
2608 mcfg
->mcfg_base
= qnum_get_uint(qobject_to_qnum(o
));
2611 o
= object_property_get_qobject(pci_host
, PCIE_HOST_MCFG_SIZE
, NULL
);
2613 mcfg
->mcfg_size
= qnum_get_uint(qobject_to_qnum(o
));
2619 void acpi_build(AcpiBuildTables
*tables
, MachineState
*machine
)
2621 PCMachineState
*pcms
= PC_MACHINE(machine
);
2622 PCMachineClass
*pcmc
= PC_MACHINE_GET_CLASS(pcms
);
2623 GArray
*table_offsets
;
2624 unsigned facs
, dsdt
, rsdt
, fadt
;
2628 Range pci_hole
, pci_hole64
;
2631 GArray
*tables_blob
= tables
->table_data
;
2632 AcpiSlicOem slic_oem
= { .id
= NULL
, .table_id
= NULL
};
2633 Object
*vmgenid_dev
;
2635 acpi_get_pm_info(&pm
);
2636 acpi_get_misc_info(&misc
);
2637 acpi_get_pci_holes(&pci_hole
, &pci_hole64
);
2638 acpi_get_slic_oem(&slic_oem
);
2640 table_offsets
= g_array_new(false, true /* clear */,
2642 ACPI_BUILD_DPRINTF("init ACPI tables\n");
2644 bios_linker_loader_alloc(tables
->linker
,
2645 ACPI_BUILD_TABLE_FILE
, tables_blob
,
2646 64 /* Ensure FACS is aligned */,
2647 false /* high memory */);
2650 * FACS is pointed to by FADT.
2651 * We place it first since it's the only table that has alignment
2654 facs
= tables_blob
->len
;
2655 build_facs(tables_blob
, tables
->linker
);
2657 /* DSDT is pointed to by FADT */
2658 dsdt
= tables_blob
->len
;
2659 build_dsdt(tables_blob
, tables
->linker
, &pm
, &misc
,
2660 &pci_hole
, &pci_hole64
, machine
);
2662 /* Count the size of the DSDT and SSDT, we will need it for legacy
2663 * sizing of ACPI tables.
2665 aml_len
+= tables_blob
->len
- dsdt
;
2667 /* ACPI tables pointed to by RSDT */
2668 fadt
= tables_blob
->len
;
2669 acpi_add_table(table_offsets
, tables_blob
);
2670 build_fadt(tables_blob
, tables
->linker
, &pm
, facs
, dsdt
,
2671 slic_oem
.id
, slic_oem
.table_id
);
2672 aml_len
+= tables_blob
->len
- fadt
;
2674 acpi_add_table(table_offsets
, tables_blob
);
2675 build_madt(tables_blob
, tables
->linker
, pcms
);
2677 vmgenid_dev
= find_vmgenid_dev();
2679 acpi_add_table(table_offsets
, tables_blob
);
2680 vmgenid_build_acpi(VMGENID(vmgenid_dev
), tables_blob
,
2681 tables
->vmgenid
, tables
->linker
);
2684 if (misc
.has_hpet
) {
2685 acpi_add_table(table_offsets
, tables_blob
);
2686 build_hpet(tables_blob
, tables
->linker
);
2688 if (misc
.tpm_version
!= TPM_VERSION_UNSPEC
) {
2689 acpi_add_table(table_offsets
, tables_blob
);
2690 build_tpm_tcpa(tables_blob
, tables
->linker
, tables
->tcpalog
);
2692 if (misc
.tpm_version
== TPM_VERSION_2_0
) {
2693 acpi_add_table(table_offsets
, tables_blob
);
2694 build_tpm2(tables_blob
, tables
->linker
);
2697 if (pcms
->numa_nodes
) {
2698 acpi_add_table(table_offsets
, tables_blob
);
2699 build_srat(tables_blob
, tables
->linker
, machine
);
2700 if (have_numa_distance
) {
2701 acpi_add_table(table_offsets
, tables_blob
);
2702 build_slit(tables_blob
, tables
->linker
);
2705 if (acpi_get_mcfg(&mcfg
)) {
2706 acpi_add_table(table_offsets
, tables_blob
);
2707 build_mcfg_q35(tables_blob
, tables
->linker
, &mcfg
);
2709 if (x86_iommu_get_default()) {
2710 IommuType IOMMUType
= x86_iommu_get_type();
2711 if (IOMMUType
== TYPE_AMD
) {
2712 acpi_add_table(table_offsets
, tables_blob
);
2713 build_amd_iommu(tables_blob
, tables
->linker
);
2714 } else if (IOMMUType
== TYPE_INTEL
) {
2715 acpi_add_table(table_offsets
, tables_blob
);
2716 build_dmar_q35(tables_blob
, tables
->linker
);
2719 if (pcms
->acpi_nvdimm_state
.is_enabled
) {
2720 nvdimm_build_acpi(table_offsets
, tables_blob
, tables
->linker
,
2721 &pcms
->acpi_nvdimm_state
, machine
->ram_slots
);
2724 /* Add tables supplied by user (if any) */
2725 for (u
= acpi_table_first(); u
; u
= acpi_table_next(u
)) {
2726 unsigned len
= acpi_table_len(u
);
2728 acpi_add_table(table_offsets
, tables_blob
);
2729 g_array_append_vals(tables_blob
, u
, len
);
2732 /* RSDT is pointed to by RSDP */
2733 rsdt
= tables_blob
->len
;
2734 build_rsdt(tables_blob
, tables
->linker
, table_offsets
,
2735 slic_oem
.id
, slic_oem
.table_id
);
2737 /* RSDP is in FSEG memory, so allocate it separately */
2738 build_rsdp(tables
->rsdp
, tables
->linker
, rsdt
);
2740 /* We'll expose it all to Guest so we want to reduce
2741 * chance of size changes.
2743 * We used to align the tables to 4k, but of course this would
2744 * too simple to be enough. 4k turned out to be too small an
2745 * alignment very soon, and in fact it is almost impossible to
2746 * keep the table size stable for all (max_cpus, max_memory_slots)
2747 * combinations. So the table size is always 64k for pc-i440fx-2.1
2748 * and we give an error if the table grows beyond that limit.
2750 * We still have the problem of migrating from "-M pc-i440fx-2.0". For
2751 * that, we exploit the fact that QEMU 2.1 generates _smaller_ tables
2752 * than 2.0 and we can always pad the smaller tables with zeros. We can
2753 * then use the exact size of the 2.0 tables.
2755 * All this is for PIIX4, since QEMU 2.0 didn't support Q35 migration.
2757 if (pcmc
->legacy_acpi_table_size
) {
2758 /* Subtracting aml_len gives the size of fixed tables. Then add the
2759 * size of the PIIX4 DSDT/SSDT in QEMU 2.0.
2761 int legacy_aml_len
=
2762 pcmc
->legacy_acpi_table_size
+
2763 ACPI_BUILD_LEGACY_CPU_AML_SIZE
* pcms
->apic_id_limit
;
2764 int legacy_table_size
=
2765 ROUND_UP(tables_blob
->len
- aml_len
+ legacy_aml_len
,
2766 ACPI_BUILD_ALIGN_SIZE
);
2767 if (tables_blob
->len
> legacy_table_size
) {
2768 /* Should happen only with PCI bridges and -M pc-i440fx-2.0. */
2769 warn_report("ACPI table size %u exceeds %d bytes,"
2770 " migration may not work",
2771 tables_blob
->len
, legacy_table_size
);
2772 error_printf("Try removing CPUs, NUMA nodes, memory slots"
2773 " or PCI bridges.");
2775 g_array_set_size(tables_blob
, legacy_table_size
);
2777 /* Make sure we have a buffer in case we need to resize the tables. */
2778 if (tables_blob
->len
> ACPI_BUILD_TABLE_SIZE
/ 2) {
2779 /* As of QEMU 2.1, this fires with 160 VCPUs and 255 memory slots. */
2780 warn_report("ACPI table size %u exceeds %d bytes,"
2781 " migration may not work",
2782 tables_blob
->len
, ACPI_BUILD_TABLE_SIZE
/ 2);
2783 error_printf("Try removing CPUs, NUMA nodes, memory slots"
2784 " or PCI bridges.");
2786 acpi_align_size(tables_blob
, ACPI_BUILD_TABLE_SIZE
);
2789 acpi_align_size(tables
->linker
->cmd_blob
, ACPI_BUILD_ALIGN_SIZE
);
2791 /* Cleanup memory that's no longer used. */
2792 g_array_free(table_offsets
, true);
2795 static void acpi_ram_update(MemoryRegion
*mr
, GArray
*data
)
2797 uint32_t size
= acpi_data_len(data
);
2799 /* Make sure RAM size is correct - in case it got changed e.g. by migration */
2800 memory_region_ram_resize(mr
, size
, &error_abort
);
2802 memcpy(memory_region_get_ram_ptr(mr
), data
->data
, size
);
2803 memory_region_set_dirty(mr
, 0, size
);
2806 static void acpi_build_update(void *build_opaque
)
2808 AcpiBuildState
*build_state
= build_opaque
;
2809 AcpiBuildTables tables
;
2811 /* No state to update or already patched? Nothing to do. */
2812 if (!build_state
|| build_state
->patched
) {
2815 build_state
->patched
= 1;
2817 acpi_build_tables_init(&tables
);
2819 acpi_build(&tables
, MACHINE(qdev_get_machine()));
2821 acpi_ram_update(build_state
->table_mr
, tables
.table_data
);
2823 if (build_state
->rsdp
) {
2824 memcpy(build_state
->rsdp
, tables
.rsdp
->data
, acpi_data_len(tables
.rsdp
));
2826 acpi_ram_update(build_state
->rsdp_mr
, tables
.rsdp
);
2829 acpi_ram_update(build_state
->linker_mr
, tables
.linker
->cmd_blob
);
2830 acpi_build_tables_cleanup(&tables
, true);
2833 static void acpi_build_reset(void *build_opaque
)
2835 AcpiBuildState
*build_state
= build_opaque
;
2836 build_state
->patched
= 0;
2839 static MemoryRegion
*acpi_add_rom_blob(AcpiBuildState
*build_state
,
2840 GArray
*blob
, const char *name
,
2843 return rom_add_blob(name
, blob
->data
, acpi_data_len(blob
), max_size
, -1,
2844 name
, acpi_build_update
, build_state
, NULL
, true);
2847 static const VMStateDescription vmstate_acpi_build
= {
2848 .name
= "acpi_build",
2850 .minimum_version_id
= 1,
2851 .fields
= (VMStateField
[]) {
2852 VMSTATE_UINT8(patched
, AcpiBuildState
),
2853 VMSTATE_END_OF_LIST()
2857 void acpi_setup(void)
2859 PCMachineState
*pcms
= PC_MACHINE(qdev_get_machine());
2860 PCMachineClass
*pcmc
= PC_MACHINE_GET_CLASS(pcms
);
2861 AcpiBuildTables tables
;
2862 AcpiBuildState
*build_state
;
2863 Object
*vmgenid_dev
;
2865 if (!pcms
->fw_cfg
) {
2866 ACPI_BUILD_DPRINTF("No fw cfg. Bailing out.\n");
2870 if (!pcms
->acpi_build_enabled
) {
2871 ACPI_BUILD_DPRINTF("ACPI build disabled. Bailing out.\n");
2875 if (!acpi_enabled
) {
2876 ACPI_BUILD_DPRINTF("ACPI disabled. Bailing out.\n");
2880 build_state
= g_malloc0(sizeof *build_state
);
2882 acpi_build_tables_init(&tables
);
2883 acpi_build(&tables
, MACHINE(pcms
));
2885 /* Now expose it all to Guest */
2886 build_state
->table_mr
= acpi_add_rom_blob(build_state
, tables
.table_data
,
2887 ACPI_BUILD_TABLE_FILE
,
2888 ACPI_BUILD_TABLE_MAX_SIZE
);
2889 assert(build_state
->table_mr
!= NULL
);
2891 build_state
->linker_mr
=
2892 acpi_add_rom_blob(build_state
, tables
.linker
->cmd_blob
,
2893 "etc/table-loader", 0);
2895 fw_cfg_add_file(pcms
->fw_cfg
, ACPI_BUILD_TPMLOG_FILE
,
2896 tables
.tcpalog
->data
, acpi_data_len(tables
.tcpalog
));
2898 vmgenid_dev
= find_vmgenid_dev();
2900 vmgenid_add_fw_cfg(VMGENID(vmgenid_dev
), pcms
->fw_cfg
,
2904 if (!pcmc
->rsdp_in_ram
) {
2906 * Keep for compatibility with old machine types.
2907 * Though RSDP is small, its contents isn't immutable, so
2908 * we'll update it along with the rest of tables on guest access.
2910 uint32_t rsdp_size
= acpi_data_len(tables
.rsdp
);
2912 build_state
->rsdp
= g_memdup(tables
.rsdp
->data
, rsdp_size
);
2913 fw_cfg_add_file_callback(pcms
->fw_cfg
, ACPI_BUILD_RSDP_FILE
,
2914 acpi_build_update
, build_state
,
2915 build_state
->rsdp
, rsdp_size
, true);
2916 build_state
->rsdp_mr
= NULL
;
2918 build_state
->rsdp
= NULL
;
2919 build_state
->rsdp_mr
= acpi_add_rom_blob(build_state
, tables
.rsdp
,
2920 ACPI_BUILD_RSDP_FILE
, 0);
2923 qemu_register_reset(acpi_build_reset
, build_state
);
2924 acpi_build_reset(build_state
);
2925 vmstate_register(NULL
, 0, &vmstate_acpi_build
, build_state
);
2927 /* Cleanup tables but don't free the memory: we track it
2930 acpi_build_tables_cleanup(&tables
, false);