From: Petr Mladek <pmladek@suse.com>
To: Jon Hunter <jonathanh@nvidia.com>
Cc: "John Ogness" <john.ogness@linutronix.de>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Jiri Slaby" <jirislaby@kernel.org>,
"Andy Shevchenko" <andy.shevchenko@gmail.com>,
"Sebastian Andrzej Siewior" <bigeasy@linutronix.de>,
linux-kernel@vger.kernel.org,
"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
"Hugo Villeneuve" <hvilleneuve@dimonoff.com>,
"Kees Cook" <kees@kernel.org>,
"Stepan Ionichev" <sozdayvek@gmail.com>,
"Xin Zhao" <jackzxcui1989@163.com>,
"Osama Abdelkader" <osama.abdelkader@gmail.com>,
"Fushuai Wang" <wangfushuai@baidu.com>,
"Marco Felsch" <m.felsch@pengutronix.de>,
linux-serial@vger.kernel.org,
"linux-tegra@vger.kernel.org" <linux-tegra@vger.kernel.org>
Subject: Re: [PATCH tty v11 1/2] serial: 8250: Switch to nbcon console, take 2
Date: Tue, 18 Aug 2026 17:53:26 +0200 [thread overview]
Message-ID: <aoR_9g7W0qyqWbOj@pathway.suse.cz> (raw)
In-Reply-To: <861247ca-dfd4-40c6-a094-0fbe389f3b67@nvidia.com>
On Tue 2026-08-18 13:19:12, Jon Hunter wrote:
> Hi Petr,
>
> On 18/08/2026 08:51, Petr Mladek wrote:
>
> ...
>
> > > This change is causing a boot regression for our Tegra20 and Tegra30
> > > platforms. Reverting this on top of -next fixes the issue. Previously with
> > > V5 I did not see a boot issue only an issue in suspend. So far I have not
> > > had chance to dig any further.
> >
> > Interesting.
> >
> > Another clue, mentioned in the v9 thread [1], is that the boot
> > regression does not happen with v11 when "keep_bootcon" option
> > is used.
> >
> > The "keep_bootcon" option causes that the boot console driver stays
> > registered even when the full featured driver gets registered
> > later.
> >
> > The most important effect is that the printk kthreads can't
> > be used as long as any boot console driver is registered.
> > All drivers need to be called in the legacy loop in this case.
> > There are two reasons for this:
> >
> > 1. Boot console drivers are synchronized only by
> > the legacy console_lock (console_sem). port->lock
> > is available only for the full featured driver.
> >
> > 2. There is no easy way to match boot console and
> > full featured console drivers working on the same
> > HW.
> >
> > So, the regression seems to happen when the printk kthreads
> > start being used.
> >
> > Jon, could you please share the full log when "keep_bootcon"
> > is used?
>
>
> Yes absolutely. You can find the boot log here [0]. So far nothing really
> stands out to me but let me know if you see anything.
>
> [0] https://pastebin.com/FhQVSqfy
Thanks for the log.
One or two things look strange/important to me.
But let me show all important parts:
[ 0.000000] Kernel command line: console=ttyS0,115200n8 console=tty1 earlycon ignore_loglevel root=/dev/nfs rw ip=192.168.99.2:192.168.99.1:192.168.99.1:255.255.255.0::eth0:off nfsroot=192.168.99.1:/home/ausvrl81292/nfsroot,tcp rootwait keep_bootcon
The last "console=" parameter is "console=tty1". It is a so called
preferred console. It has several effects:
+ it should get associated with /dev/console
+ it does not replay the log from the beginning when
registered. Only newer messages are shown.
+ Boot consoles should get unregistered when this console
gets registered (unless keep_bootcon is defined).
Note that "ttyS0" is _not_ the _preferred_console. As a result:
+ it will replay all messages when registered
+ boot console won't get unregistered when this one
is registered
Now, the ordering is:
[ 0.000000] earlycon: uart0 MMIO:0x70006300 (options '115200n8')
[ 0.000000] printk: legacy bootconsole [uart0] enabled
First, earlycon is registered thanks because of the "earlycon"
parameter.
[ 0.036461] Console: colour dummy device 80x30
[ 0.041020] printk: legacy console [tty1] enabled
Second, the graphical "tty1" gets registered because
of the "console=tty1" parameter.
Normally, the boot console should get unregistered at
this point. But it stays because of the "keep_bootcon"
parameter.
[ 0.645646] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 0.655230] printk: console [ttyS0] disabled
IMPORTANT: This is the weird thing! I do not understand why "ttySO"
gets disabled when it has not been registered yet.
[ 0.659964] 70006300.serial: ttyS0 MMIO32:0x70006300 (irq = 51, base_baud = 13500000) is a Tegra
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.669026] printk: console [ttyS0] enabled
The real "ttyS0" driver has been registered (added to
console_list) and the legacy loop started flushing
the messages in console_unlock().
The real "ttyS0" console driver started emitting messages
from the beginning.
The boot console driver emits only the newly added messages
"printk: console [ttyS0] enabled".
[ 0.000000] Linux version 7.2.0-next-20260817 (jonathanh@build-jonathanh-noble-20260527) (arm-buildroot-linux-gnueabihf-gcc.br_real (Buildroot 2021.11-11272-ge2962af) 13.2.0, GNU ld (GNU Binutils) 2.42) #15 SMP PREEMPT Tue Aug 18 04:56:56 UTC 2026
[ 0.000000] CPU: ARMv7 Processor [411fc090] revision 0 (ARMv7), cr=10c5387d
The real "ttyS0" console driver replays the entire log.
[ 0.659964] 70006300.serial: ttyS0 MMIO32:0x70006300 (irq = 51, base_baud = 13500000) is a Tegra
[ 0.669026] printk: console [ttyS0] enabled
And then all messages are emitted twice (by the boot console
driver and by the real console driver:
[ 1.574761] loop: module loaded
[ 1.574761] loop: module loaded
[ 1.584820] CAN device driver interface
[ 1.584820] CAN device driver interface
The real console driver would normally emit these messages
from the printk kthread. But it does it in the legacy loop
because the boot console driver is still registered.
[ 2.904178] ------------[ cut here ]------------
[ 2.904178] ------------[ cut here ]------------
[ 2.913507] WARNING: drivers/soc/tegra/pmc.c:4999 at tegra_pmc_enter_suspend_mode+0x168/0x178, CPU#0: swapper/0/0
[ 2.913507] WARNING: drivers/soc/tegra/pmc.c:4999 at tegra_pmc_enter_suspend_mode+0x168/0x178, CPU#0: swapper/0/0
IMPORTANT: This is a warning. It is printed with
NBCON_PRIO_EMERGENCY. These messages would normally
get flushed by nbcon_atomic_flush_pending() directly
from printk() using con->write_atomic(). It would
take over the console ownership from the kthread
when needed.
In this particular log, it is emitted from the legacy
loop in console_unlock() because the boot console
is still registered.
Summary:
Almost everything works as expected except for:
1. I am not sure why "printk: console [ttyS0] disabled" is printed.
It does not make any sense to me.
2. The WARNING would be handled with NBCON_PRIO_EMERGENCY.
I wonder if this warning happened also with "v5" of this
patchset.
Why is the WARNING important?
If the WARNING happened also with v5 of this patchset
then it tested emergency mode as well. But the system
booted with v5. So that a difference between v5 and v11
patchset might be important.
If The WARNING did _not_ happen with v5 then we probably did
not test the emergency mode in this version. So that
the problem might be in the emergency mode handling.
Ideas for testing:
1. I wonder if adding a WARN() with v5 of this patchset
would make v5 fail as well.
2. If wonder if boot_delay=10 makes any difference. It might
prevent some races.
Best Regards,
Petr
next prev parent reply other threads:[~2026-08-18 15:53 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-29 12:04 [PATCH tty v11 0/2] Convert 8250 to NBCON, take 2 John Ogness
2026-07-29 12:04 ` [PATCH tty v11 1/2] serial: 8250: Switch to nbcon console, " John Ogness
2026-07-29 12:44 ` John Ogness
2026-07-30 14:24 ` Petr Mladek
2026-07-31 7:48 ` John Ogness
2026-07-31 14:04 ` Petr Mladek
2026-08-18 6:25 ` Jon Hunter
2026-08-18 7:01 ` Sebastian Andrzej Siewior
2026-08-18 7:51 ` Petr Mladek
2026-08-18 12:19 ` Jon Hunter
2026-08-18 15:53 ` Petr Mladek [this message]
2026-07-29 12:04 ` [PATCH tty v11 2/2] Revert "serial: 8250: drop lockdep annotation from serial8250_clear_IER()" John Ogness
2026-07-30 14:48 ` [PATCH tty v11 0/2] Convert 8250 to NBCON, take 2 Greg Kroah-Hartman
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=aoR_9g7W0qyqWbOj@pathway.suse.cz \
--to=pmladek@suse.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=andy.shevchenko@gmail.com \
--cc=bigeasy@linutronix.de \
--cc=gregkh@linuxfoundation.org \
--cc=hvilleneuve@dimonoff.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jackzxcui1989@163.com \
--cc=jirislaby@kernel.org \
--cc=john.ogness@linutronix.de \
--cc=jonathanh@nvidia.com \
--cc=kees@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=m.felsch@pengutronix.de \
--cc=osama.abdelkader@gmail.com \
--cc=sozdayvek@gmail.com \
--cc=wangfushuai@baidu.com \
/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