Simon Glass | b2672ea | 2020-04-08 16:57:38 -0600 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | # |
| 3 | |
Simon Glass | 29e64b5 | 2021-12-01 09:02:43 -0700 | [diff] [blame] | 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 |
Simon Glass | 37acc66 | 2021-12-01 09:02:48 -0700 | [diff] [blame] | 8 | obj-y += acpi_writer.o |
Simon Glass | e9f6e6a | 2021-12-01 09:02:50 -0700 | [diff] [blame] | 9 | |
| 10 | # With QEMU the ACPI tables come from there, not from U-Boot |
| 11 | ifndef CONFIG_QEMU |
| 12 | obj-y += base.o |
Simon Glass | 6e6bc9b | 2021-12-01 09:03:00 -0700 | [diff] [blame] | 13 | obj-y += csrt.o |
Moritz Fischer | c656172 | 2022-02-05 12:17:45 -0800 | [diff] [blame] | 14 | obj-y += mcfg.o |
Simon Glass | 83c3cb5 | 2021-12-01 09:02:52 -0700 | [diff] [blame] | 15 | |
| 16 | # Sandbox does not build a .asl file |
| 17 | ifndef CONFIG_SANDBOX |
| 18 | obj-y += dsdt.o |
| 19 | endif |
| 20 | |
Simon Glass | f53f57d | 2021-12-01 09:02:51 -0700 | [diff] [blame] | 21 | obj-y += facs.o |
Simon Glass | 6800095 | 2021-12-01 09:02:56 -0700 | [diff] [blame] | 22 | obj-y += ssdt.o |
Simon Glass | e9f6e6a | 2021-12-01 09:02:50 -0700 | [diff] [blame] | 23 | endif |