summaryrefslogtreecommitdiffstats
path: root/lst/Cards+
blob: c70668bdad14616b08da2c8dfaab22675eb96ce6 (plain)
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
# $Id$
# This is the database of card definitions used by XFdrake
#

# Each definition should have a NAME entry, a DRIVER
#
# A reference to another definition is made with SEE (already defined
# entries are not overridden).
#
# Optional entries are:
#
# NOCLOCKPROBE: advises never to probe clocks
# UNSUPPORTED: indicates card that is not yet properly supported by XFree4
# LINE: adds a line of text to be included in the Device section (can include options or comments).
#
# DRI_GLX: 3D acceleration configuration for XFree 4 using DRI.
# DRI_GLX_EXPERIMENTAL: DRI, but EXPERIMENTAL and may freeze the machine.
#
# BAD_FB_RESTORE: for bad cards not restoring cleanly framebuffer (XFree 4)
#
# MULTI_HEAD 2: for DualHead cards (think Matrox G450)
# MULTI_HEAD n: for n Head cards (eg: "MULTI_HEAD 4" for QuadHead)
# FB_TVOUT: the card displays to a plugged TV when in framebuffer
#
#


######################################################################
# VESA driver
NAME VESA driver (generic)
CHIPSET VESA VBE 2.0
DRIVER vesa

NAME VGA driver (generic)
DRIVER vga

NAME FrameBuffer (generic)
DRIVER fbdev


#Chips & Technologies

#untested
NAME Chips & Technologies CT65520
DRIVER chips
LINE # Device section for C&T cards.
LINE # Option "suspend_hack"
LINE # Option "STN"
LINE # Option "no_stretch"
LINE # Option "no_center"
LINE # Option "use_modeline"
LINE # Option "fix_panel_size"
LINE # videoram 512

NAME Chips & Technologies CT65525 / CT65530
LINE # Option "nolinear"
LINE # MemBase 0x03b00000
SEE Chips & Technologies CT65520

NAME Chips & Technologies CT65535
LINE # Option "hw_clocks"
LINE # Textclockfreq 25.175
SEE Chips & Technologies CT65525 / CT65530

NAME Chips & Technologies CT65540
LINE # Option "use_18bit_bus"
SEE Chips & Technologies CT65535

NAME Chips & Technologies CT65545 / CT65546 / CT65548
LINE # Option "noaccel"
LINE # Option "no_bitblt"
LINE # Option "xaa_no_color_exp"
LINE # Option "xaa_benchmark"
LINE # Option "hw_cursor"
LINE # Option "mmio"
SEE Chips & Technologies CT65540

NAME Chips & Technologies CT6555x / CT68xxx / CT69xxx
LINE # Option "noaccel"
LINE # Option "no_bitblt"
LINE # Option "xaa_no_color_exp"
LINE # Option "xaa_benchmark"
LINE # Option "hw_cursor"
LINE # Option "sync_on_green"
LINE # Option "fast_dram"
LINE # Option "use_vclk1"
LINE # Textclockfreq 25.175
SEE Chips & Technologies CT65525 / CT65530

NAME Chips & Technologies CT64200
DRIVER chips
LINE # Device section for C&T cards.
LINE # videoram 1024

NAME Chips & Technologies CT64300
DRIVER chips
LINE # Option "noaccel"
LINE # Option "no_bitblt"
LINE # Option "xaa_no_color_exp"
LINE # Option "xaa_benchmark"
LINE # Option "hw_cursor"
LINE # Option "nolinear"
LINE # MemBase 0x03b00000
LINE # Option "hw_clocks"
LINE # Textclockfreq 25.175
SEE Chips & Technologies CT64200

# Cirrus Logic

#tested
NAME Cirrus Logic GD542x-based cards
DRIVER vga
LINE # Device section for Cirrus Logic GD5420/2/4/6/8/9-based cards.
LINE     #MemBase 0x00e00000
LINE     #MemBase 0x04e00000
LINE     #Option "linear"

