2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
11 #include <linux/serial_reg.h>
14 #include "ar2315_regs.h"
15 #include "ar5312_regs.h"
17 static inline void prom_uart_wr(void __iomem
*base
, unsigned reg
,
20 __raw_writel(ch
, base
+ 4 * reg
);
23 static inline unsigned char prom_uart_rr(void __iomem
*base
, unsigned reg
)
25 return __raw_readl(base
+ 4 * reg
);
28 void prom_putchar(unsigned char ch
)
30 static void __iomem
*base
;
32 if (unlikely(base
== NULL
)) {
34 base
= (void __iomem
*)(KSEG1ADDR(AR2315_UART0_BASE
));
36 base
= (void __iomem
*)(KSEG1ADDR(AR5312_UART0_BASE
));
39 while ((prom_uart_rr(base
, UART_LSR
) & UART_LSR_THRE
) == 0)
41 prom_uart_wr(base
, UART_TX
, ch
);
42 while ((prom_uart_rr(base
, UART_LSR
) & UART_LSR_THRE
) == 0)