sh_bios.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * C interface for trapping into the standard LinuxSH BIOS.
  3. *
  4. * Copyright (C) 2000 Greg Banks, Mitch Davis
  5. * Copyright (C) 1999, 2000 Niibe Yutaka
  6. * Copyright (C) 2002 M. R. Brown
  7. * Copyright (C) 2004 - 2010 Paul Mundt
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file "COPYING" in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/console.h>
  15. #include <linux/tty.h>
  16. #include <linux/init.h>
  17. #include <linux/io.h>
  18. #include <linux/delay.h>
  19. #include <asm/sh_bios.h>
  20. #define BIOS_CALL_CONSOLE_WRITE 0
  21. #define BIOS_CALL_ETH_NODE_ADDR 10
  22. #define BIOS_CALL_SHUTDOWN 11
  23. #define BIOS_CALL_GDB_DETACH 0xff
  24. static inline long sh_bios_call(long func, long arg0, long arg1, long arg2,
  25. long arg3)
  26. {
  27. register long r0 __asm__("r0") = func;
  28. register long r4 __asm__("r4") = arg0;
  29. register long r5 __asm__("r5") = arg1;
  30. register long r6 __asm__("r6") = arg2;
  31. register long r7 __asm__("r7") = arg3;
  32. __asm__ __volatile__("trapa #0x3f":"=z"(r0)
  33. :"0"(r0), "r"(r4), "r"(r5), "r"(r6), "r"(r7)
  34. :"memory");
  35. return r0;
  36. }
  37. void sh_bios_console_write(const char *buf, unsigned int len)
  38. {
  39. sh_bios_call(BIOS_CALL_CONSOLE_WRITE, (long)buf, (long)len, 0, 0);
  40. }
  41. void sh_bios_gdb_detach(void)
  42. {
  43. sh_bios_call(BIOS_CALL_GDB_DETACH, 0, 0, 0, 0);
  44. }
  45. EXPORT_SYMBOL_GPL(sh_bios_gdb_detach);
  46. void sh_bios_get_node_addr(unsigned char *node_addr)
  47. {
  48. sh_bios_call(BIOS_CALL_ETH_NODE_ADDR, 0, (long)node_addr, 0, 0);
  49. }
  50. EXPORT_SYMBOL_GPL(sh_bios_get_node_addr);
  51. void sh_bios_shutdown(unsigned int how)
  52. {
  53. sh_bios_call(BIOS_CALL_SHUTDOWN, how, 0, 0, 0);
  54. }
  55. void *gdb_vbr_vector = NULL;
  56. /*
  57. * Read the old value of the VBR register to initialise the vector
  58. * through which debug and BIOS traps are delegated by the Linux trap
  59. * handler.
  60. */
  61. void sh_bios_vbr_init(void)
  62. {
  63. unsigned long vbr;
  64. if (unlikely(gdb_vbr_vector))
  65. return;
  66. __asm__ __volatile__ ("stc vbr, %0" : "=r" (vbr));
  67. gdb_vbr_vector = (void *)(vbr + 0x100);
  68. printk(KERN_NOTICE "Setting GDB trap vector to %p\n", gdb_vbr_vector);
  69. }
  70. /**
  71. * sh_bios_vbr_reload - Re-load the system VBR from the BIOS vector.
  72. *
  73. * This can be used by save/restore code to reinitialize the system VBR
  74. * from the fixed BIOS VBR. A no-op if no BIOS VBR is known.
  75. */
  76. void sh_bios_vbr_reload(void)
  77. {
  78. if (gdb_vbr_vector)
  79. __asm__ __volatile__ (
  80. "ldc %0, vbr"
  81. :
  82. : "r" (((unsigned long) gdb_vbr_vector) - 0x100)
  83. : "memory"
  84. );
  85. }
  86. /*
  87. * Print a string through the BIOS
  88. */
  89. static void sh_console_write(struct console *co, const char *s,
  90. unsigned count)
  91. {
  92. sh_bios_console_write(s, count);
  93. }
  94. /*
  95. * Setup initial baud/bits/parity. We do two things here:
  96. * - construct a cflag setting for the first rs_open()
  97. * - initialize the serial port
  98. * Return non-zero if we didn't find a serial port.
  99. */
  100. static int __init sh_console_setup(struct console *co, char *options)
  101. {
  102. int cflag = CREAD | HUPCL | CLOCAL;
  103. /*
  104. * Now construct a cflag setting.
  105. * TODO: this is a totally bogus cflag, as we have
  106. * no idea what serial settings the BIOS is using, or
  107. * even if its using the serial port at all.
  108. */
  109. cflag |= B115200 | CS8 | /*no parity*/0;
  110. co->cflag = cflag;
  111. return 0;
  112. }
  113. static struct console bios_console = {
  114. .name = "bios",
  115. .write = sh_console_write,
  116. .setup = sh_console_setup,
  117. .flags = CON_PRINTBUFFER,
  118. .index = -1,
  119. };
  120. static struct console *early_console;
  121. static int __init setup_early_printk(char *buf)
  122. {
  123. int keep_early = 0;
  124. if (!buf)
  125. return 0;
  126. if (strstr(buf, "keep"))
  127. keep_early = 1;
  128. if (!strncmp(buf, "bios", 4))
  129. early_console = &bios_console;
  130. if (likely(early_console)) {
  131. if (keep_early)
  132. early_console->flags &= ~CON_BOOT;
  133. else
  134. early_console->flags |= CON_BOOT;
  135. register_console(early_console);
  136. }
  137. return 0;
  138. }
  139. early_param("earlyprintk", setup_early_printk);