arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / mips / lantiq / early_printk.c
blob4e4a28be1ddd311cdf02bd9af7e32d0ceeb6eb19
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
4 * Copyright (C) 2010 John Crispin <john@phrozen.org>
5 */
7 #include <linux/cpu.h>
8 #include <lantiq_soc.h>
9 #include <asm/setup.h>
11 #define ASC_BUF 1024
12 #define LTQ_ASC_FSTAT ((u32 *)(LTQ_EARLY_ASC + 0x0048))
13 #ifdef __BIG_ENDIAN
14 #define LTQ_ASC_TBUF ((u32 *)(LTQ_EARLY_ASC + 0x0020 + 3))
15 #else
16 #define LTQ_ASC_TBUF ((u32 *)(LTQ_EARLY_ASC + 0x0020))
17 #endif
18 #define TXMASK 0x3F00
19 #define TXOFFSET 8
21 void prom_putchar(char c)
23 unsigned long flags;
25 local_irq_save(flags);
26 do { } while ((ltq_r32(LTQ_ASC_FSTAT) & TXMASK) >> TXOFFSET);
27 if (c == '\n')
28 ltq_w8('\r', LTQ_ASC_TBUF);
29 ltq_w8(c, LTQ_ASC_TBUF);
30 local_irq_restore(flags);