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
|
/*
* Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved.
* Copyright 2001-2003 S3 Graphics, Inc. All Rights Reserved.
* Copyright 2006 Thomas Hellström. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sub license,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/*
* 2D acceleration functions for the VIA/S3G UniChrome IGPs.
*
* Mostly rewritten, and modified for EXA support, by Thomas Hellström.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <ws_dri_bufmgr.h>
#include <X11/Xarch.h>
#include "xaalocal.h"
#include "xaarop.h"
#include "miline.h"
#include "via.h"
#include "via_driver.h"
#include "via_regs.h"
#include "via_id.h"
#include "via_dmabuffer.h"
#include "ochr_ioctl.h"
#ifdef X_HAVE_XAAGETROP
#define VIAACCELPATTERNROP(vRop) (XAAGetPatternROP(vRop) << 24)
#define VIAACCELCOPYROP(vRop) (XAAGetCopyROP(vRop) << 24)
#else
#define VIAACCELPATTERNROP(vRop) (XAAPatternROP[vRop] << 24)
#define VIAACCELCOPYROP(vRop) (XAACopyROP[vRop] << 24)
#endif
#undef VIA_DEBUG_COMPOSITE
/*
* Use PCI MMIO to flush the command buffer when AGP DMA is not available.
*/
static void
viaDumpDMA(ViaCommandBuffer * buf)
{
register CARD32 *bp = buf->buf;
CARD32 *endp = bp + buf->pos;
while (bp != endp) {
if (((bp - buf->buf) & 3) == 0) {
ErrorF("\n %04lx: ", (unsigned long)(bp - buf->buf));
}
ErrorF("0x%08x ", (unsigned)*bp++);
}
ErrorF("\n");
}
#ifdef XF86DRI
/*
* Flush the command buffer using DRM. If in PCI mode, we can bypass DRM,
* but not for command buffers that contain 3D engine state, since then
* the DRM command verifier will lose track of the 3D engine state.
*/
static void
viaFlushDRIEnabled(ViaCommandBuffer * cb)
{
ScrnInfoPtr pScrn = cb->pScrn;
VIAPtr pVia = VIAPTR(pScrn);
int tmpSize;
int ret;
Via3DState *v3d = &pVia->v3d;
/* Align end of command buffer for AGP DMA. */
if (pVia->agpDMA && cb->mode == 2 && cb->rindex != HC_ParaType_CmdVdata
&& (cb->pos & 1)) {
OUT_RING(HC_DUMMY);
}
tmpSize = cb->pos * sizeof(CARD32);
cb->mode = 0;
cb->has3dState = FALSE;
ret = ochr_execbuf(pVia->drmFD, cb);
if (ret) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"Command buffer submission failed: \"%s\".\n",
strerror(-ret));
viaDumpDMA(cb);
}
cb->pos = 0;
ret = ochr_reset_cmdlists(cb);
if (ret) {
FatalError("Failed trying to reset command buffer: \"%s\".\n",
strerror(-ret));
}
/*
* Force re-emission of volatile 2D- and 3D state:
*/
if (cb->inComposite) {
v3d->emitState(v3d, &pVia->cb, GL_TRUE);
v3d->emitClipRect(v3d, &pVia->cb, 0, 0, cb->compWidth,
cb->compHeight);
}
cb->srcPixmap = NULL;
cb->dstPixmap = NULL;
}
#endif
/*
* Initialize a command buffer. Some fields are currently not used since they
* are intended for Unichrome Pro group A video commands.
*/
int
viaSetupCBuffer(ScrnInfoPtr pScrn, ViaCommandBuffer * buf, unsigned size)
{
#ifdef XF86DRI
VIAPtr pVia = VIAPTR(pScrn);
#endif
buf->pScrn = pScrn;
buf->bufSize = ((size == 0) ? VIA_DMASIZE : size) >> 2;
buf->buf = (CARD32 *) xcalloc(buf->bufSize, sizeof(CARD32));
if (!buf->buf)
return BadAlloc;
buf->waitFlags = 0;
buf->pos = 0;
buf->mode = 0;
buf->header_start = 0;
buf->rindex = 0;
buf->has3dState = FALSE;
buf->flushFunc = NULL;
buf->inComposite = FALSE;
#ifdef XF86DRI
if (pVia->directRenderingEnabled) {
buf->flushFunc = viaFlushDRIEnabled;
}
#endif
buf->reloc_info = ochr_create_reloc_buffer();
if (!buf->reloc_info)
goto out_err0;
buf->validate_list = driBOCreateList(30);
if (!buf->validate_list)
goto out_err1;
return Success;
out_err1:
ochr_free_reloc_buffer(buf->reloc_info);
out_err0:
xfree(buf->buf);
return BadAlloc;
}
/*
* Free resources associated with a command buffer.
*/
void
viaTearDownCBuffer(ViaCommandBuffer * buf)
{
if (buf->validate_list) {
driBOUnrefUserList(buf->validate_list);
driBOFreeList(buf->validate_list);
buf->validate_list = NULL;
}
if (buf->reloc_info) {
ochr_free_reloc_buffer(buf->reloc_info);
buf->reloc_info = NULL;
}
if (buf && buf->buf)
xfree(buf->buf);
buf->buf = NULL;
}
/*
* Update our 2D state (TwoDContext) with a new mode.
*/
static Bool
viaAccelSetMode(int bpp, ViaTwodContext * tdc)
{
tdc->bpp = bpp;
switch (bpp) {
case 16:
tdc->mode = VIA_GEM_16bpp;
tdc->bytesPPShift = 1;
return TRUE;
case 32:
tdc->mode = VIA_GEM_32bpp;
tdc->bytesPPShift = 2;
return TRUE;
case 8:
tdc->mode = VIA_GEM_8bpp;
tdc->bytesPPShift = 0;
return TRUE;
default:
tdc->bytesPPShift = 0;
return FALSE;
}
}
/*
* Initialize the 2D engine and set the 2D context mode to the
* current screen depth. Also enable the virtual queue.
*/
void
viaInitialize2DEngine(ScrnInfoPtr pScrn)
{
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
viaAccelSetMode(pScrn->bitsPerPixel, tdc);
}
/*
* Wait for acceleration engines idle. An expensive way to sync.
*/
void
viaAccelSync(ScrnInfoPtr pScrn)
{
VIAPtr pVia = VIAPTR(pScrn);
int loop = 0;
mem_barrier();
switch (pVia->Chipset) {
case VIA_P4M890:
case VIA_K8M890:
case VIA_P4M900:
while ((VIAGETREG(VIA_REG_STATUS) &
(VIA_CMD_RGTR_BUSY | VIA_2D_ENG_BUSY))
&& (loop++ < MAXLOOP)) ;
break;
default:
while (!(VIAGETREG(VIA_REG_STATUS) & VIA_VR_QUEUE_BUSY)
&& (loop++ < MAXLOOP)) ;
while ((VIAGETREG(VIA_REG_STATUS) &
(VIA_CMD_RGTR_BUSY | VIA_2D_ENG_BUSY | VIA_3D_ENG_BUSY))
&& (loop++ < MAXLOOP)) ;
break;
}
}
static unsigned long
viaExaSuperPixmapOffset(PixmapPtr p,
struct _DriBufferObject **driBuf)
{
ScreenPtr pScreen = p->drawable.pScreen;
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
void *ptr;
struct _ViaOffscreenBuffer *buf;
ptr = (void *) exaGetPixmapOffset(p) +
(unsigned long) pVia->exaMem.virtual;
buf = viaInBuffer(&pVia->offscreen, ptr);
if (!buf)
FatalError("Offscreen pixmap is not offscreen.\n");
*driBuf = buf->buf;
return (unsigned long)ptr - (unsigned long) buf->virtual +
driBOPoolOffset(buf->buf);
}
static Bool
viaEmitPixmap(ViaCommandBuffer *cb,
PixmapPtr pDstPix,
PixmapPtr pSrcPix)
{
struct _DriBufferObject *buf;
unsigned long delta;
int ret;
if (pDstPix != NULL && cb->dstPixmap != pDstPix) {
delta = viaExaSuperPixmapOffset(pDstPix, &buf);
OUT_RING_H1(VIA_REG_DSTBASE, 0);
OUT_RING_H1(VIA_REG_DSTPOS, 0);
ret = ochr_2d_relocation(cb, buf, delta, 32, 0,
DRM_BO_FLAG_MEM_VRAM, DRM_BO_MASK_MEM);
if (ret)
goto out_err;
cb->dstPixmap = pDstPix;
}
if (pSrcPix != NULL && cb->srcPixmap != pSrcPix) {
delta = viaExaSuperPixmapOffset(pSrcPix, &buf);
OUT_RING_H1(VIA_REG_SRCBASE, 0);
OUT_RING_H1(VIA_REG_SRCPOS, 0);
ret = ochr_2d_relocation(cb, buf, delta, 32, 0,
DRM_BO_FLAG_MEM_VRAM, DRM_BO_MASK_MEM);
if (ret)
goto out_err;
cb->srcPixmap = pSrcPix;
}
return TRUE;
out_err:
return FALSE;
}
/*
* Emit a solid blit operation to the command buffer.
*/
static void
viaAccelSolidHelper(ViaCommandBuffer * cb, int x, int y, int w, int h,
struct _DriBufferObject *buf,
unsigned delta, unsigned bpp,
CARD32 mode, unsigned pitch,
CARD32 fg, CARD32 cmd)
{
CARD32 pos = (y << 16) | (x & 0xFFFF);
int ret;
BEGIN_RING(14);
OUT_RING_H1(VIA_REG_GEMODE, mode);
OUT_RING_H1(VIA_REG_PITCH, VIA_PITCH_ENABLE | (pitch >> 3) << 16);
OUT_RING_H1(VIA_REG_DSTBASE, 0);
OUT_RING_H1(VIA_REG_DSTPOS, 0);
ret = ochr_2d_relocation(cb, buf, delta, bpp, pos,
DRM_BO_FLAG_MEM_VRAM, DRM_BO_MASK_MEM);
OUT_RING_H1(VIA_REG_DIMENSION, ((h - 1) << 16) | (w - 1));
OUT_RING_H1(VIA_REG_FGCOLOR, fg);
OUT_RING_H1(VIA_REG_GECMD, cmd);
ADVANCE_RING;
cb->dstPixmap = NULL;
}
static void
viaAccelSolidPixmapHelper(ViaCommandBuffer * cb, int x, int y, int w, int h,
PixmapPtr pPix,
CARD32 mode, unsigned pitch,
CARD32 fg, CARD32 cmd)
{
CARD32 pos = (y << 16) | (x & 0xFFFF);
Bool ret;
BEGIN_RING(16);
OUT_RING_H1(VIA_REG_GEMODE, mode);
OUT_RING_H1(VIA_REG_PITCH, VIA_PITCH_ENABLE | (pitch >> 3) << 16);
ret = viaEmitPixmap(cb, pPix, NULL);
OUT_RING_H1(VIA_REG_DSTPOS, pos);
OUT_RING_H1(VIA_REG_DIMENSION, ((h - 1) << 16) | (w - 1));
OUT_RING_H1(VIA_REG_FGCOLOR, fg);
OUT_RING_H1(VIA_REG_GECMD, cmd);
ADVANCE_RING_VARIABLE;
}
/*
* Check if we can use a planeMask and update the 2D context accordingly.
*/
static Bool
viaAccelPlaneMaskHelper(ViaTwodContext * tdc, CARD32 planeMask)
{
CARD32 modeMask = (1 << ((1 << tdc->bytesPPShift) << 3)) - 1;
CARD32 curMask = 0x00000000;
CARD32 curByteMask;
int i;
if ((planeMask & modeMask) != modeMask) {
/* Masking doesn't work in 8bpp. */
if (modeMask == 0xFF) {
tdc->keyControl &= 0x0FFFFFFF;
return FALSE;
}
/* Translate the bit planemask to a byte planemask. */
for (i = 0; i < (1 << tdc->bytesPPShift); ++i) {
curByteMask = (0xFF << (i << 3));
if ((planeMask & curByteMask) == 0) {
curMask |= (1 << i);
} else if ((planeMask & curByteMask) != curByteMask) {
tdc->keyControl &= 0x0FFFFFFF;
return FALSE;
}
}
ErrorF("DEBUG: planeMask 0x%08x, curMask 0%02x\n",
(unsigned)planeMask, (unsigned)curMask);
tdc->keyControl = (tdc->keyControl & 0x0FFFFFFF) | (curMask << 28);
}
return TRUE;
}
/*
* Emit transparency state and color to the command buffer.
*/
static void
viaAccelTransparentHelper(ViaTwodContext * tdc, ViaCommandBuffer * cb,
CARD32 keyControl, CARD32 transColor,
Bool usePlaneMask)
{
tdc->keyControl &= ((usePlaneMask) ? 0xF0000000 : 0x00000000);
tdc->keyControl |= (keyControl & 0x0FFFFFFF);
BEGIN_RING(4);
OUT_RING_H1(VIA_REG_KEYCONTROL, tdc->keyControl);
if (keyControl) {
OUT_RING_H1(VIA_REG_SRCCOLORKEY, transColor);
}
ADVANCE_RING_VARIABLE;
}
/*
* Emit a copy blit operation to the command buffer.
*/
static void
viaAccelCopyPixmapHelper(ViaCommandBuffer * cb, int xs, int ys, int xd, int yd,
int w, int h,
PixmapPtr pSrcPixmap,
PixmapPtr pDstPixmap,
CARD32 mode, unsigned srcPitch, unsigned dstPitch,
CARD32 cmd)
{
int ret;
if (cmd & VIA_GEC_DECY) {
ys += h - 1;
yd += h - 1;
}
if (cmd & VIA_GEC_DECX) {
xs += w - 1;
xd += w - 1;
}
BEGIN_RING(20);
OUT_RING_H1(VIA_REG_GEMODE, mode);
ret = viaEmitPixmap(cb, pDstPixmap, pSrcPixmap);
OUT_RING_H1(VIA_REG_SRCPOS, (ys << 16) | (xs & 0xFFFF));
OUT_RING_H1(VIA_REG_DSTPOS, (yd << 16) | (xd & 0xFFFF));
OUT_RING_H1(VIA_REG_PITCH, VIA_PITCH_ENABLE |
((dstPitch >> 3) << 16) | (srcPitch >> 3));
OUT_RING_H1(VIA_REG_DIMENSION, ((h - 1) << 16) | (w - 1));
OUT_RING_H1(VIA_REG_GECMD, cmd);
ADVANCE_RING_VARIABLE;
}
/*
* Emit a copy blit operation to the command buffer.
*/
static void
viaAccelCopyHelper(ViaCommandBuffer * cb, int xs, int ys, int xd, int yd,
int w, int h,
struct _DriBufferObject *buf,
unsigned long delta,
unsigned int bpp,
CARD32 mode, unsigned srcPitch, unsigned dstPitch,
CARD32 cmd)
{
int ret;
CARD32 srcPos;
CARD32 dstPos;
if (cmd & VIA_GEC_DECY) {
ys += h - 1;
yd += h - 1;
}
if (cmd & VIA_GEC_DECX) {
xs += w - 1;
xd += w - 1;
}
srcPos = (ys << 16) | (xs & 0xFFFF);
dstPos = (yd << 16) | (xd & 0xFFFF);
BEGIN_RING(20);
OUT_RING_H1(VIA_REG_GEMODE, mode);
OUT_RING_H1(VIA_REG_SRCBASE, 0);
OUT_RING_H1(VIA_REG_SRCPOS, 0);
ret = ochr_2d_relocation(cb, buf, delta, bpp, srcPos,
DRM_BO_FLAG_MEM_VRAM, DRM_BO_MASK_MEM);
OUT_RING_H1(VIA_REG_DSTBASE, 0);
OUT_RING_H1(VIA_REG_DSTPOS, 0);
ret = ochr_2d_relocation(cb, buf, delta, bpp, dstPos,
DRM_BO_FLAG_MEM_VRAM, DRM_BO_MASK_MEM);
OUT_RING_H1(VIA_REG_PITCH, VIA_PITCH_ENABLE |
((dstPitch >> 3) << 16) | (srcPitch >> 3));
OUT_RING_H1(VIA_REG_DIMENSION, ((h - 1) << 16) | (w - 1));
OUT_RING_H1(VIA_REG_GECMD, cmd);
ADVANCE_RING_VARIABLE;
cb->srcPixmap = NULL;
cb->dstPixmap = NULL;
}
static void
viaExaWaitMarker(ScreenPtr pScreen, int marker)
{
;
}
static int
viaExaMarkSync(ScreenPtr pScreen)
{
return 1;
}
/*
* Check if we need to force upload of the whole 3D state (when other
* clients or subsystems have touched the 3D engine). Also tell DRI
* clients and subsystems that we have touched the 3D engine.
*/
static Bool
viaCheckUpload(ScrnInfoPtr pScrn, Via3DState * v3d)
{
VIAPtr pVia = VIAPTR(pScrn);
Bool forceUpload;
forceUpload = (pVia->lastToUpload != v3d);
pVia->lastToUpload = v3d;
#ifdef XF86DRI
if (pVia->directRenderingEnabled) {
volatile struct drm_via_sarea *saPriv = (struct drm_via_sarea *)
DRIGetSAREAPrivate(pScrn->pScreen);
int myContext = DRIGetContext(pScrn->pScreen);
forceUpload = forceUpload || (saPriv->ctxOwner != myContext);
saPriv->ctxOwner = myContext;
}
#endif
return forceUpload;
}
static Bool
viaOrder(CARD32 val, CARD32 * shift)
{
*shift = 0;
while (val > (1 << *shift))
(*shift)++;
return (val == (1 << *shift));
}
/*
* Exa functions. It is assumed that EXA does not exceed the blitter limits.
*/
struct _ViaOffscreenBuffer *
viaInBuffer(struct _WSDriListHead *head, void *ptr)
{
struct _ViaOffscreenBuffer *entry;
struct _WSDriListHead *list;
unsigned long offset;
WSDRILISTFOREACH(list, head) {
entry = WSDRILISTENTRY(list, struct _ViaOffscreenBuffer, head);
offset = (unsigned long)ptr - (unsigned long)entry->virtual;
if (offset < entry->size)
return entry;
}
return NULL;
}
static Bool
viaExaPixmapIsOffscreen(PixmapPtr p)
{
ScreenPtr pScreen = p->drawable.pScreen;
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
if (pVia->vtNotified == TRUE)
return FALSE;
return (viaInBuffer(&pVia->offscreen, p->devPrivate.ptr) != NULL);
}
static Bool
viaExaPrepareSolid(PixmapPtr pPixmap, int alu, Pixel planeMask, Pixel fg)
{
ScrnInfoPtr pScrn = xf86Screens[pPixmap->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
RING_VARS;
if (exaGetPixmapPitch(pPixmap) & 7)
return FALSE;
if (!viaAccelSetMode(pPixmap->drawable.depth, tdc))
return FALSE;
if (!viaAccelPlaneMaskHelper(tdc, planeMask))
return FALSE;
viaAccelTransparentHelper(tdc, cb, 0x0, 0x0, TRUE);
tdc->cmd = VIA_GEC_BLT | VIA_GEC_FIXCOLOR_PAT | VIAACCELPATTERNROP(alu);
tdc->fgColor = fg;
return TRUE;
}
static void
viaExaSolid(PixmapPtr pPixmap, int x1, int y1, int x2, int y2)
{
ScrnInfoPtr pScrn = xf86Screens[pPixmap->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
CARD32 dstPitch, dstOffset;
int w = x2 - x1, h = y2 - y1;
struct _DriBufferObject *buf;
RING_VARS;
dstPitch = exaGetPixmapPitch(pPixmap);
dstOffset = viaExaSuperPixmapOffset(pPixmap, &buf);
viaAccelSolidPixmapHelper(cb, x1, y1, w, h, pPixmap,
tdc->mode, dstPitch, tdc->fgColor, tdc->cmd);
}
static void
viaExaDoneSolidCopy(PixmapPtr pPixmap)
{
ScrnInfoPtr pScrn = xf86Screens[pPixmap->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
RING_VARS;
FLUSH_RING;
}
static void
viaExaDoneComposite(PixmapPtr pPixmap)
{
ScrnInfoPtr pScrn = xf86Screens[pPixmap->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
RING_VARS;
cb->inComposite = FALSE;
FLUSH_RING;
}
static Bool
viaExaPrepareCopy(PixmapPtr pSrcPixmap, PixmapPtr pDstPixmap, int xdir,
int ydir, int alu, Pixel planeMask)
{
ScrnInfoPtr pScrn = xf86Screens[pDstPixmap->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
RING_VARS;
if (pSrcPixmap->drawable.bitsPerPixel != pDstPixmap->drawable.bitsPerPixel)
return FALSE;
if ((tdc->srcPitch = exaGetPixmapPitch(pSrcPixmap)) & 3)
return FALSE;
if (exaGetPixmapPitch(pDstPixmap) & 7)
return FALSE;
tdc->cmd = VIA_GEC_BLT | VIAACCELCOPYROP(alu);
if (xdir < 0)
tdc->cmd |= VIA_GEC_DECX;
if (ydir < 0)
tdc->cmd |= VIA_GEC_DECY;
if (!viaAccelSetMode(pDstPixmap->drawable.bitsPerPixel, tdc))
return FALSE;
if (!viaAccelPlaneMaskHelper(tdc, planeMask))
return FALSE;
viaAccelTransparentHelper(tdc, cb, 0x0, 0x0, TRUE);
tdc->pSrcPixmap = pSrcPixmap;
return TRUE;
}
static void
viaExaCopy(PixmapPtr pDstPixmap, int srcX, int srcY, int dstX, int dstY,
int width, int height)
{
ScrnInfoPtr pScrn = xf86Screens[pDstPixmap->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
RING_VARS;
if (!width || !height)
return;
viaAccelCopyPixmapHelper(cb, srcX, srcY, dstX, dstY, width, height,
tdc->pSrcPixmap, pDstPixmap, tdc->mode, tdc->srcPitch,
exaGetPixmapPitch(pDstPixmap), tdc->cmd);
}
#ifdef VIA_DEBUG_COMPOSITE
static void
viaExaCompositePictDesc(PicturePtr pict, char *string, int n)
{
char format[20];
char size[20];
if (!pict) {
snprintf(string, n, "None");
return;
}
switch (pict->format) {
case PICT_x8r8g8b8:
snprintf(format, 20, "RGB8888");
break;
case PICT_a8r8g8b8:
snprintf(format, 20, "ARGB8888");
break;
case PICT_r5g6b5:
snprintf(format, 20, "RGB565 ");
break;
case PICT_x1r5g5b5:
snprintf(format, 20, "RGB555 ");
break;
case PICT_a8:
snprintf(format, 20, "A8 ");
break;
case PICT_a1:
snprintf(format, 20, "A1 ");
break;
default:
snprintf(format, 20, "0x%x", (int)pict->format);
break;
}
snprintf(size, 20, "%dx%d%s", pict->pDrawable->width,
pict->pDrawable->height, pict->repeat ? " R" : "");
snprintf(string, n, "0x%lx: fmt %s (%s)", (long)pict->pDrawable, format,
size);
}
static void
viaExaPrintComposite(CARD8 op,
PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst)
{
char sop[20];
char srcdesc[40], maskdesc[40], dstdesc[40];
switch (op) {
case PictOpSrc:
sprintf(sop, "Src");
break;
case PictOpOver:
sprintf(sop, "Over");
break;
default:
sprintf(sop, "0x%x", (int)op);
break;
}
viaExaCompositePictDesc(pSrc, srcdesc, 40);
viaExaCompositePictDesc(pMask, maskdesc, 40);
viaExaCompositePictDesc(pDst, dstdesc, 40);
ErrorF("Composite fallback: op %s, \n"
" src %s, \n"
" mask %s, \n"
" dst %s, \n", sop, srcdesc, maskdesc, dstdesc);
}
#endif /* VIA_DEBUG_COMPOSITE */
/*
* Helper for bitdepth expansion.
*/
static CARD32
viaBitExpandHelper(CARD32 pixel, CARD32 bits)
{
CARD32 component, mask, tmp;
component = pixel & ((1 << bits) - 1);
mask = (1 << (8 - bits)) - 1;
tmp = component << (8 - bits);
return ((component & 1) ? (tmp | mask) : tmp);
}
/*
* Extract the components from a pixel of the given format to an argb8888 pixel.
* This is used to extract data from one-pixel repeat pixmaps.
* Assumes little endian.
*/
static void
viaPixelARGB8888(unsigned format, void *pixelP, CARD32 * argb8888)
{
CARD32 bits, shift, pixel, bpp;
bpp = PICT_FORMAT_BPP(format);
if (bpp <= 8) {
pixel = *((CARD8 *) pixelP);
} else if (bpp <= 16) {
pixel = *((CARD16 *) pixelP);
} else {
pixel = *((CARD32 *) pixelP);
}
switch (PICT_FORMAT_TYPE(format)) {
case PICT_TYPE_A:
bits = PICT_FORMAT_A(format);
*argb8888 = viaBitExpandHelper(pixel, bits) << 24;
return;
case PICT_TYPE_ARGB:
shift = 0;
bits = PICT_FORMAT_B(format);
*argb8888 = viaBitExpandHelper(pixel, bits);
shift += bits;
bits = PICT_FORMAT_G(format);
*argb8888 |= viaBitExpandHelper(pixel >> shift, bits) << 8;
shift += bits;
bits = PICT_FORMAT_R(format);
*argb8888 |= viaBitExpandHelper(pixel >> shift, bits) << 16;
shift += bits;
bits = PICT_FORMAT_A(format);
*argb8888 |= ((bits) ? viaBitExpandHelper(pixel >> shift,
bits) : 0xFF) << 24;
return;
case PICT_TYPE_ABGR:
shift = 0;
bits = PICT_FORMAT_B(format);
*argb8888 = viaBitExpandHelper(pixel, bits) << 16;
shift += bits;
bits = PICT_FORMAT_G(format);
*argb8888 |= viaBitExpandHelper(pixel >> shift, bits) << 8;
shift += bits;
bits = PICT_FORMAT_R(format);
*argb8888 |= viaBitExpandHelper(pixel >> shift, bits);
shift += bits;
bits = PICT_FORMAT_A(format);
*argb8888 |= ((bits) ? viaBitExpandHelper(pixel >> shift,
bits) : 0xFF) << 24;
return;
default:
break;
}
return;
}
/*
* Check if the above function will work.
*/
static Bool
viaExpandablePixel(int format)
{
int formatType = PICT_FORMAT_TYPE(format);
return (formatType == PICT_TYPE_A ||
formatType == PICT_TYPE_ABGR || formatType == PICT_TYPE_ARGB);
}
#ifdef XF86DRI
#if 0
static int
viaAccelDMADownload(ScrnInfoPtr pScrn, unsigned long fbOffset,
unsigned srcPitch, unsigned char *dst,
unsigned dstPitch, unsigned w, unsigned h)
{
VIAPtr pVia = VIAPTR(pScrn);
struct drm_via_dmablit blit[2], *curBlit;
unsigned char *sysAligned = NULL;
Bool doSync[2], useBounceBuffer;
unsigned pitch, numLines[2];
int curBuf, err, i, ret, blitHeight;
ret = 0;
useBounceBuffer = (((unsigned long)dst & 15) || (dstPitch & 15));
doSync[0] = FALSE;
doSync[1] = FALSE;
curBuf = 1;
blitHeight = h;
pitch = dstPitch;
if (useBounceBuffer) {
pitch = ALIGN_TO(dstPitch, 16);
blitHeight = VIA_DMA_DL_SIZE / pitch;
}
while (doSync[0] || doSync[1] || h != 0) {
curBuf = 1 - curBuf;
curBlit = &blit[curBuf];
if (doSync[curBuf]) {
do {
err = drmCommandWrite(pVia->drmFD, DRM_VIA_BLIT_SYNC,
&curBlit->sync, sizeof(curBlit->sync));
} while (err == -EAGAIN);
if (err)
return err;
doSync[curBuf] = FALSE;
if (useBounceBuffer) {
for (i = 0; i < numLines[curBuf]; ++i) {
memcpy(dst, curBlit->mem_addr, w);
dst += dstPitch;
curBlit->mem_addr += pitch;
}
}
}
if (h == 0)
continue;
curBlit->num_lines = (h > blitHeight) ? blitHeight : h;
h -= curBlit->num_lines;
numLines[curBuf] = curBlit->num_lines;
sysAligned =
(unsigned char *)pVia->dBounce + (curBuf * VIA_DMA_DL_SIZE);
sysAligned = (unsigned char *)
ALIGN_TO((unsigned long)sysAligned, 16);
curBlit->mem_addr = (useBounceBuffer) ? sysAligned : dst;
curBlit->line_length = w;
curBlit->mem_stride = pitch;
curBlit->fb_addr = fbOffset;
curBlit->fb_stride = srcPitch;
curBlit->to_fb = 0;
fbOffset += curBlit->num_lines * srcPitch;
do {
err = drmCommandWriteRead(pVia->drmFD, DRM_VIA_DMA_BLIT, curBlit,
sizeof(*curBlit));
} while (err == -EAGAIN);
if (err) {
ret = err;
h = 0;
continue;
}
doSync[curBuf] = TRUE;
}
return ret;
}
/*
* Use PCI DMA if we can. If the system alignments don't match, we're using
* an aligned bounce buffer for pipelined PCI DMA and memcpy.
* Throughput for large transfers is around 65 MB/s.
*/
static Bool
viaExaDownloadFromScreen(PixmapPtr pSrc, int x, int y, int w, int h,
char *dst, int dst_pitch)
{
ScrnInfoPtr pScrn = xf86Screens[pSrc->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
unsigned srcPitch = exaGetPixmapPitch(pSrc);
unsigned wBytes = (pSrc->drawable.bitsPerPixel * w + 7) >> 3;
unsigned srcOffset;
char *bounceAligned = NULL;
unsigned totSize;
if (!w || !h)
return TRUE;
srcOffset = x * pSrc->drawable.bitsPerPixel;
if (srcOffset & 3)
return FALSE;
srcOffset = viaExaPixmapOffset(pSrc) + y * srcPitch + (srcOffset >> 3);
totSize = wBytes * h;
exaWaitSync(pScrn->pScreen);
if (totSize < VIA_MIN_DOWNLOAD) {
return FALSE;
#if 0
bounceAligned = (char *)pVia->FBBase + srcOffset;
while (h--) {
memcpy(dst, bounceAligned, wBytes);
dst += dst_pitch;
bounceAligned += srcPitch;
}
return TRUE;
#endif
}
if (!pVia->directRenderingEnabled)
return FALSE;
if ((srcPitch & 3) || (srcOffset & 3)) {
ErrorF("VIA EXA download src_pitch misaligned\n");
return FALSE;
}
if (viaAccelDMADownload(pScrn, srcOffset, srcPitch, (unsigned char *)dst,
dst_pitch, wBytes, h))
return FALSE;
return TRUE;
}
#endif
#endif
#if 0
static Bool
viaExaUploadToScratch(PixmapPtr pSrc, PixmapPtr pDst)
{
ScrnInfoPtr pScrn = xf86Screens[pSrc->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
char *src, *dst;
unsigned w, wBytes, srcPitch, h;
CARD32 dstPitch;
size = dstPitch * h;
if (!pVia->scratchAddr)
return FALSE;
*pDst = *pSrc;
w = pSrc->drawable.width;
h = pSrc->drawable.height;
wBytes = (w * pSrc->drawable.bitsPerPixel + 7) >> 3;
dstPitch = (wBytes + 31) & ~31;
if (dstPitch * h > pVia->exaScratchSize * 1024) {
ErrorF("EXA UploadToScratch Failed %u %u %u %u\n",
dstPitch, h, dstPitch * h, pVia->exaScratchSize * 1024);
return FALSE;
}
pDst->devKind = dstPitch;
pDst->devPrivate.ptr = dst = pVia->scratchAddr;
src = pSrc->devPrivate.ptr;
srcPitch = exaGetPixmapPitch(pSrc);
/*
* Copying to AGP needs not be HW accelerated.
* If scratch is in FB, we are without DRI and HW accel.
*/
viaAccelSync(pScrn);
while (h--) {
memcpy(dst, src, wBytes);
dst += dstPitch;
src += srcPitch;
}
return TRUE;
}
#endif
static Bool
viaExaCheckComposite(int op, PicturePtr pSrcPicture,
PicturePtr pMaskPicture, PicturePtr pDstPicture)
{
ScrnInfoPtr pScrn = xf86Screens[pDstPicture->pDrawable->pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
Via3DState *v3d = &pVia->v3d;
/* Reject small composites early. They are done much faster in software. */
if (!pSrcPicture->repeat &&
pSrcPicture->pDrawable->width *
pSrcPicture->pDrawable->height < VIA_MIN_COMPOSITE) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Size.\n");
#endif
return FALSE;
}
if (pMaskPicture &&
!pMaskPicture->repeat &&
pMaskPicture->pDrawable->width *
pMaskPicture->pDrawable->height < VIA_MIN_COMPOSITE) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Size.\n");
#endif
return FALSE;
}
if (pSrcPicture->transform ||
(pMaskPicture && pMaskPicture->transform)) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Tranform\n");
#endif
return FALSE;
}
if (pMaskPicture && pMaskPicture->componentAlpha) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Component Alpha operation\n");
#endif
return FALSE;
}
if (!v3d->opSupported(op)) {
#ifdef VIA_DEBUG_COMPOSITE
#warning Composite verbose debug turned on.
ErrorF("Operator not supported\n");
viaExaPrintComposite(op, pSrcPicture, pMaskPicture, pDstPicture);
#endif
return FALSE;
}
/*
* FIXME: A8 destination formats are currently not supported and do not
* seem supported by the hardware, although there are some leftover
* register settings apparent in the via_3d_reg.h file. We need to fix this
* (if important), by using component ARGB8888 operations with bitmask.
*/
if (!v3d->dstSupported(pDstPicture->format)) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Destination format not supported:\n");
viaExaPrintComposite(op, pSrcPicture, pMaskPicture, pDstPicture);
#endif
return FALSE;
}
if (v3d->texSupported(pSrcPicture->format)) {
if (pMaskPicture && (PICT_FORMAT_A(pMaskPicture->format) == 0 ||
!v3d->texSupported(pMaskPicture->format))) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Mask format not supported:\n");
viaExaPrintComposite(op, pSrcPicture, pMaskPicture, pDstPicture);
#endif
return FALSE;
}
return TRUE;
}
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Src format not supported:\n");
viaExaPrintComposite(op, pSrcPicture, pMaskPicture, pDstPicture);
#endif
return FALSE;
}
static Bool
viaExaPrepareComposite(int op, PicturePtr pSrcPicture,
PicturePtr pMaskPicture, PicturePtr pDstPicture,
PixmapPtr pSrc, PixmapPtr pMask, PixmapPtr pDst)
{
CARD32 height, width;
ScrnInfoPtr pScrn = xf86Screens[pDst->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
Via3DState *v3d = &pVia->v3d;
int curTex = 0;
ViaTexBlendingModes srcMode;
CARD32 col;
struct _DriBufferObject *buf;
unsigned long delta;
delta = viaExaSuperPixmapOffset(pDst, &buf);
v3d->setDestination(v3d, buf, delta,
exaGetPixmapPitch(pDst), pDstPicture->format);
v3d->setCompositeOperator(v3d, op);
v3d->setDrawing(v3d, 0x0c, 0xFFFFFFFF, 0x000000FF, 0xFF);
viaOrder(pSrc->drawable.width, &width);
viaOrder(pSrc->drawable.height, &height);
/*
* For one-pixel repeat mask pictures we avoid using multitexturing by
* modifying the src's texture blending equation and feed the pixel
* value as a constant alpha for the src's texture. Multitexturing on the
* Unichromes seems somewhat slow, so this speeds up translucent windows.
*/
srcMode = via_src;
pVia->maskP = NULL;
if (pMaskPicture &&
(pMaskPicture->pDrawable->height == 1) &&
(pMaskPicture->pDrawable->width == 1) &&
pMaskPicture->repeat && viaExpandablePixel(pMaskPicture->format)) {
pVia->maskP = pMask->devPrivate.ptr;
pVia->maskFormat = pMaskPicture->format;
pVia->componentAlpha = pMaskPicture->componentAlpha;
srcMode = ((pMaskPicture->componentAlpha)
? via_src_onepix_comp_mask : via_src_onepix_mask);
}
/*
* One-Pixel repeat src pictures go as solid color instead of textures.
* Speeds up window shadows.
*/
pVia->srcP = NULL;
if (pSrcPicture && pSrcPicture->repeat
&& (pSrcPicture->pDrawable->height == 1)
&& (pSrcPicture->pDrawable->width == 1)
&& viaExpandablePixel(pSrcPicture->format)) {
pVia->srcP = pSrc->devPrivate.ptr;
pVia->srcFormat = pSrcPicture->format;
}
/* Exa should be smart enough to eliminate this IN operation. */
if (pVia->srcP && pVia->maskP) {
ErrorF("Bad one-pixel IN composite operation. "
"EXA needs to be smarter.\n");
return FALSE;
}
if (!pVia->srcP) {
delta = viaExaSuperPixmapOffset(pSrc, &buf);
if (!v3d->setTexture(v3d, buf, delta, curTex,
exaGetPixmapPitch(pSrc), pVia->nPOT[curTex],
1 << width, 1 << height, pSrcPicture->format,
via_repeat, via_repeat, srcMode)) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Src setTexture\n");
#endif
return FALSE;
}
curTex++;
}
if (pMaskPicture && !pVia->maskP) {
delta = viaExaSuperPixmapOffset(pMask, &buf);
viaOrder(pMask->drawable.width, &width);
viaOrder(pMask->drawable.height, &height);
if (!v3d->setTexture(v3d, buf, delta, curTex,
exaGetPixmapPitch(pMask), pVia->nPOT[curTex],
1 << width, 1 << height, pMaskPicture->format,
via_repeat, via_repeat,
((pMaskPicture->componentAlpha)
? via_comp_mask : via_mask))) {
#ifdef VIA_DEBUG_COMPOSITE
ErrorF("Dst setTexture\n");
#endif
return FALSE;
}
curTex++;
}
v3d->setFlags(v3d, curTex, FALSE, TRUE, TRUE);
if (pVia->maskP) {
viaPixelARGB8888(pVia->maskFormat, pVia->maskP, &col);
v3d->setTexBlendCol(v3d, 0, pVia->componentAlpha, col);
}
if (pVia->srcP) {
viaPixelARGB8888(pVia->srcFormat, pVia->srcP, &col);
v3d->setDrawing(v3d, 0x0c, 0xFFFFFFFF, col & 0x00FFFFFF, col >> 24);
}
v3d->emitState(v3d, &pVia->cb, viaCheckUpload(pScrn, v3d));
v3d->emitClipRect(v3d, &pVia->cb, 0, 0, pDst->drawable.width,
pDst->drawable.height);
pVia->cb.inComposite = TRUE;
pVia->cb.compWidth = pDst->drawable.width;
pVia->cb.compHeight = pDst->drawable.height;
return TRUE;
}
static void
viaExaComposite(PixmapPtr pDst, int srcX, int srcY, int maskX, int maskY,
int dstX, int dstY, int width, int height)
{
ScrnInfoPtr pScrn = xf86Screens[pDst->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
Via3DState *v3d = &pVia->v3d;
#if 0
if (pVia->maskP || pVia->srcP)
v3d->emitState(v3d, &pVia->cb, viaCheckUpload(pScrn, v3d));
#endif
if (pVia->srcP) {
srcX = maskX;
srcY = maskY;
}
v3d->emitQuad(v3d, &pVia->cb, dstX, dstY, srcX, srcY, maskX, maskY,
width, height);
}
static Bool
viaExaPrepareAccess(PixmapPtr pPix, int index)
{
ScrnInfoPtr pScrn = xf86Screens[pPix->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
struct _ViaOffscreenBuffer *buf;
uint32_t flags;
void *ptr;
void *virtual;
ptr = (void *) (exaGetPixmapOffset(pPix) +
(unsigned long) pVia->exaMem.virtual);
buf = viaInBuffer(&pVia->offscreen, ptr);
if (buf) {
flags = (index == EXA_PREPARE_DEST) ?
DRM_BO_FLAG_WRITE : DRM_BO_FLAG_READ;
virtual = driBOMap(buf->buf, flags);
}
return TRUE;
}
static void
viaExaFinishAccess(PixmapPtr pPix, int index)
{
ScrnInfoPtr pScrn = xf86Screens[pPix->drawable.pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
struct _ViaOffscreenBuffer *buf;
void *ptr;
ptr = (void *) (exaGetPixmapOffset(pPix) +
(unsigned long) pVia->exaMem.virtual);
buf = viaInBuffer(&pVia->offscreen, ptr);
if (buf) {
(void) driBOUnmap(buf->buf);
}
}
static ExaDriverPtr
viaInitExa(ScreenPtr pScreen)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
ExaDriverPtr pExa = exaDriverAlloc();
memset(pExa, 0, sizeof(*pExa));
if (!pExa)
return NULL;
pExa->exa_major = EXA_VERSION_MAJOR;
pExa->exa_minor = EXA_VERSION_MINOR;
pExa->memoryBase = (unsigned char *) pVia->exaMem.virtual;
pExa->memorySize = pVia->exaMem.size;
pExa->offScreenBase = 0;
pExa->pixmapOffsetAlign = 32;
pExa->pixmapPitchAlign = 16;
pExa->flags = EXA_OFFSCREEN_PIXMAPS |
(pVia->nPOT[1] ? 0 : EXA_OFFSCREEN_ALIGN_POT);
pExa->maxX = 2047;
pExa->maxY = 2047;
pExa->WaitMarker = viaExaWaitMarker;
pExa->MarkSync = viaExaMarkSync;
pExa->PrepareSolid = viaExaPrepareSolid;
pExa->Solid = viaExaSolid;
pExa->DoneSolid = viaExaDoneSolidCopy;
pExa->PrepareCopy = viaExaPrepareCopy;
pExa->Copy = viaExaCopy;
pExa->DoneCopy = viaExaDoneSolidCopy;
pExa->PrepareAccess = viaExaPrepareAccess;
pExa->FinishAccess = viaExaFinishAccess;
pExa->DownloadFromScreen = NULL;
pExa->PixmapIsOffscreen = viaExaPixmapIsOffscreen;
#ifdef XF86DRI
if (pVia->directRenderingEnabled)
pExa->DownloadFromScreen = NULL; /*viaExaDownloadFromScreen;*/
#endif /* XF86DRI */
pExa->UploadToScratch = NULL; /* viaExaUploadToScratch; */
if (!pVia->noComposite) {
pExa->CheckComposite = viaExaCheckComposite;
pExa->PrepareComposite = viaExaPrepareComposite;
pExa->Composite = viaExaComposite;
pExa->DoneComposite = viaExaDoneComposite;
} else {
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"[EXA] Disabling EXA accelerated composite.\n");
}
if (!exaDriverInit(pScreen, pExa)) {
xfree(pExa);
return NULL;
}
viaInit3DState(&pVia->v3d);
return pExa;
}
/*
* Acceleration initialization function. Sets up offscreen memory disposition,
* and initializes engines and acceleration method.
*/
Bool
viaInitAccel(ScreenPtr pScreen)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
Bool nPOTSupported;
int ret;
unsigned long exaMemSize = pScrn->videoRam * 1024 / 2;
viaInitialize2DEngine(pScrn);
#ifdef XF86DRI
if (pVia->directRenderingEnabled) {
struct drm_via_memsize_arg arg;
ret = drmCommandRead(pVia->drmFD, DRM_VIA_MEM_SIZE, &arg,
sizeof(arg));
if (ret == 0) {
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"[Accel] Largest free vram region is %lu bytes.\n",
(unsigned long) arg.vram_size);
exaMemSize = (unsigned long) arg.vram_size / 2;
}
}
#endif
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"[Accel] Setting evictable pixmap cache "
"to %lu bytes.\n",
exaMemSize);
/*
* Pixmap cache.
*/
ret = driGenBuffers(pVia->mainPool, "Pixmap cache", 1,
&pVia->exaMem.buf, 0,
DRM_BO_FLAG_MEM_VRAM |
DRM_BO_FLAG_READ |
DRM_BO_FLAG_WRITE, 0);
if (ret) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"[Accel] Failed allocating offscreen pixmap space.\n");
return FALSE;
}
ret = driBOData(pVia->exaMem.buf, exaMemSize, NULL, NULL, 0);
if (ret) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"[Accel] Failed allocating offscreen pixmap space.\n");
goto out_err0;
}
pVia->exaMem.virtual = driBOMap(pVia->exaMem.buf, WS_DRI_MAP_READ | WS_DRI_MAP_WRITE);
if (pVia->exaMem.virtual == NULL) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"[Accel] Failed mapping offscreen pixmap space.\n");
goto out_err0;
}
driBOUnmap(pVia->exaMem.buf);
pVia->exaMem.size = driBOSize(pVia->exaMem.buf);
WSDRIINITLISTHEAD(&pVia->offscreen);
WSDRILISTADDTAIL(&pVia->front.head, &pVia->offscreen);
WSDRILISTADDTAIL(&pVia->exaMem.head, &pVia->offscreen);
/*
* nPOT textures. DRM versions below 2.11.0 don't allow them.
* Also some CLE266 hardware may not allow nPOT textures for
* texture engine 1. We need to figure that out.
*/
nPOTSupported = TRUE;
#ifdef XF86DRI
nPOTSupported = ((!pVia->directRenderingEnabled) ||
(pVia->drmVerMajor > 2) ||
((pVia->drmVerMajor == 2) && (pVia->drmVerMinor >= 11)));
#endif
pVia->nPOT[0] = nPOTSupported;
pVia->nPOT[1] = nPOTSupported;
#ifdef XF86DRI
pVia->dBounce = NULL;
#endif /* XF86DRI */
pVia->exaDriverPtr = viaInitExa(pScreen);
if (!pVia->exaDriverPtr) {
/*
* Docs recommend turning off also Xv here, but we handle this
* case with the old linear offscreen FB manager through
* VIAInitLinear.
*/
pVia->NoAccel = TRUE;
goto out_err0;
}
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"[EXA] Trying to enable EXA acceleration.\n");
return TRUE;
out_err0:
driDeleteBuffers(1, &pVia->exaMem.buf);
return FALSE;
}
/*
* Free the used acceleration resources.
*/
void
viaExitAccel(ScreenPtr pScreen)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
viaAccelSync(pScrn);
#ifdef XF86DRI
if (pVia->dBounce)
xfree(pVia->dBounce);
#endif /* XF86DRI */
if (pVia->exaDriverPtr) {
exaDriverFini(pScreen);
}
xfree(pVia->exaDriverPtr);
pVia->exaDriverPtr = NULL;
viaTearDownCBuffer(&pVia->cb);
driDeleteBuffers(1, &pVia->exaMem.buf);
return;
}
/*
* Allocate a command buffer and buffers for accelerated upload, download,
* and EXA scratch area. The scratch area resides primarily in AGP memory,
* but reverts to FB if AGP is not available.
*/
void
viaFinishInitAccel(ScreenPtr pScreen)
{
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
VIAPtr pVia = VIAPTR(pScrn);
#ifdef XF86DRI
if (pVia->directRenderingEnabled && pVia->useEXA) {
pVia->dBounce = xcalloc(VIA_DMA_DL_SIZE * 2, 1);
}
#endif /* XF86DRI */
if (Success != viaSetupCBuffer(pScrn, &pVia->cb, 0)) {
pVia->NoAccel = TRUE;
viaExitAccel(pScreen);
return;
}
}
/*
* DGA accelerated functions go here and let them be independent of
* acceleration method.
*/
void
viaAccelBlitRect(ScrnInfoPtr pScrn, int srcx, int srcy, int w, int h,
int dstx, int dsty)
{
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
struct _DriBufferObject *buf;
unsigned long delta;
RING_VARS;
if (!w || !h)
return;
buf = pVia->scanout.bufs[VIA_SCANOUT_DISPLAY];
delta = driBOPoolOffset(buf);
if (!pVia->NoAccel) {
int xdir = ((srcx < dstx) && (srcy == dsty)) ? -1 : 1;
int ydir = (srcy < dsty) ? -1 : 1;
CARD32 cmd = VIA_GEC_BLT | VIAACCELCOPYROP(GXcopy);
if (xdir < 0)
cmd |= VIA_GEC_DECX;
if (ydir < 0)
cmd |= VIA_GEC_DECY;
viaAccelSetMode(pScrn->bitsPerPixel, tdc);
viaAccelTransparentHelper(tdc, cb, 0x0, 0x0, FALSE);
viaAccelCopyHelper(cb, srcx, srcy, dstx, dsty, w, h,
buf, delta, tdc->bpp,
tdc->mode, pVia->Bpl, pVia->Bpl, cmd);
FLUSH_RING;
}
}
void
viaAccelFillRect(ScrnInfoPtr pScrn, int x, int y, int w, int h,
unsigned long color)
{
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
CARD32 cmd = VIA_GEC_BLT | VIA_GEC_FIXCOLOR_PAT |
VIAACCELPATTERNROP(GXcopy);
struct _DriBufferObject *buf;
unsigned long delta;
RING_VARS;
if (!w || !h)
return;
buf = pVia->scanout.bufs[VIA_SCANOUT_DISPLAY];
delta = driBOPoolOffset(buf);
if (!pVia->NoAccel) {
viaAccelSetMode(pScrn->bitsPerPixel, tdc);
viaAccelTransparentHelper(tdc, cb, 0x0, 0x0, FALSE);
viaAccelSolidHelper(cb, x, y, w, h,
buf, delta, tdc->bpp,
tdc->mode,
pVia->Bpl,
color, cmd);
FLUSH_RING;
}
}
void
viaAccelFillPixmap(ScrnInfoPtr pScrn,
PixmapPtr pPix,
unsigned long pitch,
int depth, int x, int y, int w, int h, unsigned long color)
{
VIAPtr pVia = VIAPTR(pScrn);
ViaTwodContext *tdc = &pVia->td;
CARD32 cmd = VIA_GEC_BLT | VIA_GEC_FIXCOLOR_PAT |
VIAACCELPATTERNROP(GXcopy);
RING_VARS;
if (!w || !h)
return;
if (!pVia->NoAccel) {
viaAccelSetMode(depth, tdc);
viaAccelTransparentHelper(tdc, cb, 0x0, 0x0, FALSE);
viaAccelSolidPixmapHelper(cb, x, y, w, h, pPix, tdc->mode,
pitch, color, cmd);
ADVANCE_RING;
FLUSH_RING;
}
}
void
viaAccelSyncMarker(ScrnInfoPtr pScrn)
{
viaAccelSync(pScrn);
}
|