diff options
author | Wu Zhangjin <wuzj@lemote.com> | 2009-07-02 11:20:20 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-17 14:07:45 -0400 |
commit | f6a2740d0c1b3fd0d3cc8ec17e232f82f2d8b14c (patch) | |
tree | e65bc529fd5973fbc2f94bbcf55fce169075736f /arch/mips/lemote/lm2e | |
parent | 95ff7c955376d5bd52f044f445ea04eab4fb0f9a (diff) |
MIPS: Loongson: Add new early_printk implmentation
This patch is based on the implementation in the lm2e-fixes branch of
Philippe's git://git.linux-cisco.org/linux-mips.git and the
malta-specific early_printk implementation.
Signed-off-by: Wu Zhangjin <wuzj@lemote.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lemote/lm2e')
-rw-r--r-- | arch/mips/lemote/lm2e/Makefile | 5 | ||||
-rw-r--r-- | arch/mips/lemote/lm2e/early_printk.c | 41 |
2 files changed, 46 insertions, 0 deletions
diff --git a/arch/mips/lemote/lm2e/Makefile b/arch/mips/lemote/lm2e/Makefile index b0c03390241d..f19173252d6a 100644 --- a/arch/mips/lemote/lm2e/Makefile +++ b/arch/mips/lemote/lm2e/Makefile | |||
@@ -4,4 +4,9 @@ | |||
4 | 4 | ||
5 | obj-y += setup.o prom.o reset.o irq.o pci.o bonito-irq.o mem.o | 5 | obj-y += setup.o prom.o reset.o irq.o pci.o bonito-irq.o mem.o |
6 | 6 | ||
7 | # | ||
8 | # Early printk support | ||
9 | # | ||
10 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
11 | |||
7 | EXTRA_CFLAGS += -Werror | 12 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/mips/lemote/lm2e/early_printk.c b/arch/mips/lemote/lm2e/early_printk.c new file mode 100644 index 000000000000..811c7dec1edd --- /dev/null +++ b/arch/mips/lemote/lm2e/early_printk.c | |||
@@ -0,0 +1,41 @@ | |||
1 | /* early printk support | ||
2 | * | ||
3 | * Copyright (c) 2009 Philippe Vachon <philippe@cowpig.ca> | ||
4 | * Copyright (C) 2009 Lemote Inc. & Insititute of Computing Technology | ||
5 | * Author: Wu Zhangjin, wuzj@lemote.com | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | */ | ||
12 | #include <linux/io.h> | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/serial_reg.h> | ||
15 | |||
16 | #include <asm/mips-boards/bonito64.h> | ||
17 | |||
18 | #define UART_BASE (BONITO_PCIIO_BASE + 0x3f8) | ||
19 | |||
20 | #define PORT(base, offset) (u8 *)(base + offset) | ||
21 | |||
22 | static inline unsigned int serial_in(phys_addr_t base, int offset) | ||
23 | { | ||
24 | return readb(PORT(base, offset)); | ||
25 | } | ||
26 | |||
27 | static inline void serial_out(phys_addr_t base, int offset, int value) | ||
28 | { | ||
29 | writeb(value, PORT(base, offset)); | ||
30 | } | ||
31 | |||
32 | void prom_putchar(char c) | ||
33 | { | ||
34 | phys_addr_t uart_base = | ||
35 | (phys_addr_t) ioremap_nocache(UART_BASE, 8); | ||
36 | |||
37 | while ((serial_in(uart_base, UART_LSR) & UART_LSR_THRE) == 0) | ||
38 | ; | ||
39 | |||
40 | serial_out(uart_base, UART_TX, c); | ||
41 | } | ||