lkml.org 
[lkml]   [2010]   [May]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [Nios2-dev] [PATCH 1/2] serial: Add driver for the Altera JTAG UART
From
Date
On Wed, 2010-05-05 at 09:35 +0100, Tobias Klauser wrote:
> Add an UART driver for the JTAG UART component available as a SOPC
> (System on Programmable Chip) component for Altera FPGAs.
>
> Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
[...]
> +#if defined(CONFIG_SERIAL_ALTERA_JTAGUART_CONSOLE_BYPASS)
> +static void altera_jtaguart_console_putc(struct console *co, const char c)
> +{
> + struct uart_port *port = &(altera_jtaguart_ports + co->index)->port;
> + unsigned long status;
> + unsigned long flags;
> +
> + spin_lock_irqsave(&port->lock, flags);
> + while (((status = readl(port->membase + ALTERA_JTAGUART_CONTROL_REG)) &
> + ALTERA_JTAGUART_CONTROL_WSPACE_MSK) == 0) {
> + if ((status & ALTERA_JTAGUART_CONTROL_AC_MSK) == 0) {
> + spin_unlock_irqrestore(&port->lock, flags);
> + return; /* no connection activity */
> + }
> + spin_unlock_irqrestore(&port->lock, flags);
> + cpu_relax();
> + spin_lock_irqsave(&port->lock, flags);
> + }
> + writel(c, port->membase + ALTERA_JTAGUART_DATA_REG);
> + spin_unlock_irqrestore(&port->lock, flags);
> +}
> +#else
> +static void altera_jtaguart_console_putc(struct console *co, const char c)
> +{
> + struct uart_port *port = &(altera_jtaguart_ports + co->index)->port;
> + unsigned long flags;
> +
> + spin_lock_irqsave(&port->lock, flags);
> + while ((readl(port->membase + ALTERA_JTAGUART_CONTROL_REG) &
> + ALTERA_JTAGUART_CONTROL_WSPACE_MSK) == 0) {
> + spin_unlock_irqrestore(&port->lock, flags);
> + cpu_relax();
> + spin_lock_irqsave(&port->lock, flags);
> + }
> + writel(c, port->membase + ALTERA_JTAGUART_DATA_REG);
> + spin_unlock_irqrestore(&port->lock, flags);
> +}
> +#endif

I was originally responsible for adding the spin locks to these console
putc functions, but I'm not sure what the policy is regarding that, as
the 8250 driver doesn't use them for console output for example.

--
-=( Ian Abbott @ MEV Ltd. E-mail: <abbotti@mev.co.uk> )=-
-=( Tel: +44 (0)161 477 1898 FAX: +44 (0)161 718 3587 )=-



\
 
 \ /
  Last update: 2010-05-06 13:01    [W:0.077 / U:0.008 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site