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
|
/*
* Main global data and definitions
*
* Copyright (C) 2001-2004 by Thomas Winischhofer, Vienna, Austria
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1) Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2) Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3) The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESSED 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 BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Authors: Thomas Winischhofer <thomas@winischhofer.net>
* others (old code base)
*
*/
#ifndef _XGI_H_
#define _XGI_H_
/***************
#define DEBUG
#define DEBUG1
#define DEBUG2
#define DEBUG3
#define DEBUG4
#define DEBUG5
#define DEBUGI2C
*****************/
#ifndef XGI_VIDEO_HW /* avoid compile error in xgi_videohw.c; weird! */
/* Jong 07/27/2009; use run-time debug instead except for HW acceleration routines */
extern Bool g_bRunTimeDebug;
#define RUNTIMEDEBUG(p) if(g_bRunTimeDebug)p;
/* Jong@08052009 */
#ifdef DEBUGI2C
#define PDEBUGI2C(p) p
#else
#define PDEBUGI2C(p)
#endif
#ifdef DEBUG
#define PDEBUG(p) RUNTIMEDEBUG(p)
#else
#define PDEBUG(p)
#endif
#ifdef DEBUG1
#define PDEBUG1(p) RUNTIMEDEBUG(p)
#else
#define PDEBUG1(p)
#endif
#ifdef DEBUG2
#define PDEBUG2(p) RUNTIMEDEBUG(p)
#else
#define PDEBUG2(p)
#endif
#ifdef DEBUG3
#define PDEBUG3(p) RUNTIMEDEBUG(p)
#else
#define PDEBUG3(p)
#endif
#ifdef DEBUG4
#define PDEBUG4(p) RUNTIMEDEBUG(p)
#else
#define PDEBUG4(p)
#endif
#ifdef DEBUG5
#define PDEBUG5(p) RUNTIMEDEBUG(p)
#else
#define PDEBUG5(p)
#endif
#ifdef CDEBUG
#define CPDEBUG(p) p
#else
#define CPDEBUG(p)
#endif
#ifdef CDEBUG1
#define CPDEBUG1(p) p
#else
#define CPDEBUG1(p)
#endif
#ifdef CDEBUG2
#define CPDEBUG2(p) p
#else
#define CPDEBUG2(p)
#endif
#ifdef CDEBUG3
#define CPDEBUG3(p) p
#else
#define CPDEBUG3(p)
#endif
#ifdef CDEBUG4
#define CPDEBUG4(p) p
#else
#define CPDEBUG4(p)
#endif
#ifdef CDEBUG5
#define CPDEBUG5(p) p
#else
#define CPDEBUG5(p)
#endif
#ifdef ACCELDEBUG
#define PACCELDEBUG(p) p
#else
#define PACCELDEBUG(p)
#endif
#endif
/* Always unlock the registers (should be set!) */
#define UNLOCK_ALWAYS
#ifdef XSERVER_LIBPCIACCESS
#include <pciaccess.h>
#else
#include "xf86Pci.h"
#endif
#include "xf86Cursor.h"
#include "xf86xv.h"
#include "compiler.h"
#include "xorgVersion.h"
#define XGI_USE_EXA
#ifdef XGI_USE_EXA
#include "exa.h"
#endif
#include "vgaHW.h"
#include "vbe.h"
#include "xgi_pci.h"
#include "osdef.h"
#include "vgatypes.h"
#include "vb_struct.h"
#include "compat-api.h"
#ifdef XF86DRI
#define XGINEWDRI
#undef XGINEWDRI2
#include "xf86drm.h"
#include "sarea.h"
#define _XF86DRI_SERVER_
#include "X11/dri/xf86dri.h"
#include "dri.h"
#include "xgi_dri.h"
#endif
#ifdef XSERVER_LIBPCIACCESS
#define VENDOR_ID(p) (p)->vendor_id
#define DEVICE_ID(p) (p)->device_id
#define SUBSYS_ID(p) (p)->subdevice_id
#define CHIP_REVISION(p) (p)->revision
#else
#define VENDOR_ID(p) (p)->vendor
#define DEVICE_ID(p) (p)->chipType
#define SUBSYS_ID(p) (p)->subsysCard
#define CHIP_REVISION(p) (p)->chipRev
#endif
#if 1
#define XGIDUALHEAD /* Include Dual Head code */
#endif
#if 1
#define XGIMERGED /* Include Merged-FB mode */
#endif
#ifdef XGIMERGED
#if 1
#define XGIXINERAMA /* Include Pseudo-Xinerama for MergedFB mode */
#define XGI_XINERAMA_MAJOR_VERSION 1
#define XGI_XINERAMA_MINOR_VERSION 1
#endif
#endif
#if 1
#define XGIGAMMA /* Include code for gamma correction */
#endif
/* Jong 09/28/2007; disable this because it causes cursor drawing incorrectly */
#if 0 /* Include code for color hardware cursors */
#define XGI_ARGB_CURSOR
#endif
#if 0 /* Include YPbPr support on VB */
#define ENABLE_YPBPR
#endif
#ifdef XGIMERGED
#ifdef XGIXINERAMA
#define EXTENSION_PROC_ARGS void *
#include "extnsionst.h" /* required */
#include <X11/extensions/panoramiXproto.h> /* required */
#endif
#endif
#if 1
#define XGIVRAMQ /* Use VRAM queue mode on 315 series */
#endif
#undef XGI315DRI /* define this if dri is adapted for 315/330 series */
#ifndef PCI_VENDOR_XGI
#define PCI_VENDOR_XGI 0x18CA
#endif
#ifndef PCI_CHIP_XGIXG40
#define PCI_CHIP_XGIXG40 0x0040
#endif
#ifndef PCI_CHIP_XGIXG20
#define PCI_CHIP_XGIXG20 0x0020
#endif
/* Jong 09/18/2007; patch to GIT */
#ifndef PCI_CHIP_XGIXG27
#define PCI_CHIP_XGIXG27 0x0027
#endif
/* Jong 01/07/2008; support New XG21 */
#ifndef PCI_CHIP_XGIXG21
#define PCI_CHIP_XGIXG21 0x0021
#endif
#define CONFIG_DRM_XGI
#define XGI_NAME "XGI"
#define XGI_DRIVER_NAME "xgi"
#define XGI_CURRENT_VERSION ((PACKAGE_VERSION_MAJOR << 16) | \
(PACKAGE_VERSION_MINOR << 8) | \
PACKAGE_VERSION_PATCHLEVEL)
/* pXGI->Flags (old series only) */
#define SYNCDRAM 0x00000001
#define RAMFLAG 0x00000002
#define ESS137xPRESENT 0x00000004
#define SECRETFLAG 0x00000008
#define A6326REVAB 0x00000010
#define MMIOMODE 0x00010000
#define LFBQMODE 0x00020000
#define AGPQMODE 0x00040000
#define UMA 0x80000000
#define BIOS_BASE 0xC0000
#define BIOS_SIZE 0x10000
#define SR_BUFFER_SIZE 5
#define CR_BUFFER_SIZE 5
#define XGI_VBFlagsVersion 1
/* VBFlags - if anything is changed here, increase VBFlagsVersion! */
#define CRT2_DEFAULT 0x00000001
#define CRT2_LCD 0x00000002 /* Never change the order of the CRT2_XXX entries */
#define CRT2_TV 0x00000004
#define CRT2_VGA 0x00000008
#define TV_NTSC 0x00000010
#define TV_PAL 0x00000020
#define TV_HIVISION 0x00000040
#define TV_YPBPR 0x00000080
#define TV_AVIDEO 0x00000100
#define TV_SVIDEO 0x00000200
#define TV_SCART 0x00000400
#define VB_CONEXANT 0x00000800 /* 661 series only */
#define VB_TRUMPION VB_CONEXANT /* 300 series only */
#define TV_PALM 0x00001000
#define TV_PALN 0x00002000
#define TV_NTSCJ 0x00001000
#define VB_302ELV 0x00004000
#define TV_CHSCART 0x00008000
#define TV_CHYPBPR525I 0x00010000
#define CRT1_VGA 0x00000000
#define CRT1_LCDA 0x00020000
#define VGA2_CONNECTED 0x00040000
#define DISPTYPE_CRT1 0x00080000 /* CRT1 connected and used */
#define SINGLE_MODE 0x20000000 /* CRT1 or CRT2; determined by DISPTYPE_CRTx */
#define MIRROR_MODE 0x40000000 /* CRT1 + CRT2 identical (mirror mode) */
#define DUALVIEW_MODE 0x80000000 /* CRT1 + CRT2 independent (dual head mode) */
/* Aliases: */
#define CRT2_ENABLE (CRT2_LCD | CRT2_TV | CRT2_VGA)
#define TV_STANDARD (TV_NTSC | TV_PAL | TV_PALM | TV_PALN | TV_NTSCJ)
#define TV_INTERFACE (TV_AVIDEO|TV_SVIDEO|TV_SCART|TV_HIVISION|TV_YPBPR)
/* Only if TV_YPBPR is set: */
#define TV_YPBPR525I TV_NTSC
#define TV_YPBPR525P TV_PAL
#define TV_YPBPR750P TV_PALM
#define TV_YPBPR1080I TV_PALN
#define TV_YPBPRALL (TV_YPBPR525I | TV_YPBPR525P | TV_YPBPR750P | TV_YPBPR1080I)
#define TV_YPBPR43LB TV_CHSCART
#define TV_YPBPR43 TV_CHYPBPR525I
#define TV_YPBPR169 (TV_CHSCART | TV_CHYPBPR525I)
#define TV_YPBPRAR (TV_CHSCART | TV_CHYPBPR525I)
#define DISPTYPE_DISP2 CRT2_ENABLE
#define DISPTYPE_DISP1 DISPTYPE_CRT1
#define VB_DISPMODE_SINGLE SINGLE_MODE /* alias */
#define VB_DISPMODE_MIRROR MIRROR_MODE /* alias */
#define VB_DISPMODE_DUAL DUALVIEW_MODE /* alias */
#define DISPLAY_MODE (SINGLE_MODE | MIRROR_MODE | DUALVIEW_MODE)
/* PresetMode argument */
#define XGI_MODE_SIMU 0
#define XGI_MODE_CRT1 1
#define XGI_MODE_CRT2 2
/* pXGI->MiscFlags */
#define MISC_CRT1OVERLAY 0x00000001 /* Current display mode supports overlay */
#define MISC_PANELLINKSCALER 0x00000002 /* Panel link is currently scaling */
#define MISC_CRT1OVERLAYGAMMA 0x00000004 /* Current display mode supports overlay gamma corr on CRT1 */
#define MISC_TVNTSC1024 0x00000008 /* Current display mode is TV NTSC/PALM/YPBPR525I 1024x768 */
#define HW_DEVICE_EXTENSION XGI_HW_DEVICE_INFO
#define BITMASK(h,l) (((unsigned)(1U << ((h)-(l)+1))-1)<<(l))
#define GENMASK(mask) BITMASK(1?mask,0?mask)
typedef unsigned long ULong;
typedef unsigned short UShort;
typedef unsigned char UChar;
/* ChipFlags */
/* Use only lower 16 bit for chip id! (xgictrl) */
#define XGICF_LARGEOVERLAY 0x00000001
#define XGICF_Is651 0x00000002
#define XGICF_IsM650 0x00000004
#define XGICF_IsM652 0x00000008
#define XGICF_IsM653 0x00000010
#define XGICF_Is652 0x00000020
#define XGICF_Is65x (XGICF_Is651|XGICF_IsM650|XGICF_IsM652|XGICF_IsM653|XGICF_Is652)
#define XGICF_IsM661 0x00000100 /* M661FX */
#define XGICF_IsM741 0x00000200
#define XGICF_IsM760 0x00000400
#define XGICF_IsM661M 0x00000800 /* M661MX */
#define XGICF_IsM66x (XGICF_IsM661 | XGICF_IsM741 | XGICF_IsM760 | XGICF_IsM661M)
#define XGICF_315Core 0x00010000 /* 3D: Real 315 */
#define XGICF_Real256ECore 0x00020000 /* 3D: Similar to 315 core, no T&L? (65x, 661, 740, 741) */
#define XGICF_XabreCore 0x00040000 /* 3D: Real Xabre */
#define XGICF_Ultra256Core 0x00080000 /* 3D: Similar to Xabre, no T&L?, no P:Shader? (660, 760) */
#define XGICF_UseLCDA 0x01000000
#define XGICF_760UMA 0x10000000 /* 760: UMA active */
#define XGICF_CRT2HWCKaputt 0x20000000 /* CRT2 Mono HWCursor engine buggy */
#define XGICF_Glamour3 0x40000000
#define XGICF_Integrated 0x80000000
/* Direct Xv-API */
#define XGI_SD_IS300SERIES 0x00000001
#define XGI_SD_IS315SERIES 0x00000002
#define XGI_SD_IS330SERIES 0x00000004
#define XGI_SD_SUPPORTPALMN 0x00000008 /* tv chip supports pal-m, pal-n */
#define XGI_SD_SUPPORT2OVL 0x00000010 /* set = 2 overlays, clear = support SWITCHCRT xv prop */
#define XGI_SD_SUPPORTTVPOS 0x00000020 /* supports changing tv position */
#define XGI_SD_ISDUALHEAD 0x00000040 /* Driver is in dual head mode */
#define XGI_SD_ISMERGEDFB 0x00000080 /* Driver is in merged fb mode */
#define XGI_SD_ISDHSECONDHEAD 0x00000100 /* Dual head: This is CRT1 (=second head) */
#define XGI_SD_ISDHXINERAMA 0x00000200 /* Dual head: We are running Xinerama */
#define XGI_SD_VBHASSCART 0x00000400 /* videobridge has SCART instead of VGA2 */
#define XGI_SD_ISDEPTH8 0x00000800 /* Depth is 8, no independent gamma correction */
#define XGI_SD_ENABLED 0x00002000 /* xgictrl is enabled (by option) */
#define XGI_SD_PSEUDOXINERAMA 0x00004000 /* pseudo xinerama is active */
#define XGI_SD_SUPPORTLCDA 0x00008000 /* Support LCD Channel A */
#define XGI_SD_SUPPORTNTSCJ 0x00010000 /* tv chip supports ntsc-j */
#define XGI_SD_ADDLSUPFLAG 0x00020000 /* 1 = the following flags are valid */
#define XGI_SD_SUPPORTVGA2 0x00040000 /* CRT2=VGA supported */
#define XGI_SD_SUPPORTSCART 0x00080000 /* CRT2=SCART supported */
#define XGI_SD_SUPPORTOVERSCAN 0x00100000 /* Overscan flag supported */
#define XGI_SD_SUPPORTXVGAMMA1 0x00200000 /* Xv Gamma correction for CRT1 supported */
#define XGI_SD_SUPPORTTV 0x00400000 /* CRT2=TV supported */
#define XGI_SD_SUPPORTYPBPR 0x00800000 /* CRT2=YPbPr (525i, 525p, 750p, 1080i) is supported */
#define XGI_SD_SUPPORTHIVISION 0x01000000 /* CRT2=HiVision is supported */
#define XGI_SD_SUPPORTYPBPRAR 0x02000000 /* YPbPr aspect ratio is supported */
#define XGI_SD_SUPPORTSCALE 0x04000000 /* Scaling of LCD panel supported */
#define XGI_SD_SUPPORTCENTER 0x08000000 /* If scaling supported: Centering of screen [NOT] supported (TMDS only) */
#define XGI_DIRECTKEY 0x03145792
/* XGICtrl: Check mode for CRT2 */
#define XGI_CF2_LCD 0x01
#define XGI_CF2_TV 0x02
#define XGI_CF2_VGA2 0x04
#define XGI_CF2_TVPAL 0x08
#define XGI_CF2_TVNTSC 0x10 /* + NTSC-J */
#define XGI_CF2_TVPALM 0x20
#define XGI_CF2_TVPALN 0x40
#define XGI_CF2_CRT1LCDA 0x80
#define XGI_CF2_TYPEMASK (XGI_CF2_LCD | XGI_CF2_TV | XGI_CF2_VGA2 | XGI_CF2_CRT1LCDA)
#define XGI_CF2_TVSPECIAL (XGI_CF2_LCD | XGI_CF2_TV)
#define XGI_CF2_TVSPECMASK (XGI_CF2_TVPAL | XGI_CF2_TVNTSC | XGI_CF2_TVPALM | XGI_CF2_TVPALN)
#define XGI_CF2_TVHIVISION XGI_CF2_TVPAL
#define XGI_CF2_TVYPBPR525I XGI_CF2_TVNTSC
#define XGI_CF2_TVYPBPR525P (XGI_CF2_TVPAL | XGI_CF2_TVNTSC)
#define XGI_CF2_TVYPBPR750P XGI_CF2_TVPALM
#define XGI_CF2_TVYPBPR1080I (XGI_CF2_TVPALM | XGI_CF2_TVPAL)
/* AGP stuff for DRI */
#define AGP_PAGE_SIZE 4096
#define AGP_PAGES 2048 /* Default: 2048 pages @ 4096 = 8MB */
/* 300 */
#define AGP_CMDBUF_PAGES 256
#define AGP_CMDBUF_SIZE (AGP_PAGE_SIZE * AGP_CMDBUF_PAGES)
/* 315/330 */
#define AGP_VTXBUF_PAGES 512
#define AGP_VTXBUF_SIZE (AGP_PAGE_SIZE * AGP_VTXBUF_PAGES)
#define VOLARI_CQSIZE (1024*1024)
#define VOLARI_CQSIZEXG20 (128*1024)
#define VOLARI_CURSOR_SHAPE_SIZE (64*64*4)
/* For backup of register contents */
typedef struct {
unsigned char xgiRegs3C4[0x50];
unsigned char xgiRegs3D4[0x90];
unsigned char xgiRegs3C2;
unsigned char xgiCapt[0x60];
unsigned char xgiVid[0x50];
unsigned char VBPart1[0x50];
unsigned char VBPart2[0x100];
unsigned char VBPart3[0x50];
unsigned char VBPart4[0x50];
unsigned short ch70xx[64];
unsigned long xgiMMIO85C0;
unsigned char xgi6326tv[0x46];
unsigned long xgiRegsPCI50, xgiRegsPCIA0;
} XGIRegRec, *XGIRegPtr;
/* XGIFBLayout is mainly there because of DGA. It holds the
* current layout parameters needed for acceleration and other
* stuff. When switching mode using DGA, these are set up
* accordingly and not necessarily match pScrn's. Therefore,
* driver modules should read these values instead of pScrn's.
*/
typedef struct {
int bitsPerPixel; /* = pScrn->bitsPerPixel */
int depth; /* = pScrn->depth */
int displayWidth; /* = pScrn->displayWidth */
DisplayModePtr mode; /* = pScrn->currentMode */
} XGIFBLayout;
/* Dual head private entity structure */
typedef struct {
ScrnInfoPtr pScrn_1;
ScrnInfoPtr pScrn_2;
unsigned char * BIOS;
VB_DEVICE_INFO *XGI_Pr;
int CRT2ModeNo; /* Current display mode for CRT2 */
Bool CRT2ModeSet; /* CRT2 mode has been set */
unsigned char CRT2CR30, CRT2CR31, CRT2CR35, CRT2CR38;
int refCount;
/**
* Number of entities
*
* \bug
* This field is tested in one place, but it doesn't appear to ever be
* set or modified.
*/
int lastInstance;
Bool DisableDual; /* Emergency flag */
Bool ErrorAfterFirst; /* Emergency flag: Error after first init -> Abort second */
int maxUsedClock; /* Max used pixelclock on master head */
/**
* Framebuffer addresses and sizes
*
* \bug
* These 4 fields are set, but the stored values don't appear to be used.
*/
unsigned long masterFbAddress;
unsigned long masterFbSize;
unsigned long slaveFbAddress;
unsigned long slaveFbSize;
unsigned char * FbBase; /* VRAM linear address */
unsigned char * IOBase; /* MMIO linear address */
/**
* Map / unmap queue counter.
*
* \bug
* These vales are tested, set to zero, or decremented. However, I don't
* see anywhere in the code where they are incremented.
*/
unsigned short MapCountIOBase;
unsigned short MapCountFbBase;
Bool forceUnmapIOBase; /* ignore counter and unmap */
Bool forceUnmapFbBase; /* ignore counter and unmap */
#ifdef __alpha__
unsigned char * IOBaseDense; /* MMIO for Alpha platform */
unsigned short MapCountIOBaseDense;
Bool forceUnmapIOBaseDense; /* ignore counter and unmap */
#endif
BOOLEAN CRT1gamma;
/**
* \bug This field is tested and set to \c NULL but never used.
*/
unsigned char *RenderAccelArray;
unsigned char * FbBase1;
unsigned long OnScreenSize1;
} XGIEntRec, *XGIEntPtr;
#define XGIPTR(p) ((XGIPtr)((p)->driverPrivate))
#define ExtRegSize 0x40
/* Relative merge position */
typedef enum {
xgiLeftOf,
xgiRightOf,
xgiAbove,
xgiBelow,
xgiClone
} XGIScrn2Rel;
typedef struct MonitorRange {
float loH,hiH,loV,hiV ;
}MonitorRangeRec,*MonitorRangePtr ;
typedef struct {
ScrnInfoPtr pScrn; /* -------------- DON'T INSERT ANYTHING HERE --------------- */
#ifdef XSERVER_LIBPCIACCESS
struct pci_device * PciInfo;
#else
pciVideoPtr PciInfo; /* -------- OTHERWISE xgi_dri.so MUST BE RECOMPILED -------- */
PCITAG PciTag;
#endif
EntityInfoPtr pEnt;
int Chipset;
int ChipRev;
VB_DEVICE_INFO *XGI_Pr; /* For new mode switching code */
unsigned long FbAddress; /* VRAM physical address (in DHM: for each Fb!) */
unsigned long realFbAddress; /* For DHM/PCI mem mapping: store global FBAddress */
unsigned char * FbBase; /* VRAM virtual linear address */
uint32_t IOAddress; /* MMIO physical address */
unsigned char * IOBase; /* MMIO linear address */
unsigned long IODBase; /* Base of PIO memory area */
#ifdef __alpha__
unsigned char * IOBaseDense; /* MMIO for Alpha platform */
#endif
XGIIOADDRESS RelIO; /* Relocated IO Ports baseaddress */
unsigned char * BIOS;
int MemClock;
int BusWidth;
int MinClock;
int MaxClock;
int Flags; /* HW config flags */
long FbMapSize; /* Used for Mem Mapping - DON'T CHANGE THIS */
long availMem; /* Really available Fb mem (minus TQ, HWCursor) */
unsigned long maxxfbmem; /* limit fb memory X is to use to this (KB) */
unsigned long xgifbMem; /* heapstart of xgifb (if running) */
unsigned long dhmOffset; /* Offset to memory for each head (0 or ..) */
DGAModePtr DGAModes;
int numDGAModes;
Bool DGAactive;
Bool NoAccel;
Bool useEXA; /* Jong 01/13/2009; support EXA */
Bool NoXvideo;
Bool TurboQueue;
int ForceCRT1Type;
int ForceCRT2Type;
int OptROMUsage;
Bool ValidWidth;
unsigned char myCR63;
unsigned long VBFlags; /* Video bridge configuration */
unsigned long VBFlags_backup; /* Backup for SlaveMode-modes */
short scrnOffset; /* Screen pitch (data) */
short scrnPitch; /* Screen pitch (display; regarding interlace) */
unsigned long DstColor;
int xcurrent; /* for temp use in accel */
int ycurrent; /* for temp use in accel */
int CommandReg;
Bool HWCursor;
uint16_t CursorSize; /* Size of HWCursor area (bytes) */
xf86CursorInfoPtr CursorInfoPtr;
unsigned CursorOffset;
/**
* \bug This field is set to \c FALSE but never used.
*/
Bool DoColorExpand;
XGIRegRec SavedReg;
XGIRegRec ModeReg;
#ifdef XGI_USE_EXA /* Jong 01/13/2009; support EXA */
ExaDriverPtr EXADriverPtr;
int fillPitch, fillBpp;
uint32_t fillDstBase;
int copyBpp;
int copySPitch, copyDPitch;
uint32_t copySrcBase, copyDstBase;
int copyXdir, copyYdir;
ExaOffscreenArea* exa_scratch;
unsigned int exa_scratch_next;
#endif
CloseScreenProcPtr CloseScreen;
Bool (*ModeInit)(ScrnInfoPtr pScrn, DisplayModePtr mode);
void (*XGISave)(ScrnInfoPtr pScrn, XGIRegPtr xgireg);
void (*XGISave2)(ScrnInfoPtr pScrn, XGIRegPtr xgireg);
void (*XGISave3)(ScrnInfoPtr pScrn, XGIRegPtr xgireg);
void (*XGIRestore)(ScrnInfoPtr pScrn, XGIRegPtr xgireg);
void (*XGIRestore2)(ScrnInfoPtr pScrn, XGIRegPtr xgireg);
void (*XGIRestore3)(ScrnInfoPtr pScrn, XGIRegPtr xgireg);
void (*LoadCRT2Palette)(ScrnInfoPtr pScrn, int numColors,
int *indices, LOCO *colors, VisualPtr pVisual);
int cmdQueueLen; /* Current cmdQueueLength (for 2D and 3D) */
unsigned long cmdQueueLenMax;
unsigned long cmdQueueLenMin;
unsigned char *cmdQueueBase;
int *cmdQueueLenPtr; /* Ptr to variable holding the current queue length */
unsigned int cmdQueueOffset;
unsigned int cmdQueueSize;
unsigned long cmdQueueSizeMask;
/**
* \bug This field is set but never used.
*/
unsigned int agpWantedPages;
#ifdef XF86DRI
unsigned long agpHandle;
unsigned long agpAddr;
unsigned char *agpBase;
unsigned int agpSize;
unsigned long agpVtxBufAddr; /* 315 series */
unsigned char *agpVtxBufBase;
unsigned int agpVtxBufSize;
unsigned int agpVtxBufFree;
xgiRegion agp;
Bool irqEnabled;
int irq;
#endif
unsigned long DRIheapstart, DRIheapend;
void (*RenderCallback)(ScrnInfoPtr);
/**
* \bug This field is tested and set to \c NULL but never used.
*/
unsigned char *RenderAccelArray;
/**
* \bug This field is to \c TRUE but never used.
*/
Bool doRender;
int PerColorExpandBufferSize;
int ColorExpandBufferNumber;
unsigned char *ColorExpandBufferAddr[32];
int ColorExpandBufferScreenOffset[32];
/**
* \bug This field is read but never initialized.
*/
int ImageWriteBufferSize;
unsigned char *ImageWriteBufferAddr;
int Rotate;
BOOLEAN HaveCustomModes; /* Jong 07/27/2009; support customer modes */
/* ShadowFB support */
Bool ShadowFB;
unsigned char *ShadowPtr;
int ShadowPitch;
/**
* \bug This field is set but never used.
*/
Bool loadDRI;
#ifdef XF86DRI
Bool directRenderingEnabled;
DRIInfoPtr pDRIInfo;
int drmSubFD;
#endif
HW_DEVICE_EXTENSION xgi_HwDevExt; /* For new mode switching code */
XF86VideoAdaptorPtr adaptor;
ScreenBlockHandlerProcPtr BlockHandler;
/**
* \bug This field is tested and used but never set.
*/
void (*VideoTimerCallback)(ScrnInfoPtr, Time);
void (*ResetXv)(ScrnInfoPtr);
void (*ResetXvGamma)(ScrnInfoPtr);
OptionInfoPtr Options;
/**
* \bug This field is used but never initialized.
*/
unsigned char LCDon;
Bool Blank;
int CRT1off; /* 1=CRT1 off, 0=CRT1 on */
uint16_t LCDheight; /* Vertical resolution of LCD panel */
uint16_t LCDwidth; /* Horizontal resolution of LCD panel */
vbeInfoPtr pVbe; /* For VESA mode switching */
UCHAR ScratchSet[16];
MonitorRangeRec CRT1Range,CRT2Range;
#ifdef XGIDUALHEAD
Bool DualHeadMode; /* TRUE if we use dual head mode */
Bool SecondHead; /* TRUE is this is the second head */
XGIEntPtr entityPrivate; /* Ptr to private entity (see above) */
#endif
XGIFBLayout CurrentLayout; /* Current framebuffer layout */
Bool Primary; /* Display adapter is primary */
xf86Int10InfoPtr pInt; /* Our int10 */
/**
* Use our own default modes?
*
* \bug This field is set but never used.
*/
Bool noInternalModes;
int ForceTVType, SenseYPbPr;
int NonDefaultPAL, NonDefaultNTSC;
unsigned long ForceYPbPrType, ForceYPbPrAR;
unsigned long lockcalls; /* Count unlock calls for debug */
Atom xvBrightness, xvContrast, xvColorKey, xvHue, xvSaturation;
Atom xvAutopaintColorKey, xvSetDefaults, xvSwitchCRT;
Atom xvDisableGfx, xvDisableGfxLR, xvTVXPosition, xvTVYPosition;
Atom xvDisableColorkey, xvUseChromakey, xvChromaMin, xvChromaMax;
Atom xvInsideChromakey, xvYUVChromakey;
Atom xvGammaRed, xvGammaGreen, xvGammaBlue;
unsigned long ChipFlags;
unsigned long XGI_SD_Flags;
BOOLEAN UseHWARGBCursor;
BOOLEAN HWARGBCursor;
int vb;
BOOLEAN restorebyset;
BOOLEAN nocrt2ddcdetection;
BOOLEAN forcecrt2redetection;
BOOLEAN CRT1gamma, CRT1gammaGiven, CRT2gamma, XvGamma, XvGammaGiven;
int XvDefCon, XvDefBri, XvDefHue, XvDefSat;
BOOLEAN XvDefDisableGfx, XvDefDisableGfxLR;
BOOLEAN XvUseMemcpy;
int XvGammaRed, XvGammaGreen, XvGammaBlue;
uint8_t XvGammaRampRed[256], XvGammaRampGreen[256], XvGammaRampBlue[256];
BOOLEAN disablecolorkeycurrent;
uint32_t colorKey;
uint32_t MiscFlags;
float zClearVal;
unsigned long bClrColor, dwColor;
int AllowHotkey;
BOOLEAN enablexgictrl;
short Video_MaxWidth, Video_MaxHeight;
short scrnPitch2;
int CurXPreset ;
int CurYPreset ;
unsigned long mmioSize;
#ifdef XGIMERGED
Bool MergedFB, MergedFBAuto;
XGIScrn2Rel CRT2Position;
char * CRT2HSync;
char * CRT2VRefresh;
char * MetaModes;
ScrnInfoPtr CRT2pScrn;
DisplayModePtr CRT1Modes;
DisplayModePtr CRT1CurrentMode;
int CRT1frameX0;
int CRT1frameY0;
int CRT1frameX1;
int CRT1frameY1;
Bool CheckForCRT2;
int MergedFBXDPI, MergedFBYDPI;
#ifdef XGIXINERAMA
Bool UsexgiXinerama;
Bool CRT2IsScrn0;
ExtensionEntry *XineramaExtEntry;
int xgiXineramaVX, xgiXineramaVY;
Bool AtLeastOneNonClone;
#endif
#endif
/* Added for 3D */
unsigned long cmdQueue_shareWP_only2D;
unsigned long *pCQ_shareWritePort;
void (*SetThreshold)(ScrnInfoPtr pScrn, DisplayModePtr mode,
unsigned short *Low, unsigned short *High);
XGI_DSReg SRList[ExtRegSize] ;
XGI_DSReg CRList[ExtRegSize] ;
/**
* Total number of iterations to wait in \c Volari_Idle.
*/
unsigned int idle_wait_count;
//:::: for capture
Bool v4l_videoin;
int v4l_devnum; /* v4l device number, 0,1,2....*/
//~::::
int TargetRefreshRate;
Bool IgnoreDDC;
Bool Non_DDC_DefaultMode;
int Non_DDC_DefaultResolutionX ;
int Non_DDC_DefaultResolutionY ;
int Non_DDC_DefaultRefreshRate ;
} XGIRec, *XGIPtr;
#ifdef XGIDUALHEAD
# define IS_DUAL_HEAD(x) ((x)->DualHeadMode)
# define IS_SECOND_HEAD(x) ((x)->SecondHead)
# define ENTITY_PRIVATE(x) ((x)->entityPrivate)
#else
# define IS_DUAL_HEAD(x) FALSE
# define IS_SECOND_HEAD(x) FALSE
# define ENTITY_PRIVATE(x) NULL
#endif
#define SEQ_ADDRESS_PORT 0x0014
#define MISC_OUTPUT_REG_WRITE_PORT 0x0012
#define MISC_OUTPUT_REG_READ_PORT 0x001C
#define GRAPH_ADDRESS_PORT 0x001E
#define VIDEO_SUBSYSTEM_ENABLE_PORT 0x0013
#define CRTC_ADDRESS_PORT_COLOR 0x0024
#define PCI_COMMAND 0x04
#define SDMPTR(x) ((XGIMergedDisplayModePtr)(x->currentMode->Private))
#define CDMPTR ((XGIMergedDisplayModePtr)(pXGI->CurrentLayout.mode->Private))
#define BOUND(test,low,hi) { \
if(test < low) test = low; \
if(test > hi) test = hi; }
#define REBOUND(low,hi,test) { \
if(test < low) { \
hi += test-low; \
low = test; } \
if(test > hi) { \
low += test-hi; \
hi = test; } }
typedef struct _MergedDisplayModeRec {
DisplayModePtr CRT1;
DisplayModePtr CRT2;
XGIScrn2Rel CRT2Position;
} XGIMergedDisplayModeRec, *XGIMergedDisplayModePtr;
typedef struct _region {
int x0,x1,y0,y1;
} region;
extern void xgiOptions(ScrnInfoPtr pScrn);
extern const OptionInfoRec * XGIAvailableOptions(int chipid, int busid);
extern void XGISetup(ScrnInfoPtr pScrn);
extern void XGIVGAPreInit(ScrnInfoPtr pScrn);
extern Bool XGIAccelInit(ScreenPtr pScreen);
extern Bool XGIHWCursorInit(ScreenPtr pScreen);
extern Bool XGIDGAInit(ScreenPtr pScreen);
extern void XGIInitVideo(ScreenPtr pScreen);
extern int XGI_GetCHTVlumabandwidthcvbs(ScrnInfoPtr pScrn);
int XG40Mclk(XGIPtr pXGI);
void XGINew_InitVBIOSData(PXGI_HW_DEVICE_INFO HwDeviceExtension, PVB_DEVICE_INFO pVBInfo) ;
int compute_vclk(int Clock, int *out_n, int *out_dn, int *out_div,
int *out_sbit, int *out_scale);
void XGI_WaitBeginRetrace(XGIIOADDRESS RelIO);
void XGI_WaitEndRetrace(XGIIOADDRESS RelIO);
#include <unistd.h>
/* 2005/11/21 added by jjtseng */
#define DelayS(sec) usleep((sec)*1000000)
#define DelayMS(millisec) usleep((millisec)*1000)
#define DelayUS(microsec) usleep((microsec))
/*~jjtseng 2005/11/21 */
Bool Volari_AccelInit(ScreenPtr pScreen) ;
/* void XGI_UnLockCRT2(PXGI_HW_DEVICE_INFO,USHORT BaseAddr); */
/* void XGI_LockCRT2(PXGI_HW_DEVICE_INFO,USHORT BaseAddr); */
/* void XGI_DisableBridge(PXGI_HW_DEVICE_INFO,USHORT BaseAddr); */
/* void XGI_EnableBridge(PXGI_HW_DEVICE_INFO,USHORT BaseAddr); */
#endif
extern void XGI_New_GetVBType(VB_DEVICE_INFO *XGI_Pr, PXGI_HW_DEVICE_INFO);
extern USHORT XGI_GetModeID(ULONG VBFlags, int HDisplay, int VDisplay,
int Depth, int LCDwith, int LCDheight);
extern BOOLEAN XGI_SearchModeID(const XGI_StStruct *SModeIDTable,
const XGI_ExtStruct *EModeIDTable, unsigned char VGAINFO,
USHORT *ModeNo, USHORT *ModeIdIndex);
extern UCHAR XGI_GetModePtr(const XGI_StStruct *SModeIDTable,
unsigned ModeType, USHORT ModeNo, USHORT ModeIdIndex);
extern void XGI_SetReg(XGIIOADDRESS port, USHORT index, USHORT data);
extern void XGI_SetRegByte(XGIIOADDRESS port, USHORT data);
extern void XGI_SetRegShort(XGIIOADDRESS port, USHORT data);
extern void XGI_SetRegLong(XGIIOADDRESS port, ULONG data);
extern UCHAR XGI_GetReg(XGIIOADDRESS port, USHORT index);
extern UCHAR XGI_GetRegByte(XGIIOADDRESS port);
extern USHORT XGI_GetRegShort(XGIIOADDRESS port);
extern ULONG XGI_GetRegLong(XGIIOADDRESS port);
extern void XGI_SetRegANDOR(XGIIOADDRESS Port, USHORT Index, USHORT DataAND,
USHORT DataOR);
extern void XGI_SetRegAND(XGIIOADDRESS Port, USHORT Index, USHORT DataAND);
extern void XGI_SetRegOR(XGIIOADDRESS Port, USHORT Index, USHORT DataOR);
#ifndef uint8_t
#define uint8_t CARD8
#endif
extern void XGI_WriteDAC(XGIIOADDRESS dac_data, unsigned shift,
unsigned ordering, uint8_t red, uint8_t green, uint8_t blue);
#ifdef DEBUG
void XGIDumpRegs(ScrnInfoPtr pScrn);
/**
* Write value to the PC's 0x80 debug port.
*
* \bug
* I'm pretty sure the debug 0x80 only exists on PCs. Should this routine
* be a no-op on non-x86 and non-x86-64 architectures?
*/
#define Newdebugcode(dbg_code) outb(0x80, dbg_code)
#else
#define Newdebugcode(dbg_code)
#endif
|