blob: 75273a2516039116da1d706d5f44565cadc2b41a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Parse the EFI PCDP table to locate the console device.
3 *
4 * (c) Copyright 2002, 2003, 2004 Hewlett-Packard Development Company, L.P.
5 * Khalid Aziz <khalid.aziz@hp.com>
6 * Alex Williamson <alex.williamson@hp.com>
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/acpi.h>
15#include <linux/console.h>
16#include <linux/efi.h>
17#include <linux/serial.h>
Peter Hurleydf519e72015-03-09 16:27:22 -040018#include <linux/serial_core.h>
Mark Maule66b7f8a2005-04-25 13:51:00 -070019#include <asm/vga.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "pcdp.h"
21
22static int __init
23setup_serial_console(struct pcdp_uart *uart)
24{
25#ifdef CONFIG_SERIAL_8250_CONSOLE
26 int mmio;
Bjorn Helgaas280dedb2005-06-23 00:10:16 -070027 static char options[64], *p = options;
Bjorn Helgaas11be00cb2005-07-28 01:07:39 -070028 char parity;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030030 mmio = (uart->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY);
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -070031 p += sprintf(p, "uart8250,%s,0x%llx",
Bjorn Helgaas280dedb2005-06-23 00:10:16 -070032 mmio ? "mmio" : "io", uart->addr.address);
Bjorn Helgaas11be00cb2005-07-28 01:07:39 -070033 if (uart->baud) {
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -070034 p += sprintf(p, ",%llu", uart->baud);
Bjorn Helgaas11be00cb2005-07-28 01:07:39 -070035 if (uart->bits) {
36 switch (uart->parity) {
37 case 0x2: parity = 'e'; break;
38 case 0x3: parity = 'o'; break;
39 default: parity = 'n';
40 }
41 p += sprintf(p, "%c%d", parity, uart->bits);
42 }
43 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Yinghai Lu18a8bd92007-07-15 23:37:59 -070045 add_preferred_console("uart", 8250, &options[9]);
Peter Hurleydf519e72015-03-09 16:27:22 -040046 return setup_earlycon(options);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#else
48 return -ENODEV;
49#endif
50}
51
52static int __init
Mark Maule66b7f8a2005-04-25 13:51:00 -070053setup_vga_console(struct pcdp_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55#if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
Mark Maule66b7f8a2005-04-25 13:51:00 -070056 u8 *if_ptr;
57
58 if_ptr = ((u8 *)dev + sizeof(struct pcdp_device));
59 if (if_ptr[0] == PCDP_IF_PCI) {
60 struct pcdp_if_pci if_pci;
61
62 /* struct copy since ifptr might not be correctly aligned */
63
64 memcpy(&if_pci, if_ptr, sizeof(if_pci));
65
66 if (if_pci.trans & PCDP_PCI_TRANS_IOPORT)
67 vga_console_iobase = if_pci.ioport_tra;
68
69 if (if_pci.trans & PCDP_PCI_TRANS_MMIO)
70 vga_console_membase = if_pci.mmio_tra;
71 }
72
73 if (efi_mem_type(vga_console_membase + 0xA0000) == EFI_CONVENTIONAL_MEMORY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 printk(KERN_ERR "PCDP: VGA selected, but frame buffer is not MMIO!\n");
75 return -ENODEV;
76 }
77
78 conswitchp = &vga_con;
79 printk(KERN_INFO "PCDP: VGA console\n");
80 return 0;
81#else
82 return -ENODEV;
83#endif
84}
85
86int __init
87efi_setup_pcdp_console(char *cmdline)
88{
89 struct pcdp *pcdp;
90 struct pcdp_uart *uart;
91 struct pcdp_device *dev, *end;
92 int i, serial = 0;
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -080093 int rc = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -080095 if (efi.hcdp == EFI_INVALID_TABLE_ADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return -ENODEV;
97
Greg Pearson6c4088a2012-07-30 14:39:05 -070098 pcdp = early_ioremap(efi.hcdp, 4096);
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -080099 printk(KERN_INFO "PCDP: v%d at 0x%lx\n", pcdp->rev, efi.hcdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 if (strstr(cmdline, "console=hcdp")) {
102 if (pcdp->rev < 3)
103 serial = 1;
104 } else if (strstr(cmdline, "console=")) {
105 printk(KERN_INFO "Explicit \"console=\"; ignoring PCDP\n");
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800106 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
109 if (pcdp->rev < 3 && efi_uart_console_only())
110 serial = 1;
111
112 for (i = 0, uart = pcdp->uart; i < pcdp->num_uarts; i++, uart++) {
113 if (uart->flags & PCDP_UART_PRIMARY_CONSOLE || serial) {
114 if (uart->type == PCDP_CONSOLE_UART) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800115 rc = setup_serial_console(uart);
116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 }
119 }
120
121 end = (struct pcdp_device *) ((u8 *) pcdp + pcdp->length);
122 for (dev = (struct pcdp_device *) (pcdp->uart + pcdp->num_uarts);
123 dev < end;
124 dev = (struct pcdp_device *) ((u8 *) dev + dev->length)) {
125 if (dev->flags & PCDP_PRIMARY_CONSOLE) {
126 if (dev->type == PCDP_CONSOLE_VGA) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800127 rc = setup_vga_console(dev);
128 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130 }
131 }
132
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800133out:
Greg Pearson6c4088a2012-07-30 14:39:05 -0700134 early_iounmap(pcdp, 4096);
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800135 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}