x86: Move CSRT table to a writer function
[platform/kernel/u-boot.git] / lib / acpi / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3
4 obj-$(CONFIG_$(SPL_)ACPIGEN) += acpigen.o
5 obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_device.o
6 obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_dp.o
7 obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_table.o
8 obj-y += acpi_writer.o
9
10 # With QEMU the ACPI tables come from there, not from U-Boot
11 ifndef CONFIG_QEMU
12 obj-y += base.o
13 obj-y += csrt.o
14
15 # Sandbox does not build a .asl file
16 ifndef CONFIG_SANDBOX
17 obj-y += dsdt.o
18 endif
19
20 obj-y += facs.o
21 obj-y += ssdt.o
22 endif