earlycon.c 7.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * Copyright (C) 2014 Linaro Ltd.
 * Author: Rob Herring <robh@kernel.org>
 *
 * Based on 8250 earlycon:
 * (c) Copyright 2004 Hewlett-Packard Development Company, L.P.
 *	Bjorn Helgaas <bjorn.helgaas@hp.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
13 14 15

#define pr_fmt(fmt)	KBUILD_MODNAME ": " fmt

16 17 18 19 20
#include <linux/console.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/serial_core.h>
R
Rob Herring 已提交
21
#include <linux/sizes.h>
22
#include <linux/of.h>
23
#include <linux/of_fdt.h>
24 25 26 27 28 29 30 31

#ifdef CONFIG_FIX_EARLYCON_MEM
#include <asm/fixmap.h>
#endif

#include <asm/serial.h>

static struct console early_con = {
32
	.name =		"uart",		/* fixed up at earlycon registration */
33
	.flags =	CON_PRINTBUFFER | CON_BOOT,
34
	.index =	0,
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
};

static struct earlycon_device early_console_dev = {
	.con = &early_con,
};

static void __iomem * __init earlycon_map(unsigned long paddr, size_t size)
{
	void __iomem *base;
#ifdef CONFIG_FIX_EARLYCON_MEM
	set_fixmap_io(FIX_EARLYCON_MEM_BASE, paddr & PAGE_MASK);
	base = (void __iomem *)__fix_to_virt(FIX_EARLYCON_MEM_BASE);
	base += paddr & ~PAGE_MASK;
#else
	base = ioremap(paddr, size);
#endif
	if (!base)
		pr_err("%s: Couldn't map 0x%llx\n", __func__,
		       (unsigned long long)paddr);

	return base;
}

58 59 60 61
static void __init earlycon_init(struct earlycon_device *device,
				 const char *name)
{
	struct console *earlycon = device->con;
62
	struct uart_port *port = &device->port;
63 64 65 66 67 68 69 70 71 72 73 74 75
	const char *s;
	size_t len;

	/* scan backwards from end of string for first non-numeral */
	for (s = name + strlen(name);
	     s > name && s[-1] >= '0' && s[-1] <= '9';
	     s--)
		;
	if (*s)
		earlycon->index = simple_strtoul(s, NULL, 10);
	len = s - name;
	strlcpy(earlycon->name, name, min(len + 1, sizeof(earlycon->name)));
	earlycon->data = &early_console_dev;
76 77 78

	if (port->iotype == UPIO_MEM || port->iotype == UPIO_MEM16 ||
	    port->iotype == UPIO_MEM32 || port->iotype == UPIO_MEM32BE)
79 80
		pr_info("%s%d at MMIO%s %pa (options '%s')\n",
			earlycon->name, earlycon->index,
81 82 83
			(port->iotype == UPIO_MEM) ? "" :
			(port->iotype == UPIO_MEM16) ? "16" :
			(port->iotype == UPIO_MEM32) ? "32" : "32be",
84
			&port->mapbase, device->options);
85
	else
86 87 88
		pr_info("%s%d at I/O port 0x%lx (options '%s')\n",
			earlycon->name, earlycon->index,
			port->iobase, device->options);
89 90
}

91
static int __init parse_options(struct earlycon_device *device, char *options)
92 93
{
	struct uart_port *port = &device->port;
94
	int length;
95 96
	unsigned long addr;

97 98
	if (uart_parse_earlycon(options, &port->iotype, &addr, &options))
		return -EINVAL;
99

100
	switch (port->iotype) {
101 102 103 104 105 106 107
	case UPIO_MEM:
		port->mapbase = addr;
		break;
	case UPIO_MEM16:
		port->regshift = 1;
		port->mapbase = addr;
		break;
108
	case UPIO_MEM32:
109
	case UPIO_MEM32BE:
110
		port->regshift = 2;
111
		port->mapbase = addr;
112 113
		break;
	case UPIO_PORT:
114
		port->iobase = addr;
115 116
		break;
	default:
117 118 119 120
		return -EINVAL;
	}

	if (options) {
121
		device->baud = simple_strtoul(options, NULL, 0);
122 123 124 125 126 127 128 129
		length = min(strcspn(options, " ") + 1,
			     (size_t)(sizeof(device->options)));
		strlcpy(device->options, options, length);
	}

	return 0;
}

130
static int __init register_earlycon(char *buf, const struct earlycon_id *match)
131 132 133 134 135
{
	int err;
	struct uart_port *port = &early_console_dev.port;

	/* On parsing error, pass the options buf to the setup function */
136
	if (buf && !parse_options(&early_console_dev, buf))
137 138
		buf = NULL;

139
	spin_lock_init(&port->lock);
140
	port->uartclk = BASE_BAUD * 16;
141 142 143
	if (port->mapbase)
		port->membase = earlycon_map(port->mapbase, 64);

144
	earlycon_init(&early_console_dev, match->name);
145
	err = match->setup(&early_console_dev, buf);
146 147 148 149 150 151 152 153
	if (err < 0)
		return err;
	if (!early_console_dev.con->write)
		return -ENODEV;

	register_console(early_console_dev.con);
	return 0;
}
R
Rob Herring 已提交
154

