diff options
author | Yoichi Yuasa <yuasa@linux-mips.org> | 2010-02-08 06:59:39 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-10-29 16:24:36 -0400 |
commit | 7cd93b893567906d9c9e9e1121667600b4cebbaf (patch) | |
tree | 2bbce647eb6d83d95be4d067d50093a9156b3f0e /arch/mips | |
parent | 31c4867d6c75450f98398a1172f03383c4881c98 (diff) |
MIPS: Add 8250/16550 serial early printk driver
Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
Cc: linux-mips <linux-mips@linux-mips.org>
Patchwork: https://patchwork.linux-mips.org/patch/947/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/Kconfig.debug | 8 | ||||
-rw-r--r-- | arch/mips/include/asm/setup.h | 8 | ||||
-rw-r--r-- | arch/mips/kernel/Makefile | 1 | ||||
-rw-r--r-- | arch/mips/kernel/early_printk_8250.c | 66 |
4 files changed, 83 insertions, 0 deletions
diff --git a/arch/mips/Kconfig.debug b/arch/mips/Kconfig.debug index 37871f0de15e..b147e7038ff0 100644 --- a/arch/mips/Kconfig.debug +++ b/arch/mips/Kconfig.debug | |||
@@ -20,6 +20,14 @@ config EARLY_PRINTK | |||
20 | doesn't cooperate with an X server. You should normally say N here, | 20 | doesn't cooperate with an X server. You should normally say N here, |
21 | unless you want to debug such a crash. | 21 | unless you want to debug such a crash. |
22 | 22 | ||
23 | config EARLY_PRINTK_8250 | ||
24 | bool "8250/16550 and compatible serial early printk driver" | ||
25 | depends on EARLY_PRINTK | ||
26 | default n | ||
27 | help | ||
28 | If you say Y here, it will be possible to use a 8250/16550 serial | ||
29 | port as the boot console. | ||
30 | |||
23 | config CMDLINE_BOOL | 31 | config CMDLINE_BOOL |
24 | bool "Built-in kernel command line" | 32 | bool "Built-in kernel command line" |
25 | default n | 33 | default n |
diff --git a/arch/mips/include/asm/setup.h b/arch/mips/include/asm/setup.h index e26589ef36ee..d7bfdeba9e84 100644 --- a/arch/mips/include/asm/setup.h +++ b/arch/mips/include/asm/setup.h | |||
@@ -5,6 +5,14 @@ | |||
5 | 5 | ||
6 | extern void setup_early_printk(void); | 6 | extern void setup_early_printk(void); |
7 | 7 | ||
8 | #ifdef CONFIG_EARLY_PRINTK_8250 | ||
9 | extern void setup_8250_early_printk_port(unsigned long base, | ||
10 | unsigned int reg_shift, unsigned int timeout); | ||
11 | #else | ||
12 | static inline void setup_8250_early_printk_port(unsigned long base, | ||
13 | unsigned int reg_shift, unsigned int timeout) {} | ||
14 | #endif | ||
15 | |||
8 | extern void set_handler(unsigned long offset, void *addr, unsigned long len); | 16 | extern void set_handler(unsigned long offset, void *addr, unsigned long len); |
9 | extern void set_uncached_handler(unsigned long offset, void *addr, unsigned long len); | 17 | extern void set_uncached_handler(unsigned long offset, void *addr, unsigned long len); |
10 | 18 | ||
diff --git a/arch/mips/kernel/Makefile b/arch/mips/kernel/Makefile index 423d871a946b..4bbece9b3eb4 100644 --- a/arch/mips/kernel/Makefile +++ b/arch/mips/kernel/Makefile | |||
@@ -84,6 +84,7 @@ obj-$(CONFIG_GPIO_TXX9) += gpio_txx9.o | |||
84 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o crash.o | 84 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o crash.o |
85 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | 85 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o |
86 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | 86 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o |
87 | obj-$(CONFIG_EARLY_PRINTK_8250) += early_printk_8250.o | ||
87 | obj-$(CONFIG_SPINLOCK_TEST) += spinlock_test.o | 88 | obj-$(CONFIG_SPINLOCK_TEST) += spinlock_test.o |
88 | obj-$(CONFIG_MIPS_MACHINE) += mips_machine.o | 89 | obj-$(CONFIG_MIPS_MACHINE) += mips_machine.o |
89 | 90 | ||
diff --git a/arch/mips/kernel/early_printk_8250.c b/arch/mips/kernel/early_printk_8250.c new file mode 100644 index 000000000000..83cea3767556 --- /dev/null +++ b/arch/mips/kernel/early_printk_8250.c | |||
@@ -0,0 +1,66 @@ | |||
1 | /* | ||
2 | * 8250/16550-type serial ports prom_putchar() | ||
3 | * | ||
4 | * Copyright (C) 2010 Yoichi Yuasa <yuasa@linux-mips.org> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
19 | */ | ||
20 | #include <linux/io.h> | ||
21 | #include <linux/serial_core.h> | ||
22 | #include <linux/serial_reg.h> | ||
23 | |||
24 | static void __iomem *serial8250_base; | ||
25 | static unsigned int serial8250_reg_shift; | ||
26 | static unsigned int serial8250_tx_timeout; | ||
27 | |||
28 | void setup_8250_early_printk_port(unsigned long base, unsigned int reg_shift, | ||
29 | unsigned int timeout) | ||
30 | { | ||
31 | serial8250_base = (void __iomem *)base; | ||
32 | serial8250_reg_shift = reg_shift; | ||
33 | serial8250_tx_timeout = timeout; | ||
34 | } | ||
35 | |||
36 | static inline u8 serial_in(int offset) | ||
37 | { | ||
38 | return readb(serial8250_base + (offset << serial8250_reg_shift)); | ||
39 | } | ||
40 | |||
41 | static inline void serial_out(int offset, char value) | ||
42 | { | ||
43 | writeb(value, serial8250_base + (offset << serial8250_reg_shift)); | ||
44 | } | ||
45 | |||
46 | void prom_putchar(char c) | ||
47 | { | ||
48 | unsigned int timeout; | ||
49 | int status, bits; | ||
50 | |||
51 | if (!serial8250_base) | ||
52 | return; | ||
53 | |||
54 | timeout = serial8250_tx_timeout; | ||
55 | bits = UART_LSR_TEMT | UART_LSR_THRE; | ||
56 | |||
57 | do { | ||
58 | status = serial_in(UART_LSR); | ||
59 | |||
60 | if (--timeout == 0) | ||
61 | break; | ||
62 | } while ((status & bits) != bits); | ||
63 | |||
64 | if (timeout) | ||
65 | serial_out(UART_TX, c); | ||
66 | } | ||