2010-08-17 08:42:12

by Michal Simek

[permalink] [raw]
Subject: Uartlite - poll support

Hi Greg,

I am not sure who is responsible for drivers/serial but I see
that your tty tree contains a lot of serial patches.
Could you please add the uartlite poll patch to your tree?

Thanks,
Michal


2010-08-17 08:42:19

by Michal Simek

[permalink] [raw]
Subject: [PATCH] serial: Add CONSOLE_POLL support for uartlite

CONSOLE_POLL support for uartlite enables
KGDB debugging over serial line.

Signed-off-by: Michal Simek <[email protected]>
Signed-off-by: Jason Wessel <[email protected]>
---
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 9b03d7b..c0fae0d 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))
+ return NO_POLL_CHAR;
+
+ return ioread32be(port->membase + ULITE_RX);
+}
+
+static void ulite_put_poll_char(struct uart_port *port, unsigned char ch)
+{
+ while (ioread32be(port->membase + ULITE_STATUS) & ULITE_STATUS_TXFULL)
+ cpu_relax();
+
+ /* write char to device */
+ iowrite32be(ch, port->membase + ULITE_TX);
+}
+#endif
+
static struct uart_ops ulite_ops = {
.tx_empty = ulite_tx_empty,
.set_mctrl = ulite_set_mctrl,
@@ -338,7 +358,11 @@ static struct uart_ops ulite_ops = {
.release_port = ulite_release_port,
.request_port = ulite_request_port,
.config_port = ulite_config_port,
- .verify_port = ulite_verify_port
+ .verify_port = ulite_verify_port,
+#ifdef CONFIG_CONSOLE_POLL
+ .poll_get_char = ulite_get_poll_char,
+ .poll_put_char = ulite_put_poll_char,
+#endif
};

/* ---------------------------------------------------------------------
--
1.5.5.6

2010-08-17 15:05:15

by Greg KH

[permalink] [raw]
Subject: Re: Uartlite - poll support

On Tue, Aug 17, 2010 at 10:42:04AM +0200, Michal Simek wrote:
> Hi Greg,
>
> I am not sure who is responsible for drivers/serial but I see
> that your tty tree contains a lot of serial patches.
> Could you please add the uartlite poll patch to your tree?

Sure, I'll queue it up for .37.

thanks,

greg k-h

2010-08-22 19:04:11

by Peter Korsgaard

[permalink] [raw]
Subject: Re: [PATCH] serial: Add CONSOLE_POLL support for uartlite

>>>>> "Michal" == Michal Simek <[email protected]> writes:

Michal> CONSOLE_POLL support for uartlite enables
Michal> KGDB debugging over serial line.

Please CC me on uartlite patches in the future, thanks.

Michal> Signed-off-by: Michal Simek <[email protected]>
Michal> Signed-off-by: Jason Wessel <[email protected]>
Michal> ---
Michal> drivers/serial/uartlite.c | 26 +++++++++++++++++++++++++-
Michal> 1 files changed, 25 insertions(+), 1 deletions(-)

Michal> diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c
Michal> index 9b03d7b..c0fae0d 100644
Michal> --- a/drivers/serial/uartlite.c
Michal> +++ b/drivers/serial/uartlite.c
Michal> @@ -322,6 +322,26 @@ static int ulite_verify_port(struct uart_port *port, struct serial_struct *ser)
Michal> return -EINVAL;
Michal> }

Michal> +#ifdef CONFIG_CONSOLE_POLL
Michal> +static int ulite_get_poll_char(struct uart_port *port)
Michal> +{
Michal> + while (!(ioread32be(port->membase + ULITE_STATUS)
Michal> + & ULITE_STATUS_RXVALID))
Michal> + return NO_POLL_CHAR;
Michal> +

Using while instead of 'if' is imho pretty obscure here.

Michal> + return ioread32be(port->membase + ULITE_RX);
Michal> +}
Michal> +
Michal> +static void ulite_put_poll_char(struct uart_port *port, unsigned char ch)
Michal> +{
Michal> + while (ioread32be(port->membase + ULITE_STATUS) & ULITE_STATUS_TXFULL)
Michal> + cpu_relax();


You could reuse ulite_console_wait_tx() like ulite_console_putchar()
does.

Otherwise it looks fine.

Acked-by: Peter Korsgaard <[email protected]>

--
Bye, Peter Korsgaard

2010-08-23 08:47:19

by Michal Simek

[permalink] [raw]
Subject: Re: [PATCH] serial: Add CONSOLE_POLL support for uartlite

Peter Korsgaard wrote:
>>>>>> "Michal" == Michal Simek <[email protected]> writes:
>
> Michal> CONSOLE_POLL support for uartlite enables
> Michal> KGDB debugging over serial line.
>
> Please CC me on uartlite patches in the future, thanks.

Oou sorry.

>
> Michal> Signed-off-by: Michal Simek <[email protected]>
> Michal> Signed-off-by: Jason Wessel <[email protected]>
> Michal> ---
> Michal> drivers/serial/uartlite.c | 26 +++++++++++++++++++++++++-
> Michal> 1 files changed, 25 insertions(+), 1 deletions(-)
>
> Michal> diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c
> Michal> index 9b03d7b..c0fae0d 100644
> Michal> --- a/drivers/serial/uartlite.c
> Michal> +++ b/drivers/serial/uartlite.c
> Michal> @@ -322,6 +322,26 @@ static int ulite_verify_port(struct uart_port *port, struct serial_struct *ser)
> Michal> return -EINVAL;
> Michal> }
>
> Michal> +#ifdef CONFIG_CONSOLE_POLL
> Michal> +static int ulite_get_poll_char(struct uart_port *port)
> Michal> +{
> Michal> + while (!(ioread32be(port->membase + ULITE_STATUS)
> Michal> + & ULITE_STATUS_RXVALID))
> Michal> + return NO_POLL_CHAR;
> Michal> +
>
> Using while instead of 'if' is imho pretty obscure here.

Agree that if is the better solution.

>
> Michal> + return ioread32be(port->membase + ULITE_RX);
> Michal> +}
> Michal> +
> Michal> +static void ulite_put_poll_char(struct uart_port *port, unsigned char ch)
> Michal> +{
> Michal> + while (ioread32be(port->membase + ULITE_STATUS) & ULITE_STATUS_TXFULL)
> Michal> + cpu_relax();
>
>
> You could reuse ulite_console_wait_tx() like ulite_console_putchar()
> does.

yes, but ulite_console_wait_tx is used only when uartlite console is
used. Not sure if I tried to setup console and KGDB but in this case I
will have to add some ifdef that's why was easier for me to write on ioread.

>
> Otherwise it looks fine.
>
> Acked-by: Peter Korsgaard <[email protected]>
>

I will changed driver and send v2.

Thanks,
Michal



--
Michal Simek, Ing. (M.Eng)
w: http://www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian