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