blob: f09636083426d5fc2fdb18a65a2a1af49a0093b7 [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 */
Peter Hurley470ca0d2015-03-09 16:27:21 -040013
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Rob Herring9aac5882014-04-18 17:19:55 -050016#include <linux/console.h>
17#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/io.h>
20#include <linux/serial_core.h>
Rob Herringb0b6abd2014-03-27 08:06:16 -050021#include <linux/sizes.h>
22#include <linux/mod_devicetable.h>
Rob Herring9aac5882014-04-18 17:19:55 -050023
24#ifdef CONFIG_FIX_EARLYCON_MEM
25#include <asm/fixmap.h>
26#endif
27
28#include <asm/serial.h>
29
30static struct console early_con = {
Rob Herring60efcf02014-06-12 12:52:44 -050031 .name = "uart", /* 8250 console switch requires this name */
Rob Herring9aac5882014-04-18 17:19:55 -050032 .flags = CON_PRINTBUFFER | CON_BOOT,
33 .index = -1,
34};
35
36static struct earlycon_device early_console_dev = {
37 .con = &early_con,
38};
39
Peter Hurley470ca0d2015-03-09 16:27:21 -040040extern struct earlycon_id __earlycon_table[];
41static const struct earlycon_id __earlycon_table_sentinel
42 __used __section(__earlycon_table_end);
43
Rob Herringb0b6abd2014-03-27 08:06:16 -050044static const struct of_device_id __earlycon_of_table_sentinel
45 __used __section(__earlycon_of_table_end);
46
Rob Herring9aac5882014-04-18 17:19:55 -050047static void __iomem * __init earlycon_map(unsigned long paddr, size_t size)
48{
49 void __iomem *base;
50#ifdef CONFIG_FIX_EARLYCON_MEM
51 set_fixmap_io(FIX_EARLYCON_MEM_BASE, paddr & PAGE_MASK);
52 base = (void __iomem *)__fix_to_virt(FIX_EARLYCON_MEM_BASE);
53 base += paddr & ~PAGE_MASK;
54#else
55 base = ioremap(paddr, size);
56#endif
57 if (!base)
58 pr_err("%s: Couldn't map 0x%llx\n", __func__,
59 (unsigned long long)paddr);
60
61 return base;
62}
63
Peter Hurley73abaf82015-03-01 11:05:46 -050064static int __init parse_options(struct earlycon_device *device, char *options)
Rob Herring9aac5882014-04-18 17:19:55 -050065{
66 struct uart_port *port = &device->port;
Peter Hurley73abaf82015-03-01 11:05:46 -050067 int length;
Rob Herring9aac5882014-04-18 17:19:55 -050068 unsigned long addr;
69
Peter Hurley73abaf82015-03-01 11:05:46 -050070 if (uart_parse_earlycon(options, &port->iotype, &addr, &options))
71 return -EINVAL;
Rob Herring9aac5882014-04-18 17:19:55 -050072
Peter Hurley73abaf82015-03-01 11:05:46 -050073 switch (port->iotype) {
74 case UPIO_MEM32:
Noam Camus6e63be32015-05-25 06:54:28 +030075 case UPIO_MEM32BE:
Peter Hurley73abaf82015-03-01 11:05:46 -050076 port->regshift = 2; /* fall-through */
77 case UPIO_MEM:
Rob Herring9aac5882014-04-18 17:19:55 -050078 port->mapbase = addr;
Peter Hurley73abaf82015-03-01 11:05:46 -050079 break;
80 case UPIO_PORT:
Rob Herring9aac5882014-04-18 17:19:55 -050081 port->iobase = addr;
Peter Hurley73abaf82015-03-01 11:05:46 -050082 break;
83 default:
Rob Herring9aac5882014-04-18 17:19:55 -050084 return -EINVAL;
85 }
86
Rob Herring9aac5882014-04-18 17:19:55 -050087 if (options) {
Rob Herringe26f1db2014-04-30 19:48:29 -050088 device->baud = simple_strtoul(options, NULL, 0);
Rob Herring9aac5882014-04-18 17:19:55 -050089 length = min(strcspn(options, " ") + 1,
90 (size_t)(sizeof(device->options)));
91 strlcpy(device->options, options, length);
92 }
93
Noam Camus6e63be32015-05-25 06:54:28 +030094 if (port->iotype == UPIO_MEM || port->iotype == UPIO_MEM32 ||
95 port->iotype == UPIO_MEM32BE)
Rob Herring9aac5882014-04-18 17:19:55 -050096 pr_info("Early serial console at MMIO%s 0x%llx (options '%s')\n",
Noam Camus6e63be32015-05-25 06:54:28 +030097 (port->iotype == UPIO_MEM) ? "" :
98 (port->iotype == UPIO_MEM32) ? "32" : "32be",
Rob Herring9aac5882014-04-18 17:19:55 -050099 (unsigned long long)port->mapbase,
100 device->options);
101 else
102 pr_info("Early serial console at I/O port 0x%lx (options '%s')\n",
103 port->iobase,
104 device->options);
105
106 return 0;
107}
108
Peter Hurley470ca0d2015-03-09 16:27:21 -0400109static int __init register_earlycon(char *buf, const struct earlycon_id *match)
Rob Herring9aac5882014-04-18 17:19:55 -0500110{
111 int err;
Rob Herring9aac5882014-04-18 17:19:55 -0500112 struct uart_port *port = &early_console_dev.port;
113
Rob Herring9aac5882014-04-18 17:19:55 -0500114 /* On parsing error, pass the options buf to the setup function */
Peter Hurley60846882015-03-09 16:27:19 -0400115 if (buf && !parse_options(&early_console_dev, buf))
Rob Herring9aac5882014-04-18 17:19:55 -0500116 buf = NULL;
117
Peter Hurleyfeed5ba2015-03-09 16:27:15 -0400118 port->uartclk = BASE_BAUD * 16;
Rob Herring9aac5882014-04-18 17:19:55 -0500119 if (port->mapbase)
120 port->membase = earlycon_map(port->mapbase, 64);
121
122 early_console_dev.con->data = &early_console_dev;
Peter Hurley470ca0d2015-03-09 16:27:21 -0400123 err = match->setup(&early_console_dev, buf);
Rob Herring9aac5882014-04-18 17:19:55 -0500124 if (err < 0)
125 return err;
126 if (!early_console_dev.con->write)
127 return -ENODEV;
128
129 register_console(early_console_dev.con);
130 return 0;
131}
Rob Herringb0b6abd2014-03-27 08:06:16 -0500132
Peter Hurley470ca0d2015-03-09 16:27:21 -0400133/**
134 * setup_earlycon - match and register earlycon console
135 * @buf: earlycon param string
136 *
137 * Registers the earlycon console matching the earlycon specified
138 * in the param string @buf. Acceptable param strings are of the form
Noam Camus6e63be32015-05-25 06:54:28 +0300139 * <name>,io|mmio|mmio32|mmio32be,<addr>,<options>
Peter Hurley470ca0d2015-03-09 16:27:21 -0400140 * <name>,0x<addr>,<options>
141 * <name>,<options>
142 * <name>
143 *
144 * Only for the third form does the earlycon setup() method receive the
145 * <options> string in the 'options' parameter; all other forms set
146 * the parameter to NULL.
147 *
148 * Returns 0 if an attempt to register the earlycon was made,
149 * otherwise negative error code
150 */
151int __init setup_earlycon(char *buf)
Peter Hurley7c53cb32015-03-09 16:27:20 -0400152{
Peter Hurley470ca0d2015-03-09 16:27:21 -0400153 const struct earlycon_id *match;
Peter Hurley7c53cb32015-03-09 16:27:20 -0400154
Peter Hurley470ca0d2015-03-09 16:27:21 -0400155 if (!buf || !buf[0])
156 return -EINVAL;
Peter Hurley7c53cb32015-03-09 16:27:20 -0400157
Peter Hurley470ca0d2015-03-09 16:27:21 -0400158 if (early_con.flags & CON_ENABLED)
159 return -EALREADY;
Peter Hurley7c53cb32015-03-09 16:27:20 -0400160
Peter Hurley470ca0d2015-03-09 16:27:21 -0400161 for (match = __earlycon_table; match->name[0]; match++) {
162 size_t len = strlen(match->name);
Peter Hurley7c53cb32015-03-09 16:27:20 -0400163
Peter Hurley470ca0d2015-03-09 16:27:21 -0400164 if (strncmp(buf, match->name, len))
165 continue;
166
167 if (buf[len]) {
168 if (buf[len] != ',')
169 continue;
170 buf += len + 1;
171 } else
172 buf = NULL;
173
174 return register_earlycon(buf, match);
175 }
176
177 return -ENOENT;
Peter Hurley7c53cb32015-03-09 16:27:20 -0400178}
179
Peter Hurley470ca0d2015-03-09 16:27:21 -0400180/* early_param wrapper for setup_earlycon() */
181static int __init param_setup_earlycon(char *buf)
182{
183 int err;
184
185 /*
186 * Just 'earlycon' is a valid param for devicetree earlycons;
187 * don't generate a warning from parse_early_params() in that case
188 */
189 if (!buf || !buf[0])
190 return 0;
191
192 err = setup_earlycon(buf);
Peter Hurley66c53aa2015-05-07 14:19:21 -0400193 if (err == -ENOENT || err == -EALREADY)
194 return 0;
Peter Hurley470ca0d2015-03-09 16:27:21 -0400195 return err;
196}
197early_param("earlycon", param_setup_earlycon);
198
Rob Herringb0b6abd2014-03-27 08:06:16 -0500199int __init of_setup_earlycon(unsigned long addr,
200 int (*setup)(struct earlycon_device *, const char *))
201{
202 int err;
203 struct uart_port *port = &early_console_dev.port;
204
205 port->iotype = UPIO_MEM;
206 port->mapbase = addr;
207 port->uartclk = BASE_BAUD * 16;
208 port->membase = earlycon_map(addr, SZ_4K);
209
210 early_console_dev.con->data = &early_console_dev;
211 err = setup(&early_console_dev, NULL);
212 if (err < 0)
213 return err;
214 if (!early_console_dev.con->write)
215 return -ENODEV;
216
217
218 register_console(early_console_dev.con);
219 return 0;
220}