2004-04-04 13:46:03 +00:00
|
|
|
|
/* ofconsole.c -- Open Firmware console for GRUB. */
|
2004-03-28 21:52:02 +00:00
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2008-01-21 14:22:38 +00:00
|
|
|
|
* Copyright (C) 2003,2004,2005,2007,2008 Free Software Foundation, Inc.
|
2004-03-28 21:52:02 +00:00
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2004-03-28 21:52:02 +00:00
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2004-03-28 21:52:02 +00:00
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2004-03-28 21:52:02 +00:00
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2004-03-28 21:52:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#include <grub/term.h>
|
|
|
|
|
#include <grub/types.h>
|
|
|
|
|
#include <grub/misc.h>
|
2005-08-09 03:25:40 +00:00
|
|
|
|
#include <grub/mm.h>
|
2005-08-09 03:15:35 +00:00
|
|
|
|
#include <grub/machine/console.h>
|
2005-08-03 22:53:51 +00:00
|
|
|
|
#include <grub/ieee1275/ieee1275.h>
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_ieee1275_ihandle_t stdout_ihandle;
|
|
|
|
|
static grub_ieee1275_ihandle_t stdin_ihandle;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2005-11-09 06:07:54 +00:00
|
|
|
|
static grub_uint8_t grub_ofconsole_width;
|
|
|
|
|
static grub_uint8_t grub_ofconsole_height;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static int grub_curr_x;
|
|
|
|
|
static int grub_curr_y;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static int grub_keybuf;
|
|
|
|
|
static int grub_buflen;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
struct color
|
|
|
|
|
{
|
|
|
|
|
int red;
|
|
|
|
|
int green;
|
|
|
|
|
int blue;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define MAX 0xff
|
|
|
|
|
static struct color colors[8] =
|
|
|
|
|
{
|
|
|
|
|
{ 0, 0, 0},
|
|
|
|
|
{ MAX, 0, 0},
|
|
|
|
|
{ 0, MAX, 0},
|
|
|
|
|
{ MAX, MAX, 0},
|
|
|
|
|
{ 0, 0, MAX},
|
|
|
|
|
{ MAX, 0, MAX},
|
|
|
|
|
{ 0, MAX, MAX},
|
|
|
|
|
{ MAX, MAX, MAX}
|
|
|
|
|
};
|
|
|
|
|
|
2008-06-17 15:27:14 +00:00
|
|
|
|
static grub_uint8_t grub_ofconsole_normal_color = 0x7;
|
|
|
|
|
static grub_uint8_t grub_ofconsole_highlight_color = 0x70;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
/* Write control characters to the console. */
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_writeesc (const char *str)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2008-07-02 07:38:46 +00:00
|
|
|
|
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_ANSI))
|
|
|
|
|
return;
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
while (*str)
|
|
|
|
|
{
|
|
|
|
|
char chr = *(str++);
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_write (stdout_ihandle, &chr, 1, 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_putchar (grub_uint32_t c)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char chr = c;
|
|
|
|
|
if (c == '\n')
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_curr_y++;
|
|
|
|
|
grub_curr_x = 0;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2005-11-09 06:07:54 +00:00
|
|
|
|
{
|
|
|
|
|
grub_curr_x++;
|
|
|
|
|
if (grub_curr_x > grub_ofconsole_width)
|
2008-04-25 19:41:51 +00:00
|
|
|
|
{
|
|
|
|
|
grub_putcode ('\n');
|
|
|
|
|
grub_curr_x++;
|
|
|
|
|
}
|
2005-11-09 06:07:54 +00:00
|
|
|
|
}
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_write (stdout_ihandle, &chr, 1, 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-08-31 01:02:05 +00:00
|
|
|
|
static grub_ssize_t
|
2005-08-31 01:26:34 +00:00
|
|
|
|
grub_ofconsole_getcharwidth (grub_uint32_t c __attribute__((unused)))
|
2005-08-31 01:02:05 +00:00
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_setcolorstate (grub_term_color_state state)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char setcol[20];
|
|
|
|
|
int fg;
|
|
|
|
|
int bg;
|
|
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_STANDARD:
|
|
|
|
|
case GRUB_TERM_COLOR_NORMAL:
|
2008-06-17 15:27:14 +00:00
|
|
|
|
fg = grub_ofconsole_normal_color & 0x0f;
|
|
|
|
|
bg = grub_ofconsole_normal_color >> 4;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
break;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
case GRUB_TERM_COLOR_HIGHLIGHT:
|
2008-06-17 15:27:14 +00:00
|
|
|
|
fg = grub_ofconsole_highlight_color & 0x0f;
|
|
|
|
|
bg = grub_ofconsole_highlight_color >> 4;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_sprintf (setcol, "\e[3%dm\e[4%dm", fg, bg);
|
|
|
|
|
grub_ofconsole_writeesc (setcol);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_setcolor (grub_uint8_t normal_color,
|
|
|
|
|
grub_uint8_t highlight_color)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2008-06-17 15:27:14 +00:00
|
|
|
|
grub_ofconsole_normal_color = normal_color;
|
|
|
|
|
grub_ofconsole_highlight_color = highlight_color;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-12-25 11:10:47 +00:00
|
|
|
|
static void
|
|
|
|
|
grub_ofconsole_getcolor (grub_uint8_t *normal_color, grub_uint8_t *highlight_color)
|
|
|
|
|
{
|
2008-06-17 15:27:14 +00:00
|
|
|
|
*normal_color = grub_ofconsole_normal_color;
|
|
|
|
|
*highlight_color = grub_ofconsole_highlight_color;
|
2007-12-25 11:10:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_readkey (int *key)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char c;
|
2005-08-04 18:10:51 +00:00
|
|
|
|
grub_ssize_t actual = 0;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_read (stdin_ihandle, &c, 1, &actual);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2004-11-03 03:21:14 +00:00
|
|
|
|
if (actual > 0 && c == '\e')
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_read (stdin_ihandle, &c, 1, &actual);
|
2004-11-03 03:21:14 +00:00
|
|
|
|
if (actual <= 0)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
*key = '\e';
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
if (c != 91)
|
|
|
|
|
return 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ieee1275_read (stdin_ihandle, &c, 1, &actual);
|
2004-11-03 03:21:14 +00:00
|
|
|
|
if (actual <= 0)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case 65:
|
|
|
|
|
/* Up: Ctrl-p. */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
c = 16;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
break;
|
|
|
|
|
case 66:
|
|
|
|
|
/* Down: Ctrl-n. */
|
|
|
|
|
c = 14;
|
|
|
|
|
break;
|
|
|
|
|
case 67:
|
|
|
|
|
/* Right: Ctrl-f. */
|
|
|
|
|
c = 6;
|
|
|
|
|
break;
|
|
|
|
|
case 68:
|
|
|
|
|
/* Left: Ctrl-b. */
|
|
|
|
|
c = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
*key = c;
|
2004-11-03 03:21:14 +00:00
|
|
|
|
return actual > 0;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_checkkey (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
int key;
|
|
|
|
|
int read;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_buflen)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return 1;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
read = grub_ofconsole_readkey (&key);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
if (read)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_keybuf = key;
|
|
|
|
|
grub_buflen = 1;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2005-11-04 04:50:14 +00:00
|
|
|
|
return -1;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_getkey (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
int key;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_buflen)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_buflen =0;
|
|
|
|
|
return grub_keybuf;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
while (! grub_ofconsole_readkey (&key));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
return key;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_uint16_t
|
|
|
|
|
grub_ofconsole_getxy (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return ((grub_curr_x - 1) << 8) | grub_curr_y;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-08-04 18:10:51 +00:00
|
|
|
|
static grub_uint16_t
|
|
|
|
|
grub_ofconsole_getwh (void)
|
|
|
|
|
{
|
|
|
|
|
grub_ieee1275_ihandle_t options;
|
|
|
|
|
char *val;
|
|
|
|
|
grub_ssize_t lval;
|
|
|
|
|
|
2005-11-09 06:07:54 +00:00
|
|
|
|
if (grub_ofconsole_width && grub_ofconsole_height)
|
|
|
|
|
return (grub_ofconsole_width << 8) | grub_ofconsole_height;
|
|
|
|
|
|
|
|
|
|
if (! grub_ieee1275_finddevice ("/options", &options)
|
|
|
|
|
&& options != (grub_ieee1275_ihandle_t) -1)
|
2005-08-04 18:10:51 +00:00
|
|
|
|
{
|
2005-11-09 06:07:54 +00:00
|
|
|
|
if (! grub_ieee1275_get_property_length (options, "screen-#columns",
|
|
|
|
|
&lval) && lval != -1)
|
|
|
|
|
{
|
|
|
|
|
val = grub_malloc (lval);
|
|
|
|
|
if (val)
|
|
|
|
|
{
|
|
|
|
|
if (! grub_ieee1275_get_property (options, "screen-#columns",
|
|
|
|
|
val, lval, 0))
|
|
|
|
|
grub_ofconsole_width = (grub_uint8_t) grub_strtoul (val, 0, 10);
|
|
|
|
|
|
|
|
|
|
grub_free (val);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (! grub_ieee1275_get_property_length (options, "screen-#rows",
|
|
|
|
|
&lval) && lval != -1)
|
|
|
|
|
{
|
|
|
|
|
val = grub_malloc (lval);
|
|
|
|
|
if (val)
|
|
|
|
|
{
|
|
|
|
|
if (! grub_ieee1275_get_property (options, "screen-#rows",
|
|
|
|
|
val, lval, 0))
|
|
|
|
|
grub_ofconsole_height = (grub_uint8_t) grub_strtoul (val, 0, 10);
|
|
|
|
|
|
|
|
|
|
grub_free (val);
|
|
|
|
|
}
|
2005-08-04 18:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Use a small console by default. */
|
2005-11-09 06:07:54 +00:00
|
|
|
|
if (! grub_ofconsole_width)
|
|
|
|
|
grub_ofconsole_width = 80;
|
|
|
|
|
if (! grub_ofconsole_height)
|
|
|
|
|
grub_ofconsole_height = 24;
|
2005-08-04 18:10:51 +00:00
|
|
|
|
|
2005-11-09 06:07:54 +00:00
|
|
|
|
return (grub_ofconsole_width << 8) | grub_ofconsole_height;
|
2005-08-04 18:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-03-28 21:52:02 +00:00
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_gotoxy (grub_uint8_t x, grub_uint8_t y)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
char s[11]; /* 5 + 3 + 3. */
|
|
|
|
|
|
2008-07-02 07:38:46 +00:00
|
|
|
|
if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_ANSI))
|
|
|
|
|
{
|
|
|
|
|
grub_curr_x = x;
|
|
|
|
|
grub_curr_y = y;
|
|
|
|
|
|
|
|
|
|
grub_sprintf (s, "\e[%d;%dH", y + 1, x + 1);
|
|
|
|
|
grub_ofconsole_writeesc (s);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if ((y == grub_curr_y) && (x == grub_curr_x - 1))
|
|
|
|
|
{
|
|
|
|
|
char chr;
|
|
|
|
|
|
|
|
|
|
chr = '\b';
|
|
|
|
|
grub_ieee1275_write (stdout_ihandle, &chr, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
grub_curr_x = x;
|
|
|
|
|
grub_curr_y = y;
|
|
|
|
|
}
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_cls (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2005-11-10 01:57:52 +00:00
|
|
|
|
/* Clear the screen. Using serial console, screen(1) only recognizes the
|
|
|
|
|
* ANSI escape sequence. Using video console, Apple Open Firmware (version
|
|
|
|
|
* 3.1.1) only recognizes the literal ^L. So use both. */
|
|
|
|
|
grub_ofconsole_writeesc ("\e[2J");
|
2004-10-09 02:37:18 +00:00
|
|
|
|
grub_gotoxy (0, 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2008-05-31 18:09:14 +00:00
|
|
|
|
grub_ofconsole_setcursor (int on)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2008-05-31 18:09:14 +00:00
|
|
|
|
/* Understood by the Open Firmware flavour in OLPC. */
|
|
|
|
|
if (on)
|
|
|
|
|
grub_ieee1275_interpret ("cursor-on", 0);
|
|
|
|
|
else
|
|
|
|
|
grub_ieee1275_interpret ("cursor-off", 0);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_ofconsole_refresh (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
/* Do nothing, the current console state is ok. */
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
grub_ofconsole_init_input (void)
|
|
|
|
|
{
|
|
|
|
|
grub_ssize_t actual;
|
|
|
|
|
|
|
|
|
|
if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "stdin", &stdin_ihandle,
|
|
|
|
|
sizeof stdin_ihandle, &actual)
|
|
|
|
|
|| actual != sizeof stdin_ihandle)
|
|
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "Cannot find stdin");
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ofconsole_init_output (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2005-08-04 18:10:51 +00:00
|
|
|
|
grub_ssize_t actual;
|
2004-03-28 21:52:02 +00:00
|
|
|
|
int col;
|
|
|
|
|
|
2006-10-01 06:45:53 +00:00
|
|
|
|
/* The latest PowerMacs don't actually initialize the screen for us, so we
|
2007-07-22 09:05:11 +00:00
|
|
|
|
* use this trick to re-open the output device (but we avoid doing this on
|
|
|
|
|
* platforms where it's known to be broken). */
|
|
|
|
|
if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_BROKEN_OUTPUT))
|
|
|
|
|
grub_ieee1275_interpret ("output-device output", 0);
|
2006-10-01 06:45:53 +00:00
|
|
|
|
|
2008-01-19 22:31:04 +00:00
|
|
|
|
if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "stdout", &stdout_ihandle,
|
|
|
|
|
sizeof stdout_ihandle, &actual)
|
|
|
|
|
|| actual != sizeof stdout_ihandle)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "Cannot find stdout");
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
/* Initialize colors. */
|
2008-01-24 08:21:43 +00:00
|
|
|
|
if (! grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CANNOT_SET_COLORS))
|
|
|
|
|
{
|
|
|
|
|
for (col = 0; col < 7; col++)
|
|
|
|
|
grub_ieee1275_set_color (stdout_ihandle, col, colors[col].red,
|
|
|
|
|
colors[col].green, colors[col].blue);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
2008-01-24 08:21:43 +00:00
|
|
|
|
/* Set the right fg and bg colors. */
|
|
|
|
|
grub_ofconsole_setcolorstate (GRUB_TERM_COLOR_NORMAL);
|
|
|
|
|
}
|
2004-03-28 21:52:02 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_ofconsole_fini (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
static struct grub_term_input grub_ofconsole_term_input =
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
|
|
|
|
.name = "ofconsole",
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
.init = grub_ofconsole_init_input,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.fini = grub_ofconsole_fini,
|
|
|
|
|
.checkkey = grub_ofconsole_checkkey,
|
|
|
|
|
.getkey = grub_ofconsole_getkey,
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct grub_term_output grub_ofconsole_term_output =
|
|
|
|
|
{
|
|
|
|
|
.name = "ofconsole",
|
|
|
|
|
.init = grub_ofconsole_init_output,
|
|
|
|
|
.fini = grub_ofconsole_fini,
|
|
|
|
|
.putchar = grub_ofconsole_putchar,
|
|
|
|
|
.getcharwidth = grub_ofconsole_getcharwidth,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.getxy = grub_ofconsole_getxy,
|
2005-08-04 18:10:51 +00:00
|
|
|
|
.getwh = grub_ofconsole_getwh,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.gotoxy = grub_ofconsole_gotoxy,
|
|
|
|
|
.cls = grub_ofconsole_cls,
|
|
|
|
|
.setcolorstate = grub_ofconsole_setcolorstate,
|
|
|
|
|
.setcolor = grub_ofconsole_setcolor,
|
2007-12-25 11:10:47 +00:00
|
|
|
|
.getcolor = grub_ofconsole_getcolor,
|
2004-04-04 13:46:03 +00:00
|
|
|
|
.setcursor = grub_ofconsole_setcursor,
|
|
|
|
|
.refresh = grub_ofconsole_refresh,
|
2004-03-28 21:52:02 +00:00
|
|
|
|
.flags = 0,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_console_init (void)
|
2004-03-28 21:52:02 +00:00
|
|
|
|
{
|
2009-04-14 18:12:14 +00:00
|
|
|
|
grub_term_register_input ("ofconsole", &grub_ofconsole_term_input);
|
|
|
|
|
grub_term_register_output ("ofconsole", &grub_ofconsole_term_output);
|
2004-03-28 21:52:02 +00:00
|
|
|
|
}
|
2005-03-26 17:34:50 +00:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
grub_console_fini (void)
|
|
|
|
|
{
|
2008-11-07 Robert Millan <rmh@aybabtu.com>
Modularize at_keyboard.mod:
* conf/i386.rmk (pkglib_MODULES): Add `at_keyboard.mod'.
(at_keyboard_mod_SOURCES, at_keyboard_mod_CFLAGS)
(at_keyboard_mod_LDFLAGS): New variables.
Actual terminal split:
* include/grub/term.h (struct grub_term): Split in ...
(struct grub_term_input): ... this, and ...
(struct grub_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/term.c (grub_term_list): Split in ...
(grub_term_list_input): ... this, and ...
(grub_term_list_output): ... this. Update all users.
(grub_cur_term): Split in ...
(grub_cur_term_input): ... this, and ...
(grub_cur_term_output): ... this. Update all users.
(grub_term_set_current): Split in ...
(grub_term_set_current_input): ... this, and ...
(grub_term_set_current_output): ... this.
(grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
(grub_term_register): Split in ...
(grub_term_register_input): ... this, and ...
(grub_term_register_output): ... this.
(grub_term_unregister): Split in ...
(grub_term_unregister_input): ... this, and ...
(grub_term_unregister_output): ... this.
(grub_term_iterate): Split in ...
(grub_term_iterate_input): ... this, and ...
(grub_term_iterate_output): ... this.
* kern/misc.c (grub_abort): Split use of grub_term_get_current() into
a check for input and one for output (and only attempt to get keys
from user when input works).
* util/grub-probe.c (grub_term_get_current): Split in ...
(grub_term_get_current_input): ... this, and ...
(grub_term_get_current_output): ... this.
* util/grub-fstest.c: Likewise.
* util/i386/pc/grub-setup.c: Likewise.
* util/grub-editenv.c: Likewise.
Portability adjustments:
* conf/i386-ieee1275.rmk (kernel_elf_SOURCES): Remove
`term/i386/pc/at_keyboard.c'.
* kern/ieee1275/init.c [__i386__] (grub_machine_init): Remove call to
grub_keyboard_controller_init() (now handled by terminal .init).
* kern/i386/coreboot/init.c (grub_machine_init): Add call to
grub_at_keyboard_init().
* include/grub/i386/ieee1275/console.h (grub_keyboard_controller_init)
(grub_console_checkkey, grub_console_getkey): Remove (now provided by
at_keyboard.mod via input terminal interface).
* include/grub/i386/coreboot/console.h: Convert into a stub for
`<grub/i386/pc/console.h>'.
Migrate full terminals to new API:
* term/efi/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
* term/ieee1275/ofconsole.c: Remove __i386__ hack.
(grub_ofconsole_init): Split into ...
(grub_ofconsole_init_input): ... this, and ...
(grub_ofconsole_init_output): ... this.
(grub_ofconsole_term): Split into ...
(grub_ofconsole_term_input): ... this, and ...
(grub_ofconsole_term_output): ... this. Update all users.
* term/i386/pc/serial.c (grub_serial_term): Split into ...
(grub_serial_term_input): ... this, and ...
(grub_serial_term_output): ... this. Update all users.
* term/i386/pc/console.c (grub_console_term): Split into ...
(grub_console_term_input): ... this, and ...
(grub_console_term_output): ... this. Update all users.
(grub_console_term_input): Only enable it on PC/BIOS platform.
(grub_console_init): Remove grub_keyboard_controller_init() call.
Migrate input terminals to new API:
* term/i386/pc/at_keyboard.c: Replace `cpu' and `machine' with
`i386' and `i386/pc' to enable build on x86_64 (this driver is
i386-specific anyway).
(grub_console_checkkey): Rename to ...
(grub_at_keyboard_checkkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_orig): New variable.
(grub_console_getkey): Rename to ...
(grub_at_keyboard_getkey): ... this. Static-ize. Update all
users.
(grub_keyboard_controller_init): Static-ize. Save original
controller value so that it can be restored ...
(grub_keyboard_controller_fini): ... here (new function).
(grub_at_keyboard_term): New structure.
(GRUB_MOD_INIT(at_keyboard), GRUB_MOD_FINI(at_keyboard)): New
functions.
Migrate output terminals to new API:
* term/i386/pc/vga.c (grub_vga_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* term/gfxterm.c (grub_video_term): Change type to
`struct grub_term_output'. Remove `.checkkey' and `.getkey'
members. Update all users.
* include/grub/i386/pc/console.h (grub_console_checkkey)
(grub_console_getkey): Do not export (no longer needed by gfxterm,
etc).
Migrate `terminal' command and userland tools to new API:
* commands/terminal.c (grub_cmd_terminal): Split into ...
(grub_cmd_terminal_input): ... this, and ...
(grub_cmd_terminal_output): ... this.
(GRUB_MOD_INIT(terminal)): Split `terminal' command in two commands:
`terminal_input' and `terminal_output'.
* util/grub.d/00_header.in: Adjust `terminal' calls to new
`terminal_input' / `terminal_output' API.
* util/grub-mkconfig.in: Export ${GRUB_TERMINAL_INPUT} and
${GRUB_TERMINAL_OUTPUT} instead of ${GRUB_TERMINAL} (and if user
provided ${GRUB_TERMINAL}, convert it).
2008-11-07 19:11:39 +00:00
|
|
|
|
grub_term_unregister_input (&grub_ofconsole_term_input);
|
|
|
|
|
grub_term_unregister_output (&grub_ofconsole_term_output);
|
2005-03-26 17:34:50 +00:00
|
|
|
|
}
|