early_printk_8250.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * 8250/16550-type serial ports prom_putchar()
  3. *
  4. * Copyright (C) 2010 Yoichi Yuasa <yuasa@linux-mips.org>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <linux/io.h>
  21. #include <linux/serial_core.h>
  22. #include <linux/serial_reg.h>
  23. #include <asm/setup.h>
  24. static void __iomem *serial8250_base;
  25. static unsigned int serial8250_reg_shift;
  26. static unsigned int serial8250_tx_timeout;
  27. void setup_8250_early_printk_port(unsigned long base, unsigned int reg_shift,
  28. unsigned int timeout)
  29. {
  30. serial8250_base = (void __iomem *)base;
  31. serial8250_reg_shift = reg_shift;
  32. serial8250_tx_timeout = timeout;
  33. }
  34. static inline u8 serial_in(int offset)
  35. {
  36. return readb(serial8250_base + (offset << serial8250_reg_shift));
  37. }
  38. static inline void serial_out(int offset, char value)
  39. {
  40. writeb(value, serial8250_base + (offset << serial8250_reg_shift));
  41. }
  42. void prom_putchar(char c)
  43. {
  44. unsigned int timeout;
  45. int status, bits;
  46. if (!serial8250_base)
  47. return;
  48. timeout = serial8250_tx_timeout;
  49. bits = UART_LSR_TEMT | UART_LSR_THRE;
  50. do {
  51. status = serial_in(UART_LSR);
  52. if (--timeout == 0)
  53. break;
  54. } while ((status & bits) != bits);
  55. if (timeout)
  56. serial_out(UART_TX, c);
  57. }