blob: 552d499fde42367325e0e5182975aad6bed96d04 [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 Glasseacb6d02021-12-01 09:02:52 -070013
14# Sandbox does not build a .asl file
15ifndef CONFIG_SANDBOX
16obj-y += dsdt.o
17endif
18
Simon Glassa53d38f2021-12-01 09:02:51 -070019obj-y += facs.o
Simon Glassd9531372021-12-01 09:02:56 -070020obj-y += ssdt.o
Simon Glass94ba15a2021-12-01 09:02:50 -070021endif