From: Stefan Agner <stefan@agner.ch>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 6/8] serial: lpuart: Prepare the driver for DM conversion
Date: Wed, 13 Jan 2016 10:51:59 -0800 [thread overview]
Message-ID: <3575afbd41ca4db195358cb49888168c@agner.ch> (raw)
In-Reply-To: <1451551990-32165-7-git-send-email-bmeng.cn@gmail.com>
On 2015-12-31 00:53, Bin Meng wrote:
> Create internal routines which take lpuart's register base as
> a parameter, in preparation for driver model conversion.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
> drivers/serial/serial_lpuart.c | 146 +++++++++++++++++++++++++++--------------
> 1 file changed, 95 insertions(+), 51 deletions(-)
>
> diff --git a/drivers/serial/serial_lpuart.c b/drivers/serial/serial_lpuart.c
> index 0c0ab87..fed83a6 100644
> --- a/drivers/serial/serial_lpuart.c
> +++ b/drivers/serial/serial_lpuart.c
> @@ -50,46 +50,43 @@ DECLARE_GLOBAL_DATA_PTR;
> struct lpuart_fsl *base = (struct lpuart_fsl *)LPUART_BASE;
>
> #ifndef CONFIG_LPUART_32B_REG
> -static void lpuart_serial_setbrg(void)
> +static void _lpuart_serial_setbrg(struct lpuart_fsl *reg, int baudrate)
> {
> u32 clk = mxc_get_clock(MXC_UART_CLK);
> u16 sbr;
>
> - if (!gd->baudrate)
> - gd->baudrate = CONFIG_BAUDRATE;
> -
> - sbr = (u16)(clk / (16 * gd->baudrate));
> + sbr = (u16)(clk / (16 * baudrate));
>
> /* place adjustment later - n/32 BRFA */
> - __raw_writeb(sbr >> 8, &base->ubdh);
> - __raw_writeb(sbr & 0xff, &base->ubdl);
> + __raw_writeb(sbr >> 8, ®->ubdh);
> + __raw_writeb(sbr & 0xff, ®->ubdl);
> }
>
> -static int lpuart_serial_getc(void)
> +static int _lpuart_serial_getc(struct lpuart_fsl *reg)
> {
> - while (!(__raw_readb(&base->us1) & (US1_RDRF | US1_OR)))
> + while (!(__raw_readb(®->us1) & (US1_RDRF | US1_OR)))
> WATCHDOG_RESET();
>
> barrier();
>
> - return __raw_readb(&base->ud);
> + return __raw_readb(®->ud);
> }
>
> -static void lpuart_serial_putc(const char c)
> +static void _lpuart_serial_putc(struct lpuart_fsl *reg, const char c)
> {
> if (c == '\n')
> - lpuart_serial_putc('\r');
> + _lpuart_serial_putc(reg, '\r');
>
> - while (!(__raw_readb(&base->us1) & US1_TDRE))
> + while (!(__raw_readb(®->us1) & US1_TDRE))
> WATCHDOG_RESET();
>
> - __raw_writeb(c, &base->ud);
> + __raw_writeb(c, ®->ud);
> }
>
> /* Test whether a character is in the RX buffer */
> -static int lpuart_serial_tstc(void)
> +static int _lpuart_serial_tstc(struct lpuart_fsl *reg)
> {
> - if (__raw_readb(&base->urcfifo) == 0)
> + if (__raw_readb(®->urcfifo) == 0)
> return 0;
>
> return 1;
> @@ -99,32 +96,57 @@ static int lpuart_serial_tstc(void)
> * Initialise the serial port with the given baudrate. The settings
> * are always 8 data bits, no parity, 1 stop bit, no start bits.
> */
> -static int lpuart_serial_init(void)
> +static int _lpuart_serial_init(struct lpuart_fsl *reg)
Couldn't you just name the parameter base and get rid of the changes
below? IMHO, renaming variables is only really necessary if the current
name is misleading, which I don't think it is...
> {
> u8 ctrl;
>
> - ctrl = __raw_readb(&base->uc2);
> + ctrl = __raw_readb(®->uc2);
> ctrl &= ~UC2_RE;
> ctrl &= ~UC2_TE;
> - __raw_writeb(ctrl, &base->uc2);
> + __raw_writeb(ctrl, ®->uc2);
>
> - __raw_writeb(0, &base->umodem);
> - __raw_writeb(0, &base->uc1);
> + __raw_writeb(0, ®->umodem);
> + __raw_writeb(0, ®->uc1);
>
> /* Disable FIFO and flush buffer */
> - __raw_writeb(0x0, &base->upfifo);
> - __raw_writeb(0x0, &base->utwfifo);
> - __raw_writeb(0x1, &base->urwfifo);
> - __raw_writeb(CFIFO_TXFLUSH | CFIFO_RXFLUSH, &base->ucfifo);
> + __raw_writeb(0x0, ®->upfifo);
> + __raw_writeb(0x0, ®->utwfifo);
> + __raw_writeb(0x1, ®->urwfifo);
> + __raw_writeb(CFIFO_TXFLUSH | CFIFO_RXFLUSH, ®->ucfifo);
>
> /* provide data bits, parity, stop bit, etc */
> - lpuart_serial_setbrg();
> + _lpuart_serial_setbrg(reg, gd->baudrate);
>
> - __raw_writeb(UC2_RE | UC2_TE, &base->uc2);
> + __raw_writeb(UC2_RE | UC2_TE, ®->uc2);
>
> return 0;
> }
>
> +static void lpuart_serial_setbrg(void)
> +{
> + _lpuart_serial_setbrg(base, gd->baudrate);
> +}
> +
> +static int lpuart_serial_getc(void)
> +{
> + return _lpuart_serial_getc(base);
> +}
> +
> +static void lpuart_serial_putc(const char c)
> +{
> + _lpuart_serial_putc(base, c);
> +}
> +
> +static int lpuart_serial_tstc(void)
> +{
> + return _lpuart_serial_tstc();
> +}
> +
> +static int lpuart_serial_init(void)
> +{
> + return _lpuart_serial_init(base);
> +}
> +
> static struct serial_device lpuart_serial_drv = {
> .name = "lpuart_serial",
> .start = lpuart_serial_init,
> @@ -136,47 +158,44 @@ static struct serial_device lpuart_serial_drv = {
> .tstc = lpuart_serial_tstc,
> };
> #else
> -static void lpuart32_serial_setbrg(void)
> +static void _lpuart32_serial_setbrg(struct lpuart_fsl *reg, int baudrate)
> {
> u32 clk = CONFIG_SYS_CLK_FREQ;
> u32 sbr;
>
> - if (!gd->baudrate)
> - gd->baudrate = CONFIG_BAUDRATE;
> -
> - sbr = (clk / (16 * gd->baudrate));
> + sbr = (clk / (16 * baudrate));
>
> /* place adjustment later - n/32 BRFA */
> - out_be32(&base->baud, sbr);
> + out_be32(®->baud, sbr);
> }
>
> -static int lpuart32_serial_getc(void)
> +static int _lpuart32_serial_getc(struct lpuart_fsl *reg)
> {
> u32 stat;
>
> - while (((stat = in_be32(&base->stat)) & STAT_RDRF) == 0) {
> - out_be32(&base->stat, STAT_FLAGS);
> + while (((stat = in_be32(®->stat)) & STAT_RDRF) == 0) {
> + out_be32(®->stat, STAT_FLAGS);
> WATCHDOG_RESET();
> }
>
> - return in_be32(&base->data) & 0x3ff;
> + return in_be32(®->data) & 0x3ff;
> }
>
> -static void lpuart32_serial_putc(const char c)
> +static void _lpuart32_serial_putc(struct lpuart_fsl *reg, const char c)
> {
> if (c == '\n')
> - lpuart32_serial_putc('\r');
> + _lpuart32_serial_putc(reg, '\r');
>
> - while (!(in_be32(&base->stat) & STAT_TDRE))
> + while (!(in_be32(®->stat) & STAT_TDRE))
> WATCHDOG_RESET();
>
> - out_be32(&base->data, c);
> + out_be32(®->data, c);
> }
>
> /* Test whether a character is in the RX buffer */
> -static int lpuart32_serial_tstc(void)
> +static int _lpuart32_serial_tstc(struct lpuart_fsl *reg)
> {
> - if ((in_be32(&base->water) >> 24) == 0)
> + if ((in_be32(®->water) >> 24) == 0)
> return 0;
>
> return 1;
> @@ -186,28 +205,53 @@ static int lpuart32_serial_tstc(void)
> * Initialise the serial port with the given baudrate. The settings
> * are always 8 data bits, no parity, 1 stop bit, no start bits.
> */
> -static int lpuart32_serial_init(void)
> +static int _lpuart32_serial_init(struct lpuart_fsl *reg)
> {
> u8 ctrl;
>
> - ctrl = in_be32(&base->ctrl);
> + ctrl = in_be32(®->ctrl);
> ctrl &= ~CTRL_RE;
> ctrl &= ~CTRL_TE;
> - out_be32(&base->ctrl, ctrl);
> + out_be32(®->ctrl, ctrl);
>
> - out_be32(&base->modir, 0);
> - out_be32(&base->fifo, ~(FIFO_TXFE | FIFO_RXFE));
> + out_be32(®->modir, 0);
> + out_be32(®->fifo, ~(FIFO_TXFE | FIFO_RXFE));
>
> - out_be32(&base->match, 0);
> + out_be32(®->match, 0);
>
> /* provide data bits, parity, stop bit, etc */
> - lpuart32_serial_setbrg();
> + _lpuart32_serial_setbrg(reg, gd->baudrate);
>
> - out_be32(&base->ctrl, CTRL_RE | CTRL_TE);
> + out_be32(®->ctrl, CTRL_RE | CTRL_TE);
>
> return 0;
> }
>
> +static void lpuart32_serial_setbrg(void)
> +{
> + _lpuart32_serial_setbrg(base, gd->baudrate);
> +}
> +
> +static int lpuart32_serial_getc(void)
> +{
> + return _lpuart32_serial_getc(base);
> +}
> +
> +static void lpuart32_serial_putc(const char c)
> +{
> + _lpuart32_serial_putc(base, c);
> +}
> +
> +static int lpuart32_serial_tstc(void)
> +{
> + return _lpuart32_serial_tstc(base);
> +}
> +
> +static int lpuart32_serial_init(void)
> +{
> + return _lpuart32_serial_init(base);
> +}
> +
> static struct serial_device lpuart32_serial_drv = {
> .name = "lpuart32_serial",
> .start = lpuart32_serial_init,
next prev parent reply other threads:[~2016-01-13 18:51 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-31 8:53 [U-Boot] [PATCH 0/8] arm: ls1021atwr: Convert to driver model and enable serial support Bin Meng
2015-12-31 8:53 ` [U-Boot] [PATCH 1/8] fdt: Fix up stdout correctly in fdt_fixup_stdout() Bin Meng
2016-01-08 3:34 ` Simon Glass
2016-01-11 3:02 ` Bin Meng
2016-01-11 16:58 ` Simon Glass
2016-01-13 9:14 ` Bin Meng
2016-01-13 20:10 ` Simon Glass
2015-12-31 8:53 ` [U-Boot] [PATCH 2/8] arm: ls1021atwr: Convert to driver model and enable serial support Bin Meng
2015-12-31 8:53 ` [U-Boot] [PATCH 3/8] serial: lpuart: Move CONFIG_FSL_LPUART to Kconfig Bin Meng
2016-01-06 0:25 ` Simon Glass
2016-01-13 18:45 ` Stefan Agner
2015-12-31 8:53 ` [U-Boot] [PATCH 4/8] serial: lpuart: Fix several cosmetic issues Bin Meng
2016-01-06 0:25 ` Simon Glass
2015-12-31 8:53 ` [U-Boot] [PATCH 5/8] serial: lpuart: Call local version of setbrg and putc directly Bin Meng
2016-01-06 0:25 ` Simon Glass
2015-12-31 8:53 ` [U-Boot] [PATCH 6/8] serial: lpuart: Prepare the driver for DM conversion Bin Meng
2016-01-06 0:25 ` Simon Glass
2016-01-13 18:51 ` Stefan Agner [this message]
2016-01-14 2:11 ` Bin Meng
2015-12-31 8:53 ` [U-Boot] [PATCH 7/8] serial: lpuart: Add driver model serial support Bin Meng
2016-01-06 0:25 ` Simon Glass
2016-01-11 3:08 ` Bin Meng
2016-01-13 5:49 ` Bhuvanchandra DV
2016-01-13 6:13 ` Bin Meng
2016-01-13 8:07 ` Bhuvanchandra DV
2016-01-13 8:19 ` Bin Meng
2016-01-13 19:20 ` Stefan Agner
2016-01-14 2:24 ` Bin Meng
2016-01-14 8:10 ` Bhuvanchandra DV
2015-12-31 8:53 ` [U-Boot] [PATCH 8/8] arm: ls1021atwr: Enable driver model lpuart serial driver Bin Meng
2016-01-06 0:25 ` Simon Glass
2016-01-06 5:31 ` [U-Boot] [PATCH 0/8] arm: ls1021atwr: Convert to driver model and enable serial support Huan Wang
2016-01-07 2:26 ` Bin Meng
2016-01-07 6:01 ` Huan Wang
2016-01-07 6:15 ` Bin Meng
2016-01-07 6:19 ` Huan Wang
2016-01-07 9:22 ` Bin Meng
2016-01-11 3:10 ` Bin Meng
2016-01-11 16:58 ` Simon Glass
2016-01-13 19:03 ` Stefan Agner
2016-01-14 2:13 ` Bin Meng
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=3575afbd41ca4db195358cb49888168c@agner.ch \
--to=stefan@agner.ch \
--cc=u-boot@lists.denx.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