]>
Commit | Line | Data |
---|---|---|
91fe8b79 SG |
1 | # SPDX-License-Identifier: GPL-2.0+ |
2 | # | |
3 | ||
37bf4407 SG |
4 | obj-y += acpi.o |
5 | ||
0992a90d SG |
6 | ifdef CONFIG_$(SPL_TPL_)GENERATE_ACPI_TABLE |
7 | ||
437992d3 SG |
8 | obj-$(CONFIG_$(SPL_)ACPIGEN) += acpigen.o |
9 | obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_device.o | |
10 | obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_dp.o | |
11 | obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_table.o | |
cc1f8c39 | 12 | obj-y += acpi_writer.o |
94ba15a3 SG |
13 | |
14 | # With QEMU the ACPI tables come from there, not from U-Boot | |
b2f088c1 | 15 | ifndef CONFIG_QFW_ACPI |
94ba15a3 | 16 | obj-y += base.o |
85b8161b | 17 | obj-y += csrt.o |
058fb9f5 | 18 | obj-y += mcfg.o |
eacb6d0b SG |
19 | |
20 | # Sandbox does not build a .asl file | |
21 | ifndef CONFIG_SANDBOX | |
22 | obj-y += dsdt.o | |
23 | endif | |
24 | ||
a53d38f8 | 25 | obj-y += facs.o |
d9531375 | 26 | obj-y += ssdt.o |
94ba15a3 | 27 | endif |
0992a90d SG |
28 | |
29 | endif # GENERATE_ACPI_TABLE |