From: Michal Simek <monstr@monstr.eu>
To: Jason Wessel <jason.wessel@windriver.com>
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 13:50:41 +0200 [thread overview]
Message-ID: <4C613D11.7080701@monstr.eu> (raw)
In-Reply-To: <4C613C8A.1050600@windriver.com>
Jason Wessel wrote:
> 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>
I have no problem with it.
Thanks,
Michal
--
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian
next prev parent reply other threads:[~2010-08-10 11:50 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-09 10:07 [PATCH] serial: Add CONSOLE_POLL support for uartlite Michal Simek
2010-08-10 11:48 ` Jason Wessel
2010-08-10 11:48 ` Jason Wessel
2010-08-10 11:50 ` Michal Simek [this message]
-- strict thread matches above, loose matches on Subject: below --
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=4C613D11.7080701@monstr.eu \
--to=monstr@monstr.eu \
--cc=grant.likely@secretlab.ca \
--cc=jacmet@sunsite.dk \
--cc=jason.wessel@windriver.com \
--cc=kgdb-bugreport@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.