GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mips / boot / compressed / uart-16550.c
blobc9caaf4fbf60ecb0c4bdedeb2c04647e162ff635
1 /*
2 * 16550 compatible uart based serial debug support for zboot
3 */
5 #include <linux/types.h>
6 #include <linux/serial_reg.h>
7 #include <linux/init.h>
9 #include <asm/addrspace.h>
11 #if defined(CONFIG_MACH_LOONGSON) || defined(CONFIG_MIPS_MALTA)
12 #define UART_BASE 0x1fd003f8
13 #define PORT(offset) (CKSEG1ADDR(UART_BASE) + (offset))
14 #endif
16 #ifdef CONFIG_AR7
17 #include <ar7.h>
18 #define PORT(offset) (CKSEG1ADDR(AR7_REGS_UART0) + (4 * offset))
19 #endif
21 #ifndef PORT
22 #error please define the serial port address for your own machine
23 #endif
25 static inline unsigned int serial_in(int offset)
27 return *((char *)PORT(offset));
30 static inline void serial_out(int offset, int value)
32 *((char *)PORT(offset)) = value;
35 void putc(char c)
37 int timeout = 1024;
39 while (((serial_in(UART_LSR) & UART_LSR_THRE) == 0) && (timeout-- > 0))
42 serial_out(UART_TX, c);