155 156 157 158 159 160
/**
 *	setup_earlycon - match and register earlycon console
 *	@buf:	earlycon param string
 *
 *	Registers the earlycon console matching the earlycon specified
 *	in the param string @buf. Acceptable param strings are of the form
161
 *	   <name>,io|mmio|mmio32|mmio32be,<addr>,<options>
162 163 164 165 166 167 168 169 170 171 172 173
 *	   <name>,0x<addr>,<options>
 *	   <name>,<options>
 *	   <name>
 *
 *	Only for the third form does the earlycon setup() method receive the
 *	<options> string in the 'options' parameter; all other forms set
 *	the parameter to NULL.
 *
 *	Returns 0 if an attempt to register the earlycon was made,
 *	otherwise negative error code
 */
int __init setup_earlycon(char *buf)
174
{
175
	const struct earlycon_id *match;
176

177 178
	if (!buf || !buf[0])
		return -EINVAL;
179

180 181
	if (early_con.flags & CON_ENABLED)
		return -EALREADY;
182

183
	for (match = __earlycon_table; match < __earlycon_table_end; match++) {
184
		size_t len = strlen(match->name);
185

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
		if (strncmp(buf, match->name, len))
			continue;

		if (buf[len]) {
			if (buf[len] != ',')
				continue;
			buf += len + 1;
		} else
			buf = NULL;

		return register_earlycon(buf, match);
	}

	return -ENOENT;
}

/* early_param wrapper for setup_earlycon() */
static int __init param_setup_earlycon(char *buf)
{
	int err;

	/*
	 * Just 'earlycon' is a valid param for devicetree earlycons;
	 * don't generate a warning from parse_early_params() in that case
	 */
	if (!buf || !buf[0])
		return 0;

	err = setup_earlycon(buf);
P
Peter Hurley 已提交
215 216
	if (err == -ENOENT || err == -EALREADY)
		return 0;
217
	return err;
218
}
219
early_param("earlycon", param_setup_earlycon);
220

221 222
#ifdef CONFIG_OF_EARLY_FLATTREE

223
int __init of_setup_earlycon(const struct earlycon_id *match,
224
			     unsigned long node,
225
			     const char *options)
R
Rob Herring 已提交
226 227 228
{
	int err;
	struct uart_port *port = &early_console_dev.port;
229 230
	const __be32 *val;
	bool big_endian;
231
	u64 addr;
R
Rob Herring 已提交
232

233
	spin_lock_init(&port->lock);
R
Rob Herring 已提交
234
	port->iotype = UPIO_MEM;
235 236 237 238 239
	addr = of_flat_dt_translate_address(node);
	if (addr == OF_BAD_ADDR) {
		pr_warn("[%s] bad address\n", match->name);
		return -ENXIO;
	}
R
Rob Herring 已提交
240 241
	port->mapbase = addr;
	port->uartclk = BASE_BAUD * 16;
242
	port->membase = earlycon_map(port->mapbase, SZ_4K);
R
Rob Herring 已提交
243

244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
	val = of_get_flat_dt_prop(node, "reg-offset", NULL);
	if (val)
		port->mapbase += be32_to_cpu(*val);
	val = of_get_flat_dt_prop(node, "reg-shift", NULL);
	if (val)
		port->regshift = be32_to_cpu(*val);
	big_endian = of_get_flat_dt_prop(node, "big-endian", NULL) != NULL ||
		(IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) &&
		 of_get_flat_dt_prop(node, "native-endian", NULL) != NULL);
	val = of_get_flat_dt_prop(node, "reg-io-width", NULL);
	if (val) {
		switch (be32_to_cpu(*val)) {
		case 1:
			port->iotype = UPIO_MEM;
			break;
		case 2:
			port->iotype = UPIO_MEM16;
			break;
		case 4:
			port->iotype = (big_endian) ? UPIO_MEM32BE : UPIO_MEM32;
			break;
		default:
			pr_warn("[%s] unsupported reg-io-width\n", match->name);
			return -EINVAL;
		}
	}

271 272 273 274
	if (options) {
		strlcpy(early_console_dev.options, options,
			sizeof(early_console_dev.options));
	}
275
	earlycon_init(&early_console_dev, match->name);
276
	err = match->setup(&early_console_dev, options);
R
Rob Herring 已提交
277 278 279 280 281 282 283 284 285
	if (err < 0)
		return err;
	if (!early_console_dev.con->write)
		return -ENODEV;


	register_console(early_console_dev.con);
	return 0;
}
286 287

#endif /* CONFIG_OF_EARLY_FLATTREE */