blob: 3e0a6eaa404140846b0b847e12df4e773a9a7793 [file] [log] [blame]
Wu Zhangjinf6a27402009-07-02 23:20:20 +08001/* early printk support
2 *
3 * Copyright (c) 2009 Philippe Vachon <philippe@cowpig.ca>
4 * Copyright (C) 2009 Lemote Inc. & Insititute of Computing Technology
5 * Author: Wu Zhangjin, wuzj@lemote.com
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 */
Wu Zhangjinf6a27402009-07-02 23:20:20 +080012#include <linux/serial_reg.h>
13
Wu Zhangjin5e983ff2009-07-02 23:23:03 +080014#include <loongson.h>
Wu Zhangjinf6a27402009-07-02 23:20:20 +080015
16#define UART_BASE (BONITO_PCIIO_BASE + 0x3f8)
17
18#define PORT(base, offset) (u8 *)(base + offset)
19
20static inline unsigned int serial_in(phys_addr_t base, int offset)
21{
22 return readb(PORT(base, offset));
23}
24
25static inline void serial_out(phys_addr_t base, int offset, int value)
26{
27 writeb(value, PORT(base, offset));
28}
29
30void prom_putchar(char c)
31{
32 phys_addr_t uart_base =
33 (phys_addr_t) ioremap_nocache(UART_BASE, 8);
34
35 while ((serial_in(uart_base, UART_LSR) & UART_LSR_THRE) == 0)
36 ;
37
38 serial_out(uart_base, UART_TX, c);
39}