kernel/4.3: update to version 4.3.3
[openwrt/openwrt.git] / target / linux / ramips / patches-4.3 / 0003-MIPS-ralink-cleanup-early_printk.patch
1 From 4d805af8246efdc330d6af9a8bd10ce892327598 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Fri, 24 Jan 2014 17:01:17 +0100
4 Subject: [PATCH 03/53] MIPS: ralink: cleanup early_printk
5
6 Add support for the new MT7621/8 SoC and kill ifdefs.
7 Cleanup some whitespace error while we are at it.
8
9 Signed-off-by: John Crispin <blogic@openwrt.org>
10 ---
11 arch/mips/ralink/early_printk.c | 25 +++++++++++++++++++++++++
12 1 file changed, 25 insertions(+)
13
14 --- a/arch/mips/ralink/early_printk.c
15 +++ b/arch/mips/ralink/early_printk.c
16 @@ -25,11 +25,13 @@
17 #define MT7628_CHIP_NAME1 0x20203832
18
19 #define UART_REG_TX 0x04
20 +#define UART_REG_LCR 0x0c
21 #define UART_REG_LSR 0x14
22 #define UART_REG_LSR_RT2880 0x1c
23
24 static __iomem void *uart_membase = (__iomem void *) KSEG1ADDR(EARLY_UART_BASE);
25 static __iomem void *chipid_membase = (__iomem void *) KSEG1ADDR(CHIPID_BASE);
26 +static int init_complete;
27
28 static inline void uart_w32(u32 val, unsigned reg)
29 {
30 @@ -47,8 +49,31 @@ static inline int soc_is_mt7628(void)
31 (__raw_readl(chipid_membase) == MT7628_CHIP_NAME1);
32 }
33
34 +static inline void find_uart_base(void)
35 +{
36 + int i;
37 +
38 + if (!soc_is_mt7628())
39 + return;
40 +
41 + for (i = 0; i < 3; i++) {
42 + u32 reg = uart_r32(UART_REG_LCR + (0x100 * i));
43 +
44 + if (!reg)
45 + continue;
46 +
47 + uart_membase = (__iomem void *) KSEG1ADDR(EARLY_UART_BASE + (0x100 * i));
48 + break;
49 + }
50 +}
51 +
52 void prom_putchar(unsigned char ch)
53 {
54 + if (!init_complete) {
55 + find_uart_base();
56 + init_complete = 1;
57 + }
58 +
59 if (IS_ENABLED(CONFIG_SOC_MT7621) || soc_is_mt7628()) {
60 uart_w32(ch, UART_TX);
61 while ((uart_r32(UART_REG_LSR) & UART_LSR_THRE) == 0)