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
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
|
/* $OpenBSD: sti.c,v 1.84 2024/08/17 08:45:22 miod Exp $ */
/*
* Copyright (c) 2000-2003 Michael Shalayeff
* All rights reserved.
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR OR HIS RELATIVES 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 MIND, 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.
*/
/*
* TODO:
* call sti procs asynchronously;
* implement console scroll-back;
* X11 support on more models.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <uvm/uvm_extern.h>
#include <machine/bus.h>
#include <dev/wscons/wsdisplayvar.h>
#include <dev/wscons/wsconsio.h>
#include <dev/ic/stireg.h>
#include <dev/ic/stivar.h>
#include "sti.h"
struct cfdriver sti_cd = {
NULL, "sti", DV_DULL
};
int sti_pack_attr(void *, int, int, int, uint32_t *);
int sti_copycols(void *, int, int, int, int);
int sti_copyrows(void *, int, int, int);
int sti_cursor(void *, int, int, int);
int sti_erasecols(void *, int, int, int, uint32_t);
int sti_eraserows(void *, int, int, uint32_t);
int sti_mapchar(void *, int, u_int *);
int sti_putchar(void *, int, int, u_int, uint32_t);
void sti_unpack_attr(void *, uint32_t, int *, int *, int *);
struct wsdisplay_emulops sti_emulops = {
.cursor = sti_cursor,
.mapchar = sti_mapchar,
.putchar = sti_putchar,
.copycols = sti_copycols,
.erasecols = sti_erasecols,
.copyrows = sti_copyrows,
.eraserows = sti_eraserows,
.pack_attr = sti_pack_attr,
.unpack_attr = sti_unpack_attr
};
int sti_alloc_screen(void *, const struct wsscreen_descr *, void **, int *,
int *, uint32_t *);
void sti_free_screen(void *, void *);
int sti_ioctl(void *, u_long, caddr_t, int, struct proc *);
paddr_t sti_mmap(void *, off_t, int);
int sti_show_screen(void *, void *, int, void (*)(void *, int, int),
void *);
const struct wsdisplay_accessops sti_accessops = {
.ioctl = sti_ioctl,
.mmap = sti_mmap,
.alloc_screen = sti_alloc_screen,
.free_screen = sti_free_screen,
.show_screen = sti_show_screen
};
enum sti_bmove_funcs {
bmf_clear, bmf_copy, bmf_invert, bmf_underline
};
void sti_bmove(struct sti_screen *, int, int, int, int, int, int,
enum sti_bmove_funcs);
int sti_init(struct sti_screen *, int);
#define STI_TEXTMODE 0x01
#define STI_CLEARSCR 0x02
#define STI_FBMODE 0x04
int sti_inqcfg(struct sti_screen *, struct sti_inqconfout *);
int sti_setcment(struct sti_screen *, u_int, u_char, u_char, u_char);
struct sti_screen *
sti_attach_screen(struct sti_softc *, int);
void sti_describe_screen(struct sti_softc *, struct sti_screen *);
void sti_end_attach_screen(struct sti_softc *, struct sti_screen *, int);
int sti_fetchfonts(struct sti_screen *, struct sti_inqconfout *, u_int32_t,
u_int);
int32_t sti_gvid(void *, uint32_t, uint32_t *);
void sti_region_setup(struct sti_screen *);
int sti_rom_setup(struct sti_rom *, bus_space_tag_t, bus_space_tag_t,
bus_space_handle_t, bus_addr_t *, u_int);
int sti_screen_setup(struct sti_screen *, int);
int ngle_default_putcmap(struct sti_screen *, u_int, u_int);
void ngle_artist_setupfb(struct sti_screen *);
void ngle_elk_setupfb(struct sti_screen *);
void ngle_timber_setupfb(struct sti_screen *);
int ngle_putcmap(struct sti_screen *, u_int, u_int);
/*
* Helper macros to control whether the STI ROM is accessible on PCI
* devices.
*/
#if NSTI_PCI > 0
#define STI_ENABLE_ROM(sc) \
do { \
if ((sc) != NULL && (sc)->sc_enable_rom != NULL) \
(*(sc)->sc_enable_rom)(sc); \
} while (0)
#define STI_DISABLE_ROM(sc) \
do { \
if ((sc) != NULL && (sc)->sc_disable_rom != NULL) \
(*(sc)->sc_disable_rom)(sc); \
} while (0)
#else
#define STI_ENABLE_ROM(sc) do { /* nothing */ } while (0)
#define STI_DISABLE_ROM(sc) do { /* nothing */ } while (0)
#endif
/* Macros to read larger than 8 bit values from byte roms */
#define parseshort(o) \
((bus_space_read_1(memt, romh, (o) + 3) << 8) | \
(bus_space_read_1(memt, romh, (o) + 7)))
#define parseword(o) \
((bus_space_read_1(memt, romh, (o) + 3) << 24) | \
(bus_space_read_1(memt, romh, (o) + 7) << 16) | \
(bus_space_read_1(memt, romh, (o) + 11) << 8) | \
(bus_space_read_1(memt, romh, (o) + 15)))
int
sti_attach_common(struct sti_softc *sc, bus_space_tag_t iot,
bus_space_tag_t memt, bus_space_handle_t romh, u_int codebase)
{
struct sti_rom *rom;
int rc;
rom = (struct sti_rom *)malloc(sizeof(*rom), M_DEVBUF,
M_NOWAIT | M_ZERO);
if (rom == NULL) {
printf("cannot allocate rom data\n");
return (ENOMEM);
}
rom->rom_softc = sc;
rc = sti_rom_setup(rom, iot, memt, romh, sc->bases, codebase);
if (rc != 0) {
free(rom, M_DEVBUF, sizeof *rom);
return (rc);
}
sc->sc_rom = rom;
sti_describe(sc);
sc->sc_scr = sti_attach_screen(sc,
sc->sc_flags & STI_CONSOLE ? 0 : STI_CLEARSCR);
if (sc->sc_scr == NULL)
rc = ENOMEM;
return (rc);
}
struct sti_screen *
sti_attach_screen(struct sti_softc *sc, int flags)
{
struct sti_screen *scr;
int rc;
scr = (struct sti_screen *)malloc(sizeof(*scr), M_DEVBUF,
M_NOWAIT | M_ZERO);
if (scr == NULL) {
printf("cannot allocate screen data\n");
return (NULL);
}
scr->scr_rom = sc->sc_rom;
rc = sti_screen_setup(scr, flags);
if (rc != 0) {
free(scr, M_DEVBUF, sizeof *scr);
return (NULL);
}
sti_describe_screen(sc, scr);
return (scr);
}
int
sti_rom_setup(struct sti_rom *rom, bus_space_tag_t iot, bus_space_tag_t memt,
bus_space_handle_t romh, bus_addr_t *bases, u_int codebase)
{
struct sti_dd *dd;
int size, i;
vaddr_t va;
paddr_t pa;
STI_ENABLE_ROM(rom->rom_softc);
rom->iot = iot;
rom->memt = memt;
rom->romh = romh;
rom->bases = bases;
/*
* Get ROM header and code function pointers.
*/
dd = &rom->rom_dd;
rom->rom_devtype = bus_space_read_1(memt, romh, 3);
if (rom->rom_devtype == STI_DEVTYPE1) {
dd->dd_type = bus_space_read_1(memt, romh, 0x03);
dd->dd_nmon = bus_space_read_1(memt, romh, 0x07);
dd->dd_grrev = bus_space_read_1(memt, romh, 0x0b);
dd->dd_lrrev = bus_space_read_1(memt, romh, 0x0f);
dd->dd_grid[0] = parseword(0x10);
dd->dd_grid[1] = parseword(0x20);
dd->dd_fntaddr = parseword(0x30) & ~3;
dd->dd_maxst = parseword(0x40);
dd->dd_romend = parseword(0x50) & ~3;
dd->dd_reglst = parseword(0x60) & ~3;
dd->dd_maxreent = parseshort(0x70);
dd->dd_maxtimo = parseshort(0x78);
dd->dd_montbl = parseword(0x80) & ~3;
dd->dd_udaddr = parseword(0x90) & ~3;
dd->dd_stimemreq = parseword(0xa0);
dd->dd_udsize = parseword(0xb0);
dd->dd_pwruse = parseshort(0xc0);
dd->dd_bussup = bus_space_read_1(memt, romh, 0xcb);
dd->dd_ebussup = bus_space_read_1(memt, romh, 0xcf);
dd->dd_altcodet = bus_space_read_1(memt, romh, 0xd3);
dd->dd_eddst[0] = bus_space_read_1(memt, romh, 0xd7);
dd->dd_eddst[1] = bus_space_read_1(memt, romh, 0xdb);
dd->dd_eddst[2] = bus_space_read_1(memt, romh, 0xdf);
dd->dd_cfbaddr = parseword(0xe0) & ~3;
codebase <<= 2;
dd->dd_pacode[0x0] = parseword(codebase + 0x000) & ~3;
dd->dd_pacode[0x1] = parseword(codebase + 0x010) & ~3;
dd->dd_pacode[0x2] = parseword(codebase + 0x020) & ~3;
dd->dd_pacode[0x3] = parseword(codebase + 0x030) & ~3;
dd->dd_pacode[0x4] = parseword(codebase + 0x040) & ~3;
dd->dd_pacode[0x5] = parseword(codebase + 0x050) & ~3;
dd->dd_pacode[0x6] = parseword(codebase + 0x060) & ~3;
dd->dd_pacode[0x7] = parseword(codebase + 0x070) & ~3;
dd->dd_pacode[0x8] = parseword(codebase + 0x080) & ~3;
dd->dd_pacode[0x9] = parseword(codebase + 0x090) & ~3;
dd->dd_pacode[0xa] = parseword(codebase + 0x0a0) & ~3;
dd->dd_pacode[0xb] = parseword(codebase + 0x0b0) & ~3;
dd->dd_pacode[0xc] = parseword(codebase + 0x0c0) & ~3;
dd->dd_pacode[0xd] = parseword(codebase + 0x0d0) & ~3;
dd->dd_pacode[0xe] = parseword(codebase + 0x0e0) & ~3;
dd->dd_pacode[0xf] = parseword(codebase + 0x0f0) & ~3;
} else { /* STI_DEVTYPE4 */
bus_space_read_raw_region_4(memt, romh, 0, (u_int8_t *)dd,
sizeof(*dd));
/* fix pacode... */
bus_space_read_raw_region_4(memt, romh, codebase,
(u_int8_t *)dd->dd_pacode, sizeof(dd->dd_pacode));
}
STI_DISABLE_ROM(rom->rom_softc);
#ifdef STIDEBUG
printf("dd:\n"
"devtype=%x, rev=%x;%d, altt=%x, gid=%08x%08x, font=%x, mss=%x\n"
"end=%x, regions=%x, msto=%x, timo=%d, mont=%x, user=%x[%x]\n"
"memrq=%x, pwr=%d, bus=%x, ebus=%x, cfb=%x\n"
"code=",
dd->dd_type & 0xff, dd->dd_grrev, dd->dd_lrrev, dd->dd_altcodet,
dd->dd_grid[0], dd->dd_grid[1], dd->dd_fntaddr, dd->dd_maxst,
dd->dd_romend, dd->dd_reglst, dd->dd_maxreent, dd->dd_maxtimo,
dd->dd_montbl, dd->dd_udaddr, dd->dd_udsize, dd->dd_stimemreq,
dd->dd_pwruse, dd->dd_bussup, dd->dd_ebussup, dd->dd_cfbaddr);
printf("%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x\n",
dd->dd_pacode[0x0], dd->dd_pacode[0x1], dd->dd_pacode[0x2],
dd->dd_pacode[0x3], dd->dd_pacode[0x4], dd->dd_pacode[0x5],
dd->dd_pacode[0x6], dd->dd_pacode[0x7], dd->dd_pacode[0x8],
dd->dd_pacode[0x9], dd->dd_pacode[0xa], dd->dd_pacode[0xb],
dd->dd_pacode[0xc], dd->dd_pacode[0xd], dd->dd_pacode[0xe],
dd->dd_pacode[0xf]);
#endif
/*
* Take note that it will be necessary to enable the PCI ROM around
* some sti function calls if the MMAP (multiple map) bit is set in
* the bus support flags, which means the PCI ROM is only available
* through the PCI expansion ROM space and never through regular
* PCI BARs.
*/
rom->rom_enable = dd->dd_bussup & STI_BUSSUPPORT_ROMMAP;
/*
* Figure out how much bytes we need for the STI code.
* Note there could be fewer than STI_END entries pointer
* entries populated, especially on older devices.
*/
for (i = STI_END; dd->dd_pacode[i] == 0; i--)
;
size = dd->dd_pacode[i] - dd->dd_pacode[STI_BEGIN];
if (rom->rom_devtype == STI_DEVTYPE1)
size = (size + 3) / 4;
if (size == 0) {
printf(": no code for the requested platform\n");
return (EINVAL);
}
if (!(rom->rom_code = km_alloc(round_page(size), &kv_any,
&kp_zero, &kd_waitok))) {
printf(": cannot allocate %u bytes for code\n", size);
return (ENOMEM);
}
#ifdef STIDEBUG
printf("code=%p[%x]\n", rom->rom_code, size);
#endif
/*
* Copy code into memory and make it executable.
*/
STI_ENABLE_ROM(rom->rom_softc);
if (rom->rom_devtype == STI_DEVTYPE1) {
u_int8_t *p = rom->rom_code;
u_int32_t addr, eaddr;
for (addr = dd->dd_pacode[STI_BEGIN], eaddr = addr + size * 4;
addr < eaddr; addr += 4)
*p++ = bus_space_read_4(memt, romh, addr) & 0xff;
} else /* STI_DEVTYPE4 */
bus_space_read_raw_region_4(memt, romh,
dd->dd_pacode[STI_BEGIN], rom->rom_code, size);
STI_DISABLE_ROM(rom->rom_softc);
/*
* Remap the ROM code as executable. This happens to be the
* only place in the OpenBSD kernel where we need to do this.
* Since the kernel (deliberately) doesn't provide a
* high-level interface to map kernel memory as executable we
* use low-level pmap calls for this.
*/
for (va = (vaddr_t)rom->rom_code;
va < (vaddr_t)rom->rom_code + round_page(size);
va += PAGE_SIZE) {
pmap_extract(pmap_kernel(), va, &pa);
pmap_kenter_pa(va, pa, PROT_READ | PROT_EXEC);
}
pmap_update(pmap_kernel());
/*
* Setup code function pointers.
*/
#define O(i) \
(dd->dd_pacode[(i)] == 0 ? 0 : \
(rom->rom_code + (dd->dd_pacode[(i)] - dd->dd_pacode[0]) / \
(rom->rom_devtype == STI_DEVTYPE1? 4 : 1)))
rom->init = (sti_init_t)O(STI_INIT_GRAPH);
rom->unpmv = (sti_unpmv_t)O(STI_FONT_UNPMV);
rom->blkmv = (sti_blkmv_t)O(STI_BLOCK_MOVE);
rom->inqconf = (sti_inqconf_t)O(STI_INQ_CONF);
rom->scment = (sti_scment_t)O(STI_SCM_ENT);
#undef O
/*
* Set colormap entry is not implemented until 8.04, so force
* a NULL pointer here.
*/
if (dd->dd_grrev < STI_REVISION(8,4)) {
rom->scment = NULL;
}
return (0);
}
/*
* Map all regions.
*/
void
sti_region_setup(struct sti_screen *scr)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t romh = rom->romh;
bus_addr_t *bases = rom->bases;
struct sti_dd *dd = &rom->rom_dd;
struct sti_cfg *cc = &scr->scr_cfg;
struct sti_region regions[STI_REGION_MAX], *r;
u_int regno, regcnt;
bus_addr_t addr;
#ifdef STIDEBUG
printf("stiregions @%p:\n", (void *)dd->dd_reglst);
#endif
/*
* Read the region information.
*/
STI_ENABLE_ROM(rom->rom_softc);
if (rom->rom_devtype == STI_DEVTYPE1) {
for (regno = 0; regno < STI_REGION_MAX; regno++)
*(u_int *)(regions + regno) =
parseword(dd->dd_reglst + regno * 0x10);
} else {
bus_space_read_raw_region_4(memt, romh, dd->dd_reglst,
(u_int8_t *)regions, sizeof regions);
}
STI_DISABLE_ROM(rom->rom_softc);
/*
* Count them.
*/
for (regcnt = 0, r = regions; regcnt < STI_REGION_MAX; regcnt++, r++)
if (r->last)
break;
regcnt++;
/*
* Map them.
*/
for (regno = 0, r = regions; regno < regcnt; regno++, r++) {
if (r->length == 0)
continue;
/*
* Assume an existing mapping exists.
*/
addr = bases[regno] + (r->offset << PGSHIFT);
#ifdef STIDEBUG
printf("%08x @ 0x%08lx%s%s%s%s\n",
r->length << PGSHIFT, addr, r->sys_only ? " sys" : "",
r->cache ? " cache" : "", r->btlb ? " btlb" : "",
r->last ? " last" : "");
#endif
/*
* Region #0 is always the rom, and it should have been
* mapped already.
* XXX This expects a 1:1 mapping...
*/
if (regno == 0 && romh == bases[0]) {
cc->regions[0] = addr;
continue;
}
if (bus_space_map(memt, addr, r->length << PGSHIFT,
BUS_SPACE_MAP_LINEAR | (r->cache ?
BUS_SPACE_MAP_CACHEABLE : 0), &rom->regh[regno]) != 0) {
rom->regh[regno] = romh; /* XXX */
#ifdef STIDEBUG
printf("already mapped region\n");
#endif
} else {
addr = (bus_addr_t)
bus_space_vaddr(memt, rom->regh[regno]);
if (regno == 1) {
scr->fbaddr = addr;
scr->fblen = r->length << PGSHIFT;
}
}
cc->regions[regno] = addr;
}
#ifdef STIDEBUG
/*
* Make sure we'll trap accessing unmapped regions
*/
for (regno = 0; regno < STI_REGION_MAX; regno++)
if (cc->regions[regno] == 0)
cc->regions[regno] = 0x81234567;
#endif
}
/*
* ``gvid'' callback routine.
*
* The FireGL-UX board is using this interface, and will revert to direct
* PDC calls if no gvid callback is set.
* Unfortunately, under OpenBSD it is not possible to invoke PDC directly
* from its physical address once the MMU is turned on, and no documentation
* for the gvid interface (or for the particular PDC_PCI subroutines used
* by the FireGL-UX rom) has been found.
*/
int32_t
sti_gvid(void *v, uint32_t cmd, uint32_t *params)
{
struct sti_screen *scr = v;
struct sti_rom *rom = scr->scr_rom;
/* paranoia */
if (cmd != 0x000c0003)
return -1;
switch (params[0]) {
case 4:
/* register read */
params[2] =
bus_space_read_4(rom->memt, rom->regh[2], params[1]);
return 0;
case 5:
/* register write */
bus_space_write_4(rom->memt, rom->regh[2], params[1],
params[2]);
return 0;
default:
return -1;
}
}
int
sti_screen_setup(struct sti_screen *scr, int flags)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t romh = rom->romh;
struct sti_dd *dd = &rom->rom_dd;
struct sti_cfg *cc = &scr->scr_cfg;
struct sti_inqconfout inq;
struct sti_einqconfout einq;
int error, i;
int geometry_kluge = 0;
u_int fontindex = 0;
bzero(cc, sizeof (*cc));
cc->ext_cfg = &scr->scr_ecfg;
bzero(cc->ext_cfg, sizeof(*cc->ext_cfg));
if (dd->dd_stimemreq) {
scr->scr_ecfg.addr =
malloc(dd->dd_stimemreq, M_DEVBUF, M_NOWAIT | M_ZERO);
if (!scr->scr_ecfg.addr) {
printf("cannot allocate %d bytes for STI\n",
dd->dd_stimemreq);
return (ENOMEM);
}
}
if (dd->dd_ebussup & STI_EBUSSUPPORT_GVID) {
scr->scr_ecfg.future.g.gvid_cmd_arg = scr;
scr->scr_ecfg.future.g.gvid_cmd =
(int32_t (*)(void *, ...))sti_gvid;
}
sti_region_setup(scr);
if ((error = sti_init(scr, 0))) {
printf(": can not initialize (%d)\n", error);
goto fail;
}
bzero(&inq, sizeof(inq));
bzero(&einq, sizeof(einq));
inq.ext = &einq;
if ((error = sti_inqcfg(scr, &inq))) {
printf(": error %d inquiring config\n", error);
goto fail;
}
/*
* Older (rev 8.02) boards report wrong offset values,
* similar to the displayable area size, at least in m68k mode.
* Attempt to detect this and adjust here.
*/
if (inq.owidth == inq.width && inq.oheight == inq.height)
geometry_kluge = 1;
if (geometry_kluge) {
scr->scr_cfg.oscr_width = inq.owidth =
inq.fbwidth - inq.width;
scr->scr_cfg.oscr_height = inq.oheight =
inq.fbheight - inq.height;
}
/*
* Save a few fields for sti_describe_screen() later
*/
scr->fbheight = inq.fbheight;
scr->fbwidth = inq.fbwidth;
scr->oheight = inq.oheight;
scr->owidth = inq.owidth;
bcopy(inq.name, scr->name, sizeof(scr->name));
if ((error = sti_init(scr, STI_TEXTMODE | flags))) {
printf(": can not initialize (%d)\n", error);
goto fail;
}
#ifdef STIDEBUG
printf("conf: bpp=%d planes=%d attr=%b\n"
"crt=0x%x:0x%x:0x%x hw=0x%x:0x%x:0x%x\n", inq.bpp,
inq.planes, inq.attributes, STI_INQCONF_BITS,
einq.crt_config[0], einq.crt_config[1], einq.crt_config[2],
einq.crt_hw[0], einq.crt_hw[1], einq.crt_hw[2]);
#endif
scr->scr_bpp = inq.bppu;
/*
* Although scr->scr_ecfg.current_monitor is not filled by
* sti_init() as expected, we can nevertheless walk the monitor
* list, if there is any, and if we find a mode matching our
* resolution, pick its font index.
*/
if (dd->dd_montbl != 0) {
STI_ENABLE_ROM(rom->rom_softc);
for (i = 0; i < dd->dd_nmon; i++) {
u_int offs = dd->dd_montbl + 8 * i;
u_int32_t m[2];
sti_mon_t mon = (void *)m;
if (rom->rom_devtype == STI_DEVTYPE1) {
m[0] = parseword(4 * offs);
m[1] = parseword(4 * (offs + 4));
} else {
bus_space_read_raw_region_4(memt, romh, offs,
(u_int8_t *)mon, sizeof(*mon));
}
if (mon->width == scr->scr_cfg.scr_width &&
mon->height == scr->scr_cfg.scr_height) {
fontindex = mon->font;
break;
}
}
STI_DISABLE_ROM(rom->rom_softc);
#ifdef STIDEBUG
printf("font index: %d\n", fontindex);
#endif
}
if ((error = sti_fetchfonts(scr, &inq, dd->dd_fntaddr, fontindex))) {
printf(": cannot fetch fonts (%d)\n", error);
goto fail;
}
/*
* setup screen descriptions:
* figure number of fonts supported;
* allocate wscons structures;
* calculate dimensions.
*/
strlcpy(scr->scr_wsd.name, "std", sizeof(scr->scr_wsd.name));
scr->scr_wsd.ncols = inq.width / scr->scr_curfont.width;
scr->scr_wsd.nrows = inq.height / scr->scr_curfont.height;
scr->scr_wsd.textops = &sti_emulops;
scr->scr_wsd.fontwidth = scr->scr_curfont.width;
scr->scr_wsd.fontheight = scr->scr_curfont.height;
scr->scr_wsd.capabilities = WSSCREEN_REVERSE;
scr->scr_scrlist[0] = &scr->scr_wsd;
scr->scr_screenlist.nscreens = 1;
scr->scr_screenlist.screens =
(const struct wsscreen_descr **)scr->scr_scrlist;
#ifndef SMALL_KERNEL
/*
* Decide which board-specific routines to use.
*/
switch (dd->dd_grid[0]) {
case STI_DD_CRX:
scr->setupfb = ngle_elk_setupfb;
scr->putcmap = ngle_putcmap;
scr->reg10_value = 0x13601000;
if (scr->scr_bpp > 8)
scr->reg12_value = NGLE_BUFF1_CMAP3;
else
scr->reg12_value = NGLE_BUFF1_CMAP0;
scr->cmap_finish_register = NGLE_REG_1;
break;
case STI_DD_TIMBER:
scr->setupfb = ngle_timber_setupfb;
scr->putcmap = ngle_putcmap;
scr->reg10_value = 0x13602000;
scr->reg12_value = NGLE_BUFF1_CMAP0;
scr->cmap_finish_register = NGLE_REG_1;
break;
case STI_DD_ARTIST:
scr->setupfb = ngle_artist_setupfb;
scr->putcmap = ngle_putcmap;
scr->reg10_value = 0x13601000;
scr->reg12_value = NGLE_ARTIST_CMAP0;
scr->cmap_finish_register = NGLE_REG_26;
break;
case STI_DD_EG:
scr->setupfb = ngle_artist_setupfb;
scr->putcmap = ngle_putcmap;
scr->reg10_value = 0x13601000;
if (scr->scr_bpp > 8) {
scr->reg12_value = NGLE_BUFF1_CMAP3;
scr->cmap_finish_register = NGLE_REG_1;
} else {
scr->reg12_value = NGLE_ARTIST_CMAP0;
scr->cmap_finish_register = NGLE_REG_26;
}
break;
case STI_DD_GRX:
case STI_DD_CRX24:
case STI_DD_EVRX:
case STI_DD_3X2V:
case STI_DD_DUAL_CRX:
case STI_DD_HCRX:
case STI_DD_SUMMIT:
case STI_DD_PINNACLE:
case STI_DD_LEGO:
case STI_DD_FIREGL:
default:
scr->setupfb = NULL;
scr->putcmap =
rom->scment == NULL ? NULL : ngle_default_putcmap;
break;
}
#endif
return (0);
fail:
/* free resources */
if (scr->scr_romfont != NULL) {
free(scr->scr_romfont, M_DEVBUF, 0);
scr->scr_romfont = NULL;
}
if (scr->scr_ecfg.addr != NULL) {
free(scr->scr_ecfg.addr, M_DEVBUF, 0);
scr->scr_ecfg.addr = NULL;
}
return (ENXIO);
}
void
sti_describe_screen(struct sti_softc *sc, struct sti_screen *scr)
{
struct sti_font *fp = &scr->scr_curfont;
printf("%s: %s, %dx%d frame buffer, %dx%dx%d display\n",
sc->sc_dev.dv_xname, scr->name, scr->fbwidth, scr->fbheight,
scr->scr_cfg.scr_width, scr->scr_cfg.scr_height, scr->scr_bpp);
printf("%s: %dx%d font type %d, %d bpc, charset %d-%d\n",
sc->sc_dev.dv_xname, fp->width, fp->height,
fp->type, fp->bpc, fp->first, fp->last);
}
void
sti_describe(struct sti_softc *sc)
{
struct sti_rom *rom = sc->sc_rom;
struct sti_dd *dd = &rom->rom_dd;
printf(": rev %d.%02d;%d, ID 0x%08X%08X\n",
dd->dd_grrev >> 4, dd->dd_grrev & 0xf,
dd->dd_lrrev, dd->dd_grid[0], dd->dd_grid[1]);
if (sc->sc_scr != NULL)
sti_describe_screen(sc, sc->sc_scr);
}
/*
* Final part of attachment. On hppa where we use the PDC console
* during autoconf, this has to be postponed until autoconf has
* completed.
*/
void
sti_end_attach(void *v)
{
struct sti_softc *sc = (struct sti_softc *)v;
if (sc->sc_scr != NULL)
sti_end_attach_screen(sc, sc->sc_scr,
sc->sc_flags & STI_CONSOLE ? 1 : 0);
}
void
sti_end_attach_screen(struct sti_softc *sc, struct sti_screen *scr, int console)
{
struct wsemuldisplaydev_attach_args waa;
scr->scr_wsmode = WSDISPLAYIO_MODE_EMUL;
waa.console = console;
waa.scrdata = &scr->scr_screenlist;
waa.accessops = &sti_accessops;
waa.accesscookie = scr;
waa.defaultscreens = 0;
/* attach as console if required */
if (console && !ISSET(sc->sc_flags, STI_ATTACHED)) {
uint32_t defattr;
sti_pack_attr(scr, 0, 0, 0, &defattr);
wsdisplay_cnattach(&scr->scr_wsd, scr,
0, scr->scr_wsd.nrows - 1, defattr);
sc->sc_flags |= STI_ATTACHED;
}
config_found(&sc->sc_dev, &waa, wsemuldisplaydevprint);
}
u_int
sti_rom_size(bus_space_tag_t memt, bus_space_handle_t romh)
{
int devtype;
u_int romend;
devtype = bus_space_read_1(memt, romh, 3);
if (devtype == STI_DEVTYPE4) {
bus_space_read_raw_region_4(memt, romh, 0x18,
(u_int8_t *)&romend, 4);
} else {
romend = parseword(0x50);
}
return (round_page(romend));
}
int
sti_fetchfonts(struct sti_screen *scr, struct sti_inqconfout *inq,
u_int32_t baseaddr, u_int fontindex)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t romh = rom->romh;
struct sti_font *fp = &scr->scr_curfont;
u_int32_t addr;
int size;
#ifdef notyet
int uc;
struct {
struct sti_unpmvflags flags;
struct sti_unpmvin in;
struct sti_unpmvout out;
} a;
#endif
/*
* Get the first PROM font in memory
*/
STI_ENABLE_ROM(rom->rom_softc);
rescan:
addr = baseaddr;
do {
if (rom->rom_devtype == STI_DEVTYPE1) {
fp->first = parseshort(addr + 0x00);
fp->last = parseshort(addr + 0x08);
fp->width = bus_space_read_1(memt, romh,
addr + 0x13);
fp->height = bus_space_read_1(memt, romh,
addr + 0x17);
fp->type = bus_space_read_1(memt, romh,
addr + 0x1b);
fp->bpc = bus_space_read_1(memt, romh,
addr + 0x1f);
fp->next = parseword(addr + 0x20);
fp->uheight= bus_space_read_1(memt, romh,
addr + 0x33);
fp->uoffset= bus_space_read_1(memt, romh,
addr + 0x37);
} else { /* STI_DEVTYPE4 */
bus_space_read_raw_region_4(memt, romh, addr,
(u_int8_t *)fp, sizeof(struct sti_font));
}
#ifdef STIDEBUG
STI_DISABLE_ROM(rom->rom_softc);
printf("font@%p: %d-%d, %dx%d, type %d, next %x\n",
(void *)addr, fp->first, fp->last, fp->width, fp->height,
fp->type, fp->next);
STI_ENABLE_ROM(rom->rom_softc);
#endif
if (fontindex == 0) {
size = sizeof(struct sti_font) +
(fp->last - fp->first + 1) * fp->bpc;
if (rom->rom_devtype == STI_DEVTYPE1)
size *= 4;
scr->scr_romfont = malloc(size, M_DEVBUF, M_NOWAIT);
if (scr->scr_romfont == NULL)
return (ENOMEM);
bus_space_read_raw_region_4(memt, romh, addr,
(u_int8_t *)scr->scr_romfont, size);
break;
}
addr = baseaddr + fp->next;
fontindex--;
} while (fp->next != 0);
/*
* If our font index was bogus, we did not find the expected font.
* In this case, pick the first one and be done with it.
*/
if (fp->next == 0 && scr->scr_romfont == NULL) {
fontindex = 0;
goto rescan;
}
STI_DISABLE_ROM(rom->rom_softc);
#ifdef notyet
/*
* If there is enough room in the off-screen framebuffer memory,
* display all the characters there in order to display them
* faster with blkmv operations rather than unpmv later on.
*/
if (size <= inq->fbheight *
(inq->fbwidth - inq->width - inq->owidth)) {
bzero(&a, sizeof(a));
a.flags.flags = STI_UNPMVF_WAIT;
a.in.fg_colour = STI_COLOUR_WHITE;
a.in.bg_colour = STI_COLOUR_BLACK;
a.in.font_addr = scr->scr_romfont;
scr->scr_fontmaxcol = inq->fbheight / fp->height;
scr->scr_fontbase = inq->width + inq->owidth;
for (uc = fp->first; uc <= fp->last; uc++) {
a.in.x = ((uc - fp->first) / scr->scr_fontmaxcol) *
fp->width + scr->scr_fontbase;
a.in.y = ((uc - fp->first) % scr->scr_fontmaxcol) *
fp->height;
a.in.index = uc;
(*scr->unpmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
if (a.out.errno) {
#ifdef STIDEBUG
printf("sti_unpmv %d returned %d\n",
uc, a.out.errno);
#endif
return (0);
}
}
free(scr->scr_romfont, M_DEVBUF, 0);
scr->scr_romfont = NULL;
}
#endif
return (0);
}
/*
* Wrappers around STI code pointers
*/
int
sti_init(struct sti_screen *scr, int mode)
{
struct sti_rom *rom = scr->scr_rom;
struct {
struct sti_initflags flags;
struct sti_initin in;
struct sti_einitin ein;
struct sti_initout out;
} a;
bzero(&a, sizeof(a));
a.flags.flags = STI_INITF_WAIT | STI_INITF_EBET;
if (mode & STI_TEXTMODE) {
a.flags.flags |= STI_INITF_TEXT /* | STI_INITF_PNTS */ |
STI_INITF_ICMT | STI_INITF_CMB;
if (mode & STI_CLEARSCR)
a.flags.flags |= STI_INITF_CLEAR;
} else if (mode & STI_FBMODE) {
a.flags.flags |= STI_INITF_NTEXT /* | STI_INITF_PTS */;
}
a.in.text_planes = 1;
a.in.ext_in = &a.ein;
#ifdef STIDEBUG
printf("sti_init,%p(%x, %p, %p, %p)\n",
rom->init, a.flags.flags, &a.in, &a.out, &scr->scr_cfg);
#endif
/*
* Make the ROM visible during initialization, some devices
* look for various data into their ROM image.
*/
if (rom->rom_enable)
STI_ENABLE_ROM(rom->rom_softc);
(*rom->init)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
if (rom->rom_enable)
STI_DISABLE_ROM(rom->rom_softc);
if (a.out.text_planes != a.in.text_planes)
return (-1); /* not colliding with sti errno values */
return (a.out.errno);
}
int
sti_inqcfg(struct sti_screen *scr, struct sti_inqconfout *out)
{
struct sti_rom *rom = scr->scr_rom;
struct {
struct sti_inqconfflags flags;
struct sti_inqconfin in;
} a;
bzero(&a, sizeof(a));
a.flags.flags = STI_INQCONFF_WAIT;
(*rom->inqconf)(&a.flags, &a.in, out, &scr->scr_cfg);
return out->errno;
}
void
sti_bmove(struct sti_screen *scr, int x1, int y1, int x2, int y2, int h, int w,
enum sti_bmove_funcs f)
{
struct sti_rom *rom = scr->scr_rom;
struct {
struct sti_blkmvflags flags;
struct sti_blkmvin in;
struct sti_blkmvout out;
} a;
bzero(&a, sizeof(a));
a.flags.flags = STI_BLKMVF_WAIT;
switch (f) {
case bmf_clear:
a.flags.flags |= STI_BLKMVF_CLR;
a.in.bg_colour = STI_COLOUR_BLACK;
break;
case bmf_underline:
case bmf_copy:
a.in.fg_colour = STI_COLOUR_WHITE;
a.in.bg_colour = STI_COLOUR_BLACK;
break;
case bmf_invert:
a.flags.flags |= STI_BLKMVF_COLR;
a.in.fg_colour = STI_COLOUR_BLACK;
a.in.bg_colour = STI_COLOUR_WHITE;
break;
}
a.in.srcx = x1;
a.in.srcy = y1;
a.in.dstx = x2;
a.in.dsty = y2;
a.in.height = h;
a.in.width = w;
(*rom->blkmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
#ifdef STIDEBUG
if (a.out.errno)
printf("sti_blkmv returned %d\n", a.out.errno);
#endif
}
int
sti_setcment(struct sti_screen *scr, u_int i, u_char r, u_char g, u_char b)
{
struct sti_rom *rom = scr->scr_rom;
struct {
struct sti_scmentflags flags;
struct sti_scmentin in;
struct sti_scmentout out;
} a;
bzero(&a, sizeof(a));
a.flags.flags = STI_SCMENTF_WAIT;
a.in.entry = i;
a.in.value = (r << 16) | (g << 8) | b;
(*rom->scment)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
#ifdef STIDEBUG
if (a.out.errno)
printf("sti_setcment(%d, %u, %u, %u): %d\n",
i, r, g, b, a.out.errno);
#endif
return a.out.errno;
}
/*
* wsdisplay accessops
*/
int
sti_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct wsdisplay_fbinfo *wdf;
struct wsdisplay_cmap *cmapp;
u_int mode, idx, count;
int ret;
ret = 0;
switch (cmd) {
case WSDISPLAYIO_SMODE:
mode = *(u_int *)data;
switch (mode) {
case WSDISPLAYIO_MODE_EMUL:
if (scr->scr_wsmode != WSDISPLAYIO_MODE_EMUL)
ret = sti_init(scr, STI_TEXTMODE);
break;
case WSDISPLAYIO_MODE_DUMBFB:
if (scr->scr_wsmode != WSDISPLAYIO_MODE_DUMBFB) {
if (scr->setupfb != NULL)
scr->setupfb(scr);
else
#if 0
ret = sti_init(scr, STI_FBMODE);
#else
ret = EINVAL;
#endif
}
break;
case WSDISPLAYIO_MODE_MAPPED:
default:
ret = EINVAL;
break;
}
if (ret == 0)
scr->scr_wsmode = mode;
break;
case WSDISPLAYIO_GTYPE:
*(u_int *)data = WSDISPLAY_TYPE_STI;
break;
case WSDISPLAYIO_GINFO:
wdf = (struct wsdisplay_fbinfo *)data;
wdf->height = scr->scr_cfg.scr_height;
wdf->width = scr->scr_cfg.scr_width;
wdf->depth = scr->scr_bpp;
if (scr->scr_bpp > 8)
wdf->stride = scr->scr_cfg.fb_width * 4;
else
wdf->stride = scr->scr_cfg.fb_width;
wdf->offset = 0;
if (scr->putcmap == NULL || scr->scr_bpp > 8)
wdf->cmsize = 0;
else
wdf->cmsize = STI_NCMAP;
break;
case WSDISPLAYIO_LINEBYTES:
if (scr->scr_bpp > 8)
*(u_int *)data = scr->scr_cfg.fb_width * 4;
else
*(u_int *)data = scr->scr_cfg.fb_width;
break;
case WSDISPLAYIO_GETSUPPORTEDDEPTH:
if (scr->scr_bpp > 8)
*(u_int *)data = WSDISPLAYIO_DEPTH_24_32;
else
*(u_int *)data = WSDISPLAYIO_DEPTH_8;
break;
case WSDISPLAYIO_GETCMAP:
if (scr->putcmap == NULL || scr->scr_bpp > 8)
return ENODEV;
cmapp = (struct wsdisplay_cmap *)data;
idx = cmapp->index;
count = cmapp->count;
if (idx >= STI_NCMAP || count > STI_NCMAP - idx)
return EINVAL;
if ((ret = copyout(&scr->scr_rcmap[idx], cmapp->red, count)))
break;
if ((ret = copyout(&scr->scr_gcmap[idx], cmapp->green, count)))
break;
if ((ret = copyout(&scr->scr_bcmap[idx], cmapp->blue, count)))
break;
break;
case WSDISPLAYIO_PUTCMAP:
if (scr->putcmap == NULL || scr->scr_bpp > 8)
return ENODEV;
cmapp = (struct wsdisplay_cmap *)data;
idx = cmapp->index;
count = cmapp->count;
if (idx >= STI_NCMAP || count > STI_NCMAP - idx)
return EINVAL;
if ((ret = copyin(cmapp->red, &scr->scr_rcmap[idx], count)))
break;
if ((ret = copyin(cmapp->green, &scr->scr_gcmap[idx], count)))
break;
if ((ret = copyin(cmapp->blue, &scr->scr_bcmap[idx], count)))
break;
ret = scr->putcmap(scr, idx, count);
break;
case WSDISPLAYIO_SVIDEO:
case WSDISPLAYIO_GVIDEO:
break;
default:
return (-1); /* not supported yet */
}
return (ret);
}
paddr_t
sti_mmap(void *v, off_t offset, int prot)
{
struct sti_screen *scr = (struct sti_screen *)v;
#if 0
struct sti_rom *rom = scr->scr_rom;
#endif
paddr_t pa;
if ((offset & PAGE_MASK) != 0)
return -1;
if (offset < 0 || offset >= scr->fblen)
return -1;
#if 0 /* XXX not all platforms provide bus_space_mmap() yet */
pa = bus_space_mmap(rom->memt, scr->fbaddr, offset, prot,
BUS_SPACE_MAP_LINEAR);
#else
pa = scr->fbaddr + offset;
#endif
return pa;
}
int
sti_alloc_screen(void *v, const struct wsscreen_descr *type, void **cookiep,
int *cxp, int *cyp, uint32_t *defattr)
{
struct sti_screen *scr = (struct sti_screen *)v;
if (scr->scr_nscreens > 0)
return ENOMEM;
*cookiep = scr;
*cxp = 0;
*cyp = 0;
sti_pack_attr(scr, 0, 0, 0, defattr);
scr->scr_nscreens++;
return 0;
}
void
sti_free_screen(void *v, void *cookie)
{
struct sti_screen *scr = (struct sti_screen *)v;
scr->scr_nscreens--;
}
int
sti_show_screen(void *v, void *cookie, int waitok,
void (*cb)(void *, int, int), void *cbarg)
{
#if 0
struct sti_screen *scr = (struct sti_screen *)v;
#endif
return 0;
}
/*
* wsdisplay emulops
*/
int
sti_cursor(void *v, int on, int row, int col)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct sti_font *fp = &scr->scr_curfont;
sti_bmove(scr,
col * fp->width, row * fp->height,
col * fp->width, row * fp->height,
fp->height, fp->width, bmf_invert);
return 0;
}
/*
* ISO 8859-1 part of Unicode to HP Roman font index conversion array.
*/
static const u_int8_t
sti_unitoroman[0x100 - 0xa0] = {
0xa0, 0xb8, 0xbf, 0xbb, 0xba, 0xbc, 0, 0xbd,
0xab, 0, 0xf9, 0xfb, 0, 0xf6, 0, 0xb0,
0xb3, 0xfe, 0, 0, 0xa8, 0xf3, 0xf4, 0xf2,
0, 0, 0xfa, 0xfd, 0xf7, 0xf8, 0, 0xb9,
0xa1, 0xe0, 0xa2, 0xe1, 0xd8, 0xd0, 0xd3, 0xb4,
0xa3, 0xdc, 0xa4, 0xa5, 0xe6, 0xe5, 0xa6, 0xa7,
0xe3, 0xb6, 0xe8, 0xe7, 0xdf, 0xe9, 0xda, 0,
0xd2, 0xad, 0xed, 0xae, 0xdb, 0xb1, 0xf0, 0xde,
0xc8, 0xc4, 0xc0, 0xe2, 0xcc, 0xd4, 0xd7, 0xb5,
0xc9, 0xc5, 0xc1, 0xcd, 0xd9, 0xd5, 0xd1, 0xdd,
0xe4, 0xb7, 0xca, 0xc6, 0xc2, 0xea, 0xce, 0,
0xd6, 0xcb, 0xc7, 0xc3, 0xcf, 0xb2, 0xf1, 0xef
};
int
sti_mapchar(void *v, int uni, u_int *index)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct sti_font *fp = &scr->scr_curfont;
int c;
switch (fp->type) {
case STI_FONT_HPROMAN8:
if (uni >= 0x80 && uni < 0xa0)
c = -1;
else if (uni >= 0xa0 && uni < 0x100) {
c = (int)sti_unitoroman[uni - 0xa0];
if (c == 0)
c = -1;
} else
c = uni;
break;
default:
c = uni;
break;
}
if (c == -1 || c < fp->first || c > fp->last) {
*index = '?';
return (0);
}
*index = c;
return (5);
}
int
sti_putchar(void *v, int row, int col, u_int uc, uint32_t attr)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct sti_rom *rom = scr->scr_rom;
struct sti_font *fp = &scr->scr_curfont;
int bg, fg;
sti_unpack_attr(scr, attr, &fg, &bg, NULL);
if (scr->scr_romfont != NULL) {
/*
* Font is in memory, use unpmv
*/
struct {
struct sti_unpmvflags flags;
struct sti_unpmvin in;
struct sti_unpmvout out;
} a;
bzero(&a, sizeof(a));
a.flags.flags = STI_UNPMVF_WAIT;
a.in.fg_colour = fg;
a.in.bg_colour = bg;
a.in.x = col * fp->width;
a.in.y = row * fp->height;
a.in.font_addr = scr->scr_romfont;
a.in.index = uc;
(*rom->unpmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
} else {
/*
* Font is in frame buffer, use blkmv
*/
struct {
struct sti_blkmvflags flags;
struct sti_blkmvin in;
struct sti_blkmvout out;
} a;
bzero(&a, sizeof(a));
a.flags.flags = STI_BLKMVF_WAIT;
a.in.fg_colour = fg;
a.in.bg_colour = bg;
a.in.srcx = ((uc - fp->first) / scr->scr_fontmaxcol) *
fp->width + scr->scr_fontbase;
a.in.srcy = ((uc - fp->first) % scr->scr_fontmaxcol) *
fp->height;
a.in.dstx = col * fp->width;
a.in.dsty = row * fp->height;
a.in.height = fp->height;
a.in.width = fp->width;
(*rom->blkmv)(&a.flags, &a.in, &a.out, &scr->scr_cfg);
}
return 0;
}
int
sti_copycols(void *v, int row, int srccol, int dstcol, int ncols)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct sti_font *fp = &scr->scr_curfont;
sti_bmove(scr,
srccol * fp->width, row * fp->height,
dstcol * fp->width, row * fp->height,
fp->height, ncols * fp->width, bmf_copy);
return 0;
}
int
sti_erasecols(void *v, int row, int startcol, int ncols, uint32_t attr)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct sti_font *fp = &scr->scr_curfont;
sti_bmove(scr,
startcol * fp->width, row * fp->height,
startcol * fp->width, row * fp->height,
fp->height, ncols * fp->width, bmf_clear);
return 0;
}
int
sti_copyrows(void *v, int srcrow, int dstrow, int nrows)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct sti_font *fp = &scr->scr_curfont;
sti_bmove(scr, 0, srcrow * fp->height, 0, dstrow * fp->height,
nrows * fp->height, scr->scr_cfg.scr_width, bmf_copy);
return 0;
}
int
sti_eraserows(void *v, int srcrow, int nrows, uint32_t attr)
{
struct sti_screen *scr = (struct sti_screen *)v;
struct sti_font *fp = &scr->scr_curfont;
sti_bmove(scr, 0, srcrow * fp->height, 0, srcrow * fp->height,
nrows * fp->height, scr->scr_cfg.scr_width, bmf_clear);
return 0;
}
int
sti_pack_attr(void *v, int fg, int bg, int flags, uint32_t *pattr)
{
#if 0
struct sti_screen *scr = (struct sti_screen *)v;
#endif
*pattr = flags & WSATTR_REVERSE;
return 0;
}
void
sti_unpack_attr(void *v, uint32_t attr, int *fg, int *bg, int *ul)
{
#if 0
struct sti_screen *scr = (struct sti_screen *)v;
#endif
if (attr & WSATTR_REVERSE) {
*fg = STI_COLOUR_BLACK;
*bg = STI_COLOUR_WHITE;
} else {
*fg = STI_COLOUR_WHITE;
*bg = STI_COLOUR_BLACK;
}
if (ul != NULL)
*ul = 0;
}
int
ngle_default_putcmap(struct sti_screen *scr, u_int idx, u_int count)
{
int i, ret;
for (i = idx + count - 1; i >= (int)idx; i--)
if ((ret = sti_setcment(scr, i, scr->scr_rcmap[i],
scr->scr_gcmap[i], scr->scr_bcmap[i])))
return EINVAL;
return 0;
}
#ifndef SMALL_KERNEL
void ngle_setup_hw(bus_space_tag_t, bus_space_handle_t);
void ngle_setup_fb(bus_space_tag_t, bus_space_handle_t, uint32_t);
void ngle_setup_attr_planes(struct sti_screen *scr);
void ngle_setup_bt458(struct sti_screen *scr);
#define ngle_bt458_write(memt, memh, r, v) \
bus_space_write_4(memt, memh, NGLE_REG_RAMDAC + ((r) << 2), (v) << 24)
void
ngle_artist_setupfb(struct sti_screen *scr)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t memh = rom->regh[2];
ngle_setup_bt458(scr);
ngle_setup_hw(memt, memh);
ngle_setup_fb(memt, memh, scr->reg10_value);
ngle_setup_attr_planes(scr);
ngle_setup_hw(memt, memh);
bus_space_write_4(memt, memh, NGLE_REG_21,
bus_space_read_4(memt, memh, NGLE_REG_21) | 0x0a000000);
bus_space_write_4(memt, memh, NGLE_REG_27,
bus_space_read_4(memt, memh, NGLE_REG_27) | 0x00800000);
}
void
ngle_elk_setupfb(struct sti_screen *scr)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t memh = rom->regh[2];
ngle_setup_bt458(scr);
ngle_setup_hw(memt, memh);
ngle_setup_fb(memt, memh, scr->reg10_value);
ngle_setup_attr_planes(scr);
ngle_setup_hw(memt, memh);
/* enable overlay planes in Bt458 command register */
ngle_bt458_write(memt, memh, 0x0c, 0x06);
ngle_bt458_write(memt, memh, 0x0e, 0x43);
}
void
ngle_timber_setupfb(struct sti_screen *scr)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t memh = rom->regh[2];
ngle_setup_bt458(scr);
ngle_setup_hw(memt, memh);
/* enable overlay planes in Bt458 command register */
ngle_bt458_write(memt, memh, 0x0c, 0x06);
ngle_bt458_write(memt, memh, 0x0e, 0x43);
}
void
ngle_setup_bt458(struct sti_screen *scr)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t memh = rom->regh[2];
ngle_setup_hw(memt, memh);
/* set Bt458 read mask register to all planes */
ngle_bt458_write(memt, memh, 0x08, 0x04);
ngle_bt458_write(memt, memh, 0x0a, 0xff);
}
void
ngle_setup_attr_planes(struct sti_screen *scr)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t memh = rom->regh[2];
ngle_setup_hw(memt, memh);
bus_space_write_4(memt, memh, NGLE_REG_11, 0x2ea0d000);
bus_space_write_4(memt, memh, NGLE_REG_14, 0x23000302);
bus_space_write_4(memt, memh, NGLE_REG_12, scr->reg12_value);
bus_space_write_4(memt, memh, NGLE_REG_8, 0xffffffff);
bus_space_write_4(memt, memh, NGLE_REG_6, 0x00000000);
bus_space_write_4(memt, memh, NGLE_REG_9,
(scr->scr_cfg.scr_width << 16) | scr->scr_cfg.scr_height);
bus_space_write_4(memt, memh, NGLE_REG_6, 0x05000000);
bus_space_write_4(memt, memh, NGLE_REG_9, 0x00040001);
ngle_setup_hw(memt, memh);
bus_space_write_4(memt, memh, NGLE_REG_12, 0x00000000);
ngle_setup_fb(memt, memh, scr->reg10_value);
}
int
ngle_putcmap(struct sti_screen *scr, u_int idx, u_int count)
{
struct sti_rom *rom = scr->scr_rom;
bus_space_tag_t memt = rom->memt;
bus_space_handle_t memh = rom->regh[2];
uint8_t *r, *g, *b;
uint32_t cmap_finish;
if (scr->scr_bpp > 8)
cmap_finish = 0x83000100;
else
cmap_finish = 0x80000100;
r = scr->scr_rcmap + idx;
g = scr->scr_gcmap + idx;
b = scr->scr_bcmap + idx;
ngle_setup_hw(memt, memh);
bus_space_write_4(memt, memh, NGLE_REG_10, 0xbbe0f000);
bus_space_write_4(memt, memh, NGLE_REG_14, 0x03000300);
bus_space_write_4(memt, memh, NGLE_REG_13, 0xffffffff);
while (count-- != 0) {
ngle_setup_hw(memt, memh);
bus_space_write_4(memt, memh, NGLE_REG_3, 0x400 | (idx << 2));
bus_space_write_4(memt, memh, NGLE_REG_4,
(*r << 16) | (*g << 8) | *b);
idx++;
r++, g++, b++;
}
bus_space_write_4(memt, memh, NGLE_REG_2, 0x400);
bus_space_write_4(memt, memh, scr->cmap_finish_register, cmap_finish);
ngle_setup_fb(memt, memh, scr->reg10_value);
return 0;
}
void
ngle_setup_hw(bus_space_tag_t memt, bus_space_handle_t memh)
{
uint8_t stat;
do {
stat = bus_space_read_1(memt, memh, NGLE_REG_15b0);
if (stat == 0)
stat = bus_space_read_1(memt, memh, NGLE_REG_15b0);
} while (stat != 0);
}
void
ngle_setup_fb(bus_space_tag_t memt, bus_space_handle_t memh, uint32_t reg10)
{
ngle_setup_hw(memt, memh);
bus_space_write_4(memt, memh, NGLE_REG_10, reg10);
bus_space_write_4(memt, memh, NGLE_REG_14, 0x83000300);
ngle_setup_hw(memt, memh);
bus_space_write_1(memt, memh, NGLE_REG_16b1, 1);
}
#endif /* SMALL_KERNEL */
|