diff options
author | 2025-03-08 22:04:20 +0800 | |
---|---|---|
committer | 2025-03-08 22:04:20 +0800 | |
commit | a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a (patch) | |
tree | 84f21bd0bf7071bc5fc7dd989e77d7ceb5476682 /arch/mips/kernel/early_printk_8250.c | |
download | ohosKernel-a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a.tar.gz ohosKernel-a07bb8fd1299070229f0e8f3dcb57ffd5ef9870a.zip |
Initial commit: OpenHarmony-v4.0-ReleaseOpenHarmony-v4.0-Release
Diffstat (limited to 'arch/mips/kernel/early_printk_8250.c')
-rw-r--r-- | arch/mips/kernel/early_printk_8250.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/arch/mips/kernel/early_printk_8250.c b/arch/mips/kernel/early_printk_8250.c new file mode 100644 index 000000000..567c6ec0c --- /dev/null +++ b/arch/mips/kernel/early_printk_8250.c | |||
@@ -0,0 +1,54 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
2 | /* | ||
3 | * 8250/16550-type serial ports prom_putchar() | ||
4 | * | ||
5 | * Copyright (C) 2010 Yoichi Yuasa <yuasa@linux-mips.org> | ||
6 | */ | ||
7 | #include <linux/io.h> | ||
8 | #include <linux/serial_core.h> | ||
9 | #include <linux/serial_reg.h> | ||
10 | #include <asm/setup.h> | ||
11 | |||
12 | static void __iomem *serial8250_base; | ||
13 | static unsigned int serial8250_reg_shift; | ||
14 | static unsigned int serial8250_tx_timeout; | ||
15 | |||
16 | void setup_8250_early_printk_port(unsigned long base, unsigned int reg_shift, | ||
17 | unsigned int timeout) | ||
18 | { | ||
19 | serial8250_base = (void __iomem *)base; | ||
20 | serial8250_reg_shift = reg_shift; | ||
21 | serial8250_tx_timeout = timeout; | ||
22 | } | ||
23 | |||
24 | static inline u8 serial_in(int offset) | ||
25 | { | ||
26 | return readb(serial8250_base + (offset << serial8250_reg_shift)); | ||
27 | } | ||
28 | |||
29 | static inline void serial_out(int offset, char value) | ||
30 | { | ||
31 | writeb(value, serial8250_base + (offset << serial8250_reg_shift)); | ||
32 | } | ||
33 | |||
34 | void prom_putchar(char c) | ||
35 | { | ||
36 | unsigned int timeout; | ||
37 | int status, bits; | ||
38 | |||
39 | if (!serial8250_base) | ||
40 | return; | ||
41 | |||
42 | timeout = serial8250_tx_timeout; | ||
43 | bits = UART_LSR_TEMT | UART_LSR_THRE; | ||
44 | |||
45 | do { | ||
46 | status = serial_in(UART_LSR); | ||
47 | |||
48 | if (--timeout == 0) | ||
49 | break; | ||
50 | } while ((status & bits) != bits); | ||
51 | |||
52 | if (timeout) | ||
53 | serial_out(UART_TX, c); | ||
54 | } | ||