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
|
/* $NetBSD: prom.c,v 1.3 1997/09/06 14:03:58 drochner Exp $ */
/*-
* Mach Operating System
* Copyright (c) 1992 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie Mellon
* the rights to redistribute these changes.
*/
#include <sys/cdefs.h>
#include <sys/types.h>
#include "bootstrap.h"
#include "openfirm.h"
static void ofw_cons_probe(struct console *cp);
static int ofw_cons_init(int);
void ofw_cons_putchar(int);
int ofw_cons_getchar(void);
int ofw_cons_poll(void);
static ihandle_t stdin;
static ihandle_t stdout;
struct console ofwconsole = {
"ofw",
"Open Firmware console",
0,
ofw_cons_probe,
ofw_cons_init,
ofw_cons_putchar,
ofw_cons_getchar,
ofw_cons_poll,
};
static void
ofw_cons_probe(struct console *cp)
{
OF_getprop(chosen, "stdin", &stdin, sizeof(stdin));
OF_getprop(chosen, "stdout", &stdout, sizeof(stdout));
cp->c_flags |= C_PRESENTIN|C_PRESENTOUT;
}
static int
ofw_cons_init(int arg)
{
return 0;
}
void
ofw_cons_putchar(int c)
{
char cbuf;
if (c == '\n') {
cbuf = '\r';
OF_write(stdout, &cbuf, 1);
}
cbuf = c;
OF_write(stdout, &cbuf, 1);
}
static int saved_char = -1;
int
ofw_cons_getchar()
{
unsigned char ch = '\0';
int l;
if (saved_char != -1) {
l = saved_char;
saved_char = -1;
return l;
}
/* At least since version 4.0.0, QEMU became bug-compatible
* with PowerVM's vty, by inserting a \0 after every \r.
* As this confuses loader's interpreter and as a \0 coming
* from the console doesn't seem reasonable, it's filtered here. */
if (OF_read(stdin, &ch, 1) > 0 && ch != '\0')
return (ch);
return (-1);
}
int
ofw_cons_poll()
{
unsigned char ch;
if (saved_char != -1)
return 1;
if (OF_read(stdin, &ch, 1) > 0) {
saved_char = ch;
return 1;
}
return 0;
}
|