early_printk.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Atheros AR7XXX/AR9XXX SoC early printk support
  3. *
  4. * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
  5. * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
  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 version 2 as published
  9. * by the Free Software Foundation.
  10. */
  11. #include <linux/io.h>
  12. #include <linux/errno.h>
  13. #include <linux/serial_reg.h>
  14. #include <asm/addrspace.h>
  15. #include <asm/mach-ath79/ath79.h>
  16. #include <asm/mach-ath79/ar71xx_regs.h>
  17. #include <asm/mach-ath79/ar933x_uart.h>
  18. static void (*_prom_putchar) (unsigned char);
  19. static inline void prom_putchar_wait(void __iomem *reg, u32 mask, u32 val)
  20. {
  21. u32 t;
  22. do {
  23. t = __raw_readl(reg);
  24. if ((t & mask) == val)
  25. break;
  26. } while (1);
  27. }
  28. static void prom_putchar_ar71xx(unsigned char ch)
  29. {
  30. void __iomem *base = (void __iomem *)(KSEG1ADDR(AR71XX_UART_BASE));
  31. prom_putchar_wait(base + UART_LSR * 4, UART_LSR_THRE, UART_LSR_THRE);
  32. __raw_writel(ch, base + UART_TX * 4);
  33. prom_putchar_wait(base + UART_LSR * 4, UART_LSR_THRE, UART_LSR_THRE);
  34. }
  35. static void prom_putchar_ar933x(unsigned char ch)
  36. {
  37. void __iomem *base = (void __iomem *)(KSEG1ADDR(AR933X_UART_BASE));
  38. prom_putchar_wait(base + AR933X_UART_DATA_REG, AR933X_UART_DATA_TX_CSR,
  39. AR933X_UART_DATA_TX_CSR);
  40. __raw_writel(AR933X_UART_DATA_TX_CSR | ch, base + AR933X_UART_DATA_REG);
  41. prom_putchar_wait(base + AR933X_UART_DATA_REG, AR933X_UART_DATA_TX_CSR,
  42. AR933X_UART_DATA_TX_CSR);
  43. }
  44. static void prom_putchar_dummy(unsigned char ch)
  45. {
  46. /* nothing to do */
  47. }
  48. static void prom_putchar_init(void)
  49. {
  50. void __iomem *base;
  51. u32 id;
  52. base = (void __iomem *)(KSEG1ADDR(AR71XX_RESET_BASE));
  53. id = __raw_readl(base + AR71XX_RESET_REG_REV_ID);
  54. id &= REV_ID_MAJOR_MASK;
  55. switch (id) {
  56. case REV_ID_MAJOR_AR71XX:
  57. case REV_ID_MAJOR_AR7240:
  58. case REV_ID_MAJOR_AR7241:
  59. case REV_ID_MAJOR_AR7242:
  60. case REV_ID_MAJOR_AR913X:
  61. _prom_putchar = prom_putchar_ar71xx;
  62. break;
  63. case REV_ID_MAJOR_AR9330:
  64. case REV_ID_MAJOR_AR9331:
  65. _prom_putchar = prom_putchar_ar933x;
  66. break;
  67. default:
  68. _prom_putchar = prom_putchar_dummy;
  69. break;
  70. }
  71. }
  72. void prom_putchar(unsigned char ch)
  73. {
  74. if (!_prom_putchar)
  75. prom_putchar_init();
  76. _prom_putchar(ch);
  77. }