Re: [PATCH v2 2/2] of/fdt: Restore possibility to use both ACPI and FDT from bootloader

From: Rob Herring (Arm)
Date: Fri Jan 24 2025 - 16:57:30 EST



On Sun, 05 Jan 2025 17:27:41 +0000, Dmytro Maluka wrote:
> There are cases when the bootloader provides information to the kernel
> in both ACPI and DTB, not interchangeably. One such use case is virtual
> machines in Android. When running on x86, the Android Virtualization
> Framework (AVF) boots VMs with ACPI like it is usually done on x86 (i.e.
> the virtual LAPIC, IOAPIC, HPET, PCI MMCONFIG etc are described in ACPI)
> but also passes various AVF-specific boot parameters in DTB. This allows
> reusing the same implementations of various AVF components on both
> arm64 and x86.
>
> Commit 7b937cc243e5 ("of: Create of_root if no dtb provided by firmware")
> removed the possibility to do that, since among other things
> it introduced forcing emptying the bootloader-provided DTB if ACPI is
> enabled (probably assuming that if ACPI is available, a DTB can only be
> useful for applying overlays to it afterwards, for testing purposes).
>
> So restore this possibility. Instead of completely preventing using ACPI
> and DT together, rely on arch-specific setup code to prevent using both
> to set up the same things (see various acpi_disabled checks under arch/).
>
> Fixes: 7b937cc243e5 ("of: Create of_root if no dtb provided by firmware")
> Signed-off-by: Dmytro Maluka <dmaluka@xxxxxxxxxxxx>
> ---
> drivers/of/fdt.c | 10 +---------
> 1 file changed, 1 insertion(+), 9 deletions(-)
>

Applied, thanks!