From: Alexander Shiyan <shc_work@mail.ru>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v2 2/3] ARM: clps711x: Add serial driver
Date: Sat, 20 Oct 2012 17:50:58 +0400 [thread overview]
Message-ID: <20121020175058.7a9270e287ea94ed5df84925@mail.ru> (raw)
In-Reply-To: <20121016213956.GH27665@pengutronix.de>
On Tue, 16 Oct 2012 23:39:56 +0200
Sascha Hauer <s.hauer@pengutronix.de> wrote:
...
> > > We already had this. This SoC has a very strange register layout. The
> > > registers for the UARTs are spread around the SoC and the registers
> > > are not even exclusively used for the UARTs. They have bits which are
> > > also used for the timer and other stuff.
> > use the device id to select the register is wrong
> >
> > we need to pass the register via resource (without request) or platform data
> > >
> > > > > +static int clps711x_tstc(struct console_device *cdev)
> > > > > +{
> > > > > + return !(readl(SYSFLG(cdev->dev->id)) & SYSFLG_URXFE);
> > > > factorise those pull status as
> > > >
> > > > status int xxx(data, mask) {}
> > >
> > > I don'r understand this. This is a single register read, there's not
> > > much to factorize and the code is easy to read.
> > he use the code at a least 2 place
>
> Testing for a bit like above is done a thousand times all around the
> kernel and barebox. There is nothing to factorize. The way Alexander did
> it is perfectly fine.
Please look on new version below. If it looks OK, I will make complete v2 patch.
Thanks!
/*
* Simple CLPS711X serial driver
*
* (C) Copyright 2012 Alexander Shiyan <shc_work@mail.ru>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
#include <common.h>
#include <malloc.h>
#include <init.h>
#include <io.h>
#include <linux/clk.h>
#include <mach/clps711x.h>
struct clps711x_uart {
void __iomem *UBRLCR;
void __iomem *SYSCON;
void __iomem *SYSFLG;
void __iomem *UARTDR;
struct clk *uart_clk;
struct console_device cdev;
};
static int clps711x_setbaudrate(struct console_device *cdev, int baudrate)
{
struct clps711x_uart *s = cdev->dev->priv;
int divisor;
u32 tmp;
divisor = (clk_get_rate(s->uart_clk) / 16) / baudrate;
tmp = readl(s->UBRLCR) & ~UBRLCR_BAUD_MASK;
tmp |= divisor - 1;
writel(tmp, s->UBRLCR);
return 0;
}
static void clps711x_init_port(struct console_device *cdev)
{
struct clps711x_uart *s = cdev->dev->priv;
u32 tmp;
/* Disable the UART */
writel(readl(s->SYSCON) & ~SYSCON_UARTEN, s->SYSCON);
/* Setup Line Control Register */
tmp = readl(s->UBRLCR) & UBRLCR_BAUD_MASK;
tmp |= UBRLCR_FIFOEN | UBRLCR_WRDLEN8; /* FIFO on, 8N1 mode */
writel(tmp, s->UBRLCR);
/* Set default baudrate on initialization */
clps711x_setbaudrate(cdev, CONFIG_BAUDRATE);
/* Enable the UART */
writel(readl(s->SYSCON) | SYSCON_UARTEN, s->SYSCON);
}
static void clps711x_putc(struct console_device *cdev, char c)
{
struct clps711x_uart *s = cdev->dev->priv;
/* Wait until there is space in the FIFO */
while (readl(s->SYSFLG) & SYSFLG_UTXFF)
barrier();
/* Send the character */
writew(c, s->UARTDR);
}
static int clps711x_getc(struct console_device *cdev)
{
struct clps711x_uart *s = cdev->dev->priv;
u16 data;
/* Wait until there is data in the FIFO */
while (readl(s->SYSFLG) & SYSFLG_URXFE)
barrier();
data = readw(s->UARTDR);
/* Check for an error flag */
if (data & (UARTDR_FRMERR | UARTDR_PARERR | UARTDR_OVERR))
return -1;
return (int)data;
}
static int clps711x_tstc(struct console_device *cdev)
{
struct clps711x_uart *s = cdev->dev->priv;
return !(readl(s->SYSFLG) & SYSFLG_URXFE);
}
static void clps711x_flush(struct console_device *cdev)
{
struct clps711x_uart *s = cdev->dev->priv;
while (readl(s->SYSFLG) & SYSFLG_UBUSY)
barrier();
}
static int clps711x_probe(struct device_d *dev)
{
struct clps711x_uart *s;
BUG_ON(dev->num_resources != 4);
s = xzalloc(sizeof(struct clps711x_uart));
s->uart_clk = clk_get(dev, NULL);
BUG_ON(!s->uart_clk);
s->UBRLCR = dev_get_mem_region(dev, 0);
s->SYSCON = dev_get_mem_region(dev, 1);
s->SYSFLG = dev_get_mem_region(dev, 2);
s->UARTDR = dev_get_mem_region(dev, 3);
dev->priv = s;
s->cdev.dev = dev;
s->cdev.f_caps = CONSOLE_STDIN | CONSOLE_STDOUT | CONSOLE_STDERR;
s->cdev.tstc = clps711x_tstc;
s->cdev.putc = clps711x_putc;
s->cdev.getc = clps711x_getc;
s->cdev.flush = clps711x_flush;
s->cdev.setbrg = clps711x_setbaudrate;
clps711x_init_port(&s->cdev);
return console_register(&s->cdev);
}
static void clps711x_remove(struct device_d *dev)
{
struct clps711x_uart *s = dev->priv;
clps711x_flush(&s->cdev);
console_unregister(&s->cdev);
free(s);
}
static struct driver_d clps711x_driver = {
.name = "clps711x_serial",
.probe = clps711x_probe,
.remove = clps711x_remove,
};
static int clps711x_init(void)
{
return platform_driver_register(&clps711x_driver);
}
console_initcall(clps711x_init);
--
Alexander Shiyan <shc_work@mail.ru>
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-10-20 13:51 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-15 16:26 [PATCH v2 1/3] ARM: Add CLPS711X architecture Alexander Shiyan
2012-10-15 16:26 ` [PATCH v2 2/3] ARM: clps711x: Add serial driver Alexander Shiyan
2012-10-15 17:58 ` Jean-Christophe PLAGNIOL-VILLARD
2012-10-15 19:00 ` Alexander Shiyan
2012-10-15 21:58 ` Sascha Hauer
2012-10-16 8:08 ` Jean-Christophe PLAGNIOL-VILLARD
2012-10-16 21:39 ` Sascha Hauer
2012-10-20 13:50 ` Alexander Shiyan [this message]
2012-10-23 6:38 ` Sascha Hauer
2012-10-15 16:26 ` [PATCH v2 3/3] ARM: clps711x: Add generic board support (CLEP7212) Alexander Shiyan
2012-10-15 18:03 ` Jean-Christophe PLAGNIOL-VILLARD
2012-10-15 19:05 ` Alexander Shiyan
2012-10-15 17:54 ` [PATCH v2 1/3] ARM: Add CLPS711X architecture Jean-Christophe PLAGNIOL-VILLARD
2012-10-15 18:56 ` Alexander Shiyan
2012-10-16 8:09 ` Jean-Christophe PLAGNIOL-VILLARD
2012-10-16 21:42 ` Sascha Hauer
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=20121020175058.7a9270e287ea94ed5df84925@mail.ru \
--to=shc_work@mail.ru \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@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