From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: John Ogness <john.ogness@linutronix.de>
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Jiri Slaby" <jirislaby@kernel.org>,
"Petr Mladek" <pmladek@suse.com>,
"Sergey Senozhatsky" <senozhatsky@chromium.org>,
"Steven Rostedt" <rostedt@goodmis.org>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Esben Haabendal" <esben@geanix.com>,
linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org,
"Rengarajan S" <rengarajan.s@microchip.com>,
"Jeff Johnson" <quic_jjohnson@quicinc.com>,
"Serge Semin" <fancer.lancer@gmail.com>,
"Lino Sanfilippo" <l.sanfilippo@kunbus.com>,
"Wander Lairson Costa" <wander@redhat.com>,
"Peter Collingbourne" <pcc@google.com>,
"Florian Fainelli" <florian.fainelli@broadcom.com>,
"Broadcom internal kernel review list"
<bcm-kernel-feedback-list@broadcom.com>,
"Ray Jui" <rjui@broadcom.com>,
"Scott Branden" <sbranden@broadcom.com>,
"Paul E. McKenney" <paulmck@kernel.org>,
"Arnd Bergmann" <arnd@arndb.de>,
"Stefan Wahren" <wahrenst@gmx.net>,
"Uwe Kleine-König" <u.kleine-koenig@baylibre.com>,
"Kevin Hilman" <khilman@baylibre.com>,
"Markus Schneider-Pargmann" <msp@baylibre.com>,
"Ronald Wahl" <ronald.wahl@raritan.com>,
"Udit Kumar" <u-kumar1@ti.com>,
"Griffin Kroah-Hartman" <griffin@kroah.com>,
linux-rpi-kernel@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
"Geert Uytterhoeven" <geert+renesas@glider.be>,
"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
"Tony Lindgren" <tony@atomide.com>
Subject: Re: [PATCH tty-next v3 0/6] convert 8250 to nbcon
Date: Fri, 25 Oct 2024 16:58:10 +0300 [thread overview]
Message-ID: <Zxuj8rFQikEjr2gR@smile.fi.intel.com> (raw)
In-Reply-To: <20241025105728.602310-1-john.ogness@linutronix.de>
On Fri, Oct 25, 2024 at 01:03:22PM +0206, John Ogness wrote:
> This is v3 of a series to convert the 8250 driver to an NBCON
> console, providing both threaded and atomic printing
> implementations. v2 of this series is here [0], which also
> contains additional background information about NBCON consoles
> in general in the cover letter.
>
> To test this version I acquired real hardware (TI AM3358
> BeagleBone Black) and tested the following modes:
>
> RS232
> - no flow control
> - software flow control
> (UPF_SOFT_FLOW, UPSTAT_AUTOXOFF)
> - hardware flow control
> (UPF_HARD_FLOW, UPSTAT_AUTOCTS, UPSTAT_AUTORTS)
> - software emulated hardware flow control
> (UPF_CONS_FLOW, UPSTAT_CTS_ENABLE)
>
> RS485
> - with SER_RS485_RX_DURING_TX
> - without SER_RS485_RX_DURING_TX
>
> The tests focussed on kernel logging in various combinations of
> normal, warning, and panic situations. Although not related to
> the console printing code changes, the tests also included
> using a getty/login session on the console.
>
> Note that this UART (TI16750) supports a 64-byte TX-FIFO, which
> is used in all console printing modes except for the software
> emulated hardware flow control.
Thank you for the update.
I am going to review some patches at some point, but what I want to say here
is that if you have a new functions to utilise something, please also check
if the rest of 8250*.c may have an advantage of. It would reduce churn in case
if your series already exports APIs or provides inliners for such cases.
--
With Best Regards,
Andy Shevchenko
prev parent reply other threads:[~2024-10-25 13:58 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-25 10:57 John Ogness
2024-10-25 10:57 ` [PATCH tty-next v3 1/6] serial: 8250: Adjust the timeout for FIFO mode John Ogness
2024-10-25 13:45 ` Andy Shevchenko
2024-10-25 13:51 ` Andy Shevchenko
2024-10-29 16:24 ` Wander Lairson Costa
2024-10-30 6:05 ` Jiri Slaby
2024-10-31 4:44 ` Maciej W. Rozycki
2024-10-31 8:49 ` John Ogness
2024-11-01 1:24 ` Maciej W. Rozycki
2024-11-01 8:21 ` Andy Shevchenko
2024-11-04 6:44 ` Jiri Slaby
2024-11-04 6:34 ` Jiri Slaby
2024-11-04 14:13 ` John Ogness
2024-12-02 6:12 ` Jiri Slaby
2024-12-02 16:41 ` John Ogness
2024-12-01 0:04 ` Maciej W. Rozycki
2024-10-25 10:57 ` [PATCH tty-next v3 2/6] serial: 8250: Use high-level write function for FIFO John Ogness
2024-10-25 13:50 ` Andy Shevchenko
2024-11-05 16:12 ` Petr Mladek
2024-10-25 10:57 ` [PATCH tty-next v3 3/6] serial: 8250: Split out rx stop/start code into helpers John Ogness
2024-10-25 13:55 ` Andy Shevchenko
2024-11-06 10:54 ` Petr Mladek
2024-10-25 10:57 ` [PATCH tty-next v3 4/6] serial: 8250: Specify console context for rs485_start/stop_tx John Ogness
2024-10-25 14:04 ` Andy Shevchenko
2024-10-25 14:25 ` John Ogness
2024-10-25 14:34 ` Andy Shevchenko
2024-10-30 6:13 ` Jiri Slaby
2024-10-31 9:13 ` John Ogness
2024-11-06 15:42 ` Petr Mladek
2024-11-29 17:45 ` John Ogness
2024-10-25 10:57 ` [PATCH tty-next v3 5/6] serial: 8250: Switch to nbcon console John Ogness
2024-10-25 14:22 ` Andy Shevchenko
2024-10-28 13:22 ` John Ogness
2024-11-07 9:48 ` Petr Mladek
2024-10-30 6:33 ` Jiri Slaby
2024-10-31 9:25 ` John Ogness
2024-10-25 10:57 ` [PATCH tty-next v3 6/6] serial: 8250: Revert "drop lockdep annotation from serial8250_clear_IER()" John Ogness
2024-10-25 14:05 ` Andy Shevchenko
2024-10-25 13:58 ` Andy Shevchenko [this message]
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=Zxuj8rFQikEjr2gR@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=arnd@arndb.de \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=esben@geanix.com \
--cc=fancer.lancer@gmail.com \
--cc=florian.fainelli@broadcom.com \
--cc=geert+renesas@glider.be \
--cc=gregkh@linuxfoundation.org \
--cc=griffin@kroah.com \
--cc=jirislaby@kernel.org \
--cc=john.ogness@linutronix.de \
--cc=khilman@baylibre.com \
--cc=l.sanfilippo@kunbus.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rpi-kernel@lists.infradead.org \
--cc=linux-serial@vger.kernel.org \
--cc=msp@baylibre.com \
--cc=paulmck@kernel.org \
--cc=pcc@google.com \
--cc=pmladek@suse.com \
--cc=quic_jjohnson@quicinc.com \
--cc=rengarajan.s@microchip.com \
--cc=rjui@broadcom.com \
--cc=ronald.wahl@raritan.com \
--cc=rostedt@goodmis.org \
--cc=sbranden@broadcom.com \
--cc=senozhatsky@chromium.org \
--cc=tglx@linutronix.de \
--cc=tony@atomide.com \
--cc=u-kumar1@ti.com \
--cc=u.kleine-koenig@baylibre.com \
--cc=u.kleine-koenig@pengutronix.de \
--cc=wahrenst@gmx.net \
--cc=wander@redhat.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
all inboxes | Powered by JetHome®