#tested
NAME Cirrus Logic GD543x-based cards
DRIVER cirrus
LINE # Device section for Cirrus Logic GD5430/34-based cards.
LINE     #MemBase 0x00e00000		# ISA card that maps to 14Mb
LINE     #MemBase 0x04000000		# VLB card that maps to 64Mb
LINE     #MemBase 0x80000000		# VLB card that maps to 2048Mb
LINE     #MemBase 0x02000000		# VLB card that maps to 32Mb
LINE     #Option "linear"

NAME Cirrus Logic GD544x-based cards
DRIVER cirrus

#tested
NAME Cirrus Logic GD546x-based cards
DRIVER cirrus
LINE #Option "fifo_conservative"

# reported not working on SGI 1200 as of 02/22/2001 (RH)
# reported working on XF 4.2.0 by Juan (MDK)
NAME Cirrus Logic GD5480
DRIVER cirrus

NAME Orchid Kelvin 64 VLB
DRIVER cirrus
LINE # Device section for Orchid Kelvin 64 VLB
LINE # Linear framebuffer maps at 2048Mb. Some motherboards make linear addressing
LINE # impossible. Some cards map at 32Mb.
LINE     #MemBase 0x02000000		# VLB card that maps to 32Mb
LINE     #MemBase 0x04000000		# VLB card that maps to 64Mb
LINE     MemBase 0x80000000		# VLB card that maps to 2048Mb
LINE     #Option "linear"

NAME Cirrus Logic GD6xxx / GD7xxx (laptop)
DRIVER vga

NAME PixelView Combo TV Pro (Prolink)
DRIVER vga
LINE # COMMENT on card TV Tuner

NAME PixelView Combo TV 3D AGP (Prolink)
DRIVER vga
LINE # COMMENT on card TV+FM Tuner

# S3

NAME S3 8xx / 9xx / Trio-based cards
DRIVER s3
NEEDVIDEORAM

NAME S3 Aurora64V+-based cards
DRIVER s3
NEEDVIDEORAM
LINE     # Option "lcd_center"
LINE     # Set_LCDClk  <pixel_clock_for_LCD>

NAME Genoa VideoBlitz III AV
LINE    #s3RefClk  50
LINE    #DACspeed 170
SEE S3 8xx / 9xx / Trio-based cards

NAME STB Velocity 64 Video
LINE    #s3RefClk  24
LINE    #DACspeed 220
SEE S3 8xx / 9xx / Trio-based cards

NAME Hercules Graphite Terminator Pro 64
LINE    #s3RefClk  16
LINE    #DACspeed 220
SEE S3 8xx / 9xx / Trio-based cards

NAME Number Nine FX Motion 771
LINE    #s3RefClk  16
SEE S3 8xx / 9xx / Trio-based cards

NAME Elsa Winner 2000PRO-2 / 2000PRO-4
DRIVER s3
NEEDVIDEORAM
LINE     #Option "ELSA_w2000pro"

NAME Elsa Winner 2000PROX-2 / X-4 / X-8 / AVI
DRIVER s3
NEEDVIDEORAM
LINE     #Option "sync_on_green"

NAME Elsa Gloria-4 / Gloria-8
DRIVER s3
NEEDVIDEORAM
LINE     #Option "sync_on_green"

NAME S3 924 with SC1148 DAC
DRIVER s3
NEEDVIDEORAM
LINE     #Probable clocks:
LINE     #Clocks 25.2 28.3 39.7 1.7 49.9 76.7 35.7 44
LINE     #Clocks 130.2 119.5 79.4 31.2 110.0 65.2 74.9 71.3

NAME S3 ViRGE-based cards
DRIVER s3virge
NEEDVIDEORAM
LINE      #Option "xaa_benchmark"
LINE      #Option "fifo_moderate"
LINE      #Option "pci_burst_on"
LINE      #Option "pci_retry"

NAME S3 ViRGE/MX-based cards
DRIVER s3virge
NEEDVIDEORAM
LINE      #Option "lcd_center"
LINE      #Set_LCDClk  <pixel_clock_for_LCD>
LINE      #Option "xaa_benchmark"
LINE      #Option "fifo_moderate"
LINE      #Option "pci_burst_on"
LINE      #Option "pci_retry"

