forked from envytools/envytools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgraph.c
793 lines (769 loc) · 21.7 KB
/
pgraph.c
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
/*
* Copyright (C) 2012 Marcin Kościelnicki <koriakin@0x04.net>
* 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, sublicense,
* 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 NONINFRINGEMENT. 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.
*/
#include "pgraph.h"
#include "util.h"
#include <stdlib.h>
int pgraph_type(int chipset) {
if (chipset <3)
return PGRAPH_NV01;
if (chipset < 4)
return PGRAPH_NV03;
if (chipset < 0x10)
return PGRAPH_NV04;
if (chipset < 0x20)
return PGRAPH_NV10;
if (chipset < 0x40)
return PGRAPH_NV20;
if (chipset != 0x50 && chipset < 0x80)
return PGRAPH_NV40;
if (chipset < 0xc0)
return PGRAPH_NV50;
return PGRAPH_NVC0;
}
void nv01_pgraph_expand_color(uint32_t ctx, uint32_t config, uint32_t color, uint32_t *rgb, uint32_t *alpha) {
int format = ctx >> 9 & 0xf;
int fa = ctx >> 13 & 1;
int a, r, g, b;
int replicate = config >> 20 & 1;
int factor;
switch (format % 5) {
case 0: /* (X16)A1R5G5B5 */
factor = replicate ? 0x21 : 0x20;
a = extr(color, 15, 1) * 0xff;
r = extr(color, 10, 5) * factor;
g = extr(color, 5, 5) * factor;
b = extr(color, 0, 5) * factor;
break;
case 1: /* A8R8G8B8 */
factor = replicate ? 0x101 : 0x100;
a = extr(color, 24, 8);
r = extr(color, 16, 8) * factor >> 6;
g = extr(color, 8, 8) * factor >> 6;
b = extr(color, 0, 8) * factor >> 6;
break;
case 2: /* A2R10G10B10 */
a = extr(color, 30, 2) * 0x55;
r = extr(color, 20, 10);
g = extr(color, 10, 10);
b = extr(color, 0, 10);
break;
case 3: /* (X16)A8Y8 */
factor = replicate ? 0x101 : 0x100;
a = extr(color, 8, 8);
r = g = b = extr(color, 0, 8) * factor >> 6;
break;
case 4: /* A16Y16 */
a = extr(color, 16, 16) >> 8;
r = g = b = extr(color, 0, 16) >> 6;
break;
default:
abort();
break;
}
if (!fa)
a = 0xff;
*rgb = r << 20 | g << 10 | b;
*alpha = a;
}
uint32_t nv01_pgraph_expand_a1r10g10b10(uint32_t ctx, uint32_t config, uint32_t color) {
uint32_t rgb; uint32_t alpha;
nv01_pgraph_expand_color(ctx, config, color, &rgb, &alpha);
if (alpha)
rgb |= 0x40000000;
return rgb;
}
uint32_t nv01_pgraph_expand_mono(uint32_t ctx, uint32_t mono) {
uint32_t res = 0;
if (ctx & 0x4000) {
int i;
for (i = 0; i < 32; i++)
insrt(res, i^7, 1, extr(mono, i, 1));
} else {
res = mono;
}
return res;
}
void nv01_pgraph_clip_bounds(struct nv01_pgraph_state *state, int32_t min[2], int32_t max[2]) {
int i;
for (i = 0; i < 2; i++) {
min[i] = extrs(state->canvas_min, i*16, 16);
max[i] = extr(state->canvas_max, i*16, 12);
int sel = extr(state->xy_misc_1, 12+i*4, 3);
int uce = extr(state->ctx_switch, 7, 1);
if (sel & 1 && uce)
min[i] = state->uclip_min[i];
if (sel & 2 && uce)
max[i] = state->uclip_max[i];
if (sel & 4)
max[i] = state->iclip[i];
if (min[i] < 0)
min[i] = 0;
min[i] &= 0xfff;
max[i] &= 0xfff;
}
}
int nv01_pgraph_clip_status(struct nv01_pgraph_state *state, int32_t coord, int xy, int is_tex_class, int fract) {
int32_t clip_min[2], clip_max[2];
nv01_pgraph_clip_bounds(state, clip_min, clip_max);
if (fract) {
clip_min[xy] <<= 4;
clip_max[xy] <<= 4;
coord &= ~0xf;
}
int cstat = 0;
if (is_tex_class) {
coord = extrs(coord, 15, 16);
if (state->xy_misc_1 & 0x02000000)
coord >>= 4;
} else {
coord = extrs(coord, 0, 18);
}
if (coord < clip_min[xy])
cstat |= 1;
if (coord == clip_min[xy])
cstat |= 2;
if (coord > clip_max[xy])
cstat |= 4;
if (coord == clip_max[xy])
cstat |= 8;
return cstat;
}
int nv01_pgraph_use_v16(struct nv01_pgraph_state *state) {
uint32_t class = state->access >> 12 & 0x1f;
int d0_24 = state->debug[0] >> 24 & 1;
int d1_8 = state->debug[1] >> 8 & 1;
int d1_24 = state->debug[1] >> 24 & 1;
int j;
int sdl = 1;
for (j = 0; j < 4; j++)
if (extr(state->subdivide, (j/2)*4, 4) > extr(state->subdivide, 16+j*4, 4))
sdl = 0;
int biopt = d1_8 && !extr(state->xy_misc_2[0], 28, 2) && !extr(state->xy_misc_2[1], 28, 2);
switch (class) {
case 0xd:
case 0x1d:
return d1_24 && (!d0_24 || sdl) && !biopt;
case 0xe:
case 0x1e:
return d1_24 && (!d0_24 || sdl);
default:
return 0;
}
}
void nv01_pgraph_vtx_fixup(struct nv01_pgraph_state *state, int xy, int idx, int32_t coord, int rel) {
uint32_t class = extr(state->access, 12, 5);
int is_texlin_class = (class & 0xf) == 0xd;
int is_texquad_class = (class & 0xf) == 0xe;
int is_tex_class = is_texlin_class || is_texquad_class;
int sid = rel ? idx & 3 : 0;
int32_t cbase = extrs(state->canvas_min, 16 * xy, 16);
if (is_tex_class && state->xy_misc_1 & 1 << 25)
cbase <<= 4;
if (rel)
coord += cbase;
if (xy == 0)
state->vtx_x[idx] = coord;
else
state->vtx_y[idx] = coord;
int oob = !is_tex_class && (coord >= 0x8000 || coord < -0x8000);
int cstat = nv01_pgraph_clip_status(state, coord, xy, is_tex_class, 0);
int carry = rel && (uint32_t)coord < (uint32_t)cbase;
insrt(state->xy_misc_2[xy], sid, 1, carry);
insrt(state->xy_misc_2[xy], sid+4, 1, oob);
if (class == 8) {
insrt(state->xy_misc_2[xy], 8, 4, cstat);
insrt(state->xy_misc_2[xy], 12, 4, cstat);
} else if (idx < 16 || nv01_pgraph_use_v16(state)) {
insrt(state->xy_misc_2[xy], 8 + sid * 4, 4, cstat);
}
if (idx >= 16) {
insrt(state->edgefill, 16 + xy * 4 + (idx - 16) * 8, 4, cstat);
}
}
void nv01_pgraph_iclip_fixup(struct nv01_pgraph_state *state, int xy, int32_t coord, int rel) {
uint32_t class = state->access >> 12 & 0x1f;
int is_texlin_class = (class & 0xf) == 0xd;
int is_texquad_class = (class & 0xf) == 0xe;
int is_tex_class = is_texlin_class || is_texquad_class;
int max = state->canvas_max >> (xy * 16) & 0xfff;
if (state->xy_misc_1 & 0x2000 << (xy * 4) && state->ctx_switch & 0x80)
max = state->uclip_max[xy] & 0xfff;
int32_t cbase = extrs(state->canvas_min, 16 * xy, 16);
int32_t cmin = cbase;
if (cmin < 0)
cmin = 0;
if (state->ctx_switch & 0x80 && state->xy_misc_1 & 0x1000 << xy * 4)
cmin = state->uclip_min[xy];
cmin &= 0xfff;
if (is_tex_class && state->xy_misc_1 & 1 << 25)
cbase <<= 4;
if (rel)
coord += cbase;
state->iclip[xy] = coord & 0x3ffff;
if (is_tex_class) {
coord = extrs(coord, 15, 16);
if (state->xy_misc_1 & 0x02000000)
coord >>= 4;
} else {
coord = extrs(coord, 0, 18);
}
state->xy_misc_1 &= ~0x144000;
insrt(state->xy_misc_1, 14+xy*4, 1, coord <= max);
if (!xy) {
insrt(state->xy_misc_1, 20, 1, coord <= max);
insrt(state->xy_misc_1, 4, 1, coord < cmin);
} else {
insrt(state->xy_misc_1, 5, 1, coord < cmin);
}
}
void nv01_pgraph_uclip_fixup(struct nv01_pgraph_state *state, int xy, int idx, int32_t coord, int rel) {
uint32_t class = state->access >> 12 & 0x1f;
int is_texlin_class = (class & 0xf) == 0xd;
int is_texquad_class = (class & 0xf) == 0xe;
int is_tex_class = is_texlin_class || is_texquad_class;
int32_t cbase = (int16_t)(state->canvas_min >> 16 * xy);
if (rel)
coord += cbase;
state->uclip_min[xy] = state->uclip_max[xy];
state->uclip_max[xy] = coord & 0x3ffff;
if (!xy)
state->vtx_x[15] = coord;
else
state->vtx_y[15] = coord;
state->xy_misc_1 &= ~0x0fff000;
if (!idx) {
state->xy_misc_1 &= ~0x1000000;
} else {
state->xy_misc_1 &= ~(0x110 << xy);
int32_t cmin = state->canvas_min >> 16 * xy & 0x8fff;
if (cmin & 0x8000)
cmin = 0;
int32_t cmax = state->canvas_max >> 16 * xy & 0x0fff;
int32_t ucmin = sext(state->uclip_min[xy], 17);
int32_t ucmax = sext(state->uclip_max[xy], 17);
if (is_tex_class && state->xy_misc_1 & 1 << 25)
ucmin >>= 4, ucmax >>= 4;
state->xy_misc_1 |= (ucmax < cmin) << (8 + xy);
if (state->xy_misc_2[xy] >> 10 & 1)
state->xy_misc_1 |= (ucmax >= 0) << (8 + xy);
if (!(state->xy_misc_2[xy] >> 8 & 1))
state->xy_misc_1 |= 1 << (12 + xy * 4);
state->xy_misc_1 |= (ucmax <= cmax) << (13 + xy * 4);
}
}
void nv01_pgraph_set_clip(struct nv01_pgraph_state *state, int is_size, uint32_t val) {
uint32_t class = state->access >> 12 & 0x1f;
int is_texlin_class = (class & 0xf) == 0xd;
int is_texquad_class = (class & 0xf) == 0xe;
int is_tex_class = is_texlin_class || is_texquad_class;
int is_tex = is_tex_class && !is_size;
int xy;
if (is_size) {
int n = state->valid >> 24 & 1;
state->valid &= ~0x11000000;
if (!n)
state->valid |= 1 << 28;
state->xy_misc_1 &= 0x03000001;
} else {
if (is_tex_class && (state->xy_misc_1 >> 24 & 3) == 3) {
state->valid = 0;
state->xy_misc_1 &= ~0x02000000;
}
state->valid &= ~0x11000000;
state->valid |= 1 << 24;
state->xy_misc_1 &= 0x00000330;
state->xy_misc_1 |= 0x01000000;
}
for (xy = 0; xy < 2; xy++) {
int32_t new = (uint16_t)(val >> xy * 16);
int32_t cbase = (int16_t)(state->canvas_min >> 16 * xy);
int svidx = is_tex ? 4 : 15;
int dvidx = svidx;
int mvidx = is_size;
if ((class == 0xc || class == 0x11 || class == 0x12 || class == 0x13) && is_size) {
svidx = 0;
dvidx = extr(state->xy_misc_0, 28, 4);
mvidx = dvidx%4;
}
if (class == 0x14 && is_size) {
svidx = 0;
dvidx = 2;
mvidx = dvidx%4;
state->vtx_x[3] = val & 0xffff;
state->vtx_y[3] = val >> 16 & 0xffff;
state->xy_misc_0 &= ~0x1000;
}
if (is_tex_class && state->xy_misc_1 & 1 << 25)
cbase <<= 4;
if (is_size) {
new += xy ? state->vtx_y[svidx] : state->vtx_x[svidx];
} else {
new = (int16_t)new;
new += cbase;
}
uint32_t m2 = state->xy_misc_2[xy];
int32_t vcoord = new;
if (is_tex)
vcoord <<= 15, vcoord |= 1 << 14;
if (!xy)
state->vtx_x[dvidx] = vcoord;
else
state->vtx_y[dvidx] = vcoord;
state->uclip_min[xy] = state->uclip_max[xy];
state->uclip_max[xy] = new & 0x3ffff;
int cstat = nv01_pgraph_clip_status(state, new & 0x3ffff, xy, 0, 0);
int oob = (new >= 0x8000 || new < -0x8000);
if (is_tex_class) {
if (is_size) {
oob = 0;
cstat = nv01_pgraph_clip_status(state, new, xy, 1, 0);
} else {
oob |= m2 >> (mvidx + 4) & 1;
}
}
state->xy_misc_2[xy] &= ~(0x11 << mvidx);
if (!is_size)
state->xy_misc_2[xy] |= ((uint32_t)new < (uint32_t)cbase) << mvidx;
state->xy_misc_2[xy] |= oob << (4 + mvidx);
if (class == 8) {
insrt(state->xy_misc_2[xy], 8, 4, cstat);
insrt(state->xy_misc_2[xy], 12, 4, cstat);
} else {
insrt(state->xy_misc_2[xy], 8+mvidx*4, 4, cstat);
}
if (is_size) {
int32_t cmin = state->canvas_min >> 16 * xy & 0x8fff;
if (cmin & 0x8000)
cmin = 0;
int32_t cmax = state->canvas_max >> 16 * xy & 0x0fff;
int32_t ucmax = sext(state->uclip_max[xy], 17);
if (is_tex_class)
ucmax = extrs(vcoord, 15, 16);
if (is_tex_class && state->xy_misc_1 & 1 << 25)
ucmax >>= 4;
state->xy_misc_1 |= (ucmax < cmin) << (8 + xy);
if (m2 >> 10 & 1)
state->xy_misc_1 |= (ucmax >= 0) << (8 + xy);
if (!(m2 >> 8 & 1))
state->xy_misc_1 |= 1 << (12 + xy * 4);
state->xy_misc_1 |= (ucmax <= cmax) << (13 + xy * 4);
}
}
}
void nv01_pgraph_set_vtx(struct nv01_pgraph_state *state, int xy, int idx, int32_t coord) {
uint32_t class = extr(state->access, 12, 5);
int is_texlin_class = (class & 0xf) == 0xd;
int is_texquad_class = (class & 0xf) == 0xe;
int is_tex_class = is_texlin_class || is_texquad_class;
int sid = idx & 3;
int32_t cbase = extrs(state->canvas_min, 16 * xy, 16);
int fract = is_tex_class && extr(state->xy_misc_1, 25, 1);
if (fract)
cbase <<= 4;
coord += cbase;
int carry = (uint32_t)coord < (uint32_t)cbase;
int oob = (coord >= 0x8000 || coord < -0x8000);
if (is_tex_class)
oob |= extr(state->xy_misc_2[xy], sid+4, 1);
uint32_t val = is_tex_class ? coord << 15 | 0x4000 : coord;
if (xy == 0)
state->vtx_x[idx] = val;
else
state->vtx_y[idx] = val;
int cstat = nv01_pgraph_clip_status(state, coord & 0x3ffff, xy, 0, fract);
insrt(state->xy_misc_2[xy], sid, 1, carry);
insrt(state->xy_misc_2[xy], sid+4, 1, oob);
if (class == 8) {
insrt(state->xy_misc_2[xy], 8, 4, cstat);
insrt(state->xy_misc_2[xy], 12, 4, cstat);
} else if (idx < 16 || nv01_pgraph_use_v16(state)) {
insrt(state->xy_misc_2[xy], 8 + sid * 4, 4, cstat);
}
if (idx >= 16) {
insrt(state->edgefill, 16 + xy * 4 + (idx - 16) * 8, 4, cstat);
}
}
int nv01_pgraph_cpp(uint32_t pfb_config) {
switch (extr(pfb_config, 8, 2)) {
case 0:
case 1:
return 1;
case 2:
return 2;
case 3:
return 4;
default:
abort();
}
}
int nv01_pgraph_width(uint32_t pfb_config) {
switch (extr(pfb_config, 4, 3)) {
case 0:
return 576;
case 1:
return 640;
case 2:
return 800;
case 3:
return 1024;
case 4:
return 1152;
case 5:
return 1280;
case 6:
return 1600;
case 7:
return 1856;
default:
abort();
}
}
uint32_t nv01_pgraph_pixel_addr(struct nv01_pgraph_state *state, int x, int y, int buf) {
uint32_t addr = (y * nv01_pgraph_width(state->pfb_config) + x) * nv01_pgraph_cpp(state->pfb_config);
uint32_t memsize = 1 << (20 + extr(state->pfb_boot, 0, 2));
if (extr(state->pfb_config, 12, 1)) {
addr &= memsize/2 - 1;
buf &= 1;
addr += buf * memsize/2;
} else {
addr &= memsize - 1;
}
return addr;
}
int nv01_pgraph_dither_10to5(int val, int x, int y, int isg) {
int step = val>>2&7;
static const int tab1[4][4] = {
{ 0, 1, 1, 0 },
{ 0, 0, 1, 0 },
{ 0, 0, 1, 1 },
{ 1, 1, 1, 1 },
};
int w = (x^y) >> 1 & 1;;
int z = tab1[y>>2&3][x>>2&3] ^ isg;
if (step & 1)
z ^= w;
int tx = x&1;
int ty = y&1;
int d;
switch (step) {
case 0:
d = 0;
break;
case 1:
d = !tx && !ty && z;
break;
case 2:
d = !(tx^ty) && (tx^z);
break;
case 3:
d = !(tx^ty) && (!tx || z);
break;
case 4:
d = !(tx^ty);
break;
case 5:
d = !(tx^ty) || (tx && !ty && z);
break;
case 6:
d = !(tx^ty) || (ty^z);
break;
case 7:
d = tx || !ty || z;
break;
default:
d = 0;
break;
}
val += d << 5;
if (val > 0x3ff)
val = 0x3ff;
return val >> 5;
}
void nv01_pgraph_pattern_pixel(struct nv01_pgraph_state *state, int x, int y, uint32_t *ta, uint32_t *tr, uint32_t *tg, uint32_t *tb, uint32_t *ti) {
int bidx;
switch (state->pattern_shape) {
case 0:
bidx = (x & 7) | (y & 7) << 3;
break;
case 1:
bidx = x & 0x3f;
break;
case 2:
bidx = y & 0x3f;
break;
case 3:
bidx = (y & 0x3f) | (x & 0x3c);
break;
default:
abort();
}
int bit = state->pattern_bitmap[bidx >> 5] >> (bidx & 0x1f) & 1;
*ta = state->pattern_a[bit];
*tr = state->pattern_rgb[bit] >> 20 & 0x3ff;
*tg = state->pattern_rgb[bit] >> 10 & 0x3ff;
*tb = state->pattern_rgb[bit] >> 00 & 0x3ff;
*ti = state->pattern_rgb[bit] >> 2 & 0xff;
}
uint8_t nv01_pgraph_xlat_rop(struct nv01_pgraph_state *state) {
uint8_t res = 0;
int op = extr(state->ctx_switch, 0, 5);
int swizzle[3];
if (op < 8) {
swizzle[0] = op >> 0 & 1;
swizzle[1] = op >> 1 & 1;
swizzle[2] = op >> 2 & 1;
} else if (op < 0x10) {
swizzle[0] = (op >> 0 & 1)+1;
swizzle[1] = (op >> 1 & 1)+1;
swizzle[2] = (op >> 2 & 1)+1;
} else if (op == 0x10) {
swizzle[0] = 0, swizzle[1] = 1, swizzle[2] = 2;
} else if (op == 0x11) {
swizzle[0] = 1, swizzle[1] = 0, swizzle[2] = 2;
} else if (op == 0x12) {
swizzle[0] = 0, swizzle[1] = 2, swizzle[2] = 1;
} else if (op == 0x13) {
swizzle[0] = 2, swizzle[1] = 0, swizzle[2] = 1;
} else if (op == 0x14) {
swizzle[0] = 1, swizzle[1] = 2, swizzle[2] = 0;
} else if (op == 0x15) {
swizzle[0] = 2, swizzle[1] = 1, swizzle[2] = 0;
} else {
abort();
}
if (op == 0) {
if (state->rop & 0x01)
res |= 0x11;
if (state->rop & 0x16)
res |= 0x44;
if (state->rop & 0x68)
res |= 0x22;
if (state->rop & 0x80)
res |= 0x88;
} else if (op == 0xf) {
if (state->rop & 0x01)
res |= 0x03;
if (state->rop & 0x16)
res |= 0x0c;
if (state->rop & 0x68)
res |= 0x30;
if (state->rop & 0x80)
res |= 0xc0;
} else {
int i;
for (i = 0; i < 8; i++) {
int s0 = i >> swizzle[0] & 1;
int s1 = i >> swizzle[1] & 1;
int s2 = i >> swizzle[2] & 1;
int s = s2 << 2 | s1 << 1 | s0;
if (state->rop >> s & 1)
res |= 1 << i;
}
}
return res;
}
uint32_t nv01_pgraph_do_rop(uint8_t rop, uint32_t dst, uint32_t src, uint32_t pat) {
int i;
uint32_t res = 0;
for (i = 0; i < 10; i++) {
int d = dst >> i & 1;
int s = src >> i & 1;
int p = pat >> i & 1;
int bit = p << 2 | s << 1 | d;
int r = rop >> bit & 1;
res |= r << i;
}
return res;
}
uint32_t nv01_pgraph_blend_factor_square(uint32_t alpha) {
if (alpha == 0xff)
return alpha;
return (alpha >> 4) * (alpha >> 4);
}
uint32_t nv01_pgraph_blend_factor(uint32_t alpha, uint32_t beta) {
if (beta == 0xff)
return alpha;
if (alpha == 0xff)
return beta;
return ((alpha >> 4) * beta) >> 4;
}
uint32_t nv01_pgraph_do_blend(uint32_t factor, uint32_t dst, uint32_t src, int is_r5g5b5) {
if (factor == 0xff)
return src;
if (!factor)
return dst;
if (is_r5g5b5) {
src &= 0x3e0;
dst &= 0x3e0;
}
dst >>= 2;
src >>= 2;
return (dst * (0xff - factor) + src * factor) >> 6;
}
uint32_t nv01_pgraph_rop(struct nv01_pgraph_state *state, int x, int y, uint32_t pixel) {
int src_format = extr(state->ctx_switch, 9, 4) % 5;
int cpp = nv01_pgraph_cpp(state->pfb_config);
int op = extr(state->ctx_switch, 0, 5);
int blend_en = op >= 0x18;
int mode_idx = (cpp == 1 || (src_format == 3 && !extr(state->canvas_config, 12, 1))) && !blend_en;
int bypass = extr(state->canvas_config, 0, 1);
int dither = extr(state->canvas_config, 16, 1) && (src_format != 0 || blend_en) && cpp == 2;
uint32_t rgb, sa;
nv01_pgraph_expand_color(state->ctx_switch, state->canvas_config, state->source_color, &rgb, &sa);
if (!sa)
return pixel;
if (extr(state->canvas_config, 24, 1))
return pixel;
uint32_t sr = rgb >> 20 & 0x3ff;
uint32_t sg = rgb >> 10 & 0x3ff;
uint32_t sb = rgb >> 00 & 0x3ff;
uint32_t si = state->source_color & 0xff;
uint32_t dr = 0, dg = 0, db = 0, di = 0;
di = pixel & 0xff;
if (cpp == 2) {
int factor = extr(state->canvas_config, 20, 1) ? 0x21 : 0x20;
dr = (pixel >> 10 & 0x1f) * factor;
dg = (pixel >> 5 & 0x1f) * factor;
db = (pixel >> 0 & 0x1f) * factor;
} else {
dr = pixel >> 20 & 0x3ff;
dg = pixel >> 10 & 0x3ff;
db = pixel >> 00 & 0x3ff;
}
int alpha_en = extr(state->debug[0], 28, 1);
uint32_t ta, tr, tg, tb, ti;
nv01_pgraph_pattern_pixel(state, x, y, &ta, &tr, &tg, &tb, &ti);
if (!blend_en) {
if (op < 0x16) {
int worop = extr(state->debug[0], 20, 1);
if (op >= 9 && !ta)
return pixel;
uint8_t rop = nv01_pgraph_xlat_rop(state);
if (rop == 0xaa && worop && !(state->ctx_switch & 0x40))
return pixel;
sr = nv01_pgraph_do_rop(rop, dr, sr, tr) & 0x3ff;
sg = nv01_pgraph_do_rop(rop, dg, sg, tg) & 0x3ff;
sb = nv01_pgraph_do_rop(rop, db, sb, tb) & 0x3ff;
si = nv01_pgraph_do_rop(rop, di, si, ti) & 0xff;
}
if (extr(state->ctx_switch, 5, 1)) {
uint32_t ca = state->chroma >> 30 & 1;
uint32_t cr = state->chroma >> 20 & 0x3ff;
uint32_t cg = state->chroma >> 10 & 0x3ff;
uint32_t cb = state->chroma >> 00 & 0x3ff;
uint32_t ci = state->chroma >> 02 & 0xff;
if (mode_idx) {
if (ci == si && ca) {
return pixel;
}
} else if (cpp == 2 && src_format == 0) {
if ((cr >> 5) == (sr >> 5) && (cg >> 5) == (sg >> 5) && (cb >> 5) == (sb >> 5) && ca) {
return pixel;
}
} else {
if (cr == sr && cg == sg && cb == sb && ca) {
return pixel;
}
}
}
if (extr(state->ctx_switch, 6, 1)) {
uint32_t planemask = state->plane;
uint32_t pa = planemask >> 30 & 1;
uint32_t pr = planemask >> 20 & 0x3ff;
uint32_t pg = planemask >> 10 & 0x3ff;
uint32_t pb = planemask >> 00 & 0x3ff;
uint32_t pi = planemask >> 02 & 0xff;
if (!pa && alpha_en)
return pixel;
si = (pi & si) | (~pi & di);
sr = (pr & sr) | (~pr & dr);
sg = (pg & sg) | (~pg & dg);
sb = (pb & sb) | (~pb & db);
}
} else {
int is_r5g5b5 = cpp == 2 && !dither;
uint32_t beta = state->beta >> 23;
uint8_t factor;
if (op >= 0x1b)
sa = 0xff;
if (op == 0x18) {
factor = nv01_pgraph_blend_factor_square(sa);
} else if (op == 0x19 || op == 0x1b) {
if (!beta && op == 0x19)
return pixel;
factor = nv01_pgraph_blend_factor(sa, beta);
} else if (op == 0x1a || op == 0x1c) {
if (beta == 0xff && op == 0x1a)
return pixel;
factor = nv01_pgraph_blend_factor(sa, 0xff-beta);
} else {
abort();
}
if (cpp == 2 && src_format == 0) {
sr &= 0x3e0;
sg &= 0x3e0;
sb &= 0x3e0;
tr &= 0x3e0;
tg &= 0x3e0;
tb &= 0x3e0;
dr &= 0x3e0;
dg &= 0x3e0;
db &= 0x3e0;
}
if (op < 0x1b) {
sr = nv01_pgraph_do_blend(factor, dr, sr, is_r5g5b5);
sg = nv01_pgraph_do_blend(factor, dg, sg, is_r5g5b5);
sb = nv01_pgraph_do_blend(factor, db, sb, is_r5g5b5);
} else {
if (!ta)
return pixel;
sr = nv01_pgraph_do_blend(factor, tr, sr, is_r5g5b5);
sg = nv01_pgraph_do_blend(factor, tg, sg, is_r5g5b5);
sb = nv01_pgraph_do_blend(factor, tb, sb, is_r5g5b5);
}
}
switch (cpp) {
case 1:
return si;
case 2:
if (mode_idx)
return bypass << 15 | si;
if (dither) {
sr = nv01_pgraph_dither_10to5(sr, x, y, 0);
sg = nv01_pgraph_dither_10to5(sg, x, y, 1);
sb = nv01_pgraph_dither_10to5(sb, x, y, 0);
} else {
sr >>= 5;
sg >>= 5;
sb >>= 5;
}
return bypass << 15 | sr << 10 | sg << 5 | sb;
case 4:
if (mode_idx)
return bypass << 31 | si;
return bypass << 31 | sr << 20 | sg << 10 | sb;
default:
abort();
}
}