
Generate SoC specific ACPI tables for BCM2711: - FADT - PPTT - GTDT Board specific tables like DSDT and SSDT are added in a separate patch. MADT is already properly generated from the FDT. When ACPI is enabled for a different SoC compliation will fail by design, indicating the required functions that needs to be implemented. When ACPI is not enabled the added code does nothing, keeping existing behaviour. TEST: Booted on RPi4 with only ACPI enabled, providing no FDT to the OS. Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-by: Simon Glass <sjg@chromium.org> Cc: Simon Glass <sjg@chromium.org> Cc: Matthias Brugger <mbrugger@suse.com> Cc: Peter Robinson <pbrobinson@gmail.com> Cc: Tom Rini <trini@konsulko.com>
10 lines
248 B
Makefile
10 lines
248 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# (C) Copyright 2012 Stephen Warren
|
|
|
|
obj-$(CONFIG_BCM2835) += lowlevel_init.o
|
|
obj-y += init.o reset.o mbox.o msg.o phys2bus.o
|
|
|
|
ifeq ($(CONFIG_GENERATE_ACPI_TABLE),y)
|
|
obj-$(CONFIG_BCM2711) += bcm2711_acpi.o
|
|
endif |