NAME S3 Trio3D-based cards
DRIVER s3virge
LINE Option "sw_cursor"

NAME MELCO WGP-VG4S
LINE      #DACSpeed  191 162 111 83
LINE      #SetMClck  75
SEE S3 ViRGE-based cards

NAME S3 Savage-based cards
DRIVER savage
NEEDVIDEORAM
LINE      #Option "xaa_benchmark"

# S3 UniChrome (via)

NAME S3 UniChrome-based cards
DRIVER openchrome

# Tseng

# All potential driver options, and non-PCI-based cards, dropped (2007/03/08) on 
# advice of current Tseng maintainer, Luc Verhaegen. Non-PCI cards are no longer 
# supported, and no options should be necessary for remaining supported cards.

NAME Tseng ET4000W32p / ET6x00-based cards
DRIVER tseng

# ATI

NAME ATI Mach / Rage-based cards
DRIVER ati
DRI_GLX

NAME ATI Mach / Rage-based cards (no 3D acceleration)
DRIVER ati

NAME ATI Rage 128 TV-out
SEE ATI Mach / Rage-based cards
FB_TVOUT

# Radeon cards not supported by proprietary driver: update name as support changes
NAME ATI Radeon 9250 and earlier
DRIVER ati
DRI_GLX

# Radeon cards supported by proprietary driver and free driver: update name as
# support changes
NAME ATI Radeon 9500 - X850
DRIVER ati
DRI_GLX
DRIVER2 fglrx

# Radeon cards supported by proprietary driver but not free driver: update name as
# support changes
NAME ATI Radeon X1300 - X1950
DRIVER fbdev
DRIVER2 fglrx

# ARK Logic

NAME Ark Logic ARKx000-based cards
DRIVER ark

# National Semiconductor (NSC)

NAME NSC
DRIVER nsc

# Trident

NAME Trident (generic)
DRIVER trident

NAME Trident 8900/9000 (generic)
DRIVER trident

NAME Trident 8900D (generic)
DRIVER trident

NAME Trident TVGA9200CXr (generic)
DRIVER trident

NAME Trident TGUI9400CXi (generic)
DRIVER trident

NAME Trident TGUI9420DGi (generic)
DRIVER trident

NAME Trident TGUI9430DGi (generic)
DRIVER trident

NAME Trident TGUI9420 (generic)
DRIVER trident

NAME Trident TGUI9440 (generic)
DRIVER trident

NAME Trident TGUI9660 (generic)
DRIVER trident

NAME Trident TGUI9680 (generic)
DRIVER trident

NAME Trident TGUI9682 (generic)
DRIVER trident

NAME Trident TGUI9685 (generic)
DRIVER trident

NAME Trident Cyber 9320 (generic)
DRIVER trident

NAME Trident Cyber 9382 (generic)
DRIVER trident

NAME Trident Cyber 9385 (generic)
DRIVER trident

NAME Trident Cyber 9388 (generic)
DRIVER trident

NAME Trident Cyber 939a (generic)
DRIVER trident

NAME Trident Cyber 9397 (generic)
DRIVER trident

NAME Trident Cyber 9397 DVD (generic)
DRIVER trident

NAME Trident Cyber 9520 (generic)
DRIVER trident

NAME Trident Cyber 9325 (generic)
DRIVER trident

NAME Trident 3DImage975 (generic)
DRIVER trident

NAME Trident 3DImage975 AGP (generic)
DRIVER trident

NAME Trident 3DImage985 (generic)
DRIVER trident

NAME Trident Providia 9682 (generic)
DRIVER trident

NAME Trident Providia 9685 (generic)
DRIVER trident

NAME Trident Blade3D (generic)
DRIVER trident

NAME Trident CyberBlade (generic)
DRIVER trident

NAME Trident Cyber 9525 (generic)
DRIVER trident
LINE     # Option "accel" # Use this if acceleration works on your laptop

NAME AOpen PG975
SEE Trident 3DImage975 AGP (generic)

