summaryrefslogtreecommitdiffstats
path: root/grub-core/term/uboot/console.c
blob: dfdbe990948d3981921750c01038f4198dd9957c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* console.c - console interface layer for U-Boot platforms */
/*
 *  GRUB  --  GRand Unified Bootloader
 *  Copyright (C) 2013  Free Software Foundation, Inc.
 *
 *  GRUB is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GRUB is distributed in the hope that it will be useful,
 *  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
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <grub/term.h>
#include <grub/misc.h>
#include <grub/types.h>
#include <grub/err.h>
#include <grub/terminfo.h>
#include <grub/uboot/uboot.h>
#include <grub/uboot/console.h>

static void
put (struct grub_term_output *term __attribute__ ((unused)), const int c)
{
  grub_uboot_putc (c);
}

static int
readkey (struct grub_term_input *term __attribute__ ((unused)))
{
  if (grub_uboot_tstc () > 0)
    return grub_uboot_getc ();

  return -1;
}

static void
uboot_console_setcursor (struct grub_term_output *term
			 __attribute__ ((unused)), int on
			 __attribute__ ((unused)))
{
  grub_terminfo_setcursor (term, on);
}

static grub_err_t
uboot_console_init_input (struct grub_term_input *term)
{
  return grub_terminfo_input_init (term);
}

extern struct grub_terminfo_output_state uboot_console_terminfo_output;


static grub_err_t
uboot_console_init_output (struct grub_term_output *term)
{
  grub_terminfo_output_init (term);

  return 0;
}

struct grub_terminfo_input_state uboot_console_terminfo_input = {
  .readkey = readkey
};

struct grub_terminfo_output_state uboot_console_terminfo_output = {
  .put = put,
  /* FIXME: In rare cases when console isn't serial,
     determine real width.  */
  .size = { 80, 24 }
};

static struct grub_term_input uboot_console_term_input = {
  .name = "console",
  .init = uboot_console_init_input,
  .getkey = grub_terminfo_getkey,
  .data = &uboot_console_terminfo_input
};

static struct grub_term_output uboot_console_term_output = {
  .name = "console",
  .init = uboot_console_init_output,
  .putchar = grub_terminfo_putchar,
  .getwh = grub_terminfo_getwh,
  .getxy = grub_terminfo_getxy,
  .gotoxy = grub_terminfo_gotoxy,
  .cls = grub_terminfo_cls,
  .setcolorstate = grub_terminfo_setcolorstate,
  .setcursor = uboot_console_setcursor,
  .flags = GRUB_TERM_CODE_TYPE_ASCII,
  .data = &uboot_console_terminfo_output,
  .progress_update_divisor = GRUB_PROGRESS_FAST
};

void
grub_console_init_early (void)
{
  grub_term_register_input ("console", &uboot_console_term_input);
  grub_term_register_output ("console", &uboot_console_term_output);
}


/*
 * grub_console_init_lately():
 *   Initializes terminfo formatting by registering terminal type.
 *   Called after heap has been configured.
 *   
 */
void
grub_console_init_lately (void)
{
  const char *type;

  /* See if explicitly set by U-Boot environment */
  type = grub_uboot_env_get ("grub_term");
  if (!type)
    type = "vt100";

  grub_terminfo_init ();
  grub_terminfo_output_register (&uboot_console_term_output, type);
}

void
grub_console_fini (void)
{
}