earlycon.c 7.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9
/*
 * 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>
 */
10 11 12

#define pr_fmt(fmt)	KBUILD_MODNAME ": " fmt

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

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

#include <asm/serial.h>

static struct console early_con = {
30
	.name =		"uart",		/* fixed up at earlycon registration */
31
	.flags =	CON_PRINTBUFFER | CON_BOOT,
32
	.index =	0,
33 34 35 36 37 38
};

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

39
static void __iomem * __init earlycon_map(resource_size_t paddr, size_t size)
40 41 42 43 44 45 46 47 48 49
{
	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)
50
		pr_err("%s: Couldn't map %pa\n", __func__, &paddr);
51 52 53 54

	return base;
}

55 56 57 58
static void __init earlycon_init(struct earlycon_device *device,
				 const char *name)
{
	struct console *earlycon = device->con;
59
	struct uart_port *port = &device->port;
60 61 62 63 64 65 66 67 68 69 70 71 72
	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;
73 74 75

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

88
static int __init parse_options(struct earlycon_device *device, char *options)
89 90
{
	struct uart_port *port = &device->port;
91
	int length;
92
	resource_size_t addr;
93

94 95
	if (uart_parse_earlycon(options, &port->iotype, &addr, &options))
		return -EINVAL;
96

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

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

	return 0;
}

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

	/* On parsing error, pass the options buf to the setup function */
133
	if (buf && !parse_options(&early_console_dev, buf))
134 135
		buf = NULL;

136
	spin_lock_init(&port->lock);
137
	port->uartclk = BASE_BAUD * 16;
138 139 140
	if (port->mapbase)
		port->membase = earlycon_map(port->mapbase, 64);

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

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

152 153 154 155 156 157
/**
 *	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
158
 *	   <name>,io|mmio|mmio32|mmio32be,<addr>,<options>
159 160 161 162 163 164 165 166 167 168 169 170
 *	   <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)
171
{
172
	const struct earlycon_id **p_match;
173

174 175
	if (!buf || !buf[0])
		return -EINVAL;
176

177 178
	if (early_con.flags & CON_ENABLED)
		return -EALREADY;
179

180 181 182
	for (p_match = __earlycon_table; p_match < __earlycon_table_end;
	     p_match++) {
		const struct earlycon_id *match = *p_match;
183
		size_t len = strlen(match->name);
184

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
		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;
}

201
/*
202 203
 * This defers the initialization of the early console until after ACPI has
 * been initialized.
204
 */
205
bool earlycon_acpi_spcr_enable __initdata;
206

207 208 209 210 211
/* early_param wrapper for setup_earlycon() */
static int __init param_setup_earlycon(char *buf)
{
	int err;

212
	/* Just 'earlycon' is a valid param for devicetree and ACPI SPCR. */
213 214
	if (!buf || !buf[0]) {
		if (IS_ENABLED(CONFIG_ACPI_SPCR_TABLE)) {
215
			earlycon_acpi_spcr_enable = true;
216
			return 0;
217
		} else if (!buf) {
218 219 220
			return early_init_dt_scan_chosen_stdout();
		}
	}
221 222

	err = setup_earlycon(buf);
P
Peter Hurley 已提交
223 224
	if (err == -ENOENT || err == -EALREADY)
		return 0;
225
	return err;
226
}
227
early_param("earlycon", param_setup_earlycon);
228

229 230
#ifdef CONFIG_OF_EARLY_FLATTREE

231
int __init of_setup_earlycon(const struct earlycon_id *match,
232
			     unsigned long node,
233
			     const char *options)
R
Rob Herring 已提交
234 235 236
{
	int err;
	struct uart_port *port = &early_console_dev.port;
237 238
	const __be32 *val;
	bool big_endian;
239
	u64 addr;
R
Rob Herring 已提交
240

241
	spin_lock_init(&port->lock);
R
Rob Herring 已提交
242
	port->iotype = UPIO_MEM;
243 244 245 246 247
	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 已提交
248 249 250
	port->mapbase = addr;
	port->uartclk = BASE_BAUD * 16;

251 252 253
	val = of_get_flat_dt_prop(node, "reg-offset", NULL);
	if (val)
		port->mapbase += be32_to_cpu(*val);
254 255
	port->membase = earlycon_map(port->mapbase, SZ_4K);

256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
	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;
		}
	}

280 281 282 283
	val = of_get_flat_dt_prop(node, "current-speed", NULL);
	if (val)
		early_console_dev.baud = be32_to_cpu(*val);

284
	if (options) {
285
		early_console_dev.baud = simple_strtoul(options, NULL, 0);
286 287 288
		strlcpy(early_console_dev.options, options,
			sizeof(early_console_dev.options));
	}
289
	earlycon_init(&early_console_dev, match->name);
290
	err = match->setup(&early_console_dev, options);
R
Rob Herring 已提交
291 292 293 294 295 296 297 298 299
	if (err < 0)
		return err;
	if (!early_console_dev.con->write)
		return -ENODEV;


	register_console(early_console_dev.con);
	return 0;
}
300 301

#endif /* CONFIG_OF_EARLY_FLATTREE */