From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
Cc: linux-serial@vger.kernel.org,
"Greg KH" <gregkh@linuxfoundation.org>,
"Jiri Slaby" <jirislaby@kernel.org>,
"Lukas Wunner" <lukas@wunner.de>,
"Johan Hovold" <johan@kernel.org>,
heiko@sntech.de, giulio.benetti@micronovasrl.com,
"Heikki Krogerus" <heikki.krogerus@linux.intel.com>,
"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
"Raymond Tan" <raymond.tan@intel.com>,
"Lakshmi Sowjanya" <lakshmi.sowjanya.d@intel.com>
Subject: Re: [PATCH v3 12/12] serial: 8250_dwlib: Support for 9th bit multipoint addressing
Date: Mon, 11 Apr 2022 14:19:14 +0300 [thread overview]
Message-ID: <YlQOsiJAsYYA45B7@smile.fi.intel.com> (raw)
In-Reply-To: <20220411083321.9131-13-ilpo.jarvinen@linux.intel.com>
On Mon, Apr 11, 2022 at 11:33:21AM +0300, Ilpo Järvinen wrote:
> This change adds 9th bit multipoint addressing mode for DW UART using
> the new ioctls introduced in the previous change. 9th bit addressing
> can be used only when HW RS485 is available.
>
> Updating RAR (receive address register) is bit tricky because
> busy indication is not be available when DW UART is strictly
> 16550 compatible, which is the case with the hardware I was
> testing with. RAR should not be updated while receive is in
> progress which is now achieved by deasserting RE and waiting
> for one frame (in case rx would be in progress, the driver
> seems to have no way of knowing it w/o busy indication).
...
> +static void dw8250_update_rar(struct uart_port *p, u32 addr)
> +{
> + u32 re_en = dw8250_readl_ext(p, DW_UART_RE_EN);
> +
> + /*
> + * RAR shouldn't be changed while receiving. Thus, de-assert RE_EN
> + * if asserted and wait.
> + */
> + if (re_en)
> + dw8250_writel_ext(p, DW_UART_RE_EN, 0);
> + dw8250_wait_re_deassert(p);
> + dw8250_writel_ext(p, DW_UART_RAR, addr);
> + if (re_en)
> + dw8250_writel_ext(p, DW_UART_RE_EN, re_en);
I would write it
u32 re_en;
/*
* RAR shouldn't be changed while receiving. Thus, de-assert RE_EN
* if asserted and wait.
*/
re_en = dw8250_readl_ext(p, DW_UART_RE_EN);
if (re_en) {
dw8250_writel_ext(p, DW_UART_RE_EN, 0);
dw8250_wait_re_deassert(p);
dw8250_writel_ext(p, DW_UART_RAR, addr);
dw8250_writel_ext(p, DW_UART_RE_EN, re_en);
} else {
dw8250_wait_re_deassert(p);
dw8250_writel_ext(p, DW_UART_RAR, addr);
}
or something similar with extracting these two lines into another function.
But it's up to you, it's just pure style thingy.
> +}
...
> + dw8250_writel_ext(p, DW_UART_TAR, addr->addr & 0xff);
GENMASK() ?
Perhaps even a separate definition?
...
> + addr->addr = dw8250_readl_ext(p, DW_UART_TAR) & 0xff;
Ditto.
...
> + addr->addr = dw8250_readl_ext(p, DW_UART_RAR) & 0xff;
Ditto.
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2022-04-11 11:23 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-11 8:33 [PATCH v3 00/12] Add RS485 support to DW UART Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 01/12] serial: Store character timing information to uart_port Ilpo Järvinen
2022-04-11 10:52 ` Andy Shevchenko
2022-04-11 10:56 ` Andy Shevchenko
2022-04-11 11:00 ` Andy Shevchenko
2022-04-11 8:33 ` [PATCH v3 02/12] serial: 8250: Handle UART without interrupt on TEMT Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 03/12] serial: 8250_dwlib: RS485 HW half & full duplex support Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 04/12] serial: 8250_dwlib: Implement SW half " Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 05/12] dt_bindings: rs485: Add receiver enable polarity Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 06/12] ACPI / property: Document RS485 _DSD properties Ilpo Järvinen
2022-04-11 11:02 ` Andy Shevchenko
2022-04-11 8:33 ` [PATCH v3 07/12] serial: termbits: ADDRB to indicate 9th bit addressing mode Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 08/12] serial: General support for multipoint addresses Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 09/12] serial: 8250: make saved LSR larger Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 10/12] serial: 8250: create lsr_save_mask Ilpo Järvinen
2022-04-11 8:33 ` [PATCH v3 11/12] serial: 8250_lpss: Use 32-bit reads Ilpo Järvinen
2022-04-11 11:12 ` Andy Shevchenko
2022-04-11 8:33 ` [PATCH v3 12/12] serial: 8250_dwlib: Support for 9th bit multipoint addressing Ilpo Järvinen
2022-04-11 11:19 ` Andy Shevchenko [this message]
2022-04-21 15:36 ` [PATCH v3 00/12] Add RS485 support to DW UART Vicente Bergas
2022-04-21 19:38 ` Lukas Wunner
2022-04-21 20:41 ` Vicente Bergas
2022-04-22 9:25 ` Ilpo Järvinen
2022-04-22 13:07 ` Ilpo Järvinen
2022-04-23 23:57 ` Vicente Bergas
2022-04-25 11:16 ` Ilpo Järvinen
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=YlQOsiJAsYYA45B7@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=giulio.benetti@micronovasrl.com \
--cc=gregkh@linuxfoundation.org \
--cc=heikki.krogerus@linux.intel.com \
--cc=heiko@sntech.de \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jirislaby@kernel.org \
--cc=johan@kernel.org \
--cc=lakshmi.sowjanya.d@intel.com \
--cc=linux-serial@vger.kernel.org \
--cc=lukas@wunner.de \
--cc=raymond.tan@intel.com \
--cc=u.kleine-koenig@pengutronix.de \
/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;
as well as URLs for NNTP newsgroup(s).