As noted by Ian, many DMI based quirks for x86 ACPI machines disable features that can also be disabled via the kernel command line. Similarly, a quirk is under discussion for a arm64 ACPI machine [0] that explodes when enabling support for hardware error reporting via the ACPI HEST table. When support for DMI tables was introduced to arm64 and ARM, the agreement was that they are informational only, i.e., provided to userland to describe the platform, not for keying off of to enable quirks in the kernel. There are a couple of reasons for this: - Unlike the x86 architecture, where virtually all platforms are PC variants, and the presence of ACPI and DMI tables may be assumed, the arm64 architecture is much more heterogeneous, and none of UEFI, ACPI or DMI or actually mandated or especially common across arm64 platforms; using DMI only makes sense for working around a limited subset of platform issues that have to do with firmware running on platforms that bother to implement it in the first place. - DMI is not initialized as early as it is on x86, and doing so is not trivial. This means that even on ACPI/DMI machines, some issues may require quirks that are enabled in a different way, or we need to refactor the DMI support so that we can enable it as early as x86 does. - Using DMI tables fundamentally means quirking *after* the fact, which makes it a moving target. Some quirks may require the DMI match table to be updated if someone happens to change a string in the DMI tables when shipping a mostly identical platform. So instead, let's provide these platforms with the facilities required to enable such quirks at the platform level. Especially for UEFI systems, if upgrading firmware is a reasonable prerequisite for being able to upgrade to the latest kernel, having to run a script that sets a UEFI variable (either via the Linux command line of from the UEFI shell) should not be an unreasonable requirement either, and so we can solve part of this issue by configuring extra command line arguments persistenly from the firmware environment. This solves all the above issues in an unintrusive manner, given that the kernel command line is already made available extremely early in the boot, and the fact that it already permits a wide range of configuration options and overrides to be set, including the 'hest_disable=1' option that works around the issue addressed by [0]. Note that this deviates from the current common practice on x86. I am aware that the distros want everything to be the same in this regard, but I don't think the x86 maintainers will refer to the DMI quirks infrastructure as a shining example of functionality that should be ported across architectures. ACPI on arm64 is intended to support a narrowly defined class of server systems, as opposed to the wide range of Windows-logo hardware that arch/x86 aims to support, and a lot of time and effort has been going into validation against Linux itself. This means the likelihood that we will need a quirks infrastructure as elaborate as the x86 one is low, and so it would be my preference to defer introducing it until the moment where we have exhausted all other options. [0] https://marc.info/?l=linux-acpi&m=153018042727125&w=2 Cc: Mark Salter <msalter@xxxxxxxxxx> Cc: Geoff Levand <geoff@xxxxxxxxxxxxx> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@xxxxxxx> Cc: Hanjun Guo <hanjun.guo@xxxxxxxxxx> Cc: Sudeep Holla <sudeep.holla@xxxxxxx> Cc: Riku Voipio <riku.voipio@xxxxxxxxxx> Cc: James Morse <james.morse@xxxxxxx> Cc: Ian Campbell <ijc@xxxxxxxxxx> Ard Biesheuvel (2): efi/libstub: refactor load option command line processing for reuse efi/libstub: taken contents of LinuxExtraArgs UEFI variable into account .../firmware/efi/libstub/efi-stub-helper.c | 94 +++++++++++++++---- include/linux/efi.h | 1 + 2 files changed, 77 insertions(+), 18 deletions(-) -- 2.17.1 -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html