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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 1987, 2010, Oracle and/or its affiliates. All rights reserved.
*/
/*
* "Workstation console" multiplexor driver for Sun.
*
* Sends output to the primary frame buffer using the PROM monitor;
* gets input from a stream linked below us that is the "keyboard
* driver", below which is linked the primary keyboard.
*/
/*
* Locking Policy:
* This module has a D_MTPERMOD inner perimeter which means STREAMS
* only allows one thread to enter this module through STREAMS entry
* points each time -- open() close() put() srv() qtimeout().
* So for the most time we do not need locking in this module, but with
* the following exceptions:
*
* - wc shares three global variables (wc_dip, vc_active_console,
* vc_cons_user, vc_avl_root) with virtual console devname part
* (fs/dev/sdev_vtops.c) which get compiled into genunix.
*
* - wc_modechg_cb() is a callback function which will triggered when
* framebuffer display mode is changed.
*
* - vt_send_hotkeys() is triggered by timeout() which is not STREAMS MT
* safe.
*
* Based on the fact that virtual console devname part and wc_modechg_cb()
* only do read access to the above mentioned shared four global variables,
* It is safe to do locking this way:
* 1) all read access to the four global variables in THIS WC MODULE do not
* need locking;
* 2) all write access to the four global variables in THIS WC MODULE must
* hold vc_lock;
* 3) any access to the four global variables in either DEVNAME PART or the
* CALLBACK must hold vc_lock;
* 4) other global variables which are only shared in this wc module and only
* accessible through STREAMS entry points such as "vc_last_console",
* "vc_inuse_max_minor", "vc_target_console" and "vc_waitactive_list"
* do not need explict locking.
*
* wc_modechg_cb() does read access to vc_state_t::vc_flags,
* vc_state_t::vc_state_lock is used to protect concurrently accesses to
* vc_state_t::vc_flags which may happen from both through STREAMS entry
* points and wc_modechg_cb().
* Since wc_modechg_cb() only does read access to vc_state_t::vc_flags,
* The other parts of wc module (except wc_modechg_cb()) only has to hold
* vc_state_t::vc_flags when writing to vc_state_t::vc_flags.
*
* vt_send_hotkeys() could access vt_pending_vtno at the same time with
* the rest of wc module, vt_pending_vtno_lock is used to protect
* vt_pending_vtno.
*
* Lock order: vc_lock -> vc_state_t::vc_state_lock.
* No overlap between vc_lock and vt_pending_vtno_lock.
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/signal.h>
#include <sys/cred.h>
#include <sys/vnode.h>
#include <sys/termios.h>
#include <sys/termio.h>
#include <sys/ttold.h>
#include <sys/stropts.h>
#include <sys/stream.h>
#include <sys/strsun.h>
#include <sys/tty.h>
#include <sys/buf.h>
#include <sys/uio.h>
#include <sys/stat.h>
#include <sys/sysmacros.h>
#include <sys/errno.h>
#include <sys/proc.h>
#include <sys/procset.h>
#include <sys/fault.h>
#include <sys/siginfo.h>
#include <sys/debug.h>
#include <sys/session.h>
#include <sys/kmem.h>
#include <sys/cpuvar.h>
#include <sys/kbio.h>
#include <sys/strredir.h>
#include <sys/fs/snode.h>
#include <sys/consdev.h>
#include <sys/conf.h>
#include <sys/cmn_err.h>
#include <sys/console.h>
#include <sys/promif.h>
#include <sys/note.h>
#include <sys/polled_io.h>
#include <sys/systm.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>
#include <sys/sunndi.h>
#include <sys/esunddi.h>
#include <sys/sunldi.h>
#include <sys/debug.h>
#include <sys/console.h>
#include <sys/ddi_impldefs.h>
#include <sys/policy.h>
#include <sys/modctl.h>
#include <sys/tem.h>
#include <sys/wscons.h>
#include <sys/vt_impl.h>
/* streams stuff */
_NOTE(SCHEME_PROTECTS_DATA("Unshared data", copyreq))
_NOTE(SCHEME_PROTECTS_DATA("Unshared data", copyresp))
_NOTE(SCHEME_PROTECTS_DATA("Unshared data", datab))
_NOTE(SCHEME_PROTECTS_DATA("Unshared data", iocblk))
_NOTE(SCHEME_PROTECTS_DATA("Unshared data", msgb))
_NOTE(SCHEME_PROTECTS_DATA("Unshared data", queue))
#define MINLINES 10
#define MAXLINES 48
#define LOSCREENLINES 34
#define HISCREENLINES 48
#define MINCOLS 10
#define MAXCOLS 120
#define LOSCREENCOLS 80
#define HISCREENCOLS 120
struct wscons_state {
dev_t wc_dev; /* major/minor for this device */
#ifdef _HAVE_TEM_FIRMWARE
int wc_defer_output; /* set if output device is "slow" */
#endif /* _HAVE_TEM_FIRMWARE */
queue_t *wc_kbdqueue; /* "console keyboard" device queue */
/* below us */
cons_polledio_t wc_polledio; /* polled I/O function pointers */
cons_polledio_t *wc_kb_polledio; /* keyboard's polledio */
unsigned int wc_kb_getpolledio_id; /* id for kb CONSOPENPOLLEDIO */
queue_t *wc_pending_wq;
mblk_t *wc_pending_link; /* I_PLINK pending for kb polledio */
} wscons;
/*
* This module has a D_MTPERMOD inner perimeter, so we don't need to protect
* the variables only shared within this module
*/
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", wscons))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", wscons_state))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", vt_stat))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", vc_waitactive_msg))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", tty_common))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", vt_mode))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", vt_dispinfo))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", winsize))
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data", vc_last_console))
#ifdef _HAVE_TEM_FIRMWARE
ssize_t wc_cons_wrtvec(promif_redir_arg_t arg, uchar_t *s, size_t n);
#endif /* _HAVE_TEM_FIRMWARE */
static int wcopen(queue_t *, dev_t *, int, int, cred_t *);
static int wcclose(queue_t *, int, cred_t *);
static int wcuwput(queue_t *, mblk_t *);
static int wclrput(queue_t *, mblk_t *);
static struct module_info wcm_info = {
0,
"wc",
0,
INFPSZ,
2048,
128
};
static struct qinit wcurinit = {
putq,
NULL,
wcopen,
wcclose,
NULL,
&wcm_info,
NULL
};
static struct qinit wcuwinit = {
wcuwput,
NULL,
wcopen,
wcclose,
NULL,
&wcm_info,
NULL
};
static struct qinit wclrinit = {
wclrput,
NULL,
NULL,
NULL,
NULL,
&wcm_info,
NULL
};
/*
* We always putnext directly to the underlying queue.
*/
static struct qinit wclwinit = {
NULL,
NULL,
NULL,
NULL,
NULL,
&wcm_info,
NULL
};
static struct streamtab wcinfo = {
&wcurinit,
&wcuwinit,
&wclrinit,
&wclwinit,
};
static int wc_info(dev_info_t *, ddi_info_cmd_t, void *, void **result);
static int wc_attach(dev_info_t *, ddi_attach_cmd_t);
DDI_DEFINE_STREAM_OPS(wc_ops, nulldev, nulldev, wc_attach, nodev, nodev,
wc_info, D_MTPERMOD | D_MP, &wcinfo, ddi_quiesce_not_supported);
static void wcreioctl(void *);
static void wcioctl(queue_t *, mblk_t *);
#ifdef _HAVE_TEM_FIRMWARE
static void wcopoll(void *);
static void wconsout(void *);
#endif /* _HAVE_TEM_FIRMWARE */
static void wcrstrt(void *);
static void wcstart(void *);
static void wc_open_kb_polledio(struct wscons_state *wc, queue_t *q,
mblk_t *mp);
static void wc_close_kb_polledio(struct wscons_state *wc, queue_t *q,
mblk_t *mp);
static void wc_polled_putchar(cons_polledio_arg_t arg,
unsigned char c);
static boolean_t wc_polled_ischar(cons_polledio_arg_t arg);
static int wc_polled_getchar(cons_polledio_arg_t arg);
static void wc_polled_enter(cons_polledio_arg_t arg);
static void wc_polled_exit(cons_polledio_arg_t arg);
void wc_get_size(vc_state_t *pvc);
static void wc_modechg_cb(tem_modechg_cb_arg_t arg);
static struct dev_ops wc_ops;
/*
* Debug printing
*/
#ifndef DPRINTF
#ifdef DEBUG
/*PRINTFLIKE1*/
static void wc_dprintf(const char *fmt, ...) __KPRINTFLIKE(1);
#define DPRINTF(l, m, args) \
(((l) >= wc_errlevel) && ((m) & wc_errmask) ? \
wc_dprintf args : \
(void) 0)
/*
* Severity levels for printing
*/
#define PRINT_L0 0 /* print every message */
#define PRINT_L1 1 /* debug */
#define PRINT_L2 2 /* quiet */
/*
* Masks
*/
#define PRINT_MASK_ALL 0xFFFFFFFFU
uint_t wc_errmask = PRINT_MASK_ALL;
uint_t wc_errlevel = PRINT_L2;
#else
#define DPRINTF(l, m, args) /* NOTHING */
#endif
#endif
/*
* Module linkage information for the kernel.
*/
static struct modldrv modldrv = {
&mod_driverops, /* Type of module. This one is a pseudo driver */
"Workstation multiplexer Driver 'wc'",
&wc_ops, /* driver ops */
};
static struct modlinkage modlinkage = {
MODREV_1,
&modldrv,
NULL
};
int
_init(void)
{
int rc;
if ((rc = mod_install(&modlinkage)) == 0)
vt_init();
return (rc);
}
int
_fini(void)
{
return (mod_remove(&modlinkage));
}
int
_info(struct modinfo *modinfop)
{
return (mod_info(&modlinkage, modinfop));
}
/*ARGSUSED*/
static int
wc_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
{
/* create minor node for workstation hard console */
if (ddi_create_minor_node(devi, "wscons", S_IFCHR,
0, DDI_PSEUDO, NULL) == DDI_FAILURE) {
ddi_remove_minor_node(devi, NULL);
return (DDI_FAILURE);
}
mutex_enter(&vc_lock);
wc_dip = devi;
bzero(&(wscons.wc_polledio), sizeof (wscons.wc_polledio));
vt_resize(VC_DEFAULT_COUNT);
mutex_exit(&vc_lock);
return (DDI_SUCCESS);
}
/* ARGSUSED */
static int
wc_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg,
void **result)
{
int error;
switch (infocmd) {
case DDI_INFO_DEVT2DEVINFO:
if (wc_dip == NULL) {
error = DDI_FAILURE;
} else {
*result = (void *) wc_dip;
error = DDI_SUCCESS;
}
break;
case DDI_INFO_DEVT2INSTANCE:
*result = (void *)0;
error = DDI_SUCCESS;
break;
default:
error = DDI_FAILURE;
}
return (error);
}
#ifdef _HAVE_TEM_FIRMWARE
/*
* Output buffer. Protected by the per-module inner perimeter.
*/
#define MAXHIWAT 2000
static char obuf[MAXHIWAT];
#endif /* _HAVE_TEM_FIRMWARE */
static void
wc_init_polledio(void)
{
static boolean_t polledio_inited = B_FALSE;
_NOTE(SCHEME_PROTECTS_DATA("D_MTPERMOD protected data",
polledio_inited))
if (polledio_inited)
return;
polledio_inited = B_TRUE;
/*
* Initialize the parts of the polled I/O struct that
* are common to both input and output modes, but which
* don't flag to the upper layers, which if any of the
* two modes are available. We don't know at this point
* if system is configured CONS_KFB, but we will when
* consconfig_dacf asks us with CONSOPENPOLLED I/O.
*/
bzero(&(wscons.wc_polledio), sizeof (wscons.wc_polledio));
wscons.wc_polledio.cons_polledio_version =
CONSPOLLEDIO_V0;
wscons.wc_polledio.cons_polledio_argument =
(cons_polledio_arg_t)&wscons;
wscons.wc_polledio.cons_polledio_enter =
wc_polled_enter;
wscons.wc_polledio.cons_polledio_exit =
wc_polled_exit;
#ifdef _HAVE_TEM_FIRMWARE
/*
* If we're talking directly to a framebuffer, we assume
* that it's a "slow" device, so that rendering should
* be deferred to a timeout or softcall so that we write
* a bunch of characters at once.
*/
wscons.wc_defer_output = prom_stdout_is_framebuffer();
#endif /* _HAVE_TEM_FIRMWARE */
}
/*ARGSUSED*/
static int
wcopen(queue_t *q, dev_t *devp, int flag, int sflag, cred_t *crp)
{
int minor;
wc_init_polledio();
minor = (int)getminor(*devp);
return (vt_open(minor, q, crp));
}
/*ARGSUSED*/
static int
wcclose(queue_t *q, int flag, cred_t *crp)
{
vc_state_t *pvc = (vc_state_t *)q->q_ptr;
qprocsoff(q);
mutex_enter(&vc_lock);
/*
* If we are closing the VT node which
* /dev/vt/console_user points to, revert
* /dev/vt/console to /dev/console
*/
if (vc_cons_user == pvc->vc_minor)
vc_cons_user = VT_MINOR_INVALID;
if (pvc->vc_minor == 0 || pvc->vc_minor == vc_active_console) {
/*
* If we lose the system console,
* no any other active consoles.
*/
if (pvc->vc_minor == 0 && pvc->vc_minor == vc_active_console) {
vc_active_console = VT_MINOR_INVALID;
vc_last_console = VT_MINOR_INVALID;
}
/*
* just clean for our primary console
* and active console
*/
mutex_enter(&pvc->vc_state_lock);
vt_clean(q, pvc);
mutex_exit(&pvc->vc_state_lock);
mutex_exit(&vc_lock);
return (0);
}
vt_close(q, pvc, crp);
mutex_exit(&vc_lock);
return (0);
}
/*
* Put procedure for upper write queue.
* Respond to M_STOP, M_START, M_IOCTL, and M_FLUSH messages here;
* queue up M_BREAK, M_DELAY, and M_DATA messages for processing by
* the start routine, and then call the start routine; discard
* everything else.
*/
static int
wcuwput(queue_t *q, mblk_t *mp)
{
vc_state_t *pvc = (vc_state_t *)q->q_ptr;
switch (mp->b_datap->db_type) {
case M_STOP:
mutex_enter(&pvc->vc_state_lock);
pvc->vc_flags |= WCS_STOPPED;
mutex_exit(&pvc->vc_state_lock);
freemsg(mp);
break;
case M_START:
mutex_enter(&pvc->vc_state_lock);
pvc->vc_flags &= ~WCS_STOPPED;
mutex_exit(&pvc->vc_state_lock);
wcstart(pvc);
freemsg(mp);
break;
case M_IOCTL: {
struct iocblk *iocp;
struct linkblk *linkp;
iocp = (struct iocblk *)(void *)mp->b_rptr;
switch (iocp->ioc_cmd) {
case I_LINK: /* stupid, but permitted */
case I_PLINK:
if (wscons.wc_kbdqueue != NULL) {
/* somebody already linked */
miocnak(q, mp, 0, EINVAL);
return (0);
}
linkp = (struct linkblk *)(void *)mp->b_cont->b_rptr;
wscons.wc_kbdqueue = WR(linkp->l_qbot);
mp->b_datap->db_type = M_IOCACK;
iocp->ioc_count = 0;
wc_open_kb_polledio(&wscons, q, mp);
break;
case I_UNLINK: /* stupid, but permitted */
case I_PUNLINK:
linkp = (struct linkblk *)(void *)mp->b_cont->b_rptr;
if (wscons.wc_kbdqueue != WR(linkp->l_qbot)) {
/* not us */
miocnak(q, mp, 0, EINVAL);
return (0);
}
mp->b_datap->db_type = M_IOCACK;
iocp->ioc_count = 0;
wc_close_kb_polledio(&wscons, q, mp);
break;
case TCSETSW:
case TCSETSF:
case TCSETAW:
case TCSETAF:
case TCSBRK:
/*
* The changes do not take effect until all
* output queued before them is drained.
* Put this message on the queue, so that
* "wcstart" will see it when it's done
* with the output before it. Poke the
* start routine, just in case.
*/
(void) putq(q, mp);
wcstart(pvc);
break;
case CONSSETABORTENABLE:
case CONSGETABORTENABLE:
case KIOCSDIRECT:
if (wscons.wc_kbdqueue != NULL) {
wscons.wc_pending_wq = q;
(void) putnext(wscons.wc_kbdqueue, mp);
break;
}
/* fall through */
default:
/*
* Do it now.
*/
wcioctl(q, mp);
break;
}
break;
}
case M_FLUSH:
if (*mp->b_rptr & FLUSHW) {
/*
* Flush our write queue.
*/
flushq(q, FLUSHDATA); /* XXX doesn't flush M_DELAY */
*mp->b_rptr &= ~FLUSHW; /* it has been flushed */
}
if (*mp->b_rptr & FLUSHR) {
flushq(RD(q), FLUSHDATA);
qreply(q, mp); /* give the read queues a crack at it */
} else
freemsg(mp);
break;
case M_BREAK:
/*
* Ignore these, as they make no sense.
*/
freemsg(mp);
break;
case M_DELAY:
case M_DATA:
/*
* Queue the message up to be transmitted,
* and poke the start routine.
*/
(void) putq(q, mp);
wcstart(pvc);
break;
case M_IOCDATA:
vt_miocdata(q, mp);
break;
default:
/*
* "No, I don't want a subscription to Chain Store Age,
* thank you anyway."
*/
freemsg(mp);
break;
}
return (0);
}
/*
* Retry an "ioctl", now that "qbufcall" claims we may be able to allocate
* the buffer we need.
*/
/*ARGSUSED*/
static void
wcreioctl(void *arg)
{
vc_state_t *pvc = (vc_state_t *)arg;
queue_t *q;
mblk_t *mp;
pvc->vc_bufcallid = 0;
q = pvc->vc_ttycommon.t_writeq;
if ((mp = pvc->vc_ttycommon.t_iocpending) != NULL) {
/* not pending any more */
pvc->vc_ttycommon.t_iocpending = NULL;
wcioctl(q, mp);
}
}
static int
wc_getterm(mblk_t *mp)
{
char *term;
intptr_t arg;
int flag = ((struct iocblk *)(void *)mp->b_rptr)->ioc_flag;
STRUCT_DECL(cons_getterm, wcterm);
STRUCT_INIT(wcterm, flag);
arg = *((intptr_t *)(void *)mp->b_cont->b_rptr);
if (ddi_copyin((void *)arg, STRUCT_BUF(wcterm),
STRUCT_SIZE(wcterm), flag) != 0) {
return (EFAULT);
}
if (consmode == CONS_FW) {
/* PROM terminal emulator */
term = "sun";
} else {
/* Kernel terminal emulator */
ASSERT(consmode == CONS_KFB);
term = "sun-color";
}
if (STRUCT_FGET(wcterm, cn_term_len) <
strlen(term) + 1) {
return (EOVERFLOW);
}
if (ddi_copyout(term,
STRUCT_FGETP(wcterm, cn_term_type),
strlen(term) + 1, flag) != 0) {
return (EFAULT);
}
return (0);
}
/*
* Process an "ioctl" message sent down to us.
*/
static void
wcioctl(queue_t *q, mblk_t *mp)
{
vc_state_t *pvc = (vc_state_t *)q->q_ptr;
struct iocblk *iocp;
size_t datasize;
int error;
long len;
iocp = (struct iocblk *)(void *)mp->b_rptr;
if ((iocp->ioc_cmd & VTIOC) == VTIOC ||
(iocp->ioc_cmd & KDIOC) == KDIOC) {
vt_ioctl(q, mp);
return;
}
switch (iocp->ioc_cmd) {
case TIOCSWINSZ:
/*
* Ignore all attempts to set the screen size; the
* value in the EEPROM is guaranteed (modulo PROM bugs)
* to be the value used by the PROM monitor code, so it
* is by definition correct. Many programs (e.g.,
* "login" and "tset") will attempt to reset the size
* to (0, 0) or (34, 80), neither of which is
* necessarily correct.
* We just ACK the message, so as not to disturb
* programs that set the sizes.
*/
iocp->ioc_count = 0; /* no data returned */
mp->b_datap->db_type = M_IOCACK;
qreply(q, mp);
return;
case CONSOPENPOLLEDIO:
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wcioctl: CONSOPENPOLLEDIO\n"));
error = miocpullup(mp, sizeof (struct cons_polledio *));
if (error != 0) {
miocnak(q, mp, 0, error);
return;
}
/*
* We are given an appropriate-sized data block,
* and return a pointer to our structure in it.
*/
if (consmode == CONS_KFB)
wscons.wc_polledio.cons_polledio_putchar =
wc_polled_putchar;
*(struct cons_polledio **)(void *)mp->b_cont->b_rptr =
&wscons.wc_polledio;
mp->b_datap->db_type = M_IOCACK;
qreply(q, mp);
break;
case CONS_GETTERM:
if ((error = wc_getterm(mp)) != 0)
miocnak(q, mp, 0, error);
else
miocack(q, mp, 0, 0);
return;
case WC_OPEN_FB:
/*
* Start out pessimistic, so that we can just jump to
* the reply to bail out.
*/
mp->b_datap->db_type = M_IOCNAK;
/*
* First test: really, this should be done only from
* inside the kernel. Unfortunately, that information
* doesn't seem to be available in a streams ioctl,
* so restrict it to root only. (Perhaps we could check
* for ioc_cr == kcred.)
*/
if ((iocp->ioc_error = secpolicy_console(iocp->ioc_cr)) != 0)
goto open_fail;
/*
* Some miscellaneous checks...
*/
iocp->ioc_error = EINVAL;
/*
* If we don't have exactly one continuation block, fail.
*/
if (mp->b_cont == NULL ||
mp->b_cont->b_cont != NULL)
goto open_fail;
/*
* If there's no null terminator in the string, fail.
*/
/* LINTED E_PTRDIFF_OVERFLOW */
len = mp->b_cont->b_wptr - mp->b_cont->b_rptr;
if (memchr(mp->b_cont->b_rptr, 0, len) == NULL)
goto open_fail;
/*
* NOTE: should eventually get default
* dimensions from a property, e.g. screen-#rows.
*/
iocp->ioc_error = tem_info_init((char *)mp->b_cont->b_rptr,
iocp->ioc_cr);
/*
* Of course, if the terminal emulator initialization
* failed, fail.
*/
if (iocp->ioc_error != 0)
goto open_fail;
#ifdef _HAVE_TEM_FIRMWARE
if (prom_stdout_is_framebuffer()) {
/*
* Drivers in the console stream may emit additional
* messages before we are ready. This causes text
* overwrite on the screen. So we set the redirection
* here. It is safe because the ioctl in consconfig_dacf
* will succeed and consmode will be set to CONS_KFB.
*/
prom_set_stdout_redirect(wc_cons_wrtvec,
(promif_redir_arg_t)NULL);
}
#endif /* _HAVE_TEM_FIRMWARE */
tem_register_modechg_cb(wc_modechg_cb,
(tem_modechg_cb_arg_t)&wscons);
/*
* ... and succeed.
*/
mp->b_datap->db_type = M_IOCACK;
open_fail:
qreply(q, mp);
break;
case WC_CLOSE_FB:
/*
* There's nothing that can call this, so it's not
* really implemented.
*/
mp->b_datap->db_type = M_IOCNAK;
/*
* However, if it were implemented, it would clearly
* be root-only.
*/
if ((iocp->ioc_error = secpolicy_console(iocp->ioc_cr)) != 0)
goto close_fail;
iocp->ioc_error = EINVAL;
close_fail:
qreply(q, mp);
break;
default:
/*
* The only way in which "ttycommon_ioctl" can fail is
* if the "ioctl" requires a response containing data
* to be returned to the user, and no mblk could be
* allocated for the data. No such "ioctl" alters our
* state. Thus, we always go ahead and do any
* state-changes the "ioctl" calls for. If we couldn't
* allocate the data, "ttycommon_ioctl" has stashed the
* "ioctl" away safely, so we just call "qbufcall" to
* request that we be called back when we stand a
* better chance of allocating the data.
*/
datasize = ttycommon_ioctl(&pvc->vc_ttycommon, q, mp, &error);
if (datasize != 0) {
if (pvc->vc_bufcallid != 0)
qunbufcall(q, pvc->vc_bufcallid);
pvc->vc_bufcallid = qbufcall(q, datasize, BPRI_HI,
wcreioctl, pvc);
return;
}
if (error < 0) {
if (iocp->ioc_cmd == TCSBRK)
error = 0;
else
error = EINVAL;
}
if (error != 0) {
iocp->ioc_error = error;
mp->b_datap->db_type = M_IOCNAK;
}
qreply(q, mp);
break;
}
}
/*
* This function gets the polled I/O structures from the lower
* keyboard driver. If any initialization or resource allocation
* needs to be done by the lower driver, it will be done when
* the lower driver services this message.
*/
static void
wc_open_kb_polledio(struct wscons_state *wscons, queue_t *q, mblk_t *mp)
{
mblk_t *mp2;
struct iocblk *iocp;
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wc_open_kb_polledio: sending CONSOPENPOLLEDIO\n"));
mp2 = mkiocb(CONSOPENPOLLEDIO);
if (mp2 == NULL) {
/*
* If we can't get an mblk, then wait for it.
*/
goto nomem;
}
mp2->b_cont = allocb(sizeof (struct cons_polledio *), BPRI_HI);
if (mp2->b_cont == NULL) {
/*
* If we can't get an mblk, then wait for it, and release
* the mblk that we have already allocated.
*/
freemsg(mp2);
goto nomem;
}
iocp = (struct iocblk *)(void *)mp2->b_rptr;
iocp->ioc_count = sizeof (struct cons_polledio *);
mp2->b_cont->b_wptr = mp2->b_cont->b_rptr +
sizeof (struct cons_polledio *);
wscons->wc_pending_wq = q;
wscons->wc_pending_link = mp;
wscons->wc_kb_getpolledio_id = iocp->ioc_id;
putnext(wscons->wc_kbdqueue, mp2);
return;
nomem:
iocp = (struct iocblk *)(void *)mp->b_rptr;
iocp->ioc_error = ENOMEM;
mp->b_datap->db_type = M_IOCNAK;
qreply(q, mp);
}
/*
* This function releases the polled I/O structures from the lower
* keyboard driver. If any de-initialization needs to be done, or
* any resources need to be released, it will be done when the lower
* driver services this message.
*/
static void
wc_close_kb_polledio(struct wscons_state *wscons, queue_t *q, mblk_t *mp)
{
mblk_t *mp2;
struct iocblk *iocp;
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wc_close_kb_polledio: sending CONSCLOSEPOLLEDIO\n"));
mp2 = mkiocb(CONSCLOSEPOLLEDIO);
if (mp2 == NULL) {
/*
* If we can't get an mblk, then wait for it.
*/
goto nomem;
}
mp2->b_cont = allocb(sizeof (struct cons_polledio *), BPRI_HI);
if (mp2->b_cont == NULL) {
/*
* If we can't get an mblk, then wait for it, and release
* the mblk that we have already allocated.
*/
freemsg(mp2);
goto nomem;
}
iocp = (struct iocblk *)(void *)mp2->b_rptr;
iocp->ioc_count = 0;
wscons->wc_pending_wq = q;
wscons->wc_pending_link = mp;
wscons->wc_kb_getpolledio_id = iocp->ioc_id;
putnext(wscons->wc_kbdqueue, mp2);
return;
nomem:
iocp = (struct iocblk *)(void *)mp->b_rptr;
iocp->ioc_error = ENOMEM;
mp->b_datap->db_type = M_IOCNAK;
qreply(q, mp);
}
#ifdef _HAVE_TEM_FIRMWARE
/* ARGSUSED */
static void
wcopoll(void *arg)
{
vc_state_t *pvc = (vc_state_t *)arg;
queue_t *q;
q = pvc->vc_ttycommon.t_writeq;
pvc->vc_timeoutid = 0;
mutex_enter(&pvc->vc_state_lock);
/* See if we can continue output */
if ((pvc->vc_flags & WCS_BUSY) && pvc->vc_pendc != -1) {
if (prom_mayput((char)pvc->vc_pendc) == 0) {
pvc->vc_pendc = -1;
pvc->vc_flags &= ~WCS_BUSY;
if (!(pvc->vc_flags&(WCS_DELAY|WCS_STOPPED)))
wcstart(pvc);
} else
pvc->vc_timeoutid = qtimeout(q, wcopoll, pvc, 1);
}
mutex_exit(&pvc->vc_state_lock);
}
#endif /* _HAVE_TEM_FIRMWARE */
/*
* Restart output on the console after a timeout.
*/
/* ARGSUSED */
static void
wcrstrt(void *arg)
{
vc_state_t *pvc = (vc_state_t *)arg;
ASSERT(pvc->vc_ttycommon.t_writeq != NULL);
mutex_enter(&pvc->vc_state_lock);
pvc->vc_flags &= ~WCS_DELAY;
mutex_exit(&pvc->vc_state_lock);
wcstart(pvc);
}
/*
* get screen terminal for current output
*/
static tem_vt_state_t
wc_get_screen_tem(vc_state_t *pvc)
{
if (!tem_initialized(pvc->vc_tem) ||
tem_get_fbmode(pvc->vc_tem) != KD_TEXT)
return (NULL);
return (pvc->vc_tem);
}
/*
* Start console output
*/
static void
wcstart(void *arg)
{
vc_state_t *pvc = (vc_state_t *)arg;
tem_vt_state_t ptem = NULL;
#ifdef _HAVE_TEM_FIRMWARE
int c;
ssize_t cc;
#endif /* _HAVE_TEM_FIRMWARE */
queue_t *q;
mblk_t *bp;
mblk_t *nbp;
/*
* If we're waiting for something to happen (delay timeout to
* expire, current transmission to finish, output to be
* restarted, output to finish draining), don't grab anything
* new.
*/
if (pvc->vc_flags & (WCS_DELAY|WCS_BUSY|WCS_STOPPED))
return;
q = pvc->vc_ttycommon.t_writeq;
/*
* assumes that we have been called by whoever holds the
* exclusionary lock on the write-side queue (protects
* vc_flags and vc_pendc).
*/
for (;;) {
if ((bp = getq(q)) == NULL)
return; /* nothing to transmit */
/*
* We have a new message to work on.
* Check whether it's a delay or an ioctl (the latter
* occurs if the ioctl in question was waiting for the output
* to drain). If it's one of those, process it immediately.
*/
switch (bp->b_datap->db_type) {
case M_DELAY:
/*
* Arrange for "wcrstrt" to be called when the
* delay expires; it will turn WCS_DELAY off,
* and call "wcstart" to grab the next message.
*/
if (pvc->vc_timeoutid != 0)
(void) quntimeout(q, pvc->vc_timeoutid);
pvc->vc_timeoutid = qtimeout(q, wcrstrt, pvc,
(clock_t)(*(unsigned char *)bp->b_rptr + 6));
mutex_enter(&pvc->vc_state_lock);
pvc->vc_flags |= WCS_DELAY;
mutex_exit(&pvc->vc_state_lock);
freemsg(bp);
return; /* wait for this to finish */
case M_IOCTL:
/*
* This ioctl was waiting for the output ahead of
* it to drain; obviously, it has. Do it, and
* then grab the next message after it.
*/
wcioctl(q, bp);
continue;
}
#ifdef _HAVE_TEM_FIRMWARE
if (consmode == CONS_KFB) {
#endif /* _HAVE_TEM_FIRMWARE */
if ((ptem = wc_get_screen_tem(pvc)) != NULL) {
for (nbp = bp; nbp != NULL; nbp = nbp->b_cont) {
if (nbp->b_wptr > nbp->b_rptr) {
(void) tem_write(ptem,
nbp->b_rptr,
/* LINTED */
nbp->b_wptr - nbp->b_rptr,
kcred);
}
}
}
freemsg(bp);
#ifdef _HAVE_TEM_FIRMWARE
continue;
}
/* consmode = CONS_FW */
if (pvc->vc_minor != 0) {
freemsg(bp);
continue;
}
/* LINTED E_PTRDIFF_OVERFLOW */
if ((cc = bp->b_wptr - bp->b_rptr) == 0) {
freemsg(bp);
continue;
}
/*
* Direct output to the frame buffer if this device
* is not the "hardware" console.
*/
if (wscons.wc_defer_output) {
/*
* Never do output here;
* it takes forever.
*/
mutex_enter(&pvc->vc_state_lock);
pvc->vc_flags |= WCS_BUSY;
mutex_exit(&pvc->vc_state_lock);
pvc->vc_pendc = -1;
(void) putbq(q, bp);
if (q->q_count > 128) { /* do it soon */
softcall(wconsout, pvc);
} else { /* wait a bit */
if (pvc->vc_timeoutid != 0)
(void) quntimeout(q,
pvc->vc_timeoutid);
pvc->vc_timeoutid = qtimeout(q, wconsout,
pvc, hz / 30);
}
return;
}
for (;;) {
c = *bp->b_rptr++;
cc--;
if (prom_mayput((char)c) != 0) {
mutex_enter(&pvc->vc_state_lock);
pvc->vc_flags |= WCS_BUSY;
mutex_exit(&pvc->vc_state_lock);
pvc->vc_pendc = c;
if (pvc->vc_timeoutid != 0)
(void) quntimeout(q,
pvc->vc_timeoutid);
pvc->vc_timeoutid = qtimeout(q, wcopoll,
pvc, 1);
if (bp != NULL)
/* not done with this message yet */
(void) putbq(q, bp);
return;
}
while (cc <= 0) {
nbp = bp;
bp = bp->b_cont;
freeb(nbp);
if (bp == NULL)
return;
/* LINTED E_PTRDIFF_OVERFLOW */
cc = bp->b_wptr - bp->b_rptr;
}
}
#endif /* _HAVE_TEM_FIRMWARE */
}
}
#ifdef _HAVE_TEM_FIRMWARE
/*
* Output to frame buffer console.
* It takes a long time to scroll.
*/
/* ARGSUSED */
static void
wconsout(void *arg)
{
vc_state_t *pvc = (vc_state_t *)arg;
uchar_t *cp;
ssize_t cc;
queue_t *q;
mblk_t *bp;
mblk_t *nbp;
char *current_position;
ssize_t bytes_left;
if ((q = pvc->vc_ttycommon.t_writeq) == NULL) {
return; /* not attached to a stream */
}
/*
* Set up to copy up to MAXHIWAT bytes.
*/
current_position = &obuf[0];
bytes_left = MAXHIWAT;
while ((bp = getq(q)) != NULL) {
if (bp->b_datap->db_type == M_IOCTL) {
/*
* This ioctl was waiting for the output ahead of
* it to drain; obviously, it has. Put it back
* so that "wcstart" can handle it, and transmit
* what we've got.
*/
(void) putbq(q, bp);
goto transmit;
}
do {
cp = bp->b_rptr;
/* LINTED E_PTRDIFF_OVERFLOW */
cc = bp->b_wptr - cp;
while (cc != 0) {
if (bytes_left == 0) {
/*
* Out of buffer space; put this
* buffer back on the queue, and
* transmit what we have.
*/
bp->b_rptr = cp;
(void) putbq(q, bp);
goto transmit;
}
*current_position++ = *cp++;
cc--;
bytes_left--;
}
nbp = bp;
bp = bp->b_cont;
freeb(nbp);
} while (bp != NULL);
}
transmit:
if ((cc = MAXHIWAT - bytes_left) != 0)
console_puts(obuf, cc);
mutex_enter(&pvc->vc_state_lock);
pvc->vc_flags &= ~WCS_BUSY;
mutex_exit(&pvc->vc_state_lock);
wcstart(pvc);
}
#endif /* _HAVE_TEM_FIRMWARE */
/*
* Put procedure for lower read queue.
* Pass everything up to queue above "upper half".
*/
static int
wclrput(queue_t *q, mblk_t *mp)
{
vc_state_t *pvc;
queue_t *upq;
struct iocblk *iocp;
pvc = vt_minor2vc(VT_ACTIVE);
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wclrput: wclrput type = 0x%x\n", mp->b_datap->db_type));
switch (mp->b_datap->db_type) {
case M_FLUSH:
if (*mp->b_rptr == FLUSHW || *mp->b_rptr == FLUSHRW) {
/*
* Flush our write queue.
*/
/* XXX doesn't flush M_DELAY */
flushq(WR(q), FLUSHDATA);
*mp->b_rptr = FLUSHR; /* it has been flushed */
}
if (*mp->b_rptr == FLUSHR || *mp->b_rptr == FLUSHRW) {
flushq(q, FLUSHDATA);
*mp->b_rptr = FLUSHW; /* it has been flushed */
qreply(q, mp); /* give the read queues a crack at it */
} else
freemsg(mp);
break;
case M_DATA:
if (consmode == CONS_KFB && vt_check_hotkeys(mp)) {
freemsg(mp);
break;
}
if ((upq = pvc->vc_ttycommon.t_readq) != NULL) {
if (!canput(upq->q_next)) {
ttycommon_qfull(&pvc->vc_ttycommon, upq);
wcstart(pvc);
freemsg(mp);
} else {
putnext(upq, mp);
}
} else
freemsg(mp);
break;
case M_IOCACK:
case M_IOCNAK:
iocp = (struct iocblk *)(void *)mp->b_rptr;
if (wscons.wc_pending_link != NULL &&
iocp->ioc_id == wscons.wc_kb_getpolledio_id) {
switch (mp->b_datap->db_type) {
case M_IOCACK:
switch (iocp->ioc_cmd) {
case CONSOPENPOLLEDIO:
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wclrput: "
"ACK CONSOPENPOLLEDIO\n"));
wscons.wc_kb_polledio =
*(struct cons_polledio **)
(void *)mp->b_cont->b_rptr;
wscons.wc_polledio.
cons_polledio_getchar =
wc_polled_getchar;
wscons.wc_polledio.
cons_polledio_ischar =
wc_polled_ischar;
break;
case CONSCLOSEPOLLEDIO:
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wclrput: "
"ACK CONSCLOSEPOLLEDIO\n"));
wscons.wc_kb_polledio = NULL;
wscons.wc_kbdqueue = NULL;
wscons.wc_polledio.
cons_polledio_getchar = NULL;
wscons.wc_polledio.
cons_polledio_ischar = NULL;
break;
default:
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wclrput: "
"ACK UNKNOWN\n"));
}
break;
case M_IOCNAK:
/*
* Keyboard may or may not support polled I/O.
* This ioctl may have been rejected because
* we only have the wc->conskbd chain built,
* and the keyboard driver has not been linked
* underneath conskbd yet.
*/
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wclrput: NAK\n"));
switch (iocp->ioc_cmd) {
case CONSCLOSEPOLLEDIO:
wscons.wc_kb_polledio = NULL;
wscons.wc_kbdqueue = NULL;
wscons.wc_polledio.
cons_polledio_getchar = NULL;
wscons.wc_polledio.
cons_polledio_ischar = NULL;
break;
}
break;
}
/*
* Discard the response, replace it with the
* pending response to the I_PLINK, then let it
* flow upward.
*/
freemsg(mp);
mp = wscons.wc_pending_link;
wscons.wc_pending_link = NULL;
wscons.wc_kb_getpolledio_id = 0;
}
/* FALLTHROUGH */
default: /* inc M_ERROR, M_HANGUP, M_IOCACK, M_IOCNAK, ... */
if (wscons.wc_pending_wq != NULL) {
qreply(wscons.wc_pending_wq, mp);
wscons.wc_pending_wq = NULL;
break;
}
if ((upq = pvc->vc_ttycommon.t_readq) != NULL) {
putnext(upq, mp);
} else {
DPRINTF(PRINT_L1, PRINT_MASK_ALL,
("wclrput: Message DISCARDED\n"));
freemsg(mp);
}
break;
}
return (0);
}
#ifdef _HAVE_TEM_FIRMWARE
/*
* This routine exists so that prom_write() can redirect writes
* to the framebuffer through the kernel terminal emulator, if
* that configuration is selected during consconfig.
* When the kernel terminal emulator is enabled, consconfig_dacf
* sets up the PROM output redirect vector to enter this function.
* During panic the console will already be powered up as part of
* calling into the prom_*() layer.
*/
/* ARGSUSED */
ssize_t
wc_cons_wrtvec(promif_redir_arg_t arg, uchar_t *s, size_t n)
{
vc_state_t *pvc;
pvc = vt_minor2vc(VT_ACTIVE);
if (pvc->vc_tem == NULL)
return (0);
ASSERT(consmode == CONS_KFB);
if (panicstr)
polled_io_cons_write(s, n);
else
(void) tem_write(pvc->vc_tem, s, n, kcred);
return (n);
}
#endif /* _HAVE_TEM_FIRMWARE */
/*
* These are for systems without OBP, and for devices that cannot be
* shared between Solaris and the OBP.
*/
static void
wc_polled_putchar(cons_polledio_arg_t arg, unsigned char c)
{
vc_state_t *pvc;
pvc = vt_minor2vc(VT_ACTIVE);
if (c == '\n')
wc_polled_putchar(arg, '\r');
if (pvc->vc_tem == NULL) {
/*
* We have no terminal emulator configured. We have no
* recourse but to drop the output on the floor.
*/
return;
}
tem_safe_polled_write(pvc->vc_tem, &c, 1);
}
/*
* These are for systems without OBP, and for devices that cannot be
* shared between Solaris and the OBP.
*/
static int
wc_polled_getchar(cons_polledio_arg_t arg)
{
struct wscons_state *wscons = (struct wscons_state *)arg;
if (wscons->wc_kb_polledio == NULL) {
prom_printf("wscons: getchar with no keyboard support");
prom_printf("Halted...");
for (;;)
/* HANG FOREVER */;
}
return (wscons->wc_kb_polledio->cons_polledio_getchar(
wscons->wc_kb_polledio->cons_polledio_argument));
}
static boolean_t
wc_polled_ischar(cons_polledio_arg_t arg)
{
struct wscons_state *wscons = (struct wscons_state *)arg;
if (wscons->wc_kb_polledio == NULL)
return (B_FALSE);
return (wscons->wc_kb_polledio->cons_polledio_ischar(
wscons->wc_kb_polledio->cons_polledio_argument));
}
static void
wc_polled_enter(cons_polledio_arg_t arg)
{
struct wscons_state *wscons = (struct wscons_state *)arg;
if (wscons->wc_kb_polledio == NULL)
return;
if (wscons->wc_kb_polledio->cons_polledio_enter != NULL) {
wscons->wc_kb_polledio->cons_polledio_enter(
wscons->wc_kb_polledio->cons_polledio_argument);
}
}
static void
wc_polled_exit(cons_polledio_arg_t arg)
{
struct wscons_state *wscons = (struct wscons_state *)arg;
if (wscons->wc_kb_polledio == NULL)
return;
if (wscons->wc_kb_polledio->cons_polledio_exit != NULL) {
wscons->wc_kb_polledio->cons_polledio_exit(
wscons->wc_kb_polledio->cons_polledio_argument);
}
}
#ifdef DEBUG
static void
wc_dprintf(const char *fmt, ...)
{
char buf[256];
va_list ap;
va_start(ap, fmt);
(void) vsprintf(buf, fmt, ap);
va_end(ap);
cmn_err(CE_WARN, "wc: %s", buf);
}
#endif
/*ARGSUSED*/
static void
update_property(vc_state_t *pvc, char *name, ushort_t value)
{
char data[8];
(void) snprintf(data, sizeof (data), "%u", value);
(void) ddi_prop_update_string(wscons.wc_dev, wc_dip, name, data);
}
/*
* Gets the number of text rows and columns and the
* width and height (in pixels) of the console.
*/
void
wc_get_size(vc_state_t *pvc)
{
struct winsize *t = &pvc->vc_ttycommon.t_size;
ushort_t r = LOSCREENLINES, c = LOSCREENCOLS, x = 0, y = 0;
if (pvc->vc_tem != NULL)
tem_get_size(&r, &c, &x, &y);
#ifdef _HAVE_TEM_FIRMWARE
else
console_get_size(&r, &c, &x, &y);
#endif /* _HAVE_TEM_FIRMWARE */
mutex_enter(&pvc->vc_ttycommon.t_excl);
t->ws_col = c;
t->ws_row = r;
t->ws_xpixel = x;
t->ws_ypixel = y;
mutex_exit(&pvc->vc_ttycommon.t_excl);
if (pvc->vc_minor != 0)
return;
/* only for the wscons:0 */
update_property(pvc, "screen-#cols", c);
update_property(pvc, "screen-#rows", r);
update_property(pvc, "screen-width", x);
update_property(pvc, "screen-height", y);
}
/*ARGSUSED*/
static void
wc_modechg_cb(tem_modechg_cb_arg_t arg)
{
minor_t index;
vc_state_t *pvc;
mutex_enter(&vc_lock);
for (index = 0; index < VC_INSTANCES_COUNT; index++) {
pvc = vt_minor2vc(index);
mutex_enter(&pvc->vc_state_lock);
if ((pvc->vc_flags & WCS_ISOPEN) &&
(pvc->vc_flags & WCS_INIT))
wc_get_size(pvc);
mutex_exit(&pvc->vc_state_lock);
}
mutex_exit(&vc_lock);
}
|