NAME Toshiba Satellite 4030CDT
LINE     Option "cyber_shadow"
SEE Trident Cyber 9525 (generic)

NAME Toshiba Satellite 4060CDT
SEE Trident Cyber 9525 (generic)

NAME Toshiba Satellite 4080CDT
SEE Trident Cyber 9525 (generic)

# SiS

NAME SiS USB
DRIVER sisusb

NAME SiS generic
DRIVER sis

NAME SiS SG86C205
DRIVER sis
BAD_FB_RESTORE
LINE     # Option "no_accel" # Use this if acceleration is causing problems
LINE     # Option "fifo_moderate" 
LINE     # Option "fifo_conserv" 
LINE     # Option "fifo_aggresive" 

NAME SiS SG86C215
DRIVER sis
BAD_FB_RESTORE
LINE     # This is a cheap version of 86c205. I am not sure if acceleration works
LINE     # Option "no_accel" # Use this if acceleration is causing problems
LINE     # Option "no_BitBlt" # Use this if acceleration is causing problems
LINE     # Option "fifo_moderate" 
LINE     # Option "fifo_conserv" 
LINE     # Option "fifo_aggresive" 

NAME SiS SG86C225
DRIVER sis
BAD_FB_RESTORE
LINE     # Option "no_accel" # Use this if acceleration is causing problems
LINE     # Option "fifo_moderate" 
LINE     # Option "fifo_conserv" 
LINE     # Option "fifo_aggresive" 

NAME SiS 5597
DRIVER sis
BAD_FB_RESTORE
LINE     # Option "no_accel" # Use this if acceleration is causing problems
LINE     # Option "fifo_moderate" 
LINE     # Option "fifo_conserv" 
LINE     # Option "fifo_aggresive" 
LINE     # Option "fast_vram"
LINE     # Option "pci_burst_on"
LINE     # Option "xaa_benchmark" # DON'T use with "ext_eng_queue" !!!
LINE     # Option "ext_eng_queue" # Turbo-queue. This can cause drawing
LINE                              # errors, but gives some accel

NAME SiS 5598
DRIVER sis
BAD_FB_RESTORE
LINE     # Option "no_accel" # Use this if acceleration is causing problems
LINE     # Option "fifo_moderate" 
LINE     # Option "fifo_conserv" 
LINE     # Option "fifo_aggresive" 
LINE     # Option "fast_vram"
LINE     # Option "pci_burst_on"
LINE     # Option "xaa_benchmark" # DON'T use with "ext_eng_queue" !!!
LINE     # Option "ext_eng_queue" # Turbo-queue. This can cause drawing
LINE                              # errors, but gives some accel

NAME SiS 6326
DRIVER sis
DRI_GLX_EXPERIMENTAL
BAD_FB_RESTORE
LINE     Option "sw_cursor"
LINE     # Option "no_accel" # Use this if acceleration is causing problems
LINE     # Option "fifo_moderate" 
LINE     # Option "fifo_conserv" 
LINE     # Option "fifo_aggresive" 
LINE     # Option "fast_vram"
LINE     # Option "pci_burst_on"
LINE     # Option "xaa_benchmark" # DON'T use with "ext_eng_queue" !!!
LINE     # Option "ext_eng_queue" # Turbo-queue. This can cause drawing 
LINE                              # errors, but gives some accel

NAME SiS 6326 no_accel
SEE SiS 6326
LINE     Option "no_accel" # Use this if acceleration is causing problems

NAME SiS Real256E
DRIVER sis

NAME SiS 530
DRIVER sis

NAME SiS 540
DRIVER sis
BAD_FB_RESTORE

NAME SiS 620
DRIVER sis

NAME SiS 630
DRIVER sis
DRI_GLX_EXPERIMENTAL

NAME SiS 650
DRIVER sis

NAME SiS 300
DRIVER sis
BAD_FB_RESTORE

NAME MSI MS-4417
SEE SiS 6326

NAME SiS 3D PRO AGP
SEE SiS 6326

NAME Miro Crystal DVD
SEE SiS 6326

