]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
serial: of-serial: fetch line number from DT
authorLucas Stach <dev@lynxeye.de>
Mon, 3 Nov 2014 22:16:54 +0000 (23:16 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 6 Nov 2014 22:57:25 +0000 (14:57 -0800)
The general agreed way to specify a fixed line number
for a serial console is to provide a "serial" alias
in the devicetree. Start parsing this property in
of_serial.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/of_serial.c

index 8749fb849803cc5f3df042edb0aff5258ad333ec..7bc163421be4200ad751829887191c52cf84b7e4 100644 (file)
@@ -102,6 +102,10 @@ static int of_platform_serial_setup(struct platform_device *ofdev,
        if (of_property_read_u32(np, "fifo-size", &prop) == 0)
                port->fifosize = prop;
 
+       /* Check for a fixed line number */
+       if ((ret = of_alias_get_id(np, "serial")) >= 0)
+               port->line = ret;
+
        port->irq = irq_of_parse_and_map(np, 0);
        port->iotype = UPIO_MEM;
        if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {