blob: f9b504988f2e50e586f013f18f95b33a9edaabb9 [file] [log] [blame]
Simon Glass91fe8b72020-04-08 16:57:38 -06001# SPDX-License-Identifier: GPL-2.0+
2#
3
Simon Glass437992d2021-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 Glasscc1f8c32021-12-01 09:02:48 -07008obj-y += acpi_writer.o
Simon Glass94ba15a2021-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 Glass85b81612021-12-01 09:03:00 -070013obj-y += csrt.o
Simon Glasseacb6d02021-12-01 09:02:52 -070014
15# Sandbox does not build a .asl file
16ifndef CONFIG_SANDBOX
17obj-y += dsdt.o
18endif
19
Simon Glassa53d38f2021-12-01 09:02:51 -070020obj-y += facs.o
Simon Glassd9531372021-12-01 09:02:56 -070021obj-y += ssdt.o
Simon Glass94ba15a2021-12-01 09:02:50 -070022endif