NAME PC-Chips M567 Mainboard
SEE SiS 5597

NAME Diamond SpeedStar A50
SEE SiS 6326
LINE     Option "no_imageblt"
LINE     Option "no_bitblt"

NAME AOpen PA50D
SEE SiS 6326

NAME AOpen PA50V
SEE SiS 6326

NAME AOpen PA50E
SEE SiS 6326

NAME AOpen PA80/DVD
SEE SiS 6326

NAME AOpen PA45
SEE SiS 6326

NAME AOpen PT80
SEE SiS 6326

NAME Chaintech Tornado S6000
SEE SiS 6326

NAME Chaintech Desperado SI21
SEE SiS 6326

NAME Chaintech Desperado SI31
SEE SiS 6326

# Cyrix

NAME MediaGX
DRIVER cyrix

# Alliance ProMotion

NAME Alliance ProMotion 6422
DRIVER vga

# Number 9 I128

NAME Number Nine Imagine I-128 (2-8MB)
DRIVER i128

NAME Number Nine Imagine I-128 Series 2 (2-4MB)
DRIVER i128

NAME Revolution 3D (T2R)
DRIVER i128

NAME Number Nine Revolution 3D AGP (4-8MB SGRAM)
DRIVER i128

NAME Number Nine Imagine-128-T2R
DRIVER i128

# Matrox

NAME Matrox Millennium
DRIVER mga
BAD_FB_RESTORE
LINE Option	"sw_cursor"

NAME Matrox Millennium II
DRIVER mga
BAD_FB_RESTORE

NAME Matrox Millennium G200
DRIVER mga
DRI_GLX
# DRI_GLX prefer 16bit with AGP only
BAD_FB_RESTORE

NAME Matrox Millennium G200 DualHead
SEE Matrox Millennium G200
MULTI_HEAD 2

NAME Matrox Millennium G200 QuadHead
SEE Matrox Millennium G200
MULTI_HEAD 4

NAME Matrox Millennium G400
SEE Matrox Millennium G200

NAME Matrox Millennium G400 DualHead
SEE Matrox Millennium G400
MULTI_HEAD 2

NAME Matrox Millennium G450
DRIVER mga
DRI_GLX
BAD_FB_RESTORE

NAME Matrox Millennium G450 DualHead
SEE Matrox Millennium G450
MULTI_HEAD 2

NAME Matrox Millennium G550
SEE Matrox Millennium G450

NAME Matrox Millennium G550 DualHead
SEE Matrox Millennium G550
MULTI_HEAD 2

NAME Matrox Mystique
SEE Matrox Millennium G200

NAME Matrox Productiva G100
DRIVER mga
BAD_FB_RESTORE

# NVIDIA

NAME NVIDIA RIVA 128
DRIVER nv
BAD_FB_RESTORE

NAME NVIDIA RIVA TNT to GeForce 2 (71xx)
DRIVER nv
DRIVER2 nvidia71xx

NAME NVIDIA GeForce 3 to GeForce 4 (96xx)
DRIVER nv
DRIVER2 nvidia96xx

NAME NVIDIA GeForce FX and later
DRIVER nv
DRIVER2 nvidia97xx

NAME NVIDIA GeForce3 (xbox)
DRIVER nvxbox
LINE Option "UseFBDev" "1"
LINE Option "HWCursor" "0"

# IMS

NAME IMS TwinTurbo (generic)
DRIVER imstt

# 3DLabs

NAME 3Dlabs Permedia2 (generic)
DRIVER glint
LINE #Option "no_accel"

NAME 3Dlabs Permedia4 (generic)
DRIVER glint

NAME Elsa GLoria-L/MX
DRIVER glint
LINE #Option "no_accel"

NAME Elsa GLoria-L
DRIVER glint

NAME Elsa GLoria-XL
LINE Option     "SWcursor"
DRIVER glint

NAME Elsa GLoria-XXL
LINE Option     "SWcursor"
DRIVER glint

NAME Diamond Fire GL 3000
LINE Option     "SWcursor"
DRIVER glint
LINE Option "firegl_3000"

