early_printk.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  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
  4. * for more details.
  5. *
  6. * Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
  7. */
  8. #include <linux/mm.h>
  9. #include <linux/io.h>
  10. #include <linux/serial_reg.h>
  11. #include "devices.h"
  12. #include "ar2315_regs.h"
  13. #include "ar5312_regs.h"
  14. static inline void prom_uart_wr(void __iomem *base, unsigned reg,
  15. unsigned char ch)
  16. {
  17. __raw_writel(ch, base + 4 * reg);
  18. }
  19. static inline unsigned char prom_uart_rr(void __iomem *base, unsigned reg)
  20. {
  21. return __raw_readl(base + 4 * reg);
  22. }
  23. void prom_putchar(unsigned char ch)
  24. {
  25. static void __iomem *base;
  26. if (unlikely(base == NULL)) {
  27. if (is_ar2315())
  28. base = (void __iomem *)(KSEG1ADDR(AR2315_UART0_BASE));
  29. else
  30. base = (void __iomem *)(KSEG1ADDR(AR5312_UART0_BASE));
  31. }
  32. while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0)
  33. ;
  34. prom_uart_wr(base, UART_TX, ch);
  35. while ((prom_uart_rr(base, UART_LSR) & UART_LSR_THRE) == 0)
  36. ;
  37. }