Skip to content

Commit 8aaa727

Browse files
rsa9000ralfbaechle
authored andcommitted
MIPS: ath25: add early printk support
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> Cc: Linux MIPS <linux-mips@linux-mips.org> Patchwork: https://patchwork.linux-mips.org/patch/8241/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent 1753e74 commit 8aaa727

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

arch/mips/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ config ATH25
107107
select SYS_HAS_CPU_MIPS32_R1
108108
select SYS_SUPPORTS_BIG_ENDIAN
109109
select SYS_SUPPORTS_32BIT_KERNEL
110+
select SYS_HAS_EARLY_PRINTK
110111
help
111112
Support for Atheros AR231x and Atheros AR531x based boards
112113

arch/mips/ath25/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@
1010

1111
obj-y += board.o prom.o devices.o
1212

13+
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
14+
1315
obj-$(CONFIG_SOC_AR5312) += ar5312.o
1416
obj-$(CONFIG_SOC_AR2315) += ar2315.o

arch/mips/ath25/early_printk.c

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*
2+
* This file is subject to the terms and conditions of the GNU General Public
3+
* License. See the file "COPYING" in the main directory of this archive
4+
* for more details.
5+
*
6+
* Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
7+
*/
8+
9+
#include <linux/mm.h>
10+
#include <linux/io.h>
11+
#include <linux/serial_reg.h>
12+
13+
#include "devices.h"
14+
#include "ar2315_regs.h"
15+
#include "ar5312_regs.h"
16+
17+
static inline void prom_uart_wr(void __iomem *base, unsigned reg,
18+
unsigned char ch)
19+
{
20+
__raw_writel(ch, base + 4 * reg);
21+
}
22+
23+
static inline unsigned char prom_uart_rr(void __iomem *base, unsigned reg)
24+
{
25+
return __raw_readl(base + 4 * reg);
26+
}
27+
28+
void prom_putchar(unsigned char ch)
29+
{
30+
static void __iomem *base;
31+
32+
if (unlikely(base == NULL)) {
33+
if (is_ar2315())
34+
base = (void __iomem *)(KSEG1ADDR(AR2315_UART0_BASE));
35+
else
36+
base = (void __iomem *)(KSEG1ADDR(AR5312_UART0_BASE));
37+
}
38+
39+
while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0)
40+
;
41+
prom_uart_wr(base, UART_TX, ch);
42+
while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0)
43+
;
44+
}

0 commit comments

Comments
 (0)