blob: 025ea01408968f045a1375b7975c9870db14d7f7 [file] [log] [blame]
Rob Herring9aac5882014-04-18 17:19:55 -05001/*
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>
Rob Herringb0b6abd2014-03-27 08:06:16 -050018#include <linux/sizes.h>
19#include <linux/mod_devicetable.h>
Rob Herring9aac5882014-04-18 17:19:55 -050020
21#ifdef CONFIG_FIX_EARLYCON_MEM
22#include <asm/fixmap.h>
23#endif
24
25#include <asm/serial.h>
26
27static struct console early_con = {
Rob Herring60efcf02014-06-12 12:52:44 -050028 .name = "uart", /* 8250 console switch requires this name */
Rob Herring9aac5882014-04-18 17:19:55 -050029 .flags = CON_PRINTBUFFER | CON_BOOT,
30 .index = -1,
31};
32
33static struct earlycon_device early_console_dev = {
34 .con = &early_con,
35};
36
Rob Herringb0b6abd2014-03-27 08:06:16 -050037static const struct of_device_id __earlycon_of_table_sentinel
38 __used __section(__earlycon_of_table_end);
39
Rob Herring9aac5882014-04-18 17:19:55 -050040static 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
Peter Hurley73abaf82015-03-01 11:05:46 -050057static int __init parse_options(struct earlycon_device *device, char *options)
Rob Herring9aac5882014-04-18 17:19:55 -050058{
59 struct uart_port *port = &device->port;
Peter Hurley73abaf82015-03-01 11:05:46 -050060 int length;
Rob Herring9aac5882014-04-18 17:19:55 -050061 unsigned long addr;
62
Peter Hurley73abaf82015-03-01 11:05:46 -050063 if (uart_parse_earlycon(options, &port->iotype, &addr, &options))
64 return -EINVAL;
Rob Herring9aac5882014-04-18 17:19:55 -050065
Peter Hurley73abaf82015-03-01 11:05:46 -050066 switch (port->iotype) {
67 case UPIO_MEM32:
68 port->regshift = 2; /* fall-through */
69 case UPIO_MEM:
Rob Herring9aac5882014-04-18 17:19:55 -050070 port->mapbase = addr;
Peter Hurley73abaf82015-03-01 11:05:46 -050071 break;
72 case UPIO_PORT:
Rob Herring9aac5882014-04-18 17:19:55 -050073 port->iobase = addr;
Peter Hurley73abaf82015-03-01 11:05:46 -050074 break;
75 default:
Rob Herring9aac5882014-04-18 17:19:55 -050076 return -EINVAL;
77 }
78
Rob Herring9aac5882014-04-18 17:19:55 -050079 if (options) {
Rob Herringe26f1db2014-04-30 19:48:29 -050080 device->baud = simple_strtoul(options, NULL, 0);
Rob Herring9aac5882014-04-18 17:19:55 -050081 length = min(strcspn(options, " ") + 1,
82 (size_t)(sizeof(device->options)));
83 strlcpy(device->options, options, length);
84 }
85
Kumar Galafe655de2014-10-17 04:01:11 -050086 if (port->iotype == UPIO_MEM || port->iotype == UPIO_MEM32)
Rob Herring9aac5882014-04-18 17:19:55 -050087 pr_info("Early serial console at MMIO%s 0x%llx (options '%s')\n",
Peter Hurley73abaf82015-03-01 11:05:46 -050088 (port->iotype == UPIO_MEM32) ? "32" : "",
Rob Herring9aac5882014-04-18 17:19:55 -050089 (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
99int __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;
Rob Herring9aac5882014-04-18 17:19:55 -0500112
Peter Hurley60846882015-03-09 16:27:19 -0400113 if (buf[len]) {
114 if (buf[len] != ',')
115 return 0;
116 buf += len + 1;
117 } else
118 buf = NULL;
Rob Herring9aac5882014-04-18 17:19:55 -0500119
Rob Herring9aac5882014-04-18 17:19:55 -0500120 /* On parsing error, pass the options buf to the setup function */
Peter Hurley60846882015-03-09 16:27:19 -0400121 if (buf && !parse_options(&early_console_dev, buf))
Rob Herring9aac5882014-04-18 17:19:55 -0500122 buf = NULL;
123
Peter Hurleyfeed5ba2015-03-09 16:27:15 -0400124 port->uartclk = BASE_BAUD * 16;
Rob Herring9aac5882014-04-18 17:19:55 -0500125 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}
Rob Herringb0b6abd2014-03-27 08:06:16 -0500138
139int __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}