blob: f9b504988f2e50e586f013f18f95b33a9edaabb9 [file] [log] [blame]
Simon Glassb2672ea2020-04-08 16:57:38 -06001# SPDX-License-Identifier: GPL-2.0+
2#
3
Simon Glass29e64b52021-12-01 09:02:43 -07004obj-$(CONFIG_$(SPL_)ACPIGEN) += acpigen.o
5obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_device.o
6obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_dp.o
7obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_table.o
Simon Glass37acc662021-12-01 09:02:48 -07008obj-y += acpi_writer.o
Simon Glasse9f6e6a2021-12-01 09:02:50 -07009
10# With QEMU the ACPI tables come from there, not from U-Boot
11ifndef CONFIG_QEMU
12obj-y += base.o
Simon Glass6e6bc9b2021-12-01 09:03:00 -070013obj-y += csrt.o
Simon Glass83c3cb52021-12-01 09:02:52 -070014
15# Sandbox does not build a .asl file
16ifndef CONFIG_SANDBOX
17obj-y += dsdt.o
18endif
19
Simon Glassf53f57d2021-12-01 09:02:51 -070020obj-y += facs.o
Simon Glass68000952021-12-01 09:02:56 -070021obj-y += ssdt.o
Simon Glasse9f6e6a2021-12-01 09:02:50 -070022endif