From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Alexey Sheplyakov <asheplyakov@basealt.ru>
Cc: linux-serial@vger.kernel.org,
"Vadim V . Vlasov" <vadim.vlasov@elpitech.ru>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Serge Semin <Sergey.Semin@baikalelectronics.ru>
Subject: Re: [PATCH] serial: 8250_dw: verify clock rate in dw8250_set_termios
Date: Tue, 11 Jan 2022 22:36:34 +0200 [thread overview]
Message-ID: <Yd3qUhgLAIJjScMm@smile.fi.intel.com> (raw)
In-Reply-To: <Yd3kyuBf680xvHMR@asheplyakov-rocket>
On Wed, Jan 12, 2022 at 12:12:58AM +0400, Alexey Sheplyakov wrote:
> On Tue, Jan 11, 2022 at 08:30:28PM +0200, Andy Shevchenko wrote:
> > On Tue, Jan 11, 2022 at 05:28:47PM +0400, asheplyakov@basealt.ru wrote:
> > > Refuse to change the clock rate if clk_round_rate() returns
> > > a rate which is way too off (i.e. by more than 1/16 from the one
> > > necessary for a given baud rate). In particular this happens if
> > > the requested rate is below the minimum supported by the clock.
> > >
> > > Fixes the UART console on BE-M1000 SoC. Without this patch the
> > > console gets garbled immediately after loading the driver.
> > > dw8250_set_termios tries to configure the baud rate (115200),
> > > and calls clk_round_rate to figure out the supported rate closest
> > > to 1843200 Hz (which is 115200 * 16). However the (SoC-specific)
> > > clock driver returns 4705882 Hz. This frequency is way too off,
> > > hence after setting it the console gets garbled.
> >
> > So, the root cause is to understand _why_ the clock provider is uncapable
> > to fulfil the request. Any investigation has been conducted?
>
> Yes. On BE-M1000 SoC Linux has no direct control over (most) clocks.
> The registers of CMU (clock management unit) are accessible only from
> the secure world, therefore clocks are managed by the firmware (ARM-TF).
> Linux' driver is a shim which calls into the firmware. And that
> 4705882 Hz is exactly what is returned by firmware.
> > > - if (rate > 0) {
> > > + if (rate > 0 && rate >= baud * 15 && rate <= baud * 17) {
> >
> > It doesn't fell like a correct fix.
>
> What is the correct way to check if the rate returned by clk_round_rate
> makes sense for the (new) baud rate? See, clk_round_rate is supposed to
> give a supported rate which is closest to the requested one. Usually it
> appears to be "close enough" to the requested rate (or an error), however
> (as far as I understand) there is no a formal requirement (and it's up
> to the driver to decide how close is "close enough").
>
> Or should we just hope that the clock provider does the right thing?
Does this hardware even work? I mean is it possible to change baud rate?
To me the proper solution sounds like the driver on this hardware should
not use CCF approach, i.e. use only DLAB for baud rate and fixed rate clock
of the bus or so.
--
With Best Regards,
Andy Shevchenko
prev parent reply other threads:[~2022-01-11 20:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-11 13:28 [PATCH] serial: 8250_dw: verify clock rate in dw8250_set_termios asheplyakov
2022-01-11 18:30 ` Andy Shevchenko
2022-01-11 20:12 ` Alexey Sheplyakov
2022-01-11 20:36 ` 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=Yd3qUhgLAIJjScMm@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=Sergey.Semin@baikalelectronics.ru \
--cc=asheplyakov@basealt.ru \
--cc=gregkh@linuxfoundation.org \
--cc=linux-serial@vger.kernel.org \
--cc=vadim.vlasov@elpitech.ru \
/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