ip27-console.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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) 2001, 2002 Ralf Baechle
  7. */
  8. #include <linux/init.h>
  9. #include <linux/console.h>
  10. #include <linux/kdev_t.h>
  11. #include <linux/major.h>
  12. #include <linux/termios.h>
  13. #include <linux/sched.h>
  14. #include <linux/tty.h>
  15. #include <asm/page.h>
  16. #include <asm/semaphore.h>
  17. #include <asm/sn/addrs.h>
  18. #include <asm/sn/sn0/hub.h>
  19. #include <asm/sn/klconfig.h>
  20. #include <asm/sn/ioc3.h>
  21. #include <asm/sn/sn_private.h>
  22. #include <linux/serial.h>
  23. #include <linux/serial_core.h>
  24. #define IOC3_CLK (22000000 / 3)
  25. #define IOC3_FLAGS (0)
  26. static inline struct ioc3_uartregs *console_uart(void)
  27. {
  28. struct ioc3 *ioc3;
  29. ioc3 = (struct ioc3 *)KL_CONFIG_CH_CONS_INFO(get_nasid())->memory_base;
  30. return &ioc3->sregs.uarta;
  31. }
  32. void prom_putchar(char c)
  33. {
  34. struct ioc3_uartregs *uart = console_uart();
  35. while ((uart->iu_lsr & 0x20) == 0);
  36. uart->iu_thr = c;
  37. }
  38. char __init prom_getchar(void)
  39. {
  40. return 0;
  41. }
  42. static void inline ioc3_console_probe(void)
  43. {
  44. struct uart_port up;
  45. /*
  46. * Register to interrupt zero because we share the interrupt with
  47. * the serial driver which we don't properly support yet.
  48. */
  49. memset(&up, 0, sizeof(up));
  50. up.membase = (unsigned char *) console_uart();
  51. up.irq = 0;
  52. up.uartclk = IOC3_CLK;
  53. up.regshift = 0;
  54. up.iotype = UPIO_MEM;
  55. up.flags = IOC3_FLAGS;
  56. up.line = 0;
  57. if (early_serial_setup(&up))
  58. printk(KERN_ERR "Early serial init of port 0 failed\n");
  59. }
  60. __init void ip27_setup_console(void)
  61. {
  62. ioc3_console_probe();
  63. }