From: Prarit Bhargava <prarit@redhat.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-kernel@vger.kernel.org, Mark Salter <msalter@redhat.com>,
Al Stone <ahs3@redhat.com>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Len Brown <len.brown@intel.com>, Pavel Machek <pavel@ucw.cz>,
x86@kernel.org, Petr Mladek <pmladek@suse.com>,
Sergey Senozhatsky <sergey.senozhatsky@gmail.com>,
Steven Rostedt <rostedt@goodmis.org>,
Kees Cook <keescook@chromium.org>,
linux-pm@vger.kernel.org
Subject: Re: [PATCH] console: Add console=auto option
Date: Thu, 16 Aug 2018 11:28:24 -0400 [thread overview]
Message-ID: <4335912e-dab7-c516-d71e-47ed479c638a@redhat.com> (raw)
In-Reply-To: <20180816150948.GA10648@kroah.com>
On 08/16/2018 11:09 AM, Greg Kroah-Hartman wrote:
> On Thu, Aug 16, 2018 at 10:10:55AM -0400, Prarit Bhargava wrote:
>> ACPI may contain an SPCR table that defines a default system console.
>> On ARM if the table is present then the SPCR console is enabled by default.
>> On x86 the SPCR console is used if 'earlycon' (no parameters) is
>> specified as a kernel parameter and is used only as the early console.
>> To use the SPCR data as a console a user must boot with 'earlycon',
>> grep logs & specify a console= kernel parameter, and then reboot again.
>>
>> Add 'console=auto' that enables a firmware or hardware console, and on
>> x86 enable the SPCR console if 'console=auto' is specified.
>>
>> Tested on systems with and without an ACPI SPCR. The following kernel
>> parameters were also tested:
>>
>> console=ttyS0,115200 works
>> earlycon works (early console only)
>> console=auto works (full console as expected)
>> no console or earlycon arguments works (no output as expected)
>>
>> Signed-off-by: Prarit Bhargava <prarit@redhat.com>
>> Cc: Mark Salter <msalter@redhat.com>
>> Cc: Al Stone <ahs3@redhat.com>
>> Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
>> Cc: Len Brown <len.brown@intel.com>
>> Cc: Pavel Machek <pavel@ucw.cz>
>> Cc: x86@kernel.org
>> Cc: Petr Mladek <pmladek@suse.com>
>> Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
>> Cc: Steven Rostedt <rostedt@goodmis.org>
>> Cc: Kees Cook <keescook@chromium.org>
>> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> Cc: linux-pm@vger.kernel.org
>> ---
>> Documentation/admin-guide/kernel-parameters.txt | 1 +
>> arch/x86/kernel/acpi/boot.c | 5 +++++
>> include/linux/console.h | 1 +
>> kernel/printk/printk.c | 10 ++++++++++
>> 4 files changed, 17 insertions(+)
>>
>> diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
>> index a32f2a126791..dd057224f33b 100644
>> --- a/Documentation/admin-guide/kernel-parameters.txt
>> +++ b/Documentation/admin-guide/kernel-parameters.txt
>> @@ -635,6 +635,7 @@
>>
>> hvc<n> Use the hypervisor console device <n>. This is for
>> both Xen and PowerPC hypervisors.
>> + auto [X86] Enable ACPI SPCR console
>>
>> If the device connected to the port is not a TTY but a braille
>> device, prepend "brl," before the device type, for instance
>> diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
>> index 3b20607d581b..fb2616ba3b21 100644
>> --- a/arch/x86/kernel/acpi/boot.c
>> +++ b/arch/x86/kernel/acpi/boot.c
>> @@ -1771,3 +1771,8 @@ void __init arch_reserve_mem_area(acpi_physical_address addr, size_t size)
>> e820__range_add(addr, size, E820_TYPE_ACPI);
>> e820__update_table_print();
>> }
>> +
>> +void __init arch_console_setup(void)
>> +{
>> + acpi_parse_spcr(false, true);
>> +}
>
> <snip>
>
>> +int arch_console_setup(void);
>
> Function does not match its prototype :(
>
> How did you build this successfully?
Weird, it compiles on my system?
I'll fix it though.
P.
>
next prev parent reply other threads:[~2018-08-16 15:28 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-16 14:10 Prarit Bhargava
2018-08-16 15:09 ` Greg Kroah-Hartman
2018-08-16 15:28 ` Prarit Bhargava [this message]
2018-08-16 15:33 ` Steven Rostedt
2018-08-16 17:23 ` Prarit Bhargava
2018-08-16 17:39 ` [PATCH v2] " Prarit Bhargava
2018-08-17 8:19 ` Petr Mladek
2018-08-17 10:26 ` Prarit Bhargava
2018-08-17 9:38 ` Sergey Senozhatsky
2018-08-17 10:36 ` Prarit Bhargava
2018-08-17 10:50 ` Sergey Senozhatsky
2018-08-17 11:06 ` Prarit Bhargava
2018-08-17 12:57 ` Petr Mladek
2018-08-29 12:54 ` Prarit Bhargava
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4335912e-dab7-c516-d71e-47ed479c638a@redhat.com \
--to=prarit@redhat.com \
--cc=ahs3@redhat.com \
--cc=gregkh@linuxfoundation.org \
--cc=keescook@chromium.org \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=msalter@redhat.com \
--cc=pavel@ucw.cz \
--cc=pmladek@suse.com \
--cc=rjw@rjwysocki.net \
--cc=rostedt@goodmis.org \
--cc=sergey.senozhatsky@gmail.com \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®