blob: 956b5a0d7265a2aa7e80655dec8017b0b746a5e5 [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
Moritz Fischer058fb9f2022-02-05 12:17:45 -080014obj-y += mcfg.o
Simon Glasseacb6d02021-12-01 09:02:52 -070015
16# Sandbox does not build a .asl file
17ifndef CONFIG_SANDBOX
18obj-y += dsdt.o
19endif
20
Simon Glassa53d38f2021-12-01 09:02:51 -070021obj-y += facs.o
Simon Glassd9531372021-12-01 09:02:56 -070022obj-y += ssdt.o
Simon Glass94ba15a2021-12-01 09:02:50 -070023endif