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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
/* $OpenBSD: opalcons.c,v 1.3 2020/10/30 13:26:29 kettenis Exp $ */
/*
* Copyright (c) 2020 Mark Kettenis <kettenis@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/systm.h>
#include <sys/tty.h>
#include <machine/bus.h>
#include <machine/conf.h>
#include <machine/fdt.h>
#include <machine/opal.h>
#include <dev/cons.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/fdt.h>
struct opalcons_softc {
struct device sc_dev;
uint64_t sc_reg;
struct tty *sc_tty;
void *sc_ih;
void *sc_si;
};
int opalcons_match(struct device *, void *, void *);
void opalcons_attach(struct device *, struct device *, void *);
struct cfattach opalcons_ca = {
sizeof (struct opalcons_softc), opalcons_match, opalcons_attach
};
struct cfdriver opalcons_cd = {
NULL, "opalcons", DV_DULL
};
int opalcons_intr(void *);
void opalcons_softintr(void *);
void opalconsstart(struct tty *);
int opalconsparam(struct tty *, struct termios *);
int
opalcons_match(struct device *parent, void *match, void *aux)
{
struct fdt_attach_args *faa = aux;
return OF_is_compatible(faa->fa_node, "ibm,opal-console-raw");
}
void
opalcons_attach(struct device *parent, struct device *self, void *aux)
{
struct opalcons_softc *sc = (struct opalcons_softc *)self;
struct fdt_attach_args *faa = aux;
int maj;
sc->sc_reg = OF_getpropint(faa->fa_node, "reg", 0);
/* Locate the major number. */
for (maj = 0; maj < nchrdev; maj++)
if (cdevsw[maj].d_open == opalconsopen)
break;
/*
* Unconditionally set the major/minor here since we attach
* early and are the fallback console device
*/
cn_tab->cn_dev = makedev(maj, self->dv_unit);
if (faa->fa_node == stdout_node)
printf(": console");
sc->sc_si = softintr_establish(IPL_TTY, opalcons_softintr, sc);
if (sc->sc_si == NULL) {
printf(": can't establish soft interrupt");
return;
}
sc->sc_ih = opal_intr_establish(OPAL_EVENT_CONSOLE_INPUT, IPL_TTY,
opalcons_intr, sc);
if (sc->sc_ih == NULL) {
printf(": can't establish interrupt\n");
return;
}
printf("\n");
}
struct opalcons_softc *
opalcons_sc(dev_t dev)
{
int unit = minor(dev);
if (unit >= opalcons_cd.cd_ndevs)
return NULL;
return (struct opalcons_softc *)opalcons_cd.cd_devs[unit];
}
int
opalcons_intr(void *arg)
{
struct opalcons_softc *sc = arg;
if (sc->sc_tty)
softintr_schedule(sc->sc_si);
return 1;
}
void
opalcons_putc(dev_t dev, int c)
{
struct opalcons_softc *sc = opalcons_sc(dev);
uint64_t len = 1;
char ch = c;
opal_console_write(sc->sc_reg, opal_phys(&len), opal_phys(&ch));
}
int
opalconsopen(dev_t dev, int flag, int mode, struct proc *p)
{
struct opalcons_softc *sc = opalcons_sc(dev);
struct tty *tp;
if (sc == NULL)
return ENXIO;
if (sc->sc_tty)
tp = sc->sc_tty;
else
tp = sc->sc_tty = ttymalloc(0);
tp->t_oproc = opalconsstart;
tp->t_param = opalconsparam;
tp->t_dev = dev;
if ((tp->t_state & TS_ISOPEN) == 0) {
ttychars(tp);
tp->t_iflag = TTYDEF_IFLAG;
tp->t_oflag = TTYDEF_OFLAG;
tp->t_cflag = TTYDEF_CFLAG;
tp->t_lflag = TTYDEF_LFLAG;
tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
ttsetwater(tp);
} else if ((tp->t_state & TS_XCLUDE) && suser(p))
return EBUSY;
tp->t_state |= TS_CARR_ON;
return (*linesw[tp->t_line].l_open)(dev, tp, p);
}
int
opalconsclose(dev_t dev, int flag, int mode, struct proc *p)
{
struct opalcons_softc *sc = opalcons_sc(dev);
struct tty *tp;
if (sc == NULL)
return ENXIO;
tp = sc->sc_tty;
(*linesw[tp->t_line].l_close)(tp, flag, p);
ttyclose(tp);
return 0;
}
int
opalconsread(dev_t dev, struct uio *uio, int flag)
{
struct opalcons_softc *sc = opalcons_sc(dev);
struct tty *tp;
if (sc == NULL)
return ENXIO;
tp = sc->sc_tty;
return (*linesw[tp->t_line].l_read)(tp, uio, flag);
}
int
opalconswrite(dev_t dev, struct uio *uio, int flag)
{
struct opalcons_softc *sc = opalcons_sc(dev);
struct tty *tp;
if (sc == NULL)
return ENXIO;
tp = sc->sc_tty;
return (*linesw[tp->t_line].l_write)(tp, uio, flag);
}
int
opalconsioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
{
struct opalcons_softc *sc = opalcons_sc(dev);
struct tty *tp;
int error;
if (sc == NULL)
return ENXIO;
tp = sc->sc_tty;
error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
if (error >= 0)
return error;
error = ttioctl(tp, cmd, data, flag, p);
if (error >= 0)
return error;
return ENOTTY;
}
void
opalconsstart(struct tty *tp)
{
int s;
s = spltty();
if (tp->t_state & (TS_TTSTOP | TS_BUSY)) {
splx(s);
return;
}
ttwakeupwr(tp);
tp->t_state |= TS_BUSY;
while (tp->t_outq.c_cc != 0)
opalcons_putc(tp->t_dev, getc(&tp->t_outq));
tp->t_state &= ~TS_BUSY;
splx(s);
}
int
opalconsstop(struct tty *tp, int flag)
{
int s;
s = spltty();
if (tp->t_state & TS_BUSY)
if ((tp->t_state & TS_TTSTOP) == 0)
tp->t_state |= TS_FLUSH;
splx(s);
return 0;
}
struct tty *
opalconstty(dev_t dev)
{
struct opalcons_softc *sc = opalcons_sc(dev);
if (sc == NULL)
return NULL;
return sc->sc_tty;
}
int
opalconsparam(struct tty *tp, struct termios *t)
{
tp->t_ispeed = t->c_ispeed;
tp->t_ospeed = t->c_ospeed;
tp->t_cflag = t->c_cflag;
return 0;
}
int
opalcons_getc(struct opalcons_softc *sc, int *cp)
{
uint64_t len = 1;
uint64_t error;
char ch;
error = opal_console_read(sc->sc_reg, opal_phys(&len), opal_phys(&ch));
if (error != OPAL_SUCCESS || len != 1)
return 0;
*cp = ch;
return 1;
}
void
opalcons_softintr(void *arg)
{
struct opalcons_softc *sc = arg;
struct tty *tp = sc->sc_tty;
int c;
while (opalcons_getc(sc, &c)) {
if (tp->t_state & TS_ISOPEN)
(*linesw[tp->t_line].l_rint)(c, tp);
}
}
|