pdc_cons.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /*
  2. * PDC Console support - ie use firmware to dump text via boot console
  3. *
  4. * Copyright (C) 1999-2003 Matthew Wilcox <willy at parisc-linux.org>
  5. * Copyright (C) 2000 Martin K Petersen <mkp at mkp.net>
  6. * Copyright (C) 2000 John Marvin <jsm at parisc-linux.org>
  7. * Copyright (C) 2000-2003 Paul Bame <bame at parisc-linux.org>
  8. * Copyright (C) 2000 Philipp Rumpf <prumpf with tux.org>
  9. * Copyright (C) 2000 Michael Ang <mang with subcarrier.org>
  10. * Copyright (C) 2000 Grant Grundler <grundler with parisc-linux.org>
  11. * Copyright (C) 2001-2002 Ryan Bradetich <rbrad at parisc-linux.org>
  12. * Copyright (C) 2001 Helge Deller <deller at parisc-linux.org>
  13. * Copyright (C) 2001 Thomas Bogendoerfer <tsbogend at parisc-linux.org>
  14. * Copyright (C) 2002 Randolph Chung <tausq with parisc-linux.org>
  15. * Copyright (C) 2010 Guy Martin <gmsoft at tuxicoman.be>
  16. *
  17. *
  18. * This program is free software; you can redistribute it and/or modify
  19. * it under the terms of the GNU General Public License as published by
  20. * the Free Software Foundation; either version 2 of the License, or
  21. * (at your option) any later version.
  22. *
  23. * This program is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU General Public License
  29. * along with this program; if not, write to the Free Software
  30. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  31. */
  32. /*
  33. * The PDC console is a simple console, which can be used for debugging
  34. * boot related problems on HP PA-RISC machines. It is also useful when no
  35. * other console works.
  36. *
  37. * This code uses the ROM (=PDC) based functions to read and write characters
  38. * from and to PDC's boot path.
  39. */
  40. /* Define EARLY_BOOTUP_DEBUG to debug kernel related boot problems.
  41. * On production kernels EARLY_BOOTUP_DEBUG should be undefined. */
  42. #define EARLY_BOOTUP_DEBUG
  43. #include <linux/kernel.h>
  44. #include <linux/console.h>
  45. #include <linux/string.h>
  46. #include <linux/init.h>
  47. #include <linux/major.h>
  48. #include <linux/tty.h>
  49. #include <asm/pdc.h> /* for iodc_call() proto and friends */
  50. static DEFINE_SPINLOCK(pdc_console_lock);
  51. static struct console pdc_cons;
  52. static void pdc_console_write(struct console *co, const char *s, unsigned count)
  53. {
  54. int i = 0;
  55. unsigned long flags;
  56. spin_lock_irqsave(&pdc_console_lock, flags);
  57. do {
  58. i += pdc_iodc_print(s + i, count - i);
  59. } while (i < count);
  60. spin_unlock_irqrestore(&pdc_console_lock, flags);
  61. }
  62. int pdc_console_poll_key(struct console *co)
  63. {
  64. int c;
  65. unsigned long flags;
  66. spin_lock_irqsave(&pdc_console_lock, flags);
  67. c = pdc_iodc_getc();
  68. spin_unlock_irqrestore(&pdc_console_lock, flags);
  69. return c;
  70. }
  71. static int pdc_console_setup(struct console *co, char *options)
  72. {
  73. return 0;
  74. }
  75. #if defined(CONFIG_PDC_CONSOLE)
  76. #include <linux/vt_kern.h>
  77. #include <linux/tty_flip.h>
  78. #define PDC_CONS_POLL_DELAY (30 * HZ / 1000)
  79. static struct timer_list pdc_console_timer;
  80. static int pdc_console_tty_open(struct tty_struct *tty, struct file *filp)
  81. {
  82. mod_timer(&pdc_console_timer, jiffies + PDC_CONS_POLL_DELAY);
  83. return 0;
  84. }
  85. static void pdc_console_tty_close(struct tty_struct *tty, struct file *filp)
  86. {
  87. if (!tty->count)
  88. del_timer(&pdc_console_timer);
  89. }
  90. static int pdc_console_tty_write(struct tty_struct *tty, const unsigned char *buf, int count)
  91. {
  92. pdc_console_write(NULL, buf, count);
  93. return count;
  94. }
  95. static int pdc_console_tty_write_room(struct tty_struct *tty)
  96. {
  97. return 32768; /* no limit, no buffer used */
  98. }
  99. static int pdc_console_tty_chars_in_buffer(struct tty_struct *tty)
  100. {
  101. return 0; /* no buffer */
  102. }
  103. static struct tty_driver *pdc_console_tty_driver;
  104. static const struct tty_operations pdc_console_tty_ops = {
  105. .open = pdc_console_tty_open,
  106. .close = pdc_console_tty_close,
  107. .write = pdc_console_tty_write,
  108. .write_room = pdc_console_tty_write_room,
  109. .chars_in_buffer = pdc_console_tty_chars_in_buffer,
  110. };
  111. static void pdc_console_poll(unsigned long unused)
  112. {
  113. int data, count = 0;
  114. struct tty_struct *tty = pdc_console_tty_driver->ttys[0];
  115. if (!tty)
  116. return;
  117. while (1) {
  118. data = pdc_console_poll_key(NULL);
  119. if (data == -1)
  120. break;
  121. tty_insert_flip_char(tty, data & 0xFF, TTY_NORMAL);
  122. count ++;
  123. }
  124. if (count)
  125. tty_flip_buffer_push(tty);
  126. if (tty->count && (pdc_cons.flags & CON_ENABLED))
  127. mod_timer(&pdc_console_timer, jiffies + PDC_CONS_POLL_DELAY);
  128. }
  129. static int __init pdc_console_tty_driver_init(void)
  130. {
  131. int err;
  132. struct tty_driver *drv;
  133. /* Check if the console driver is still registered.
  134. * It is unregistered if the pdc console was not selected as the
  135. * primary console. */
  136. struct console *tmp;
  137. console_lock();
  138. for_each_console(tmp)
  139. if (tmp == &pdc_cons)
  140. break;
  141. console_unlock();
  142. if (!tmp) {
  143. printk(KERN_INFO "PDC console driver not registered anymore, not creating %s\n", pdc_cons.name);
  144. return -ENODEV;
  145. }
  146. printk(KERN_INFO "The PDC console driver is still registered, removing CON_BOOT flag\n");
  147. pdc_cons.flags &= ~CON_BOOT;
  148. drv = alloc_tty_driver(1);
  149. if (!drv)
  150. return -ENOMEM;
  151. drv->driver_name = "pdc_cons";
  152. drv->name = "ttyB";
  153. drv->major = MUX_MAJOR;
  154. drv->minor_start = 0;
  155. drv->type = TTY_DRIVER_TYPE_SYSTEM;
  156. drv->init_termios = tty_std_termios;
  157. drv->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS;
  158. tty_set_operations(drv, &pdc_console_tty_ops);
  159. err = tty_register_driver(drv);
  160. if (err) {
  161. printk(KERN_ERR "Unable to register the PDC console TTY driver\n");
  162. return err;
  163. }
  164. pdc_console_tty_driver = drv;
  165. /* No need to initialize the pdc_console_timer if tty isn't allocated */
  166. init_timer(&pdc_console_timer);
  167. pdc_console_timer.function = pdc_console_poll;
  168. return 0;
  169. }
  170. module_init(pdc_console_tty_driver_init);
  171. static struct tty_driver * pdc_console_device (struct console *c, int *index)
  172. {
  173. *index = c->index;
  174. return pdc_console_tty_driver;
  175. }
  176. #else
  177. #define pdc_console_device NULL
  178. #endif
  179. static struct console pdc_cons = {
  180. .name = "ttyB",
  181. .write = pdc_console_write,
  182. .device = pdc_console_device,
  183. .setup = pdc_console_setup,
  184. .flags = CON_BOOT | CON_PRINTBUFFER,
  185. .index = -1,
  186. };
  187. static int pdc_console_initialized;
  188. static void pdc_console_init_force(void)
  189. {
  190. if (pdc_console_initialized)
  191. return;
  192. ++pdc_console_initialized;
  193. /* If the console is duplex then copy the COUT parameters to CIN. */
  194. if (PAGE0->mem_cons.cl_class == CL_DUPLEX)
  195. memcpy(&PAGE0->mem_kbd, &PAGE0->mem_cons, sizeof(PAGE0->mem_cons));
  196. /* register the pdc console */
  197. register_console(&pdc_cons);
  198. }
  199. void __init pdc_console_init(void)
  200. {
  201. #if defined(EARLY_BOOTUP_DEBUG) || defined(CONFIG_PDC_CONSOLE)
  202. pdc_console_init_force();
  203. #endif
  204. #ifdef EARLY_BOOTUP_DEBUG
  205. printk(KERN_INFO "Initialized PDC Console for debugging.\n");
  206. #endif
  207. }
  208. /*
  209. * Used for emergencies. Currently only used if an HPMC occurs. If an
  210. * HPMC occurs, it is possible that the current console may not be
  211. * properly initialised after the PDC IO reset. This routine unregisters
  212. * all of the current consoles, reinitializes the pdc console and
  213. * registers it.
  214. */
  215. void pdc_console_restart(void)
  216. {
  217. struct console *console;
  218. if (pdc_console_initialized)
  219. return;
  220. /* If we've already seen the output, don't bother to print it again */
  221. if (console_drivers != NULL)
  222. pdc_cons.flags &= ~CON_PRINTBUFFER;
  223. while ((console = console_drivers) != NULL)
  224. unregister_console(console_drivers);
  225. /* force registering the pdc console */
  226. pdc_console_init_force();
  227. }