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
|
<!DOCTYPE linuxdoc PUBLIC "-//XFree86//DTD linuxdoc//EN" [
<!ENTITY % defs SYSTEM "defs.ent"> %defs;
]>
<article>
<title>Driver Status for XFree86™ &relvers;
<author>The XFree86 Project, Inc
<date>1 June 2001
<ident>
$XFree86: xc/programs/Xserver/hw/xfree86/doc/sgml/Status.sgml,v 1.32 2001/08/09 19:14:12 dawes Exp $
</ident>
<abstract>
This document provides information about the status of the driver and
hardware support in XFree86 &relvers; compared with that in XFree86
&legacyvers;. Please send updates for this document to
<email>fixes@xfree86.org</email>. Please do not send requests for
information or support to that address (they will not be answered).
</abstract>
<toc>
<sect>Introduction
<p>
This document contains one section per vendor (organised alphabetically)
for each chipset family that is supported in XFree86 &legacyvers; or
XFree86 &relvers;. It includes information about the status of the
drivers and the hardware they support, including a comparison of the
level of support between versions &legacyvers; and &relvers;. Unless
otherwise stated, hardware is classified as "supported" if its driver
provides basic 2D support. Support for additional features may or may
not be present.
In XFree86 &legacyvers;, several X servers are available; much hardware
uses the XF86_SVGA server, which has a set of driver modules that are built
into it at compile time. In other cases, X servers for specific chips (or
families of chips) are provided (such as XF86_AGX, XF86_Mach64, etc.).
In XFree86 &relvers;, there is only one X server, called "XFree86", which
can load driver modules at runtime. Thus there is no specific mention of a
server binary when &relvers; is discussed; only the XFree86 server is
used. Third-party vendors (often the manufacturers of various video
chipsets) may provide their own drivers for the XFree86 server, but these
third-party modules are beyond the scope of this document.
NOTE: Status information needs to be checked carefully and expanded where
possible. E.g., include information about acceleration, multi-head, known
problems, hardware known to work on, platform dependencies/limitations,
other architectures known to work on (e.g., Alpha, PPC), etc.
<sect>3Dfx
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (including acceleration) for Voodoo Banshee and Voodoo3
cards is provided by the XF86_SVGA server with the tdfx driver.
<tag>&relvers;:</tag>
Support for Voodoo Graphics and Voodoo2 chips is provided by the
"glide" driver (requires version 2.x of the Glide library, which is
not part of the XFree86 distribution).
Support (including acceleration) for Voodoo Banshee, Voodoo3,
Voodoo4, and Voodoo5 is provided by the "tdfx" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in
&relvers;. The Voodoo Graphics, Voodoo2, Voodoo4, and Voodoo5 are
supported only in &relvers;.
</descrip>
<sect>3Dlabs
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (including acceleration) for GLINT 500TX (with IBM RGB526
RAMDAC), GLINT MX plus Delta or Gamma (with IBM RGB526 and RGB640
RAMDACs), Permedia with IBM RGB526 RAMDAC, and Permedia 2, 2a, 2v
is provided by the XF86_3DLabs server.
<tag>&relvers;:</tag>
Support (including acceleration) for Permedia, Permedia 2, 2a, 2v,
Permedia 3, GLINT 500TX, and GLINT MX with the Gamma or Delta
coprocessor is provided by the "glint" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
The Permedia 3 is supported only in &relvers;.
</descrip>
<sect>Alliance
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (including acceleration) for the AT24, AP6422, AT3D.
Support is provided by the XF86_SVGA server with the apm driver.
<tag>&relvers;:</tag>
Support (including acceleration) for the AT24, AT25 and AT3D.
This support is provided by the "apm" driver. This driver
currently has only incomplete support for the AP6422.
<tag>Summary:</tag>
The AP6422 is supported in &legacyvers; but not fully in &relvers;.
All other hardware supported in &legacyvers; is also supported in
&relvers;. The AT25 is supported only in &relvers;.
</descrip>
<sect>ARK Logic
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (including acceleration) for the ARK1000PV, ARK2000PV, and
ARK2000MT. Support is provided by the XF86_SVGA server with the
ark driver.
<tag>&relvers;:</tag>
Support (including acceleration) for the ARK1000PV, ARK2000PV,
and ARK2000MT. Support is provided by the "ark" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
</descrip>
<sect>ATI
<p>
<descrip>
<tag>&legacyvers;:</tag>
Accelerated support is provided for the Mach8 chips (by the
XF86_Mach8 server), Mach32 chips (by the XF86_Mach32 server),
the following Mach64 and Rage chips: GX, CX, CT, ET, VT, VT3, GT,
RageII+DVD, RagePro (GB, GD, GI, FP, GQ), VT4, Rage IIC (GV, GW, GZ),
Rage LT Pro (LD, LB, LI, LP), Rage LT, Rage XL or XC (GL, GM, GN, GO,
GR, GS) and Rage Mobility (LM, LN, LR, LS) (by the XF86_Mach64 server).
Unaccelerated support is provided for most of the above (except
some early Mach8 and Mach32 adapters), as well the old VGAWonder
series chipsets (18800, 18800-1, 28800-2, 28800-4, 28800-5,
28800-6) by the XF86_SVGA server with the ati driver. Accelerated
support is provided for the Rage 128 chips by the XF86_SVGA
server with the r128 driver.
<tag>&relvers;:</tag>
Accelerated support is provided for Mach64, Rage, Rage 128 and
Radeon chips. Unaccelerated support is provided for all of the
others except the Mach8 and some early Mach32 chips by the "ati"
driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in
&relvers; except for Mach8 and some old Mach32 chips.
</descrip>
<sect>Avance Logic
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the AL2101, ALI2228, ALI2301, ALI2302, ALI2308,
ALI2401 chipsets. Support is provided by the XF86_SVGA server,
using the al2101 driver for the AL2101, and the ali driver for
the others. These drivers reportedly work, but they have no
maintainer.
<tag>&relvers;:</tag>
No native support for these chipsets, because the old drivers
have not been ported.
<tag>Summary:</tag>
No Avance Logic chips are supported in &relvers;.
</descrip>
<sect>Chips and Technologies
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the 65520, 65525, 65530, 65535, 65540,
65545, 65546, 65548, 65550, 65554, 65555, 68554, 69000, 64200
and 64300. This support is provided by the XF86_SVGA server
with the chips driver.
<tag>&relvers;:</tag>
Support (accelerated) for the 65520, 65525, 65530, 65535, 65540,
65545, 65546, 65548, 65550, 65554, 65555, 68554, 69000, 64200
and 64300. This support is provided by the "chips" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in
&relvers;.
</descrip>
<sect>Cirrus Logic
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (unaccelerated) for the 6410, 6412, 6420 and 6440 is
provided by the XF86_SVGA server with the cl64xx driver. Support
(accelerated) for the 5420, 5422, 5424, 5426, 5428, 5429, 5430,
5434, 5436, 5446, 5480, 5462, 5464, 5465, 6205, 6215, 6225,
6235, 7541, 7542, 7543, 7548, 7555 and 7556 is provided by the
XF86_SVGA server with the cirrus driver.
<tag>&relvers;:</tag>
Support (accelerated) for the Alpine (5430, 5434, 5436, 5446, 5480,
7548), and Laguna (5462, 5464, 5465) chips is provided by the
"cirrus" driver.
<tag>Summary:</tag>
The following chips are supported in &legacyvers; but not in
&relvers;: 6410, 6412, 6420, 6440, 5420, 5422, 5424, 5426, 5428,
5429, 6205, 6215, 6225, 6235, 7541, 7542, 7543, 7555 and 7556.
</descrip>
<sect>Compaq/Digital
<p>
<descrip>
<tag>&legacyvers;:</tag>
The old Compaq AVGA chipset is supported by the XF86_SVGA server
with the compaq driver. The status of this support is unknown
because we don't have any recent test reports, and this driver
has no maintainer.
Support (accelerated) for the DEC 21030 TGA 8 plane, 24 plane
and 24 plane 3D chips (on Alpha platforms) is provided by the
XF86_TGA server.
<tag>&relvers;:</tag>
No support exists for the Compaq AVGA (its driver hasn't been
ported).
Support (accelerated) for the DEC 21030 TGA 8 plane, 24 plane
and 24 plane 3D chips (only tested on Alpha platforms) is provided
by the "tga" driver.
<tag>Summary:</tag>
No Compaq AVGA chips are supported in &relvers;. DEC TGA support
is equivalent in both &legacyvers; and &relvers;.
</descrip>
<sect>Cyrix
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the Cyrix MediaGX is provided by the
XF86_SVGA server with the cyrix driver.
<tag>&relvers;:</tag>
The &legacyvers; driver has been ported to &relvers;, including
acceleration, but feedback is needed.
<tag>Summary:</tag>
Cyrix MediaGX users are encouraged to test its support in
&relvers;.
</descrip>
<sect>Epson
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the Epson SPC8110 is provided by the
XF86_SVGA server with the spc8100 driver.
<tag>&relvers;:</tag>
No native support for this chipset, because the old driver
has not been ported.
<tag>Summary:</tag>
No Epson chips are supported in &relvers;.
</descrip>
<sect>Genoa
<p>
<descrip>
<tag>&legacyvers;:</tag>
The old Genoa GVGA chipset is supported by the XF86_SVGA server
with the gvga driver. The status of this support is unknown
because we don't have any recent test reports, and this driver
has no maintainer.
<tag>&relvers;:</tag>
No native support for this chipset, because the old driver
has not been ported.
<tag>Summary:</tag>
No Genoa chips are supported in &relvers;.
</descrip>
<sect>IBM
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the standard IBM VGA chip (and compatibles) is
provided by the XF86_Mono, XF86_VGA16 and XF86_SVGA servers with
the generic driver.
Support for the IBM 8514/A chip (and compatibles) is provided by
the XF86_8514 server.
Support for the IBM XGA-2 chip is provided by the XF86_AGX server.
<tag>&relvers;:</tag>
Support for the standard IBM VGA chip (and compatibles) is
provided by the "vga" driver.
There is no support for the IBM 8514/A or XGA-2 because the
drivers have not been ported.
<tag>Summary:</tag>
The standard VGA core is supported in both versions, but there
is no support for the 8514/A or XGA-2 in &relvers;.
</descrip>
<sect>IIT
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the AGX-016, AGX-015 and AGX-014 is
provided by the XF86_AGX server.
<tag>&relvers;:</tag>
No native support for these chipsets, because the old driver
has not been ported.
<tag>Summary:</tag>
No IIT chips are supported in &relvers;.
</descrip>
<sect>Integrated Micro Solutions (IMS)
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the IMS Twin Turbo 128 and Twin Turbo 3D
is provided by the XF86_SVGA server with the imstt driver.
<tag>&relvers;:</tag>
Support (accelerated) for the IMS Twin Turbo 128 and Twin Turbo 3D
is provided by the "imstt" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
</descrip>
<sect>Intel
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the Intel i740 is provided by the
XF86_SVGA server with the i740 driver, and for the Intel i810 with
the i810 driver. The i810 is supported only on Linux, and requires
the agpgart.o kernel module in order to use modes that require more
than 1MB of video memory.
<tag>&relvers;:</tag> Support (accelerated) for the Intel i740 is
provided by the "i740" driver, and support for the Intel i810
(including i810-dc100 and i810e) and i815 is provided by the "i810"
driver. The "i810" driver is currently supported only on Linux and
FreeBSD (4.1 and later), and requires AGP GART kernel support.
<tag>Summary:</tag>
The i740 and i810 are supported in both versions, but the i810 is
supported only on Linux/x86 and recent FreeBSD/i386 platforms at
present.
</descrip>
<sect>Matrox
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the MGA2064W (Millennium I), MGA1064SG
(Mystique), MGA2164W (Millennium II) (PCI and AGP), G100, G200
and G400 is provided by the XF86_SVGA server with the mga driver.
<tag>&relvers;:</tag>
Support (accelerated) for the MGA2064W (Millennium I), MGA1064SG
(Mystique), MGA2164W (Millennium II) (PCI and AGP), G100, G200,
G400, and G450 is provided by the "mga" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
The G450 is supported only in &relvers;.
</descrip>
<sect>Micronix, Inc. (MX)
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the MX68000 and MX68010 chips is provided by the
XF86_SVGA server with the mx driver. The status of this support
is unknown because we don't have any recent test reports, and
this driver has no maintainer.
<tag>&relvers;:</tag>
No native support for this chipset, because the old driver
has not been ported.
<tag>Summary:</tag>
No MX chips are supported in &relvers;.
</descrip>
<sect>NCR
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the old NCR 77C22 and 77C22E chips is provided by
the XF86_SVGA server and the ncr77c22 driver. The status of
this support is unknown because we don't have any recent test
reports.
<tag>&relvers;:</tag>
No native support for this chipset, because the old driver
has not been ported.
<tag>Summary:</tag>
No NCR chips are supported in &relvers;.
</descrip>
<sect>NeoMagic
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the NeoMagic NM2070, NM2090, NM2093,
NM2097, NM2160 and NM2200 chipsets is provided by the XF86_SVGA
server with the neo driver.
<tag>&relvers;:</tag>
Support (accelerated) for the NeoMagic NM2070, NM2090, NM2093,
NM2097, NM2160, NM2200, NM2230, NM2360 and NM2380 chipsets is
provided by the "neomagic" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
The NM2230 and later chips are supported only in &relvers;.
</descrip>
<sect>NVIDIA
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the NV1, Riva 128, 128ZX, TNT, TNT2
(Ultra, Vanta, M64), GeForce (DDR, 256) and Quadro is provided by
the XF86_SVGA server and the nv driver.
<tag>&relvers;:</tag>
Support (accelerated) for the Riva 128, 128ZX, TNT, TNT2 (Ultra,
Vanta, M64), GeForce (DDR, 256), GeForce 2 (GTS, Ultra, MX),
GeForce 3, Quadro, and Quadro2 is provided by the "nv" driver.
<tag>Summary:</tag>
All chipsets supported in &legacyvers; except the NV1 are also
supported in &relvers;. Support for the newer chips (GeForce2 and
later) is only available in &relvers;.
</descrip>
<sect>Number Nine
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the Imagine 128, Ticket 2 Ride,
Revolution 3D and Revolution IV is provided by the XF86_I128
server.
<tag>&relvers;:</tag>
Support (accelerated) for the Imagine 128, Ticket 2 Ride,
Revolution 3D and Revolution IV is provided by the "i128" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
</descrip>
<sect>Oak Technologies, Inc.
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the OTI067, OTI077, and OTI087 (the latter with some
acceleration) is provided by the XF86_SVGA server and the oak
driver.
<tag>&relvers;:</tag>
No native support for these chipsets, because the old driver
has not been ported.
<tag>Summary:</tag>
No Oak chips are supported in &relvers;.
</descrip>
<sect>Paradise/Western Digital
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the Paradise PVGA1 and the Western Digital WD90C00,
90C10, 90C30, 90C24, 90C31 and 90C33 chipsets is provided by the
XF86_SVGA server with the pvga1 driver. The status of the support
for some of these chipsets is uncertain because we don't have any
recent test reports, and this driver has no maintainer.
<tag>&relvers;:</tag>
No native support for these chipsets, because the old driver
has not been ported.
<tag>Summary:</tag>
No Paradise/Western Digital chips are supported in &relvers;.
</descrip>
<sect>RealTek
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the RealTek RTG3106 is provided by the XF86_SVGA
server and the realtek driver. The status of this support is
unknown because we don't have any recent test reports, and this
driver has no maintainer.
<tag>&relvers;:</tag>
No native support for these chipsets, because the old driver
has not been ported.
<tag>Summary:</tag>
No RealTek chips are supported in &relvers;.
</descrip>
<sect>Rendition/Micron
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the Verite 1000, 2100 and 2200 is provided by the
XF86_SVGA server with the rendition driver.
<tag>&relvers;:</tag>
Support for the Verite 1000, 2100 and 2200 is provided by the
"rendition" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
</descrip>
<sect>S3
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the S3 911, 924, 801, 805, 928, 864, 868,
964, 968, Trio32, Trio64, Trio64V+, Trio64UV+, Aurora64V+,
Trio64V2, PLATO/PX is provided by the XF86_S3 server and the
XF86_SVGA server with the s3_svga driver. Support (accelerated)
for the ViRGE, ViRGE/VX, ViRGE/DX, ViRGE/GX, ViRGE/GX2, ViRGE/MX,
ViRGE/MX+ is provided by the XF86_S3V server. Support
(accelerated) for those ViRGE chips, as well as the Trio3D and
Trio3D/2X is provided by the XF86_SVGA server with the s3v driver.
Support (accelerated) for the Savage3D, Savage3D/MV, Savage4, and
Savage2000, is provided by the XF86_SVGA server with the s3_savage
driver on some OSes (Linux, *BSD).
<tag>&relvers;:</tag>
Support (accelerated) for the ViRGE, ViRGE/VX, ViRGE/DX, ViRGE/GX,
ViRGE/GX2, ViRGE/MX, ViRGE/MX+, Trio3D and Trio3D/2X is provided by
the "s3virge" driver. Support (accelerated) for the Savage3D,
Savage3D/MV, Savage4, and Savage2000, is provided by the "savage"
driver. Support for the other S3 chipsets has not yet been ported.
<tag>Summary:</tag>
Only the ViRGE, Trio3D and Savage chipsets are supported in &relvers;.
All of the other chipsets are supported only in &legacyvers;.
</descrip>
<sect>Silicon Graphics, Inc. (SGI)
<p>
<descrip>
<tag>&legacyvers;:</tag>
No SGI hardware is supported in &legacyvers;.
<tag>&relvers;:</tag>
Unaccelerated support for the SGI Indy's Newport cards is provided
by the "newport" driver.
<tag>Summary:</tag>
SGI hardware is supported only in &relvers;.
</descrip>
<sect>Silicon Integrated Systems (SiS)
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the SiS 86C201, 86C202, 86C205, 86C215,
86C225, 5597, 5598, 6326, 530, 620, 300, 630 and 540 is provided
by the XF86_SVGA server with the sis driver.
<tag>&relvers;:</tag>
Support (accelerated) for the SiS <!-- 86C205, 86C215, 86C225, -->
<!-- 5597, 5598, --> 530, 620, 6326 is provided by the "sis" driver.
The 630, 300, and 540 are also supported, but this code is new and
there are some problems with it in this version.
<tag>Summary:</tag>
Support for the 86C201, 86C202, 86C205, 86C215, 86C225, 5597 and 5598
is currently only available in &legacyvers;.
</descrip>
<sect>Silicon Motion, Inc.
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the Lynx, LynxE, Lynx3D, LynxEM, LynxEM+
and Lynx3DM chips is provided by the XF86_SVGA server with the
smi driver.
<tag>&relvers;:</tag>
Support (accelerated) for the Lynx, LynxE, Lynx3D, LynxEM, LynxEM+
and Lynx3DM chips is provided by the "siliconmotion" driver.
<tag>Summary:</tag>
All hardware supported in &legacyvers; is also supported in &relvers;.
</descrip>
<sect>Sun Microsystems
<p>
<descrip>
<tag>&legacyvers;:</tag>
No Sun hardware is supported in &legacyvers;.
<tag>&relvers;:</tag>
Sun BW2 framebuffers are supported by the "sunbw2" driver.
Sun CG3 framebuffers are supported by the "suncg3" driver.
Sun CG6 framebuffers are supported by the "suncg6" driver.
Sun CG14 framebuffers are supported by the "suncg14" driver.
Sun FFB framebuffers are supported by the "sunffb" driver.
Sun LEO framebuffers are supported by the "sunleo" driver.
Sun TCX framebuffers are supported by the "suntcx" driver.
<tag>Summary:</tag>
Sun hardware is supported only in &relvers;.
</descrip>
<sect>Trident Microsystems
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated where the chip supports it) for the
TVGA8200LX, TVGA8800CS, TVGA8900B, TVGA8900C, TVGA8900CL,
TVGA8900D, TVGA9000, TVGA9000i, TVGA9100B, TVGA9200CXr,
TGUI9400CXi, TGUI9420, TGUI9420DGi, TGUI9430DGi, TGUI9440AGi,
TGUI9660, TGUI9680, ProVidia 9682, ProVidia 9685, 3DImage975,
3DImage985, Blade3D, Cyber9320, Cyber9382, Cyber9385, Cyber9388,
Cyber9397, Cyber9397/DVD, Cyber9520, Cyber9525, CyberBlade/DSTN/i7,
CyberBlade/i1, and CyberBlade/i7 is provided by the XF86_SVGA
server with the tvga8900 driver.
<tag>&relvers;:</tag>
Support (accelerated where the chip supports it) for the TVGA8900D,
TGUI9440AGi, TGUI9660, TGUI9680, ProVidia 9682, ProVidia 9685,
3DImage975, 3DImage985, Blade3D, Cyber9320, Cyber9382, Cyber9385,
Cyber9388, Cyber9397, Cyber9397/DVD, Cyber9520, Cyber9525/DVD,
CyberBlade/Ai1, CyberBlade/DSTN/Ai1, CyberBlade/DSTN/i1,
CyberBlade/DSTN/i7, CyberBlade/e4, CyberBlade/i1, CyberBlade/i7,
CyberBladeXP, and CyberBladeXPm is provided by the "trident"
driver.
<tag>Summary:</tag>
The following (older) chipsets are supported in &legacyvers; and
not in &relvers;: TVGA8200LX, TVGA8800CS, TVGA8900B, TVGA8900C,
TVGA8900CL, TVGA9000, TVGA9000i, TVGA9100B, TVGA9200CXr,
TGUI9400CXi, TGUI9420, and TGUI9430DGi.
The TVGA8900D, TGUI9440AGi, TGUI9660, TGUI9680, ProVidia 9682,
ProVidia 9685, 3DImage975, 3DImage985, Blade3D, Cyber9320,
Cyber9382, Cyber9385, Cyber9388, Cyber9397, Cyber9397/DVD,
CyberBlade/DSTN/i1 CyberBlade/DSTN/i7, CyberBlade/i1, and
CyberBlade/i7 are supported in both &legacyvers; and &relvers;.
The CyberBlade/Ai1, CyberBlade/DSTN/Ai1, CyberBlade/e4,
CyberBladeXP, and CyberBladeXPm are supported only in &relvers;.
</descrip>
<sect>Tseng Labs
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the ET3000 is provided by the XF86_SVGA server with
the et3000 driver. Support for the ET4000AX, and accelerated
support for the ET4000/W32, ET4000/W32i, ET4000/W32p, ET6000
and ET6100 is provided by the XF86_SVGA server with the et4000
driver. Support (accelerated) for the ET4000/W32 series and
the ET6000 is also provided by the deprecated XF86_W32 server.
<tag>&relvers;:</tag>
Support for the ET4000AX, and accelerated support for the
ET4000/W32, ET4000/W32i, ET4000/W32p, ET6000 and ET6100 is
provided by the "tseng" driver.
<tag>Summary:</tag>
All cards supported by &legacyvers; are also supported by &relvers;
except for the old ET3000.
</descrip>
<sect>Video 7
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support for the Video 7 chipset is provided by the XF86_SVGA
server with the video7 driver. The status of this support is
unknown because we don't have any recent test reports, and this
driver has no maintainer.
<tag>&relvers;:</tag>
No native support for these chipsets, because the old driver
has not been ported.
<tag>Summary:</tag>
No Video 7 chips are supported in &relvers;.
</descrip>
<sect>Weitek
<p>
<descrip>
<tag>&legacyvers;:</tag>
Support (accelerated) for the P9000 is provided by the XF86_P9000
server and accelerated support for the P9100 is provided by the
XF86_SVGA server with the p9x00 driver.
<tag>&relvers;:</tag>
No native support for these chipsets, because the old drivers
have not been ported.
<tag>Summary:</tag>
No Weitek chips are supported in &relvers;.
</descrip>
</article>
|