2020-04-08 16:57:38 -06:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#
|
|
|
|
|
2023-05-04 16:54:58 -06:00
|
|
|
obj-y += acpi.o
|
|
|
|
|
2024-09-29 19:49:54 -06:00
|
|
|
ifdef CONFIG_$(PHASE_)GENERATE_ACPI_TABLE
|
2023-05-04 16:54:57 -06:00
|
|
|
|
2024-09-29 19:49:53 -06:00
|
|
|
obj-$(CONFIG_$(XPL_)ACPIGEN) += acpigen.o
|
|
|
|
obj-$(CONFIG_$(XPL_)ACPIGEN) += acpi_device.o
|
|
|
|
obj-$(CONFIG_$(XPL_)ACPIGEN) += acpi_dp.o
|
|
|
|
obj-$(CONFIG_$(XPL_)ACPIGEN) += acpi_table.o
|
2021-12-01 09:02:48 -07:00
|
|
|
obj-y += acpi_writer.o
|
2021-12-01 09:02:50 -07:00
|
|
|
|
|
|
|
# With QEMU the ACPI tables come from there, not from U-Boot
|
2023-12-19 16:04:00 +01:00
|
|
|
ifndef CONFIG_QFW_ACPI
|
2021-12-01 09:02:50 -07:00
|
|
|
obj-y += base.o
|
2021-12-01 09:03:00 -07:00
|
|
|
obj-y += csrt.o
|
2022-02-05 12:17:45 -08:00
|
|
|
obj-y += mcfg.o
|
2021-12-01 09:02:52 -07:00
|
|
|
|
|
|
|
# Sandbox does not build a .asl file
|
|
|
|
ifndef CONFIG_SANDBOX
|
|
|
|
obj-y += dsdt.o
|
|
|
|
endif
|
|
|
|
|
2021-12-01 09:02:51 -07:00
|
|
|
obj-y += facs.o
|
2021-12-01 09:02:56 -07:00
|
|
|
obj-y += ssdt.o
|
2021-12-01 09:02:50 -07:00
|
|
|
endif
|
2023-05-04 16:54:57 -06:00
|
|
|
|
|
|
|
endif # GENERATE_ACPI_TABLE
|