From: Jason Wessel <jason.wessel@windriver.com>
To: Michal Simek <monstr@monstr.eu>
Cc: jacmet@sunsite.dk, grant.likely@secretlab.ca,
linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org,
KGDB Mailing List <kgdb-bugreport@lists.sourceforge.net>
Subject: Re: [PATCH] serial: Add CONSOLE_POLL support for uartlite
Date: Tue, 10 Aug 2010 06:48:26 -0500 [thread overview]
Message-ID: <4C613C8A.1050600@windriver.com> (raw)
In-Reply-To: <1281348452-26924-1-git-send-email-monstr@monstr.eu>
On 08/09/2010 05:07 AM, Michal Simek wrote:
> CONSOLE_POLL support for uartlite enables
> KGDB debugging over serial line.
>
> Signed-off-by: Michal Simek <monstr@monstr.eu>
> ---
> drivers/serial/uartlite.c | 26 +++++++++++++++++++++++++-
> 1 files changed, 25 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c
> index caf085d..ce1f3e0 100644
> --- a/drivers/serial/uartlite.c
> +++ b/drivers/serial/uartlite.c
> @@ -322,6 +322,26 @@ static int ulite_verify_port(struct uart_port *port, struct serial_struct *ser)
> return -EINVAL;
> }
>
> +#ifdef CONFIG_CONSOLE_POLL
> +static int ulite_get_poll_char(struct uart_port *port)
> +{
> + while (!(ioread32be(port->membase + ULITE_STATUS)
> + & ULITE_STATUS_RXVALID))
> + cpu_relax();
> +
> + return ioread32be(port->membase + ULITE_RX);
> +}
After kdb was merged, the CONSOLE_POLL API had a subtle change where
all I/O drivers should return immediately with a return of
NO_POLL_CHAR in order to allow more than one I/O driver to operate in
the same poll loop.
The patch should look like the following for the get_poll_char.
+static int ulite_get_poll_char(struct uart_port *port)
+{
+ if (!(ioread32be(port->membase + ULITE_STATUS)
+ & ULITE_STATUS_RXVALID))
+ return NO_POLL_CHAR;
+
+ return ioread32be(port->membase + ULITE_RX);
+}
If you agree to the change you can add my SOB.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Cheers,
Jason.
next prev parent reply other threads:[~2010-08-10 11:48 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-09 10:07 Michal Simek
2010-08-10 11:48 ` Jason Wessel [this message]
2010-08-10 11:50 ` Michal Simek
2010-08-17 8:42 Uartlite - poll support Michal Simek
2010-08-17 8:42 ` [PATCH] serial: Add CONSOLE_POLL support for uartlite Michal Simek
2010-08-22 19:04 ` Peter Korsgaard
2010-08-23 8:47 ` Michal Simek
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=4C613C8A.1050600@windriver.com \
--to=jason.wessel@windriver.com \
--cc=grant.likely@secretlab.ca \
--cc=jacmet@sunsite.dk \
--cc=kgdb-bugreport@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=monstr@monstr.eu \
/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
Powered by JetHome