NAME Elsa GLoria-S
DRIVER glint
LINE #Option "no_accel"
LINE #VideoRam 8192
LINE Option     "SWcursor"

NAME Diamond Fire GL 1000
DRIVER glint
LINE #Option "no_accel"
LINE #VideoRam 8192
LINE Option     "SWcursor"

NAME Elsa GLoria Synergy
DRIVER glint
LINE #Option "no_accel"
LINE Option     "SWcursor"

NAME Elsa Winner 2000/Office
DRIVER glint
LINE #Option "no_accel"
LINE Option     "SWcursor"

NAME Diamond Fire GL 1000 PRO
DRIVER glint
LINE #Option "no_accel"
LINE Option     "SWcursor"

NAME AccelStar Permedia II AGP
DRIVER glint
LINE #Option "no_accel"
LINE Option     "SWcursor"

NAME Leadtek WinFast 2300
DRIVER glint
LINE Option     "SWcursor"

NAME 3Dlabs Oxygen GMX
DRIVER glint
LINE #Option "no_accel"
LINE Option     "SWcursor"

# Alliance Semiconductor

NAME Diamond Stealth Video 2500
DRIVER apm

NAME AT3D
DRIVER apm
LINE #Option "no_accel"

NAME AT25
DRIVER apm

NAME Hercules Stingray 128 3D
SEE AT3D

# NeoMagic

NAME NeoMagic MagicGraph (laptop/notebook)
DRIVER neomagic
LINE	  Option     "overrideValidateMode"
LINE #    Chipset    "NM2160"
LINE #    IOBase     0xfea00000
LINE #    MemBase    0xfd000000
LINE #    VideoRam   2048
LINE #    DacSpeed   90
LINE #    Option     "linear"
LINE #    Option     "nolinear"
LINE #    Option     "sw_cursor"
LINE #    Option     "hw_cursor"
LINE #    Option     "no_accel"
LINE #    Option     "intern_disp"
LINE #    Option     "extern_disp"
LINE #    Option     "mmio"
LINE #    Option     "no_mmio"
LINE #    Option     "lcd_center"
LINE #    Option     "no_stretch"

NAME NeoMagic 128XD
SEE NeoMagic MagicGraph (laptop/notebook)
LINE     Option "XaaNoScanlineImageWriteRect"
LINE     Option "XaaNoScanlineCPUToScreenColorExpandFill"

NAME NeoMagic MagicMedia (laptop/notebook)
DRIVER neomagic

NAME NeoMagic MagicMedia 256XL+
SEE NeoMagic MagicMedia (laptop/notebook)
LINE Option "sw_cursor"


# Digital

NAME Digital 8-plane TGA (Generic)
CHIPSET TGA
DRIVER tga

NAME Digital 8-plane TGA (UDB/Multia)
CHIPSET TGA
DRIVER tga
LINE     Ramdac "Bt485"

NAME Digital 8-plane TGA (ZLXp-E1)
CHIPSET TGA
DRIVER tga
LINE     Ramdac "Bt485"

NAME Digital 24-plane TGA (ZLXp-E2)
CHIPSET TGA
DRIVER tga
LINE     Ramdac "Bt463"

NAME Digital 24-plane+3D TGA (ZLXp-E3)
CHIPSET TGA
DRIVER tga
LINE     Ramdac "Bt463"

# Epson SPC8110

NAME Epson SPC8110 (CardPC)
DRIVER vga
LINE #    Chipset    "spc8110"
LINE #    MemBase    0x03e00000
LINE #    VideoRam   1024
LINE #    Option     "nolinear"
LINE #    Option     "sw_cursor"
LINE #    Option     "noaccel"
LINE #    Option     "fifo_moderate"
LINE #    Option     "fifo_conservative"

# Rendition

NAME Rendition Verite 1000
DRIVER rendition
LINE # Option "sw_cursor"

NAME Rendition Verite 2x00
DRIVER rendition
LINE # Option "sw_cursor"

NAME Creative Labs 3D Blaster PCI (Verite 1000)
SEE Rendition Verite 1000

