summaryrefslogtreecommitdiff
path: root/distrib/notes/i386/hardware
blob: 7b46afcad3e03a4bdd5d79294fd7f78f0442810b (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
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
dnl	$OpenBSD: hardware,v 1.257 2008/03/05 20:44:04 deraadt Exp $
OpenBSD/MACHINE OSREV works across a broad range of standard PCs and
clones, with a wide variety of processors and I/O bus architectures.  It
can be expected to install and run with minimal difficulties on most
current products.  The cases where problems may be encountered are
typically older proprietary PCs, laptops, or specialized server boxes
that rely on a custom BIOS to paper over implementation differences.

OpenBSD/MACHINE OSREV supports most SMP (Symmetrical MultiProcessor)
systems.  To support SMP operation, a separate SMP kernel (bsd.mp)
is included with the installation file sets.

The minimal configuration to install the system is 12MB or 16MB of RAM and
perhaps 100MB of disk space.  A custom kernel might be able to run with only
8MB.  To install the entire system requires much more disk space, and to run
X or compile the system, more RAM is recommended.  (16MB of RAM will actually
allow you to run X and/or compile but it won't be speedy. Note that until
you have around 32MB of RAM, getting more RAM is more important than getting
a faster CPU.)

Supported hardware {:-include-:}:
	Processors
		All CPU chips compatible with the Intel 80386 (MACHINE)
		architecture:
			386/486 (SX/DX/DX2/DX4, an FPU is required)
			Intel Pentium/Pentium-MMX
			Intel Pentium Pro/II/III/Celeron/Xeon
			Intel Pentium IV
			AMD 6x86
			AMD K5/K6/K6-2/K6-3
			AMD Athlon/Duron
			Cyrix MediaGX/M1/M2
			VIA Cyrix III
			Rise mP6
			IDT WinChip
			NexGen 586
			NS Geode GX1
			Transmeta TMS3200, TMS5400, TMS5600
		Everything that is a clone of the 386 or up should work
		fine. The only CPU that is known to work poorly (due to
		flawed motherboard designs) is the Cyrix 386DLC.
	Buses
		All standard ISA, EISA, VLB, and PCI bus based machines,
		including:
			Intel 450GX/KX based machines
			Intel 450NX based machines
			ServerWorks chipset-based machines
			(We just had to mention those last three, since
			 they are the hardest to support)
		Both 16-bit PCMCIA Cards and newer 32-bit CardBus
		support
		Universal Serial Bus (USB)
		Inter IC (I2C) bus
		The MCA bus found in various IBM PS/2 machines is not
		supported.
	Bus Interfaces
		Standard PCI-PCI bridges, including PCI expansion
		backplanes
		YENTA-compatible PCI-CardBus bridges
	Entropy Sources
		Interrupt latency collection from many devices
		Intel 82802 random number generator found on i810, i815,
		i820, i840, i850, and i860 based systems.
	Disk Controllers
		Floppy controllers.
		ISA MFM, ESDI, IDE, and RLL hard disk controllers.
	PCI IDE and Serial ATA Controllers
		Acard ATP850U, ATP860, ATP860-A, ATP865-A, ATP865-R
		Acer Labs M5229
		Adaptec AAR-1210SA
		Advanced Micro Devices AMD-756, AMD-766, AMD-768, AMD-8111
		ATI IXP 200, IXP 300, IXP 400, IXP 700
		CMD Tech PCI0640, PCI0643, PCI0646, PCI0648, PCI0649, PCI0680
		Contaq Microsystems/Cypress CY82C693
		HighPoint HPT366, HPT370, HPT372, HPT302, HPT371, HPT374
		    (RAID mode is not supported)
		Intel PIIX, PIIX3, and PIIX4
		Intel 82801 (ICH/ICH0/ICH2/ICH3/ICH4/ICH4-M/ICH5/ICH5R/
		    ICH6/ICH6M/ICH6R/ICH7/ICH7M/ICH7R/ICH7M DH/ICH8/ICH8M/
		    ICH9/ICH9M)
		Intel 6300ESB/6321ESB
		ITE IT8211F/IT8212F (RAID mode is not supported)
		JMicron JMB361/JMB363/JMB365/JMB366/JMB368
		National Semiconductor PC87415
		National Semiconductor SCx200 (found on SC1100 SoC)
		NVIDIA nForce/nForce2/nForce2-400/nForce3/nForce3-250/nForce4/
		    MCP04/MCP51/MCP55/MCP61/MCP65/MCP67/MCP73/MCP77
		Promise PDC20246, PDC20262, PDC20265, PDC20267, PDC20268,
		    PDC20268R, PDC20269, PDC20271, PDC20275, PDC20276, PDC20277,
		    PDC20318, PDC20319, PDC20371, PDC20375, PDC20376, PDC20377,
		    PDC20378, PDC20379, PDC20571, PDC20575, PDC20579, PDC20775,
		    PDC40518, PDC40718, PDC40719, PDC40779
		ServerWorks OSB4, CSB5, CSB6 (including support for the third
		    channel)
		Silicon Image SiI3112, SiI3512, SiI3114
		Silicon Integrated System 180, 181, 5513 (5597/5598), 540,
		    550, 620, 630, 630S, 633, 635, 640, 645, 645DX, 648, 650,
		    651, 652, 661, 655, 658, 730, 733, 735, 740, 745, 746, 748,
		    750, 751, 752, 755, 760, 962, 963
		VIA Technologies CX700, VT82C586/A/B, VT82C596A/B, VT82C686A/B,
		    VT8231, VT8366, VT8233, VT8235, VT8237, VT8237A/S, VT8251,
		    VT6410, VX700
	SCSI Host Adapters
		Adaptec AHA-1540, AHA-154xA, AHA-154xB, AHA-1542C,
		    AHA-1542CF, AHA-1542CP, AHA-1640 [B] [C]
		Adaptec AHA-174x [B] [C]
		Adaptec AIC-6260 and AIC-6360 based boards, including: [B] [C]
		    the Adaptec AHA-152x and the SoundBlaster SCSI host adapter.
		    (Note that you cannot boot from these boards if they do not
		    have a boot ROM; only the AHA-152x and motherboards using
		    this chip are likely to be bootable, consequently.)
		Adaptec AIC-7770, AIC-7850, AIC-7860, AIC-7870, AIC-7880,
		    AIC-7890, AIC-7891, AIC-7892, AIC-7895, AIC-7896, AIC-7897
		    and AIC-7899 based host adapters [B] [C] including the
		    Adaptec cards
			AHA-274X[W,T]
			AHA-284X
			AHA-2910, AHA-2915
			AHA-2920
			AHA-2930[C,U2]
			AHA-2940[J,N,U,AU,UW,UW Dual,UW Pro,U2W,U2B]
			AHA-2950[U2W,U2B]
			AHA-3940[U,AU,UW,AUW,U2W]
			AHA-3950U2
			AHA-3960
			AHA-3985
			AHA-4944UW
			AHA-19160B
			AHA-29160[B,N]
			AHA-39160
		Adaptec AIC-7901, AIC-7901A, and AIC-7902 based host
		    adapters [A] [C] including the Adaptec cards
			AHA-29320
			AHA-39320
		AdvanSys 'U', 'UW', 'U2W' and 'U160' PCI SCSI
		    controllers including the ABP940U[AW],
		    ASB3940U[AW]-00, ASB3940U2W-00 and ASB3950U160 [A] [B] [C]
		AMD Am53c974 PCscsi-PCI SCSI controllers, including: [A] [B] [C]
		    Tekram DC-390
		BusLogic BT-54x (Adaptec AHA-154x clones) [B] [C]
		BusLogic 445, 74x, 9xx  (but not the new "FlashPoint" series
		    of BusLogic SCSI adapters) [B] [C]
		Initio INIC-940 and INIC-950 based PCI SCSI host
		  adapters, including: [A] [C]
		    Initio INI-9090U
		    Initio INI-9100U/UW
		    Iwill 2935UW
		    DTC Domex 3194U Plus
		LSI Fusion-MPT (Symbios Logic/NCR) [A] [C]
		    53C1020/53C1020A/53C1030/53C1030T/53C1035
		    FC909/FC919/919X/FC929/FC929X/FC949/FC949E/FC949X
		    SAS1064/SAS1064E/SAS1068/SAS1068E
		QLogic PCI SCSI controllers [A] [C]
		Seagate/Future Domain ISA SCSI adapter cards, including: [B] [C]
		    ST01/02
		    Future Domain TMC-885
		    Future Domain TMC-950
		Symbios Logic (NCR) 53C8xx, 53C1010, and 53C1510D-based
		  PCI SCSI host adapters (including generic/no name cards, old
		  ASUS cards, the DTC-3130 series, Diamond Fireport series,
		  etc.) [B] [C]
		Tekram DC-300B and DC-320E (Adaptec AHA-154x clones) [B] [C]
		Tekram DC-3x5U (DC-315U, DC-395U/UW/F) TRM-S1040 based
		  PCI SCSI host adapters [A] [C]
		Ultrastor 14f, 24f, and 34f [A] [C]
		WD-7000 SCSI host adapters [A] [B] [C]
	RAID and Cache Controllers
		3ware Escalade 3W-5x00, 3W-6x00, 3W-7x00 [A] [C]
		Adaptec FSA-based RAID controllers, including: [*]
		    Adaptec AAC-2622, AAC-364, AAC-3642
		    Dell PERC 2/Si, PERC 2/QC, PERC 3/Si, PERC 3/Di,
		      PERC 3/QC
		    HP NetRAID-4M
		American Megatrends Inc. MegaRAID PCI controllers in
		  "Mass Storage" mode, including: [A] [C]
		    ACER MegaRAID ROMB-2E
		    Apple Xserve G5 PCI Hardware RAID Card
		    Dell CERC-PATA, PERC 2/DC, PERC 2/SC, PERC 3/DC, PERC 3/DCL		    
		      PERC 3/QC, PERC 3/SC, PERC 4/DC, PERC 4/Di, PERC 4/SC,
		      PERC 4e/DC, PERC 4e/Di, PERC 4e/SC, PERC 4e/Si
		    FSC MegaRAID PCI Express ROMB
		    Hewlett-Packard 438, 466, T[567]
		    Intel RAID Controller SRCS16, SRCS28X, SRCU41L, SRCU42E,
		      SRCU42X, SROMBU42E, SRCZCRX
		    LSI Logic/AMI/Symbios MegaRAID, 523 SATA, i4 133 RAID,
		      ATA 133-2 Elite 1400/1600/1650,
		      Enterprise 1200/1300/1400/1500/1600,
		      Express 100/200/300/500, Series 418, SCSI 320-0/320-0X,
		      SCSI 320-1/320-1E/320-1LP/320-2/320-2E/320-2X/320-4X,
		      SATA 150-4, SATA 150-6, SATA 300-4X, SATA 300-8ELP,
		      SATA 300-8X, SATA 300-8XLP
		    NEC MegaRAID PCI Express ROMB
		Compaq Smart ARRAY 2*, 3* and 4* adapters, including: [A] [C]
		    Compaq Integrated Array
		    Compaq IAES
		    Compaq IDA, IDA-2
		    Compaq RAID LC2
		    Compaq Smart Array 221, 3100ES, 3200, 4200,
		      4250ES, 431
		    Compaq SMART, SMART-2/E, SMART-2/P, SMART-2DH,
		      SMART-2SL
		Compaq/HP Smart ARRAY 5* and 6* adapters
		DPT SmartCache and SmartRaid III/IV PCI/EISA adapters [A] [C]
		Intel (and formerly ICP-Vortex) GDT series [A] [C]
		I2O (intelligent I/O) RAID controllers, including: [A] [C]
		    Adaptec SCSI RAID (ASR-2100S, ASR-2110S, ASR-3200S,
		      etc)
		    American Megatrends Inc. MegaRAID controllers
		    (in I2O mode)
		    and probably other vendors' controllers supporting
		    I2O, including Intel and Mylex (untested)
		LSI Logic & Dell MegaRAID SAS controllers
		    Dell PERC 5/e, PERC 5/i, PERC 6/e, PERC 6/i
		    Intel RAID Controller SRCSAS18E, SRCSAS144E
		    LSI Logic MegaRAID SAS 8300XLP/8308ELP/8344ELP/8408E,
		      MegaRAID SAS 8480E/8888ELP/8880EM2

	CD-ROM and DVD-ROM Drives
		Mitsumi CD-ROM drives [*]
		    [Note: The Mitsumi driver device probe is known
		    to cause trouble with several devices!]
		Most SCSI CD-ROM, CD-R, CD-RW, DVD and DVD-RW drives
		Most ATAPI CD-ROM, CD-R, CD-RW, DVD and DVD-RW drives
	Tape Drives
		Most SCSI tape drives [C]
		Most SCSI tape changers [G]
	MDA, CGA, VGA, SVGA, and HGC Display Adapters.  (Note that not
		all of the display adapters OpenBSD/MACHINE
		are supported by X.  See the XFree86 FAQ for more
		information.)
	Serial Ports
		8250/16450-based ports
		16550-based ports
		ST16660-base ports
		XR16850-based ports (only in the pccom driver)
		AST-style 4-port serial boards [G]
		BOCA 8-port serial cards [*]
		Cyclades Cyclom-{4, 8, 16}Y serial boards [G]
		Cyclades-Z series multiport serial boards [G]
		IBM PC-RT 4-port serial boards [*]
		Addonics FlexPort 8S [*]
	Parallel Ports
		Any standard parallel port [G]
	Communication Controllers
		Universal Serial Bus host controllers, including:
		    USB Universal Host Controller [A] [B] [C]
		    USB Open Host Controller [A] [B] [C]
		PCI `universal' communication cards, providing serial
		  and parallel ports, including: [G]
		    AT&T/Lucent Venus Modem (found on IBM 33L4618
			card, Actiontec 56K, and others)
		    Avlab Low Profile PCI 4S Quartet (4 port serial)
		    Avlab PCI 2S (2 port serial)
		    Boca Research Turbo Serial 654 PCI (4 port serial)
		    Boca Research Turbo Serial 658 PCI (8 port serial)
		    Decision Computer Inc PCCOM PCI 2 Port (serial)
		    Decision Computer Inc PCCOM PCI 4 Port (serial)
		    Decision Computer Inc PCCOM PCI 8 Port (serial)
		    Digi International Digi Neo 4 (4 port serial)
		    Dolphin Peripherals 4014 (dual parallel) and
			4035 (dual serial)
		    Exsys EX-41098 (4 port serial)
		    Koutech IOFLEX-2S (dual serial
		    Kouwell Model-223 (2-port serial, 1 port parallel)
		    Lava Computers 2SP-PCI (parallel port)
		    Lava Computers 2SP-PCI and Quattro-PCI (dual serial)
		    Lava Computers Octopus-550
		    Lava LavaPort-650
		    Moxa Technologies Co., Ltd. PCI I/O Card 4S (4 port
			serial)
		    Moxa Technologies Co., Ltd. C104H/PCI (4 port serial)
		    Moxa Technologies Co., Ltd. CP104/PCI (4 port serial)
		    NEC PK-UG-X008 (serial)
		    NEC PK-UG-X001 K56flex PCI (modem)
		    NetMos 1P (1 port parallel)
		    NetMos 2S1P (2 port serial and 1 port parallel)
		    NetMos 4S (4 port serial)
		    Oxford OX16PCI952 (2 port serial, 1 port parallel)
		    Oxford OX16PCI954 (4 port serial, 1 port parallel)
		    SIIG Cyber 2P1S (dual parallel, single serial)
			and 2S1P (dual serial, single parallel)
		    SIIG Cyber 4S (quad serial)
		    SIIG Cyber I/O (single parallel, single serial)
		    SIIG Cyber Parallel, Parallel Dual, Serial,
			Serial Dual
		    SIIG Cyber 8S PCI 16C850
		    SUNIX 400x (1 port parallel)
		    SUNIX 401x (2 port parallel)
		    SUNIX 402x (1 port serial)
		    SUNIX 403x (2 port serial)
		    SUNIX 405x (4 port serial)
		    SUNIX 406x (8 port serial)
		    SUNIX 407x (2 port serial and 1 port parallel)
		    SUNIX 408x (2 port serial and 2 port parallel)
		    SUNIX 409x (4 port serial and 2 port parallel)
		    Syba Tech Ltd. PCI-4S2P-550-ECP (4 port serial, 2
			port parallel)
		    US Robotics 3CP5609 PCI (modem)
		    VScom PCI 800  (8 port serial)
		    VScom PCI 011H (1 port parallel)
		    VScom PCI 100H (1 port serial)
		    VScom PCI 110H (1 port serial and 1 port parallel)
		    VScom PCI 200H (2 port serial)
		    VScom PCI 210H (2 port serial and 1 port parallel)
		    VScom PCI 400H (4 port serial)
		    VScom PCI 410H (4 port serial and 1 port parallel)
		    VScom PCI 800H (8 port serial)
		    VScom PCI 100L (1 port serial)
		    VScom PCI 200L (2 port serial)
		    VScom PCI 210L (2 port serial and 1 port parallel)
		    VScom PCI 400L (4 port serial)
		    VScom PCI 800L (8 port serial)
	Ethernet Adapters
		3Com 3c501 [A] [B] [C]
		3Com 3c503 [B] [C]
		3Com 3c505 [A] [B] [C]
		3Com 3c507 [A] [B] [C]
		3Com 3c509, 3c579, and 3c59x (disabling PnP on 3c509B is
		    recommended)
		3Com 3c515 [B] [C]
		3Com 3c9xx Etherlink XL adapters, including:
		    3Com 3c900/3c900B PCI adapters
		    3Com 3c905/3c905B/3c905C PCI adapters
		    3Com 3c980/3c980C server adapters
		    3Com 3cSOHO adapter
		    3Com 3c900B-FL and 3c900B-FL/FX fiber optic
			adapters
		    3Com 3c555/3c556/3c556B MiniPCI adapters
		    Dell on-board 3c920
		    Dell Precision on-board 3c905B
		    Dell OptiPlex GX1 on-board 3c918
		    Dell Latitude laptop docking station embedded
			3c905
		    NVIDIA nForce2 integrated 3Com 9201 (nForce2-ST, nForce2-GT)
		3Com 3c990 3XP Typhoon/Sidewinder PCI adapters, including: [A]
		  [B] [C]
		    3C990-TX-95
		    3C990-TX-97
		    3C990-TX-SVR95
		    3C990-TX-SVR97
		Adaptec "Starfire" AIC-6915 based PCI adapters, including: [G]
		    Adaptec Single32 ANA-69011
		    Adaptec Single64 ANA-62011 and ANA-62020
		    Adaptec Duo64 ANA-62022
		    Adaptec Quartet64 ANA-62044
		ADMtek AL981 ("Comet") and AN983 ("Centaur-P") based PCI
		adapters, including:
		    Accton EN2242 MiniPCI
		    Linksys LNE100TX v4.x
		    Mototech ME316
		ADMtek AN986-based USB adapters, including: [A] [B] [C]
		    3Com 3c460b
		    Abocom UFE1000
		    Abocom DSB650TX
		    Accton USB320-EC
		    Accton SpeedStream Ethernet
		    Admtek Pegasus, Pegasus II
		    AEI USB Fast Ethernet
		    Allied Telesyn AT-USB100
		    ATEN UC-110T
		    Belkin F5D5050
		    Billionton Systems USB100, USB100E, USB100LP, USBE100
		    Corega FEther USB-TX, USB-TXS
		    D-Link DSB-650, 650TX, 650TX-PNA
		    ELCON Systemtechnik Goldpfeil P-LAN
		    Elecom LD-USB/TX, LD-USBL/TX, LD-USB20
		    Elsa Microlink USB2Ethernet
		    GIGABYTE GN-BR402W
		    Hawking UF100
		    HP HN210E
		    I/O Data USB ETTX
		    Kingston KNU101TX
		    Laneed LD-USBL/TX
		    Linksys USB100TX, USB100H1, USB10T, USB10TA, USB10TX
		    Melco Inc. LUA-TX, LUA2-TX
		    Microsoft MN110
		    Mobility EasiDock Ethernet
		    Netgear FA101
		    Omnidirectional Control Technology USB TO Ethernet
		    Siemens SpeedStream USB
		    SmartBridges smartNIC 2
		    SMC 2202USB/ETH
		    SMC 2206USB/ETH
		    SOHOware NUB100, NUB110
		ASIX Electronics AX88172/AX88178/AX88772 USB Ethernet adapters,
		  including: [A] [B]
		    ATEN UC210T
		    BAFO BF-320
		    Billionton Systems USB2AR
		    Buffalo(MELCO) LUA-U2-KTX
		    Corega FEther USB2-TX
		    D-Link DUB-E100
		    Good Way GWUSB2E
		    Hawking UF200
		    Intellinet USB 2.0 to Ethernet (rev A)
		    IO-Data ETG-US2
		    JVC MP-PRX1
		    Level One USB-0200
		    Linksys USB200M
		    Linksys USB1000
		    Logitec LAN-GTJ/U2
		    Netgear FA120
		    Nintendo Wii USB Lan Ethernet Adapter RVL-015
		    OQO model 01+ Ethernet
		    Sitecom LN-029
		    SMC 2209USB/ETH
		    SnapPort USB 2.0 LAN Adapter
		    ST Lab USB 2.0 Fast Ethernet
		    Surecom EP-1427X-2
		    System TALKS SGC-X2UL
		    TRENDnet TU2-ET100
		    Z-TEK ZK-R01-2
		AMD LANCE and PCnet-based ISA Ethernet adapters, including: [B] [C]
		    Novell NE1500T
		    Novell NE2100
		    Kingston 21xx
		AMD PCnet-based PCI Ethernet adapters, including: [B] [C]
		    BOCALANcard/PCI
		    AT&T StarLAN 10, EN100, and StarLAN Fiber
		ASIX 88140A/88141 PCI Ethernet adapters, including:
		    CNet Pro110B
		    Alfa Inc. GFC2204
		Broadcom BCM4401 [A] [B]
		CATC USB-EL1210A-based USB adapters, including: [A] [B] [C]
		    Belkin F5U011/F5U111
		    CATC Netmate and Netmate II
		    SmartBridges SmartLink
		Davicom DM9009, DM9100, DM9102, and DM9102A based PCI adapters,
		including:
		    Jaton XpressNet
		Davicom DM9601 based USB adapters, including: [A] [B] [C]
		    Corega FEther USB-TXC
		    HenTong WK-668
		    ShanTou ST268
		DEC EtherWORKS III adapters, including: [G]
		    DEC DE203, DE204, DE205
		Digital DC21x4x-based PCI Ethernet adapters, including:
		    Older SMC PCI EtherPower 10, 10/100 (models
		      8432, 9332, and 9334)
		    Older Linksys 10, 10/100 (newer models are
		      supported by other drivers)
		    Znyx ZX3xx
		    Cogent EM100FX and EM440TX
		    Digital PCI DE435, EISA DE425, DE450, DE500
		    Asante 21140A
		    D-Link DFE-570TX Quad port
		Digital DC2114x-based four port cards, including:
		    Adaptec ANA-6944A
		    Cogent EM400
		    Compex 400TX
		    CompuShack Goldline Quattro
		    Phobos P430TX
		    Znyx ZX346
		Intel EtherExpress 16 [A] [B] [C]
		Intel EtherExpress PRO/10 ISA [A] [B] [C]
		Intel i8255x-based (except the i82556) PCI adapters,
		including:
		    Intel EtherExpress PRO/10+
		    Intel EtherExpress PRO/100, PRO/100B, and PRO/100+
		    Intel EtherExpress PRO/100+ "Management Adapter"
		    Intel EtherExpress PRO/100 Dual Port
		    Intel PRO/100 VE, PRO/100 VM, and PRO/100 S
		Intel 21145-based PCI adapters
		Kawasaki LSI KL5KUSB101B-based USB adapters, including: [A]
		  [B] [C]
		    3Com 3c19250
		    3Com 3c460 HomeConnect
		    AboCom Systems URE450 Ethernet
		    ADS Technologies USB-10T
		    Aox USB101
		    Asante USB to Ethernet
		    ATen DSB-650C
		    ATen UC10T
		    Corega USB-T
		    D-Link DSB-650C
		    Entegra NET-USB-E45
		    I/O Data USB-ET/T
		    Jaton USB XpressNet
		    Kawasaki USB101
		    Kingston Ethernet
		    Linksys USB10T
		    Mobility Ethernet
		    Netgear EA101
		    Peracom USB
		    Portgear Ethernet
		    Portsmith Express Ethernet
		    Psion Dacom Gold Port Ethernet
		    Shark Pocket Adapter
		    Silicom U2E
		    SMC 2102/2104USB
		Lite-On PNIC/PNIC-II-based adapters, including:
		    Kingston KNE110TX
		    Linksys LNE100TX
		    Matrox Networks FastNIC 10/100
		    Netgear FA310TX
		Macronix 98713/713A/715/715A/725/727/732-based adapters,
		including:
		    Accton EN1217
		    Addtron AEF-320TX/AEF-330TX
		    CNet PRO120A/B
		    Complex RL-100TX
		    NDC Communications SOHOware SFA110A
		    SVEC PN102-TX Fast Ethernet card
		Myson Technologies MTD803 3-in-1 Fast Ethernet adapters
		National Semiconductor DP83815/DP83816-based PCI adapters,
		  including: [B] [C]
		    Netgear FA311
		    Netgear FA312
		    Netgear FA331
		Novell NE1000, NE2000 [B] [C]
		RealTek 8129, RealTek 8139 Ethernet adapters, including:
		    Accton MPX 5030/5038
		    Allied Telesyn AT2550
		    D-Link DFE530TX+, DFE538TX
		    Encore ENL832-TX-RENT 10/100 M PCI
		    Genius GF100TXR
		    KTX-9130TX 10/100 Fast Ethernet
		    Longshine LCS-8038TX-R
		    NDC NE100TX-E
		    Netgear FA311 v2
		    Netronix EA-1210 Net Ether 10/100
		    Nortel BayStack 21
		    OvisLink LEF-8129TX, LEF-8139TX
		    SMC EZ Card 10/100 PCI 1211-TX
		RealTek RTL8150L based USB adapters, including: [A] [B] [C]
		    Abocom RTL8151
		    BAFO BF-310
		    Billionton USBKR-100
		    Compex UE202-B
		    GreenHouse GH-USB100B
		    GreenHouse GH-USB100B with HomePNA
		    Hawking Technology HUF11
		    Linksys USB100M
		    Longshine LCS-8138TX
		    Melco Inc. LUA-KTX
		    Micronet SP128AR
		    NetComm NP1010
		    OQO model 01 (10/100) Ethernet
		    Repotec RP-USB100-A
		    SMC 2208USB/ETH
		    TRENDnet TU-ET100C
		    Z-TEK ZK-R02
		    Zt USB10/100
		    ZyXEL Prestige
		SiS 900 and SiS 7016-based PCI adapters, including: [B] [C]
		    Mototech ME313
		    NetSurf NS-KFE30D
		SMC/WD 8003, 8013, and the SMC "Elite16" ISA boards [B] [C]
		SMC/WD 8216 (the SMC "Elite16 Ultra" ISA boards) [B] [C]
		  (See special notice later in this document)
		SMC 8416 EtherEZ PnP (with PnP mode off) [B] [C]
		SMC 9432 (EtherPower II) EPIC 10/100 [C]
		Sun Happy Meal PCI adapters, including: [G]
		    Fast Ethernet
		    Quad Fast Ethernet
		Sundance ST201-based PCI adapters, including: [G]
		    D-Link DFE-550TX
		Texas Instruments ThunderLAN PCI adapters, including: [C]
		    Compaq Netelligent PCI Adapters
		    Compaq NetFlex 3/P
		    Compaq Deskpro integrated adapter
		    Compaq Prosignia integrated adapter
		    Olicom OC2135, OC2183, OC2325, OC2326
		    Racore 8165 and 8148
		    TI ThunderLAN adapters
		VIA Rhine/RhineII/RhineIII Ethernet adapters, including: [C]
		    Addtron AEF-360TX
		    Hawking PN102TX
		    D-Link DFE530TX
		VMware VMXnet Virtual Interface Controller devices: [A] [B] [C]
		    VMware ESX Server 2.x
		    VMware GSX Server 2.5 and newer
		    VMware Server 1.0 and newer
		    VMware Workstation 4.5 and newer
		Winbond W89C840F Ethernet adapters, including: [A] [B] [C]
		    TRENDnet TE100-PCIE
		    Compex RL100-ATX 10/100baseTX
	Wireless Ethernet Adapters
		ADMtek ADM8211 IEEE 802.11b CardBus adapters [A] [B] [C]
		    3Com OfficeConnect 3CRSHPW796
		    Blitz NetWave Point
		    D-Link DWL-650 Rev. L1
		    SMC 2635W (version 1 only)
		    TRENDnet TEW-221PC
		ADMtek ADM8211 IEEE 802.11b PCI adapters [A] [B] [C]
		    Belkin F5D6001
		    D-Link DWL-520 Rev. C1
		    LanReady WP2000
		    Xterasys XN2511B
		Aironet Communications 4500/4800 IEEE 802.11FH/b ISA PnP, PCI,
		and PCMCIA adapters [A] [B] [C]
		    Aironet 4500/4800
		    Cisco 340/350
		Atheros IEEE 802.11a/b/g CardBus adapters [A] [B]
		    3Com 3CRPAG175
		    Cisco AIR-CB21AG
		    D-Link DWL-A650
		    D-Link DWL-AB650
		    Elecom LD-WL54
		    Linksys WPC51AB
		    Netgear WAB501
		    Planet WL-3560
		    Proxim Skyline 4030
		    SMC SMC2735W
		    Sony PCWA-C500
		Atheros IEEE 802.11a/b/g PCI adapters [A] [B]
		    D-Link DWL-A520
		    IBM 11ABG WL LAN Mini PCI
		    Proxim Skyline 4032
		    Senao NL-5354MP Mini PCI
		    Wistron CM9 Mini PCI
		Atheros USB IEEE 802.11a/b/g USB adapters [G]
		    Compex WLU108AG
		    Compex WLU108G
		    D-Link DWL-G132
		    Netgear WG111T
		    Netgear WG111U
		    Netgear WPN111
		    Olitec 000544
		    PLANET WDL-U357
		    Siemens Gigaset 108
		    SMC SMCWUSBT-G
		    SMC SMCWUSBT-G2
		    SparkLAN WL-785A
		    TP-Link TL-WN620G
		    TRENDware International TEW-444UB
		    TRENDware International TEW-504UB
		    Unex Technology UR054ag
		    ZyXEL XtremeMIMO M-202
		Atmel AT76C50x IEEE 802.11b USB adapters [G]
		    3Com 3CRSHEW696
		    AboCom BWU613
		    Accton 2664W
		    Acer Peripherals AWL300
		    Acer Peripherals AWL400
		    Actiontec 802UAT1
		    Addtron AWU120
		    Aincomm AWU2000B
		    Askey Computer Voyager 1010
		    Askey Computer WLL013 (Intersil Radio)
		    Askey Computer WLL013 (RFMD Radio)
		    Atmel AT76C503 (Intersil Radio)
		    Atmel AT76C503 (RFMD Radio)
		    Atmel AT76C505 (RFMD Radio)
		    Atmel AT76C505 (RFMD 2958 Radio)
		    Atmel AT76C505A (RFMD 2958 Radio)
		    Atmel AT76C505AS (RFMD 2958 Radio)
		    Belkin F5D6050
		    Bluetake BW002
		    Compaq iPAQ h54xx/h55xx Internal WLAN
		    Conceptronic C11U
		    Conceptronic WL210
		    Corega WLAN USB Stick 11
		    Dick Smith Electronics CHUSB 611G
		    Dick Smith Electronics WL200U
		    Dick Smith Electronics WL240U
		    Dick Smith Electronics XH1153
		    D-Link DWL-120 rev E
		    Geowave GW-US11S
		    Gigabyte GN-WLBM101
		    Gigaset WLAN
		    Hewlett-Packard HN210W
		    Intel AP310 AnyPoint II
		    I/O DATA USB WN-B11
		    Lexar 2662W-AR
		    Linksys WUSB11 802.11b
		    Linksys WUSB11 802.11b v2.8
		    MSI WLAN
		    Netgear MA101
		    Netgear MA101 rev B
		    OQO model 01 WiFi
		    Ovislink AirLive WL-1120USB
		    OvisLink AirLive WL-1130USB
		    Planex Communications GW-US11S
		    Samsung SWL2100W
		    Siemens WLL013
		    SMC EZ Connect 11Mbps (SMC2662w)
		    SMC EZ Connect 11Mbps v2 (SMC2662wV2)
		    Tekram U-300C
		    TRENDnet TEW-229UB
		    W-Buddie WN210
		    Z-Com M4Y-750
		 Broadcom AirForce IEEE 802.11b/g CardBus adapters [G]
		    Buffalo WLI-CB-G54
		    Linksys WPC54G Ver 3
		    Linksys WPC54GS Ver 2
		    TRENDnet TEW-401PCplus
		    US Robotics 5411
		 Broadcom AirForce IEEE 802.11b/g PCI adapters [G]
		    Apple Airport Extreme BCM4306
		    Apple Airport Extreme BCM4318
		    ASUS WL-138g
		    Buffalo WLI-CB-G54
		    Compaq R4035 onboard
		    HP nx6125
		    Linksys WPC54G Ver 3
		    Linksys WPC54GS Ver 2
		    TRENDnet TEW-401PCplus
		    US Robotics 5411
		Conexant/Intersil Prism GT Full-MAC IEEE 802.11a/b/g CardBus
		adapters [G]
		    3COM 3CRWE154G72
		    some NETGEAR WG511 (those made in Taiwan, NOT in China)
		    SMC EZ Connect g 2.4GHz SMC2835W-v2
		    Soyo Aerielink
		    ZyXEL ZyAIR G-100
		Conexant/Intersil Prism GT Full-MAC IEEE 802.11a/b/g PCI
		adapters [G]
		    D-Link DWL-g650 A1
		    I-O Data WN-G54/CB
		    I4 Z-Com XG-600
		    I4 Z-Com XG-900
		    Intersil PRISM Indigo
		    Intersil PRISM Duette
		    PLANEX GW-DS54G
		    SMC EZ Connect g 2.4GHz SMC2802W
		    SMC 2802Wv2
		Conexant/Intersil Prism GT SoftMAC IEEE 802.11b/g USB adapters
		[A] [B] [C]
		    Belkin F5D7050 (version 1000)
		    Cohiba Proto Board
		    D-Link DWL-G120 Cohiba
		    FSC Connect2Air E-5400 USB D1700
		    Gigaset USB Adapter 54
		    Inventel UR045G
		    Netgear WG111v2
		    SMC EZ ConnectG SMC2862W-G
		    Sagem XG703A
		    Spinnaker DUT
		    Spinnaker Proto Board
		Intel PRO/Wireless 2100 IEEE 802.11b PCI adapters [G]
		Intel PRO/Wireless 2200BG/2225BG/2915ABG 802.11a/b/g PCI
		adapters [G]
		Intel PRO/Wireless 3945ABG IEEE 802.11a/b/g PCI adapters [G]
		Intel Wireless WiFi Link 4965AGN IEEE 802.11a/b/g/Draft-N
		adapters [G]
		Marvell Libertas IEEE 802.11b/g CardBus adapters [G]
		    Netgear WG511v2
		    Tenda TWL541C
		Marvell Libertas IEEE 802.11b/g PCI adapters [G]
		    Netgear WG311v3
		    Tenda TWL542P
		Marvell Libertas IEEE 802.11b/g Compact Flash adapters (will be
		detected as PCMCIA adapters) [G]
		    Ambicom WL54CF
		Ralink Technology IEEE 802.11a/b/g CardBus adapters [A] [B]
		    A-Link WL54PC
		    Alfa AWPC036
		    Amigo AWI-914W
		    AMIT WL531C
		    ASUS WL-107G
		    Atlantis Land A02-PCM-W54
		    Belkin F5D7010 v2
		    Canyon CN-WF513
		    CC&C WL-2102
		    CNet CWC-854
		    Compex WL54G
		    Conceptronic C54RC
		    Corega CG-WLCB54GL
		    Digiconnect WL591C
		    Digitus DN-7001G-RA
		    E-Tech WGPC02
		    E-Tech WGPC03
		    Edimax EW-7108PCg
		    Eminent EM3036
		    Encore ENPWI-G-RLAM
		    Eusso UGL2454-01R
		    Fibreline WL-400X
		    Gigabyte GN-WMKG
		    Gigabyte GN-WM01GS
		    Gigabyte GN-WM01GM
		    Hawking HWC54GR
		    Hercules HWGPCMCIA-54
		    JAHT WN-4054P
		    KCORP LifeStyle KLS-611
		    LevelOne WPC-0301 v2
		    Micronet SP908GK V3
		    Minitar MN54GCB-R
		    MSI CB54G2
		    MSI MS-6835
		    Pro-Nets CB80211G
		    Repotec RP-WB7108
		    SATech SN-54C
		    Sitecom WL-112
		    SparkLAN WL-685R
		    Surecom EP-9428-g
		    Sweex LC500050
		    TekComm NE-9428-g
		    Tonze PW-6200C
		    Unex MR054g-R02
		    Zinwell ZWX-G160
		    Zonet ZEW1500
		Ralink Technology IEEE 802.11a/b/g PCI adapters [B] [C]
		    A-Link WL54H
		    AirLive WN-5000PCI
		    Amigo AWI-922W Mini PCI
		    Amigo AWI-926W
		    AMIT WL531P
		    AOpen AOI-831
		    ASUS WL-130G
		    ASUS WL-130N
		    ASUS WIFI-G-AAY
		    Atlantis Land A02-PCI-W54
		    Belkin F5D7000 v3
		    Billionton MIWLGRL Mini PCI
		    Canyon CN-WF511
		    CNet CWP-854
		    Compex WLP54G
		    Conceptronic C54Ri
		    Digitus DN-7006G-RA
		    Dynalink WLG25PCI
		    E-Tech WGPI02
		    Edimax EW-7128g
		    Edimax EW-7628Ig
		    Edimax EW-7728In
		    Eminent EM3037
		    Encore ENLWI-G-RLAM
		    Eusso UGL2454-VPR
		    Fiberline WL-400P
		    Gigabyte GN-WIKG Mini PCI
		    Gigabyte GN-WI01GS Mini PCI
		    Gigabyte GN-WI02GM Mini PCI
		    Gigabyte GN-WPKG
		    Gigabyte GN-WP01GS
		    Gigabyte GN-WI02GM
		    Gigabyte GN-WP01GM
		    Hawking HWP54GR
		    Hercules HWGPCI-54
		    iNexQ CR054g-009 (R03)
		    JAHT WN-4054PCI
		    KCORP LifeStyle KLS-660
		    LevelOne WNC-0301 v2
		    Linksys WMP54G v4
		    Micronet SP906GK
		    Minitar MN54GPC-R
		    MSI MP54G2 Mini PCI
		    MSI MP6833 Mini PCI
		    MSI MS-6834
		    MSI PC54G2
		    OvisLink EVO-W54PCI
		    PheeNet HWL-PCIG/RA
		    Planex PCI-GW-DS300N
		    Pro-Nets PC80211G
		    Repotec RP-WP0854
		    SATech SN-54P
		    Signamax 065-1798
		    Sitecom WL-115
		    SparkLAN WL-660R
		    SparkLAN WMIR-215GN Mini PCI
		    Surecom EP-9321-g
		    Surecom EP-9321-g1
		    Sweex LC700030
		    TekComm NE-9321-g
		    Tonze PC-620C Mini PCI
		    Tonze PC-6200C
		    Unex CR054g-R02
		    Zinwell ZWX-G360 Mini PCI
		    Zinwell ZWX-G361
		    Zonet ZEW1600
		Ralink Technology IEEE 802.11b/g USB adapters [A] [B] [C]
		    AMIT WL532U
		    ASUS WL-167g
		    Belkin F5D7050
		    Buffalo WLI-U2-KG54
		    Buffalo WLI-U2-KG54-AI
		    Buffalo WLI-U2-KG54-YB
		    CNet CWD-854
		    Compex WLU54G
		    Conceptronic C54RU
		    D-Link DWL-G122 (b1)
		    Dynalink WLG25USB
		    E-Tech WGUS02
		    Eminent 3035
		    Gigabyte GN-WBKG
		    Hercules HWGUSB2-54
		    KCORP LifeStyle KLS-685
		    Linksys WUSB54G v4
		    Linksys WUSB54GP v4
		    MSI MS-6861
		    MSI MS-6865
		    MSI MS-6869
		    Nintendo Wi-Fi USB Connector
		    Nova Tech NV-902W
		    OvisLink Evo-W54USB
		    SerComm UB801R
		    SparkLAN WL-685R
		    Sphairon UB801R
		    Surecom EP-9001-g rev 3A
		    Sweex LC100060
		    Tonze UW-6200C
		    Zaapa ZNWUSB-54
		    Zinwell ZPlus-G250
		    Zinwell ZWX-G261
		    Zonet ZEW2500
		Ralink Technology USB IEEE 802.11a/b/g USB adapters [A] [B] [C]
		    3Com Aolynk WUB320g
		    Abocom WUG2700
		    Airlink101 AWLL5025
		    ASUS WL-167g ver 2
		    Atlantis Land A02-UP1-W54
		    Belkin F5D7050 ver 3
		    Belkin F5D9050 ver 3
		    Buffalo WLI-U2-SG54HP
		    Buffalo WLI-U2-G54HP
		    CNet CWD-854 ver F
		    Conceptronic C54RU ver 2
		    Corega CG-WLUSB2GL
		    Corega CG-WLUSB2GO
		    D-Link DWL-G122 rev C1
		    D-Link WUA-1340
		    Digitus DN-7003GR
		    Edimax EW-7318USG
		    Gigabyte GN-WB01GS
		    Gigabyte GN-WI05GS
		    Hawking HWUG1
		    Hawking HWU54DM
		    Hercules HWGUSB2-54-LB
		    Hercules HWGUSB2-54V2-AP
		    LevelOne WNC-0301USB v3
		    Linksys WUSB54G rev C
		    Linksys WUSB54GR
		    Planex GW-US54HP
		    Planex GW-US54Mini2
		    Planex GW-USMM
		    Senao NUB-3701
		    Sitecom WL-113 ver 2
		    Sitecom WL-172
		    Sweex LW053
		    TP-LINK TL-WN321G
		Raytheon Raylink/WebGear Aviator IEEE 802.11FH PCMCIA adapters
		[A] [B] [C]
		    Raytheon Raylink WLAN
		    WebGear Aviator 2.4
		    WebGear Aviator PRO
		Realtek RTL8180L IEEE 802.11b CardBus adapters [A] [B] [C]
		    Allnet ALL0182
		    Belkin F5D6020 V3
		    Buffalo WLI-CB-B11
		    Corega CG-WLCB11V3
		    D-Link DWL-610
		    Edimax EW-7106
		    GigaFast WF721-AEX (R* serial)
		    Jensen AirLink 6011
		    Level-One WPC-0101
		    Linksys WPC11 v4
		    Netgear MA521
		    Ovislink AirLive WL-1120PCM
		    Planet WL-3553
		    Q-Tec 770WC
		    Q-Tec 775WC
		    Roper FreeLan 802.11b
		    SAFECOM SWLCR-1100
		    TRENDnet TEW-226PC
		    VCTnet PC-11B1
		    Winstron CB-200B
		    Zonet ZEW1000
		TI ACX100/ACX111 IEEE 802.11a/b/g CardBus adapters [G]
		    D-Link DWL-650+
		    D-Link DWL-G630+
		    D-Link DWL-G650+
		    Ergenic ERG WL-003
		    Hamlet HNWP254
		    Linksys WPC54Gv2
		    Microcom Travelcard
		    Sceptre SC254W+
		    USR USR5410
		    ZyXEL G-160
		TI ACX100/ACX111 IEEE 802.11a/b/g PCI adapters [G]
		    D-Link DWL-520+
		    D-Link DWL-G520+
		    Hawking HWP54G
		    Netgear WG311v2
		    Tornado/ADT 211g
		    USR USR5416
		    ZyXEL G-360 EE
		WaveLAN/IEEE, PRISM 2-3, and Spectrum24 IEEE 802.11b Compact
		Flash adapters (will be detected as PCMCIA adapters) [B]
		    AmbiCom WL1100C-CF
		    ASUS SpaceLink WL-110
		    Belkin F5D6060 (version 1 only)
		    Buffalo AirStation
		    D-Link DCF-660W
		    ELSA XI800
		    Linksys WCF12
		    Netgear MA701
		    Pretec Compact WLAN OC-WLBXX-A
		    Senao NL-2511CF
		WaveLAN/IEEE, PRISM 2-3, and Spectrum24 IEEE 802.11b PCI
		adapters [C]
		    3Com AirConnect 3CRWE777A
		    Addtron AWA-100
		    Belkin F5D6001 (version 1 only)
		    Corega CGWLPCIA11
		    D-Link DWL-520 (rev A and B only)
		    Intersil Mini PCI
		    Intersil ISL3872
		    Longshine 8301
		    NDC/Sohoware NCP130
		    Netgear MA311
		    Nortel E-mobility 211818-A
		    Samsung MagicLAN SWL-2210P
		    Senao NL-2511MP
		    Symbol LA4123
		WaveLAN/IEEE, PRISM 2-3, and Spectrum24 IEEE 802.11b PCMCIA
		adapters [B]
		    3Com AirConnect 3CRWE737A
		    Actiontec HWC01170
		    Adaptec AWN-8030
		    Addtron AWP-100
		    Agere ORiNOCO
		    ARtem Onair
		    ASUS SpaceLink WL-100
		    Belkin F5D6020 (version 1 only)
		    Buffalo AirStation
		    Cabletron RoamAbout
		    Compaq Agency NC5004
		    Contec FLEXLAN/FX-DS110-PCC
		    Corega PCC-11
		    Corega PCCA-11
		    Corega PCCB-11
		    D-Link DWL-650 (rev A1-J3 only)
		    ELSA XI300
		    ELSA XI325
		    ELSA XI325H
		    EMTAC A2424i
		    Ericsson Wireless LAN CARD C11
		    Gemtek WL-311
		    Hawking Technology WE110P
		    I-O DATA WN-B11/PCM
		    Intel PRO/Wireless 2011
		    Intersil Prism II
		    Linksys Instant Wireless WPC11
		    Linksys Instant Wireless WPC11 2.5
		    Linksys Instant Wireless WPC11 3.0
		    Lucent WaveLAN
		    Microsoft MN520
		    NANOSPEED ROOT-RZ2000
		    NEC CMZ-RT-WP
		    Netgear MA401
		    Netgear MA401RA
		    Nokia C020 Wireless LAN
		    Nokia C110/C111 Wireless LAN
		    NTT-ME 11Mbps Wireless LAN
		    Planex GW-NS11H
		    Proxim Harmony
		    Proxim RangeLAN-DS
		    Samsung MagicLAN SWL-2000N
		    Siemens SpeedStream SS1021
		    SMC 2632 EZ Connect
		    Symbol Spectrum24
		    TDK LAK-CD011WL
		    US Robotics 2410
		    US Robotics 2445
		WaveLAN/IEEE, PRISM 2-3, and Spectrum24 IEEE 802.11b USB
		adapters [A] [B]
		    Acer Warplink USB-400
		    Actiontec HWU01170
		    AirVast WM168b
		    Ambit WLAN
		    Apacer Wireless Steno MB112
		    ASUS WL-140
		    Compaq W100
		    Corega WLUSB-11
		    Corega WLUSB-11 Key
		    D-Link DWL-120 (rev F)
		    D-Link DWL-122
		    I-O DATA WN-B11/USB
		    Intel PRO/Wireless 2011B
		    Intersil Prism 2X
		    JVC MP-XP7250
		    Linksys WUSB11 v3.0
		    Linksys WUSB12
		    Melco WLI-USB-KB11
		    Melco WLI-USB-KS11G
		    Melco WLI-USB-S11
		    Microsoft MN510
		    Netgear MA111 (version 1 only)
		    Pheenet WL-503IA
		    Planex GW-US11H
		    Siemens SpeedStream SS1022
		    Sitecom WL-022
		    Syntax USB-400
		    US Robotics 1120
		    ViewSonic Airsync
		    Z-Com XI-725/726
		    Z-Com XI-735
		    ZyXEL ZyAIR B-200
		ZyDAS ZD1211/ZD1211B USB IEEE 802.11b/g USB adapters [G]
		    3COM 3CRUSB10075
		    Acer WLAN-G-US1
		    Airlink+ AWLL3025
		    Airlink 101 AWLL3026
		    AOpen 802.11g WL54
		    Asus A9T integrated wirless
		    Asus WL-159g
		    Belkin F5D7050 v.4000
		    Billion BiPAC 3011G
		    Buffalo WLI-U2-KG54L
		    CC&C WL-2203B
		    DrayTek Vigor 550
		    Edimax EW-7317UG
		    Edimax EW-7317LDG
		    Fiberline Networks WL-43OU
		    iNexQ UR055g
		    Linksys WUSBF54G
		    Longshine LCS-8131G3
		    MSI US54SE
		    Philips SNU5600
		    Planet WL-U356
		    Planex GW-US54GD
		    Planex GW-US54GXS
		    Planex GW-US54GZL
		    Planex GW-US54Mini
		    Safecom SWMULZ-5400
		    Sagem XG 760A
		    Sagem XG 76NA
		    Sandberg Wireless G54 USB
		    Sitecom WL-113
		    SMC SMCWUSB-G
		    Sweex wireless USB 54 Mbps
		    Tekram/Siemens USB adapter
		    Telegent TG54USB
		    Trendnet TEW-424UB
		    Trendnet TEW-429UB
		    TwinMOS G240
		    US Robotics 5423
		    X-Micro XWL-11GUZX
		    Yakumo QuickWLAN USB
		    Zonet ZEW2501
		    ZyXEL ZyAIR G-220
		
	Gigabit Ethernet Adapters
		Agere/LSI ET1310 based adapters [A] [B] [C]
		Alteon Tigon I/II PCI Gigabit Ethernet boards, including: [A]
		  [B] [C]
		    3Com 3c985 and 3c985B
		    Alteon ACEnic V (fiber and copper)
		    Digital EtherWORKS 1000SX
		    Farallon PN9000SX
		    Netgear GA620 and GA620T
		    SGI Tigon
		Intel i82540, i82541, i82542, i82543, i82544, i82545, i82546,
		i82547, i82571, i82572 and i82573 based adapters, including:
		    HP ProLiant NC310F PCI-X Gigabit NIC (SX Fiber)
		    HP ProLiant NC340T PCI-X Gigabit NIC
		    HP ProLiant NC360T PCI Express Dual Port Gigabit NIC
		    HP ProLiant NC6132 Upgrade Module (SX Fiber)
		    HP ProLiant NC6133 Upgrade Module (LX Fiber)
		    HP ProLiant NC6134 PCI Gigabit NIC (SX Fiber)
		    HP ProLiant NC6136 PCI Gigabit NIC (SX Fiber)
		    HP ProLiant NC6170 PCI-X Gigabit NIC (SX Fiber)
		    HP ProLiant NC7131 PCI Gigabit NIC
		    HP ProLiant NC7132 Upgrade Module
		    HP ProLiant NC7170 PCI-X Dual Port Gigabit NIC
		    HP ProLiant NC7170LP PCI-X Dual Port Gigabit NIC
		    Intel PRO/1000 Gigabit Server Adapter (SX Fiber)
		      (PWLA8490)
		    Intel PRO/1000F Gigabit Server Adapter (SX Fiber)
		      (PWLA8490SX)
		    Intel PRO/1000T Server Adapter (PWLA8490T)
		    Intel PRO/1000XT Server Adapter (PWLA8490XT)
		    Intel PRO/1000XS Server Adapter (SX Fiber) (PWLA8490XF)
		    Intel PRO/1000T Desktop Adapter (PWLA8390T)
		    Intel PRO/1000XTL Lo Profile PCI Server (PWLA8490XTL)
		    Intel PRO/1000MT Desktop Adapter (PWLA8390MT)
		    Intel PRO/1000MT Server Adapter (PWLA8490MT)
		    Intel PRO/1000MT Dual Port Server Adapter (PWLA8492MT)
		    Intel PRO/1000MF Server Adapter (SX Fiber) (PWLA8490MF)
		    Intel PRO/1000MF Dual Port Server Adapter (SX Fiber)
		      (PWLA8492MF)
		    Intel PRO/1000MF Server Adapter (LX Fiber) (PWLA8490LX)
		    Intel PRO/1000MT Quad PCI-X Adapter (PWLA8494MT)
		    Intel PRO/1000GT Quad PCI-X Adapter (PWLA8494GT)
		    Intel PRO/1000PT Desktop Adapter
		    Intel PRO/1000PT Server Adapter
		    Intel PRO/1000PT Dual Port Server Adapter
		    Intel PRO/1000PT Quad Port Server Adapter
		    Intel PRO/1000PF Server Adapter (SX Fiber)
		    Intel PRO/1000PF Dual Port Server Adapter (SX Fiber)
		Marvell Yukon-2 based adapters, including: [A] [B] [C]
		    D-Link DGE-550SX
		    D-Link DGE-560SX
		    D-Link DGE-550T B1
		    D-Link DGE-560T
		    SysKonnect SK-9E21
		    SysKonnect SK-9E22
		    SysKonnect SK-9E81
		    SysKonnect SK-9E82
		    SysKonnect SK-9E91
		    SysKonnect SK-9E92
		    SysKonnect SK-9S21
		    SysKonnect SK-9S22
		    SysKonnect SK-9S81
		    SysKonnect SK-9S82
		    SysKonnect SK-9S91
		    SysKonnect SK-9S92
		    SysKonnect SK-9E21D
		National Semiconductor DP83280 and DP83281 based PCI
		adapters, including: [A] [B] [C]
		    Addtron AEG320T
		    Asante FriendlyNet GigaNIX 1000TA and 1000TPC
		    D-Link DGE-500T
		    Linksys EG1032 and EG1064
		    Netgear GA622T
		    SMC EZ Card 1000
		    Surecom Technology EP-320G-TX
		Level1 LXT1001 based adapters (untested), including: [*]
		    SMC TigerCard 1000
		    D-Link DGE-500SX
		NVIDIA nForce MCP based adapters, including:
		    nForce/nForce 2/nForce 3/CK804/MCP04/MCP51/MCP55/MCP61/
		    MCP65/MCP67/MCP73/MCP77/MCP79
		Broadcom BCM570x (Tigon3) based PCI adapters, including: [A] [C]
		    3Com 3c996-T
		    3Com 3c996-SX
		    3Com 3c996B-T
		    Dell PowerEdge 1750 integrated BCM5704C NIC
		    Dell PowerEdge 2550 integrated BCM5700 NIC
		    Dell PowerEdge 2650 integrated BCM5703 NIC
		    HP ProLiant NC320T PCI-E Gigabit NIC
		    HP ProLiant NC370F PCI-X Gigabit NIC
		    HP ProLiant NC370T PCI-X Gigabit NIC
		    HP ProLiant NC1020 PCI Gigabit NIC
		    HP ProLiant NC6770 PCI-X Gigabit NIC
		    HP ProLiant NC7760 embedded Gigabit NIC
		    HP ProLiant NC7770 PCI-X Gigabit NIC
		    HP ProLiant NC7771 PCI-X Gigabit NIC
		    HP ProLiant NC7780 embedded PCI-X Gigabit NIC
		    HP ProLiant NC7781 embedded PCI-X Gigabit NIC
		    HP ProLiant NC7782 embedded PCI-X Gigabit NIC
		    IBM ThinkPad T43/T43p integrated BCM5751M NIC
		    IBM xSeries 235 integrated BCM5703X NIC
		    IBM xSeries 305 integrated BCM5703X NIC
		    Netgear GA302T
		    SysKonnect SK-9D21
		    SysKonnect SK-9D41
		Broadcom NetXtreme II based PCI-X/PCIe adapters,
		  including: [A] [B] [C]
		    Dell PowerEdge 1950 integrated BCM5708
		    Dell PowerEdge 2950 integrated BCM5708
		    Dell PowerEdge 2970 integrated BCM5708
		    HP NC370F PCI-X
		    HP NC370T PCI-X
		    HP NC373F PCI Express 
		    HP NC373i PCI Express
		    HP NC380T PCI Express Dual Port
		    IBM xSeries 3550 integrated BCM5708
		    IBM xSeries 3650 integrated BCM5708
		Realtek 8139C+/8169/816xS/811xS/8101E based PCI adapters, including:
		    Buffalo LGY-PCI-GT (8169S)
		    Compaq Evo N1015v Integrated Ethernet (8139C+)
		    Corega CG-LAPCIGT (8169S)
		    D-Link DGE-528T (8169S)
		    D-Link DGE-660TD (8196/8110SB)
		    Gigabyte 7N400 Pro2 Integrated Gigabit Ethernet (8110S)
		    LevelOne GNC-0105T (8169S)
		    Linksys EG1032v3 (8169S)
		    Netgear GA311 (8169S)
		    Netgear GA511 PC Card (8169)
		    PLANEX COMMUNICATIONS Inc. GN-1200TC (8169S)
		    Surecom EP-320G-TX1 (8169S)
		    US Robotics USR997902 (8169S)
		    TTTech MC322 (8139C+)
		    Xterasys XN-152 10/100/1000 NIC (8169)
		Sundance/Tamarack TC9021 based PCI adapters, including: [G]
		    D-Link DGE-550T (10/100/1000baseTX)
		    Antares Microsystems Gigabit Ethernet board
		SysKonnect and Marvell based adapters, including:
		  [B] [C]
		    SysKonnect SK-9821 (1000baseT)
		    SysKonnect SK-9822 (dual 1000baseT)
		    SysKonnect SK-9841 (1000baseLX)
		    SysKonnect SK-9842 (dual 1000baseLX)
		    SysKonnect SK-9843 (1000baseSX)
		    SysKonnect SK-9844 (dual 1000baseSX)
		    SysKonnect SK-9521 v2.0 (1000baseT 32-bit)
		    SysKonnect SK-9821 v2.0 (1000baseT)
		    SysKonnect SK-9843 v2.0 (1000baseSX)
		    3Com 3c940 (1000baseT)
		    D-Link DGE-530T (1000baseT)
		    Linksys EG1032v2 (1000baseT)
		    Linksys EG1064v2 (1000baseT)
		    SMC 9452TX (1000baseT)
		VIA Networking VT6122 based PCI adapters, including:
		    ZyXEL GN650-T 64-bit PCI Gigabit Ethernet NIC (ZX1701)
		    ZyXEL GN670-T 32-bit PCI Gigabit Ethernet NIC (ZX1702)
	10 Gigabit Ethernet Adapters
		Intel 82597EX based PCI-X adapters, including:
		    Intel PRO/10GbE CX4 Server Adapter (PXLA8591CX4)
		    Intel PRO/10GbE LR Server Adapter (PXLA8591LR)
		    Intel PRO/10GbE SR Server Adapter (PXLA8591SR)
		    Sun 10 Gigabit Ethernet PCI-X Adapter (X5544A-4)
		Neterion Xframe/Xframe II based adapters, including:
		    Hitachi PCI-X 10 Gigabit Ethernet Adapter
		    HP AB287A 10 Gigabit Ethernet Adapter
		    IBM 10GbE SR Server Adapter
		    IBM 10 Gb Ethernet-LR PCI-X 2.0 DDR Adapter
		    IBM 10 Gb Ethernet-SR PCI-X 2.0 DDR Adapter
		    Neterion/S2io Xframe
		    Neterion Xframe II
		    Neterion Xframe II Sun Fire
		    Neterion Xframe E
		    SGI 10 Gigabit Ethernet Network Adapter
		Tehuti Networks adapters, including:
		    TN3017-S 10 GbE Single Port XAUI Server Controller
		    TN3017-D 10 GbE Dual Port XAUI Server Controller
		    TN7581-D 10 GbE Dual XFP Server Adapter
		    TN7585-D 10 GbE Dual CX4 Low Profile Server Adapter
		    TN7588-S 10 GbE Single 10GBASET Low Profile Server Adapter
		    TN7588-D 10 GbE Dual 10GBASET Low Profile Server Adapter
		    TN7589-S 10 GbE Single CX4 Low Profile Server Adapter
	ATM Adapters
		Efficient Networks EN-155 and Adaptec ANA-590X ATM
		interfaces [*]
	FDDI Adapters
		Digital DEFEA EISA and PCI FDDI adapters [G]
	Wan Adapters
		SBE (formerly Lan Media Corporation) SSI (T1)/HSSI/DS1/DS3
		WAN interfaces [G]
		Sangoma Sangoma Technologies AFT T1/E1 WAN interfaces [G]
	Cryptography Accelerators
		Broadcom Bluesteelnet uBsec 5501, 5601, 5801, 5802, 5805,
		  5820, 5821, 5822, 5823 [G]
		Hifn 6500-based boards [G]
		Hifn 7751/7811/7951/7955/7956-based boards (hifn),
		  including: [G]
		    Soekris Engineering vpn1201, vpn1211, vpn1401, and vpn1411
		    GTGI PowerCrypt Encryption Accelerator
		    NetSec 7751
		    Hifn 7751 and 9751 reference boards
		    Invertex AEON
		SafeNet SafeXcel 1141/1741 [G]
	PC Cards (PCMCIA [B] and CardBus [B] [C])
		ATA cards, including:
		    ATA/IDE card drives
		    ATA/IDE CD-ROM adapters
		    CF/ATA flash cards and disk drives
		Ethernet adapters, including:
		    3Com EtherLink and EtherLink XL-based LAN PC
		    cards, including:
			3Com 3c556, 3c562
			3Com 3c574TX, 3c[CX]FE574BT
			3Com 3c589, 3c589[BCDE]
			3Com 3c575TX, 3c[CX]FE575[BC]T CardBus
			3Com 3c[CX]FEM656, 3c[CX]FEM656[BC] CardBus
		    Intel/DEC 21443 "Tulip" clones, including:
			ADMtex AN985 Centaur-C CardBus
			IBM EtherJet 10/100 CardBus
			SMC EZ CardBus 10/100
			Xircom X3201 CardBus adapters, including
			  RealPort models
		    Intel i8255x-based, including:
			Intel PRO/100 CardBus II
		    NE2000-based, including:
			Accton EN2212, EN2216
			Allied Telesis LA-PCM
			AmbiCom AMB8002T
			Arowana FE
			Belkin F5D5020
			Billionton Systems LNT-10TN
			CNet NE2000
			Compex Linkport ENET-B
			Corega PCC-T, PCC-TD, EtherII PCC-T,
			Corega FastEther PCC-T, FastEther PCC-TX
			Corega FastEther PCC-TXD, FastEther PCC-TXF
			D-Link DE-650, DE-660, DE-660+, DFE-670TXD
			Dayna CommuniCard E
			Digital DEPCM-XX
			Dual NE2000
			Edimax NE2000
			Genius ME 3000II SE
			Grey Cell GCS2000 Gold II
			GVC NIC-2000p, NP0335
			Hawking PN650TX
			I-O DATA PCLA, PCLA/TE
			IC-Card
			Kingston KNE-PC2
			Linksys PCMPC100, EC2T Combo, EthernetCard
			Linksys Combo EthernetCard, Trust Combo EthernetCard
			Linksys Etherfast 10/100
			MACNICA ME1 for JEIDA
			Melco LPC3-TX
			National Semiconductor InfoMover
			NDC Instant-Link
			Netgear FA410TX, FA410TXC, FA411
			Network Everywhere NP10T
			New Media LiveWire 10/100
			Planet SmartCom 2000
			Planex FNW-3600-T, FNW-3700-T
			Premax PE-200
			RPTI EP-400, EP-401
			Seiko Epson EN10B
			SMC EZCard, 8041
			Socket Communications LP-CF, LP-E
			SVEC PN650TX, ComboCard, LANCard
			Synergy S21810
			Tamarack NE2000
			Telecom Device TCD-HPC100
			Wisecom T210CT, iPort
			Xircom CFE-10
		    RealTek 81[23]9-based, including:
			Accton MPX5030 CardBus
			Corega FEther CB-TXD 10/100 Ethernet
			D-Link DFE-690TXD
		    SMC 91Cxx-based, including:
			Megahertz XJEM1144, CC10BT
			SMC EtherEZ 8020BT
		    Xircom, including:
			Xircom CreditCard CE2
		PCMCIA controllers, including:
		    Intel i82365 and compatibles
		SCSI host adapters, including:
		    Adaptec SlimSCSI APA-14[56]0
		Serial ports, including:
		    Most modems, digital cellular modems, and serial
		    cards should work
		Wireless Ethernet adapters:
		    See above
	Universal Serial Bus (USB) Devices [A] [B] [C]
		USB Audio [G]
		USB Diamond Multimedia Rio MP3 players [G]
		USB Ethernet adapters, see above [G]
		USB Generic Human Interface Devices (catch-all) [G]
		USB Handspring Visor [G]
		USB Hubs
		USB Keyboards
		USB Mass Storage devices, i.e., USB floppy drives and
		  USB memory stick controllers
		USB Mice [G]
		USB Modems [G]
		USB Printers [G]
		USB Scanners [G]
		USB-USB cables [G]
		USB Y@p phone [*]
	Pointing Devices [G]
		"Logitech"-style bus mice
		"Microsoft"-style bus mice
		"PS/2"-style mice
		Serial mice (uses serial port driver)
	Sound Devices [G]
		ALI M5461
		AMD 768 and 8111 AC'97
		ATI IXP series integrated AC'97
		ATI SB450/SB600
		C-Media CMI8[37]38
		Cirrus Logic CrystalClear CS4280, CS4281
		Ensoniq AudioPCI
		ESS Tech ES188[78], ES888
		ESS Solo-1 PCI AudioDrive
		ESS Maestro 1, 2 and 2E and clones
		ESS Maestro 3 and Allegro 1
		Forte Media FM801 audio
		Gravis Ultrasound and Ultrasound Max
		HD Audio compliant devices
		Intel i810/i820 and 440MX AC'97
		Intel 82801FB/GB/HB audio
		NeoMagic 256AV/ZX
		NVIDIA nForce and nForce AC'97
		NVIDIA MCP51/55/61/65
		SiS 966/966L
		SiS 7012 AC'97
		SoundBlaster ISA cards and 100% compatibles
		SoundBlaster PCI128
		SoundBlaster Live! and PCI512 (EMU10k1)
		Trident 4DWAVE-DX/NX and clones (SiS 7018, ALi M5451)
		VIA Envy24
		VIA VT82C686A, VT8233, VT8235, VT8237 SouthBridge
		    integrated AC'97 audio
		VIA VT8237A/VT8251
		Yamaha OPL3-SA3
		Yamaha DS-XG
		Yamaha and Roland ISA/ISA PnP MIDI UART
		[The following drivers are not extensively tested:]
		Personal Sound System
		ProAudio Spectrum
		S3 SonicVibes
		Windows Sound System
	Radio Receiver Devices
		AIMS Lab Radiotrack FM radio
		AIMS Lab Radiotrack II FM radio
		Aztech/PackardBell FM radio
		Brooktree 848/849/878/879-based TV tuner
		D-Link DSB-R100 USB radio
		Forte Media FM801 audio
		SoundForte RadioLink SF16-FMR FM radio
		SoundForte RadioLink SF16-FMR2 FM radio
	Miscellaneous Devices
		APM power management,
		Brooktree 8[47][89] based frame grabber and TV tuner cards,
		including: [G]
		    Animation Technologies FlyVideo
		    AOpen VA1000
		    Askey/Dynalink Magic TView
		    ATI TV-Wonder and Wonder/VE
		    AverMedia cards
		    Hauppauge Wincast TV and WinTV/PCI
		    IMS TV Turbo
		    Intel Smart Video Recorder III
		    I/O DATA GV-BCTV2/PCI
		    I/O DATA GV-BCTV3/PCI
		    KISS TV/FM PCI
		    Leadtek Winfast TV 2000
		    Leadtek Winfast TV 2000 XP
		    Miro PC TV
		    MMAC Osprey
		    NEC PK-UG-X017
		    STB TV PCI Television Tuner
		    Terratec TerraTVplus
		    Video Highway XTreme
		    VideoLogic Captivator PCI
		    Zoltrix TV and Genie TV/FM
		Hardware monitoring sensors, including: [G]
		    Asus AS99127F
		    Asus ASB100
		    Analog Devices AD7416, AD7417 and AD7418
		    Analog Devices ADM1021
		    Analog Devices ADM1024
		    Analog Devices ADM1025
		    Analog Devices ADM1026
		    Analog Devices ADM1030
		    Analog Devices ADM1031
		    Analog Devices ADT7460
		    Genesys Logic GL518SM
		    ITE IT8705F, IT8712F
		    National Semiconductor LM87
		    National Semiconductor LM75, LM77
		    National Semiconductor LM78, LM78-J, LM79
		    National Semiconductor PC87366 LPC Super I/O VLM and TMS
		    Maxim DS1624/DS1631/DS1721
		    Maxim MAX6642/MAX6690
		    SiS SiS950
		    ThinkPad Active Protection System accelerometer
		    VIA VT1211
		    VIA VT82C686A, VT8231
		    Winbond W83627HF, W83627THF, W83627DHG, W83627EHF, W83637HF
		    Winbond W83697HF, W83781D, W83782D, W83783S, W83791D, W83792D
		    Winbond W83L784R, W83L785R and W83L785TS-L
		Hardware watchdog timer support, including: [G]
		    AMD Elan SC520 System Controller
		    ICS PCI-WDT500/501 watchdog timer
		    Intel 6300ESB ICH
		    National Semiconductor Geode SC1100 IAOC
		    Quancom PWDOG1
		    VIA VT1211
		General Purpose Input/Output (GPIO) devices, including:
		    National Semiconductor PC87366 LPC Super I/O GPIO
		    National Semiconductor Geode SC1100 PCI-ISA bridge GPIO
		    AMD Elan SC520 System Controller PIO function
		Meinberg Funkuhren radio clocks, including:
		    GPS170PCI 3.3V/5V 6-channel GPS receiver card
		    PCI32 5V DCF77 time signal station receiver card
		    PCI509 5V DCF77 time signal station receiver card
		    PCI511 3.3V/5V DCF77 time signal station receiver card
		    PEX511 PCI Express time signal station receiver card
		    USB5131 USB attached DCF77 radio clock
	Many kinds of ISA Plug-and-Play cards
		Nearly all SB-style audio cards
		Nearly all joystick ports
		Nearly all Yamaha-style audio cards
		Many NE2000-style Ethernet cards
		Most serial port or modem cards
		NE2100 Ethernet cards

Drivers for hardware marked with [G] are only included in the GENERIC
kernels, but are NOT included on the various distribution floppies
(including the CD-ROM boot image).
Drivers for hardware marked with [A] are not included in floppy A.
Drivers for hardware marked with [B] are not included in floppy B.
Drivers for hardware marked with [C] are not included in floppy C.
Support for devices marked with [*] is not included in the distribution media
or in the GENERIC kernel, and will require you to compile a custom kernel to
enable it.

Hardware that we do NOT currently support, but get many questions
about:
	The "Micro Channel" MCA bus used in many IBM PS/2 models
	NCR 5380-based and 53400-based SCSI host adapters
	QIC-40 and QIC-80 tape drives (these are the tape drives
		that connect to the floppy disk controller)
	Sony and Panasonic proprietary CD-ROM interfaces
	Parallel-port ZIP drives (SCSI and ATAPI ZIP drives work fine)
	Intel i82556 (EtherExpress PRO/100A) and i82596 (EtherExpress
		PRO/10 PCI) Ethernet adapters
	Hewlett-Packard PC-LAN+ (HP27xxx) Ethernet adapters
	Aureal Vortex sound cards
	Winmodems
	Infrared devices, such as commonly found on laptops
	Firewire
	Mylex and Intel RAID controllers
	PCMCIA:
		Memory cards
		Most multifunction cards

We are planning future support for many of these devices.

To be detected by the distributed kernels, some ISA devices must
be configured with specific settings.  Here's their list:

Device		Name	Port	IRQ	DRQ	Misc
------		----	----	---	---	----
Serial ports	pccom0	0x3f8	4		[8250/16450/16550/clones]
		pccom1	0x2f8	3		[8250/16450/16550/clones]
		pccom2	0x3e8	5		[8250/16450/16550/clones]
		ast0	0x1a0	5		[AST 4-port serial card]
		cy0		12		iomem 0xd4000 [Cyclom
						serial card]

Parallel ports	lpt0	0x378	7		[interrupt-driven or polling]
		lpt1	0x278			[polling only]
		lpt2	0x3bc			[polling only]

MFM/ESDI/IDE/RLL hard disk controllers
		wdc0	0x1f0	14		[supports two disks or atapi]
		wdc1	0x170	15		[supports two disks or atapi]

Floppy controller
		fdc0	0x3f0	6	2	[supports two disks]

AHA-154x, AHA-174x (in compatibility mode), or BT-54x SCSI host adapters
		aha0	0x330	any	any
		aha1	0x334	any	any

BT445, BT74x, or BT9xx SCSI host adapters
		bha0	0x330	any	any
		bha1	0x334	any	any

Ultrastor 14f, 24f (if it works), or 34f SCSI host adapters
		uha0	0x330	any	any
		uha1	0x334	any	any

AHA-152x, AIC-6260- or AIC-6360-based SCSI host adapters
		aic0	0x340	11	any

Seagate ST0[12], Future Domain TMC-8xx based SCSI controllers
		sea0		5		iomem 0xc8000

WD7000 and TMC-7000 SCSI host adapters
		wds0	0x350	15	6
		wds1	0x358	11	5

SCSI disks	sd0	first SCSI disk (by SCSI ID)
		sd1	second SCSI disk (by SCSI ID)
		sd2	third SCSI disk (by SCSI ID)
		sd3	fourth SCSI disk (by SCSI ID)

SCSI tapes	st0	first SCSI tape (by SCSI ID)
		st1	second SCSI tape (by SCSI ID)

SCSI CD-ROMs	cd0	first SCSI CD-ROM (by SCSI ID)
		cd1	second SCSI CD-ROM (by SCSI ID)

SMC/WD 8003, 8013, Elite16, and Elite16 Ultra Ethernet boards
		we0	0x280	9		iomem 0xd0000
		we1	0x300	10		iomem 0xcc000

Novell NE1000, or NE2000 Ethernet boards
		ne0	0x240	9		iomem 0xd8000
		ne1	0x300	10
		ne2	0x280	9

3COM 3c501 Ethernet boards
		el0	0x300	9

3COM 3c503 Ethernet boards
		ec0	0x250	9		iomem 0xd8000

3COM 3c505/Etherlink+ Ethernet boards
		eg0	0x310	5

AT&T StarLAN 10, EN100, or StarLAN Fiber, or 3COM 3c507 Ethernet boards
		ie0	0x360	7		iomem 0xd0000

EtherExpress boards
		ie1	0x300	10

IsoLan, NE2100, and DEPCA
		le0	0x360	15	6

Intel EtherExpress PRO/10
		ex0	0x320	5

PCI Ethernet boards need to have an interrupt, either assigned in your
PCI BIOS, or autoconfigured.

Hardware not listed in the above table doesn't need any specific
configuration.

dnl
dnl Special care for PCI BIOS:
dnl
dnl	As with all BIOS implementations and subsystems this one has bugs
dnl	too.
dnl	Sometimes specifications are unclear about interfaces and/or data
dnl	validation.
dnl	These all cause our driver for PCI BIOS to misbehave in more or
dnl	less fatal ways, such as panics on pcibios0 configuration or PCI
dnl	device attachments, or unconfigured PCI devices due to IRQ and/or
dnl	I/O address misconfiguration.
dnl
dnl	Fast workaround
dnl
dnl	Boot by giving the -c flag to the initial boot request.
dnl	Following the loading of the kernel, the user is presented with a
dnl
dnl	UKC>
dnl
dnl	Then type the following commands:
dnl
dnl	UKC> change bios0
dnl	165 bios0 at mainbus0 bus -1 flags 0x0
dnl	change [n] y
dnl	bus [-1] ? <enter>
dnl	flags [0] ? 3
dnl	165 bios0 changed
dnl	165 bios0 at mainbus0 bus -1 flags 0x3
dnl	UKC> quit
dnl
dnl	This will disable the pcibios0 attachment.
dnl	Sometimes, especially when hangs occur on particular PCI device
dnl	attachments, moving PCI cards into a different slot helps.
dnl
dnl	Fixing for good
dnl
dnl	Try to gather dmesg output from the failing configuration, for
dnl	example by using a serial console (see boot(8)), and send it to
dnl	<mickey@OpenBSD.org> along with descriptions of your hardware setup.
dnl	Alternatively, dig in the code and fix problems.