1 // SPDX-License-Identifier: GPL-2.0
3 * 16550 compatible uart based serial debug support for zboot
6 #include <linux/types.h>
7 #include <linux/serial_reg.h>
9 #include <asm/addrspace.h>
11 #if defined(CONFIG_MACH_LOONGSON64) || defined(CONFIG_MIPS_MALTA)
12 #define UART_BASE 0x1fd003f8
13 #define PORT(offset) (CKSEG1ADDR(UART_BASE) + (offset))
18 #define PORT(offset) (CKSEG1ADDR(AR7_REGS_UART0) + (4 * offset))
21 #ifdef CONFIG_MACH_INGENIC
22 #define INGENIC_UART0_BASE_ADDR 0x10030000
23 #define PORT(offset) (CKSEG1ADDR(INGENIC_UART0_BASE_ADDR) + (4 * offset))
27 #define UART0_BASE 0x1EF14000
28 #define PORT(offset) (CKSEG1ADDR(UART0_BASE) + (4 * offset))
29 #define IOTYPE unsigned int
33 #define UART0_BASE 0x18030100
34 #define PORT(offset) (CKSEG1ADDR(UART0_BASE) + (4 * offset))
35 #define IOTYPE unsigned int
43 #error please define the serial port address for your own machine
46 static inline unsigned int serial_in(int offset
)
48 return *((volatile IOTYPE
*)PORT(offset
)) & 0xFF;
51 static inline void serial_out(int offset
, int value
)
53 *((volatile IOTYPE
*)PORT(offset
)) = value
& 0xFF;
58 int timeout
= 1000000;
60 while (((serial_in(UART_LSR
) & UART_LSR_THRE
) == 0) && (timeout
-- > 0))
63 serial_out(UART_TX
, c
);