NAME Sierra Screaming 3D
SEE Rendition Verite 1000

NAME Miro CRYSTAL VRX
SEE Rendition Verite 1000

NAME Diamond Stealth II S220
SEE Rendition Verite 2x00

NAME Hercules Thriller3D
SEE Rendition Verite 2x00

# Digital

# Epson

NAME Epson CardPC (onboard)

# Intel

NAME Intel 740 (generic)
DRIVER i740
LINE     #Option     "no_accel"
LINE     #Option     "sw_cursor"
LINE     #Option     "hw_cursor"
LINE     #Option     "sgram"
LINE     #Option     "sdram"

NAME Real3D Starfighter AGP
SEE Intel 740 (generic)

NAME Real3D Starfighter PCI
SEE Intel 740 (generic)

NAME Diamond Stealth II/G460 AGP
SEE Intel 740 (generic)

NAME 3DVision-i740 AGP
SEE Intel 740 (generic)

NAME ABIT G740 8MB SDRAM
SEE Intel 740 (generic)

NAME Acorp AGP i740
SEE Intel 740 (generic)

NAME AGP 2D/3D V. 1N, AGP-740D
SEE Intel 740 (generic)

NAME AOpen AGP 2X 3D Navigator PA740
SEE Intel 740 (generic)

NAME ARISTO i740 AGP (ART-i740-G)
SEE Intel 740 (generic)

NAME ASUS AGP-V2740
SEE Intel 740 (generic)

NAME Chaintech AGP-740D
SEE Intel 740 (generic)

NAME Chaintech Tornado I7000
SEE Intel 740 (generic)

NAME EliteGroup(ECS) 3DVision-i740 AGP
SEE Intel 740 (generic)

NAME EONtronics Picasso 740
SEE Intel 740 (generic)

NAME EONtronics Van Gogh
SEE Intel 740 (generic)

NAME Everex MVGA i740/AG
SEE Intel 740 (generic)

NAME Flagpoint Shocker i740 8MB
SEE Intel 740 (generic)

NAME Gainward CardExpert 740 8MB
SEE Intel 740 (generic)

NAME Genoa Systems Phantom 740
SEE Intel 740 (generic)

NAME Gigabyte Predator i740 8MB AGP
SEE Intel 740 (generic)

NAME Hercules Terminator 128 2X/i AGP
SEE Intel 740 (generic)

NAME Intel Express 3D AGP
SEE Intel 740 (generic)

NAME Jaton Video-740 AGP 3D
SEE Intel 740 (generic)

NAME Jetway J-740-3D 8MB AGP, i740 AGP 3D
SEE Intel 740 (generic)

NAME Joymedia Apollo 7400
SEE Intel 740 (generic)

NAME Leadtek Winfast S900
SEE Intel 740 (generic)

NAME Machspeed Raptor i740 AGP 4600
SEE Intel 740 (generic)

NAME Magic-Pro MP-740DVD
SEE Intel 740 (generic)

NAME MAXI Gamer AGP 8 MB
SEE Intel 740 (generic)

NAME Palit Daytona AGP740
SEE Intel 740 (generic)

NAME PowerColor C740 (SG/SD) AGP
SEE Intel 740 (generic)

NAME QDI Amazing I
SEE Intel 740 (generic)

NAME Soyo AGP (SY-740 AGP)
SEE Intel 740 (generic)

NAME VideoExcel AGP 740
SEE Intel 740 (generic)

NAME ViewTop ZeusL 8MB 
SEE Intel 740 (generic)

NAME Winfast S900 i740 AGP 8MB
SEE Intel 740 (generic)

NAME Intel 810 / 815
DRIVER i810
DRI_GLX
LINE Option "XaaNoPixmapCache"

NAME Intel 830 - 965
DRIVER i810
DRI_GLX

# Alan Cox's new "voodoo" driver for Voodoo Graphics and Voodoo II
#0x121a  0x0001  "Card:Voodoo Graphics"  "3Dfx Interactive, Inc.|Voodoo"
NAME Voodoo Graphics
CHIPSET Voodoo Graphics
DRIVER voodoo

