serial: earlycon: Skip parse_options() if empty string
[cascardo/linux.git] / drivers / tty / serial / earlycon.c
1 /*
2  * Copyright (C) 2014 Linaro Ltd.
3  * Author: Rob Herring <robh@kernel.org>
4  *
5  * Based on 8250 earlycon:
6  * (c) Copyright 2004 Hewlett-Packard Development Company, L.P.
7  *      Bjorn Helgaas <bjorn.helgaas@hp.com>
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13 #include <linux/console.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/io.h>
17 #include <linux/serial_core.h>
18 #include <linux/sizes.h>
19 #include <linux/mod_devicetable.h>
20
21 #ifdef CONFIG_FIX_EARLYCON_MEM
22 #include <asm/fixmap.h>
23 #endif
24
25 #include <asm/serial.h>
26
27 static struct console early_con = {
28         .name =         "uart", /* 8250 console switch requires this name */
29         .flags =        CON_PRINTBUFFER | CON_BOOT,
30         .index =        -1,
31 };
32
33 static struct earlycon_device early_console_dev = {
34         .con = &early_con,
35 };
36
37 static const struct of_device_id __earlycon_of_table_sentinel
38         __used __section(__earlycon_of_table_end);
39
40 static void __iomem * __init earlycon_map(unsigned long paddr, size_t size)
41 {
42         void __iomem *base;
43 #ifdef CONFIG_FIX_EARLYCON_MEM
44         set_fixmap_io(FIX_EARLYCON_MEM_BASE, paddr & PAGE_MASK);
45         base = (void __iomem *)__fix_to_virt(FIX_EARLYCON_MEM_BASE);
46         base += paddr & ~PAGE_MASK;
47 #else
48         base = ioremap(paddr, size);
49 #endif
50         if (!base)
51                 pr_err("%s: Couldn't map 0x%llx\n", __func__,
52                        (unsigned long long)paddr);
53
54         return base;
55 }
56
57 static int __init parse_options(struct earlycon_device *device, char *options)
58 {
59         struct uart_port *port = &device->port;
60         int length;
61         unsigned long addr;
62
63         if (uart_parse_earlycon(options, &port->iotype, &addr, &options))
64                 return -EINVAL;
65
66         switch (port->iotype) {
67         case UPIO_MEM32:
68                 port->regshift = 2;     /* fall-through */
69         case UPIO_MEM:
70                 port->mapbase = addr;
71                 break;
72         case UPIO_PORT:
73                 port->iobase = addr;
74                 break;
75         default:
76                 return -EINVAL;
77         }
78
79         if (options) {
80                 device->baud = simple_strtoul(options, NULL, 0);
81                 length = min(strcspn(options, " ") + 1,
82                              (size_t)(sizeof(device->options)));
83                 strlcpy(device->options, options, length);
84         }
85
86         if (port->iotype == UPIO_MEM || port->iotype == UPIO_MEM32)
87                 pr_info("Early serial console at MMIO%s 0x%llx (options '%s')\n",
88                         (port->iotype == UPIO_MEM32) ? "32" : "",
89                         (unsigned long long)port->mapbase,
90                         device->options);
91         else
92                 pr_info("Early serial console at I/O port 0x%lx (options '%s')\n",
93                         port->iobase,
94                         device->options);
95
96         return 0;
97 }
98
99 int __init setup_earlycon(char *buf, const char *match,
100                           int (*setup)(struct earlycon_device *, const char *))
101 {
102         int err;
103         size_t len;
104         struct uart_port *port = &early_console_dev.port;
105
106         if (!buf || !match || !setup)
107                 return 0;
108
109         len = strlen(match);
110         if (strncmp(buf, match, len))
111                 return 0;
112
113         if (buf[len]) {
114                 if (buf[len] != ',')
115                         return 0;
116                 buf += len + 1;
117         } else
118                 buf = NULL;
119
120         /* On parsing error, pass the options buf to the setup function */
121         if (buf && !parse_options(&early_console_dev, buf))
122                 buf = NULL;
123
124         port->uartclk = BASE_BAUD * 16;
125         if (port->mapbase)
126                 port->membase = earlycon_map(port->mapbase, 64);
127
128         early_console_dev.con->data = &early_console_dev;
129         err = setup(&early_console_dev, buf);
130         if (err < 0)
131                 return err;
132         if (!early_console_dev.con->write)
133                 return -ENODEV;
134
135         register_console(early_console_dev.con);
136         return 0;
137 }
138
139 int __init of_setup_earlycon(unsigned long addr,
140                              int (*setup)(struct earlycon_device *, const char *))
141 {
142         int err;
143         struct uart_port *port = &early_console_dev.port;
144
145         port->iotype = UPIO_MEM;
146         port->mapbase = addr;
147         port->uartclk = BASE_BAUD * 16;
148         port->membase = earlycon_map(addr, SZ_4K);
149
150         early_console_dev.con->data = &early_console_dev;
151         err = setup(&early_console_dev, NULL);
152         if (err < 0)
153                 return err;
154         if (!early_console_dev.con->write)
155                 return -ENODEV;
156
157
158         register_console(early_console_dev.con);
159         return 0;
160 }