]>
Commit | Line | Data |
---|---|---|
72c194f7 MT |
1 | /* Support for generating ACPI tables and passing them to Guests |
2 | * | |
3 | * Copyright (C) 2008-2010 Kevin O'Connor <kevin@koconnor.net> | |
4 | * Copyright (C) 2006 Fabrice Bellard | |
5 | * Copyright (C) 2013 Red Hat Inc | |
6 | * | |
7 | * Author: Michael S. Tsirkin <mst@redhat.com> | |
8 | * | |
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. | |
13 | ||
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. | |
18 | ||
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/>. | |
21 | */ | |
22 | ||
b6a0aa05 | 23 | #include "qemu/osdep.h" |
da34e65c | 24 | #include "qapi/error.h" |
72c194f7 | 25 | #include "acpi-build.h" |
72c194f7 MT |
26 | #include "qemu-common.h" |
27 | #include "qemu/bitmap.h" | |
07fb6176 | 28 | #include "qemu/error-report.h" |
72c194f7 MT |
29 | #include "hw/pci/pci.h" |
30 | #include "qom/cpu.h" | |
31 | #include "hw/i386/pc.h" | |
fcf5ef2a | 32 | #include "target/i386/cpu.h" |
72c194f7 | 33 | #include "hw/timer/hpet.h" |
395e5fb4 | 34 | #include "hw/acpi/acpi-defs.h" |
72c194f7 | 35 | #include "hw/acpi/acpi.h" |
679dd1a9 | 36 | #include "hw/acpi/cpu.h" |
72c194f7 | 37 | #include "hw/nvram/fw_cfg.h" |
0058ae1d | 38 | #include "hw/acpi/bios-linker-loader.h" |
72c194f7 | 39 | #include "hw/loader.h" |
15bce1b7 | 40 | #include "hw/isa/isa.h" |
27b9fc54 | 41 | #include "hw/block/fdc.h" |
bef3492d | 42 | #include "hw/acpi/memory_hotplug.h" |
711b20b4 SB |
43 | #include "sysemu/tpm.h" |
44 | #include "hw/acpi/tpm.h" | |
d03637bc | 45 | #include "hw/acpi/vmgenid.h" |
5cb18b3d | 46 | #include "sysemu/tpm_backend.h" |
f070efa8 | 47 | #include "hw/timer/mc146818rtc_regs.h" |
1f3aba37 | 48 | #include "sysemu/numa.h" |
72c194f7 MT |
49 | |
50 | /* Supported chipsets: */ | |
51 | #include "hw/acpi/piix4.h" | |
99fd437d | 52 | #include "hw/acpi/pcihp.h" |
72c194f7 MT |
53 | #include "hw/i386/ich9.h" |
54 | #include "hw/pci/pci_bus.h" | |
55 | #include "hw/pci-host/q35.h" | |
1cf5fd57 | 56 | #include "hw/i386/x86-iommu.h" |
72c194f7 | 57 | |
19934e0e IM |
58 | #include "hw/acpi/aml-build.h" |
59 | ||
72c194f7 | 60 | #include "qom/qom-qobject.h" |
fb9f5926 DK |
61 | #include "hw/i386/amd_iommu.h" |
62 | #include "hw/i386/intel_iommu.h" | |
72c194f7 | 63 | |
86e91dd7 CM |
64 | #include "hw/acpi/ipmi.h" |
65 | ||
07fb6176 PB |
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. | |
70 | */ | |
71 | #define ACPI_BUILD_LEGACY_CPU_AML_SIZE 97 | |
72 | #define ACPI_BUILD_ALIGN_SIZE 0x1000 | |
73 | ||
868270f2 | 74 | #define ACPI_BUILD_TABLE_SIZE 0x20000 |
18045fb9 | 75 | |
8b310fc4 GA |
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) | |
80 | #else | |
81 | #define ACPI_BUILD_DPRINTF(fmt, ...) | |
82 | #endif | |
83 | ||
cfc13df4 PX |
84 | /* Default IOAPIC ID */ |
85 | #define ACPI_BUILD_IOAPIC_ID 0x0 | |
86 | ||
72c194f7 MT |
87 | typedef struct AcpiMcfgInfo { |
88 | uint64_t mcfg_base; | |
89 | uint32_t mcfg_size; | |
90 | } AcpiMcfgInfo; | |
91 | ||
92 | typedef struct AcpiPmInfo { | |
3a3fcc75 | 93 | bool force_rev1_fadt; |
72c194f7 MT |
94 | bool s3_disabled; |
95 | bool s4_disabled; | |
133a2da4 | 96 | bool pcihp_bridge_en; |
72c194f7 MT |
97 | uint8_t s4_val; |
98 | uint16_t sci_int; | |
99 | uint8_t acpi_enable_cmd; | |
100 | uint8_t acpi_disable_cmd; | |
101 | uint32_t gpe0_blk; | |
102 | uint32_t gpe0_blk_len; | |
103 | uint32_t io_base; | |
ddf1ec2f | 104 | uint16_t cpu_hp_io_base; |
500b11ea IM |
105 | uint16_t pcihp_io_base; |
106 | uint16_t pcihp_io_len; | |
72c194f7 MT |
107 | } AcpiPmInfo; |
108 | ||
109 | typedef struct AcpiMiscInfo { | |
e4db2798 | 110 | bool is_piix4; |
72c194f7 | 111 | bool has_hpet; |
5cb18b3d | 112 | TPMVersion tpm_version; |
72c194f7 MT |
113 | const unsigned char *dsdt_code; |
114 | unsigned dsdt_size; | |
115 | uint16_t pvpanic_port; | |
8ac6f7a6 | 116 | uint16_t applesmc_io_base; |
72c194f7 MT |
117 | } AcpiMiscInfo; |
118 | ||
99fd437d MT |
119 | typedef struct AcpiBuildPciBusHotplugState { |
120 | GArray *device_table; | |
121 | GArray *notify_table; | |
122 | struct AcpiBuildPciBusHotplugState *parent; | |
133a2da4 | 123 | bool pcihp_bridge_en; |
99fd437d MT |
124 | } AcpiBuildPciBusHotplugState; |
125 | ||
72c194f7 MT |
126 | static void acpi_get_pm_info(AcpiPmInfo *pm) |
127 | { | |
128 | Object *piix = piix4_pm_find(); | |
129 | Object *lpc = ich9_lpc_find(); | |
130 | Object *obj = NULL; | |
131 | QObject *o; | |
132 | ||
3a3fcc75 | 133 | pm->force_rev1_fadt = false; |
94aaca64 | 134 | pm->cpu_hp_io_base = 0; |
500b11ea IM |
135 | pm->pcihp_io_base = 0; |
136 | pm->pcihp_io_len = 0; | |
72c194f7 | 137 | if (piix) { |
3a3fcc75 IM |
138 | /* w2k requires FADT(rev1) or it won't boot, keep PC compatible */ |
139 | pm->force_rev1_fadt = true; | |
72c194f7 | 140 | obj = piix; |
ddf1ec2f | 141 | pm->cpu_hp_io_base = PIIX4_CPU_HOTPLUG_IO_BASE; |
500b11ea | 142 | pm->pcihp_io_base = |
35f91e50 | 143 | object_property_get_uint(obj, ACPI_PCIHP_IO_BASE_PROP, NULL); |
500b11ea | 144 | pm->pcihp_io_len = |
35f91e50 | 145 | object_property_get_uint(obj, ACPI_PCIHP_IO_LEN_PROP, NULL); |
72c194f7 MT |
146 | } |
147 | if (lpc) { | |
148 | obj = lpc; | |
ddf1ec2f | 149 | pm->cpu_hp_io_base = ICH9_CPU_HOTPLUG_IO_BASE; |
72c194f7 MT |
150 | } |
151 | assert(obj); | |
152 | ||
153 | /* Fill in optional s3/s4 related properties */ | |
154 | o = object_property_get_qobject(obj, ACPI_PM_PROP_S3_DISABLED, NULL); | |
155 | if (o) { | |
446de8b6 | 156 | pm->s3_disabled = qnum_get_uint(qobject_to_qnum(o)); |
72c194f7 MT |
157 | } else { |
158 | pm->s3_disabled = false; | |
159 | } | |
097a97a6 | 160 | qobject_decref(o); |
72c194f7 MT |
161 | o = object_property_get_qobject(obj, ACPI_PM_PROP_S4_DISABLED, NULL); |
162 | if (o) { | |
446de8b6 | 163 | pm->s4_disabled = qnum_get_uint(qobject_to_qnum(o)); |
72c194f7 MT |
164 | } else { |
165 | pm->s4_disabled = false; | |
166 | } | |
097a97a6 | 167 | qobject_decref(o); |
72c194f7 MT |
168 | o = object_property_get_qobject(obj, ACPI_PM_PROP_S4_VAL, NULL); |
169 | if (o) { | |
446de8b6 | 170 | pm->s4_val = qnum_get_uint(qobject_to_qnum(o)); |
72c194f7 MT |
171 | } else { |
172 | pm->s4_val = false; | |
173 | } | |
097a97a6 | 174 | qobject_decref(o); |
72c194f7 MT |
175 | |
176 | /* Fill in mandatory properties */ | |
b81bdbf3 MAL |
177 | pm->sci_int = object_property_get_uint(obj, ACPI_PM_PROP_SCI_INT, NULL); |
178 | ||
179 | pm->acpi_enable_cmd = object_property_get_uint(obj, | |
180 | ACPI_PM_PROP_ACPI_ENABLE_CMD, | |
181 | NULL); | |
182 | pm->acpi_disable_cmd = | |
183 | object_property_get_uint(obj, | |
184 | ACPI_PM_PROP_ACPI_DISABLE_CMD, | |
185 | NULL); | |
186 | pm->io_base = object_property_get_uint(obj, ACPI_PM_PROP_PM_IO_BASE, | |
72c194f7 | 187 | NULL); |
b81bdbf3 MAL |
188 | pm->gpe0_blk = object_property_get_uint(obj, ACPI_PM_PROP_GPE0_BLK, |
189 | NULL); | |
190 | pm->gpe0_blk_len = object_property_get_uint(obj, ACPI_PM_PROP_GPE0_BLK_LEN, | |
191 | NULL); | |
133a2da4 IM |
192 | pm->pcihp_bridge_en = |
193 | object_property_get_bool(obj, "acpi-pci-hotplug-with-bridge-support", | |
194 | NULL); | |
72c194f7 MT |
195 | } |
196 | ||
72c194f7 MT |
197 | static void acpi_get_misc_info(AcpiMiscInfo *info) |
198 | { | |
3db119da IM |
199 | Object *piix = piix4_pm_find(); |
200 | Object *lpc = ich9_lpc_find(); | |
201 | assert(!!piix != !!lpc); | |
202 | ||
203 | if (piix) { | |
204 | info->is_piix4 = true; | |
205 | } | |
206 | if (lpc) { | |
207 | info->is_piix4 = false; | |
208 | } | |
209 | ||
72c194f7 | 210 | info->has_hpet = hpet_find(); |
5cb18b3d | 211 | info->tpm_version = tpm_get_version(); |
72c194f7 | 212 | info->pvpanic_port = pvpanic_port(); |
8ac6f7a6 | 213 | info->applesmc_io_base = applesmc_port(); |
72c194f7 MT |
214 | } |
215 | ||
ca6c1855 MA |
216 | /* |
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. | |
219 | */ | |
220 | static Object *acpi_get_i386_pci_host(void) | |
221 | { | |
222 | PCIHostState *host; | |
223 | ||
224 | host = OBJECT_CHECK(PCIHostState, | |
225 | object_resolve_path("/machine/i440fx", NULL), | |
226 | TYPE_PCI_HOST_BRIDGE); | |
227 | if (!host) { | |
228 | host = OBJECT_CHECK(PCIHostState, | |
229 | object_resolve_path("/machine/q35", NULL), | |
230 | TYPE_PCI_HOST_BRIDGE); | |
231 | } | |
232 | ||
233 | return OBJECT(host); | |
234 | } | |
235 | ||
01c9742d | 236 | static void acpi_get_pci_holes(Range *hole, Range *hole64) |
72c194f7 MT |
237 | { |
238 | Object *pci_host; | |
72c194f7 | 239 | |
ca6c1855 | 240 | pci_host = acpi_get_i386_pci_host(); |
72c194f7 MT |
241 | g_assert(pci_host); |
242 | ||
a0efbf16 | 243 | range_set_bounds1(hole, |
60555365 MAL |
244 | object_property_get_uint(pci_host, |
245 | PCI_HOST_PROP_PCI_HOLE_START, | |
246 | NULL), | |
247 | object_property_get_uint(pci_host, | |
248 | PCI_HOST_PROP_PCI_HOLE_END, | |
249 | NULL)); | |
a0efbf16 | 250 | range_set_bounds1(hole64, |
60555365 MAL |
251 | object_property_get_uint(pci_host, |
252 | PCI_HOST_PROP_PCI_HOLE64_START, | |
253 | NULL), | |
254 | object_property_get_uint(pci_host, | |
255 | PCI_HOST_PROP_PCI_HOLE64_END, | |
256 | NULL)); | |
72c194f7 MT |
257 | } |
258 | ||
72c194f7 MT |
259 | #define ACPI_PORT_SMI_CMD 0x00b2 /* TODO: this is APM_CNT_IOPORT */ |
260 | ||
72c194f7 MT |
261 | static void acpi_align_size(GArray *blob, unsigned align) |
262 | { | |
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). | |
265 | */ | |
134d42d6 | 266 | g_array_set_size(blob, ROUND_UP(acpi_data_len(blob), align)); |
72c194f7 MT |
267 | } |
268 | ||
72c194f7 MT |
269 | /* FACS */ |
270 | static void | |
0e9b9eda | 271 | build_facs(GArray *table_data, BIOSLinker *linker) |
72c194f7 MT |
272 | { |
273 | AcpiFacsDescriptorRev1 *facs = acpi_data_push(table_data, sizeof *facs); | |
821e3227 | 274 | memcpy(&facs->signature, "FACS", 4); |
72c194f7 MT |
275 | facs->length = cpu_to_le32(sizeof(*facs)); |
276 | } | |
277 | ||
278 | /* Load chipset information in FADT */ | |
77af8a2b | 279 | static void fadt_setup(AcpiFadtDescriptorRev3 *fadt, AcpiPmInfo *pm) |
72c194f7 MT |
280 | { |
281 | fadt->model = 1; | |
282 | fadt->reserved1 = 0; | |
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); | |
07b81ed9 HZ |
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 | |
306 | */ | |
307 | if (max_cpus > 8) { | |
308 | fadt->flags |= cpu_to_le32(1 << ACPI_FADT_F_FORCE_APIC_CLUSTER_MODEL); | |
309 | } | |
f070efa8 | 310 | fadt->century = RTC_CENTURY; |
3a3fcc75 IM |
311 | if (pm->force_rev1_fadt) { |
312 | return; | |
313 | } | |
77af8a2b PDJ |
314 | |
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); | |
6103451a PDJ |
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); | |
77af8a2b PDJ |
323 | |
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); | |
327 | ||
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); | |
331 | ||
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); | |
335 | ||
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); | |
72c194f7 MT |
339 | } |
340 | ||
341 | ||
342 | /* FADT */ | |
343 | static void | |
0e9b9eda | 344 | build_fadt(GArray *table_data, BIOSLinker *linker, AcpiPmInfo *pm, |
4678124b | 345 | unsigned facs_tbl_offset, unsigned dsdt_tbl_offset, |
ae123749 | 346 | const char *oem_id, const char *oem_table_id) |
72c194f7 | 347 | { |
77af8a2b | 348 | AcpiFadtDescriptorRev3 *fadt = acpi_data_push(table_data, sizeof(*fadt)); |
4678124b IM |
349 | unsigned fw_ctrl_offset = (char *)&fadt->firmware_ctrl - table_data->data; |
350 | unsigned dsdt_entry_offset = (char *)&fadt->dsdt - table_data->data; | |
5ee85347 | 351 | unsigned xdsdt_entry_offset = (char *)&fadt->x_dsdt - table_data->data; |
3a3fcc75 IM |
352 | int fadt_size = sizeof(*fadt); |
353 | int rev = 3; | |
72c194f7 | 354 | |
72c194f7 | 355 | /* FACS address to be filled by Guest linker */ |
4678124b IM |
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); | |
72c194f7 | 359 | |
72c194f7 | 360 | /* DSDT address to be filled by Guest linker */ |
72c194f7 | 361 | fadt_setup(fadt, pm); |
4678124b IM |
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); | |
3a3fcc75 IM |
365 | if (pm->force_rev1_fadt) { |
366 | rev = 1; | |
367 | fadt_size = offsetof(typeof(*fadt), reset_register); | |
368 | } else { | |
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); | |
372 | } | |
72c194f7 MT |
373 | |
374 | build_header(linker, table_data, | |
3a3fcc75 | 375 | (void *)fadt, "FACP", fadt_size, rev, oem_id, oem_table_id); |
72c194f7 MT |
376 | } |
377 | ||
ac35f13b | 378 | void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid, |
80e5db30 | 379 | const CPUArchIdList *apic_ids, GArray *entry) |
ac35f13b | 380 | { |
e2c95939 IM |
381 | uint32_t apic_id = apic_ids->cpus[uid].arch_id; |
382 | ||
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. | |
388 | */ | |
389 | if (apic_id < 255) { | |
390 | AcpiMadtProcessorApic *apic = acpi_data_push(entry, sizeof *apic); | |
391 | ||
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); | |
398 | } else { | |
399 | apic->flags = cpu_to_le32(0); | |
400 | } | |
ac35f13b | 401 | } else { |
e2c95939 IM |
402 | AcpiMadtProcessorX2Apic *apic = acpi_data_push(entry, sizeof *apic); |
403 | ||
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); | |
410 | } else { | |
411 | apic->flags = cpu_to_le32(0); | |
412 | } | |
ac35f13b IM |
413 | } |
414 | } | |
415 | ||
72c194f7 | 416 | static void |
0e9b9eda | 417 | build_madt(GArray *table_data, BIOSLinker *linker, PCMachineState *pcms) |
72c194f7 | 418 | { |
907e7c94 | 419 | MachineClass *mc = MACHINE_GET_CLASS(pcms); |
80e5db30 | 420 | const CPUArchIdList *apic_ids = mc->possible_cpu_arch_ids(MACHINE(pcms)); |
72c194f7 | 421 | int madt_start = table_data->len; |
ac35f13b IM |
422 | AcpiDeviceIfClass *adevc = ACPI_DEVICE_IF_GET_CLASS(pcms->acpi_dev); |
423 | AcpiDeviceIf *adev = ACPI_DEVICE_IF(pcms->acpi_dev); | |
e2c95939 | 424 | bool x2apic_mode = false; |
72c194f7 MT |
425 | |
426 | AcpiMultipleApicTable *madt; | |
427 | AcpiMadtIoApic *io_apic; | |
428 | AcpiMadtIntsrcovr *intsrcovr; | |
72c194f7 MT |
429 | int i; |
430 | ||
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); | |
434 | ||
907e7c94 | 435 | for (i = 0; i < apic_ids->len; i++) { |
ac35f13b | 436 | adevc->madt_cpu(adev, i, apic_ids, table_data); |
e2c95939 IM |
437 | if (apic_ids->cpus[i].arch_id > 254) { |
438 | x2apic_mode = true; | |
439 | } | |
72c194f7 | 440 | } |
907e7c94 | 441 | |
72c194f7 MT |
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); | |
72c194f7 MT |
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); | |
448 | ||
dd4c2f01 | 449 | if (pcms->apic_xrupt_override) { |
72c194f7 MT |
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 */ | |
456 | } | |
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. */ | |
461 | continue; | |
462 | } | |
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 */ | |
469 | } | |
470 | ||
e2c95939 IM |
471 | if (x2apic_mode) { |
472 | AcpiMadtLocalX2ApicNmi *local_nmi; | |
473 | ||
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 */ | |
480 | } else { | |
481 | AcpiMadtLocalNmi *local_nmi; | |
482 | ||
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 */ | |
489 | } | |
72c194f7 MT |
490 | |
491 | build_header(linker, table_data, | |
821e3227 | 492 | (void *)(table_data->data + madt_start), "APIC", |
37ad223c | 493 | table_data->len - madt_start, 1, NULL, NULL); |
72c194f7 MT |
494 | } |
495 | ||
62b52c26 | 496 | static void build_append_pcihp_notify_entry(Aml *method, int slot) |
99fd437d | 497 | { |
62b52c26 IM |
498 | Aml *if_ctx; |
499 | int32_t devfn = PCI_DEVFN(slot, 0); | |
500 | ||
5530427f | 501 | if_ctx = aml_if(aml_and(aml_arg(0), aml_int(0x1U << slot), NULL)); |
62b52c26 IM |
502 | aml_append(if_ctx, aml_notify(aml_name("S%.02X", devfn), aml_arg(1))); |
503 | aml_append(method, if_ctx); | |
99fd437d MT |
504 | } |
505 | ||
62b52c26 | 506 | static void build_append_pci_bus_devices(Aml *parent_scope, PCIBus *bus, |
b23046ab | 507 | bool pcihp_bridge_en) |
99fd437d | 508 | { |
62b52c26 | 509 | Aml *dev, *notify_method, *method; |
99fd437d | 510 | QObject *bsel; |
b23046ab IM |
511 | PCIBus *sec; |
512 | int i; | |
133a2da4 | 513 | |
99fd437d MT |
514 | bsel = object_property_get_qobject(OBJECT(bus), ACPI_PCIHP_PROP_BSEL, NULL); |
515 | if (bsel) { | |
446de8b6 | 516 | uint64_t bsel_val = qnum_get_uint(qobject_to_qnum(bsel)); |
62b52c26 IM |
517 | |
518 | aml_append(parent_scope, aml_name_decl("BSEL", aml_int(bsel_val))); | |
4dbfc881 | 519 | notify_method = aml_method("DVNT", 2, AML_NOTSERIALIZED); |
8dcf525a | 520 | } |
99fd437d | 521 | |
8dcf525a MT |
522 | for (i = 0; i < ARRAY_SIZE(bus->devices); i += PCI_FUNC_MAX) { |
523 | DeviceClass *dc; | |
524 | PCIDeviceClass *pc; | |
525 | PCIDevice *pdev = bus->devices[i]; | |
526 | int slot = PCI_SLOT(i); | |
b23046ab | 527 | bool hotplug_enabled_dev; |
093a35e5 | 528 | bool bridge_in_acpi; |
99fd437d | 529 | |
8dcf525a | 530 | if (!pdev) { |
b23046ab | 531 | if (bsel) { /* add hotplug slots for non present devices */ |
62b52c26 IM |
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))); | |
4dbfc881 | 535 | method = aml_method("_EJ0", 1, AML_NOTSERIALIZED); |
62b52c26 IM |
536 | aml_append(method, |
537 | aml_call2("PCEJ", aml_name("BSEL"), aml_name("_SUN")) | |
538 | ); | |
539 | aml_append(dev, method); | |
540 | aml_append(parent_scope, dev); | |
541 | ||
542 | build_append_pcihp_notify_entry(notify_method, slot); | |
b23046ab | 543 | } |
8dcf525a MT |
544 | continue; |
545 | } | |
99fd437d | 546 | |
8dcf525a MT |
547 | pc = PCI_DEVICE_GET_CLASS(pdev); |
548 | dc = DEVICE_GET_CLASS(pdev); | |
99fd437d | 549 | |
093a35e5 MT |
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. | |
a20275fa | 553 | * Hotplugged bridges *are* hot-pluggable. |
093a35e5 | 554 | */ |
b23046ab IM |
555 | bridge_in_acpi = pc->is_bridge && pcihp_bridge_en && |
556 | !DEVICE(pdev)->hotplugged; | |
557 | ||
558 | hotplug_enabled_dev = bsel && dc->hotpluggable && !bridge_in_acpi; | |
093a35e5 | 559 | |
b23046ab IM |
560 | if (pc->class_id == PCI_CLASS_BRIDGE_ISA) { |
561 | continue; | |
99fd437d MT |
562 | } |
563 | ||
62b52c26 IM |
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))); | |
567 | ||
8dcf525a | 568 | if (pc->class_id == PCI_CLASS_DISPLAY_VGA) { |
62b52c26 IM |
569 | /* add VGA specific AML methods */ |
570 | int s3d; | |
571 | ||
8dcf525a | 572 | if (object_dynamic_cast(OBJECT(pdev), "qxl-vga")) { |
62b52c26 | 573 | s3d = 3; |
b23046ab | 574 | } else { |
62b52c26 | 575 | s3d = 0; |
99fd437d | 576 | } |
62b52c26 | 577 | |
4dbfc881 | 578 | method = aml_method("_S1D", 0, AML_NOTSERIALIZED); |
62b52c26 IM |
579 | aml_append(method, aml_return(aml_int(0))); |
580 | aml_append(dev, method); | |
581 | ||
4dbfc881 | 582 | method = aml_method("_S2D", 0, AML_NOTSERIALIZED); |
62b52c26 IM |
583 | aml_append(method, aml_return(aml_int(0))); |
584 | aml_append(dev, method); | |
585 | ||
4dbfc881 | 586 | method = aml_method("_S3D", 0, AML_NOTSERIALIZED); |
62b52c26 IM |
587 | aml_append(method, aml_return(aml_int(s3d))); |
588 | aml_append(dev, method); | |
b23046ab | 589 | } else if (hotplug_enabled_dev) { |
62b52c26 IM |
590 | /* add _SUN/_EJ0 to make slot hotpluggable */ |
591 | aml_append(dev, aml_name_decl("_SUN", aml_int(slot))); | |
99fd437d | 592 | |
4dbfc881 | 593 | method = aml_method("_EJ0", 1, AML_NOTSERIALIZED); |
62b52c26 IM |
594 | aml_append(method, |
595 | aml_call2("PCEJ", aml_name("BSEL"), aml_name("_SUN")) | |
596 | ); | |
597 | aml_append(dev, method); | |
598 | ||
599 | if (bsel) { | |
600 | build_append_pcihp_notify_entry(notify_method, slot); | |
601 | } | |
b23046ab | 602 | } else if (bridge_in_acpi) { |
62b52c26 IM |
603 | /* |
604 | * device is coldplugged bridge, | |
605 | * add child device descriptions into its scope | |
606 | */ | |
b23046ab | 607 | PCIBus *sec_bus = pci_bridge_get_sec_bus(PCI_BRIDGE(pdev)); |
b23046ab | 608 | |
62b52c26 | 609 | build_append_pci_bus_devices(dev, sec_bus, pcihp_bridge_en); |
8dcf525a | 610 | } |
62b52c26 IM |
611 | /* slot descriptor has been composed, add it into parent context */ |
612 | aml_append(parent_scope, dev); | |
8dcf525a MT |
613 | } |
614 | ||
615 | if (bsel) { | |
62b52c26 | 616 | aml_append(parent_scope, notify_method); |
99fd437d MT |
617 | } |
618 | ||
619 | /* Append PCNT method to notify about events on local and child buses. | |
620 | * Add unconditionally for root since DSDT expects it. | |
72c194f7 | 621 | */ |
4dbfc881 | 622 | method = aml_method("PCNT", 0, AML_NOTSERIALIZED); |
99fd437d | 623 | |
b23046ab IM |
624 | /* If bus supports hotplug select it and notify about local events */ |
625 | if (bsel) { | |
446de8b6 | 626 | uint64_t bsel_val = qnum_get_uint(qobject_to_qnum(bsel)); |
01b2ffce | 627 | |
62b52c26 IM |
628 | aml_append(method, aml_store(aml_int(bsel_val), aml_name("BNUM"))); |
629 | aml_append(method, | |
630 | aml_call2("DVNT", aml_name("PCIU"), aml_int(1) /* Device Check */) | |
631 | ); | |
632 | aml_append(method, | |
633 | aml_call2("DVNT", aml_name("PCID"), aml_int(3)/* Eject Request */) | |
634 | ); | |
b23046ab | 635 | } |
99fd437d | 636 | |
b23046ab IM |
637 | /* Notify about child bus events in any case */ |
638 | if (pcihp_bridge_en) { | |
639 | QLIST_FOREACH(sec, &bus->child, sibling) { | |
62b52c26 IM |
640 | int32_t devfn = sec->parent_dev->devfn; |
641 | ||
c99cb18e MA |
642 | if (pci_bus_is_root(sec) || pci_bus_is_express(sec)) { |
643 | continue; | |
644 | } | |
645 | ||
62b52c26 | 646 | aml_append(method, aml_name("^S%.02X.PCNT", devfn)); |
99fd437d | 647 | } |
72c194f7 | 648 | } |
62b52c26 | 649 | aml_append(parent_scope, method); |
d370dfa9 | 650 | qobject_decref(bsel); |
72c194f7 MT |
651 | } |
652 | ||
196e2137 IM |
653 | /** |
654 | * build_prt_entry: | |
655 | * @link_name: link name for PCI route entry | |
656 | * | |
657 | * build AML package containing a PCI route entry for @link_name | |
658 | */ | |
659 | static Aml *build_prt_entry(const char *link_name) | |
660 | { | |
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); | |
667 | return pkg; | |
668 | } | |
669 | ||
0d8935e3 MA |
670 | /* |
671 | * initialize_route - Initialize the interrupt routing rule | |
672 | * through a specific LINK: | |
673 | * if (lnk_idx == idx) | |
674 | * route using link 'link_name' | |
675 | */ | |
676 | static Aml *initialize_route(Aml *route, const char *link_name, | |
677 | Aml *lnk_idx, int idx) | |
678 | { | |
679 | Aml *if_ctx = aml_if(aml_equal(lnk_idx, aml_int(idx))); | |
196e2137 | 680 | Aml *pkg = build_prt_entry(link_name); |
0d8935e3 | 681 | |
0d8935e3 MA |
682 | aml_append(if_ctx, aml_store(pkg, route)); |
683 | ||
684 | return if_ctx; | |
685 | } | |
686 | ||
687 | /* | |
688 | * build_prt - Define interrupt rounting rules | |
689 | * | |
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]". | |
695 | * | |
696 | */ | |
196e2137 | 697 | static Aml *build_prt(bool is_pci0_prt) |
0d8935e3 MA |
698 | { |
699 | Aml *method, *while_ctx, *pin, *res; | |
700 | ||
4dbfc881 | 701 | method = aml_method("_PRT", 0, AML_NOTSERIALIZED); |
0d8935e3 MA |
702 | res = aml_local(0); |
703 | pin = aml_local(1); | |
704 | aml_append(method, aml_store(aml_package(128), res)); | |
705 | aml_append(method, aml_store(aml_int(0), pin)); | |
706 | ||
707 | /* while (pin < 128) */ | |
708 | while_ctx = aml_while(aml_lless(pin, aml_int(128))); | |
709 | { | |
710 | Aml *slot = aml_local(2); | |
711 | Aml *lnk_idx = aml_local(3); | |
712 | Aml *route = aml_local(4); | |
713 | ||
714 | /* slot = pin >> 2 */ | |
715 | aml_append(while_ctx, | |
c360639a | 716 | aml_store(aml_shiftright(pin, aml_int(2), NULL), slot)); |
0d8935e3 MA |
717 | /* lnk_idx = (slot + pin) & 3 */ |
718 | aml_append(while_ctx, | |
5530427f IM |
719 | aml_store(aml_and(aml_add(pin, slot, NULL), aml_int(3), NULL), |
720 | lnk_idx)); | |
0d8935e3 MA |
721 | |
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)); | |
196e2137 IM |
724 | if (is_pci0_prt) { |
725 | Aml *if_device_1, *if_pin_4, *else_pin_4; | |
726 | ||
727 | /* device 1 is the power-management device, needs SCI */ | |
728 | if_device_1 = aml_if(aml_equal(lnk_idx, aml_int(1))); | |
729 | { | |
730 | if_pin_4 = aml_if(aml_equal(pin, aml_int(4))); | |
731 | { | |
732 | aml_append(if_pin_4, | |
733 | aml_store(build_prt_entry("LNKS"), route)); | |
734 | } | |
735 | aml_append(if_device_1, if_pin_4); | |
736 | else_pin_4 = aml_else(); | |
737 | { | |
738 | aml_append(else_pin_4, | |
739 | aml_store(build_prt_entry("LNKA"), route)); | |
740 | } | |
741 | aml_append(if_device_1, else_pin_4); | |
742 | } | |
743 | aml_append(while_ctx, if_device_1); | |
744 | } else { | |
745 | aml_append(while_ctx, initialize_route(route, "LNKA", lnk_idx, 1)); | |
746 | } | |
0d8935e3 MA |
747 | aml_append(while_ctx, initialize_route(route, "LNKB", lnk_idx, 2)); |
748 | aml_append(while_ctx, initialize_route(route, "LNKC", lnk_idx, 3)); | |
749 | ||
750 | /* route[0] = 0x[slot]FFFF */ | |
751 | aml_append(while_ctx, | |
ca3df95d IM |
752 | aml_store(aml_or(aml_shiftleft(slot, aml_int(16)), aml_int(0xFFFF), |
753 | NULL), | |
0d8935e3 MA |
754 | aml_index(route, aml_int(0)))); |
755 | /* route[1] = pin & 3 */ | |
756 | aml_append(while_ctx, | |
5530427f IM |
757 | aml_store(aml_and(pin, aml_int(3), NULL), |
758 | aml_index(route, aml_int(1)))); | |
0d8935e3 MA |
759 | /* res[pin] = route */ |
760 | aml_append(while_ctx, aml_store(route, aml_index(res, pin))); | |
761 | /* pin++ */ | |
762 | aml_append(while_ctx, aml_increment(pin)); | |
763 | } | |
764 | aml_append(method, while_ctx); | |
765 | /* return res*/ | |
766 | aml_append(method, aml_return(res)); | |
767 | ||
768 | return method; | |
769 | } | |
770 | ||
a43c6e27 MA |
771 | typedef struct CrsRangeEntry { |
772 | uint64_t base; | |
773 | uint64_t limit; | |
774 | } CrsRangeEntry; | |
775 | ||
776 | static void crs_range_insert(GPtrArray *ranges, uint64_t base, uint64_t limit) | |
777 | { | |
778 | CrsRangeEntry *entry; | |
779 | ||
780 | entry = g_malloc(sizeof(*entry)); | |
781 | entry->base = base; | |
782 | entry->limit = limit; | |
783 | ||
784 | g_ptr_array_add(ranges, entry); | |
785 | } | |
786 | ||
787 | static void crs_range_free(gpointer data) | |
788 | { | |
789 | CrsRangeEntry *entry = (CrsRangeEntry *)data; | |
790 | g_free(entry); | |
791 | } | |
792 | ||
2df5a7b5 MA |
793 | typedef struct CrsRangeSet { |
794 | GPtrArray *io_ranges; | |
795 | GPtrArray *mem_ranges; | |
16de88a4 | 796 | GPtrArray *mem_64bit_ranges; |
2df5a7b5 MA |
797 | } CrsRangeSet; |
798 | ||
799 | static void crs_range_set_init(CrsRangeSet *range_set) | |
800 | { | |
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); | |
16de88a4 MA |
803 | range_set->mem_64bit_ranges = |
804 | g_ptr_array_new_with_free_func(crs_range_free); | |
2df5a7b5 MA |
805 | } |
806 | ||
807 | static void crs_range_set_free(CrsRangeSet *range_set) | |
808 | { | |
809 | g_ptr_array_free(range_set->io_ranges, true); | |
810 | g_ptr_array_free(range_set->mem_ranges, true); | |
16de88a4 | 811 | g_ptr_array_free(range_set->mem_64bit_ranges, true); |
2df5a7b5 MA |
812 | } |
813 | ||
dcdca296 MA |
814 | static gint crs_range_compare(gconstpointer a, gconstpointer b) |
815 | { | |
816 | CrsRangeEntry *entry_a = *(CrsRangeEntry **)a; | |
817 | CrsRangeEntry *entry_b = *(CrsRangeEntry **)b; | |
818 | ||
819 | return (int64_t)entry_a->base - (int64_t)entry_b->base; | |
820 | } | |
821 | ||
822 | /* | |
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] }. | |
827 | */ | |
828 | static void crs_replace_with_free_ranges(GPtrArray *ranges, | |
829 | uint64_t start, uint64_t end) | |
830 | { | |
354fb471 | 831 | GPtrArray *free_ranges = g_ptr_array_new(); |
dcdca296 MA |
832 | uint64_t free_base = start; |
833 | int i; | |
834 | ||
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); | |
838 | ||
839 | if (free_base < used->base) { | |
840 | crs_range_insert(free_ranges, free_base, used->base - 1); | |
841 | } | |
842 | ||
843 | free_base = used->limit + 1; | |
844 | } | |
845 | ||
846 | if (free_base < end) { | |
847 | crs_range_insert(free_ranges, free_base, end); | |
848 | } | |
849 | ||
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)); | |
853 | } | |
854 | ||
354fb471 | 855 | g_ptr_array_free(free_ranges, true); |
dcdca296 MA |
856 | } |
857 | ||
d7fd0e69 MA |
858 | /* |
859 | * crs_range_merge - merges adjacent ranges in the given array. | |
860 | * Array elements are deleted and replaced with the merged ranges. | |
861 | */ | |
862 | static void crs_range_merge(GPtrArray *range) | |
863 | { | |
864 | GPtrArray *tmp = g_ptr_array_new_with_free_func(crs_range_free); | |
865 | CrsRangeEntry *entry; | |
866 | uint64_t range_base, range_limit; | |
867 | int i; | |
868 | ||
869 | if (!range->len) { | |
870 | return; | |
871 | } | |
872 | ||
873 | g_ptr_array_sort(range, crs_range_compare); | |
874 | ||
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; | |
882 | } else { | |
883 | crs_range_insert(tmp, range_base, range_limit); | |
884 | range_base = entry->base; | |
885 | range_limit = entry->limit; | |
886 | } | |
887 | } | |
888 | crs_range_insert(tmp, range_base, range_limit); | |
889 | ||
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); | |
894 | } | |
895 | g_ptr_array_free(tmp, true); | |
896 | } | |
897 | ||
2df5a7b5 | 898 | static Aml *build_crs(PCIHostState *host, CrsRangeSet *range_set) |
a43c6e27 MA |
899 | { |
900 | Aml *crs = aml_resource_template(); | |
2df5a7b5 | 901 | CrsRangeSet temp_range_set; |
d7fd0e69 | 902 | CrsRangeEntry *entry; |
a43c6e27 MA |
903 | uint8_t max_bus = pci_bus_num(host->bus); |
904 | uint8_t type; | |
905 | int devfn; | |
d7fd0e69 | 906 | int i; |
a43c6e27 | 907 | |
2df5a7b5 | 908 | crs_range_set_init(&temp_range_set); |
a43c6e27 | 909 | for (devfn = 0; devfn < ARRAY_SIZE(host->bus->devices); devfn++) { |
a43c6e27 MA |
910 | uint64_t range_base, range_limit; |
911 | PCIDevice *dev = host->bus->devices[devfn]; | |
912 | ||
913 | if (!dev) { | |
914 | continue; | |
915 | } | |
916 | ||
917 | for (i = 0; i < PCI_NUM_REGIONS; i++) { | |
918 | PCIIORegion *r = &dev->io_regions[i]; | |
919 | ||
920 | range_base = r->addr; | |
921 | range_limit = r->addr + r->size - 1; | |
922 | ||
0f6dd8e1 MA |
923 | /* |
924 | * Work-around for old bioses | |
925 | * that do not support multiple root buses | |
926 | */ | |
927 | if (!range_base || range_base > range_limit) { | |
928 | continue; | |
929 | } | |
930 | ||
a43c6e27 | 931 | if (r->type & PCI_BASE_ADDRESS_SPACE_IO) { |
2df5a7b5 MA |
932 | crs_range_insert(temp_range_set.io_ranges, |
933 | range_base, range_limit); | |
a43c6e27 | 934 | } else { /* "memory" */ |
2df5a7b5 MA |
935 | crs_range_insert(temp_range_set.mem_ranges, |
936 | range_base, range_limit); | |
a43c6e27 MA |
937 | } |
938 | } | |
939 | ||
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; | |
945 | } | |
946 | ||
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); | |
0f6dd8e1 MA |
949 | |
950 | /* | |
951 | * Work-around for old bioses | |
952 | * that do not support multiple root buses | |
953 | */ | |
4ebc736e | 954 | if (range_base && range_base <= range_limit) { |
2df5a7b5 MA |
955 | crs_range_insert(temp_range_set.io_ranges, |
956 | range_base, range_limit); | |
0f6dd8e1 | 957 | } |
a43c6e27 MA |
958 | |
959 | range_base = | |
960 | pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); | |
961 | range_limit = | |
962 | pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); | |
0f6dd8e1 MA |
963 | |
964 | /* | |
965 | * Work-around for old bioses | |
966 | * that do not support multiple root buses | |
967 | */ | |
4ebc736e | 968 | if (range_base && range_base <= range_limit) { |
16de88a4 MA |
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); | |
973 | } else { | |
974 | crs_range_insert(temp_range_set.mem_64bit_ranges, | |
975 | range_base, range_limit); | |
976 | } | |
4ebc736e | 977 | } |
a43c6e27 MA |
978 | |
979 | range_base = | |
980 | pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); | |
981 | range_limit = | |
982 | pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); | |
0f6dd8e1 MA |
983 | |
984 | /* | |
985 | * Work-around for old bioses | |
986 | * that do not support multiple root buses | |
987 | */ | |
4ebc736e | 988 | if (range_base && range_base <= range_limit) { |
16de88a4 MA |
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); | |
993 | } else { | |
994 | crs_range_insert(temp_range_set.mem_64bit_ranges, | |
995 | range_base, range_limit); | |
996 | } | |
0f6dd8e1 | 997 | } |
a43c6e27 MA |
998 | } |
999 | } | |
1000 | ||
2df5a7b5 MA |
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); | |
d7fd0e69 MA |
1004 | aml_append(crs, |
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)); | |
2df5a7b5 | 1009 | crs_range_insert(range_set->io_ranges, entry->base, entry->limit); |
d7fd0e69 | 1010 | } |
d7fd0e69 | 1011 | |
2df5a7b5 MA |
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); | |
d7fd0e69 MA |
1015 | aml_append(crs, |
1016 | aml_dword_memory(AML_POS_DECODE, AML_MIN_FIXED, | |
1017 | AML_MAX_FIXED, AML_NON_CACHEABLE, | |
1018 | AML_READ_WRITE, | |
1019 | 0, entry->base, entry->limit, 0, | |
1020 | entry->limit - entry->base + 1)); | |
2df5a7b5 | 1021 | crs_range_insert(range_set->mem_ranges, entry->base, entry->limit); |
d7fd0e69 | 1022 | } |
2df5a7b5 | 1023 | |
16de88a4 MA |
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); | |
1027 | aml_append(crs, | |
1028 | aml_qword_memory(AML_POS_DECODE, AML_MIN_FIXED, | |
1029 | AML_MAX_FIXED, AML_NON_CACHEABLE, | |
1030 | AML_READ_WRITE, | |
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); | |
1035 | } | |
1036 | ||
2df5a7b5 | 1037 | crs_range_set_free(&temp_range_set); |
d7fd0e69 | 1038 | |
a43c6e27 | 1039 | aml_append(crs, |
dcdca296 | 1040 | aml_word_bus_number(AML_MIN_FIXED, AML_MAX_FIXED, AML_POS_DECODE, |
a43c6e27 MA |
1041 | 0, |
1042 | pci_bus_num(host->bus), | |
1043 | max_bus, | |
1044 | 0, | |
1045 | max_bus - pci_bus_num(host->bus) + 1)); | |
1046 | ||
1047 | return crs; | |
1048 | } | |
1049 | ||
a57d708d IM |
1050 | static void build_hpet_aml(Aml *table) |
1051 | { | |
1052 | Aml *crs; | |
1053 | Aml *field; | |
1054 | Aml *method; | |
1055 | Aml *if_ctx; | |
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); | |
1061 | ||
1062 | aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0103"))); | |
1063 | aml_append(dev, aml_name_decl("_UID", zero)); | |
1064 | ||
1065 | aml_append(dev, | |
3f3009c0 XG |
1066 | aml_operation_region("HPTM", AML_SYSTEM_MEMORY, aml_int(HPET_BASE), |
1067 | HPET_LEN)); | |
a57d708d IM |
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); | |
1072 | ||
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)))); | |
1079 | { | |
1080 | aml_append(if_ctx, aml_return(zero)); | |
1081 | } | |
1082 | aml_append(method, if_ctx); | |
1083 | ||
1084 | if_ctx = aml_if(aml_lor(aml_equal(period, zero), | |
1085 | aml_lgreater(period, aml_int(100000000)))); | |
1086 | { | |
1087 | aml_append(if_ctx, aml_return(zero)); | |
1088 | } | |
1089 | aml_append(method, if_ctx); | |
1090 | ||
1091 | aml_append(method, aml_return(aml_int(0x0F))); | |
1092 | aml_append(dev, method); | |
1093 | ||
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)); | |
1097 | ||
1098 | aml_append(scope, dev); | |
1099 | aml_append(table, scope); | |
1100 | } | |
1101 | ||
27b9fc54 | 1102 | static Aml *build_fdinfo_aml(int idx, FloppyDriveType type) |
95ed7e97 | 1103 | { |
27b9fc54 RK |
1104 | Aml *dev, *fdi; |
1105 | uint8_t maxc, maxh, maxs; | |
1106 | ||
1107 | isa_fdc_get_drive_max_chs(type, &maxc, &maxh, &maxs); | |
1108 | ||
1109 | dev = aml_device("FLP%c", 'A' + idx); | |
1110 | ||
1111 | aml_append(dev, aml_name_decl("_ADR", aml_int(idx))); | |
1112 | ||
1113 | fdi = aml_package(16); | |
1114 | aml_append(fdi, aml_int(idx)); /* Drive Number */ | |
1115 | aml_append(fdi, | |
1116 | aml_int(cmos_get_fd_drive_type(type))); /* Device Type */ | |
1117 | /* | |
1118 | * the values below are the limits of the drive, and are thus independent | |
1119 | * of the inserted media | |
1120 | */ | |
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 */ | |
1124 | /* | |
1125 | * SeaBIOS returns the below values for int 0x13 func 0x08 regardless of | |
1126 | * the drive type, so shall we | |
1127 | */ | |
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 */ | |
1139 | ||
1140 | aml_append(dev, aml_name_decl("_FDI", fdi)); | |
1141 | return dev; | |
1142 | } | |
1143 | ||
1144 | static Aml *build_fdc_device_aml(ISADevice *fdc) | |
1145 | { | |
1146 | int i; | |
95ed7e97 IM |
1147 | Aml *dev; |
1148 | Aml *crs; | |
95ed7e97 | 1149 | |
27b9fc54 RK |
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) */ | |
1154 | }; | |
1155 | ||
95ed7e97 IM |
1156 | dev = aml_device("FDC0"); |
1157 | aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0700"))); | |
1158 | ||
95ed7e97 IM |
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)); | |
1163 | aml_append(crs, | |
1164 | aml_dma(AML_COMPATIBILITY, AML_NOTBUSMASTER, AML_TRANSFER8, 2)); | |
1165 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
1166 | ||
27b9fc54 RK |
1167 | for (i = 0; i < MIN(MAX_FD, ACPI_FDE_MAX_FD); i++) { |
1168 | FloppyDriveType type = isa_fdc_get_drive_type(fdc, i); | |
1169 | ||
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)); | |
1173 | } | |
1174 | } | |
1175 | aml_append(dev, aml_name_decl("_FDE", | |
1176 | aml_buffer(sizeof(fde_buf), (uint8_t *)fde_buf))); | |
1177 | ||
95ed7e97 IM |
1178 | return dev; |
1179 | } | |
1180 | ||
ee135849 IM |
1181 | static Aml *build_rtc_device_aml(void) |
1182 | { | |
1183 | Aml *dev; | |
1184 | Aml *crs; | |
1185 | ||
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)); | |
95ed7e97 | 1192 | aml_append(dev, aml_name_decl("_CRS", crs)); |
f58190e2 IM |
1193 | |
1194 | return dev; | |
1195 | } | |
1196 | ||
1197 | static Aml *build_kbd_device_aml(void) | |
1198 | { | |
1199 | Aml *dev; | |
1200 | Aml *crs; | |
1201 | Aml *method; | |
1202 | ||
1203 | dev = aml_device("KBD"); | |
1204 | aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0303"))); | |
1205 | ||
1206 | method = aml_method("_STA", 0, AML_NOTSERIALIZED); | |
1207 | aml_append(method, aml_return(aml_int(0x0f))); | |
1208 | aml_append(dev, method); | |
1209 | ||
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)); | |
ee135849 IM |
1214 | aml_append(dev, aml_name_decl("_CRS", crs)); |
1215 | ||
1216 | return dev; | |
1217 | } | |
1218 | ||
c355cb2c IM |
1219 | static Aml *build_mouse_device_aml(void) |
1220 | { | |
1221 | Aml *dev; | |
1222 | Aml *crs; | |
1223 | Aml *method; | |
1224 | ||
1225 | dev = aml_device("MOU"); | |
1226 | aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0F13"))); | |
1227 | ||
1228 | method = aml_method("_STA", 0, AML_NOTSERIALIZED); | |
1229 | aml_append(method, aml_return(aml_int(0x0f))); | |
1230 | aml_append(dev, method); | |
1231 | ||
1232 | crs = aml_resource_template(); | |
1233 | aml_append(crs, aml_irq_no_flags(12)); | |
1234 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
1235 | ||
1236 | return dev; | |
1237 | } | |
1238 | ||
8b1da5f8 IM |
1239 | static Aml *build_lpt_device_aml(void) |
1240 | { | |
1241 | Aml *dev; | |
1242 | Aml *crs; | |
1243 | Aml *method; | |
1244 | Aml *if_ctx; | |
1245 | Aml *else_ctx; | |
1246 | Aml *zero = aml_int(0); | |
1247 | Aml *is_present = aml_local(0); | |
1248 | ||
1249 | dev = aml_device("LPT"); | |
1250 | aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0400"))); | |
1251 | ||
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)); | |
1255 | { | |
1256 | aml_append(if_ctx, aml_return(aml_int(0x00))); | |
1257 | } | |
1258 | aml_append(method, if_ctx); | |
1259 | else_ctx = aml_else(); | |
1260 | { | |
1261 | aml_append(else_ctx, aml_return(aml_int(0x0f))); | |
1262 | } | |
1263 | aml_append(method, else_ctx); | |
1264 | aml_append(dev, method); | |
1265 | ||
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)); | |
1270 | ||
1271 | return dev; | |
1272 | } | |
1273 | ||
28f1f0e9 IM |
1274 | static Aml *build_com_device_aml(uint8_t uid) |
1275 | { | |
1276 | Aml *dev; | |
1277 | Aml *crs; | |
1278 | Aml *method; | |
1279 | Aml *if_ctx; | |
1280 | Aml *else_ctx; | |
1281 | Aml *zero = aml_int(0); | |
1282 | Aml *is_present = aml_local(0); | |
1283 | const char *enabled_field = "CAEN"; | |
1284 | uint8_t irq = 4; | |
1285 | uint16_t io_port = 0x03F8; | |
1286 | ||
1287 | assert(uid == 1 || uid == 2); | |
1288 | if (uid == 2) { | |
1289 | enabled_field = "CBEN"; | |
1290 | irq = 3; | |
1291 | io_port = 0x02F8; | |
1292 | } | |
1293 | ||
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))); | |
1297 | ||
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)); | |
1301 | { | |
1302 | aml_append(if_ctx, aml_return(aml_int(0x00))); | |
1303 | } | |
1304 | aml_append(method, if_ctx); | |
1305 | else_ctx = aml_else(); | |
1306 | { | |
1307 | aml_append(else_ctx, aml_return(aml_int(0x0f))); | |
1308 | } | |
1309 | aml_append(method, else_ctx); | |
1310 | aml_append(dev, method); | |
1311 | ||
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)); | |
1316 | ||
1317 | return dev; | |
1318 | } | |
1319 | ||
ee135849 IM |
1320 | static void build_isa_devices_aml(Aml *table) |
1321 | { | |
27b9fc54 | 1322 | ISADevice *fdc = pc_find_fdc0(); |
86e91dd7 | 1323 | bool ambiguous; |
27b9fc54 | 1324 | |
ee135849 | 1325 | Aml *scope = aml_scope("_SB.PCI0.ISA"); |
86e91dd7 | 1326 | Object *obj = object_resolve_path_type("", TYPE_ISA_BUS, &ambiguous); |
ee135849 IM |
1327 | |
1328 | aml_append(scope, build_rtc_device_aml()); | |
f58190e2 | 1329 | aml_append(scope, build_kbd_device_aml()); |
c355cb2c | 1330 | aml_append(scope, build_mouse_device_aml()); |
27b9fc54 RK |
1331 | if (fdc) { |
1332 | aml_append(scope, build_fdc_device_aml(fdc)); | |
9b613f4e | 1333 | } |
8b1da5f8 | 1334 | aml_append(scope, build_lpt_device_aml()); |
28f1f0e9 IM |
1335 | aml_append(scope, build_com_device_aml(1)); |
1336 | aml_append(scope, build_com_device_aml(2)); | |
ee135849 | 1337 | |
86e91dd7 CM |
1338 | if (ambiguous) { |
1339 | error_report("Multiple ISA busses, unable to define IPMI ACPI data"); | |
1340 | } else if (!obj) { | |
1341 | error_report("No ISA bus, unable to define IPMI ACPI data"); | |
1342 | } else { | |
1343 | build_acpi_ipmi_devices(scope, BUS(obj)); | |
1344 | } | |
1345 | ||
ee135849 IM |
1346 | aml_append(table, scope); |
1347 | } | |
1348 | ||
3892a2b7 IM |
1349 | static void build_dbg_aml(Aml *table) |
1350 | { | |
1351 | Aml *field; | |
1352 | Aml *method; | |
1353 | Aml *while_ctx; | |
1354 | Aml *scope = aml_scope("\\"); | |
1355 | Aml *buf = aml_local(0); | |
1356 | Aml *len = aml_local(1); | |
1357 | Aml *idx = aml_local(2); | |
1358 | ||
1359 | aml_append(scope, | |
3f3009c0 | 1360 | aml_operation_region("DBG", AML_SYSTEM_IO, aml_int(0x0402), 0x01)); |
3892a2b7 IM |
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); | |
1364 | ||
1365 | method = aml_method("DBUG", 1, AML_NOTSERIALIZED); | |
1366 | ||
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)); | |
1371 | ||
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); | |
1377 | ||
1378 | aml_append(method, aml_store(aml_int(0x0A), aml_name("DBGB"))); | |
1379 | aml_append(scope, method); | |
1380 | ||
1381 | aml_append(table, scope); | |
1382 | } | |
1383 | ||
c35b6e80 IM |
1384 | static Aml *build_link_dev(const char *name, uint8_t uid, Aml *reg) |
1385 | { | |
1386 | Aml *dev; | |
1387 | Aml *crs; | |
1388 | Aml *method; | |
1389 | uint32_t irqs[] = {5, 10, 11}; | |
1390 | ||
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))); | |
1394 | ||
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)); | |
1399 | ||
1400 | method = aml_method("_STA", 0, AML_NOTSERIALIZED); | |
1401 | aml_append(method, aml_return(aml_call1("IQST", reg))); | |
1402 | aml_append(dev, method); | |
1403 | ||
1404 | method = aml_method("_DIS", 0, AML_NOTSERIALIZED); | |
1405 | aml_append(method, aml_or(reg, aml_int(0x80), reg)); | |
1406 | aml_append(dev, method); | |
1407 | ||
1408 | method = aml_method("_CRS", 0, AML_NOTSERIALIZED); | |
1409 | aml_append(method, aml_return(aml_call1("IQCR", reg))); | |
1410 | aml_append(dev, method); | |
1411 | ||
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); | |
1416 | ||
1417 | return dev; | |
1418 | } | |
1419 | ||
80b32df5 IM |
1420 | static Aml *build_gsi_link_dev(const char *name, uint8_t uid, uint8_t gsi) |
1421 | { | |
1422 | Aml *dev; | |
1423 | Aml *crs; | |
1424 | Aml *method; | |
1425 | uint32_t irqs; | |
1426 | ||
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))); | |
1430 | ||
1431 | crs = aml_resource_template(); | |
1432 | irqs = gsi; | |
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)); | |
1436 | ||
1437 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
1438 | ||
c82f503d MA |
1439 | /* |
1440 | * _DIS can be no-op because the interrupt cannot be disabled. | |
1441 | */ | |
1442 | method = aml_method("_DIS", 0, AML_NOTSERIALIZED); | |
1443 | aml_append(dev, method); | |
1444 | ||
80b32df5 IM |
1445 | method = aml_method("_SRS", 1, AML_NOTSERIALIZED); |
1446 | aml_append(dev, method); | |
1447 | ||
1448 | return dev; | |
1449 | } | |
1450 | ||
16682a9d IM |
1451 | /* _CRS method - get current settings */ |
1452 | static Aml *build_iqcr_method(bool is_piix4) | |
1453 | { | |
1454 | Aml *if_ctx; | |
1455 | uint32_t irqs; | |
1456 | Aml *method = aml_method("IQCR", 1, AML_SERIALIZED); | |
1457 | Aml *crs = aml_resource_template(); | |
1458 | ||
1459 | irqs = 0; | |
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)); | |
1463 | ||
1464 | aml_append(method, | |
1465 | aml_create_dword_field(aml_name("PRR0"), aml_int(5), "PRRI")); | |
1466 | ||
1467 | if (is_piix4) { | |
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); | |
1471 | } else { | |
1472 | aml_append(method, | |
1473 | aml_store(aml_and(aml_arg(0), aml_int(0xF), NULL), | |
1474 | aml_name("PRRI"))); | |
1475 | } | |
1476 | ||
1477 | aml_append(method, aml_return(aml_name("PRR0"))); | |
1478 | return method; | |
1479 | } | |
1480 | ||
78e1ad05 IM |
1481 | /* _STA method - get status */ |
1482 | static Aml *build_irq_status_method(void) | |
1483 | { | |
1484 | Aml *if_ctx; | |
1485 | Aml *method = aml_method("IQST", 1, AML_NOTSERIALIZED); | |
1486 | ||
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))); | |
1491 | return method; | |
1492 | } | |
1493 | ||
e4db2798 IM |
1494 | static void build_piix4_pci0_int(Aml *table) |
1495 | { | |
c35b6e80 IM |
1496 | Aml *dev; |
1497 | Aml *crs; | |
e4db2798 | 1498 | Aml *field; |
c35b6e80 IM |
1499 | Aml *method; |
1500 | uint32_t irqs; | |
e4db2798 | 1501 | Aml *sb_scope = aml_scope("_SB"); |
196e2137 IM |
1502 | Aml *pci0_scope = aml_scope("PCI0"); |
1503 | ||
1504 | aml_append(pci0_scope, build_prt(true)); | |
1505 | aml_append(sb_scope, pci0_scope); | |
e4db2798 IM |
1506 | |
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); | |
1513 | ||
78e1ad05 | 1514 | aml_append(sb_scope, build_irq_status_method()); |
16682a9d | 1515 | aml_append(sb_scope, build_iqcr_method(true)); |
100681cc | 1516 | |
c35b6e80 IM |
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"))); | |
1521 | ||
1522 | dev = aml_device("LNKS"); | |
1523 | { | |
1524 | aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0C0F"))); | |
1525 | aml_append(dev, aml_name_decl("_UID", aml_int(4))); | |
1526 | ||
1527 | crs = aml_resource_template(); | |
1528 | irqs = 9; | |
1529 | aml_append(crs, aml_interrupt(AML_CONSUMER, AML_LEVEL, | |
1530 | AML_ACTIVE_HIGH, AML_SHARED, | |
1531 | &irqs, 1)); | |
1532 | aml_append(dev, aml_name_decl("_PRS", crs)); | |
1533 | ||
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. | |
1537 | */ | |
1538 | method = aml_method("_STA", 0, AML_NOTSERIALIZED); | |
1539 | aml_append(method, aml_return(aml_int(0x0b))); | |
1540 | aml_append(dev, method); | |
1541 | ||
1542 | method = aml_method("_DIS", 0, AML_NOTSERIALIZED); | |
1543 | aml_append(dev, method); | |
1544 | ||
1545 | method = aml_method("_CRS", 0, AML_NOTSERIALIZED); | |
1546 | aml_append(method, aml_return(aml_name("_PRS"))); | |
1547 | aml_append(dev, method); | |
1548 | ||
1549 | method = aml_method("_SRS", 1, AML_NOTSERIALIZED); | |
1550 | aml_append(dev, method); | |
1551 | } | |
1552 | aml_append(sb_scope, dev); | |
1553 | ||
e4db2798 IM |
1554 | aml_append(table, sb_scope); |
1555 | } | |
1556 | ||
22b5b8bf IM |
1557 | static void append_q35_prt_entry(Aml *ctx, uint32_t nr, const char *name) |
1558 | { | |
1559 | int i; | |
1560 | int head; | |
1561 | Aml *pkg; | |
1562 | char base = name[3] < 'E' ? 'A' : 'E'; | |
1563 | char *s = g_strdup(name); | |
1564 | Aml *a_nr = aml_int((nr << 16) | 0xffff); | |
1565 | ||
1566 | assert(strlen(s) == 4); | |
1567 | ||
1568 | head = name[3] - base; | |
1569 | for (i = 0; i < 4; i++) { | |
1570 | if (head + i > 3) { | |
1571 | head = i * -1; | |
1572 | } | |
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); | |
1580 | } | |
1581 | g_free(s); | |
1582 | } | |
1583 | ||
1584 | static Aml *build_q35_routing_table(const char *str) | |
1585 | { | |
1586 | int i; | |
1587 | Aml *pkg; | |
1588 | char *name = g_strdup_printf("%s ", str); | |
1589 | ||
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); | |
1594 | } | |
1595 | ||
1596 | name[3] = 'E'; | |
1597 | append_q35_prt_entry(pkg, 0x18, name); | |
1598 | ||
1599 | /* INTA -> PIRQA for slot 25 - 31, see the default value of D<N>IR */ | |
1600 | for (i = 0x0019; i < 0x1e; i++) { | |
1601 | name[3] = 'A'; | |
1602 | append_q35_prt_entry(pkg, i, name); | |
1603 | } | |
1604 | ||
1605 | /* PCIe->PCI bridge. use PIRQ[E-H] */ | |
1606 | name[3] = 'E'; | |
1607 | append_q35_prt_entry(pkg, 0x1e, name); | |
1608 | name[3] = 'A'; | |
1609 | append_q35_prt_entry(pkg, 0x1f, name); | |
1610 | ||
1611 | g_free(name); | |
1612 | return pkg; | |
1613 | } | |
1614 | ||
80b32df5 IM |
1615 | static void build_q35_pci0_int(Aml *table) |
1616 | { | |
41f95a52 | 1617 | Aml *field; |
0dafe3b3 | 1618 | Aml *method; |
80b32df5 | 1619 | Aml *sb_scope = aml_scope("_SB"); |
0dafe3b3 IM |
1620 | Aml *pci0_scope = aml_scope("PCI0"); |
1621 | ||
e9fce798 IM |
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); | |
1625 | { | |
1626 | aml_append(method, aml_store(aml_arg(0), aml_name("PICF"))); | |
1627 | } | |
1628 | aml_append(table, method); | |
1629 | ||
65aef4de IM |
1630 | aml_append(pci0_scope, |
1631 | aml_name_decl("PRTP", build_q35_routing_table("LNK"))); | |
22b5b8bf IM |
1632 | aml_append(pci0_scope, |
1633 | aml_name_decl("PRTA", build_q35_routing_table("GSI"))); | |
1634 | ||
0dafe3b3 IM |
1635 | method = aml_method("_PRT", 0, AML_NOTSERIALIZED); |
1636 | { | |
1637 | Aml *if_ctx; | |
1638 | Aml *else_ctx; | |
1639 | ||
1640 | /* PCI IRQ routing table, example from ACPI 2.0a specification, | |
1641 | section 6.2.8.1 */ | |
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); | |
1650 | } | |
1651 | aml_append(pci0_scope, method); | |
1652 | aml_append(sb_scope, pci0_scope); | |
80b32df5 | 1653 | |
41f95a52 IM |
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); | |
1665 | ||
78e1ad05 | 1666 | aml_append(sb_scope, build_irq_status_method()); |
16682a9d IM |
1667 | aml_append(sb_scope, build_iqcr_method(false)); |
1668 | ||
12e3b1f7 IM |
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"))); | |
1677 | ||
6a991e07 MA |
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)); | |
80b32df5 IM |
1686 | |
1687 | aml_append(table, sb_scope); | |
1688 | } | |
1689 | ||
41f95a52 IM |
1690 | static void build_q35_isa_bridge(Aml *table) |
1691 | { | |
1692 | Aml *dev; | |
1693 | Aml *scope; | |
1694 | Aml *field; | |
1695 | ||
1696 | scope = aml_scope("_SB.PCI0"); | |
1697 | dev = aml_device("ISA"); | |
1698 | aml_append(dev, aml_name_decl("_ADR", aml_int(0x001F0000))); | |
1699 | ||
1700 | /* ICH9 PCI to ISA irq remapping */ | |
1701 | aml_append(dev, aml_operation_region("PIRQ", AML_PCI_CONFIG, | |
3f3009c0 | 1702 | aml_int(0x60), 0x0C)); |
41f95a52 IM |
1703 | |
1704 | aml_append(dev, aml_operation_region("LPCD", AML_PCI_CONFIG, | |
3f3009c0 | 1705 | aml_int(0x80), 0x02)); |
41f95a52 IM |
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)); | |
41f95a52 IM |
1712 | aml_append(dev, field); |
1713 | ||
1714 | aml_append(dev, aml_operation_region("LPCE", AML_PCI_CONFIG, | |
3f3009c0 | 1715 | aml_int(0x82), 0x02)); |
41f95a52 IM |
1716 | /* enable bits */ |
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)); | |
41f95a52 IM |
1721 | aml_append(dev, field); |
1722 | ||
1723 | aml_append(scope, dev); | |
1724 | aml_append(table, scope); | |
1725 | } | |
1726 | ||
e4db2798 IM |
1727 | static void build_piix4_pm(Aml *table) |
1728 | { | |
1729 | Aml *dev; | |
1730 | Aml *scope; | |
1731 | ||
1732 | scope = aml_scope("_SB.PCI0"); | |
1733 | dev = aml_device("PX13"); | |
1734 | aml_append(dev, aml_name_decl("_ADR", aml_int(0x00010003))); | |
1735 | ||
1736 | aml_append(dev, aml_operation_region("P13C", AML_PCI_CONFIG, | |
3f3009c0 | 1737 | aml_int(0x00), 0xff)); |
e4db2798 IM |
1738 | aml_append(scope, dev); |
1739 | aml_append(table, scope); | |
1740 | } | |
1741 | ||
1742 | static void build_piix4_isa_bridge(Aml *table) | |
1743 | { | |
1744 | Aml *dev; | |
1745 | Aml *scope; | |
1746 | Aml *field; | |
1747 | ||
1748 | scope = aml_scope("_SB.PCI0"); | |
1749 | dev = aml_device("ISA"); | |
1750 | aml_append(dev, aml_name_decl("_ADR", aml_int(0x00010000))); | |
1751 | ||
1752 | /* PIIX PCI to ISA irq remapping */ | |
1753 | aml_append(dev, aml_operation_region("P40C", AML_PCI_CONFIG, | |
3f3009c0 | 1754 | aml_int(0x60), 0x04)); |
e4db2798 IM |
1755 | /* enable bits */ |
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); | |
e4db2798 IM |
1768 | |
1769 | aml_append(scope, dev); | |
1770 | aml_append(table, scope); | |
1771 | } | |
1772 | ||
b616ec4d IM |
1773 | static void build_piix4_pci_hotplug(Aml *table) |
1774 | { | |
1775 | Aml *scope; | |
1776 | Aml *field; | |
1777 | Aml *method; | |
1778 | ||
1779 | scope = aml_scope("_SB.PCI0"); | |
1780 | ||
1781 | aml_append(scope, | |
3f3009c0 | 1782 | aml_operation_region("PCST", AML_SYSTEM_IO, aml_int(0xae00), 0x08)); |
b616ec4d IM |
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); | |
1787 | ||
1788 | aml_append(scope, | |
3f3009c0 | 1789 | aml_operation_region("SEJ", AML_SYSTEM_IO, aml_int(0xae08), 0x04)); |
b616ec4d IM |
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); | |
1793 | ||
1794 | aml_append(scope, | |
3f3009c0 | 1795 | aml_operation_region("BNMR", AML_SYSTEM_IO, aml_int(0xae10), 0x04)); |
b616ec4d IM |
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); | |
1799 | ||
1800 | aml_append(scope, aml_mutex("BLCK", 0)); | |
1801 | ||
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"))); | |
1805 | aml_append(method, | |
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); | |
1810 | ||
1811 | aml_append(table, scope); | |
1812 | } | |
1813 | ||
f97a88a8 IM |
1814 | static Aml *build_q35_osc_method(void) |
1815 | { | |
1816 | Aml *if_ctx; | |
1817 | Aml *if_ctx2; | |
1818 | Aml *else_ctx; | |
1819 | Aml *method; | |
1820 | Aml *a_cwd1 = aml_name("CDW1"); | |
b3c782db | 1821 | Aml *a_ctrl = aml_local(0); |
f97a88a8 IM |
1822 | |
1823 | method = aml_method("_OSC", 4, AML_NOTSERIALIZED); | |
1824 | aml_append(method, aml_create_dword_field(aml_arg(3), aml_int(0), "CDW1")); | |
1825 | ||
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")); | |
1830 | ||
f97a88a8 IM |
1831 | aml_append(if_ctx, aml_store(aml_name("CDW3"), a_ctrl)); |
1832 | ||
1833 | /* | |
1834 | * Always allow native PME, AER (no dependencies) | |
a41c78c1 | 1835 | * Allow SHPC (PCI bridges can have SHPC controller) |
f97a88a8 | 1836 | */ |
a41c78c1 | 1837 | aml_append(if_ctx, aml_and(a_ctrl, aml_int(0x1F), a_ctrl)); |
f97a88a8 IM |
1838 | |
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); | |
1843 | ||
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); | |
1848 | ||
1849 | /* Update DWORD3 in the buffer */ | |
1850 | aml_append(if_ctx, aml_store(a_ctrl, aml_name("CDW3"))); | |
1851 | aml_append(method, if_ctx); | |
1852 | ||
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); | |
1857 | ||
1858 | aml_append(method, aml_return(aml_arg(3))); | |
1859 | return method; | |
1860 | } | |
b616ec4d | 1861 | |
72c194f7 | 1862 | static void |
0e9b9eda | 1863 | build_dsdt(GArray *table_data, BIOSLinker *linker, |
adcb89d5 | 1864 | AcpiPmInfo *pm, AcpiMiscInfo *misc, |
01c9742d | 1865 | Range *pci_hole, Range *pci_hole64, MachineState *machine) |
72c194f7 | 1866 | { |
41fa5c04 IM |
1867 | CrsRangeEntry *entry; |
1868 | Aml *dsdt, *sb_scope, *scope, *dev, *method, *field, *pkg, *crs; | |
2df5a7b5 | 1869 | CrsRangeSet crs_range_set; |
fb306ffe | 1870 | PCMachineState *pcms = PC_MACHINE(machine); |
679dd1a9 | 1871 | PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(machine); |
bef3492d | 1872 | uint32_t nr_mem = machine->ram_slots; |
dcdca296 | 1873 | int root_bus_limit = 0xFF; |
41fa5c04 | 1874 | PCIBus *bus = NULL; |
72c194f7 MT |
1875 | int i; |
1876 | ||
41fa5c04 | 1877 | dsdt = init_aml_allocator(); |
2fd71f1b | 1878 | |
4ec8d2b3 | 1879 | /* Reserve space for header */ |
41fa5c04 IM |
1880 | acpi_data_push(dsdt->buf, sizeof(AcpiTableHeader)); |
1881 | ||
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); | |
1891 | ||
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); | |
1898 | } else { | |
41fa5c04 IM |
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))); | |
41fa5c04 IM |
1905 | aml_append(dev, build_q35_osc_method()); |
1906 | aml_append(sb_scope, dev); | |
1907 | aml_append(dsdt, sb_scope); | |
1908 | ||
1909 | build_hpet_aml(dsdt); | |
1910 | build_q35_isa_bridge(dsdt); | |
1911 | build_isa_devices_aml(dsdt); | |
1912 | build_q35_pci0_int(dsdt); | |
1913 | } | |
1914 | ||
679dd1a9 IM |
1915 | if (pcmc->legacy_cpu_hotplug) { |
1916 | build_legacy_cpu_hotplug_aml(dsdt, machine, pm->cpu_hp_io_base); | |
1917 | } else { | |
1918 | CPUHotplugFeatures opts = { | |
1919 | .apci_1_compatible = true, .has_legacy_cphp = true | |
1920 | }; | |
1921 | build_cpus_aml(dsdt, machine, opts, pm->cpu_hp_io_base, | |
1922 | "\\_SB.PCI0", "\\_GPE._E02"); | |
1923 | } | |
80db0e78 | 1924 | build_memory_hotplug_aml(dsdt, nr_mem, "\\_SB.PCI0", "\\_GPE._E03"); |
41fa5c04 IM |
1925 | |
1926 | scope = aml_scope("_GPE"); | |
1927 | { | |
1928 | aml_append(scope, aml_name_decl("_HID", aml_string("ACPI0006"))); | |
1929 | ||
41fa5c04 IM |
1930 | if (misc->is_piix4) { |
1931 | method = aml_method("_E01", 0, AML_NOTSERIALIZED); | |
1932 | aml_append(method, | |
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); | |
41fa5c04 IM |
1937 | } |
1938 | ||
b097cc52 XG |
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"), | |
1942 | aml_int(0x80))); | |
1943 | aml_append(scope, method); | |
1944 | } | |
41fa5c04 IM |
1945 | } |
1946 | aml_append(dsdt, scope); | |
72c194f7 | 1947 | |
2df5a7b5 | 1948 | crs_range_set_init(&crs_range_set); |
81ed6482 | 1949 | bus = PC_MACHINE(machine)->bus; |
a4894206 MA |
1950 | if (bus) { |
1951 | QLIST_FOREACH(bus, &bus->child, sibling) { | |
1952 | uint8_t bus_num = pci_bus_num(bus); | |
0e79e51a | 1953 | uint8_t numa_node = pci_bus_numa_node(bus); |
a4894206 MA |
1954 | |
1955 | /* look only for expander root buses */ | |
1956 | if (!pci_bus_is_root(bus)) { | |
1957 | continue; | |
1958 | } | |
1959 | ||
dcdca296 MA |
1960 | if (bus_num < root_bus_limit) { |
1961 | root_bus_limit = bus_num - 1; | |
1962 | } | |
1963 | ||
a4894206 MA |
1964 | scope = aml_scope("\\_SB"); |
1965 | dev = aml_device("PC%.02X", bus_num); | |
c96d9286 LE |
1966 | aml_append(dev, aml_name_decl("_UID", aml_int(bus_num))); |
1967 | aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0A03"))); | |
a4894206 | 1968 | aml_append(dev, aml_name_decl("_BBN", aml_int(bus_num))); |
077dd742 MA |
1969 | if (pci_bus_is_express(bus)) { |
1970 | aml_append(dev, build_q35_osc_method()); | |
1971 | } | |
0e79e51a MA |
1972 | |
1973 | if (numa_node != NUMA_NODE_UNASSIGNED) { | |
1974 | aml_append(dev, aml_name_decl("_PXM", aml_int(numa_node))); | |
1975 | } | |
1976 | ||
196e2137 | 1977 | aml_append(dev, build_prt(false)); |
2df5a7b5 | 1978 | crs = build_crs(PCI_HOST_BRIDGE(BUS(bus)->parent), &crs_range_set); |
a43c6e27 | 1979 | aml_append(dev, aml_name_decl("_CRS", crs)); |
a4894206 | 1980 | aml_append(scope, dev); |
41fa5c04 | 1981 | aml_append(dsdt, scope); |
a4894206 MA |
1982 | } |
1983 | } | |
1984 | ||
500b11ea | 1985 | scope = aml_scope("\\_SB.PCI0"); |
60efd429 IM |
1986 | /* build PCI0._CRS */ |
1987 | crs = aml_resource_template(); | |
1988 | aml_append(crs, | |
ff80dc7f | 1989 | aml_word_bus_number(AML_MIN_FIXED, AML_MAX_FIXED, AML_POS_DECODE, |
dcdca296 MA |
1990 | 0x0000, 0x0, root_bus_limit, |
1991 | 0x0000, root_bus_limit + 1)); | |
ff80dc7f | 1992 | aml_append(crs, aml_io(AML_DECODE16, 0x0CF8, 0x0CF8, 0x01, 0x08)); |
60efd429 IM |
1993 | |
1994 | aml_append(crs, | |
ff80dc7f SZ |
1995 | aml_word_io(AML_MIN_FIXED, AML_MAX_FIXED, |
1996 | AML_POS_DECODE, AML_ENTIRE_RANGE, | |
60efd429 | 1997 | 0x0000, 0x0000, 0x0CF7, 0x0000, 0x0CF8)); |
dcdca296 | 1998 | |
2df5a7b5 MA |
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); | |
dcdca296 MA |
2002 | aml_append(crs, |
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)); | |
2007 | } | |
2008 | ||
60efd429 | 2009 | aml_append(crs, |
ff80dc7f SZ |
2010 | aml_dword_memory(AML_POS_DECODE, AML_MIN_FIXED, AML_MAX_FIXED, |
2011 | AML_CACHEABLE, AML_READ_WRITE, | |
60efd429 | 2012 | 0, 0x000A0000, 0x000BFFFF, 0, 0x00020000)); |
dcdca296 | 2013 | |
2df5a7b5 | 2014 | crs_replace_with_free_ranges(crs_range_set.mem_ranges, |
a0efbf16 MA |
2015 | range_lob(pci_hole), |
2016 | range_upb(pci_hole)); | |
2df5a7b5 MA |
2017 | for (i = 0; i < crs_range_set.mem_ranges->len; i++) { |
2018 | entry = g_ptr_array_index(crs_range_set.mem_ranges, i); | |
dcdca296 MA |
2019 | aml_append(crs, |
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)); | |
2024 | } | |
2025 | ||
a0efbf16 | 2026 | if (!range_is_empty(pci_hole64)) { |
16de88a4 MA |
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); | |
2032 | aml_append(crs, | |
2033 | aml_qword_memory(AML_POS_DECODE, AML_MIN_FIXED, | |
2034 | AML_MAX_FIXED, | |
2035 | AML_CACHEABLE, AML_READ_WRITE, | |
2036 | 0, entry->base, entry->limit, | |
2037 | 0, entry->limit - entry->base + 1)); | |
2038 | } | |
60efd429 | 2039 | } |
2b1c2e8e IM |
2040 | |
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)); | |
2044 | } | |
60efd429 IM |
2045 | aml_append(scope, aml_name_decl("_CRS", crs)); |
2046 | ||
d31c909e IM |
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(); | |
2054 | aml_append(crs, | |
ff80dc7f | 2055 | aml_io(AML_DECODE16, pm->gpe0_blk, pm->gpe0_blk, 1, pm->gpe0_blk_len) |
d31c909e IM |
2056 | ); |
2057 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
2058 | aml_append(scope, dev); | |
2059 | ||
2df5a7b5 | 2060 | crs_range_set_free(&crs_range_set); |
dcdca296 | 2061 | |
500b11ea IM |
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"))); | |
2066 | aml_append(dev, | |
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(); | |
2071 | aml_append(crs, | |
ff80dc7f | 2072 | aml_io(AML_DECODE16, pm->pcihp_io_base, pm->pcihp_io_base, 1, |
500b11ea IM |
2073 | pm->pcihp_io_len) |
2074 | ); | |
2075 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
2076 | aml_append(scope, dev); | |
2077 | } | |
41fa5c04 | 2078 | aml_append(dsdt, scope); |
500b11ea | 2079 | |
ebc3028f IM |
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)); | |
2089 | } | |
2090 | ||
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)); | |
2099 | } | |
2100 | ||
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)); | |
41fa5c04 | 2107 | aml_append(dsdt, scope); |
ebc3028f | 2108 | |
e2ec7568 GS |
2109 | /* create fw_cfg node, unconditionally */ |
2110 | { | |
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) : | |
2118 | FW_CFG_CTL_SIZE; | |
2119 | ||
2120 | scope = aml_scope("\\_SB.PCI0"); | |
2121 | dev = aml_device("FWCF"); | |
2122 | ||
2123 | aml_append(dev, aml_name_decl("_HID", aml_string("QEMU0002"))); | |
2124 | ||
2125 | /* device present, functioning, decoding, not shown in UI */ | |
2126 | aml_append(dev, aml_name_decl("_STA", aml_int(0xB))); | |
2127 | ||
2128 | crs = aml_resource_template(); | |
2129 | aml_append(crs, | |
2130 | aml_io(AML_DECODE16, FW_CFG_IO_BASE, FW_CFG_IO_BASE, 0x01, io_size) | |
2131 | ); | |
2132 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
2133 | ||
2134 | aml_append(scope, dev); | |
2135 | aml_append(dsdt, scope); | |
2136 | } | |
2137 | ||
8ac6f7a6 IM |
2138 | if (misc->applesmc_io_base) { |
2139 | scope = aml_scope("\\_SB.PCI0.ISA"); | |
2140 | dev = aml_device("SMC"); | |
2141 | ||
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))); | |
2145 | ||
2146 | crs = aml_resource_template(); | |
2147 | aml_append(crs, | |
ff80dc7f | 2148 | aml_io(AML_DECODE16, misc->applesmc_io_base, misc->applesmc_io_base, |
8ac6f7a6 IM |
2149 | 0x01, APPLESMC_MAX_DATA_LENGTH) |
2150 | ); | |
2151 | aml_append(crs, aml_irq_no_flags(6)); | |
2152 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
2153 | ||
2154 | aml_append(scope, dev); | |
41fa5c04 | 2155 | aml_append(dsdt, scope); |
8ac6f7a6 IM |
2156 | } |
2157 | ||
cd61cb2e IM |
2158 | if (misc->pvpanic_port) { |
2159 | scope = aml_scope("\\_SB.PCI0.ISA"); | |
2160 | ||
2332333c | 2161 | dev = aml_device("PEVT"); |
e65bef69 | 2162 | aml_append(dev, aml_name_decl("_HID", aml_string("QEMU0001"))); |
cd61cb2e IM |
2163 | |
2164 | crs = aml_resource_template(); | |
2165 | aml_append(crs, | |
ff80dc7f | 2166 | aml_io(AML_DECODE16, misc->pvpanic_port, misc->pvpanic_port, 1, 1) |
cd61cb2e IM |
2167 | ); |
2168 | aml_append(dev, aml_name_decl("_CRS", crs)); | |
2169 | ||
ff80dc7f | 2170 | aml_append(dev, aml_operation_region("PEOR", AML_SYSTEM_IO, |
3f3009c0 | 2171 | aml_int(misc->pvpanic_port), 1)); |
36de884a | 2172 | field = aml_field("PEOR", AML_BYTE_ACC, AML_NOLOCK, AML_PRESERVE); |
cd61cb2e IM |
2173 | aml_append(field, aml_named_field("PEPT", 8)); |
2174 | aml_append(dev, field); | |
2175 | ||
8ef3ea25 GH |
2176 | /* device present, functioning, decoding, shown in UI */ |
2177 | aml_append(dev, aml_name_decl("_STA", aml_int(0xF))); | |
2332333c | 2178 | |
4dbfc881 | 2179 | method = aml_method("RDPT", 0, AML_NOTSERIALIZED); |
cd61cb2e IM |
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); | |
2183 | ||
4dbfc881 | 2184 | method = aml_method("WRPT", 1, AML_NOTSERIALIZED); |
cd61cb2e IM |
2185 | aml_append(method, aml_store(aml_arg(0), aml_name("PEPT"))); |
2186 | aml_append(dev, method); | |
2187 | ||
2188 | aml_append(scope, dev); | |
41fa5c04 | 2189 | aml_append(dsdt, scope); |
cd61cb2e IM |
2190 | } |
2191 | ||
7824df38 | 2192 | sb_scope = aml_scope("\\_SB"); |
72c194f7 | 2193 | { |
8b35ab27 IM |
2194 | Object *pci_host; |
2195 | PCIBus *bus = NULL; | |
8698c0c0 | 2196 | |
8b35ab27 IM |
2197 | pci_host = acpi_get_i386_pci_host(); |
2198 | if (pci_host) { | |
2199 | bus = PCI_HOST_BRIDGE(pci_host)->bus; | |
2200 | } | |
8dcf525a | 2201 | |
8b35ab27 IM |
2202 | if (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); | |
2206 | ||
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)); | |
2214 | /* | |
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 | |
2218 | */ | |
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); | |
8dcf525a | 2222 | } |
72c194f7 | 2223 | |
8b35ab27 | 2224 | aml_append(sb_scope, scope); |
72c194f7 | 2225 | } |
72c194f7 | 2226 | } |
8b35ab27 | 2227 | aml_append(dsdt, sb_scope); |
72c194f7 | 2228 | |
011bb749 | 2229 | /* copy AML table into ACPI tables blob and patch header there */ |
41fa5c04 | 2230 | g_array_append_vals(table_data, dsdt->buf->data, dsdt->buf->len); |
72c194f7 | 2231 | build_header(linker, table_data, |
41fa5c04 | 2232 | (void *)(table_data->data + table_data->len - dsdt->buf->len), |
37ad223c | 2233 | "DSDT", dsdt->buf->len, 1, NULL, NULL); |
011bb749 | 2234 | free_aml_allocator(); |
72c194f7 MT |
2235 | } |
2236 | ||
2237 | static void | |
0e9b9eda | 2238 | build_hpet(GArray *table_data, BIOSLinker *linker) |
72c194f7 MT |
2239 | { |
2240 | Acpi20Hpet *hpet; | |
2241 | ||
2242 | hpet = acpi_data_push(table_data, sizeof(*hpet)); | |
2243 | /* Note timer_block_id value must be kept in sync with value advertised by | |
2244 | * emulated hpet | |
2245 | */ | |
2246 | hpet->timer_block_id = cpu_to_le32(0x8086a201); | |
2247 | hpet->addr.address = cpu_to_le64(HPET_BASE); | |
2248 | build_header(linker, table_data, | |
37ad223c | 2249 | (void *)hpet, "HPET", sizeof(*hpet), 1, NULL, NULL); |
72c194f7 MT |
2250 | } |
2251 | ||
711b20b4 | 2252 | static void |
0e9b9eda | 2253 | build_tpm_tcpa(GArray *table_data, BIOSLinker *linker, GArray *tcpalog) |
711b20b4 SB |
2254 | { |
2255 | Acpi20Tcpa *tcpa = acpi_data_push(table_data, sizeof *tcpa); | |
4678124b IM |
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; | |
711b20b4 SB |
2259 | |
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); | |
9774ccf7 | 2262 | acpi_data_push(tcpalog, le32_to_cpu(tcpa->log_area_minimum_length)); |
711b20b4 | 2263 | |
ad9671b8 | 2264 | bios_linker_loader_alloc(linker, ACPI_BUILD_TPMLOG_FILE, tcpalog, 1, |
42a5b308 SB |
2265 | false /* high memory */); |
2266 | ||
711b20b4 | 2267 | /* log area start address to be filled by Guest linker */ |
4678124b IM |
2268 | bios_linker_loader_add_pointer(linker, |
2269 | ACPI_BUILD_TABLE_FILE, log_addr_offset, log_addr_size, | |
2270 | ACPI_BUILD_TPMLOG_FILE, 0); | |
711b20b4 SB |
2271 | |
2272 | build_header(linker, table_data, | |
37ad223c | 2273 | (void *)tcpa, "TCPA", sizeof(*tcpa), 2, NULL, NULL); |
711b20b4 SB |
2274 | } |
2275 | ||
5cb18b3d | 2276 | static void |
0e9b9eda | 2277 | build_tpm2(GArray *table_data, BIOSLinker *linker) |
5cb18b3d SB |
2278 | { |
2279 | Acpi20TPM2 *tpm2_ptr; | |
5cb18b3d SB |
2280 | |
2281 | tpm2_ptr = acpi_data_push(table_data, sizeof *tpm2_ptr); | |
2282 | ||
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); | |
2286 | ||
2287 | build_header(linker, table_data, | |
37ad223c | 2288 | (void *)tpm2_ptr, "TPM2", sizeof(*tpm2_ptr), 4, NULL, NULL); |
5cb18b3d SB |
2289 | } |
2290 | ||
4926403c EH |
2291 | #define HOLE_640K_START (640 * 1024) |
2292 | #define HOLE_640K_END (1024 * 1024) | |
2293 | ||
72c194f7 | 2294 | static void |
0e9b9eda | 2295 | build_srat(GArray *table_data, BIOSLinker *linker, MachineState *machine) |
72c194f7 MT |
2296 | { |
2297 | AcpiSystemResourceAffinityTable *srat; | |
72c194f7 MT |
2298 | AcpiSratMemoryAffinity *numamem; |
2299 | ||
2300 | int i; | |
72c194f7 MT |
2301 | int srat_start, numa_start, slots; |
2302 | uint64_t mem_len, mem_base, next_base; | |
5803fce3 | 2303 | MachineClass *mc = MACHINE_GET_CLASS(machine); |
80e5db30 | 2304 | const CPUArchIdList *apic_ids = mc->possible_cpu_arch_ids(machine); |
3d3ebcad | 2305 | PCMachineState *pcms = PC_MACHINE(machine); |
cec65193 IM |
2306 | ram_addr_t hotplugabble_address_space_size = |
2307 | object_property_get_int(OBJECT(pcms), PC_MACHINE_MEMHP_REGION_SIZE, | |
2308 | NULL); | |
72c194f7 MT |
2309 | |
2310 | srat_start = table_data->len; | |
2311 | ||
2312 | srat = acpi_data_push(table_data, sizeof *srat); | |
2313 | srat->reserved1 = cpu_to_le32(1); | |
72c194f7 | 2314 | |
5803fce3 | 2315 | for (i = 0; i < apic_ids->len; i++) { |
d41f3e75 | 2316 | int node_id = apic_ids->cpus[i].props.node_id; |
5eff33a2 | 2317 | uint32_t apic_id = apic_ids->cpus[i].arch_id; |
5803fce3 | 2318 | |
5eff33a2 IM |
2319 | if (apic_id < 255) { |
2320 | AcpiSratProcessorAffinity *core; | |
2321 | ||
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; | |
ea265072 | 2326 | core->proximity_lo = node_id; |
5eff33a2 IM |
2327 | memset(core->proximity_hi, 0, 3); |
2328 | core->local_sapic_eid = 0; | |
2329 | core->flags = cpu_to_le32(1); | |
2330 | } else { | |
2331 | AcpiSratProcessorX2ApicAffinity *core; | |
2332 | ||
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); | |
ea265072 | 2337 | core->proximity_domain = cpu_to_le32(node_id); |
5eff33a2 | 2338 | core->flags = cpu_to_le32(1); |
1f3aba37 | 2339 | } |
72c194f7 MT |
2340 | } |
2341 | ||
2342 | ||
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. | |
2345 | */ | |
2346 | next_base = 0; | |
2347 | numa_start = table_data->len; | |
2348 | ||
dd4c2f01 | 2349 | for (i = 1; i < pcms->numa_nodes + 1; ++i) { |
72c194f7 | 2350 | mem_base = next_base; |
dd4c2f01 | 2351 | mem_len = pcms->node_mem[i - 1]; |
72c194f7 MT |
2352 | next_base = mem_base + mem_len; |
2353 | ||
4926403c EH |
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; | |
2358 | if (mem_len > 0) { | |
2359 | numamem = acpi_data_push(table_data, sizeof *numamem); | |
2360 | build_srat_memory(numamem, mem_base, mem_len, i - 1, | |
2361 | MEM_AFFINITY_ENABLED); | |
2362 | } | |
2363 | ||
2364 | /* Check for the rare case: 640K < RAM < 1M */ | |
2365 | if (next_base <= HOLE_640K_END) { | |
2366 | next_base = HOLE_640K_END; | |
2367 | continue; | |
2368 | } | |
2369 | mem_base = HOLE_640K_END; | |
2370 | mem_len = next_base - HOLE_640K_END; | |
2371 | } | |
2372 | ||
72c194f7 | 2373 | /* Cut out the ACPI_PCI hole */ |
5299f1c7 EH |
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; | |
72c194f7 MT |
2377 | if (mem_len > 0) { |
2378 | numamem = acpi_data_push(table_data, sizeof *numamem); | |
64b83136 SZ |
2379 | build_srat_memory(numamem, mem_base, mem_len, i - 1, |
2380 | MEM_AFFINITY_ENABLED); | |
72c194f7 MT |
2381 | } |
2382 | mem_base = 1ULL << 32; | |
5299f1c7 EH |
2383 | mem_len = next_base - pcms->below_4g_mem_size; |
2384 | next_base += (1ULL << 32) - pcms->below_4g_mem_size; | |
72c194f7 MT |
2385 | } |
2386 | numamem = acpi_data_push(table_data, sizeof *numamem); | |
64b83136 SZ |
2387 | build_srat_memory(numamem, mem_base, mem_len, i - 1, |
2388 | MEM_AFFINITY_ENABLED); | |
72c194f7 MT |
2389 | } |
2390 | slots = (table_data->len - numa_start) / sizeof *numamem; | |
dd4c2f01 | 2391 | for (; slots < pcms->numa_nodes + 2; slots++) { |
72c194f7 | 2392 | numamem = acpi_data_push(table_data, sizeof *numamem); |
64b83136 | 2393 | build_srat_memory(numamem, 0, 0, 0, MEM_AFFINITY_NOFLAGS); |
72c194f7 MT |
2394 | } |
2395 | ||
cec65193 | 2396 | /* |
ede24a02 LP |
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. | |
cec65193 IM |
2401 | * Memory devices may override proximity set by this entry, |
2402 | * providing _PXM method if necessary. | |
2403 | */ | |
2404 | if (hotplugabble_address_space_size) { | |
2405 | numamem = acpi_data_push(table_data, sizeof *numamem); | |
64b83136 | 2406 | build_srat_memory(numamem, pcms->hotplug_memory.base, |
ede24a02 | 2407 | hotplugabble_address_space_size, pcms->numa_nodes - 1, |
64b83136 | 2408 | MEM_AFFINITY_HOTPLUGGABLE | MEM_AFFINITY_ENABLED); |
cec65193 IM |
2409 | } |
2410 | ||
72c194f7 MT |
2411 | build_header(linker, table_data, |
2412 | (void *)(table_data->data + srat_start), | |
821e3227 | 2413 | "SRAT", |
37ad223c | 2414 | table_data->len - srat_start, 1, NULL, NULL); |
72c194f7 MT |
2415 | } |
2416 | ||
2417 | static void | |
0e9b9eda | 2418 | build_mcfg_q35(GArray *table_data, BIOSLinker *linker, AcpiMcfgInfo *info) |
72c194f7 MT |
2419 | { |
2420 | AcpiTableMcfg *mcfg; | |
821e3227 | 2421 | const char *sig; |
72c194f7 MT |
2422 | int len = sizeof(*mcfg) + 1 * sizeof(mcfg->allocation[0]); |
2423 | ||
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); | |
2430 | ||
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. | |
2436 | */ | |
2437 | if (info->mcfg_base == PCIE_BASE_ADDR_UNMAPPED) { | |
821e3227 MT |
2438 | /* Reserved signature: ignored by OSPM */ |
2439 | sig = "QEMU"; | |
72c194f7 | 2440 | } else { |
821e3227 | 2441 | sig = "MCFG"; |
72c194f7 | 2442 | } |
37ad223c | 2443 | build_header(linker, table_data, (void *)mcfg, sig, len, 1, NULL, NULL); |
72c194f7 MT |
2444 | } |
2445 | ||
d46114f9 PX |
2446 | /* |
2447 | * VT-d spec 8.1 DMA Remapping Reporting Structure | |
2448 | * (version Oct. 2014 or later) | |
2449 | */ | |
d4eb9119 | 2450 | static void |
0e9b9eda | 2451 | build_dmar_q35(GArray *table_data, BIOSLinker *linker) |
d4eb9119 LT |
2452 | { |
2453 | int dmar_start = table_data->len; | |
2454 | ||
2455 | AcpiTableDmar *dmar; | |
2456 | AcpiDmarHardwareUnit *drhd; | |
bd2baacc | 2457 | AcpiDmarRootPortATS *atsr; |
d46114f9 PX |
2458 | uint8_t dmar_flags = 0; |
2459 | X86IOMMUState *iommu = x86_iommu_get_default(); | |
cfc13df4 PX |
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]); | |
d46114f9 PX |
2463 | |
2464 | assert(iommu); | |
2465 | if (iommu->intr_supported) { | |
2466 | dmar_flags |= 0x1; /* Flags: 0x1: INT_REMAP */ | |
2467 | } | |
d4eb9119 LT |
2468 | |
2469 | dmar = acpi_data_push(table_data, sizeof(*dmar)); | |
2470 | dmar->host_address_width = VTD_HOST_ADDRESS_WIDTH - 1; | |
d46114f9 | 2471 | dmar->flags = dmar_flags; |
d4eb9119 LT |
2472 | |
2473 | /* DMAR Remapping Hardware Unit Definition structure */ | |
cfc13df4 | 2474 | drhd = acpi_data_push(table_data, sizeof(*drhd) + ioapic_scope_size); |
d4eb9119 | 2475 | drhd->type = cpu_to_le16(ACPI_DMAR_TYPE_HARDWARE_UNIT); |
cfc13df4 | 2476 | drhd->length = cpu_to_le16(sizeof(*drhd) + ioapic_scope_size); |
d4eb9119 LT |
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); | |
2480 | ||
cfc13df4 PX |
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; | |
1b39bc1c PX |
2488 | scope->path[0].device = PCI_SLOT(Q35_PSEUDO_DEVFN_IOAPIC); |
2489 | scope->path[0].function = PCI_FUNC(Q35_PSEUDO_DEVFN_IOAPIC); | |
cfc13df4 | 2490 | |
bd2baacc JW |
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); | |
2497 | } | |
2498 | ||
d4eb9119 | 2499 | build_header(linker, table_data, (void *)(table_data->data + dmar_start), |
37ad223c | 2500 | "DMAR", table_data->len - dmar_start, 1, NULL, NULL); |
d4eb9119 | 2501 | } |
fb9f5926 DK |
2502 | /* |
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 | |
2505 | */ | |
2506 | static void | |
2507 | build_amd_iommu(GArray *table_data, BIOSLinker *linker) | |
2508 | { | |
2509 | int iommu_start = table_data->len; | |
2510 | AMDVIState *s = AMD_IOMMU_DEVICE(x86_iommu_get_default()); | |
2511 | ||
2512 | /* IVRS header */ | |
2513 | acpi_data_push(table_data, sizeof(AcpiTableHeader)); | |
2514 | /* IVinfo - IO virtualization information common to all | |
2515 | * IOMMU units in a system | |
2516 | */ | |
2517 | build_append_int_noprefix(table_data, 40UL << 8/* PASize */, 4); | |
2518 | /* reserved */ | |
2519 | build_append_int_noprefix(table_data, 0, 8); | |
2520 | ||
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 */ | |
2529 | 1); | |
2530 | /* IVHD length */ | |
2531 | build_append_int_noprefix(table_data, 0x24, 2); | |
2532 | /* DeviceID */ | |
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); | |
2540 | /* IOMMU info */ | |
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 */ | |
2547 | 4); | |
2548 | /* | |
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) | |
2552 | */ | |
2553 | build_append_int_noprefix(table_data, 0x0000001, 4); | |
2554 | ||
2555 | build_header(linker, table_data, (void *)(table_data->data + iommu_start), | |
2556 | "IVRS", table_data->len - iommu_start, 1, NULL, NULL); | |
2557 | } | |
d4eb9119 | 2558 | |
72c194f7 | 2559 | static GArray * |
4678124b | 2560 | build_rsdp(GArray *rsdp_table, BIOSLinker *linker, unsigned rsdt_tbl_offset) |
72c194f7 MT |
2561 | { |
2562 | AcpiRsdpDescriptor *rsdp = acpi_data_push(rsdp_table, sizeof *rsdp); | |
4678124b IM |
2563 | unsigned rsdt_pa_size = sizeof(rsdp->rsdt_physical_address); |
2564 | unsigned rsdt_pa_offset = | |
2565 | (char *)&rsdp->rsdt_physical_address - rsdp_table->data; | |
72c194f7 | 2566 | |
ad9671b8 | 2567 | bios_linker_loader_alloc(linker, ACPI_BUILD_RSDP_FILE, rsdp_table, 16, |
72c194f7 MT |
2568 | true /* fseg memory */); |
2569 | ||
821e3227 | 2570 | memcpy(&rsdp->signature, "RSD PTR ", 8); |
72c194f7 | 2571 | memcpy(rsdp->oem_id, ACPI_BUILD_APPNAME6, 6); |
72c194f7 | 2572 | /* Address to be filled by Guest linker */ |
4678124b IM |
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); | |
2576 | ||
72c194f7 MT |
2577 | /* Checksum to be filled by Guest linker */ |
2578 | bios_linker_loader_add_checksum(linker, ACPI_BUILD_RSDP_FILE, | |
28213cb6 IM |
2579 | (char *)rsdp - rsdp_table->data, sizeof *rsdp, |
2580 | (char *)&rsdp->checksum - rsdp_table->data); | |
72c194f7 MT |
2581 | |
2582 | return rsdp_table; | |
2583 | } | |
2584 | ||
72c194f7 MT |
2585 | typedef |
2586 | struct AcpiBuildState { | |
2587 | /* Copy of table in RAM (for patching). */ | |
339240b5 | 2588 | MemoryRegion *table_mr; |
72c194f7 MT |
2589 | /* Is table patched? */ |
2590 | uint8_t patched; | |
d70414a5 | 2591 | void *rsdp; |
339240b5 PB |
2592 | MemoryRegion *rsdp_mr; |
2593 | MemoryRegion *linker_mr; | |
72c194f7 MT |
2594 | } AcpiBuildState; |
2595 | ||
2596 | static bool acpi_get_mcfg(AcpiMcfgInfo *mcfg) | |
2597 | { | |
2598 | Object *pci_host; | |
2599 | QObject *o; | |
72c194f7 | 2600 | |
ca6c1855 | 2601 | pci_host = acpi_get_i386_pci_host(); |
72c194f7 MT |
2602 | g_assert(pci_host); |
2603 | ||
2604 | o = object_property_get_qobject(pci_host, PCIE_HOST_MCFG_BASE, NULL); | |
2605 | if (!o) { | |
2606 | return false; | |
2607 | } | |
5923f85f | 2608 | mcfg->mcfg_base = qnum_get_uint(qobject_to_qnum(o)); |
097a97a6 | 2609 | qobject_decref(o); |
72c194f7 MT |
2610 | |
2611 | o = object_property_get_qobject(pci_host, PCIE_HOST_MCFG_SIZE, NULL); | |
2612 | assert(o); | |
446de8b6 | 2613 | mcfg->mcfg_size = qnum_get_uint(qobject_to_qnum(o)); |
097a97a6 | 2614 | qobject_decref(o); |
72c194f7 MT |
2615 | return true; |
2616 | } | |
2617 | ||
2618 | static | |
3d3ebcad | 2619 | void acpi_build(AcpiBuildTables *tables, MachineState *machine) |
72c194f7 | 2620 | { |
3d3ebcad | 2621 | PCMachineState *pcms = PC_MACHINE(machine); |
bb292f5a | 2622 | PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); |
72c194f7 | 2623 | GArray *table_offsets; |
41fa5c04 | 2624 | unsigned facs, dsdt, rsdt, fadt; |
72c194f7 MT |
2625 | AcpiPmInfo pm; |
2626 | AcpiMiscInfo misc; | |
2627 | AcpiMcfgInfo mcfg; | |
01c9742d | 2628 | Range pci_hole, pci_hole64; |
72c194f7 | 2629 | uint8_t *u; |
07fb6176 | 2630 | size_t aml_len = 0; |
7c2c1fa5 | 2631 | GArray *tables_blob = tables->table_data; |
ae123749 | 2632 | AcpiSlicOem slic_oem = { .id = NULL, .table_id = NULL }; |
d03637bc | 2633 | Object *vmgenid_dev; |
72c194f7 | 2634 | |
72c194f7 | 2635 | acpi_get_pm_info(&pm); |
72c194f7 | 2636 | acpi_get_misc_info(&misc); |
01c9742d | 2637 | acpi_get_pci_holes(&pci_hole, &pci_hole64); |
ae123749 | 2638 | acpi_get_slic_oem(&slic_oem); |
72c194f7 MT |
2639 | |
2640 | table_offsets = g_array_new(false, true /* clear */, | |
2641 | sizeof(uint32_t)); | |
8b310fc4 | 2642 | ACPI_BUILD_DPRINTF("init ACPI tables\n"); |
72c194f7 | 2643 | |
ad9671b8 IM |
2644 | bios_linker_loader_alloc(tables->linker, |
2645 | ACPI_BUILD_TABLE_FILE, tables_blob, | |
72c194f7 MT |
2646 | 64 /* Ensure FACS is aligned */, |
2647 | false /* high memory */); | |
2648 | ||
2649 | /* | |
2650 | * FACS is pointed to by FADT. | |
2651 | * We place it first since it's the only table that has alignment | |
2652 | * requirements. | |
2653 | */ | |
7c2c1fa5 | 2654 | facs = tables_blob->len; |
fb306ffe | 2655 | build_facs(tables_blob, tables->linker); |
72c194f7 MT |
2656 | |
2657 | /* DSDT is pointed to by FADT */ | |
7c2c1fa5 | 2658 | dsdt = tables_blob->len; |
01c9742d MA |
2659 | build_dsdt(tables_blob, tables->linker, &pm, &misc, |
2660 | &pci_hole, &pci_hole64, machine); | |
72c194f7 | 2661 | |
07fb6176 PB |
2662 | /* Count the size of the DSDT and SSDT, we will need it for legacy |
2663 | * sizing of ACPI tables. | |
2664 | */ | |
7c2c1fa5 | 2665 | aml_len += tables_blob->len - dsdt; |
07fb6176 | 2666 | |
72c194f7 | 2667 | /* ACPI tables pointed to by RSDT */ |
41fa5c04 | 2668 | fadt = tables_blob->len; |
7c2c1fa5 | 2669 | acpi_add_table(table_offsets, tables_blob); |
ae123749 LE |
2670 | build_fadt(tables_blob, tables->linker, &pm, facs, dsdt, |
2671 | slic_oem.id, slic_oem.table_id); | |
41fa5c04 | 2672 | aml_len += tables_blob->len - fadt; |
72c194f7 | 2673 | |
7c2c1fa5 | 2674 | acpi_add_table(table_offsets, tables_blob); |
907e7c94 | 2675 | build_madt(tables_blob, tables->linker, pcms); |
9ac1c4c0 | 2676 | |
d03637bc BW |
2677 | vmgenid_dev = find_vmgenid_dev(); |
2678 | if (vmgenid_dev) { | |
2679 | acpi_add_table(table_offsets, tables_blob); | |
2680 | vmgenid_build_acpi(VMGENID(vmgenid_dev), tables_blob, | |
2681 | tables->vmgenid, tables->linker); | |
2682 | } | |
2683 | ||
72c194f7 | 2684 | if (misc.has_hpet) { |
7c2c1fa5 IM |
2685 | acpi_add_table(table_offsets, tables_blob); |
2686 | build_hpet(tables_blob, tables->linker); | |
711b20b4 | 2687 | } |
5cb18b3d | 2688 | if (misc.tpm_version != TPM_VERSION_UNSPEC) { |
7c2c1fa5 IM |
2689 | acpi_add_table(table_offsets, tables_blob); |
2690 | build_tpm_tcpa(tables_blob, tables->linker, tables->tcpalog); | |
711b20b4 | 2691 | |
72d97b3a IM |
2692 | if (misc.tpm_version == TPM_VERSION_2_0) { |
2693 | acpi_add_table(table_offsets, tables_blob); | |
5cb18b3d | 2694 | build_tpm2(tables_blob, tables->linker); |
5cb18b3d | 2695 | } |
72c194f7 | 2696 | } |
dd4c2f01 | 2697 | if (pcms->numa_nodes) { |
7c2c1fa5 | 2698 | acpi_add_table(table_offsets, tables_blob); |
3d3ebcad | 2699 | build_srat(tables_blob, tables->linker, machine); |
0f203430 HC |
2700 | if (have_numa_distance) { |
2701 | acpi_add_table(table_offsets, tables_blob); | |
2702 | build_slit(tables_blob, tables->linker); | |
2703 | } | |
72c194f7 MT |
2704 | } |
2705 | if (acpi_get_mcfg(&mcfg)) { | |
7c2c1fa5 IM |
2706 | acpi_add_table(table_offsets, tables_blob); |
2707 | build_mcfg_q35(tables_blob, tables->linker, &mcfg); | |
72c194f7 | 2708 | } |
fb9f5926 DK |
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); | |
2717 | } | |
d4eb9119 | 2718 | } |
5fe79386 | 2719 | if (pcms->acpi_nvdimm_state.is_enabled) { |
ad9671b8 | 2720 | nvdimm_build_acpi(table_offsets, tables_blob, tables->linker, |
75b0713e | 2721 | &pcms->acpi_nvdimm_state, machine->ram_slots); |
87252e1b XG |
2722 | } |
2723 | ||
72c194f7 MT |
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); | |
2727 | ||
7c2c1fa5 IM |
2728 | acpi_add_table(table_offsets, tables_blob); |
2729 | g_array_append_vals(tables_blob, u, len); | |
72c194f7 MT |
2730 | } |
2731 | ||
2732 | /* RSDT is pointed to by RSDP */ | |
7c2c1fa5 | 2733 | rsdt = tables_blob->len; |
ae123749 LE |
2734 | build_rsdt(tables_blob, tables->linker, table_offsets, |
2735 | slic_oem.id, slic_oem.table_id); | |
72c194f7 MT |
2736 | |
2737 | /* RSDP is in FSEG memory, so allocate it separately */ | |
2738 | build_rsdp(tables->rsdp, tables->linker, rsdt); | |
2739 | ||
07fb6176 | 2740 | /* We'll expose it all to Guest so we want to reduce |
72c194f7 | 2741 | * chance of size changes. |
07fb6176 PB |
2742 | * |
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. | |
2749 | * | |
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. | |
2754 | * | |
2755 | * All this is for PIIX4, since QEMU 2.0 didn't support Q35 migration. | |
72c194f7 | 2756 | */ |
bb292f5a | 2757 | if (pcmc->legacy_acpi_table_size) { |
07fb6176 PB |
2758 | /* Subtracting aml_len gives the size of fixed tables. Then add the |
2759 | * size of the PIIX4 DSDT/SSDT in QEMU 2.0. | |
2760 | */ | |
2761 | int legacy_aml_len = | |
bb292f5a | 2762 | pcmc->legacy_acpi_table_size + |
4b5b47ab | 2763 | ACPI_BUILD_LEGACY_CPU_AML_SIZE * pcms->apic_id_limit; |
07fb6176 | 2764 | int legacy_table_size = |
7c2c1fa5 | 2765 | ROUND_UP(tables_blob->len - aml_len + legacy_aml_len, |
07fb6176 | 2766 | ACPI_BUILD_ALIGN_SIZE); |
7c2c1fa5 | 2767 | if (tables_blob->len > legacy_table_size) { |
07fb6176 | 2768 | /* Should happen only with PCI bridges and -M pc-i440fx-2.0. */ |
9e5d2c52 AF |
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."); | |
07fb6176 | 2774 | } |
7c2c1fa5 | 2775 | g_array_set_size(tables_blob, legacy_table_size); |
07fb6176 | 2776 | } else { |
868270f2 | 2777 | /* Make sure we have a buffer in case we need to resize the tables. */ |
7c2c1fa5 | 2778 | if (tables_blob->len > ACPI_BUILD_TABLE_SIZE / 2) { |
18045fb9 | 2779 | /* As of QEMU 2.1, this fires with 160 VCPUs and 255 memory slots. */ |
9e5d2c52 AF |
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."); | |
18045fb9 | 2785 | } |
7c2c1fa5 | 2786 | acpi_align_size(tables_blob, ACPI_BUILD_TABLE_SIZE); |
07fb6176 | 2787 | } |
72c194f7 | 2788 | |
0e9b9eda | 2789 | acpi_align_size(tables->linker->cmd_blob, ACPI_BUILD_ALIGN_SIZE); |
72c194f7 MT |
2790 | |
2791 | /* Cleanup memory that's no longer used. */ | |
2792 | g_array_free(table_offsets, true); | |
2793 | } | |
2794 | ||
339240b5 | 2795 | static void acpi_ram_update(MemoryRegion *mr, GArray *data) |
42d85900 MT |
2796 | { |
2797 | uint32_t size = acpi_data_len(data); | |
2798 | ||
2799 | /* Make sure RAM size is correct - in case it got changed e.g. by migration */ | |
339240b5 | 2800 | memory_region_ram_resize(mr, size, &error_abort); |
42d85900 | 2801 | |
339240b5 PB |
2802 | memcpy(memory_region_get_ram_ptr(mr), data->data, size); |
2803 | memory_region_set_dirty(mr, 0, size); | |
42d85900 MT |
2804 | } |
2805 | ||
3f8752b4 | 2806 | static void acpi_build_update(void *build_opaque) |
72c194f7 MT |
2807 | { |
2808 | AcpiBuildState *build_state = build_opaque; | |
2809 | AcpiBuildTables tables; | |
2810 | ||
2811 | /* No state to update or already patched? Nothing to do. */ | |
2812 | if (!build_state || build_state->patched) { | |
2813 | return; | |
2814 | } | |
2815 | build_state->patched = 1; | |
2816 | ||
2817 | acpi_build_tables_init(&tables); | |
2818 | ||
3d3ebcad | 2819 | acpi_build(&tables, MACHINE(qdev_get_machine())); |
72c194f7 | 2820 | |
339240b5 | 2821 | acpi_ram_update(build_state->table_mr, tables.table_data); |
a1666142 | 2822 | |
42d85900 MT |
2823 | if (build_state->rsdp) { |
2824 | memcpy(build_state->rsdp, tables.rsdp->data, acpi_data_len(tables.rsdp)); | |
2825 | } else { | |
339240b5 | 2826 | acpi_ram_update(build_state->rsdp_mr, tables.rsdp); |
42d85900 | 2827 | } |
ad5b88b1 | 2828 | |
0e9b9eda | 2829 | acpi_ram_update(build_state->linker_mr, tables.linker->cmd_blob); |
72c194f7 MT |
2830 | acpi_build_tables_cleanup(&tables, true); |
2831 | } | |
2832 | ||
2833 | static void acpi_build_reset(void *build_opaque) | |
2834 | { | |
2835 | AcpiBuildState *build_state = build_opaque; | |
2836 | build_state->patched = 0; | |
2837 | } | |
2838 | ||
339240b5 PB |
2839 | static MemoryRegion *acpi_add_rom_blob(AcpiBuildState *build_state, |
2840 | GArray *blob, const char *name, | |
2841 | uint64_t max_size) | |
72c194f7 | 2842 | { |
a1666142 | 2843 | return rom_add_blob(name, blob->data, acpi_data_len(blob), max_size, -1, |
baf2d5bf | 2844 | name, acpi_build_update, build_state, NULL, true); |
72c194f7 MT |
2845 | } |
2846 | ||
2847 | static const VMStateDescription vmstate_acpi_build = { | |
2848 | .name = "acpi_build", | |
2849 | .version_id = 1, | |
2850 | .minimum_version_id = 1, | |
d49805ae | 2851 | .fields = (VMStateField[]) { |
72c194f7 MT |
2852 | VMSTATE_UINT8(patched, AcpiBuildState), |
2853 | VMSTATE_END_OF_LIST() | |
2854 | }, | |
2855 | }; | |
2856 | ||
fb306ffe | 2857 | void acpi_setup(void) |
72c194f7 | 2858 | { |
fb306ffe | 2859 | PCMachineState *pcms = PC_MACHINE(qdev_get_machine()); |
bb292f5a | 2860 | PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms); |
72c194f7 MT |
2861 | AcpiBuildTables tables; |
2862 | AcpiBuildState *build_state; | |
d03637bc | 2863 | Object *vmgenid_dev; |
72c194f7 | 2864 | |
f264d360 | 2865 | if (!pcms->fw_cfg) { |
8b310fc4 | 2866 | ACPI_BUILD_DPRINTF("No fw cfg. Bailing out.\n"); |
72c194f7 MT |
2867 | return; |
2868 | } | |
2869 | ||
021746c1 | 2870 | if (!pcms->acpi_build_enabled) { |
8b310fc4 | 2871 | ACPI_BUILD_DPRINTF("ACPI build disabled. Bailing out.\n"); |
72c194f7 MT |
2872 | return; |
2873 | } | |
2874 | ||
81adc513 | 2875 | if (!acpi_enabled) { |
8b310fc4 | 2876 | ACPI_BUILD_DPRINTF("ACPI disabled. Bailing out.\n"); |
81adc513 MT |
2877 | return; |
2878 | } | |
2879 | ||
72c194f7 MT |
2880 | build_state = g_malloc0(sizeof *build_state); |
2881 | ||
72c194f7 | 2882 | acpi_build_tables_init(&tables); |
3d3ebcad | 2883 | acpi_build(&tables, MACHINE(pcms)); |
72c194f7 MT |
2884 | |
2885 | /* Now expose it all to Guest */ | |
339240b5 | 2886 | build_state->table_mr = acpi_add_rom_blob(build_state, tables.table_data, |
a1666142 MT |
2887 | ACPI_BUILD_TABLE_FILE, |
2888 | ACPI_BUILD_TABLE_MAX_SIZE); | |
339240b5 | 2889 | assert(build_state->table_mr != NULL); |
72c194f7 | 2890 | |
339240b5 | 2891 | build_state->linker_mr = |
0e9b9eda IM |
2892 | acpi_add_rom_blob(build_state, tables.linker->cmd_blob, |
2893 | "etc/table-loader", 0); | |
72c194f7 | 2894 | |
f264d360 | 2895 | fw_cfg_add_file(pcms->fw_cfg, ACPI_BUILD_TPMLOG_FILE, |
42a5b308 SB |
2896 | tables.tcpalog->data, acpi_data_len(tables.tcpalog)); |
2897 | ||
d03637bc BW |
2898 | vmgenid_dev = find_vmgenid_dev(); |
2899 | if (vmgenid_dev) { | |
2900 | vmgenid_add_fw_cfg(VMGENID(vmgenid_dev), pcms->fw_cfg, | |
2901 | tables.vmgenid); | |
2902 | } | |
2903 | ||
bb292f5a | 2904 | if (!pcmc->rsdp_in_ram) { |
358774d7 IM |
2905 | /* |
2906 | * Keep for compatibility with old machine types. | |
2907 | * Though RSDP is small, its contents isn't immutable, so | |
afaa2e4b | 2908 | * we'll update it along with the rest of tables on guest access. |
358774d7 | 2909 | */ |
afaa2e4b MT |
2910 | uint32_t rsdp_size = acpi_data_len(tables.rsdp); |
2911 | ||
2912 | build_state->rsdp = g_memdup(tables.rsdp->data, rsdp_size); | |
f264d360 | 2913 | fw_cfg_add_file_callback(pcms->fw_cfg, ACPI_BUILD_RSDP_FILE, |
358774d7 | 2914 | acpi_build_update, build_state, |
baf2d5bf | 2915 | build_state->rsdp, rsdp_size, true); |
339240b5 | 2916 | build_state->rsdp_mr = NULL; |
358774d7 | 2917 | } else { |
42d85900 | 2918 | build_state->rsdp = NULL; |
339240b5 | 2919 | build_state->rsdp_mr = acpi_add_rom_blob(build_state, tables.rsdp, |
42d85900 | 2920 | ACPI_BUILD_RSDP_FILE, 0); |
358774d7 | 2921 | } |
72c194f7 MT |
2922 | |
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); | |
2926 | ||
2927 | /* Cleanup tables but don't free the memory: we track it | |
2928 | * in build_state. | |
2929 | */ | |
2930 | acpi_build_tables_cleanup(&tables, false); | |
2931 | } |