# Alan Cox's new "voodoo" driver for Voodoo Graphics and Voodoo II
#0x121a  0x0002  "Card:Voodoo II"    "3Dfx Interactive, Inc.|Voodoo 2"
NAME Voodoo II
CHIPSET Voodoo II
DRIVER voodoo

NAME Voodoo Banshee (generic)
DRIVER tdfx
# DRI_GLX 16bit only

NAME Voodoo Rush (generic)
DRIVER tdfx
LINE Option	"nodri"

NAME Voodoo3 (generic)
DRIVER tdfx

NAME Voodoo4 (generic)
DRIVER tdfx

NAME Voodoo5 (generic)
DRIVER tdfx

NAME Elsa Victory II
SEE Voodoo Banshee (generic)

NAME Diamond Monster Fusion
SEE Voodoo Banshee (generic)

NAME AOpen PA2010
SEE Voodoo Banshee (generic)

NAME Chaintech Desperado 3F10
SEE Voodoo Banshee (generic)

# Silicon Motion, Inc.

NAME Silicon Motion Lynx (generic)
DRIVER siliconmotion

NAME Silicon Motion LynxEM
DRIVER siliconmotion

NAME Silicon Motion Lynx (generic)
DRIVER siliconmotion

NAME Silicon Motion LynxE (generic)
DRIVER siliconmotion

NAME Silicon Motion Lynx3D (generic)
DRIVER siliconmotion

NAME Silicon Motion LynxEM (generic)
DRIVER siliconmotion

NAME Silicon Motion LynxEM+ (generic)
DRIVER siliconmotion

NAME Silicon Motion Lynx3DM (generic)
DRIVER siliconmotion


# Sun Cards / Servers (added by Red Hat Software 02/1999)

NAME Sun Monochrome (bwtwo)
DRIVER sunbw2
 
NAME Sun Color3 (cgthree)
DRIVER suncg3
 
NAME Sun CG8/RasterOps
 
NAME Sun GS (cgtwelve)
 
NAME Sun Graphics Tower

NAME Quantum 3D MGXplus with 4M VRAM
 
NAME Quantum 3D MGXplus
 
NAME Sun Unknown GX
DRIVER suncg6
 
NAME Sun Double width GX
DRIVER suncg6
 
NAME Sun Single width GX
DRIVER suncg6

NAME Sun Turbo GX with 1M VSIMM
DRIVER suncg6
 
NAME Sun Turbo GX Plus
DRIVER suncg6
 
NAME Sun Turbo GX
DRIVER suncg6
 
NAME Sun SX with 4M VSIMM
DRIVER suncg14
 
NAME Sun SX with 8M VSIMM
DRIVER suncg14
 
NAME Sun SX
DRIVER suncg14

NAME Sun Turbo ZX
DRIVER sunleo
 
NAME Sun ZX or Turbo ZX
DRIVER sunleo

NAME Sun TCX (8bit)
DRIVER suntcx
 
NAME Sun TCX (S24)
DRIVER suntcx
 
NAME Sun Elite3D-M6 Horizontal
DRIVER sunffb
 
NAME Sun Elite3D
DRIVER sunffb

NAME Sun FFB 67MHz Creator
DRIVER sunffb
 
NAME Sun FFB 67MHz Creator 3D
DRIVER sunffb
 
NAME Sun FFB 75MHz Creator 3D
DRIVER sunffb
 
NAME Sun FFB2 Vertical Creator
DRIVER sunffb
 
NAME Sun FFB2 Vertical Creator 3D
DRIVER sunffb
 
NAME Sun FFB2Vertical Creator
DRIVER sunffb

NAME Sun FFB2Vertical Creator 3D
DRIVER sunffb
 
NAME Sun FFB2 Horizontal Creator
DRIVER sunffb
 
NAME Sun FFB2 Horizontal Creator 3D
DRIVER sunffb
 
NAME Sun FFB
DRIVER sunffb

# VMware virtual video cards

NAME VMware virtual video card
DRIVER vmware

# Misc

END