The SPCR (Serial Port Console Redirection) Table provides information about the configuration of serial port. This information can be used to configure the early console.
SPCR support was added for arm64 and is made available across all arches in this patchset. The first patch adds a weak per-arch configuration function and moves the SPCR code into ACPI. The second patch adds support to x86. The existing behaviour on arm64 is maintained. If the SPCR exists the earlycon and console are automatically configured. The existing default behaviour on x86 is also maintained. If no console or earlycon parameter is defined and the SPCR exists , the serial port is not configured. If the earlycon parameter is used both the early console and the console are configured using the data from the SPCR. Signed-off-by: Prarit Bhargava <pra...@redhat.com> Cc: linux-...@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: linux-arm-ker...@lists.infradead.org Cc: linux...@vger.kernel.org Cc: linux-a...@vger.kernel.org Cc: linux-ser...@vger.kernel.org Cc: Bhupesh Sharma <bhsha...@redhat.com> Cc: Lv Zheng <lv.zh...@intel.com> Cc: Thomas Gleixner <t...@linutronix.de> Cc: Ingo Molnar <mi...@redhat.com> Cc: "H. Peter Anvin" <h...@zytor.com> Cc: x...@kernel.org Cc: Jonathan Corbet <cor...@lwn.net> Cc: Catalin Marinas <catalin.mari...@arm.com> Cc: Will Deacon <will.dea...@arm.com> Cc: "Rafael J. Wysocki" <r...@rjwysocki.net> Prarit Bhargava (2): acpi, spcr: Make SPCR avialable to other architectures acpi, x86: Use SPCR table for earlycon on x86 Documentation/admin-guide/kernel-parameters.txt | 9 +- arch/arm64/Kconfig | 1 - arch/arm64/kernel/acpi.c | 128 +++++++++++++++++- arch/x86/kernel/acpi/boot.c | 3 + drivers/acpi/Kconfig | 11 +- drivers/acpi/spcr.c | 171 ++++++------------------ drivers/tty/serial/earlycon.c | 16 +-- include/linux/acpi.h | 14 +- include/linux/serial_core.h | 2 - 9 files changed, 195 insertions(+), 160 deletions(-) -- 1.8.3.1