pdc_cons.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/parisc/kernel/pdc_console.c
  3.  *
  4.  *  The PDC console is a simple console, which can be used for debugging 
  5.  *  boot related problems on HP PA-RISC machines.
  6.  *
  7.  *  This code uses the ROM (=PDC) based functions to read and write characters
  8.  *  from and to PDC's boot path.
  9.  *  Since all character read from that path must be polled, this code never
  10.  *  can or will be a fully functional linux console.
  11.  */
  12. /* Define EARLY_BOOTUP_DEBUG to debug kernel related boot problems. 
  13.  * On production kernels EARLY_BOOTUP_DEBUG should be undefined. */
  14. #undef EARLY_BOOTUP_DEBUG
  15. #include <linux/config.h>
  16. #include <linux/kernel.h>
  17. #include <linux/console.h>
  18. #include <linux/string.h>
  19. #include <linux/init.h>
  20. #include <linux/delay.h>
  21. #include <linux/sched.h>
  22. #include <linux/interrupt.h>
  23. #include <asm/page.h>
  24. #include <asm/types.h>
  25. #include <asm/system.h>
  26. #include <asm/pdc.h> /* for iodc_call() proto and friends */
  27. static void pdc_console_write(struct console *co, const char *s, unsigned count)
  28. {
  29. while(count--)
  30. pdc_iodc_putc(*s++);
  31. }
  32. void pdc_outc(unsigned char c)
  33. {
  34. pdc_iodc_outc(c);
  35. }
  36. int pdc_console_poll_key(struct console *co)
  37. {
  38. return pdc_iodc_getc();
  39. }
  40. static int pdc_console_setup(struct console *co, char *options)
  41. {
  42. return 0;
  43. }
  44. #ifdef CONFIG_PDC_CONSOLE
  45. static kdev_t pdc_console_device (struct console *c)
  46. {
  47.         return MKDEV(PDCCONS_MAJOR, 0);
  48. }
  49. #endif
  50. #ifdef CONFIG_PDC_CONSOLE
  51. #define PDC_CONSOLE_DEVICE pdc_console_device
  52. #else
  53. #define PDC_CONSOLE_DEVICE NULL
  54. #endif
  55. static struct console pdc_cons = {
  56. name: "ttyB",
  57. write: pdc_console_write,
  58.   device: PDC_CONSOLE_DEVICE,
  59. setup: pdc_console_setup,
  60. flags: CON_BOOT|CON_PRINTBUFFER|CON_ENABLED,
  61. index: -1,
  62. };
  63. static int pdc_console_initialized;
  64. extern unsigned long con_start; /* kernel/printk.c */
  65. extern unsigned long log_end; /* kernel/printk.c */
  66.   
  67. static void pdc_console_init_force(void)
  68. {
  69. if (pdc_console_initialized)
  70. return;
  71. ++pdc_console_initialized;
  72. /* If the console is duplex then copy the COUT parameters to CIN. */
  73. if (PAGE0->mem_cons.cl_class == CL_DUPLEX)
  74. memcpy(&PAGE0->mem_kbd, &PAGE0->mem_cons, sizeof(PAGE0->mem_cons));
  75. /* register the pdc console */
  76. register_console(&pdc_cons);
  77. }
  78. void pdc_console_init(void)
  79. {
  80. #if defined(EARLY_BOOTUP_DEBUG) || defined(CONFIG_PDC_CONSOLE)
  81. pdc_console_init_force();
  82. #endif
  83. #ifdef EARLY_BOOTUP_DEBUG
  84. printk(KERN_INFO "Initialized PDC Console for debugging.n");
  85. #endif
  86. }
  87. /* Unregister the pdc console with the printk console layer */
  88. void pdc_console_die(void)
  89. {
  90. if (!pdc_console_initialized)
  91. return;
  92. --pdc_console_initialized;
  93. printk(KERN_INFO "Switching from PDC consolen");
  94. /* Don't repeat what we've already printed */
  95. con_start = log_end;
  96. unregister_console(&pdc_cons);
  97. }
  98. /*
  99.  * Used for emergencies. Currently only used if an HPMC occurs. If an
  100.  * HPMC occurs, it is possible that the current console may not be
  101.  * properly initialed after the PDC IO reset. This routine unregisters all
  102.  * of the current consoles, reinitializes the pdc console and
  103.  * registers it.
  104.  */
  105. void pdc_console_restart(void)
  106. {
  107. struct console *console;
  108. if (pdc_console_initialized)
  109. return;
  110. while ((console = console_drivers) != NULL)
  111. unregister_console(console_drivers);
  112. /* Don't repeat what we've already printed */
  113. con_start = log_end;
  114. /* force registering the pdc console */
  115. pdc_console_init_force();
  116. }