blob: d3c531d3b2449c174ef095dec5c4f430996b2f18 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Thomas Gleixner250c2272007-10-11 11:17:24 +02002#include <linux/console.h>
3#include <linux/kernel.h>
4#include <linux/init.h>
5#include <linux/string.h>
6#include <linux/screen_info.h>
Yinghai Lu5c059172008-07-24 17:29:40 -07007#include <linux/usb/ch9.h>
8#include <linux/pci_regs.h>
9#include <linux/pci_ids.h>
10#include <linux/errno.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -070011#include <linux/pgtable.h>
Thomas Gleixner250c2272007-10-11 11:17:24 +020012#include <asm/io.h>
13#include <asm/processor.h>
14#include <asm/fcntl.h>
H. Peter Anvin30c82642007-10-15 17:13:22 -070015#include <asm/setup.h>
Thomas Gleixner250c2272007-10-11 11:17:24 +020016#include <xen/hvc-console.h>
Yinghai Lu5c059172008-07-24 17:29:40 -070017#include <asm/pci-direct.h>
Yinghai Lu5c059172008-07-24 17:29:40 -070018#include <asm/fixmap.h>
19#include <linux/usb/ehci_def.h>
Lu Baolu1b5aeeb2017-03-21 16:01:31 +080020#include <linux/usb/xhci-dbgp.h>
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +000021#include <asm/pci_x86.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Thomas Gleixner250c2272007-10-11 11:17:24 +020023/* Simple VGA output */
Thomas Gleixner250c2272007-10-11 11:17:24 +020024#define VGABASE (__ISA_IO_base + 0xb8000)
25
26static int max_ypos = 25, max_xpos = 80;
Paolo Ciarrocchic9cf39a2008-02-29 13:26:56 +010027static int current_ypos = 25, current_xpos;
Thomas Gleixner250c2272007-10-11 11:17:24 +020028
29static void early_vga_write(struct console *con, const char *str, unsigned n)
30{
31 char c;
32 int i, k, j;
33
34 while ((c = *str++) != '\0' && n-- > 0) {
35 if (current_ypos >= max_ypos) {
36 /* scroll 1 line up */
37 for (k = 1, j = 0; k < max_ypos; k++, j++) {
38 for (i = 0; i < max_xpos; i++) {
39 writew(readw(VGABASE+2*(max_xpos*k+i)),
40 VGABASE + 2*(max_xpos*j + i));
41 }
42 }
43 for (i = 0; i < max_xpos; i++)
44 writew(0x720, VGABASE + 2*(max_xpos*j + i));
45 current_ypos = max_ypos-1;
46 }
Jason Wessel61eaf539b2010-05-20 21:04:31 -050047#ifdef CONFIG_KGDB_KDB
48 if (c == '\b') {
49 if (current_xpos > 0)
50 current_xpos--;
51 } else if (c == '\r') {
52 current_xpos = 0;
53 } else
54#endif
Thomas Gleixner250c2272007-10-11 11:17:24 +020055 if (c == '\n') {
56 current_xpos = 0;
57 current_ypos++;
58 } else if (c != '\r') {
59 writew(((0x7 << 8) | (unsigned short) c),
60 VGABASE + 2*(max_xpos*current_ypos +
61 current_xpos++));
62 if (current_xpos >= max_xpos) {
63 current_xpos = 0;
64 current_ypos++;
65 }
66 }
67 }
68}
69
70static struct console early_vga_console = {
71 .name = "earlyvga",
72 .write = early_vga_write,
73 .flags = CON_PRINTBUFFER,
74 .index = -1,
75};
76
77/* Serial functions loosely based on a similar package from Klaus P. Gerlicher */
78
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +000079static unsigned long early_serial_base = 0x3f8; /* ttyS0 */
Thomas Gleixner250c2272007-10-11 11:17:24 +020080
81#define XMTRDY 0x20
82
83#define DLAB 0x80
84
85#define TXR 0 /* Transmit register (WRITE) */
86#define RXR 0 /* Receive register (READ) */
87#define IER 1 /* Interrupt Enable */
88#define IIR 2 /* Interrupt ID */
89#define FCR 2 /* FIFO control */
90#define LCR 3 /* Line control */
91#define MCR 4 /* Modem control */
92#define LSR 5 /* Line Status */
93#define MSR 6 /* Modem Status */
94#define DLL 0 /* Divisor Latch Low */
95#define DLH 1 /* Divisor latch High */
96
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +000097static unsigned int io_serial_in(unsigned long addr, int offset)
98{
99 return inb(addr + offset);
100}
101
102static void io_serial_out(unsigned long addr, int offset, int value)
103{
104 outb(value, addr + offset);
105}
106
107static unsigned int (*serial_in)(unsigned long addr, int offset) = io_serial_in;
108static void (*serial_out)(unsigned long addr, int offset, int value) = io_serial_out;
109
Thomas Gleixner250c2272007-10-11 11:17:24 +0200110static int early_serial_putc(unsigned char ch)
111{
112 unsigned timeout = 0xffff;
Yinghai Lu5c059172008-07-24 17:29:40 -0700113
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000114 while ((serial_in(early_serial_base, LSR) & XMTRDY) == 0 && --timeout)
Thomas Gleixner250c2272007-10-11 11:17:24 +0200115 cpu_relax();
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000116 serial_out(early_serial_base, TXR, ch);
Thomas Gleixner250c2272007-10-11 11:17:24 +0200117 return timeout ? 0 : -1;
118}
119
120static void early_serial_write(struct console *con, const char *s, unsigned n)
121{
122 while (*s && n-- > 0) {
123 if (*s == '\n')
124 early_serial_putc('\r');
125 early_serial_putc(*s);
126 s++;
127 }
128}
129
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000130static __init void early_serial_hw_init(unsigned divisor)
131{
132 unsigned char c;
133
134 serial_out(early_serial_base, LCR, 0x3); /* 8n1 */
135 serial_out(early_serial_base, IER, 0); /* no interrupt */
136 serial_out(early_serial_base, FCR, 0); /* no fifo */
137 serial_out(early_serial_base, MCR, 0x3); /* DTR + RTS */
138
139 c = serial_in(early_serial_base, LCR);
140 serial_out(early_serial_base, LCR, c | DLAB);
141 serial_out(early_serial_base, DLL, divisor & 0xff);
142 serial_out(early_serial_base, DLH, (divisor >> 8) & 0xff);
143 serial_out(early_serial_base, LCR, c & ~DLAB);
144}
145
Thomas Gleixner250c2272007-10-11 11:17:24 +0200146#define DEFAULT_BAUD 9600
147
148static __init void early_serial_init(char *s)
149{
Thomas Gleixner250c2272007-10-11 11:17:24 +0200150 unsigned divisor;
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000151 unsigned long baud = DEFAULT_BAUD;
Thomas Gleixner250c2272007-10-11 11:17:24 +0200152 char *e;
153
154 if (*s == ',')
155 ++s;
156
157 if (*s) {
158 unsigned port;
Paolo Ciarrocchie941f272008-02-29 13:25:30 +0100159 if (!strncmp(s, "0x", 2)) {
Thomas Gleixner250c2272007-10-11 11:17:24 +0200160 early_serial_base = simple_strtoul(s, &e, 16);
161 } else {
Jan Beulich30cec972008-08-29 12:49:55 +0100162 static const int __initconst bases[] = { 0x3f8, 0x2f8 };
Thomas Gleixner250c2272007-10-11 11:17:24 +0200163
Paolo Ciarrocchie941f272008-02-29 13:25:30 +0100164 if (!strncmp(s, "ttyS", 4))
Thomas Gleixner250c2272007-10-11 11:17:24 +0200165 s += 4;
166 port = simple_strtoul(s, &e, 10);
167 if (port > 1 || s == e)
168 port = 0;
169 early_serial_base = bases[port];
170 }
171 s += strcspn(s, ",");
172 if (*s == ',')
173 s++;
174 }
175
Thomas Gleixner250c2272007-10-11 11:17:24 +0200176 if (*s) {
Steven Rostedt827a82f2015-07-06 10:14:34 -0400177 baud = simple_strtoull(s, &e, 0);
178
179 if (baud == 0 || s == e)
Thomas Gleixner250c2272007-10-11 11:17:24 +0200180 baud = DEFAULT_BAUD;
181 }
182
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000183 /* Convert from baud to divisor value */
Thomas Gleixner250c2272007-10-11 11:17:24 +0200184 divisor = 115200 / baud;
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000185
186 /* These will always be IO based ports */
187 serial_in = io_serial_in;
188 serial_out = io_serial_out;
189
190 /* Set up the HW */
191 early_serial_hw_init(divisor);
Thomas Gleixner250c2272007-10-11 11:17:24 +0200192}
193
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000194#ifdef CONFIG_PCI
Mark Einon7f99f8b2015-04-01 22:32:04 +0100195static void mem32_serial_out(unsigned long addr, int offset, int value)
196{
Andy Shevchenko3435dd02015-10-12 13:47:17 +0300197 u32 __iomem *vaddr = (u32 __iomem *)addr;
Mark Einon7f99f8b2015-04-01 22:32:04 +0100198 /* shift implied by pointer type */
199 writel(value, vaddr + offset);
200}
201
202static unsigned int mem32_serial_in(unsigned long addr, int offset)
203{
Andy Shevchenko3435dd02015-10-12 13:47:17 +0300204 u32 __iomem *vaddr = (u32 __iomem *)addr;
Mark Einon7f99f8b2015-04-01 22:32:04 +0100205 /* shift implied by pointer type */
206 return readl(vaddr + offset);
207}
208
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000209/*
210 * early_pci_serial_init()
211 *
212 * This function is invoked when the early_printk param starts with "pciserial"
Feng Tangd2266bb2018-10-03 00:49:21 +0800213 * The rest of the param should be "[force],B:D.F,baud", where B, D & F describe
214 * the location of a PCI device that must be a UART device. "force" is optional
215 * and overrides the use of an UART device with a wrong PCI class code.
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000216 */
217static __init void early_pci_serial_init(char *s)
218{
219 unsigned divisor;
220 unsigned long baud = DEFAULT_BAUD;
221 u8 bus, slot, func;
Mark Einon7f99f8b2015-04-01 22:32:04 +0100222 u32 classcode, bar0;
223 u16 cmdreg;
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000224 char *e;
Feng Tangd2266bb2018-10-03 00:49:21 +0800225 int force = 0;
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000226
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000227 if (*s == ',')
228 ++s;
229
230 if (*s == 0)
231 return;
232
Feng Tangd2266bb2018-10-03 00:49:21 +0800233 /* Force the use of an UART device with wrong class code */
234 if (!strncmp(s, "force,", 6)) {
235 force = 1;
236 s += 6;
237 }
238
239 /*
240 * Part the param to get the BDF values
241 */
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000242 bus = (u8)simple_strtoul(s, &e, 16);
243 s = e;
244 if (*s != ':')
245 return;
246 ++s;
247 slot = (u8)simple_strtoul(s, &e, 16);
248 s = e;
249 if (*s != '.')
250 return;
251 ++s;
252 func = (u8)simple_strtoul(s, &e, 16);
253 s = e;
254
255 /* A baud might be following */
256 if (*s == ',')
257 s++;
258
259 /*
Feng Tangd2266bb2018-10-03 00:49:21 +0800260 * Find the device from the BDF
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000261 */
262 cmdreg = read_pci_config(bus, slot, func, PCI_COMMAND);
263 classcode = read_pci_config(bus, slot, func, PCI_CLASS_REVISION);
264 bar0 = read_pci_config(bus, slot, func, PCI_BASE_ADDRESS_0);
265
266 /*
267 * Verify it is a UART type device
268 */
269 if (((classcode >> 16 != PCI_CLASS_COMMUNICATION_MODEM) &&
270 (classcode >> 16 != PCI_CLASS_COMMUNICATION_SERIAL)) ||
Feng Tangd2266bb2018-10-03 00:49:21 +0800271 (((classcode >> 8) & 0xff) != 0x02)) /* 16550 I/F at BAR0 */ {
272 if (!force)
273 return;
274 }
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000275
276 /*
277 * Determine if it is IO or memory mapped
278 */
279 if (bar0 & 0x01) {
280 /* it is IO mapped */
281 serial_in = io_serial_in;
282 serial_out = io_serial_out;
283 early_serial_base = bar0&0xfffffffc;
284 write_pci_config(bus, slot, func, PCI_COMMAND,
285 cmdreg|PCI_COMMAND_IO);
286 } else {
287 /* It is memory mapped - assume 32-bit alignment */
288 serial_in = mem32_serial_in;
289 serial_out = mem32_serial_out;
290 /* WARNING! assuming the address is always in the first 4G */
291 early_serial_base =
292 (unsigned long)early_ioremap(bar0 & 0xfffffff0, 0x10);
293 write_pci_config(bus, slot, func, PCI_COMMAND,
294 cmdreg|PCI_COMMAND_MEMORY);
295 }
296
297 /*
Feng Tangd2266bb2018-10-03 00:49:21 +0800298 * Initialize the hardware
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000299 */
300 if (*s) {
301 if (strcmp(s, "nocfg") == 0)
302 /* Sometimes, we want to leave the UART alone
303 * and assume the BIOS has set it up correctly.
304 * "nocfg" tells us this is the case, and we
305 * should do no more setup.
306 */
307 return;
308 if (kstrtoul(s, 0, &baud) < 0 || baud == 0)
309 baud = DEFAULT_BAUD;
310 }
311
312 /* Convert from baud to divisor value */
313 divisor = 115200 / baud;
314
315 /* Set up the HW */
316 early_serial_hw_init(divisor);
317}
318#endif
319
Thomas Gleixner250c2272007-10-11 11:17:24 +0200320static struct console early_serial_console = {
321 .name = "earlyser",
322 .write = early_serial_write,
323 .flags = CON_PRINTBUFFER,
324 .index = -1,
325};
326
Denys Vlasenkoc368ef22015-09-28 14:23:56 +0200327static void early_console_register(struct console *con, int keep_early)
Jason Wesselc9530942009-08-20 15:39:52 -0500328{
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700329 if (con->index != -1) {
Jason Wessel429a6e52009-09-23 18:13:13 -0500330 printk(KERN_CRIT "ERROR: earlyprintk= %s already used\n",
331 con->name);
332 return;
333 }
Jason Wesselc9530942009-08-20 15:39:52 -0500334 early_console = con;
335 if (keep_early)
336 early_console->flags &= ~CON_BOOT;
337 else
338 early_console->flags |= CON_BOOT;
339 register_console(early_console);
340}
Thomas Gleixner250c2272007-10-11 11:17:24 +0200341
342static int __init setup_early_printk(char *buf)
343{
Jason Wesselc9530942009-08-20 15:39:52 -0500344 int keep;
Yinghai Lu5c059172008-07-24 17:29:40 -0700345
Thomas Gleixner250c2272007-10-11 11:17:24 +0200346 if (!buf)
347 return 0;
348
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700349 if (early_console)
Thomas Gleixner250c2272007-10-11 11:17:24 +0200350 return 0;
Thomas Gleixner250c2272007-10-11 11:17:24 +0200351
Jason Wesselc9530942009-08-20 15:39:52 -0500352 keep = (strstr(buf, "keep") != NULL);
Thomas Gleixner250c2272007-10-11 11:17:24 +0200353
Jason Wesselc9530942009-08-20 15:39:52 -0500354 while (*buf != '\0') {
355 if (!strncmp(buf, "serial", 6)) {
Jason Wesselea3acb12009-09-24 09:08:30 -0500356 buf += 6;
357 early_serial_init(buf);
Jason Wesselc9530942009-08-20 15:39:52 -0500358 early_console_register(&early_serial_console, keep);
Jason Wesselea3acb12009-09-24 09:08:30 -0500359 if (!strncmp(buf, ",ttyS", 5))
360 buf += 5;
Jason Wesselc9530942009-08-20 15:39:52 -0500361 }
362 if (!strncmp(buf, "ttyS", 4)) {
363 early_serial_init(buf + 4);
364 early_console_register(&early_serial_console, keep);
365 }
Stuart R. Andersonea9e9d82015-01-20 12:07:57 +0000366#ifdef CONFIG_PCI
367 if (!strncmp(buf, "pciserial", 9)) {
368 early_pci_serial_init(buf + 9);
369 early_console_register(&early_serial_console, keep);
370 buf += 9; /* Keep from match the above "serial" */
371 }
372#endif
Jason Wesselc9530942009-08-20 15:39:52 -0500373 if (!strncmp(buf, "vga", 3) &&
374 boot_params.screen_info.orig_video_isVGA == 1) {
375 max_xpos = boot_params.screen_info.orig_video_cols;
376 max_ypos = boot_params.screen_info.orig_video_lines;
377 current_ypos = boot_params.screen_info.orig_y;
378 early_console_register(&early_vga_console, keep);
379 }
Yinghai Lu5c059172008-07-24 17:29:40 -0700380#ifdef CONFIG_EARLY_PRINTK_DBGP
Jason Wesselc9530942009-08-20 15:39:52 -0500381 if (!strncmp(buf, "dbgp", 4) && !early_dbgp_init(buf + 4))
382 early_console_register(&early_dbgp_console, keep);
Yinghai Lu5c059172008-07-24 17:29:40 -0700383#endif
Thomas Gleixner250c2272007-10-11 11:17:24 +0200384#ifdef CONFIG_HVC_XEN
Jason Wesselc9530942009-08-20 15:39:52 -0500385 if (!strncmp(buf, "xen", 3))
386 early_console_register(&xenboot_console, keep);
Thomas Gleixner250c2272007-10-11 11:17:24 +0200387#endif
Lu Baolu1b5aeeb2017-03-21 16:01:31 +0800388#ifdef CONFIG_EARLY_PRINTK_USB_XDBC
389 if (!strncmp(buf, "xdbc", 4))
390 early_xdbc_parse_parameter(buf + 4);
391#endif
Matt Fleming72548e82013-10-04 09:36:56 +0100392
Jason Wesselc9530942009-08-20 15:39:52 -0500393 buf++;
Thomas Gleixner250c2272007-10-11 11:17:24 +0200394 }
Thomas Gleixner250c2272007-10-11 11:17:24 +0200395 return 0;
396}
Yinghai Lu5c059172008-07-24 17:29:40 -0700397
Thomas Gleixner250c2272007-10-11 11:17:24 +0200398early_param("earlyprintk", setup_early_printk);