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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
|
/* $NetBSD: cons.c,v 1.15 1995/07/13 12:02:19 pk Exp $ */
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* This software was developed by the Computer Systems Engineering group
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
* contributed to Berkeley.
*
* All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Lawrence Berkeley Laboratory.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)cons.c 8.3 (Berkeley) 12/14/93
*/
/*
* Console (indirect) driver.
*/
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/file.h>
#include <sys/conf.h>
#include <machine/bsd_openprom.h>
#include <machine/psl.h>
#ifdef SUN4
#include <machine/oldmon.h>
#endif
#include "zs.h"
struct tty *constty = 0; /* virtual console output device */
struct tty *fbconstty = 0; /* tty structure for frame buffer console */
int rom_console_input; /* when set, hardclock calls cnrom() */
int cons_ocount; /* output byte count */
extern struct promvec *promvec;
/*
* The output driver may munge the minor number in cons.t_dev.
*/
struct tty cons; /* rom console tty device */
static void (*fcnstop) __P((struct tty *, int));
static void cnstart __P((struct tty *));
void cnstop __P((struct tty *, int));
static void cnfbstart __P((struct tty *));
static void cnfbstop __P((struct tty *, int));
static void cnfbdma __P((void *));
extern char char_type[];
/*XXX*/static struct tty *
cntty()
{
return &cons;
}
void
consinit()
{
register struct tty *tp = &cons;
register int in, out;
void zsconsole();
/*XXX*/ cdevsw[0].d_tty = cntty;
tp->t_dev = makedev(0, 0); /* /dev/console */
tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
tp->t_param = (int (*)(struct tty *, struct termios *))nullop;
in = *promvec->pv_stdin;
out = *promvec->pv_stdout;
switch (in) {
#if NZS > 0
case PROMDEV_TTYA:
zsconsole(tp, 0, 0, NULL);
break;
case PROMDEV_TTYB:
zsconsole(tp, 1, 0, NULL);
break;
#endif
case PROMDEV_KBD:
/*
* Tell the keyboard driver to direct ASCII input here.
*/
kbd_ascii(tp);
break;
default:
rom_console_input = 1;
printf("unknown console input source %d; using rom\n", in);
break;
}
switch (out) {
#if NZS > 0
case PROMDEV_TTYA:
zsconsole(tp, 0, 1, &fcnstop);
break;
case PROMDEV_TTYB:
zsconsole(tp, 1, 1, &fcnstop);
break;
#endif
case PROMDEV_SCREEN:
fbconstty = tp;
tp->t_oproc = cnfbstart;
fcnstop = cnfbstop;
break;
default:
printf("unknown console output sink %d; using rom\n", out);
tp->t_oproc = cnstart;
fcnstop = (void (*)(struct tty *, int))nullop;
break;
}
}
/* ARGSUSED */
cnopen(dev, flag, mode, p)
dev_t dev;
int flag, mode;
struct proc *p;
{
register struct tty *tp = &cons;
static int firstopen = 1;
if(firstopen) {
clalloc(&tp->t_rawq, 1024, 1);
clalloc(&tp->t_canq, 1024, 1);
/* output queue doesn't need quoting */
clalloc(&tp->t_outq, 1024, 0);
firstopen = 0;
}
if ((tp->t_state & TS_ISOPEN) == 0) {
/*
* Leave baud rate alone!
*/
ttychars(tp);
tp->t_iflag = TTYDEF_IFLAG;
tp->t_oflag = TTYDEF_OFLAG;
tp->t_lflag = TTYDEF_LFLAG;
tp->t_cflag = TTYDEF_CFLAG;
tp->t_state = TS_ISOPEN | TS_CARR_ON;
(void)(*tp->t_param)(tp, &tp->t_termios);
ttsetwater(tp);
} else if (tp->t_state & TS_XCLUDE && p->p_ucred->cr_uid != 0)
return (EBUSY);
return ((*linesw[tp->t_line].l_open)(dev, tp));
}
/* ARGSUSED */
cnclose(dev, flag, mode, p)
dev_t dev;
int flag, mode;
struct proc *p;
{
register struct tty *tp = &cons;
(*linesw[tp->t_line].l_close)(tp, flag);
ttyclose(tp);
return (0);
}
/* ARGSUSED */
cnread(dev, uio, flag)
dev_t dev;
struct uio *uio;
int flag;
{
register struct tty *tp = &cons;
return ((*linesw[tp->t_line].l_read)(tp, uio, flag));
}
/* ARGSUSED */
cnwrite(dev, uio, flag)
dev_t dev;
struct uio *uio;
int flag;
{
register struct tty *tp;
if ((tp = constty) == NULL ||
(tp->t_state & (TS_CARR_ON|TS_ISOPEN)) != (TS_CARR_ON|TS_ISOPEN))
tp = &cons;
return ((*linesw[tp->t_line].l_write)(tp, uio, flag));
}
cnioctl(dev, cmd, data, flag, p)
dev_t dev;
u_long cmd;
caddr_t data;
int flag;
struct proc *p;
{
register struct tty *tp;
int error;
/*
* Superuser can always use this to wrest control of console
* output from the "virtual" console.
*/
if (cmd == TIOCCONS && constty) {
error = suser(p->p_ucred, (u_short *)NULL);
if (error)
return (error);
constty = NULL;
return (0);
}
tp = &cons;
if ((error = linesw[tp->t_line].l_ioctl(tp, cmd, data, flag, p)) >= 0)
return (error);
if ((error = ttioctl(tp, cmd, data, flag, p)) >= 0)
return (error);
return (ENOTTY);
}
cnselect(dev, which, p)
dev_t dev;
int which;
struct proc *p;
{
return (ttselect(makedev(major(dev), 0), which, p));
}
/*
* The rest of this code is run only when we are using the ROM vectors.
*/
/*
* Generic output. We just call putchar. (Very bad for performance.)
*/
static void
cnstart(tp)
register struct tty *tp;
{
register int c, s;
register void (*putc)__P((...));
register int fd, v;
s = spltty();
if (tp->t_state & (TS_TIMEOUT | TS_TTSTOP)) {
splx(s);
return;
}
if ((v = promvec->pv_romvec_vers) > 2) {
putc = (void (*))promvec->pv_v2devops.v2_write;
fd = *promvec->pv_v2bootargs.v2_fd1;
} else
putc = promvec->pv_putchar;
while (tp->t_outq.c_cc) {
c = getc(&tp->t_outq);
/*
* *%&!*& ROM monitor console putchar is not reentrant!
* splhigh/tty around it so as not to run so long with
* clock interrupts blocked.
*/
(void) splhigh();
if (v > 2) {
unsigned char c0 = c & 0177;
(*putc)(fd, &c0, 1);
} else
(*putc)(c & 0177);
(void) spltty();
}
if (tp->t_state & TS_ASLEEP) { /* can't happen? */
tp->t_state &= ~TS_ASLEEP;
wakeup((caddr_t)&tp->t_outq);
}
selwakeup(&tp->t_wsel);
splx(s);
}
void
cnstop(tp, flag)
register struct tty *tp;
int flag;
{
(*fcnstop)(tp, flag);
}
/*
* Frame buffer output.
* We use pseudo-DMA, via the ROM `write string' function, called from
* software clock interrupts.
*/
static void
cnfbstart(tp)
register struct tty *tp;
{
register int s;
s = spltty(); /* paranoid: splsoftclock should suffice */
if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) {
splx(s);
return;
}
/*
* If there are sleepers, and output has drained below low
* water mark, awaken.
*/
if (tp->t_outq.c_cc <= tp->t_lowat) {
if (tp->t_state & TS_ASLEEP) {
tp->t_state &= ~TS_ASLEEP;
wakeup((caddr_t)&tp->t_outq);
}
selwakeup(&tp->t_wsel);
}
if (tp->t_outq.c_cc) {
tp->t_state |= TS_BUSY;
if (s == 0) {
(void) splsoftclock();
cnfbdma((void *)tp);
} else
timeout(cnfbdma, tp, 1);
}
splx(s);
}
/*
* Stop frame buffer output: just assert TS_FLUSH if necessary.
*/
static void
cnfbstop(tp, flag)
register struct tty *tp;
int flag;
{
register int s = spltty(); /* paranoid */
if ((tp->t_state & (TS_BUSY | TS_TTSTOP)) == TS_BUSY)
tp->t_state |= TS_FLUSH;
splx(s);
}
/*
* Do pseudo-dma (called from software interrupt).
*/
static void
cnfbdma(tpaddr)
void *tpaddr;
{
register struct tty *tp = tpaddr;
register char *p, *q;
register int n, c, s;
s = spltty(); /* paranoid */
if (tp->t_state & TS_FLUSH) {
tp->t_state &= ~(TS_BUSY | TS_FLUSH);
splx(s);
} else {
tp->t_state &= ~TS_BUSY;
splx(s);
p = tp->t_outq.c_cf;
n = ndqb(&tp->t_outq, 0);
for (q = p, c = n; --c >= 0; q++)
if (*q & 0200) /* high bits seem to be bad */
*q &= ~0200;
if (promvec->pv_romvec_vers > 2) {
(*promvec->pv_v2devops.v2_write)
(*promvec->pv_v2bootargs.v2_fd1, p, n);
} else
(*promvec->pv_putstr)(p, n);
ndflush(&tp->t_outq, n);
}
if (tp->t_line)
(*linesw[tp->t_line].l_start)(tp);
else
cnfbstart(tp);
}
/*
* The following is for rom console input. The rom will not call
* an `interrupt' routine on console input ready, so we must poll.
* This is all rather sad.
*/
volatile int cn_rxc = -1; /* XXX receive `silo' */
/* called from hardclock, which is above spltty, so no tty calls! */
cnrom()
{
register int c;
if (cn_rxc >= 0)
return (1);
if (promvec->pv_romvec_vers > 2) {
unsigned char c0;
if ((*promvec->pv_v2devops.v2_read)
(*promvec->pv_v2bootargs.v2_fd0, &c0, 1) <= 0)
return (0);
c = c0;
} else if ((c = (*promvec->pv_nbgetchar)()) < 0)
return (0);
cn_rxc = c;
return (1);
}
/* pseudo console software interrupt scheduled when cnrom() returns 1 */
cnrint()
{
register struct tty *tp;
register int c, s;
s = splclock();
c = cn_rxc;
cn_rxc = -1;
splx(s);
if (c < 0)
return;
tp = &cons;
if ((tp->t_cflag & CSIZE) == CS7) {
/* XXX this should be done elsewhere, if at all */
if (tp->t_cflag & PARENB)
if (tp->t_cflag & PARODD ?
(char_type[c & 0177] & 0200) == (c & 0200) :
(char_type[c & 0177] & 0200) != (c & 0200))
c |= TTY_PE;
c &= ~0200;
}
(*linesw[tp->t_line].l_rint)(c, tp);
}
cngetc()
{
register int s, c;
if (promvec->pv_romvec_vers > 2) {
register int n = 0;
unsigned char c0;
while (n <= 0) {
s = splhigh();
n = (*promvec->pv_v2devops.v2_read)
(*promvec->pv_v2bootargs.v2_fd0, &c0, 1);
splx(s);
}
c = c0;
} else {
#ifdef SUN4
/* SUN4 PROM: must turn off echo to avoid double char echo */
extern struct om_vector *oldpvec;
int saveecho;
#endif
s = splhigh();
#ifdef SUN4
if (cputyp == CPU_SUN4) {
saveecho = *(oldpvec->echo);
*(oldpvec->echo) = 0;
}
#endif
c = (*promvec->pv_getchar)();
#ifdef SUN4
if (cputyp == CPU_SUN4)
*(oldpvec->echo) = saveecho;
#endif
splx(s);
}
if (c == '\r')
c = '\n';
return (c);
}
cnputc(c)
register int c;
{
register int s;
if (c == '\n')
cnputc('\r');
s = splhigh();
if (promvec->pv_romvec_vers > 2) {
unsigned char c0 = c;
(*promvec->pv_v2devops.v2_write)
(*promvec->pv_v2bootargs.v2_fd1, &c0, 1);
} else
(*promvec->pv_putchar)(c);
splx(s);
}
cnpollc(on)
int on;
{
}
|