|
@@ -403,29 +403,6 @@ static struct altera_uart altera_uart_ports[CONFIG_SERIAL_ALTERA_UART_MAXPORTS];
|
|
|
|
|
|
#if defined(CONFIG_SERIAL_ALTERA_UART_CONSOLE)
|
|
|
|
|
|
-int __init early_altera_uart_setup(struct altera_uart_platform_uart *platp)
|
|
|
-{
|
|
|
- struct uart_port *port;
|
|
|
- int i;
|
|
|
-
|
|
|
- for (i = 0; i < CONFIG_SERIAL_ALTERA_UART_MAXPORTS && platp[i].mapbase; i++) {
|
|
|
- port = &altera_uart_ports[i].port;
|
|
|
-
|
|
|
- port->line = i;
|
|
|
- port->type = PORT_ALTERA_UART;
|
|
|
- port->mapbase = platp[i].mapbase;
|
|
|
- port->membase = ioremap(port->mapbase, ALTERA_UART_SIZE);
|
|
|
- port->iotype = SERIAL_IO_MEM;
|
|
|
- port->irq = platp[i].irq;
|
|
|
- port->uartclk = platp[i].uartclk;
|
|
|
- port->flags = UPF_BOOT_AUTOCONF;
|
|
|
- port->ops = &altera_uart_ops;
|
|
|
- port->private_data = platp;
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
static void altera_uart_console_putc(struct uart_port *port, const char c)
|
|
|
{
|
|
|
while (!(altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
|