console.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /* console.c -- Open Firmware console for GRUB. */
  2. /*
  3. * GRUB -- GRand Unified Bootloader
  4. * Copyright (C) 2003,2004,2005,2007,2008,2009 Free Software Foundation, Inc.
  5. *
  6. * GRUB 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 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <grub/term.h>
  20. #include <grub/types.h>
  21. #include <grub/misc.h>
  22. #include <grub/mm.h>
  23. #include <grub/time.h>
  24. #include <grub/terminfo.h>
  25. #include <grub/ieee1275/console.h>
  26. #include <grub/ieee1275/ieee1275.h>
  27. static grub_ieee1275_ihandle_t stdout_ihandle;
  28. static grub_ieee1275_ihandle_t stdin_ihandle;
  29. extern struct grub_terminfo_output_state grub_console_terminfo_output;
  30. struct color
  31. {
  32. int red;
  33. int green;
  34. int blue;
  35. };
  36. /* Use serial colors as they are default on most firmwares and some firmwares
  37. ignore set-color!. Additionally output may be redirected to serial. */
  38. static struct color colors[] =
  39. {
  40. // {R, G, B}
  41. {0x00, 0x00, 0x00}, // 0 = black
  42. {0xA8, 0x00, 0x00}, // 1 = red
  43. {0x00, 0xA8, 0x00}, // 2 = green
  44. {0xFE, 0xFE, 0x54}, // 3 = yellow
  45. {0x00, 0x00, 0xA8}, // 4 = blue
  46. {0xA8, 0x00, 0xA8}, // 5 = magenta
  47. {0x00, 0xA8, 0xA8}, // 6 = cyan
  48. {0xFE, 0xFE, 0xFE} // 7 = white
  49. };
  50. static void
  51. put (struct grub_term_output *term __attribute__ ((unused)), const int c)
  52. {
  53. char chr = c;
  54. grub_ieee1275_write (stdout_ihandle, &chr, 1, 0);
  55. }
  56. static int
  57. readkey (struct grub_term_input *term __attribute__ ((unused)))
  58. {
  59. grub_uint8_t c;
  60. grub_ssize_t actual = 0;
  61. grub_ieee1275_read (stdin_ihandle, &c, 1, &actual);
  62. if (actual > 0)
  63. return c;
  64. return -1;
  65. }
  66. static void
  67. grub_console_dimensions (void)
  68. {
  69. grub_ieee1275_ihandle_t options;
  70. grub_ieee1275_phandle_t stdout_phandle;
  71. char val[1024];
  72. /* Always assume 80x24 on serial since screen-#rows/screen-#columns is often
  73. garbage for such devices. */
  74. if (! grub_ieee1275_instance_to_package (stdout_ihandle,
  75. &stdout_phandle)
  76. && ! grub_ieee1275_package_to_path (stdout_phandle,
  77. val, sizeof (val) - 1, 0))
  78. {
  79. grub_ieee1275_ihandle_t stdout_options;
  80. val[sizeof (val) - 1] = 0;
  81. if (! grub_ieee1275_finddevice (val, &stdout_options)
  82. && ! grub_ieee1275_get_property (stdout_options, "device_type",
  83. val, sizeof (val) - 1, 0))
  84. {
  85. val[sizeof (val) - 1] = 0;
  86. if (grub_strcmp (val, "serial") == 0)
  87. {
  88. grub_console_terminfo_output.size.x = 80;
  89. grub_console_terminfo_output.size.y = 24;
  90. return;
  91. }
  92. }
  93. }
  94. if (! grub_ieee1275_finddevice ("/options", &options)
  95. && options != (grub_ieee1275_ihandle_t) -1)
  96. {
  97. if (! grub_ieee1275_get_property (options, "screen-#columns",
  98. val, sizeof (val) - 1, 0))
  99. {
  100. val[sizeof (val) - 1] = 0;
  101. grub_console_terminfo_output.size.x
  102. = (grub_uint8_t) grub_strtoul (val, 0, 10);
  103. }
  104. if (! grub_ieee1275_get_property (options, "screen-#rows",
  105. val, sizeof (val) - 1, 0))
  106. {
  107. val[sizeof (val) - 1] = 0;
  108. grub_console_terminfo_output.size.y
  109. = (grub_uint8_t) grub_strtoul (val, 0, 10);
  110. }
  111. }
  112. /* Bogus default value on SLOF in QEMU. */
  113. if (grub_console_terminfo_output.size.x == 200
  114. && grub_console_terminfo_output.size.y == 200)
  115. {
  116. grub_console_terminfo_output.size.x = 80;
  117. grub_console_terminfo_output.size.y = 24;
  118. }
  119. /* Use a small console by default. */
  120. if (! grub_console_terminfo_output.size.x)
  121. grub_console_terminfo_output.size.x = 80;
  122. if (! grub_console_terminfo_output.size.y)
  123. grub_console_terminfo_output.size.y = 24;
  124. }
  125. static void
  126. grub_console_setcursor (struct grub_term_output *term,
  127. int on)
  128. {
  129. grub_terminfo_setcursor (term, on);
  130. if (!grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_HAS_CURSORONOFF))
  131. return;
  132. /* Understood by the Open Firmware flavour in OLPC. */
  133. if (on)
  134. grub_ieee1275_interpret ("cursor-on", 0);
  135. else
  136. grub_ieee1275_interpret ("cursor-off", 0);
  137. }
  138. static grub_err_t
  139. grub_console_init_input (struct grub_term_input *term)
  140. {
  141. grub_ssize_t actual;
  142. if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "stdin", &stdin_ihandle,
  143. sizeof stdin_ihandle, &actual)
  144. || actual != sizeof stdin_ihandle)
  145. return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "cannot find stdin");
  146. return grub_terminfo_input_init (term);
  147. }
  148. static grub_err_t
  149. grub_console_init_output (struct grub_term_output *term)
  150. {
  151. grub_ssize_t actual;
  152. unsigned int col;
  153. /* The latest PowerMacs don't actually initialize the screen for us, so we
  154. * use this trick to re-open the output device (but we avoid doing this on
  155. * platforms where it's known to be broken). */
  156. if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_BROKEN_OUTPUT))
  157. grub_ieee1275_interpret ("output-device output", 0);
  158. if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "stdout", &stdout_ihandle,
  159. sizeof stdout_ihandle, &actual)
  160. || actual != sizeof stdout_ihandle)
  161. return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "cannot find stdout");
  162. /* Initialize colors. */
  163. for (col = 0; col < ARRAY_SIZE (colors); col++)
  164. grub_ieee1275_set_color (stdout_ihandle, col, colors[col].red,
  165. colors[col].green, colors[col].blue);
  166. /* Set the right fg and bg colors. */
  167. grub_terminfo_setcolorstate (term, GRUB_TERM_COLOR_NORMAL);
  168. grub_console_dimensions ();
  169. grub_terminfo_output_init (term);
  170. return 0;
  171. }
  172. struct grub_terminfo_input_state grub_console_terminfo_input =
  173. {
  174. .readkey = readkey
  175. };
  176. struct grub_terminfo_output_state grub_console_terminfo_output =
  177. {
  178. .put = put,
  179. .size = { 80, 24 }
  180. };
  181. static struct grub_term_input grub_console_term_input =
  182. {
  183. .name = "console",
  184. .init = grub_console_init_input,
  185. .getkey = grub_terminfo_getkey,
  186. .data = &grub_console_terminfo_input
  187. };
  188. static struct grub_term_output grub_console_term_output =
  189. {
  190. .name = "console",
  191. .init = grub_console_init_output,
  192. .putchar = grub_terminfo_putchar,
  193. .getxy = grub_terminfo_getxy,
  194. .getwh = grub_terminfo_getwh,
  195. .gotoxy = grub_terminfo_gotoxy,
  196. .cls = grub_terminfo_cls,
  197. .setcolorstate = grub_terminfo_setcolorstate,
  198. .setcursor = grub_console_setcursor,
  199. .flags = GRUB_TERM_CODE_TYPE_ASCII,
  200. .data = &grub_console_terminfo_output,
  201. .progress_update_divisor = GRUB_PROGRESS_FAST
  202. };
  203. void
  204. grub_console_init_early (void)
  205. {
  206. grub_term_register_input ("console", &grub_console_term_input);
  207. grub_term_register_output ("console", &grub_console_term_output);
  208. }
  209. void
  210. grub_console_init_lately (void)
  211. {
  212. const char *type;
  213. if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CURSORONOFF_ANSI_BROKEN))
  214. type = "ieee1275-nocursor";
  215. else
  216. type = "ieee1275";
  217. grub_terminfo_init ();
  218. grub_terminfo_output_register (&grub_console_term_output, type);
  219. }
  220. void
  221. grub_console_fini (void)
  222. {
  223. }