summaryrefslogtreecommitdiffstats
path: root/pcitable
blob: 128421f792da6ca090cf940d85fe25696029a463 (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
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
0x0001	0x1002	"bttv"	"ATI|TV Wonder"
0x0001	0x1461	"bttv"	"AVerMedia|TVPhone98"
0x0002	0x1461	"bttv"	"Avermedia|TVCapture 98"
0x0003	0x1002	"bttv"	"ATI|TV Wonder/VE"
0x0003	0x1461	"bttv"	"AVerMedia|TVPhone98"
0x0004	0x1461	"bttv"	"AVerMedia|TVPhone98"
0x003d	0x00d1	"unknown"	"Real 3D|i740 (PCI)"
0x0675	0x1700	"hisax"	"Dynalink|IS64PH ISDN Adapter"
0x0675	0x1702	"hisax"	"Dynalink|IS64PH ISDN Adapter"
0x0871	0xffa1	"hisax"	"German telekom|A1T"
0x0871	0xffa2	"hisax"	"German telekom|T-Concept"
0x0e11	0x0001	"unknown"	"Compaq|PCI to EISA Bridge"
0x0e11	0x0002	"unknown"	"Compaq|PCI to ISA Bridge"
0x0e11	0x0508	"sktr"	"Compaq|Netelligent 4/16 Token Ring"
0x0e11	0x1000	"unknown"	"Compaq|Triflex/Pentium Bridge, Model 1000"
0x0e11	0x2000	"unknown"	"Compaq|Triflex/Pentium Bridge, Model 2000"
0x0e11	0x3032	"unknown"	"Compaq|QVision 1280/p"
0x0e11	0x3033	"Server:SVGA"	"Compaq|QVision 1280/p"
0x0e11	0x3034	"unknown"	"Compaq|QVision 1280/p"
0x0e11	0x4000	"unknown"	"Compaq|4000 [Triflex]"
0x0e11	0x6010	"unknown"	"Compaq|HotPlug PCI Bridge 6010"
0x0e11	0x7020	"usb-ohci"	"Compaq|USB Controller"
0x0e11	0xa0ec	"unknown"	"Compaq|Fibre Channel Host Controller /P"
0x0e11	0xa0f0	"unknown"	"Compaq|Advanced System Management Controller"
0x0e11	0xa0f3	"unknown"	"Compaq|Triflex PCI to ISA Bridge"
0x0e11	0xa0f7	"unknown"	"Compaq|Cirrus Logic VGA Video Controller"
0x0e11	0xa0f8	"usb-ohci"	"Compaq|USB Open Host Controller"
0x0e11	0xae10	"cpqarray"	"Compaq|Smart-2/P RAID Controller"
0x0e11	0xae29	"unknown"	"Compaq|MIS-L"
0x0e11	0xae2a	"unknown"	"Compaq|MPC"
0x0e11	0xae2b	"unknown"	"Compaq|MIS-E"
0x0e11	0xae31	"unknown"	"Compaq|System Management Controller"
0x0e11	0xae32	"tlan"	"Compaq|Netelligent 10/100"
0x0e11	0xae33	"unknown"	"Compaq|Triflex Dual EIDE Controller"
0x0e11	0xae34	"tlan"	"Compaq|Netelligent 10"
0x0e11	0xae35	"tlan"	"Compaq|Integrated NetFlex-3/P"
0x0e11	0xae40	"tlan"	"Compaq|Netelligent 10/100 Dual"
0x0e11	0xae43	"tlan"	"Compaq|ProLiant Integrated Netelligent 10/100"
0x0e11	0xae69	"unknown"	"Compaq|CETUS-L"
0x0e11	0xae6c	"tlan"	"Compaq|Northstar"
0x0e11	0xae6d	"unknown"	"Compaq|NorthStar Bridge"
0x0e11	0xb011	"tlan"	"Compaq|Integrated Netelligent 10/100"
0x0e11	0xb012	"tlan"	"Compaq|Netelligent 10 T/2"
0x0e11	0xb030	"tlan"	"Compaq|Netelligent WS 5100"
0x0e11	0xb04a	"unknown"	"Compaq|10/100TX WOL UTP Controller"
0x0e11	0xb060	"cciss"	"Compaq|Smart Array 5300 Controller"
0x0e11	0xb0c6	"unknown"	"Compaq|10/100TX Embedded WOL UTP Controller"
0x0e11	0xb0d7	"unknown"	"Compaq|NC3121 (Rev A & B)"
0x0e11	0xf130	"tlan"	"Compaq|NetFlex-3/P ThunderLAN 1.0"
0x0e11	0xf150	"tlan"	"Compaq|NetFlex-3/P ThunderLAN 2.3"
0x1000	0x0001	"53c7,8xx"	"Symbios|53c810"
0x1000	0x0002	"ncr53c8xx"	"Symbios|53c820"
0x1000	0x0003	"ncr53c8xx"	"Symbios|53c825"
0x1000	0x0004	"ncr53c8xx"	"Symbios|53c815"
0x1000	0x0005	"ncr53c8xx"	"Symbios|53c810AP"
0x1000	0x0006	"ncr53c8xx"	"Symbios|53c860"
0x1000	0x000a	"ncr53c8xx"	"Symbios|53c1510"
0x1000	0x000b	"ncr53c8xx"	"Symbios|53c896"
0x1000	0x000c	"ncr53c8xx"	"Symbios|53c895"
0x1000	0x000d	"ncr53c8xx"	"Symbios|53c885"
0x1000	0x000f	"ncr53c8xx"	"Symbios|53c875"
0x1000	0x0010	"cpqarray"	"Symbios|53c1510 Array Mode [Compaq Integrated Smart Array]"
0x1000	0x0012	"ncr53c8xx"	"Symbios|53c895a"
0x1000	0x0020	"sym53c8xx"	"Symbios|53c1010-33 Ultra3 SCSI Adapter"
0x1000	0x0021	"sym53c8xx"	"Symbios|53c1010-66 Ultra3 SCSI Adapter"
0x1000	0x008f	"ncr53c8xx"	"Symbios|53c875J"
0x1000	0x0701	"yellowfin"	"Symbios|83C885 gigabit ethernet"
0x1000	0x0702	"yellowfin"	"Symbios|Yellowfin G-NIC gigabit ethernet"
0x1000	0x0901	"unknown"	"Symbios|61C102"
0x1000	0x1000	"unknown"	"Symbios|63C815"
0x1001	0x0010	"unknown"	"Initio|PCI 1616 Measurement card with 32 digital I/O lines"
0x1001	0x0011	"unknown"	"Initio|OPTO-PCI Opto-Isolated digital I/O board"
0x1001	0x0012	"unknown"	"Initio|PCI-AD/DA Analogue I/O board"
0x1001	0x0013	"unknown"	"Initio|PCI-OPTO-RELAIS Digital I/O board with relay outputs"
0x1001	0x0014	"unknown"	"Initio|PCI-Counter/Timer Counter Timer board"
0x1001	0x0015	"unknown"	"Initio|PCI-DAC416 Analogue output board"
0x1001	0x0016	"unknown"	"Initio|PCI-MFB Analogue I/O board"
0x1001	0x0017	"unknown"	"Initio|PROTO-3 PCI Prototyping board"
0x1001	0x9100	"unknown"	"Initio|INI-9100/9100W SCSI Host"
0x1002	0x0084	"Card:ATI Mach64"	"ATI|Mach64"
0x1002	0x0088	"Card:ATI Mach64"	"ATI|Mach64 (SuSE Econ)"
0x1002	0x4158	"Card:ATI Mach64"	"ATI|Mach32"
0x1002	0x4354	"Card:ATI Mach64"	"ATI|215CT [Mach64 CT]"
0x1002	0x4358	"Card:ATI Mach64"	"ATI|210888CX [Mach64 CX]"
0x1002	0x4554	"Card:ATI Mach64"	"ATI|210888ET [Mach64 ET]"
0x1002	0x4654	"Card:ATI Mach64"	"ATI|Mach64 VT"
0x1002	0x4742	"Card:ATI Mach64"	"ATI|3D Rage Pro AGP 1X/2X"
0x1002	0x4744	"Card:ATI Mach64"	"ATI|3D Rage Pro AGP 1X"
0x1002	0x4747	"Card:ATI Mach64"	"ATI|3D Rage Pro"
0x1002	0x4749	"Card:ATI Mach64"	"ATI|3D Rage Pro"
0x1002	0x474c	"Card:ATI Mach64"	"ATI|Rage XC"
0x1002	0x474d	"Card:ATI Mach64"	"ATI|Rage XL AGP"
0x1002	0x474e	"Card:ATI Mach64"	"ATI|Rage XC AGP"
0x1002	0x474f	"Card:ATI Mach64"	"ATI|Rage XL"
0x1002	0x4750	"Card:ATI Mach64"	"ATI|3D Rage Pro 215GP"
0x1002	0x4751	"Card:ATI Mach64"	"ATI|3D Rage Pro 215GQ"
0x1002	0x4752	"Card:ATI Mach64"	"ATI|Rage XL"
0x1002	0x4753	"Card:ATI Mach64"	"ATI|Rage XC"
0x1002	0x4754	"Card:ATI Mach64 3D RAGE II"	"ATI|3D Rage I/II 215GT [Mach64 GT]"
0x1002	0x4755	"Card:ATI Mach64 3D RAGE II"	"ATI|3D Rage II+ 215GTB [Mach64 GTB]"
0x1002	0x4756	"Card:ATI Mach64 3D RAGE II"	"ATI|3D Rage IIC 215IIC [Mach64 GT IIC]"
0x1002	0x4757	"Card:ATI Mach64 3D Rage IIC"	"ATI|3D Rage IIC AGP"
0x1002	0x4758	"Card:ATI Mach64"	"ATI|210888GX [Mach64 GX]"
0x1002	0x4759	"Card:ATI Mach64 3D Rage IIC"	"ATI|3D Rage IIC"
0x1002	0x475a	"Card:ATI Mach64 3D Rage IIC"	"ATI|3D Rage IIC AGP"
0x1002	0x4c42	"Card:ATI Mach64"	"ATI|3D Rage LT Pro AGP-133"
0x1002	0x4c44	"Card:ATI Mach64"	"ATI|3D Rage LT Pro AGP-66"
0x1002	0x4c45	"Card:ATI Rage 128 Mobility"	"ATI|Rage Mobility M3 AGP"
0x1002	0x4c46	"Card:ATI Rage 128 Mobility"	"ATI|Rage Mobility M3 AGP 2x"
0x1002	0x4c47	"Card:ATI Mach64"	"ATI|3D Rage LT-G 215LG"
0x1002	0x4c49	"Card:ATI Mach64"	"ATI|3D Rage LT Pro"
0x1002	0x4c4d	"Card:ATI Rage Mobility"	"ATI|Rage Mobility P/M AGP 2x"
0x1002	0x4c4e	"Card:ATI Rage Mobility"	"ATI|Rage Mobility L AGP 2x"
0x1002	0x4c50	"Card:ATI Mach64"	"ATI|3D Rage LT Pro"
0x1002	0x4c51	"Card:ATI Mach64"	"ATI|3D Rage LT Pro"
0x1002	0x4c52	"Card:ATI Rage Mobility"	"ATI|Rage Mobility P/M"
0x1002	0x4c53	"Card:ATI Rage Mobility"	"ATI|Rage Mobility L"
0x1002	0x4c54	"Card:ATI Mach64"	"ATI|264LT [Mach64 LT]"
0x1002	0x4d46	"Card:ATI Rage 128 Mobility"	"ATI|Rage Mobility M4 AGP"
0x1002	0x4d4c	"Card:ATI Rage 128 Mobility"	"ATI|Rage Mobility M4 AGP"
0x1002	0x5041	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x5042	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x5043	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x5044	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x5045	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x5046	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x5047	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x5048	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x5049	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x504a	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x504b	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x504c	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x504d	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x504e	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x504f	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x5050	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x5051	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x5052	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x5053	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x5054	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x5055	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x5056	"Card:ATI Rage 128"	"ATI|Rage 128 Pro"
0x1002	0x5057	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 2x"
0x1002	0x5058	"Card:ATI Rage 128"	"ATI|Rage 128 Pro AGP 4x"
0x1002	0x5144	"Card:ATI Radeon"	"ATI|Radeon QD"
0x1002	0x5145	"Card:ATI Radeon"	"ATI|Radeon QE"
0x1002	0x5146	"Card:ATI Radeon"	"ATI|Radeon QF"
0x1002	0x5147	"Card:ATI Radeon"	"ATI|Radeon QG"
0x1002	0x5245	"Card:ATI Rage 128"	"ATI|Rage 128 GL"
0x1002	0x5246	"Card:ATI Rage 128"	"ATI|Rage 128 GL AGP 1x/2x"
0x1002	0x524b	"Card:ATI Rage 128"	"ATI|Rage 128 VR"
0x1002	0x524c	"Card:ATI Rage 128"	"ATI|Rage 128 VR AGP 1x/2x"
0x1002	0x5345	"Card:ATI Rage 128"	"ATI|Rage 128 4x"
0x1002	0x5346	"Card:ATI Rage 128"	"ATI|Rage 128 4x AGP 2x"
0x1002	0x5347	"Card:ATI Rage 128"	"ATI|Rage 128 4x AGP 4x"
0x1002	0x5348	"Card:ATI Rage 128"	"ATI|Rage 128 4x"
0x1002	0x534b	"Card:ATI Rage 128"	"ATI|Rage 128 4x"
0x1002	0x534c	"Card:ATI Rage 128"	"ATI|Rage 128 4x AGP 2x"
0x1002	0x534d	"Card:ATI Rage 128"	"ATI|Rage 128 4x AGP 4x"
0x1002	0x534e	"Card:ATI Rage 128"	"ATI|Rage 128 4x"
0x1002	0x5354	"Card:ATI Mach64"	"ATI|Mach64 ST"
0x1002	0x5654	"Card:ATI Mach64 VT (264VT)"	"ATI|264VT [Mach64 VT]"
0x1002	0x5655	"Card:ATI Mach64 VT (264VT)"	"ATI|264VT3 [Mach64 VT3]"
0x1002	0x5656	"Card:ATI Mach64 VT (264VT)"	"ATI|264VT4 [Mach64 VT4]"
0x1003	0x0201	"unknown"	"ULSI Systems|US201"
0x1004	0x0005	"unknown"	"VLSI|82C592-FC1"
0x1004	0x0006	"unknown"	"VLSI|82C593-FC1"
0x1004	0x0007	"unknown"	"VLSI|82C594-AFC2"
0x1004	0x0008	"unknown"	"VLSI|82C596/7 [Wildcat]"
0x1004	0x0009	"unknown"	"VLSI|82C597-AFC2"
0x1004	0x000c	"unknown"	"VLSI|82C541 [Lynx]"
0x1004	0x000d	"unknown"	"VLSI|82C543 [Lynx]"
0x1004	0x0100	"unknown"	"VLSI Technology|CPU to PCI Bridge for notebook"
0x1004	0x0101	"unknown"	"VLSI|82C532"
0x1004	0x0102	"unknown"	"VLSI|82C534"
0x1004	0x0103	"unknown"	"VLSI|82C538"
0x1004	0x0104	"unknown"	"VLSI|82C535"
0x1004	0x0105	"unknown"	"VLSI|82C147"
0x1004	0x0200	"unknown"	"VLSI|82C975"
0x1004	0x0280	"unknown"	"VLSI|82C925"
0x1004	0x0304	"unknown"	"VLSI|QSound ThunderBird PCI Audio"
0x1004	0x0305	"unknown"	"VLSI|QSound ThunderBird PCI Audio Gameport"
0x1004	0x0306	"unknown"	"VLSI|QSound ThunderBird PCI Audio Support Registers"
0x1004	0x0702	"unknown"	"VLSI|VAS96011 [Golden Gate II]"
0x1005	0x2064	"unknown"	"Avance Logic Inc. [ALI]|ALG2032/2064"
0x1005	0x2128	"unknown"	"Avance Logic Inc. [ALI]|ALG2364A"
0x1005	0x2301	"Card:Avance Logic 2301"	"Avance Logic Inc. [ALI]|ALG2301"
0x1005	0x2302	"Card:Avance Logic 2302"	"Avance Logic Inc. [ALI]|ALG2302"
0x1005	0x2364	"unknown"	"Avance Logic Inc. [ALI]|ALG2364"
0x1005	0x2464	"unknown"	"Avance Logic Inc. [ALI]|ALG2364A"
0x1005	0x2501	"unknown"	"Avance Logic Inc. [ALI]|ALG2564A/25128A"
0x100b	0x0001	"unknown"	"National Semi|DP83810"
0x100b	0x0002	"unknown"	"National Semi|87415"
0x100b	0x000f	"unknown"	"National Semiconductor|OHCI Compliant FireWire Controller"
0x100b	0x0011	"unknown"	"National Semiconductor|National PCI System I/O"
0x100b	0x0012	"unknown"	"National Semiconductor|USB Controller"
0x100b	0xd001	"Card:ATI Mach64"	"National Semiconductor|87410"
0x100c	0x3202	"Card:ET4000 W32i, W32p (generic)"	"Tseng Labs Inc|ET4000/W32p rev A"
0x100c	0x3205	"Card:ET4000 W32i, W32p (generic)"	"Tseng Labs Inc|ET4000/W32p rev B"
0x100c	0x3206	"Card:ET4000 W32i, W32p (generic)"	"Tseng Labs Inc|ET4000/W32p rev C"
0x100c	0x3207	"Card:ET4000 W32i, W32p (generic)"	"Tseng Labs Inc|ET4000/W32p rev D"
0x100c	0x3208	"Card:ET6000 (generic)"	"Tseng Labs Inc|ET6000"
0x100c	0x4702	"Card:ET6000 (generic)"	"Tseng Labs Inc|ET6300"
0x100e	0x9000	"Card:Diamond Viper PCI 2Mb"	"Weitek|P9000"
0x100e	0x9001	"Card:Diamond Viper PCI 2Mb"	"Weitek|P9000"
0x100e	0x9100	"Card:Diamond Viper PCI 2Mb"	"Weitek|P9100"
0x1011	0x0001	"tulip"	"DEC|DECchip 21050"
0x1011	0x0002	"de4x5"	"DEC|DECchip 21040 [Tulip]"
0x1011	0x0004	"Card:Digital 8-plane TGA (UDB/Multia)"	"DEC|21030/TGA"
0x1011	0x0007	"unknown"	"DEC|NVRAM [Zephyr NVRAM]"
0x1011	0x0008	"unknown"	"DEC|KZPSA [KZPSA]"
0x1011	0x0009	"old_tulip"	"DEC|DECchip 21140 [FasterNet]"
0x1011	0x000a	"unknown"	"DEC|21230 Video Codec"
0x1011	0x000d	"Card:Digital 8-plane TGA (UDB/Multia)"	"DEC|PBXGB [TGA2]"
0x1011	0x000f	"defxx"	"DEC|DEFPA"
0x1011	0x0014	"de4x5"	"DEC|DECchip 21041 [Tulip Pass 3]"
0x1011	0x0016	"unknown"	"DEC|DGLPB [OPPO]"
0x1011	0x0019	"tulip"	"DEC|DECchip 21142/43"
0x1011	0x001a	"acenic"	"Farallon|PN9000SX"
0x1011	0x0021	"tulip"	"DEC|DECchip 21052"
0x1011	0x0022	"tulip"	"DEC|DECchip 21150"
0x1011	0x0023	"unknown"	"DEC|DECchip 21150"
0x1011	0x0024	"tulip"	"DEC|DECchip 21152"
0x1011	0x0025	"tulip"	"DEC|DECchip 21153"
0x1011	0x0026	"unknown"	"DEC|DECchip 21154"
0x1011	0x0045	"unknown"	"DEC|DECchip 21553"
0x1011	0x0046	0x103c	0x10c2	"aacraid"	"HP|NetRAID-4M"
0x1011	0x0046	0x9005	0x1364	"aacraid"	"DEC|Dell PowerEdge RAID Controller 2"
0x1011	0x0046	0x9005	0x1365	"aacraid"	"DEC|Dell PowerEdge RAID Controller 2"
0x1011	0x0046	"cpqarray"	"DEC|DECchip 21554 [Compaq Smart Array Controller]"
0x1011	0x1065	"DAC960"	"DEC|RAID Controller"
0x1013	0x0038	"Card:Cirrus Logic GD754x (laptop)"	"Cirrus Logic|GD 7548"
0x1013	0x0040	"Card:Cirrus Logic GD754x (laptop)"	"Cirrus Logic|GD7555 Flat Panel GUI Accelerator"
0x1013	0x004c	"Card:Cirrus Logic GD754x (laptop)"	"Cirrus Logic|GD7556 Video/Graphics LCD/CRT Ctrlr"
0x1013	0x00a0	"Card:Cirrus Logic GD543x"	"Cirrus Logic|GD 5430/40 [Alpine]"
0x1013	0x00a2	"Card:Cirrus Logic GD543x"	"Cirrus Logic|GD 5432 [Alpine]"
0x1013	0x00a4	"Card:Cirrus Logic GD543x"	"Cirrus Logic|GD 5434-4 [Alpine]"
0x1013	0x00a8	"Card:Cirrus Logic GD543x"	"Cirrus Logic|GD 5434-8 [Alpine]"
0x1013	0x00ac	"Card:Cirrus Logic GD543x"	"Cirrus Logic|GD 5436 [Alpine]"
0x1013	0x00b0	"Card:Cirrus Logic GD544x"	"Cirrus Logic|GD 5440"
0x1013	0x00b8	"Card:Cirrus Logic GD544x"	"Cirrus Logic|GD 5446"
0x1013	0x00bc	"Card:Cirrus Logic GD5480"	"Cirrus Logic|GD 5480"
0x1013	0x00d0	"Card:Cirrus Logic GD5462"	"Cirrus Logic|GD 5462"
0x1013	0x00d2	"Card:Cirrus Logic GD5462"	"Cirrus Logic|GD 5462 [Laguna I]"
0x1013	0x00d4	"Card:Cirrus Logic GD5464"	"Cirrus Logic|GD 5464 [Laguna]"
0x1013	0x00d5	"Card:Cirrus Logic GD5464"	"Cirrus Logic|GD5464BD"
0x1013	0x00d6	"Card:Cirrus Logic GD5465"	"Cirrus Logic|GD 5465 [Laguna]"
0x1013	0x00e8	"Card:Cirrus Logic GD543x"	"Cirrus Logic|GD 5436U"
0x1013	0x1100	"i82365"	"Cirrus Logic|CL 6729"
0x1013	0x1110	"i82365"	"Cirrus Logic|PD 6832"
0x1013	0x1112	"unknown"	"Cirrus Logic|PD 6834 PCMCIA/CardBus Ctrlr"
0x1013	0x1113	"unknown"	"Cirrus Logic|PD 6833 PCMCIA/CardBus Ctrlr"
0x1013	0x1200	"Card:Cirrus Logic GD754x (laptop)"	"Cirrus Logic|GD 7542 [Nordic]"
0x1013	0x1202	"Card:Cirrus Logic GD754x (laptop)"	"Cirrus Logic|GD 7543 [Viking]"
0x1013	0x1204	"Card:Cirrus Logic GD754x (laptop)"	"Cirrus Logic|GD 7541 [Nordic Light]"
0x1013	0x4400	"unknown"	"Cirrus Logic|CD 4400"
0x1013	0x6001	"cs46xx"	"Cirrus Logic|CS 4610/11 [CrystalClear SoundFusion Audio Accelerator]"
0x1013	0x6003	"cs46xx"	"Cirrus Logic|CS 4614/22/24 [CrystalClear SoundFusion Audio Accelerator]"
0x1013	0x6004	"cs46xx"	"Cirrus Logic|unknown (? CrystalClear SoundFusion Audio Accelerator?)"
0x1013	0x6005	"cs4281"	"Cirrus Logic|Crystal CS4281 PCI Audio"
0x1014	0x0002	"unknown"	"IBM|PCI to MCA Bridge"
0x1014	0x0005	"unknown"	"IBM|Alta Lite"
0x1014	0x0007	"unknown"	"IBM|Alta MP"
0x1014	0x000a	"unknown"	"IBM|Fire Coral"
0x1014	0x0017	"unknown"	"IBM|CPU to PCI Bridge"
0x1014	0x0018	"tr"	"IBM|TR Auto LANstreamer"
0x1014	0x001b	"unknown"	"IBM|GXT-150P"
0x1014	0x001d	"unknown"	"IBM|82G2675"
0x1014	0x0020	"unknown"	"IBM|MCA"
0x1014	0x0022	"unknown"	"IBM|IBM27-82351"
0x1014	0x002d	"unknown"	"IBM|Python"
0x1014	0x002e	"ips"	"IBM|ServeRAID controller"
0x1014	0x0036	"unknown"	"IBM|Miami"
0x1014	0x003a	"unknown"	"IBM|CPU to PCI Bridge"
0x1014	0x003e	"olympic"	"IBM|16/4 Token ring UTP/STP controller"
0x1014	0x0045	"unknown"	"IBM|SSA Adapter"
0x1014	0x0046	"unknown"	"IBM|MPIC interrupt controller"
0x1014	0x0047	"unknown"	"IBM|PCI to PCI Bridge"
0x1014	0x0048	"unknown"	"IBM|PCI to PCI Bridge"
0x1014	0x004e	"unknown"	"IBM|ATM Controller (14104e00)"
0x1014	0x004f	"unknown"	"IBM|ATM Controller (14104f00)"
0x1014	0x0050	"unknown"	"IBM|ATM Controller (14105000)"
0x1014	0x0053	"unknown"	"IBM|25 MBit ATM Controller"
0x1014	0x0057	"unknown"	"IBM|MPEG PCI Bridge"
0x1014	0x005c	"eepro100"	"IBM|i82557B 10/100 PCI Ethernet Adapter"
0x1014	0x007c	"unknown"	"IBM|ATM Controller (14107c00)"
0x1014	0x007d	"unknown"	"IBM|3780IDSP [MWave]"
0x1014	0x0090	"unknown"	"IBM|GXT 3000P"
0x1014	0x0095	"unknown"	"IBM|20H2999 PCI Docking Bridge"
0x1014	0x00a5	"unknown"	"IBM|ATM Controller (1410a500)"
0x1014	0x00a6	"unknown"	"IBM|ATM 155MBPS MM Controller (1410a600)"
0x1014	0x00b7	"unknown"	"IBM|256-bit Graphics Rasterizer [Fire GL1]"
0x1014	0x00be	"unknown"	"IBM|ATM 622MBPS Controller (1410be00)"
0x1014	0x0142	"unknown"	"IBM|Yotta Video Compositor Input"
0x1014	0x0144	"unknown"	"IBM|Yotta Video Compositor Output"
0x1014	0x0156	"unknown"	"IBM|405GP PLB to PCI Bridge"
0x1014	0x0170	"unknown"	"IBM|RC1000 / GT 1000"
0x1014	0xffff	"unknown"	"IBM|MPIC-2 interrupt controller"
0x1017	0x5343	"unknown"	"SPEA Software AG|SPEA 3D Accelerator"
0x101a	0x0005	"hp100"	"AT&T GIS (NCR)|100VG ethernet"
0x101c	0x0193	"unknown"	"Western Digital|33C193A"
0x101c	0x0196	"unknown"	"Western Digital|33C196A"
0x101c	0x0197	"unknown"	"Western Digital|33C197A"
0x101c	0x0296	"unknown"	"Western Digital|33C296A"
0x101c	0x3193	"unknown"	"Western Digital|7193"
0x101c	0x3197	"unknown"	"Western Digital|7197"
0x101c	0x3296	"unknown"	"Western Digital|33C296A"
0x101c	0x4296	"unknown"	"Western Digital|34C296"
0x101c	0x9710	"unknown"	"Western Digital|Pipeline 9710"
0x101c	0x9712	"unknown"	"Western Digital|Pipeline 9712"
0x101c	0xc24a	"unknown"	"Western Digital|90C"
0x101e	0x1960	"megaraid"	"AMI|MegaRAID"
0x101e	0x9010	"megaraid"	"AMI|MegaRAID"
0x101e	0x9030	"unknown"	"American Megatrends Inc|EIDE Controller"
0x101e	0x9031	"unknown"	"American Megatrends Inc|EIDE Controller"
0x101e	0x9032	"unknown"	"American Megatrends Inc|EIDE & SCSI Controller"
0x101e	0x9033	"unknown"	"American Megatrends Inc|SCSI Controller"
0x101e	0x9040	"unknown"	"American Megatrends Inc|Multimedia card"
0x101e	0x9060	"megaraid"	"AMI|MegaRAID"
0x1022	0x2000	"pcnet32"	"Advanced Micro Devices [AMD]|79c970 [PCnet LANCE]"
0x1022	0x2001	"pcnet32"	"Advanced Micro Devices [AMD]|79c978 [HomePNA]"
0x1022	0x2020	"AM53C974"	"Advanced Micro Devices [AMD]|53c974 [PCscsi]"
0x1022	0x2040	"unknown"	"Advanced Micro Devices [AMD]|79c974"
0x1022	0x7006	"agpgart"	"Advanced Micro Devices [AMD]|AMD-751 [Irongate] System Controller"
0x1022	0x7007	"unknown"	"Advanced Micro Devices (AMD)|AMD-751 PCI to PCI bridge"
0x1022	0x7400	"unknown"	"Advanced Micro Devices (AMD)|AMD-755 PCI to ISA bridge"
0x1022	0x7401	"unknown"	"Advanced Micro Devices (AMD)|AMD-755 (Cobra) Bus Master IDE controller"
0x1022	0x7403	"unknown"	"Advanced Micro Devices (AMD)|AMD-755 Power Management Controller"
0x1022	0x7404	"usb-ohci"	"Advanced Micro Devices (AMD)|AMD-755 PCI to USB Open Host Controller"
0x1022	0x7408	"unknown"	"Advanced Micro Devices (AMD)|AMD-756 PCI to ISA bridge"
0x1022	0x7409	"unknown"	"Advanced Micro Devices (AMD)|AMD-756 (Viper) Bus Master IDE controller"
0x1022	0x740b	"unknown"	"Advanced Micro Devices (AMD)|AMD-756 Power Management Controller"
0x1022	0x740c	"usb-ohci"	"Advanced Micro Devices (AMD)|AMD-756 PCI to USB Open Host Controller"
0x1023	0x0194	"unknown"	"Trident Microsystems|82C194"
0x1023	0x2000	"snd-card-trident"	"Trident Microsystems|4DWave DX"
0x1023	0x2001	"snd-card-trident"	"Trident Microsystems|4DWave NX"
0x1023	0x8400	"Card:Trident CyberBlade (generic)"	"Trident Microsystems|CyberBlade/i7"
0x1023	0x8420	"Card:Trident CyberBlade (generic)"	"Trident Microsystems|CyberBlade/i7d"
0x1023	0x8500	"Card:Trident CyberBlade (generic)"	"Trident Microsystems|CyberBlade/i1"
0x1023	0x8520	"Card:Trident CyberBlade (generic)"	"Trident Microsystems|CyberBlade i1"
0x1023	0x9320	"Card:Trident Cyber 9320 (generic)"	"Trident Microsystems|TGUI 9320"
0x1023	0x9350	"unknown"	"Trident Microsystems|GUI Accelerator"
0x1023	0x9360	"unknown"	"Trident Microsystems|Flat panel GUI Accelerator"
0x1023	0x9382	"Card:Trident Cyber 9382 (generic)"	"Trident Microsystems|Cyber 9382 [Reference design]"
0x1023	0x9383	"unknown"	"Trident Microsystems|Cyber 9383 [Reference design]"
0x1023	0x9385	"Card:Trident Cyber 9385 (generic)"	"Trident Microsystems|Cyber 9385 [Reference design]"
0x1023	0x9386	"unknown"	"Trident Microsystems|Cyber 9386"
0x1023	0x9388	"Card:Trident Cyber 9388 (generic)"	"Trident Microsystems|Cyber 9388"
0x1023	0x9397	"Card:Trident Cyber 9397 (generic)"	"Trident Microsystems|Cyber 9397"
0x1023	0x939a	"Card:Trident Cyber 9397 DVD (generic)"	"Trident Microsystems|Cyber 9397DVD"
0x1023	0x9420	"Card:Trident TGUI9420DGi (generic)"	"Trident Microsystems|TGUI 9420"
0x1023	0x9430	"Card:Trident TGUI9430DGi (generic)"	"Trident Microsystems|TGUI 9430"
0x1023	0x9440	"Card:Trident TGUI9440 (generic)"	"Trident Microsystems|TGUI 9440"
0x1023	0x9460	"unknown"	"Trident Microsystems|TGUI 9460"
0x1023	0x9470	"unknown"	"Trident Microsystems|TGUI 9470"
0x1023	0x9520	"Card:Trident Cyber 9520 (generic)"	"Trident Microsystems|Cyber 9520"
0x1023	0x9525	"Card:Trident Cyber 9525 (generic)"	"Trident Microsystems|Cyber 9525"
0x1023	0x9540	"unknown"	"Trident Microsystems|Cyber 9540"
0x1023	0x9660	"Card:Trident TGUI9660 (generic)"	"Trident Microsystems|TGUI 9660/968x/968x"
0x1023	0x9680	"Card:Trident TGUI9680 (generic)"	"Trident Microsystems|TGUI 9680"
0x1023	0x9682	"Card:Trident TGUI9682 (generic)"	"Trident Microsystems|TGUI 9682"
0x1023	0x9683	"unknown"	"Trident Microsystems|TGUI 9683"
0x1023	0x9685	"Card:Trident TGUI9685 (generic)"	"Trident Microsystems|ProVIDIA 9685"
0x1023	0x9750	"Card:Trident 3DImage975 (generic)"	"Trident Microsystems|3DImage 975"
0x1023	0x9753	"unknown"	"Trident Microsystems|TGUI 9753"
0x1023	0x9754	"unknown"	"Trident Microsystems|TGUI 9754"
0x1023	0x9759	"unknown"	"Trident Microsystems|TGUI 975"
0x1023	0x9783	"unknown"	"Trident Microsystems|TGUI 9783"
0x1023	0x9785	"unknown"	"Trident Microsystems|TGUI 9785"
0x1023	0x9850	"Card:Trident 3DImage985 (generic)"	"Trident Microsystems|3DImage 9850"
0x1023	0x9880	"Card:Trident Blade3D (generic)"	"Trident Microsystems|Blade 3D PCI/AGP"
0x1025	0x1435	"unknown"	"Acer Incorporated [ALI]|M1435"
0x1025	0x1445	"unknown"	"Acer Incorporated [ALI]|M1445"
0x1025	0x1449	"unknown"	"Acer Incorporated [ALI]|M1449"
0x1025	0x1451	"unknown"	"Acer Incorporated [ALI]|M1451"
0x1025	0x1461	"unknown"	"Acer Incorporated [ALI]|M1461"
0x1025	0x1489	"unknown"	"Acer Incorporated [ALI]|M1489"
0x1025	0x1511	"unknown"	"Acer Incorporated [ALI]|M1511"
0x1025	0x1512	"unknown"	"Acer Incorporated [ALI]|ALI M1512 Aladdin"
0x1025	0x1513	"unknown"	"Acer Incorporated [ALI]|M1513"
0x1025	0x1521	"unknown"	"Acer Incorporated [ALI]|ALI M1521 Aladdin III CPU Bridge"
0x1025	0x1523	"unknown"	"Acer Incorporated [ALI]|ALI M1523 ISA Bridge"
0x1025	0x1531	"unknown"	"Acer Incorporated [ALI]|M1531"
0x1025	0x1533	"unknown"	"Acer Incorporated [ALI]|M1533"
0x1025	0x1535	"unknown"	"Acer Incorporated [ALI]|M1535 PCI Bridge + Super I/O + FIR"
0x1025	0x1541	"agpgart"	"Acer Incorporated [ALI]|M1541 Northbridge [Aladdin V]"
0x1025	0x1542	"unknown"	"Acer Incorporated [ALI]|M1542 Northbridge [Aladdin V]"
0x1025	0x1543	"unknown"	"Acer Incorporated [ALI]|M1543 PCI-to-ISA Bridge + Super I/O + FIR"
0x1025	0x1561	"unknown"	"Acer Incorporated [ALI]|M1561 Northbridge [Aladdin 7]"
0x1025	0x1621	"unknown"	"Acer Incorporated [ALI]|M1621 Northbridge [Aladdin-Pro II]"
0x1025	0x1631	"unknown"	"Acer Incorporated [ALI]|M1631 Northbridge+3D Graphics [Aladdin TNT2]"
0x1025	0x1641	"unknown"	"Acer Incorporated [ALI]|M1641 Northbridge [Aladdin-Pro IV]"
0x1025	0x3141	"unknown"	"Acer Incorporated [ALI]|M3141"
0x1025	0x3143	"unknown"	"Acer Incorporated [ALI]|M3143"
0x1025	0x3145	"unknown"	"Acer Incorporated [ALI]|M3145"
0x1025	0x3147	"unknown"	"Acer Incorporated [ALI]|M3147"
0x1025	0x3149	"unknown"	"Acer Incorporated [ALI]|M3149"
0x1025	0x3151	"unknown"	"Acer Incorporated [ALI]|M3151"
0x1025	0x3307	"unknown"	"Acer Incorporated [ALI]|M3307 MPEG-I Video Controller"
0x1025	0x3309	"unknown"	"Acer Incorporated [ALI]|M3309 MPEG-II Video w/ Software Audio Decoder"
0x1025	0x3321	"unknown"	"Acer Incorporated [ALI]|M3321 MPEG-II Audio/Video Decoder"
0x1025	0x5212	"unknown"	"Acer Incorporated [ALI]|ALI M4803"
0x1025	0x5215	"unknown"	"Acer Labs Incorporated (ALI)|ALI PCI EIDE Controller"
0x1025	0x5217	"unknown"	"Acer Incorporated [ALI]|M5217H"
0x1025	0x5219	"unknown"	"Acer Incorporated [ALI]|M5219"
0x1025	0x5225	"unknown"	"Acer Incorporated [ALI]|M5225"
0x1025	0x5229	"unknown"	"Acer Incorporated [ALI]|M5229"
0x1025	0x5235	"unknown"	"Acer Incorporated [ALI]|M5235"
0x1025	0x5237	"unknown"	"Acer Incorporated [ALI]|ALI M5237 PCI USB Host Controller"
0x1025	0x5240	"unknown"	"Acer Incorporated [ALI]|EIDE Controller"
0x1025	0x5241	"unknown"	"Acer Incorporated [ALI]|PCMCIA Bridge"
0x1025	0x5242	"unknown"	"Acer Incorporated [ALI]|General Purpose Controller"
0x1025	0x5243	"unknown"	"Acer Incorporated [ALI]|PCI to PCI Bridge Controller"
0x1025	0x5244	"unknown"	"Acer Incorporated [ALI]|Floppy Disk Controller"
0x1025	0x5247	"unknown"	"Acer Incorporated [ALI]|ALI M1541 PCI to PCI Bridge"
0x1025	0x5251	"unknown"	"Acer Incorporated [ALI]|M5251 P1394 OHCI Controller"
0x1025	0x5427	"unknown"	"Acer Incorporated [ALI]|ALI PCI to AGP Bridge"
0x1025	0x5451	"trident"	"Acer Incorporated [ALI]|ALI M5451 PCI AC-Link Controller Audio Device"
0x1025	0x5453	"unknown"	"Acer Incorporated [ALI]|ALI M5453 PCI AC-Link Controller Modem Device"
0x1025	0x7101	"unknown"	"Acer Incorporated [ALI]|ALI M7101 PCI PMU Power Management Controller"
0x1028	0x0001	"aacraid"	"Dell Computer Corporation|PowerEdge Expandable RAID Controller 2/Si"
0x1028	0x0002	"aacraid"	"Dell Computer Corporation|PowerEdge Expandable RAID Controller 3/Di"
0x1028	0x0003	"aacraid"	"Dell Computer Corporation|PowerEdge Expandable RAID Controller 3/Si"
0x1028	0x0004	"aacraid"	"Dell Computer Corporation|PowerEdge Expandable RAID Controller 3/Si"
0x1028	0x0005	"aacraid"	"Dell Computer Corporation|PowerEdge Expandable RAID Controller 3/Di"
0x1028	0x0006	"aacraid"	"Dell Computer Corporation|PowerEdge Expandable RAID Controller 3/Di"
0x1028	0x0008	"aacraid"	"Dell Computer Corporation|PowerEdge Expandable RAID Controller 3/Di"
0x102a	0x0000	"unknown"	"LSI Logic|HYDRA"
0x102a	0x0010	"unknown"	"LSI Logic|ASPEN"
0x102b	0x0010	"Card:Matrox Millennium 4MB"	"Matrox|MGA-I [Impression]"
0x102b	0x0100	"Card:Matrox Millennium II 4MB"	"Matrox|Millennium II"
0x102b	0x0518	"Card:Matrox Millennium II 4MB"	"Matrox|MGA-II [Athena]"
0x102b	0x0519	"Card:Matrox Millennium 4MB"	"Matrox|MGA 2064W [Millennium]"
0x102b	0x051a	"Card:Matrox Mystique"	"Matrox|MGA 1064SG [Mystique]"
0x102b	0x051b	"Card:Matrox Millennium II 4MB"	"Matrox|MGA 2164W [Millennium II]"
0x102b	0x051e	"Card:Matrox Mystique"	"Matrox|MGA 1064SG [Mystique] AGP"
0x102b	0x051f	"Card:Matrox Millennium II 4MB"	"Matrox|MGA 2164W [Millennium II] AGP"
0x102b	0x0520	"Card:Matrox Millennium G200 4MB"	"Matrox|MGA G200"
0x102b	0x0521	"Card:Matrox Millennium G200 4MB"	"Matrox|MGA G200 AGP [Millennium] AGP"
0x102b	0x0525	"Card:Matrox Millennium G400 16MB"	"Matrox|MGA G400 AGP"
0x102b	0x0d10	"Card:Matrox Mystique"	"Matrox|MGA Ultima/Impression"
0x102b	0x1000	"Card:Matrox Productiva G100 4MB"	"Matrox|MGA G100 [Productiva]"
0x102b	0x1001	"Card:Matrox Productiva G100 4MB"	"Matrox|MGA G100 [Productiva] AGP"
0x102b	0x1100	"Card:Matrox Mystique"	"Matrox|Mystique"
0x102b	0x2007	"Card:Matrox Mystique"	"Matrox|MGA Mistral"
0x102b	0x4536	"unknown"	"Matrox|VIA Framegrabber"
0x102b	0x6573	"unknown"	"Matrox Graphics Inc|Shark 10/100 Multiport SwitchNIC"
0x102b	0xff02	"Card:Matrox Mystique"	"Matrox|Mystique G200 SG"
0x102b	0xff03	"Card:Matrox Mystique"	"Matrox|Millennium G200 SG"
0x102b	0xff04	"Card:Matrox Mystique"	"Matrox|Marvel G200 SD"
0x102c	0x00b8	"Card:Chips & Technologies CT64300"	"C&T|64310"
0x102c	0x00c0	"Card:Chips & Technologies CT69000"	"C&T|F69000 HiQVideo"
0x102c	0x00d0	"Card:Chips & Technologies CT65545"	"C&T|F65545"
0x102c	0x00d8	"Card:Chips & Technologies CT65545"	"C&T|F65545"
0x102c	0x00dc	"Card:Chips & Technologies CT65548"	"C&T|F65548"
0x102c	0x00e0	"Card:Chips & Technologies CT65550"	"C&T|F65550"
0x102c	0x00e4	"Card:Chips & Technologies CT65554"	"C&T|F65554"
0x102c	0x00e5	"Card:Chips & Technologies CT65555"	"C&T|F65555 HiQVPro"
0x102c	0x00f0	"Card:Chips & Technologies CT68554"	"C&T|F68554"
0x102c	0x00f4	"Card:Chips & Technologies CT68554"	"C&T|F68554 HiQVision"
0x102c	0x00f5	"unknown"	"C&T|F68555"
0x102c	0x0c30	"unknown"	"C&T|69030"
0x102d	0x50dc	"unknown"	"Wyse Technology Inc.|3328 Audio"
0x102f	0x0009	"unknown"	"Toshiba America|r4x00"
0x102f	0x0020	"unknown"	"Toshiba America|ATM Meteor 155"
0x1031	0x5601	"Server:SVGA"	"Miro|DC20 ASIC (ZR36050)"
0x1031	0x5607	"unknown"	"Miro|Video I/O & motion JPEG compressor"
0x1031	0x5631	"unknown"	"Miro|Media 3D"
0x1031	0x6057	"unknown"	"Miro|MiroVideo DC10/DC30+"
0x1033	0x0001	"unknown"	"NEC|PCI to 486-like bus Bridge"
0x1033	0x0002	"unknown"	"NEC|PCI to VL98 Bridge"
0x1033	0x0003	"unknown"	"NEC|ATM Controller"
0x1033	0x0004	"unknown"	"NEC|R4000 PCI Bridge"
0x1033	0x0005	"unknown"	"NEC|PCI to 486-like bus Bridge"
0x1033	0x0006	"unknown"	"NEC Electronics Hong Kong|GUI Accelerator"
0x1033	0x0007	"unknown"	"NEC|PCI to UX-Bus Bridge"
0x1033	0x0008	"unknown"	"NEC Electronics Hong Kong|GUI Accelerator"
0x1033	0x0009	"unknown"	"NEC Electronics Hong Kong|GUI Accelerator for 98"
0x1033	0x001a	"unknown"	"NEC|[Nile II]"
0x1033	0x0021	"unknown"	"NEC|Vrc4373 [Nile I]"
0x1033	0x0029	"unknown"	"NEC|PowerVR PCX1"
0x1033	0x002a	"unknown"	"NEC|PowerVR 3D"
0x1033	0x0035	"usb-ohci"	"NEC|USB"
0x1033	0x003e	"unknown"	"NEC|NAPCCARD Cardbus Controller"
0x1033	0x0046	"unknown"	"NEC|PowerVR PCX2 [midas]"
0x1033	0x005a	"unknown"	"NEC|Vrc5074 [Nile 4]"
0x1033	0x0063	"unknown"	"NEC|Firewarden"
0x1033	0x0067	"unknown"	"NEC|PowerVR Neon 250 Chipset"
0x1033	0x0074	"unknown"	"NEC|56k Voice Modem"
0x1033	0x009b	"unknown"	"NEC|Vrc5476"
0x1036	0x0000	"fdomain"	"Future Domain|TMC-18C30 [36C70]"
0x1039	0x0001	"unknown"	"Silicon Integrated Systems [SiS]|5591/5592 AGP"
0x1039	0x0002	"unknown"	"Silicon Integrated Systems [SiS]|SG86C202"
0x1039	0x0005	"unknown"	"Silicon Integrated Systems [SiS]|Pentium Chipset"
0x1039	0x0006	"unknown"	"Silicon Integrated Systems [SiS]|85C501/2/3"
0x1039	0x0008	"unknown"	"Silicon Integrated Systems [SiS]|85C503/5513"
0x1039	0x0009	"unknown"	"Silicon Integrated Systems [SiS]|ACPI"
0x1039	0x0018	"unknown"	"Silicon Integrated Systems [SiS]|SiS85C503/5513 (LPC Bridge)"
0x1039	0x0200	"Card:SiS 5598"	"Silicon Integrated Systems [SiS]|5597/5598 VGA"
0x1039	0x0204	"unknown"	"Silicon Integrated Systems [SiS]|82C204"
0x1039	0x0205	"Card:SiS SG86C205"	"Silicon Integrated Systems [SiS]|SG86C205"
0x1039	0x0215	"Card:SiS SG86C215"	"SIS|SG86C215"
0x1039	0x0225	"Card:SiS SG86C225"	"SIS|SG86C225"
0x1039	0x0300	"unknown"	"SiS|300"
0x1039	0x0406	"unknown"	"Silicon Integrated Systems [SiS]|85C501/2"
0x1039	0x0496	"unknown"	"Silicon Integrated Systems [SiS]|85C496"
0x1039	0x0530	"agpgart"	"Silicon Integrated Systems [SiS]|530 Host"
0x1039	0x0540	"agpgart"	"Silicon Integrated Systems [SiS]|540 Host"
0x1039	0x0596	"unknown"	"Silicon Integrated Systems [SiS]|Pentium PCI Chipset with IDE"
0x1039	0x0597	"unknown"	"Silicon Integrated Systems [SiS]|5513C"
0x1039	0x0601	"unknown"	"Silicon Integrated Systems [SiS]|85C601"
0x1039	0x0620	"agpgart"	"Silicon Integrated Systems [SiS]|620 Host"
0x1039	0x0630	"agpgart"	"Silicon Integrated Systems [SiS]|630 Host"
0x1039	0x0900	"sis900"	"Silicon Integrated Systems [SiS]|SiS900 10/100 Ethernet"
0x1039	0x3602	"unknown"	"Silicon Integrated Systems [SiS]|83C602"
0x1039	0x5107	"unknown"	"Silicon Integrated Systems [SiS]|5107"
0x1039	0x5300	"unknown"	"Silicon Integrated Systems [SiS]|SiS540 PCI Display Adapter"
0x1039	0x5401	"unknown"	"Silicon Integrated Systems (SiS)|486 PCI Chipset"
0x1039	0x5511	"unknown"	"Silicon Integrated Systems [SiS]|5511/5512"
0x1039	0x5513	"unknown"	"Silicon Integrated Systems [SiS]|5513 [IDE]"
0x1039	0x5517	"unknown"	"Silicon Integrated Systems [SiS]|5517"
0x1039	0x5571	"unknown"	"Silicon Integrated Systems [SiS]|5571"
0x1039	0x5581	"unknown"	"Silicon Integrated Systems [SiS]|Pentium Chipset"
0x1039	0x5582	"unknown"	"Silicon Integrated Systems [SiS]|PCI to ISA Bridge"
0x1039	0x5591	"unknown"	"Silicon Integrated Systems [SiS]|5591/5592 Host"
0x1039	0x5596	"unknown"	"Silicon Integrated Systems [SiS]|SiS5596 Pentium Chipset"
0x1039	0x5597	"Card:SiS 5597"	"Silicon Integrated Systems [SiS]|5597 [SiS5582]"
0x1039	0x5600	"unknown"	"Silicon Integrated Systems [SiS]|5600 Host"
0x1039	0x6204	"unknown"	"Silicon Integrated Systems [SiS]|Video decoder & MPEG interface"
0x1039	0x6205	"unknown"	"Silicon Integrated Systems [SiS]|VGA Controller"
0x1039	0x6226	"Card:SiS 6326"	"Silicon Integrated Systems [SiS]|6326 3D-AGP"
0x1039	0x6236	"Card:SiS 6326"	"Silicon Integrated Systems [SiS]|6236 3D-AGP"
0x1039	0x6300	"Card:SiS 630"	"Silicon Integrated Systems [SiS]|SiS630 GUI Accelerator+3D"
0x1039	0x6306	"Card:SiS 620"	"Silicon Integrated Systems [SiS]|6306 3D-AGP"
0x1039	0x6326	"Card:SiS 6326"	"Silicon Integrated Systems [SiS]|86C326"
0x1039	0x7001	"usb-ohci"	"Silicon Integrated Systems [SiS]|7001 USB"
0x1039	0x7007	"unknown"	"Silicon Integrated Systems [SiS]|OHCI Compliant FireWire Controller"
0x1039	0x7016	"sis900"	"Silicon Integrated Systems [SiS]|SiS900 10/100 Ethernet"
0x1039	0x7018	"snd-card-trident"	"Silicon Integrated Systems [SiS]|7018 PCI Audio"
0x103c	0x1030	"hp100"	"HP|J2585A"
0x103c	0x1031	"hp100"	"HP|J2585B"
0x103c	0x1040	"unknown"	"HP|J2973A DeskDirect 10BaseT NIC"
0x103c	0x1041	"unknown"	"HP|J2585B DeskDirect 10/100 NIC"
0x103c	0x1042	"unknown"	"HP|J2970A DeskDirect 10BaseT/2 NIC"
0x103c	0x1064	"unknown"	"HP|79C970 PCnet Ethernet Controller"
0x103c	0x10c1	"unknown"	"HP|NetServer Smart IRQ Router"
0x103c	0x10c2	"aacraid"	"HP|NetRAID-4M"
0x103c	0x10ed	"unknown"	"HP|TopTools Remote Control"
0x103c	0x1200	"unknown"	"HP|82557B 10/100 NIC"
0x103c	0x1219	"unknown"	"HP|NetServer PCI Hot-Plug Controller"
0x103c	0x121a	"unknown"	"HP|NetServer SMIC Controller"
0x103c	0x121b	"unknown"	"HP|NetServer Legacy COM Port Decoder"
0x103c	0x121c	"unknown"	"HP|NetServer PCI COM Port Decoder"
0x103c	0x2910	"unknown"	"HP|E2910A"
0x103c	0x2925	"unknown"	"HP|E2925A"
0x1042	0x1000	"unknown"	"Micron|FDC 37C665"
0x1042	0x1001	"unknown"	"Micron|37C922"
0x1042	0x3000	"unknown"	"Micron|Samurai_0"
0x1042	0x3010	"unknown"	"Micron|Samurai_1"
0x1042	0x3020	"unknown"	"Micron|Samurai_IDE"
0x1043	0x0675	"hisax"	"Asuscom/Askey"
0x1044	0x1012	"unknown"	"Distributed Tech|Domino RAID Engine"
0x1044	0xa400	"eata"	"Distributed Tech|SmartCache/Raid I-IV Controller"
0x1044	0xa500	"unknown"	"Distributed Tech|PCI Bridge"
0x1044	0xa501	"unknown"	"Distributed Tech|SmartRAID V Controller"
0x1045	0xa0f8	"usb-ohci"	"OPTi Inc.|82C750 [Vendetta] USB Controller"
0x1045	0xc101	"unknown"	"OPTi Inc.|92C264"
0x1045	0xc178	"unknown"	"OPTi Inc.|92C178"
0x1045	0xc556	"unknown"	"OPTi Inc.|82X556 [Viper]"
0x1045	0xc557	"unknown"	"OPTi Inc.|82C557 [Viper-M]"
0x1045	0xc558	"unknown"	"OPTi Inc.|82C558 [Viper-M ISA+IDE]"
0x1045	0xc567	"unknown"	"OPTi Inc.|82C750 [Vendetta], device 0"
0x1045	0xc568	"unknown"	"OPTi Inc.|82C750 [Vendetta], device 1"
0x1045	0xc569	"unknown"	"OPTi Inc.|82C579 [Viper XPress+ Chipset]"
0x1045	0xc621	"unknown"	"OPTi Inc.|82C621"
0x1045	0xc700	"unknown"	"OPTi Inc.|82C700"
0x1045	0xc701	"unknown"	"OPTi Inc.|82C701 [FireStar Plus]"
0x1045	0xc814	"unknown"	"OPTi Inc.|82C814 [Firebridge 1]"
0x1045	0xc822	"unknown"	"OPTi Inc.|82C822"
0x1045	0xc824	"unknown"	"OPTi Inc.|82C824"
0x1045	0xc825	"unknown"	"OPTi Inc.|82C825 [Firebridge 2]"
0x1045	0xc832	"unknown"	"OPTi Inc.|82C832"
0x1045	0xc861	"usb-ohci"	"OPTi Inc.|82C861"
0x1045	0xc895	"unknown"	"OPTi Inc.|82C895"
0x1045	0xc935	"unknown"	"OPTi Inc.|EV1935 ECTIVA MachOne PCI Audio"
0x1045	0xd568	"unknown"	"OPTi Inc.|82C825 [Firebridge 2]"
0x1048	0x0a32	"Card:ELSA GLoria Synergy"	"Elsa|Gloria Synergy"
0x1048	0x1000	"hisax"	"Elsa AG|QuickStep 1000"
0x1048	0x3000	"hisax"	"Elsa AG|QuickStep 3000"
0x104a	0x0008	"unknown"	"SGS Thomson|STG 2000X"
0x104a	0x0009	"unknown"	"SGS Thomson|STG 1764X"
0x104a	0x1746	"unknown"	"SGS Thomson|STG 1764X"
0x104a	0x3520	"unknown"	"SGS Thomson|MPEG-II decoder card"
0x104b	0x0140	"BusLogic"	"BusLogic|BT-946C (old) [multimaster 01]"
0x104b	0x1040	"BusLogic"	"BusLogic|BT-946C (BA80C30) [MultiMaster 10]"
0x104b	0x8130	"BusLogic"	"BusLogic|Flashpoint LT"
0x104c	0x0500	"unknown"	"Texas Instruments|100 MBit LAN Controller"
0x104c	0x0508	"unknown"	"Texas Instruments|TMS380C2X Compressor Interface"
0x104c	0x1000	"unknown"	"Texas Instruments|Eagle i/f AS"
0x104c	0x3d04	"Card:3Dlabs Permedia2 (generic)"	"Texas Instruments|TVP4010 [Permedia]"
0x104c	0x3d07	"Card:ELSA GLoria Synergy"	"Texas Instruments|ELSA GLoria Synergy [Permedia 2]"
0x104c	0x8000	"unknown"	"Texas Instruments|PCILynx/PCILynx2 IEEE 1394 Link Layer Controller"
0x104c	0x8009	"unknown"	"Texas Instruments|OHCI Compliant FireWire Controller"
0x104c	0x8019	"unknown"	"Texas Instruments|TSB12LV23 OHCI Compliant IEEE-1394 Controller"
0x104c	0xa001	"unknown"	"Texas Instruments|TDC1570"
0x104c	0xa100	"unknown"	"Texas Instruments|TDC1561"
0x104c	0xac10	"unknown"	"Texas Instruments|PCI1050"
0x104c	0xac11	"unknown"	"Texas Instruments|PCI1053"
0x104c	0xac12	"i82365"	"Texas Instruments|PCI1130"
0x104c	0xac13	"i82365"	"Texas Instruments|PCI1031"
0x104c	0xac15	"i82365"	"Texas Instruments|PCI1131"
0x104c	0xac16	"i82365"	"Texas Instruments|PCI1250"
0x104c	0xac17	"i82365"	"Texas Instruments|PCI1220"
0x104c	0xac18	"unknown"	"Texas Instruments|PCI1260"
0x104c	0xac19	"i82365"	"Texas Instruments|PCI1221"
0x104c	0xac1a	"i82365"	"Texas Instruments|PCI1210"
0x104c	0xac1b	"i82365"	"Texas Instruments|PCI1221"
0x104c	0xac1c	"i82365"	"Texas Instruments|PCI1225"
0x104c	0xac1d	"i82365"	"Texas Instruments|PCI1251"
0x104c	0xac1e	"i82365"	"Texas Instruments|PCI1251"
0x104c	0xac1f	"i82365"	"Texas Instruments|PCI1251B"
0x104c	0xac20	"unknown"	"Texas Instruments|TI 2030"
0x104c	0xac30	"unknown"	"Texas Instruments (TI)|PCI1260 PC card CardBus Controller"
0x104c	0xac40	"unknown"	"Texas Instruments|PCI4450 PC card Cardbus Controller"
0x104c	0xac41	"unknown"	"Texas Instruments|PCI4410 PC card Cardbus Controller"
0x104c	0xac42	"unknown"	"Texas Instruments|PCI4451 PC card Cardbus Controller"
0x104c	0xac50	"unknown"	"Texas Instruments|PCI1410 PC card Cardbus Controller"
0x104c	0xac51	"unknown"	"Texas Instruments|PCI1420"
0x104c	0xac52	"unknown"	"Texas Instruments|PCI1451 PC card Cardbus Controller"
0x104c	0xac53	"unknown"	"Texas Instruments|PCI1421 PC card Cardbus Controller"
0x104c	0xfe00	"unknown"	"Texas Instruments|FireWire Host Controller"
0x104c	0xfe03	"unknown"	"Texas Instruments|12C01A FireWire Host Controller"
0x104d	0x8009	"unknown"	"Sony Corporation|CXD1947Q i.LINK Controller"
0x104d	0x8039	"unknown"	"Sony Corporation|CXD3222 iLINK Controller"
0x104d	0x8056	"unknown"	"Sony Corporation|Rockwell HCF 56K modem"
0x104e	0x0017	"unknown"	"Oak Technology, Inc|OTI-64017"
0x104e	0x0107	"Card:Paradise Accelerator Value"	"Oak Technology, Inc|OTI-107 [Spitfire]"
0x104e	0x0109	"unknown"	"Oak Technology, Inc|Video Adapter"
0x104e	0x0111	"unknown"	"Oak Technology, Inc|OTI-64111 [Spitfire]"
0x104e	0x0217	"unknown"	"Oak Technology, Inc|OTI-64217"
0x104e	0x0317	"unknown"	"Oak Technology, Inc|OTI-64317"
0x104e	0x4d33	"unknown"	"Oak|IDE UltraDMA/33"
0x104e	0x5300	"unknown"	"Oak|DC5030"
0x1050	0x0000	"ne2k-pci"	"Winbond Electronics Corp|NE2000"
0x1050	0x0001	"unknown"	"Winbond Electronics Corp|W83769F"
0x1050	0x0105	"unknown"	"Winbond Electronics Corp|W82C105"
0x1050	0x0840	"unknown"	"Winbond Electronics Corp|W89C840"
0x1050	0x0940	"ne2k-pci"	"Winbond Electronics Corp|W89C940"
0x1050	0x5a5a	"unknown"	"Winbond Electronics Corp|W89C940F"
0x1050	0x6692	"hisax"	"Winbond Electronics Corp|W6692"
0x1050	0x9970	"unknown"	"Winbond Electronics Corp|W9970CF"
0x1051	0x0100	"hisax"	"Motorola MC145575|MC145575"
0x1054	0x0001	"unknown"	"Hitachi Ltd|PCI Bridge"
0x1054	0x0002	"unknown"	"Hitachi Ltd|PCI Bus Controller"
0x1055	0x0810	"unknown"	"EFAR Microsystems|486 Host Bridge"
0x1055	0x0922	"unknown"	"EFAR Microsystems|Pentium Host Bridge"
0x1055	0x0926	"unknown"	"EFAR Microsystems|PCI to ISA Bridge"
0x1057	0x0001	"unknown"	"Motorola|MPC105 [Eagle]"
0x1057	0x0002	"unknown"	"Motorola|MPC106 [Grackle]"
0x1057	0x0100	"unknown"	"Motorola|MC145575 [HFC-PCI]"
0x1057	0x0431	"unknown"	"Motorola|KTI829c 100VG"
0x1057	0x1801	"unknown"	"Motorola|Audio I/O Controller (MIDI)"
0x1057	0x4801	"unknown"	"Motorola|Raven"
0x1057	0x4802	"unknown"	"Motorola|Falcon"
0x1057	0x4803	"unknown"	"Motorola|Hawk"
0x1057	0x4806	"unknown"	"Motorola|CPX8216"
0x1057	0x5600	"unknown"	"Motorola|SM56 PCI Modem"
0x105a	0x4d33	"unknown"	"Promise Technology, Inc.|20246"
0x105a	0x4d38	"unknown"	"Promise Technology, Inc.|20262 (Ultra66)"
0x105a	0x5300	"unknown"	"Promise Technology, Inc.|DC5300"
0x105d	0x2309	"Card:Number Nine Imagine I-128 (2-8MB)"	"Number 9|Imagine 128"
0x105d	0x2339	"Card:Number Nine Imagine I-128 Series 2 (2-4MB)"	"Number 9|Imagine 128-II"
0x105d	0x493d	"Card:Number Nine Imagine-128-T2R"	"Number 9|Imagine 128 T2R [Ticket to Ride]"
0x105d	0x5348	"Card:Number Nine Imagine-128-T2R"	"Number 9|Revolution 4 (Imagine 128)"
0x1060	0x0001	"unknown"	"United Microelectronics [UMC]|UM82C881"
0x1060	0x0002	"unknown"	"United Microelectronics [UMC]|UM82C886"
0x1060	0x0101	"unknown"	"United Microelectronics [UMC]|UM8673F"
0x1060	0x0881	"unknown"	"United Microelectronics [UMC]|UM8881"
0x1060	0x0886	"unknown"	"United Microelectronics [UMC]|UM8886F"
0x1060	0x0891	"unknown"	"United Microelectronics [UMC]|UM8891A"
0x1060	0x1001	"unknown"	"United Microelectronics [UMC]|UM886A"
0x1060	0x673a	"unknown"	"United Microelectronics [UMC]|UM8886BF"
0x1060	0x673b	"unknown"	"United Microelectronics (UMC)|EIDE Master/DMA"
0x1060	0x8710	"unknown"	"United Microelectronics [UMC]|UM8710"
0x1060	0x8821	"unknown"	"United Microelectronics (UMC)|CPU/PCI Bridge"
0x1060	0x8822	"unknown"	"United Microelectronics (UMC)|PCI/ISA Bridge"
0x1060	0x8851	"unknown"	"United Microelectronics (UMC)|Pentium CPU/PCIBridge"
0x1060	0x8852	"unknown"	"United Microelectronics (UMC)|Pentium CPU/ISA Bridge"
0x1060	0x886a	"unknown"	"United Microelectronics [UMC]|UM8886A"
0x1060	0x8881	"unknown"	"United Microelectronics [UMC]|UM8881F"
0x1060	0x8886	"unknown"	"United Microelectronics [UMC]|UM8886F"
0x1060	0x888a	"unknown"	"United Microelectronics [UMC]|UM8886A"
0x1060	0x8891	"unknown"	"United Microelectronics [UMC]|UM8891A"
0x1060	0x9017	"unknown"	"United Microelectronics [UMC]|UM9017F"
0x1060	0x9018	"unknown"	"United Microelectronics [UMC]|UM9018"
0x1060	0x9026	"unknown"	"United Microelectronics [UMC]|UM9026"
0x1060	0xe881	"unknown"	"United Microelectronics [UMC]|UM8881N"
0x1060	0xe886	"unknown"	"United Microelectronics [UMC]|UM8886N"
0x1060	0xe88a	"unknown"	"United Microelectronics (UMC)|UM8886N"
0x1060	0xe891	"unknown"	"United Microelectronics [UMC]|UM8891N"
0x1061	0x0001	"Card:Spider Black Widow Plus"	"I.I.T.|AGX016"
0x1061	0x0002	"unknown"	"I.I.T.|IIT3204/3501"
0x1066	0x0000	"unknown"	"PicoPower Technology|PT80C826"
0x1066	0x0001	"unknown"	"PicoPower Technology|PT86C52x [Vesuvius]"
0x1066	0x0002	"unknown"	"PicoPower Technology|PT80C524 [Nile]"
0x1066	0x0004	"unknown"	"Picopower Technology (National)|ISA Bridge"
0x1066	0x0005	"unknown"	"PicoPower Technology|National PC87550 System Controller"
0x1066	0x8002	"unknown"	"PicoPower Technology|PT80C524 [Nile]"
0x1067	0x1002	"unknown"	"Mitsubishi Electric|VG500 [VolumePro Volume Rendering Accelerator]"
0x1069	0x0001	"DAC960"	"Mylex Corporation|DAC960P"
0x1069	0x0002	"DAC960"	"Mylex Corporation|DAC960PD"
0x1069	0x0010	"DAC960"	"Mylex Corporation|DAC960PX"
0x1069	0x0020	"DAC960"	"Mylex Corporation|DAC960 V5"
0x1069	0x0050	"DAC960"	"Mylex Corporation|Raid Adapter (DAC960)"
0x1069	0xba55	"DAC960"	"Mylex Corporation|eXtremeRAID support Device"
0x1069	0xba56	"DAC960"	"Mylex Corporation|eXtremeRAID 2000/3000 support Device"
0x106b	0x0001	"unknown"	"Apple Computer Inc.|Bandit PowerPC host bridge"
0x106b	0x0002	"unknown"	"Apple Computer Inc.|Grand Central I/O"
0x106b	0x0003	"unknown"	"Apple Computer Inc.|Control Video"
0x106b	0x0004	"unknown"	"Apple Computer Inc.|PlanB Video-In"
0x106b	0x0007	"unknown"	"Apple Computer Inc.|O'Hare I/O"
0x106b	0x000e	"unknown"	"Apple Computer Inc.|Hydra Mac I/O"
0x106b	0x0010	"unknown"	"Apple Computer Inc.|Heathrow Mac I/O"
0x106b	0x0017	"unknown"	"Apple Computer Inc.|Paddington Mac I/O"
0x106c	0x8801	"unknown"	"Hyundai Electronics America|Dual Pentium ISA/PCI Motherboard"
0x106c	0x8802	"unknown"	"Hyundai Electronics America|PowerPC ISA/PCI Motherboard"
0x106c	0x8803	"unknown"	"Hyundai Electronics America|Dual Window Graphics Accelerator"
0x106c	0x8804	"unknown"	"Hyundai Electronics America|PCI LAN Controller"
0x106c	0x8805	"unknown"	"Hyundai Electronics America|100-BaseT LAN"
0x1073	0x0001	"unknown"	"Yamaha Corp|3D GUI Accelerator"
0x1073	0x0002	"unknown"	"Yamaha Corporation|YGV615 [RPA3 3D-Graphics Controller]"
0x1073	0x0003	"snd-card-ymfpci"	"Yamaha Corporation|YMF-740"
0x1073	0x0004	"snd-card-ymfpci"	"Yamaha Corporation|YMF-724"
0x1073	0x0005	"unknown"	"Yamaha Corp|DS1 Audio"
0x1073	0x0006	"unknown"	"Yamaha Corp|DS1 Audio"
0x1073	0x0008	"unknown"	"Yamaha Corp|DS1 Audio"
0x1073	0x000a	"snd-card-ymfpci"	"Yamaha Corp|DS1L Audio"
0x1073	0x000c	"snd-card-ymfpci"	"Yamaha Corporation|YMF-740C [DS-1L Audio Controller]"
0x1073	0x000d	"snd-card-ymfpci"	"Yamaha Corporation|YMF-724F [DS-1 Audio Controller]"
0x1073	0x0010	"snd-card-ymfpci"	"Yamaha Corporation|YMF-744B [DS-1S Audio Controller]"
0x1073	0x0012	"snd-card-ymfpci"	"Yamaha Corporation|YMF-754 [DS-1E Audio Controller]"
0x1073	0x0020	"unknown"	"Yamaha Corporation|DS-1 Audio"
0x1074	0x4e78	"unknown"	"NexGen Microsystems|82c500/1"
0x1077	0x1016	"qla1280"	"Q Logic|QLA10160"
0x1077	0x1020	"qlogicisp"	"Q Logic|ISP1020"
0x1077	0x1022	"unknown"	"Q Logic|ISP1022"
0x1077	0x1080	"qla1280"	"Q Logic|QLA1080"
0x1077	0x1216	"qla1280"	"Q Logic|QLA12160"
0x1077	0x1240	"qla1280"	"Q Logic|QLA1240"
0x1077	0x1280	"qla1280"	"Q Logic|QLA1280"
0x1077	0x2020	"unknown"	"Q Logic|ISP2020A"
0x1077	0x2100	"qla2x00"	"Q Logic|QLA2100"
0x1077	0x2200	"qla2x00"	"Q Logic|QLA2200"
0x1078	0x0000	"unknown"	"Cyrix Corporation|5510 [Grappa]"
0x1078	0x0001	"Card:MediaGX"	"Cyrix Corporation|PCI Master [MEDIAGX]"
0x1078	0x0002	"Card:MediaGX"	"Cyrix Corporation|5520 [Cognac]"
0x1078	0x0100	"unknown"	"Cyrix Corporation|5530 Legacy [Kahlua]"
0x1078	0x0101	"unknown"	"Cyrix Corporation|5530 SMI [Kahlua]"
0x1078	0x0102	"unknown"	"Cyrix Corporation|5530 IDE [Kahlua]"
0x1078	0x0103	"unknown"	"Cyrix Corporation|5530 Audio [Kahlua]"
0x1078	0x0104	"Card:MediaGX"	"Cyrix Corporation|5530 Video [Kahlua]"
0x107d	0x0000	"unknown"	"LeadTek Research Inc.|P86C850"
0x107e	0x0001	"unknown"	"Interphase Corporation|ATM Interface Card"
0x107e	0x0002	"unknown"	"Interphase Corporation|100 VG AnyLan Controller"
0x107e	0x0008	"unknown"	"Interphase Corporation|155 Mbit ATM Controller"
0x107f	0x0802	"unknown"	"Data Technology|SL82C105"
0x107f	0x0803	"unknown"	"Data Technology Corp (DTC)|EIDE Bus Master Controller"
0x107f	0x0806	"unknown"	"Data Technology Corp (DTC)|EIDE Controller"
0x107f	0x2015	"unknown"	"Data Technology Corp (DTC)|EIDE Controller"
0x1080	0x0600	"unknown"	"Contaq Microsystems|82C599"
0x1080	0xc691	"unknown"	"Contaq Microsystems|Cypress CY82C691"
0x1080	0xc693	"unknown"	"Contaq Microsystems|82c693"
0x1081	0x0d47	"unknown"	"Supermac Technology|Radius PCI to NuBUS Bridge"
0x1083	0x0001	"unknown"	"Forex|FR710"
0x1083	0x0613	"unknown"	"Forex Computer Corp|Host Bridge ??"
0x108a	0x0001	"unknown"	"Bit3 Computer Corp.|VME Bridge Model 617"
0x108a	0x0010	"unknown"	"Bit3 Computer Corp.|VME Bridge Model 618"
0x108a	0x3000	"unknown"	"Bit3 Computer Corp.|VME Bridge Model 2706"
0x108d	0x0001	"unknown"	"Olicom|Token-Ring 16/4 PCI Adapter (3136/3137)"
0x108d	0x0002	"ibmtr"	"Olicom|16/4 Token Ring"
0x108d	0x0004	"ibmtr"	"Olicom|RapidFire 3139 Token-Ring 16/4 PCI Adapter"
0x108d	0x0005	"ibmtr"	"Olicom|GoCard 3250 Token-Ring 16/4 CardBus PC Card"
0x108d	0x0006	"unknown"	"Olicom|OC-3530 RapidFire Token-Ring 100"
0x108d	0x0007	"ibmtr"	"Olicom|RapidFire 3141 Token-Ring 16/4 PCI Fiber Adapter"
0x108d	0x0008	"unknown"	"Olicom|RapidFire 3540 HSTR 100/16/4 PCI Adapter"
0x108d	0x0011	"unknown"	"Olicom|OC-2315"
0x108d	0x0012	"tlan"	"Olicom|OC-2325"
0x108d	0x0013	"tlan"	"Olicom|OC-2183/2185"
0x108d	0x0014	"tlan"	"Olicom|OC-2326"
0x108d	0x0019	"tlan"	"Olicom|OC-2327/2250 10/100 Ethernet Adapter"
0x108d	0x0021	"unknown"	"Olicom|OC-6151/6152 [RapidFire ATM PCI 155]"
0x108d	0x0022	"unknown"	"Olicom|ATM Adapter"
0x108e	0x0001	"unknown"	"Sun|EBUS"
0x108e	0x1000	"unknown"	"Sun|EBUS"
0x108e	0x1001	"sunhme"	"Sun|Happy Meal"
0x108e	0x5000	"unknown"	"Sun|Simba Advanced PCI Bridge"
0x108e	0x5043	"unknown"	"Sun|SunPCI Co-processor"
0x108e	0x8000	"unknown"	"Sun|PCI Bus Module"
0x108e	0xa000	"unknown"	"Sun|Ultra IIi PCI"
0x1091	0x0020	"unknown"	"Intergraph Corporation|3D graphics processor"
0x1091	0x0021	"unknown"	"Intergraph Corporation|3D graphics processor w/Texturing"
0x1091	0x0040	"unknown"	"Intergraph Corporation|3D graphics frame buffer"
0x1091	0x0041	"unknown"	"Intergraph Corporation|3D graphics frame buffer"
0x1091	0x0060	"unknown"	"Intergraph Corporation|Proprietary bus bridge"
0x1091	0x00e4	"unknown"	"Intergraph Corporation|Powerstorm 4D50T"
0x1091	0x0720	"unknown"	"Intergraph Corporation|Motion JPEG codec"
0x1092	0x00a0	"Card:Diamond SpeedStar Pro SE (CL-GD5430/5434)"	"Diamond Multimedia Systems|Speedstar Pro SE"
0x1092	0x00a8	"Card:Diamond SpeedStar 64"	"Diamond Multimedia Systems|Speedstar 64"
0x1092	0x0550	"Card:Diamond Viper 550"	"Diamond|Viper 550"
0x1092	0x08d4	"unknown"	"Diamond Multimedia Systems|Supra 2260 Modem"
0x1092	0x1092	"Card:Diamond Viper 330"	"Diamond Multimedia Systems|Viper V330"
0x1092	0x6120	"unknown"	"Diamond Multimedia Systems|Maximum DVD"
0x1092	0x8810	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth SE"
0x1092	0x8811	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64/SE"
0x1092	0x8880	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth"
0x1092	0x8881	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth"
0x1092	0x88b0	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x88b1	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x88c0	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x88c1	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x88d0	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x88d1	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x88f0	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x88f1	"Card:Diamond Stealth 64 DRAM SE"	"Diamond Multimedia Systems|Stealth 64"
0x1092	0x9999	"unknown"	"Diamond Multimedia Systems|DMD-I0928-1 "Monster sound" sound chip"
0x1093	0x0160	"unknown"	"National Instruments|PCI-DIO-96"
0x1093	0x0162	"unknown"	"National Instruments|PCI-MIO-16XE-50"
0x1093	0x1170	"unknown"	"National Instruments|PCI-MIO-16XE-10"
0x1093	0x1180	"unknown"	"National Instruments|PCI-MIO-16E-1"
0x1093	0x1190	"unknown"	"National Instruments|PCI-MIO-16E-4"
0x1093	0x1330	"unknown"	"National Instruments|PCI-6031E"
0x1093	0x1350	"unknown"	"National Instruments|PCI-6071E"
0x1093	0x2a60	"unknown"	"National Instruments|PCI-6023E"
0x1093	0xb001	"unknown"	"National Instruments|IMAQ-PCI-1408"
0x1093	0xb011	"unknown"	"National Instruments|IMAQ-PXI-1408"
0x1093	0xb021	"unknown"	"National Instruments|IMAQ-PCI-1424"
0x1093	0xb031	"unknown"	"National Instruments|IMAQ-PCI-1413"
0x1093	0xb041	"unknown"	"National Instruments|IMAQ-PCI-1407"
0x1093	0xb051	"unknown"	"National Instruments|IMAQ-PXI-1407"
0x1093	0xb061	"unknown"	"National Instruments|IMAQ-PCI-1411"
0x1093	0xb071	"unknown"	"National Instruments|IMAQ-PCI-1422"
0x1093	0xb081	"unknown"	"National Instruments|IMAQ-PXI-1422"
0x1093	0xb091	"unknown"	"National Instruments|IMAQ-PXI-1411"
0x1093	0xc801	"unknown"	"National Instruments|PCI-GPIB"
0x1095	0x0640	"unknown"	"CMD Technology Inc|PCI0640"
0x1095	0x0641	"unknown"	"CMD Technology Inc|PCI-0640 EIDE Adapter with RAID 1"
0x1095	0x0642	"unknown"	"CMD Technology Inc|EIDE Adapter with RAID 1"
0x1095	0x0643	"unknown"	"CMD Technology Inc|PCI0643"
0x1095	0x0646	"unknown"	"CMD Technology Inc|PCI0646"
0x1095	0x0647	"unknown"	"CMD Technology Inc|PCI0647"
0x1095	0x0648	"unknown"	"CMD Technology Inc|PCI0648"
0x1095	0x0650	"unknown"	"CMD Technology Inc|PBC0650A"
0x1095	0x0670	"usb-ohci"	"CMD Technology Inc|USB0670"
0x1095	0x0673	"usb-ohci"	"CMD Technology Inc|USB0673"
0x1097	0x0038	"unknown"	"Appian Technology (ETMA)|EIDE Controller"
0x1098	0x0001	"Server:SVGA"	"Quantum Designs|QD-8500"
0x1098	0x0002	"Server:SVGA"	"Quantum Designs|QD-8580"
0x109e	0x0350	"bttv"	"Brooktree Corporation|Bt848 TV with DMA push"
0x109e	0x0351	"bttv"	"Brooktree Corporation|Bt849A Video capture"
0x109e	0x036c	"bttv"	"Brooktree Corporation|Bt879(??) Video Capture"
0x109e	0x036e	"bttv"	"Brooktree Corporation|Bt878"
0x109e	0x036f	"bttv"	"Brooktree Corporation|Bt879"
0x109e	0x0370	"unknown"	"Brooktree Corp|BtV ??? Video Capture"
0x109e	0x0878	"bttv"	"Brooktree Corporation|Bt878"
0x109e	0x0879	"bttv"	"Brooktree Corporation|BtV ??? Video Capture"
0x109e	0x0880	"bttv"	"Brooktree Corporation|BtV ??? Video Capture"
0x109e	0x2115	"unknown"	"Brooktree Corporation|BtV 2115 Mediastream controller"
0x109e	0x2125	"unknown"	"Brooktree Corporation|BtV 2125 Mediastream controller"
0x109e	0x2164	"unknown"	"Brooktree Corporation|BtV 2164"
0x109e	0x2165	"unknown"	"Brooktree Corporation|BtV 2165"
0x109e	0x8230	"unknown"	"Brooktree Corporation|Bt8230 ATM Segment/Reassembly Ctrlr (SRC)"
0x109e	0x8472	"unknown"	"Brooktree Corporation|Bt8472"
0x109e	0x8474	"unknown"	"Brooktree Corporation|Bt8474"
0x10a8	0x0000	"Card:STB Horizon"	"Sierra Semiconductor|STB Horizon 64"
0x10a9	0x0001	"unknown"	"Silicon Graphics, Inc.|Crosstalk to PCI Bridge"
0x10a9	0x0002	"unknown"	"Silicon Graphics, Inc.|Linc I/O controller"
0x10a9	0x0003	"unknown"	"Silicon Graphics|IOC3"
0x10a9	0x0004	"unknown"	"Silicon Graphics, Inc.|O2 MACE"
0x10a9	0x0005	"unknown"	"Silicon Graphics|RAD Audio"
0x10a9	0x0006	"unknown"	"Silicon Graphics, Inc.|HPCEX"
0x10a9	0x0007	"unknown"	"Silicon Graphics, Inc.|RPCEX"
0x10a9	0x0008	"unknown"	"Silicon Graphics, Inc.|DiVO VIP"
0x10a9	0x0009	"acenic"	"Silicon Graphics|Alteon Gigabit Ethernet"
0x10a9	0x0010	"unknown"	"Silicon Graphics, Inc.|AMP Video I/O"
0x10a9	0x0011	"unknown"	"Silicon Graphics, Inc.|GRIP"
0x10a9	0x0012	"unknown"	"Silicon Graphics, Inc.|SGH PSHAC GSN"
0x10a9	0x1001	"unknown"	"Silicon Graphics, Inc.|Magic Carpet"
0x10a9	0x1002	"unknown"	"Silicon Graphics, Inc.|Lithium"
0x10a9	0x1003	"unknown"	"Silicon Graphics, Inc.|Dual JPEG 1"
0x10a9	0x1004	"unknown"	"Silicon Graphics, Inc.|Dual JPEG 2"
0x10a9	0x1005	"unknown"	"Silicon Graphics, Inc.|Dual JPEG 3"
0x10a9	0x1006	"unknown"	"Silicon Graphics, Inc.|Dual JPEG 4"
0x10a9	0x1007	"unknown"	"Silicon Graphics, Inc.|Dual JPEG 5"
0x10a9	0x1008	"unknown"	"Silicon Graphics, Inc.|Cesium"
0x10a9	0x2001	"unknown"	"Silicon Graphics, Inc.|Fibre Channel"
0x10a9	0x2002	"unknown"	"Silicon Graphics, Inc.|ASDE"
0x10a9	0x8001	"unknown"	"Silicon Graphics, Inc.|O2 1394"
0x10a9	0x8002	"unknown"	"Silicon Graphics, Inc.|G-net NT"
0x10aa	0x0000	"unknown"	"ACC Microelectronics|ACCM 2188"
0x10aa	0x2051	"unknown"	"Auctor Corp/ACC Microelectronics|Laptop Chipset CPU Bridge"
0x10aa	0x5842	"unknown"	"Auctor Corp/ACC Microelectronics|Laptop Chipset ISA Bridge"
0x10ab	0x0001	"unknown"	"Winbond|W83769F"
0x10ab	0x0105	"unknown"	"Winbond|SL82C105"
0x10ab	0x0565	"unknown"	"Winbond|W83C553"
0x10ad	0x0001	"unknown"	"Symphony Labs|W83769F"
0x10ad	0x0003	"unknown"	"Symphony Labs|SL82C103"
0x10ad	0x0005	"unknown"	"Symphony Labs|SL82C105"
0x10ad	0x0103	"unknown"	"Symphony Labs|SL82c103"
0x10ad	0x0105	"unknown"	"Symphony Labs|SL82c105"
0x10ad	0x0150	"unknown"	"Symphony Labs|EIDE Controller"
0x10ad	0x0565	"unknown"	"Symphony Labs|W83C553"
0x10ae	0x0002	"unknown"	"Cornerstone Technology|Graphics Controller"
0x10af	0x0001	"unknown"	"Microcomputer Systems|IDE"
0x10b3	0x3106	"unknown"	"Databook Inc|DB87144"
0x10b3	0xb106	"i82365"	"Databook Inc|DB87144"
0x10b4	0x1b1d	"Card:STB Systems Velocity 3D"	"STB Systems Inc|Velocity 128 3D"
0x10b4	0x2636	"bttv"	"STB|???"
0x10b5	0x0001	"unknown"	"PLX Technology, Inc.|i960 PCI bus interface"
0x10b5	0x1030	"hisax"	"PLX Technology, Inc.|Gazel"
0x10b5	0x1054	"hisax"	"PLX Technology, Inc.|Gazel"
0x10b5	0x1076	"unknown"	"PLX Technology, Inc.|VScom 800 8 port serial adaptor"
0x10b5	0x1077	"unknown"	"PLX Technology, Inc.|VScom 400 4 port serial adaptor"
0x10b5	0x1151	"hisax"	"PLX Technology, Inc.|Gazel"
0x10b5	0x1152	"hisax"	"PLX Technology, Inc.|Gazel"
0x10b5	0x2bd0	"hisax"	"PLX Technology, Inc.|Gazel"
0x10b5	0x9036	"unknown"	"PLX Technology, Inc.|9036"
0x10b5	0x9050	"unknown"	"PLX Technology, Inc.|PCI <-> IOBus Bridge"
0x10b5	0x9060	"unknown"	"PLX Technology, Inc.|9060"
0x10b5	0x906d	"unknown"	"PLX Technology, Inc.|9060SD"
0x10b5	0x906e	"unknown"	"PLX Technology, Inc.|9060ES"
0x10b5	0x9080	"unknown"	"PLX Technology, Inc.|9080"
0x10b6	0x0001	"unknown"	"Madge Networks|Smart 16/4 PCI Ringnode"
0x10b6	0x0002	"unknown"	"Madge Networks|Smart 16/4 PCI Ringnode Mk2"
0x10b6	0x0003	"unknown"	"Madge Networks|Smart 16/4 PCI Ringnode Mk3"
0x10b6	0x0004	"unknown"	"Madge Networks|Smart 16/4 PCI Ringnode Mk1"
0x10b6	0x0006	"unknown"	"Madge Networks|16/4 Cardbus Adapter"
0x10b6	0x0007	"unknown"	"Madge Networks|Presto PCI Adapter"
0x10b6	0x0009	"unknown"	"Madge Networks|Smart 100/16/4 PCI-HS Ringnode"
0x10b6	0x000a	"unknown"	"Madge Networks|Smart 100/16/4 PCI Ringnode"
0x10b6	0x000b	"unknown"	"Madge Networks|16/4 CardBus Adapter Mk2"
0x10b6	0x1000	"unknown"	"Madge Networks|Collage 25 ATM Adapter"
0x10b6	0x1001	"unknown"	"Madge Networks|Collage 155 ATM Server Adapter"
0x10b7	0x0001	"acenic"	"3Com Corporation|3c985 1000BaseSX"
0x10b7	0x3390	"unknown"	"3Com Corporation|Token Link Velocity"
0x10b7	0x3590	"unknown"	"3Com Corporation|3c359 TokenLink Velocity XL"
0x10b7	0x4500	"unknown"	"3Com Corporation|3c450 Cyclone/unknown"
0x10b7	0x5055	"unknown"	"3Com Corporation|3c555 [Megahertz] 10/100 LAN CardBus"
0x10b7	0x5057	"unknown"	"3Com Corporation|3c575 [Megahertz] 10/100 LAN CardBus"
0x10b7	0x5157	"unknown"	"3Com Corporation|3c575 [Megahertz] 10/100 LAN CardBus"
0x10b7	0x5257	"unknown"	"3Com Corporation|3c575 Fast EtherLink XL"
0x10b7	0x5900	"3c59x"	"3Com Corporation|3c590 10BaseT [Vortex]"
0x10b7	0x5920	"unknown"	"3Com Corporation|3c592 EISA 10mbps Demon/Vortex"
0x10b7	0x5950	"3c59x"	"3Com Corporation|3c595 100BaseTX [Vortex]"
0x10b7	0x5951	"3c59x"	"3Com Corporation|3c595 100BaseT4 [Vortex]"
0x10b7	0x5952	"3c59x"	"3Com Corporation|3c595 100Base-MII [Vortex]"
0x10b7	0x5970	"unknown"	"3Com Corporation|3c597 EISA Fast Demon/Vortex"
0x10b7	0x6055	"3c59x"	"3Com Corporation|3c556 10/100 Mini-PCI Adapter [Cyclone]"
0x10b7	0x6550	"unknown"	"3Com Corporation|3c575 [Megahertz] 10/100 LAN CardBus"
0x10b7	0x6560	"unknown"	"3Com Corporation|3c575 [Megahertz] 10/100 LAN CardBus"
0x10b7	0x6562	"unknown"	"3Com Corporation|3CCFEM656 Cyclone CardBus"
0x10b7	0x7646	"3c59x"	"3Com Corporation|3cSOHO100-TX [Hurricane]"
0x10b7	0x8811	"unknown"	"3Com Corporation|Token ring"
0x10b7	0x9000	"3c59x"	"3Com Corporation|3c900 10BaseT [Boomerang]"
0x10b7	0x9001	"3c59x"	"3Com Corporation|3c900 Combo [Boomerang]"
0x10b7	0x9004	"3c59x"	"3Com Corporation|3c900B-TPO [Etherlink XL TPO]"
0x10b7	0x9005	"3c59x"	"3Com Corporation|3c900B-Combo [Etherlink XL Combo]"
0x10b7	0x9006	"3c59x"	"3Com Corporation|3c900B-TPC [Etherlink XL TPC]"
0x10b7	0x900a	"3c59x"	"3Com Corporation|3c900B-FL [Etherlink XL FL]"
0x10b7	0x9050	"3c59x"	"3Com Corporation|3c905 100BaseTX [Boomerang]"
0x10b7	0x9051	"3c59x"	"3Com Corporation|3c905 100BaseT4"
0x10b7	0x9055	"3c59x"	"3Com Corporation|3c905B 100BaseTX [Cyclone]"
0x10b7	0x9058	"3c59x"	"3Com Corporation|3c905B-Combo [Deluxe Etherlink XL 10/100]"
0x10b7	0x905a	"3c59x"	"3Com Corporation|3c905B-FX [Fast Etherlink XL FX 10/100]"
0x10b7	0x9200	"3c59x"	"3Com Corporation|3c905C-TX [Fast Etherlink]"
0x10b7	0x9800	"3c59x"	"3Com Corporation|3c980-TX [Fast Etherlink XL Server Adapter]"
0x10b7	0x9805	"3c90x"	"3Com Corporation|3c980-TX [Fast Etherlink XL Server Adapter]"
0x10b8	0x0005	"epic100"	"Standard Microsystems Corp [SMC]|83C170QF"
0x10b8	0x0006	"epic100"	"Standard Microsystems Corp [SMC]|LANEPIC"
0x10b8	0x1000	"unknown"	"Standard Microsystems Corp [SMC]|FDC 37c665"
0x10b8	0x1001	"unknown"	"Standard Microsystems Corp [SMC]|FDC 37C922"
0x10b8	0xa011	"unknown"	"Standard Microsystems Corp [SMC]|83C170QF"
0x10b8	0xb106	"unknown"	"Standard Microsystems Corp [SMC]|SMC34C90"
0x10b9	0x0111	"unknown"	"Acer Laboratories Inc. [ALi]|C-Media CMI8738/C3DX Audio Device (OEM)"
0x10b9	0x1435	"unknown"	"Acer Laboratories Inc. [ALi]|M1435"
0x10b9	0x1445	"unknown"	"Acer Laboratories Inc. [ALi]|M1445"
0x10b9	0x1449	"unknown"	"Acer Laboratories Inc. [ALi]|M1449"
0x10b9	0x1451	"unknown"	"Acer Laboratories Inc. [ALi]|M1451"
0x10b9	0x1461	"unknown"	"Acer Laboratories Inc. [ALi]|M1461"
0x10b9	0x1489	"unknown"	"Acer Laboratories Inc. [ALi]|M1489"
0x10b9	0x1511	"unknown"	"Acer Laboratories Inc. [ALi]|M1511 [Aladdin]"
0x10b9	0x1512	"unknown"	"Acer Laboratories Inc. [ALi]|M1512 [Aladdin]"
0x10b9	0x1513	"unknown"	"Acer Laboratories Inc. [ALi]|M1513 [Aladdin]"
0x10b9	0x1521	"unknown"	"Acer Laboratories Inc. [ALi]|M1521 [Aladdin III]"
0x10b9	0x1523	"unknown"	"Acer Laboratories Inc. [ALi]|M1523"
0x10b9	0x1531	"unknown"	"Acer Laboratories Inc. [ALi]|M1531 [Aladdin IV]"
0x10b9	0x1533	"unknown"	"Acer Laboratories Inc. [ALi]|M1533 PCI to ISA Bridge [Aladdin IV]"
0x10b9	0x1541	"unknown"	"Acer Laboratories Inc. [ALi]|M1541"
0x10b9	0x1543	"unknown"	"Acer Laboratories Inc. [ALi]|M1543"
0x10b9	0x1621	"unknown"	"Acer Laboratories Inc. [ALi]|M1621"
0x10b9	0x1631	"unknown"	"Acer Laboratories Inc. [ALi]|ALI M1631 PCI North Bridge Aladdin Pro III"
0x10b9	0x1641	"unknown"	"Acer Laboratories Inc. [ALi]|ALI M1641 PCI North Bridge Aladdin Pro IV"
0x10b9	0x3141	"unknown"	"Acer Laboratories Inc. [ALi]|M3141"
0x10b9	0x3143	"unknown"	"Acer Laboratories Inc. [ALi]|M3143"
0x10b9	0x3145	"unknown"	"Acer Laboratories Inc. [ALi]|M3145"
0x10b9	0x3147	"unknown"	"Acer Laboratories Inc. [ALi]|M3147"
0x10b9	0x3149	"unknown"	"Acer Laboratories Inc. [ALi]|M3149"
0x10b9	0x3151	"unknown"	"Acer Laboratories Inc. [ALi]|M3151"
0x10b9	0x3307	"unknown"	"Acer Laboratories Inc. [ALi]|M3307"
0x10b9	0x3309	"unknown"	"Acer Laboratories Inc. [ALi]|M3309"
0x10b9	0x5212	"unknown"	"Acer Laboratories Inc. [ALi]|M4803"
0x10b9	0x5215	"unknown"	"Acer Laboratories Inc. [ALi]|MS4803"
0x10b9	0x5217	"unknown"	"Acer Laboratories Inc. [ALi]|M5217H"
0x10b9	0x5219	"unknown"	"Acer Laboratories Inc. [ALi]|M5219"
0x10b9	0x5225	"unknown"	"Acer Laboratories Inc. [ALi]|M5225"
0x10b9	0x5229	"unknown"	"Acer Laboratories Inc. [ALi]|M5229 IDE"
0x10b9	0x5235	"unknown"	"Acer Laboratories Inc. [ALi]|M5225"
0x10b9	0x5237	"usb-ohci"	"Acer Laboratories Inc. [ALi]|M5237 (USB)"
0x10b9	0x5240	"unknown"	"Acer Labs Incorporated (ALI)|EIDE Controller"
0x10b9	0x5241	"unknown"	"Acer Labs Incorporated (ALI)|PCMCIA Bridge"
0x10b9	0x5242	"unknown"	"Acer Labs Incorporated (ALI)|General Purpose Controller"
0x10b9	0x5243	"unknown"	"Acer Laboratories Inc. [ALi]|M5243"
0x10b9	0x5244	"unknown"	"Acer Labs Incorporated (ALI)|Floppy Disk Controller"
0x10b9	0x5247	"unknown"	"Acer Laboratories Inc. [ALi]|M5247"
0x10b9	0x5451	"trident"	"Acer Laboratories Inc. [ALi]|M5451 PCI South Bridge Audio"
0x10b9	0x7101	"unknown"	"Acer Laboratories Inc. [ALi]|M7101 PMU"
0x10ba	0x0301	"unknown"	"Mitsubishi Electric Corp.|AccelGraphics AccelECLIPSE"
0x10bd	0x0e34	"ne2k-pci"	"Surecom Technology|NE-34PCI LAN"
0x10bd	0x5240	"unknown"	"Surecom Technology|EIDE Controller"
0x10bd	0x5241	"unknown"	"Surecom Technology|PCMCIA Bridge"
0x10bd	0x5242	"unknown"	"Surecom Technology|General Purpose Controller"
0x10bd	0x5243	"unknown"	"Surecom Technology|Bus Controller"
0x10bd	0x5244	"unknown"	"Surecom Technology|Floppy Disk Controller"
0x10c3	0x1100	"eepro100"	"Samsung Semiconductors, Inc.|Smartether100 SC1100 LAN Adapter (i82557B)"
0x10c8	0x0000	"unknown"	"Neomagic Corp|Graphics Controller"
0x10c8	0x0001	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|NM2070 [MagicGraph NM2070]"
0x10c8	0x0002	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|NM2090 [MagicGraph 128V]"
0x10c8	0x0003	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|NM2093 [MagicGraph 128ZV]"
0x10c8	0x0004	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|NM2160 [MagicGraph 128XD]"
0x10c8	0x0005	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|[MagicGraph 256AV]"
0x10c8	0x0006	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|NM2360 [MagicMedia 256ZX]"
0x10c8	0x0016	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|[MagicMedia 256XL+]"
0x10c8	0x0025	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|[MagicMedia 256AV+]"
0x10c8	0x0083	"Card:NeoMagic (laptop/notebook)"	"Neomagic Corporation|[MagicGraph 128ZV Plus]"
0x10c8	0x8005	"nm256"	"Neomagic Corporation|[MagicMedia 256AV]"
0x10c8	0x8006	"nm256"	"Neomagic Corporation|[MagicMedia 256AV]"
0x10cc	0x0226	"unknown"	"Mentor Arc Inc|PCI/ISA Bridge"
0x10cc	0x0257	"unknown"	"Mentor Arc Inc|Host/PCI Bridge"
0x10cd	0x1100	"unknown"	"Advanced System Products|ASC1100"
0x10cd	0x1200	"advansys"	"Advanced System Products|ASC1200 [(abp940) Fast SCSI-II]"
0x10cd	0x1300	"advansys"	"Advanced System Products|ABP940-U / ABP960-U"
0x10cd	0x2300	"advansys"	"Advanced System Products|ABP940-UW"
0x10cf	0x2001	"unknown"	"Citicorp TTI|mb86605"
0x10d9	0x0512	"tulip"	"Macronix, Inc. [MXIC]|MX98713"
0x10d9	0x0531	"tulip"	"Macronix, Inc. [MXIC]|MX987x5"
0x10d9	0x8625	"tulip"	"Macronix, Inc. [MXIC]|MX86250"
0x10d9	0x8888	"unknown"	"Macronix, Inc. [MXIC]|MX86200"
0x10da	0x0508	"unknown"	"Compaq IPG-Austin|TC4048 Token Ring 4/16"
0x10da	0x3390	"unknown"	"Compaq IPG-Austin|Tl3c3x9"
0x10dc	0x0001	"unknown"	"CERN/ECP/EDU|STAR/RD24 SCI-PCI (PMC)"
0x10dc	0x0002	"unknown"	"CERN/ECP/EDU|TAR/RD24 SCI-PCI (PMC) [ATT 2C15-3 (FPGA) SCI bridge on PCI 5 Volt card]"
0x10dc	0x0021	"unknown"	"CERN/ECP/EDU|HIPPI destination"
0x10dc	0x0022	"unknown"	"CERN/ECP/EDU|HIPPI source"
0x10dc	0x10dc	"unknown"	"CERN/ECP/EDU|ATT2C15-3 FPGA"
0x10dd	0x0001	"unknown"	"Evans & Sutherland|3D Graphics Processor (?? Freedom GBbus??)"
0x10de	0x0008	"Card:Diamond Edge 3D"	"nVidia Corporation|NV1 EDGE 3D"
0x10de	0x0009	"Card:Diamond Edge 3D"	"nVidia Corporation|NV1 EDGE 3D"
0x10de	0x0010	"unknown"	"nVidia Corporation|Mutara V08 [NV2]"
0x10de	0x0020	"Card:RIVA128"	"nVidia Corporation|Riva TNT 128"
0x10de	0x0028	"Card:RIVA TNT2"	"nVidia Corporation|Riva TNT2"
0x10de	0x0029	"Card:RIVA TNT2"	"nVidia Corporation|Riva TNT2 Ultra"
0x10de	0x002a	"Card:RIVA TNT2"	"nVidia Corporation|Riva TnT2 [NV5]"
0x10de	0x002b	"Card:RIVA TNT2"	"nVidia Corporation|Riva TnT2 [NV5]"
0x10de	0x002c	"Card:RIVA TNT2"	"nVidia Corporation|Vanta"
0x10de	0x002d	"Card:RIVA TNT2"	"nVidia Corporation|Riva TNT2 Model 64"
0x10de	0x002e	"Card:RIVA TNT2"	"nVidia Corporation|Vanta [NV6]"
0x10de	0x002f	"Card:RIVA TNT2"	"nVidia Corporation|Vanta [NV6]"
0x10de	0x00a0	"Card:RIVA TNT2"	"nVidia Corporation|Riva TNT2"
0x10de	0x0100	"Card:NVIDIA GeForce 256 (generic)"	"nVidia Corporation|GeForce 256"
0x10de	0x0101	"Card:NVIDIA GeForce 256 (generic)"	"nVidia Corporation|GeForce 256"
0x10de	0x0103	"Card:NVIDIA GeForce 256 (generic)"	"nVidia Corporation|Quadro"
0x10de	0x0110	"Card:NVIDIA GeForce2 DDR (generic)"	"nVidia Corporation|NV11"
0x10de	0x0111	"Card:NVIDIA GeForce2 DDR (generic)"	"nVidia Corporation|NV11 DDR"
0x10de	0x0113	"Card:NVIDIA GeForce2 DDR (generic)"	"nVidia Corporation|NV11 GL"
0x10de	0x0150	"Card:NVIDIA GeForce2 DDR (generic)"	"nVidia Corporation|NV15 (Geforce2 GTS)"
0x10de	0x0151	"Card:NVIDIA GeForce2 DDR (generic)"	"nVidia Corporation|NV15 DDR (Geforce2 GTS)"
0x10de	0x0152	"Card:NVIDIA GeForce2 DDR (generic)"	"nVidia Corporation|NV15 Bladerunner (Geforce2 GTS)"
0x10de	0x0153	"Card:NVIDIA GeForce2 DDR (generic)"	"nVidia Corporation|NV15 GL (Quadro2)"
0x10df	0x10df	"unknown"	"Emulex Corporation|Light Pulse Fibre Channel Adapter"
0x10df	0x1ae5	"unknown"	"Emulex Corporation|LP6000 Fibre Channel Host Adapter"
0x10df	0xf700	"unknown"	"Emulex Corporation|LP7000 Fibre Channel Host Adapter"
0x10e0	0x5026	"unknown"	"Integrated Micro|IMS5026/27/28"
0x10e0	0x5027	"unknown"	"Integrated Micro|IMS5027"
0x10e0	0x5028	"unknown"	"Integrated Micro|IMS5028"
0x10e0	0x8849	"unknown"	"Integrated Micro|IMS8849"
0x10e0	0x8853	"unknown"	"Integrated Micro|IMS8853"
0x10e0	0x9128	"unknown"	"Integrated Micro|IMS9129 [Twin turbo 128]"
0x10e1	0x0391	"unknown"	"Tekram|TRM-S1040"
0x10e1	0x690c	"unknown"	"Tekram|DC-690c"
0x10e1	0xdc29	"unknown"	"Tekram|DC-290"
0x10e3	0x0000	"Server:SVGA"	"Tundra Semiconductor Corp.|CA91C042 [Universe]"
0x10e3	0x0860	"unknown"	"Tundra Semiconductor Corp.|CA91C860 [QSpan]"
0x10e8	0x2011	"unknown"	"Applied Micro|Q-Motion Video Capture/Edit board"
0x10e8	0x4750	"unknown"	"Applied Micro|S5930 [Matchmaker]"
0x10e8	0x5920	"unknown"	"Applied Micro|S5920"
0x10e8	0x8043	"unknown"	"Applied Micro|LANai4.x [Myrinet LANai interface chip]"
0x10e8	0x8062	"unknown"	"Applied Micro|S5933_PARASTATION"
0x10e8	0x807d	"unknown"	"Applied Micro|S5933 [Matchmaker]"
0x10e8	0x8088	"unknown"	"Applied Micro|Kingsberg Spacetec Format Synchronizer"
0x10e8	0x8089	"unknown"	"Applied Micro|Kingsberg Spacetec Serial Output Board"
0x10e8	0x809c	"unknown"	"Applied Micro|S5933_HEPC3"
0x10e8	0x80d7	"unknown"	"Applied Micro|PCI-9112"
0x10e8	0x80d9	"unknown"	"Applied Micro|PCI-9118"
0x10e8	0x80da	"unknown"	"Applied Micro|PCI-9812"
0x10e8	0x811a	"unknown"	"Applied Micro|PCI-IEEE1355-DS-DE Interface"
0x10e8	0x8170	"unknown"	"Applied Micro|S5933 "Matchmaker" PCI Chipset Development Tool"
0x10ea	0x1680	"Server:SVGA"	"Intergraphics Systems|IGA-1680"
0x10ea	0x1682	"Server:SVGA"	"Intergraphics Systems|IGA-1682"
0x10ea	0x1683	"unknown"	"Intergraphics Systems|IGA-1683"
0x10ea	0x2000	"unknown"	"Intergraphics Systems|CyberPro 2000"
0x10ea	0x2010	"unknown"	"Intergraphics Systems|CyberPro 2000A"
0x10ea	0x5000	"unknown"	"Intergraphics Systems|CyberPro 5000"
0x10ea	0x5050	"unknown"	"Intergraphics Systems|CyberPro 5050"
0x10eb	0x0101	"unknown"	"Artists Graphics|3GA"
0x10eb	0x8111	"unknown"	"Artists Graphics|Twist3 Frame Grabber"
0x10ec	0x8029	"ne2k-pci"	"Realtek|RTL-8029(AS)"
0x10ec	0x8129	"rtl8139"	"Realtek|RTL-8129"
0x10ec	0x8138	"8139too"	"Realtek|RT8139 (B/C) Cardbus Fast Ethernet Adapter"
0x10ec	0x8139	"8139too"	"Realtek|RTL-8139"
0x10ed	0x7310	"unknown"	"Ascii Corporation|V7310"
0x10ee	0x3fc0	"snd-card-rme96"	"Xilinx, Inc.|RME Digi96"
0x10ee	0x3fc1	"snd-card-rme96"	"Xilinx, Inc.|RME Digi96/8"
0x10ee	0x3fc2	"snd-card-rme96"	"Xilinx, Inc.|RME Digi96/8 Pro"
0x10ee	0x3fc3	"snd-card-rme96"	"Xilinx, Inc.|RME Digi96/8 Pad"
0x10ef	0x8154	"unknown"	"Racore Computer Products, Inc.|M815x Token Ring Adapter"
0x10f1	0x1566	"unknown"	"Tyan Computer|IDE/SCSI"
0x10f1	0x1677	"unknown"	"Tyan Computer|Multimedia"
0x10f5	0xa001	"unknown"	"NKK Corporation|NDR4000 [NR4600 Bridge]"
0x10fa	0x0000	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0001	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0002	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0003	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0004	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0005	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0006	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0007	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0008	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0009	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x000a	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x000b	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x000c	"unknown"	"Truevision|TARGA 1000"
0x10fa	0x000d	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x000e	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x000f	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0010	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0011	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0012	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0013	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0014	"unknown"	"TrueVision|GUI Accelerator"
0x10fa	0x0015	"unknown"	"TrueVision|GUI Accelerator"
0x1101	0x0002	"initio"	"Initio Corporation|Ultra SCSI Adapter"
0x1101	0x1060	"initio"	"Initio Corporation|INI-A100U2W"
0x1101	0x134a	"initio"	"Initio Corporation|Ultra SCSI Adapter"
0x1101	0x9100	"initio"	"Initio Corporation|INI-9100/9100W"
0x1101	0x9400	"initio"	"Initio Corporation|INI-940"
0x1101	0x9401	"initio"	"Initio Corporation|INI-950"
0x1101	0x9500	"initio"	"Initio Corporation|360P"
0x1101	0x9700	"initio"	"Initio Corp|Fast Wide SCSI Controller"
0x1102	0x0002	"emu10k1"	"Creative Labs|SB Live! (audio)"
0x1102	0x7002	"unknown"	"Creative Labs|SB Live! (joystick)"
0x1102	0x8938	"snd-card-ens1371"	"Creative Labs|ES1371"
0x1103	0x0003	"unknown"	"Triones|HPT343"
0x1103	0x0004	"unknown"	"Triones|HPT366"
0x1105	0x5000	"unknown"	"Sigma Designs Inc|Multimedia"
0x1105	0x8300	"unknown"	"Sigma Designs, Inc.|REALmagic Hollywood Plus DVD Decoder"
0x1106	0x0391	"unknown"	"VIA Technologies|VT8371 [KX133]"
0x1106	0x0501	"agpgart"	"VIA Technologies|VT8501"
0x1106	0x0505	"unknown"	"VIA Technologies|VT82C505"
0x1106	0x0561	"unknown"	"VIA Technologies|VT82C561"
0x1106	0x0571	"unknown"	"VIA Technologies|VT82C586 IDE [Apollo]"
0x1106	0x0576	"unknown"	"VIA Technologies|VT82C576 3V [Apollo Master]"
0x1106	0x0585	"unknown"	"VIA Technologies|VT82C585VP [Apollo VP1/VPX]"
0x1106	0x0586	"unknown"	"VIA Technologies|VT82C586/A/B PCI-to-ISA [Apollo VP]"
0x1106	0x0595	"unknown"	"VIA Technologies|VT82C595 [Apollo VP2]"
0x1106	0x0596	"unknown"	"VIA Technologies|VT82C596 ISA [Apollo PRO]"
0x1106	0x0597	"agpgart"	"VIA Technologies|VT82C597 [Apollo VP3]"
0x1106	0x0598	"agpgart"	"VIA Technologies|VT82C598 [Apollo MVP3]"
0x1106	0x0601	"unknown"	"VIA Technologies|VT8601"
0x1106	0x0680	"unknown"	"VIA Technologies|VT82C680 [Apollo P6]"
0x1106	0x0686	"unknown"	"VIA Technologies|VT82C686 [Apollo Super]"
0x1106	0x0691	"agpgart"	"VIA Technologies|VT82C691 [Apollo PRO]"
0x1106	0x0693	"unknown"	"VIA Technologies|VT82C693 [Apollo Pro Plus]"
0x1106	0x0926	"ne2k-pci"	"VIA Technologies|VT82C926 [Amazon]"
0x1106	0x1000	"unknown"	"VIA Technologies|VT82C570MV"
0x1106	0x1106	"unknown"	"VIA Technologies|VT82C570MV"
0x1106	0x1571	"unknown"	"VIA Technologies|VT82C416MV"
0x1106	0x1595	"unknown"	"VIA Technologies|VT82C595/97 [Apollo VP2/97]"
0x1106	0x3038	"usb-uhci"	"VIA Technologies|VT82C586B USB"
0x1106	0x3040	"unknown"	"VIA Technologies|VT82C586B ACPI"
0x1106	0x3043	"via-rhine"	"VIA Technologies|VT86C100A [Rhine 10/100]"
0x1106	0x3044	"unknown"	"VIA Technologies|OHCI Compliant IEEE 1394 Host Controller"
0x1106	0x3050	"unknown"	"VIA Technologies Inc|Power Management Controller"
0x1106	0x3051	"unknown"	"VIA Technologies Inc|Power Management Controller"
0x1106	0x3057	"unknown"	"VIA Technologies|VT82C686 [Apollo Super ACPI]"
0x1106	0x3058	"via82cxxx_audio"	"VIA Technologies|VT82C686 [Apollo Super AC97/Audio]"
0x1106	0x3065	"via-rhine"	"VIA Technologies|VT82C100A [Rhine 10/100]"
0x1106	0x3068	"unknown"	"VIA Technologies|VT82C686 [Apollo Super AC97/Modem]"
0x1106	0x5030	"unknown"	"VIA Technologies|VT82C596 ACPI [Apollo PRO]"
0x1106	0x6100	"via-rhine"	"VIA Technologies|VT85C100A [Rhine II]"
0x1106	0x8231	"unknown"	"VIA Technologies|VT8231 [PCI-to-ISA Bridge]"
0x1106	0x8391	"unknown"	"VIA Technologies|VT8371 [PCI-PCI Bridge]"
0x1106	0x8501	"unknown"	"VIA Technologies|VT8501"
0x1106	0x8596	"unknown"	"VIA Technologies|VT82C596 [Apollo PRO AGP]"
0x1106	0x8597	"unknown"	"VIA Technologies|VT82C597 [Apollo VP3 AGP]"
0x1106	0x8598	"unknown"	"VIA Technologies|VT82C598 [Apollo MVP3 AGP]"
0x1106	0x8601	"unknown"	"VIA Technologies|VT8601"
0x1106	0x8691	"unknown"	"VIA Technologies|VT82C691 [Apollo Pro]"
0x1107	0x0576	"unknown"	"Stratus Computers|VIA VT82C570MV [Apollo] (Wrong vendor ID!)"
0x1107	0x8576	"unknown"	"Stratus Computer|PCI Host Bridge"
0x1108	0x0100	"unknown"	"Proteon, Inc.|p1690plus_AA"
0x1108	0x0101	"unknown"	"Proteon, Inc.|p1690plus_AB"
0x1108	0x0105	"unknown"	"Proteon, Inc.|P1690Plus"
0x1108	0x0108	"unknown"	"Proteon, Inc.|P1690Plus"
0x1108	0x0138	"unknown"	"Proteon, Inc.|P1690Plus"
0x1108	0x0139	"unknown"	"Proteon, Inc.|P1690Plus"
0x1108	0x013c	"unknown"	"Proteon, Inc.|P1690Plus"
0x1108	0x013d	"unknown"	"Proteon, Inc.|P1690Plus"
0x1109	0x1400	"unknown"	"Cogent Data|EM110TX [EX110TX]"
0x110a	0x0002	"unknown"	"Siemens Nixdorf AG|Pirahna 2-port"
0x110a	0x0005	"unknown"	"Siemens Nixdorf AG|Tulip controller, power management, switch extender"
0x110a	0x4942	"unknown"	"Siemens Nixdorf AG|FPGA I-Bus Tracer for MBD"
0x110a	0x6120	"unknown"	"Siemens Nixdorf AG|SZB6120"
0x110b	0x0001	"unknown"	"Chromatic Research Inc.|Mpact Media Processor"
0x1110	0x6037	"unknown"	"Powerhouse Systems|Firepower Powerized SMP I/O ASIC"
0x1110	0x6073	"unknown"	"Powerhouse Systems|Firepower Powerized SMP I/O ASIC"
0x1112	0x2200	"unknown"	"RNS - Div. of Meret Communications Inc|FDDI Adapter"
0x1112	0x2300	"unknown"	"Rockwell International|Fast Ethernet Adapter"
0x1112	0x2340	"unknown"	"RNS - Div. of Meret Communications Inc|4 Port Fast Ethernet Adapter"
0x1112	0x2400	"unknown"	"RNS - Div. of Meret Communications Inc|ATM Adapter"
0x1113	0x1211	"8139too"	"Accton|SMC2-1211TX"
0x1113	0x1217	"unknown"	"Accton|EN-1217 Ethernet Adapter"
0x1113	0x5105	"unknown"	"Accton|10Mbps Network card"
0x1113	0x9211	"unknown"	"Accton|EN-1207D Fast Ethernet Adapter"
0x1116	0x0022	"unknown"	"Data Translation|DT3001"
0x1116	0x0023	"unknown"	"Data Translation|DT3002"
0x1116	0x0024	"unknown"	"Data Translation|DT3003"
0x1116	0x0025	"unknown"	"Data Translation|DT3004"
0x1116	0x0026	"unknown"	"Data Translation|DT3005"
0x1116	0x0027	"unknown"	"Data Translation|DT3001-PGL"
0x1116	0x0028	"unknown"	"Data Translation|DT3003-PGL"
0x1117	0x9500	"unknown"	"Datacube, Inc|Max-1C SVGA card"
0x1117	0x9501	"unknown"	"Datacube, Inc|Max-1C image processing"
0x1118	0x153b	"bttv"	"Terratec|TV Value"
0x1119	0x0000	"gdth"	"ICP Vortex|GDT 6000/6020/6050"
0x1119	0x0001	"gdth"	"ICP Vortex|GDT 6000b/6010"
0x1119	0x0002	"gdth"	"ICP Vortex|GDT 6110/6510"
0x1119	0x0003	"gdth"	"ICP Vortex|GDT 6120/6520"
0x1119	0x0004	"gdth"	"ICP Vortex|GDT 6530"
0x1119	0x0005	"gdth"	"ICP Vortex|GDT 6550"
0x1119	0x0006	"gdth"	"ICP Vortex|GDT 6x17"
0x1119	0x0007	"gdth"	"ICP Vortex|GDT 6x27"
0x1119	0x0008	"gdth"	"ICP Vortex|GDT 6537"
0x1119	0x0009	"gdth"	"ICP Vortex|GDT 5557"
0x1119	0x000a	"gdth"	"ICP Vortex|GDT 6x15"
0x1119	0x000b	"gdth"	"ICP Vortex|GDT 6x25"
0x1119	0x000c	"gdth"	"ICP Vortex|GDT 6535"
0x1119	0x000d	"gdth"	"ICP Vortex|GDT 6555"
0x1119	0x0100	"gdth"	"ICP Vortex|GDT 6117RP/6517RP"
0x1119	0x0101	"gdth"	"ICP Vortex|GDT 6127RP/6527RP"
0x1119	0x0102	"gdth"	"ICP Vortex|GDT 6537RP"
0x1119	0x0103	"gdth"	"ICP Vortex|GDT 6557RP"
0x1119	0x0104	"gdth"	"ICP Vortex|GDT 6111RP/6511RP"
0x1119	0x0105	"gdth"	"ICP Vortex|GDT 6121RP/6521RP"
0x1119	0x0110	"gdth"	"ICP Vortex|GDT 6117RP1/6517RP1"
0x1119	0x0111	"gdth"	"ICP Vortex|GDT 6127RP1/6527RP1"
0x1119	0x0112	"gdth"	"ICP Vortex|GDT 6537RP1"
0x1119	0x0113	"gdth"	"ICP Vortex|GDT 6557RP1"
0x1119	0x0114	"gdth"	"ICP Vortex|GDT 6111RP1/6511RP1"
0x1119	0x0115	"gdth"	"ICP Vortex|GDT 6121RP1/6521RP1"
0x1119	0x0118	"gdth"	"ICP Vortex|GDT 6x18RD"
0x1119	0x0119	"gdth"	"ICP Vortex|GDT 6x28RD"
0x1119	0x011a	"gdth"	"ICP Vortex|GDT 6x38RD"
0x1119	0x011b	"gdth"	"ICP Vortex|GDT 6x58RD"
0x1119	0x0120	"gdth"	"ICP Vortex|GDT 6117RP2/6517RP2"
0x1119	0x0121	"gdth"	"ICP Vortex|GDT 6127RP2/6527RP2"
0x1119	0x0122	"gdth"	"ICP Vortex|GDT 6537RP2"
0x1119	0x0123	"gdth"	"ICP Vortex|GDT 6557RP2"
0x1119	0x0124	"gdth"	"ICP Vortex|GDT 6111RP2/6511RP2"
0x1119	0x0125	"gdth"	"ICP Vortex|GDT 6121RP2/6521RP2"
0x1119	0x0138	"gdth"	"ICP Raid Controller|GDT 6118RS/6518RS/6618RS"
0x1119	0x0139	"gdth"	"ICP Raid Controller|GDT 6128RS/6528RS/6628RS"
0x1119	0x013a	"gdth"	"ICP Raid Controller|GDT 6538RS/6638RS"
0x1119	0x013b	"gdth"	"ICP Raid Controller|GDT 6558RS/6658RS"
0x1119	0x0166	"gdth"	"ICP Raid Controller|GDT 7113RN/7513RN/7613RN"
0x1119	0x0167	"gdth"	"ICP Raid Controller|GDT 7123RN/7523RN/7623RN"
0x1119	0x0168	"gdth"	"ICP Vortex|GDT 7x18RN"
0x1119	0x0169	"gdth"	"ICP Vortex|GDT 7x28RN"
0x1119	0x016a	"gdth"	"ICP Vortex|GDT 7x38RN"
0x1119	0x016b	"gdth"	"ICP Vortex|GDT 7x58RN"
0x1119	0x016c	"gdth"	"ICP Raid Controller|GDT 7533RN/7633RN"
0x1119	0x016d	"gdth"	"ICP Raid Controller|GDT 7543RN/7643RN"
0x1119	0x016e	"gdth"	"ICP Raid Controller|GDT 7553RN/7653RN"
0x1119	0x016f	"gdth"	"ICP Raid Controller|GDT 7563RN/7663RN"
0x1119	0x0210	"gdth"	"ICP Vortex|GDT 6x19RD"
0x1119	0x0211	"gdth"	"ICP Vortex|GDT 6x29RD"
0x1119	0x0260	"gdth"	"ICP Vortex|GDT 7x19RN"
0x1119	0x0261	"gdth"	"ICP Vortex|GDT 7x29RN"
0x111a	0x0000	"unknown"	"Efficient Networks, Inc|155P-MF1 (FPGA)"
0x111a	0x0002	"unknown"	"Efficient Networks, Inc|155P-MF1 (ASIC)"
0x111a	0x0003	"unknown"	"Efficient Networks, Inc|ENI-25P ATM Adapter"
0x111a	0x0005	"unknown"	"Efficient Networks, Inc|ENI-25P ATM Adapter"
0x111c	0x0001	"unknown"	"Tricord Systems Inc.|Powerbis Bridge"
0x111d	0x0001	"unknown"	"Integrated Device Tech|IDT77211 ATM Adapter"
0x111f	0x4a47	"unknown"	"Precision Digital Images|Precision MX Video engine interface"
0x111f	0x5243	"unknown"	"Precision Digital Images|Frame capture bus interface"
0x1123	0x153b	"bttv"	"Terratec|TV/Radio+"
0x1127	0x0200	"unknown"	"FORE Systems Inc|ForeRunner PCA-200 ATM"
0x1127	0x0210	"unknown"	"FORE Systems Inc|PCA-200PC"
0x1127	0x0250	"unknown"	"FORE Systems Inc|ATM"
0x1127	0x0300	"unknown"	"FORE Systems Inc|PCA-200E"
0x1127	0x0310	"unknown"	"FORE Systems Inc|ATM"
0x1127	0x0400	"unknown"	"FORE Systems Inc|ForeRunnerHE ATM Adapter"
0x112e	0x0000	"unknown"	"Infomedia Microelectronics|Enhanced IDE Controller"
0x112e	0x000b	"unknown"	"Infomedia Microelectronics|Enhanced IDE Controller"
0x112f	0x0000	"unknown"	"Imaging Technology Inc|MVC IC-PCI"
0x112f	0x0001	"unknown"	"Imaging Technology Inc|MVC IM-PCI Video frame grabber/processor"
0x1131	0x7145	"unknown"	"Philips Semiconductors|SAA7145"
0x1131	0x7146	"unknown"	"Philips Semiconductors|SAA7146"
0x1133	0x7901	"unknown"	"Eicon|EiconCard S90"
0x1133	0x7902	"unknown"	"Eicon|EiconCard S90"
0x1133	0x7911	"unknown"	"Eicon|EiconCard S91"
0x1133	0x7912	"unknown"	"Eicon|EiconCard S91"
0x1133	0x7941	"unknown"	"Eicon|EiconCard S94"
0x1133	0x7942	"unknown"	"Eicon|EiconCard S94"
0x1133	0xb921	"unknown"	"Eicon|EiconCard P92"
0x1133	0xb922	"unknown"	"Eicon|EiconCard P92"
0x1133	0xe001	"hisax"	"Eicon|DIVA 20PRO"
0x1133	0xe002	"hisax"	"Eicon|DIVA 20"
0x1133	0xe003	"hisax"	"Eicon|DIVA 20PRO_U"
0x1133	0xe004	"hisax"	"Eicon|DIVA 20_U"
0x1133	0xe005	"hisax"	"Eicon|ISDN Controller"
0x1133	0xe010	"unknown"	"Eicon|DIVA Server BRI-2M"
0x1133	0xe014	"unknown"	"Eicon|DIVA Server PRO-30M"
0x1134	0x0001	"unknown"	"Mercury Computer Systems|Raceway Bridge"
0x1135	0x0001	"unknown"	"Fuji Xerox Co Ltd|Printer controller"
0x1138	0x8905	"unknown"	"Ziatech Corporation|8905 [STD 32 Bridge]"
0x1139	0x0001	"unknown"	"Dynamic Pictures Inc|VGA Compatable 3D Graphics"
0x113c	0x0000	"unknown"	"Cyclone Microsystems, Inc.|PCI-9060 i960 Bridge"
0x113c	0x0001	"unknown"	"Cyclone Microsystems, Inc.|PCI-SDK [PCI i960 Evaluation Platform]"
0x113c	0x0911	"unknown"	"Cyclone Microsystems, Inc.|PCI-911 [PCI-based i960Jx Intelligent I/O Controller]"
0x113c	0x0912	"unknown"	"Cyclone Microsystems, Inc.|PCI-912 [i960CF-based Intelligent I/O Controller]"
0x113c	0x0913	"unknown"	"Cyclone Microsystems, Inc.|PCI-913"
0x113c	0x0914	"unknown"	"Cyclone Microsystems, Inc.|PCI-914 [I/O Controller w/ secondary PCI bus]"
0x113f	0x0808	"unknown"	"Equinox Systems, Inc.|SST-64P Adapter"
0x113f	0x1010	"unknown"	"Equinox Systems, Inc.|SST-128P Adapter"
0x113f	0x80c0	"unknown"	"Equinox Systems, Inc.|SST-16P Adapter"
0x113f	0x80c4	"unknown"	"Equinox Systems, Inc.|SST-16P Adapter"
0x113f	0x80c8	"unknown"	"Equinox Systems, Inc.|SST-16P Adapter"
0x113f	0x8888	"unknown"	"Equinox Systems, Inc.|SST-4P Adapter"
0x113f	0x9090	"unknown"	"Equinox Systems, Inc.|SST-8P Adapter"
0x1141	0x0001	"unknown"	"Crest Microsystem Inc|EIDE"
0x1142	0x3210	"unknown"	"Alliance|AP6410"
0x1142	0x6410	"unknown"	"Alliance Semiconductor|GUI Accelerator"
0x1142	0x6412	"unknown"	"Alliance Semiconductor|GUI Accelerator"
0x1142	0x6420	"unknown"	"Alliance Semiconductor|GUI Accelerator"
0x1142	0x6422	"Card:Alliance ProMotion 6422"	"Alliance|ProVideo 6422"
0x1142	0x6424	"unknown"	"Alliance|ProVideo 6424"
0x1142	0x6425	"unknown"	"Alliance|ProMotion AT25"
0x1142	0x6426	"unknown"	"Alliance Semiconductor|GUI Accelerator"
0x1142	0x643d	"Card:AT3D"	"Alliance|ProMotion AT3D"
0x1144	0x0001	"unknown"	"Cincinnati Milacron|Noservo controller"
0x1148	0x4000	"unknown"	"Syskonnect (Schneider & Koch)|FDDI Adapter"
0x1148	0x4200	"sktr"	"Syskonnect (Schneider & Koch)|Token ring adaptor"
0x1148	0x4300	"sk98lin"	"Syskonnect (Schneider & Koch)|Gigabit Ethernet"
0x114a	0x7587	"unknown"	"VMIC|VMIVME-7587"
0x114f	0x0002	"unknown"	"Digi International|AccelePort EPC"
0x114f	0x0003	"dgrs"	"Digi International|RightSwitch SE-6"
0x114f	0x0004	"unknown"	"Digi International|AccelePort Xem"
0x114f	0x0005	"unknown"	"Digi International|AccelePort Xr"
0x114f	0x0006	"unknown"	"Digi International|AccelePort Xr,C/X"
0x114f	0x0009	"unknown"	"Digi International|AccelePort Xr/J"
0x114f	0x000a	"unknown"	"Digi International|AccelePort EPC/J"
0x114f	0x000c	"unknown"	"Digi International|DataFirePRIme T1 (1-port)"
0x114f	0x000d	"unknown"	"Digi International|SyncPort 2-Port (x.25/FR)"
0x114f	0x0011	"unknown"	"Digi International|AccelePort 8r EIA-232 (IBM)"
0x114f	0x0012	"unknown"	"Digi International|AccelePort 8r EIA-422"
0x114f	0x0013	"unknown"	"Digi International|AccelePort Xr"
0x114f	0x0014	"unknown"	"Digi International|AccelePort 8r EIA-422"
0x114f	0x0015	"unknown"	"Digi International|AccelePort Xem"
0x114f	0x0016	"unknown"	"Digi International|AccelePort EPC/X"
0x114f	0x0017	"unknown"	"Digi International|AccelePort C/X"
0x114f	0x001a	"unknown"	"Digi International|DataFirePRIme E1 (1-port)"
0x114f	0x001b	"unknown"	"Digi International|AccelePort C/X (IBM)"
0x114f	0x001d	"unknown"	"Digi International|DataFire RAS T1/E1/PRI"
0x114f	0x0023	"unknown"	"Digi International|AccelePort RAS"
0x114f	0x0024	"unknown"	"Digi International|DataFire RAS B4 ST/U"
0x114f	0x0026	"unknown"	"Digi International|AccelePort 4r 920"
0x114f	0x0027	"unknown"	"Digi International|AccelePort Xr 920"
0x114f	0x0034	"unknown"	"Digi International|AccelePort 2r 920"
0x114f	0x0035	"unknown"	"Digi International|DataFire DSP T1/E1/PRI cPCI"
0x114f	0x0071	"hisax"	"Digi International|ISDN Network controller PCI"
0x114f	0x6001	"unknown"	"Digi International|Avanstar"
0x1155	0x0810	"unknown"	"Pine Technology Ltd|486 CPU/PCI Bridge"
0x1155	0x0922	"unknown"	"Pine Technology Ltd|Pentium CPU/PCI Bridge"
0x1155	0x0926	"unknown"	"Pine Technology Ltd|PCI/ISA Bridge"
0x1158	0x3011	"unknown"	"Voarx R & D Inc|Tokenet/vg 1001/10m anylan"
0x1158	0x9050	"unknown"	"Voarx R & D Inc|Lanfleet/Truevalue"
0x1158	0x9051	"unknown"	"Voarx R & D Inc|Lanfleet/Truevalue"
0x1159	0x0001	"unknown"	"Mutech Corp|MV-1000"
0x115d	0x0003	"tulip_cb"	"Xircom|Cardbus Ethernet 10/100"
0x115d	0x0005	"unknown"	"Xircom|Cardbus Ethernet 10/100"
0x115d	0x0007	"unknown"	"Xircom|Cardbus Ethernet 10/100"
0x115d	0x000b	"unknown"	"Xircom|Cardbus Ethernet 10/100"
0x115d	0x000f	"unknown"	"Xircom|Cardbus Ethernet 10/100"
0x115d	0x0101	"unknown"	"Xircom|Cardbus 56k modem"
0x115d	0x0103	"unknown"	"Xircom|Cardbus Ethernet + 56k Modem"
0x1161	0x0001	"unknown"	"PFU Ltd|Host Bridge"
0x1163	0x0001	"Card:Rendition Verite 1000"	"Rendition|Verite 1000"
0x1163	0x2000	"Card:Rendition Verite 2x00"	"Rendition|Verite V2000/V2100/V2200"
0x1165	0x0001	"unknown"	"Imagraph Corporation|Motion TPEG Recorder/Player with audio"
0x1166	0x0007	"unknown"	"Relience Computer|CNB20-LE CPU to PCI Bridge"
0x1166	0x0008	"unknown"	"Relience Computer|CNB20HE"
0x1166	0x0009	"unknown"	"Relience Computer|CNB20HE"
0x1166	0x0010	"unknown"	"ServerWorks|CIOB30"
0x1166	0x0011	"unknown"	"ServerWorks|CMIC-HE"
0x1166	0x0200	"unknown"	"ServerWorks|OSB4"
0x1166	0x0201	"unknown"	"ServerWorks|CSB5"
0x116a	0x6100	"unknown"	"Polaris Communications|Bus/Tag Channel"
0x116a	0x6800	"unknown"	"Polaris Communications|Escon Channel"
0x116a	0x7100	"unknown"	"Polaris Communications|Bus/Tag Channel"
0x116a	0x7800	"unknown"	"Polaris Communications|Escon Channel"
0x1178	0xafa1	"unknown"	"Alfa Inc|Fast Ethernet Adapter"
0x1179	0x0001	"Card:Trident Cyber 9525 (generic)"	"Toshiba|Toshiba-4010CDT"
0x1179	0x0404	"unknown"	"Toshiba|DVD Decoder card"
0x1179	0x0406	"unknown"	"Toshiba|Tecra Video Capture device"
0x1179	0x0407	"unknown"	"Toshiba|DVD Decoder card (Version 2)"
0x1179	0x0601	"Card:Trident Cyber 9525 (generic)"	"Toshiba|601 [Laptop]"
0x1179	0x0602	"unknown"	"Toshiba America Info Systems|PCI to ISA Bridge for Notebooks"
0x1179	0x0603	"i82365"	"Toshiba|ToPIC95 PCI to CardBus Bridge for Notebooks"
0x1179	0x0604	"unknown"	"Toshiba America Info Systems|PCI to PCI Bridge for Notebooks"
0x1179	0x0605	"unknown"	"Toshiba America Info Systems|PCI to ISA Bridge for Notebooks"
0x1179	0x0606	"unknown"	"Toshiba America Info Systems|PCI to ISA Bridge for Notebooks"
0x1179	0x0609	"unknown"	"Toshiba America Info Systems|PCI to PCI Bridge for Notebooks"
0x1179	0x060a	"i82365"	"Toshiba|ToPIC95"
0x1179	0x060f	"i82365"	"Toshiba|ToPIC97"
0x1179	0x0617	"unknown"	"Toshiba|ToPIC95 PCI to Cardbus Bridge with ZV Support"
0x1179	0x0618	"unknown"	"Toshiba|CPU to PCI and PCI to ISA bridge"
0x1179	0x0701	"unknown"	"Toshiba|FIR Port"
0x1179	0x0d01	"unknown"	"Toshiba|FIR Port Type-DO"
0x117e	0x0001	"unknown"	"T/R Systems|Printer Host"
0x1180	0x0465	"i82365"	"Ricoh Co Ltd|RL5c465"
0x1180	0x0466	"i82365"	"Ricoh Co Ltd|RL5c466"
0x1180	0x0475	"i82365"	"Ricoh Co Ltd|RL5c475"
0x1180	0x0476	"i82365"	"Ricoh Co Ltd|RL5c476 II"
0x1180	0x0477	"i82365"	"Ricoh Co Ltd|RL5c477"
0x1180	0x0478	"i82365"	"Ricoh Co Ltd|RL5c478"
0x1185	0x8929	"unknown"	"Dataworld|EIDE"
0x1186	0x0100	"tulip"	"D-Link System Inc|DC21041"
0x1186	0x1100	"tulip"	"D-Link Inc|Fast Ethernet Adapter"
0x1189	0x1592	"unknown"	"Matsushita Electronics Co|VL/PCI Bridge"
0x118c	0x0014	"unknown"	"Corollary, Inc|PCIB [C-bus II to PCI bus host bridge chip]"
0x118d	0x0001	"unknown"	"BitFlow Inc|Raptor-PCI framegrabber"
0x118d	0x0012	"unknown"	"BitFlow Inc|Model 12 Road Runner Frame Grabber"
0x118d	0x0014	"unknown"	"BitFlow Inc|Model 14 Road Runner Frame Grabber"
0x118d	0x0024	"unknown"	"BitFlow Inc|Model 24 Road Runner Frame Grabber"
0x118d	0x0044	"unknown"	"BitFlow Inc|Model 44 Road Runner Frame Grabber"
0x118d	0x0112	"unknown"	"BitFlow Inc|Model 12 Road Runner Frame Grabber"
0x118d	0x0114	"unknown"	"BitFlow Inc|Model 14 Road Runner Frame Grabber"
0x118d	0x0124	"unknown"	"BitFlow Inc|Model 24 Road Runner Frame Grabber"
0x118d	0x0144	"unknown"	"BitFlow Inc|Model 44 Road Runner Frame Grabber"
0x118d	0x0212	"unknown"	"BitFlow Inc|Model 12 Road Runner Frame Grabber"
0x118d	0x0214	"unknown"	"BitFlow Inc|Model 14 Road Runner Frame Grabber"
0x118d	0x0224	"unknown"	"BitFlow Inc|Model 24 Road Runner Frame Grabber"
0x118d	0x0244	"unknown"	"BitFlow Inc|Model 44 Road Runner Frame Grabber"
0x118d	0x0312	"unknown"	"BitFlow Inc|Model 12 Road Runner Frame Grabber"
0x118d	0x0314	"unknown"	"BitFlow Inc|Model 14 Road Runner Frame Grabber"
0x118d	0x0324	"unknown"	"BitFlow Inc|Model 24 Road Runner Frame Grabber"
0x118d	0x0344	"unknown"	"BitFlow Inc|Model 44 Road Runner Frame Grabber"
0x1190	0x2550	"unknown"	"Tripace|PCI Ultra(Wide) SCSI Processor"
0x1190	0xc721	"unknown"	"Tripace|EIDE"
0x1190	0xc731	"unknown"	"Tripace|PCI Ultra(Wide) SCSI Processor"
0x1191	0x0001	"unknown"	"Acard Technology Corp|EIDE Adapter"
0x1191	0x0002	"unknown"	"Acard Technology Corp|EIDE Adapter"
0x1191	0x0003	"unknown"	"Acard Technology Corp|SCSI Cache Host Adapter"
0x1191	0x0004	"unknown"	"Artop Electronic Corp|ATP8400"
0x1191	0x0005	"unknown"	"Artop Electronic Corp|ATP850UF"
0x1191	0x0006	"unknown"	"Artop Electronic Corp|ATP860 NO-BIOS"
0x1191	0x0007	"unknown"	"Artop Electronic Corp|ATP860"
0x1191	0x8001	"unknown"	"Acard Technology Corp|SCSI-2 Cache Host Adapter"
0x1191	0x8002	"atp870u"	"Artop Electronic Corp|AEC6710 SCSI-2 Host Adapter"
0x1191	0x8010	"atp870u"	"Artop Electronic Corp|AEC6712UW SCSI"
0x1191	0x8020	"atp870u"	"Artop Electronic Corp|AEC6712U SCSI"
0x1191	0x8030	"atp870u"	"Artop Electronic Corp|AEC6712S SCSI"
0x1191	0x8040	"atp870u"	"Artop Electronic Corp|AEC6712D SCSI"
0x1191	0x8050	"atp870u"	"Artop Electronic Corp|AEC6712SUW SCSI"
0x1193	0x0001	"unknown"	"Zeitnet Inc.|1221"
0x1193	0x0002	"unknown"	"Zeitnet Inc.|1225"
0x119b	0x1221	"i82365"	"Omega Micro Inc.|82C092G"
0x11a9	0x4240	"unknown"	"InnoSys Inc.|AMCC S933Q Intelligent Serial Card"
0x11ab	0x0146	"unknown"	"Galileo Technology Ltd.|GT-64010"
0x11ab	0x4801	"unknown"	"Galileo Technology Ltd.|GT-48001"
0x11ab	0xf003	"unknown"	"Galileo Technology Ltd.|GT-64010 Primary Image Piranha Image Generator"
0x11ad	0x0002	"tulip"	"Lite-On|LNE100TX"
0x11ad	0xc115	"tulip"	"Lite-On|LC82C115 PNIC-II"
0x11b0	0x0002	"unknown"	"V3 Semiconductor Inc.|V300PSC"
0x11b0	0x0292	"unknown"	"V3 Semiconductor Inc.|V292PBC [Am29030/40 Bridge]"
0x11b0	0x0960	"unknown"	"V3 Semiconductor Inc.|V96xPBC"
0x11b0	0xc960	"unknown"	"V3 Semiconductor Inc.|V96DPC"
0x11b8	0x0001	"unknown"	"XPoint Technologies, Inc|Quad PeerMaster"
0x11b9	0xc0ed	"unknown"	"Pathlight Technology Inc.|SSA Controller"
0x11bc	0x0001	"unknown"	"Network Peripherals Inc|NP-PCI"
0x11c1	0x0440	"Bad:www.linmodems.org"	"Lucent Microelectronics|56k WinModem"
0x11c1	0x0441	"Bad:www.linmodems.org"	"Lucent Microelectronics|56k WinModem"
0x11c1	0x0442	"Bad:www.linmodems.org"	"Lucent Microelectronics|56k WinModem"
0x11c1	0x0443	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0444	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0445	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0446	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0447	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0448	"Bad:www.linmodems.org"	"Lucent Microelectronics|WinModem 56k"
0x11c1	0x0449	"Bad:www.linmodems.org"	"Lucent Microelectronics|WinModem 56k"
0x11c1	0x044a	"Bad:www.linmodems.org"	"Lucent Microelectronics|F-1156IV WinModem (V90, 56KFlex)"
0x11c1	0x044b	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x044c	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x044d	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x044e	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0450	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0451	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0452	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0453	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0454	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0455	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0456	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0457	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0458	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0459	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x045a	"Bad:www.linmodems.org"	"Lucent Microelectronics|LT WinModem"
0x11c1	0x0480	"Bad:www.linmodems.org"	"Lucent Microelectronics|Venus WinModem (V90, 56KFlex)"
0x11c1	0x5801	"unknown"	"AT&T Microelectronics (Lucent)|USB Open Host Controller"
0x11c8	0x0658	"unknown"	"Dolphin|PSB32 SCI-Adapter D31x"
0x11c8	0xd665	"unknown"	"Dolphin|PSB64 SCI-Adapter D32x"
0x11c8	0xd667	"unknown"	"Dolphin|PSB66 SCI-Adapter D33x"
0x11c9	0x0010	"unknown"	"Magma|16-line serial port w/- DMA"
0x11c9	0x0011	"unknown"	"Magma|4-line serial port w/- DMA"
0x11cb	0x2000	"unknown"	"Specialix Research Ltd.|PCI_9050"
0x11cb	0x4000	"unknown"	"Specialix Research Ltd.|SUPI_1"
0x11cb	0x8000	"unknown"	"Specialix Research Ltd.|T225"
0x11d1	0x01f7	"unknown"	"Auravision|VxP524"
0x11d5	0x0115	"unknown"	"Ikon Corporation|10115"
0x11d5	0x0117	"unknown"	"Ikon Corporation|10117"
0x11de	0x6057	"buz"	"Zoran Corporation|ZR36057PQC Video cutting chipset"
0x11de	0x6120	"hisax"	"Zoran Corporation|ZR36120"
0x11f0	0x4231	"unknown"	"Compu-Shack|FDDI"
0x11f0	0x4232	"unknown"	"Compu-Shack|FASTline UTP Quattro"
0x11f0	0x4233	"unknown"	"Compu-Shack|FASTline FO"
0x11f0	0x4234	"unknown"	"Compu-Shack|FASTline UTP"
0x11f0	0x4235	"unknown"	"Compu-Shack|FASTline-II UTP"
0x11f0	0x4236	"unknown"	"Compu-Shack|FASTline-II FO"
0x11f0	0x4731	"unknown"	"Compu-Shack|GIGAline"
0x11f4	0x2915	"unknown"	"Kinetic|CAMAC controller"
0x11f6	0x0112	"hp100"	"Compex|ENet100VG4"
0x11f6	0x1401	"ne2k-pci"	"Compex|ReadyLink 2000"
0x11f6	0x2011	"unknown"	"Compex|RL100-ATX 10/100"
0x11f6	0x2201	"ne2k-pci"	"Compex|ReadyLink 100TX (Winbond W89C840)"
0x11f6	0x9881	"tulip"	"Compex|RL100TX"
0x11f8	0x7375	"unknown"	"PMC-Sierra Inc.|PM7375 [LASAR-155 ATM SAR]"
0x11fe	0x0001	"unknown"	"Comtrol Corporation|RocketPort 8 Oct"
0x11fe	0x0002	"unknown"	"Comtrol Corporation|RocketPort 8 Intf"
0x11fe	0x0003	"unknown"	"Comtrol Corporation|RocketPort 16 Intf"
0x11fe	0x0004	"unknown"	"Comtrol Corporation|RocketPort 32 Intf"
0x11fe	0x0005	"unknown"	"Comtrol Corporation|RocketPort Octacable"
0x11fe	0x0006	"unknown"	"Comtrol Corporation|RocketPort 8J"
0x11fe	0x0008	"unknown"	"Comtrol Corporation|RocketPort 8-port"
0x11fe	0x0009	"unknown"	"Comtrol Corporation|RocketPort 16-port"
0x11fe	0x000a	"unknown"	"Comtrol Corporation|RocketPort Plus Quadcable"
0x11fe	0x000b	"unknown"	"Comtrol Corporation|RocketPort Plus Octacable"
0x11fe	0x000c	"unknown"	"Comtrol Corporation|RocketPort 8-port Modem"
0x1200	0xbd11	"bttv"	"Pinnacle|PCTV Rave"
0x1208	0x4853	"unknown"	"Parsytec GmbH|HS-Link Device"
0x120e	0x0100	"unknown"	"Cyclades Corporation|Cyclom_Y below first megabyte"
0x120e	0x0101	"unknown"	"Cyclades Corporation|Cyclom_Y above first megabyte"
0x120e	0x0102	"unknown"	"Cyclades Corporation|Cyclom_4Y below first megabyte"
0x120e	0x0103	"unknown"	"Cyclades Corporation|Cyclom_4Y above first megabyte"
0x120e	0x0104	"unknown"	"Cyclades Corporation|Cyclom_8Y below first megabyte"
0x120e	0x0105	"unknown"	"Cyclades Corporation|Cyclom_8Y above first megabyte"
0x120e	0x0200	"unknown"	"Cyclades Corporation|Cyclom_Z below first megabyte"
0x120e	0x0201	"unknown"	"Cyclades Corporation|Cyclom_Z above first megabyte"
0x120f	0x0001	"rrunner"	"Essential Communications|Roadrunner serial HIPPI"
0x1217	0x6729	"i82365"	"O2 Micro, Inc.|6729"
0x1217	0x673a	"i82365"	"O2 Micro, Inc.|6730"
0x1217	0x6832	"i82365"	"O2 Micro, Inc.|6832"
0x1217	0x6836	"i82365"	"O2 Micro, Inc.|6836"
0x1217	0x6872	"i82365"	"O2 Micro, Inc.|6872"
0x1217	0x6933	"unknown"	"O2 Micro, Inc.|OZ6933 Cardbus Controller"
0x121a	0x0001	"unknown"	"3Dfx Interactive, Inc.|Voodoo"
0x121a	0x0002	"unknown"	"3Dfx Interactive, Inc.|Voodoo 2"
0x121a	0x0003	"Card:Voodoo Banshee (generic)"	"3Dfx Interactive, Inc.|Voodoo Banshee"
0x121a	0x0004	"Card:Voodoo Banshee (generic)"	"3Dfx Interactive, Inc.|Voodoo Banshee"
0x121a	0x0005	"Card:Voodoo3 (generic)"	"3Dfx Interactive, Inc.|Voodoo 3"
0x121a	0x0009	"Card:Voodoo5 (generic)"	"3Dfx Interactive, Inc.|Voodoo 5"
0x1220	0x1220	"unknown"	"Ariel Corporation|AMCC 5933 TMS320C80 DSP/Imaging board"
0x122d	0x1206	"unknown"	"Aztech System Ltd|368DSP"
0x122d	0x50dc	"unknown"	"Aztech System Ltd|3328 Audio"
0x122d	0x80da	"unknown"	"Aztech System Ltd|3328 Audio"
0x1236	0x0000	"unknown"	"Sigma Designs Corporation|RealMagic64/GX"
0x1236	0x6401	"unknown"	"Sigma Designs Corporation|REALmagic 64/GX (SD 6425)"
0x123d	0x0000	"unknown"	"Engineering Design Team, Inc.|EasyConnect 8/32"
0x123d	0x0002	"unknown"	"Engineering Design Team, Inc.|EasyConnect 8/64"
0x123d	0x0003	"unknown"	"Engineering Design Team, Inc.|EasyIO"
0x123f	0x00e4	"unknown"	"C-Cube Microsystems|MPEG"
0x123f	0x8120	"unknown"	"C-Cube Microsystems|E4?"
0x123f	0x8888	"unknown"	"C-Cube Microsystems|Cinemaster C 3.0 DVD Decoder"
0x1242	0x4643	"unknown"	"Jaycor Networks, Inc.|FCI-1063 Fibre Channel Adapter"
0x1244	0x0700	"b1pci"	"AVM Audiovisuelles|B1 ISDN"
0x1244	0x0a00	"hisax"	"AVM Audiovisuelles|A1 ISDN [Fritz]"
0x124d	0x0000	"unknown"	"Stallion|EasyConnection 8/32"
0x124d	0x0002	"unknown"	"Stallion|EasyConnection 8/64"
0x124d	0x0003	"unknown"	"Stallion|EasyIO"
0x124f	0x0041	"unknown"	"Infotrend Technology, Inc.|IFT-2000 Series RAID Controller"
0x1255	0x1110	"unknown"	"Optibase Ltd|MPEG Forge"
0x1255	0x1210	"unknown"	"Optibase Ltd|MPEG Fusion"
0x1255	0x2110	"unknown"	"Optibase Ltd|VideoPlex"
0x1255	0x2120	"unknown"	"Optibase Ltd|VideoPlex CC"
0x1255	0x2130	"unknown"	"Optibase Ltd|VideoQuest"
0x1256	0x4201	"pci2220i"	"Perceptive Solutions, Inc.|PCI-2220I"
0x1256	0x4401	"pci2220i"	"Perceptive Solutions, Inc.|PCI-2240I"
0x1256	0x5201	"pci2000"	"Perceptive Solutions, Inc.|PCI-2000"
0x1259	0x2560	"eepro100"	"Allied Telesyn International|AT-2560 Fast Ethernet Adapter (i82557B)"
0x125b	0x1400	"tulip"	"ASIX|AX88140"
0x125c	0x0640	"unknown"	"Aurora Technologies, Inc.|Aries 16000P"
0x125d	0x0000	"unknown"	"ESS Technology|ES336H Fax Modem (Early Model)"
0x125d	0x1948	"maestro"	"ESS Technology|ES1948 Maestro 1"
0x125d	0x1968	"maestro"	"ESS Technology|ES1968 Maestro 2"
0x125d	0x1969	"snd-card-es1938"	"ESS Technology|ES1969 Solo-1 Audiodrive"
0x125d	0x1978	"maestro"	"ESS Technology|ES1978 Maestro 2E"
0x125d	0x1988	"maestro3"	"ESS Technology|ES1988 Allegro-1"
0x125d	0x1989	"unknown"	"ESS Technology|ESS Modem"
0x125d	0x1998	"maestro3"	"ESS Technology|ES1983S Maestro-3i PCI Audio Accelerator"
0x125d	0x1999	"unknown"	"ESS Technology|ES1983S Maestro-3i PCI Modem Accelerator"
0x125d	0x199a	"maestro3"	"ESS Technology|Maestro-3"
0x125d	0x199b	"unknown"	"ESS Technology|ES1983S Maestro-3i PCI Modem Accelerator"
0x125d	0x2808	"unknown"	"ESS Technology|ES336H Fax Modem (Later Model)"
0x125d	0x2838	"unknown"	"ESS Technology|ES2838/2839 SuperLink Modem"
0x125d	0x2898	"unknown"	"ESS Technology|ES2898 Modem"
0x1260	0x8130	"unknown"	"Harris Semiconductor|HMP8130 NTSC/PAL Video Decoder"
0x1260	0x8131	"unknown"	"Harris Semiconductor|HMP8131 NTSC/PAL Video Decoder"
0x1266	0x0001	"eepro100"	"Microdyne Corporation|NE10/100 Adapter (i82557B)"
0x1266	0x1910	"unknown"	"Microdyne Corporation|NE2000Plus (RT8029) Ethernet Adapter"
0x1267	0x1016	"hisax"	"S. A. Telecommunications|Dr. Neuhaus Niccy PCI"
0x1267	0x5352	"unknown"	"S. A. Telecommunications|PCR2101"
0x1267	0x5a4b	"unknown"	"S. A. Telecommunications|Telsat Turbo"
0x126f	0x0710	"Card:SMI LynxEM (generic)"	"Silicon Motion, Inc.|Lynx EM MS710"
0x126f	0x0712	"Card:SMI Lynx (generic)"	"Silicon Motion, Inc.|SM712 LynxEM+"
0x126f	0x0720	"Card:SMI Lynx (generic)"	"Silicon Motion, Inc.|SM720 Lynx3DM"
0x126f	0x0810	"Card:SMI Lynx (generic)"	"Silicon Motion, Inc.|SM810"
0x126f	0x0811	"Card:SMI Lynx (generic)"	"Silicon Motion, Inc.|SM811 LynxE"
0x126f	0x0820	"Card:SMI Lynx (generic)"	"Silicon Motion, Inc.|SM820 Lynx3D"
0x126f	0x0910	"Card:SMI Lynx (generic)"	"Silicon Motion, Inc.|SM910"
0x1273	0x0002	"unknown"	"Hughes Network Systems|DirecPC"
0x1274	0x1371	"snd-card-ens1371"	"Ensoniq|ES1371 [AudioPCI-97]"
0x1274	0x5000	"es1370"	"Ensoniq|ES1370 [AudioPCI]"
0x1274	0x5880	"snd-card-ens1371"	"Ensoniq|CT5880"
0x1279	0x0295	"unknown"	"Transmeta Corporation|Virtual Northbridge"
0x127a	0x1002	"unknown"	"Rockwell International|HCF 56k V90 FaxModem"
0x127a	0x1003	"unknown"	"Rockwell International|HCF 56k V90 FaxModem"
0x127a	0x1004	"unknown"	"Rockwell International|HCF 56k V90 FaxModem"
0x127a	0x1005	"unknown"	"Rockwell International|HCF 56k V90 FaxModem"
0x127a	0x1025	"unknown"	"Rockwell International|HCF 56k PCI Modem"
0x127a	0x1026	"unknown"	"Rockwell International|HCF 56k PCI Speakerphone Modem"
0x127a	0x1035	"unknown"	"Rockwell International|HCF 56k PCI Speakerphone Modem"
0x127a	0x1085	"unknown"	"Rockwell International|Volcano HCF 56k PCI Modem"
0x127a	0x2005	"unknown"	"Rockwell International|HCF 56k V90 FaxModem"
0x127a	0x2015	"unknown"	"Rockwell International|Conexant SoftK56 Speakerphone Modem"
0x127a	0x4320	"unknown"	"Rockwell Semiconductor Systems|Master Riptide PCI Audio Controller"
0x127a	0x4321	"unknown"	"Rockwell Semiconductor Systems|HCF 56k Data Fax PCI Modem"
0x127a	0x4322	"unknown"	"Rockwell Semiconductor Systems|Riptide PCI Game Controller"
0x127a	0x8234	"unknown"	"Rockwell International|RapidFire 616X ATM155 Adapter"
0x1282	0x9100	"dmfe"	"Davicom|DM9100"
0x1282	0x9102	"dmfe"	"Davicom|Ethernet 100/10 MBit DM9102"
0x1283	0x673a	"unknown"	"Integrated Technology Express, Inc.|IT8330G"
0x1283	0x8330	"unknown"	"Integrated Technology Express, Inc.|IT8330G"
0x1283	0x8888	"unknown"	"Integrated Technology Express, Inc.|IT8888F PCI to ISA Bridge with SMB"
0x1283	0x8889	"unknown"	"Integrated Technology Express, Inc.|IT8889F PCI to ISA Bridge"
0x1283	0xe886	"unknown"	"Integrated Technology Express, Inc.|IT8330G"
0x1285	0x0100	"maestro"	"Platform Technologies, Inc.|AGOGO sound chip (aka ESS Maestro 1)"
0x1287	0x001e	"unknown"	"M-Pact, Inc.|LS220D DVD Decoder"
0x1287	0x001f	"unknown"	"M-Pact, Inc.|LS220C DVD Decoder"
0x128d	0x0021	"unknown"	"G2 Networks, Inc.|ATM155 Adapter"
0x128e	0x0008	"unknown"	"Hoontech Corporation/Samho Multi Tech Ltd.|ST128 WSS/SB"
0x128e	0x0009	"unknown"	"Hoontech Corporation/Samho Multi Tech Ltd.|ST128 SAM9407"
0x128e	0x000a	"unknown"	"Hoontech Corporation/Samho Multi Tech Ltd.|ST128 Game Port"
0x128e	0x000b	"unknown"	"Hoontech Corporation/Samho Multi Tech Ltd.|ST128 MPU Port"
0x128e	0x000c	"unknown"	"Hoontech Corporation/Samho Multi Tech Ltd.|ST128 Ctrl Port"
0x1292	0xfc02	"unknown"	"Tritech Microelectronics|Pyramid3D TR25202"
0x12ab	0x3000	"unknown"	"Yuan Yuan Enterprise Co Ltd|MPG-200C PCI DVD Decoder Card"
0x12ae	0x0001	"acenic"	"Alteon Networks Inc.|AceNIC Gigabit Ethernet"
0x12ae	0x0002	"acenic"	"Alteon Networks Inc.|AceNIC Gigabit Ethernet (Copper)"
0x12b9	0x1006	"Bad:www.linmodems.org"	"US Robotics/3Com|WinModem"
0x12b9	0x1007	"Bad:www.linmodems.org"	"US Robotics/3Com|USR 56k Internal WinModem"
0x12b9	0x1008	"unknown"	"US Robotics/3Com|56K FaxModem Model 5610"
0x12be	0x3041	"unknown"	"Anchor Chips Inc.|AN3041Q CO-MEM"
0x12be	0x3042	"unknown"	"Anchor Chips Inc.|AN3042Q CO-MEM Lite"
0x12c5	0x0081	"unknown"	"Picture Elements Incorporated|PCIVST [Grayscale Thresholding Engine]"
0x12c5	0x0085	"unknown"	"Picture Elements Incorporated|Video Simulator/Sender"
0x12c5	0x0086	"unknown"	"Picture Elements Incorporated|THR2 Multi-scale Thresholder"
0x12d2	0x0008	"Card:RIVA128"	"NVidia / SGS Thomson|NV1"
0x12d2	0x0009	"Card:RIVA128"	"NVidia / SGS Thomson|DAC64"
0x12d2	0x0018	"Card:RIVA128"	"NVidia / SGS Thomson|Riva128"
0x12d2	0x0019	"Card:RIVA128"	"NVidia / SGS Thomson|Riva128ZX"
0x12d2	0x0020	"Card:RIVA TNT"	"NVidia / SGS Thomson|TNT"
0x12d2	0x0028	"Card:RIVA TNT2"	"NVidia / SGS Thomson|TNT2"
0x12d2	0x0029	"Card:RIVA TNT2"	"NVidia / SGS Thomson|UTNT2"
0x12d2	0x002c	"Card:RIVA TNT2"	"NVidia / SGS Thomson|VTNT2"
0x12d2	0x00a0	"Card:RIVA TNT2"	"NVidia / SGS Thomson|ITNT2"
0x12e0	0x0010	"unknown"	"Chase Research|ST16C654 Quad UART"
0x12e0	0x0020	"unknown"	"Chase Research|ST16C654 Quad UART"
0x12e0	0x0030	"unknown"	"Chase Research|ST16C654 Quad UART"
0x12eb	0x0001	"Bad:linux.aureal.com"	"Aureal Semiconductor|Vortex 1"
0x12eb	0x0002	"Bad:linux.aureal.com"	"Aureal Semiconductor|Vortex 2"
0x12eb	0x0003	"unknown"	"Aureal Semiconductor|AU8810 Vortex Digital Audio Processor"
0x12eb	0x8803	"unknown"	"Aureal Semiconductor|Vortex 56k Software Modem"
0x12f8	0x0002	"unknown"	"Electronic Design GmbH|VideoMaker"
0x1307	0x0001	"unknown"	"Computer Boards|PCI-DAS1602/16"
0x1307	0x000b	"unknown"	"Computer Boards|PCI-DIO48H"
0x1307	0x000c	"unknown"	"Computer Boards|PCI-PDISO8"
0x1307	0x000d	"unknown"	"Computer Boards|PCI-PDISO16"
0x1307	0x000f	"unknown"	"Computer Boards|PCI-DAS1200"
0x1307	0x0010	"unknown"	"Computer Boards|PCI-DAS1602/12"
0x1307	0x0014	"unknown"	"Computer Boards|PCI-DIO24H"
0x1307	0x0015	"unknown"	"Computer Boards|PCI-DIO24H/CTR3"
0x1307	0x0016	"unknown"	"Computer Boards|PCI-DIO48H/CTR15"
0x1307	0x0017	"unknown"	"Computer Boards|PCI-DIO96H"
0x1307	0x0018	"unknown"	"Computer Boards|PCI-CTR05"
0x1307	0x0019	"unknown"	"Computer Boards|PCI-DAS1200/JR"
0x1307	0x001a	"unknown"	"Computer Boards|PCI-DAS1001"
0x1307	0x001b	"unknown"	"Computer Boards|PCI-DAS1002"
0x1307	0x001c	"unknown"	"Computer Boards|PCI-DAS1602JR/16"
0x1307	0x001d	"unknown"	"Computer Boards|PCI-DAS6402/16"
0x1307	0x001e	"unknown"	"Computer Boards|PCI-DAS6402/12"
0x1307	0x001f	"unknown"	"Computer Boards|PCI-DAS16/M1"
0x1307	0x0020	"unknown"	"Computer Boards|PCI-DDA02/12"
0x1307	0x0021	"unknown"	"Computer Boards|PCI-DDA04/12"
0x1307	0x0022	"unknown"	"Computer Boards|PCI-DDA08/12"
0x1307	0x0023	"unknown"	"Computer Boards|PCI-DDA02/16"
0x1307	0x0024	"unknown"	"Computer Boards|PCI-DDA04/16"
0x1307	0x0025	"unknown"	"Computer Boards|PCI-DDA08/16"
0x1307	0x0026	"unknown"	"Computer Boards|PCI-DAC04/12-HS"
0x1307	0x0027	"unknown"	"Computer Boards|PCI-DAC04/16-HS"
0x1307	0x0028	"unknown"	"Computer Boards|PCI-DIO24"
0x1307	0x0029	"unknown"	"Computer Boards|PCI-DAS08"
0x1307	0x002c	"unknown"	"Computer Boards|PCI-INT32"
0x1307	0x0033	"unknown"	"Computer Boards|PCI-DUAL-AC5"
0x1307	0x0034	"unknown"	"Computer Boards|PCI-DAS-TC"
0x1307	0x0035	"unknown"	"Computer Boards|PCI-DAS64/M1/16"
0x1307	0x0036	"unknown"	"Computer Boards|PCI-DAS64/M2/16"
0x1307	0x0037	"unknown"	"Computer Boards|PCI-DAS64/M3/16"
0x1307	0x004c	"unknown"	"Computer Boards|PCI-DAS1000"
0x1308	0x0001	"unknown"	"Jato Technologies Inc.|NetCelerator Adapter"
0x1317	0x0981	"tulip"	"ADMtek|AN981 Comet"
0x1318	0x0911	"unknown"	"Packet Engines Inc.|PCI Ethernet Adapter"
0x1319	0x0801	"snd-card-fm801"	"Fortemedia, Inc|Xwave QS3000A [FM801]"
0x1319	0x0802	"unknown"	"Fortemedia, Inc|Xwave QS3000A [FM801 game port]"
0x1319	0x1000	"snd-card-fm801"	"Fortemedia, Inc|FM801 PCI Audio"
0x1319	0x1001	"unknown"	"Fortemedia, Inc|FM801 PCI Joystick"
0x131f	0x1000	"unknown"	"Siig Inc|CyberSerial (1-port) 16550"
0x131f	0x1001	"unknown"	"Siig Inc|CyberSerial (1-port) 16650"
0x131f	0x1002	"unknown"	"Siig Inc|CyberSerial (1-port) 16850"
0x131f	0x1010	"unknown"	"Siig Inc|Duet 1S(16550)+1P"
0x131f	0x1011	"unknown"	"Siig Inc|Duet 1S(16650)+1P"
0x131f	0x1012	"unknown"	"Siig Inc|Duet 1S(16850)+1P"
0x131f	0x1020	"unknown"	"Siig Inc|CyberParallel (1-port)"
0x131f	0x1021	"unknown"	"Siig Inc|CyberParallel (2-port)"
0x131f	0x1030	"unknown"	"Siig Inc|CyberSerial (2-port) 16550"
0x131f	0x1031	"unknown"	"Siig Inc|CyberSerial (2-port) 16650"
0x131f	0x1032	"unknown"	"Siig Inc|CyberSerial (2-port) 16850"
0x131f	0x1034	"unknown"	"Siig Inc|Trio 2S(16550)+1P"
0x131f	0x1035	"unknown"	"Siig Inc|Trio 2S(16650)+1P"
0x131f	0x1036	"unknown"	"Siig Inc|Trio 2S(16850)+1P"
0x131f	0x1050	"unknown"	"Siig Inc|CyberSerial (4-port) 16550"
0x131f	0x1051	"unknown"	"Siig Inc|CyberSerial (4-port) 16650"
0x131f	0x1052	"unknown"	"Siig Inc|CyberSerial (4-port) 16850"
0x131f	0x2000	"unknown"	"Siig Inc|CyberSerial (1-port) 16550"
0x131f	0x2001	"unknown"	"Siig Inc|CyberSerial (1-port) 16650"
0x131f	0x2002	"unknown"	"Siig Inc|CyberSerial (1-port) 16850"
0x131f	0x2010	"unknown"	"Siig Inc|Duet 1S(16550)+1P"
0x131f	0x2011	"unknown"	"Siig Inc|Duet 1S(16650)+1P"
0x131f	0x2012	"unknown"	"Siig Inc|Duet 1S(16850)+1P"
0x131f	0x2020	"unknown"	"Siig Inc|CyberParallel (1-port)"
0x131f	0x2021	"unknown"	"Siig Inc|CyberParallel (2-port)"
0x131f	0x2030	"unknown"	"Siig Inc|CyberSerial (2-port) 16550"
0x131f	0x2031	"unknown"	"Siig Inc|CyberSerial (2-port) 16650"
0x131f	0x2032	"unknown"	"Siig Inc|CyberSerial (2-port) 16850"
0x131f	0x2040	"unknown"	"Siig Inc|Trio 1S(16550)+2P"
0x131f	0x2041	"unknown"	"Siig Inc|Trio 1S(16650)+2P"
0x131f	0x2042	"unknown"	"Siig Inc|Trio 1S(16850)+2P"
0x131f	0x2050	"unknown"	"Siig Inc|CyberSerial (4-port) 16550"
0x131f	0x2051	"unknown"	"Siig Inc|CyberSerial (4-port) 16650"
0x131f	0x2052	"unknown"	"Siig Inc|CyberSerial (4-port) 16850"
0x131f	0x2060	"unknown"	"Siig Inc|Trio 2S(16550)+1P"
0x131f	0x2061	"unknown"	"Siig Inc|Trio 2S(16650)+1P"
0x131f	0x2062	"unknown"	"Siig Inc|Trio 2S(16850)+1P"
0x134a	0x0001	"dtc"	"DTC Technology Corp.|Domex 536"
0x134a	0x0002	"dtc"	"DTC Technology Corp.|Domex DMX3194UP SCSI Adapter"
0x134d	0x7890	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x134d	0x7891	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x134d	0x7892	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x134d	0x7893	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x134d	0x7894	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x134d	0x7895	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x134d	0x7896	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x134d	0x7897	"unknown"	"Pctel Inc|HSP MicroModem 56"
0x135e	0x7101	"unknown"	"Sealevel Systems Inc|Single Port RS-232/422/485/530"
0x135e	0x7201	"unknown"	"Sealevel Systems Inc|Dual Port RS-232/422/485 Interface"
0x135e	0x7202	"unknown"	"Sealevel Systems Inc|Dual Port RS-232 Interface"
0x135e	0x7401	"unknown"	"Sealevel Systems Inc|Four Port RS-232 Interface"
0x135e	0x7402	"unknown"	"Sealevel Systems Inc|Four Port RS-422/485 Interface"
0x135e	0x7801	"unknown"	"Sealevel Systems Inc|Eight Port RS-232 Interface"
0x135e	0x8001	"unknown"	"Sealevel Systems Inc|8001 Digital I/O Adapter"
0x1385	0x620a	"acenic"	"Netgear|GA620"
0x1389	0x0001	"unknown"	"Applicom International|PCI1500PFB [Intelligent fieldbus adaptor]"
0x1397	0x2bd0	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb000	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb006	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb007	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb008	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb009	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb00a	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb00b	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb00c	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x1397	0xb100	"hisax"	"Cologne Chip Designs|ISDN network controller [HFC-PCI]"
0x13c0	0x0010	"unknown"	"Microgate Corporation|SyncLink WAN Adapter"
0x13c1	0x1000	"3w-xxxx"	"3ware Inc|3ware ATA-RAID"
0x13df	0x0001	"unknown"	"E-Tech Inc|PCI56RVP Modem"
0x13eb	0x0070	"bttv"	"Hauppauge|WinTV"
0x13f6	0x0100	"cmpci"	"C-Media Electronics Inc|CM8338A"
0x13f6	0x0101	"cmpci"	"C-Media Electronics Inc|CM8338B"
0x13f6	0x0111	"cmpci"	"C-Media Electronics Inc|CM8738"
0x13f6	0x0211	"cmpci"	"C-Media Electronics Inc|CM8738"
0x1400	0x1401	"epic100"	"Standard Microsystems Corp [SMC]|9432 TX"
0x1407	0x8000	"unknown"	"Lava Computer mfg Inc|Lava Parallel"
0x1407	0x8002	"unknown"	"Lava Computer mfg Inc|Lava Dual Parallel port A"
0x1407	0x8003	"unknown"	"Lava Computer mfg Inc|Lava Dual Parallel port B"
0x1407	0x8800	"unknown"	"Lava Computer mfg Inc|BOCA Research IOPPAR"
0x1412	0x1712	"snd-card-ice1712"	"IC Ensemble Inc|ICE1712 [Envy24]"
0x144a	0x7296	"unknown"	"Adlink Technology|PCI-7296"
0x144a	0x7432	"unknown"	"Adlink Technology|PCI-7432"
0x144a	0x7433	"unknown"	"Adlink Technology|PCI-7433"
0x144a	0x7434	"unknown"	"Adlink Technology|PCI-7434"
0x144a	0x7841	"unknown"	"Adlink Technology|PCI-7841"
0x144a	0x8133	"unknown"	"Adlink Technology|PCI-8133"
0x144a	0x8554	"unknown"	"Adlink Technology|PCI-8554"
0x144a	0x9111	"unknown"	"Adlink Technology|PCI-9111"
0x144a	0x9113	"unknown"	"Adlink Technology|PCI-9113"
0x144a	0x9114	"unknown"	"Adlink Technology|PCI-9114"
0x145f	0x0001	"unknown"	"Baldor Electric Company|NextMove PCI"
0x1461	0x0002	"bttv"	"Avermedia|TVCapture 98"
0x14b3	0x0000	"unknown"	"XPEED Inc|DSL NIC"
0x14b7	0x0001	"unknown"	"PROXIM Inc|Symphony 4110"
0x14b9	0x0001	"unknown"	"AIRONET Wireless Communications|PC4800"
0x14db	0x2120	"unknown"	"AFAVLAB Technology Inc|TK9902"
0x14dc	0x0000	"unknown"	"Amplicon Liveline Ltd|PCI230"
0x14dc	0x0001	"unknown"	"Amplicon Liveline Ltd|PCI242"
0x14dc	0x0002	"unknown"	"Amplicon Liveline Ltd|PCI244"
0x14dc	0x0003	"unknown"	"Amplicon Liveline Ltd|PCI247"
0x14dc	0x0004	"unknown"	"Amplicon Liveline Ltd|PCI248"
0x14dc	0x0005	"unknown"	"Amplicon Liveline Ltd|PCI249"
0x14dc	0x0006	"unknown"	"Amplicon Liveline Ltd|PCI260"
0x14dc	0x0007	"unknown"	"Amplicon Liveline Ltd|PCI224"
0x14dc	0x0008	"unknown"	"Amplicon Liveline Ltd|PCI234"
0x14dc	0x0009	"unknown"	"Amplicon Liveline Ltd|PCI236"
0x14f1	0x1033	"Bad:www.linmodems.org"	"CONEXANT|56K Winmodem"
0x14f1	0x1035	"unknown"	"CONEXANT|PCI Modem Enumerator"
0x14f1	0x2003	"Bad:www.linmodems.org"	"CONEXANT|SoftK56 Winmodem"
0x14f1	0x2004	"Bad:www.linmodems.org"	"CONEXANT|SoftK56 RemoteTAM Winmodem"
0x14f1	0x2005	"Bad:www.linmodems.org"	"CONEXANT|SoftK56 Speakerphone Winmodem"
0x14f1	0x2006	"Bad:www.linmodems.org"	"CONEXANT|SoftK56 Speakerphone Winmodem"
0x14f1	0x2013	"unknown"	"CONEXANT|HSP MicroModem 56K"
0x14f1	0x2014	"Bad:www.linmodems.org"	"CONEXANT|SoftK56 RemoteTAM Winmodem"
0x14f1	0x2015	"Bad:www.linmodems.org"	"CONEXANT|SoftK56 Speakerphone Winmodem"
0x14f1	0x2016	"Bad:www.linmodems.org"	"CONEXANT|SoftK56 Speakerphone Winmodem"
0x1500	0x1360	"8139too"	"Delta Electronics|8139 10/100BaseTX"
0x1507	0x0001	"unknown"	"Motorola|MPC105 [Eagle]"
0x1507	0x0002	"unknown"	"Motorola|MPC106 [Grackle]"
0x1507	0x0003	"unknown"	"Motorola|MPC8240 [Kahlua]"
0x1507	0x0100	"unknown"	"Motorola|MC145575 [HFC-PCI]"
0x1507	0x0431	"unknown"	"Motorola|KTI829c 100VG"
0x1507	0x4801	"unknown"	"Motorola|Raven"
0x1507	0x4802	"unknown"	"Motorola|Falcon"
0x1507	0x4803	"unknown"	"Motorola|Hawk"
0x1507	0x4806	"unknown"	"Motorola|CPX8216"
0x151a	0x1002	"unknown"	"Globetek|PCI-1002"
0x151a	0x1004	"unknown"	"Globetek|PCI-1004"
0x151a	0x1008	"unknown"	"Globetek|PCI-1008"
0x1571	0xa001	"unknown"	"Contemporary Controls|CCSI PCI20-485 ARCnet"
0x1571	0xa002	"unknown"	"Contemporary Controls|CCSI PCI20-485D ARCnet"
0x1571	0xa003	"unknown"	"Contemporary Controls|CCSI PCI20-485X ARCnet"
0x1571	0xa004	"unknown"	"Contemporary Controls|CCSI PCI20-CXB ARCnet"
0x1571	0xa005	"unknown"	"Contemporary Controls|CCSI PCI20-CXS ARCnet"
0x1571	0xa006	"unknown"	"Contemporary Controls|CCSI PCI20-FOG-SMA ARCnet"
0x1571	0xa007	"unknown"	"Contemporary Controls|CCSI PCI20-FOG-ST ARCnet"
0x1571	0xa008	"unknown"	"Contemporary Controls|CCSI PCI20-TB5 ARCnet"
0x1571	0xa009	"unknown"	"Contemporary Controls|CCSI PCI20-5-485 5Mbit ARCnet"
0x1571	0xa00a	"unknown"	"Contemporary Controls|CCSI PCI20-5-485D 5Mbit ARCnet"
0x1571	0xa00b	"unknown"	"Contemporary Controls|CCSI PCI20-5-485X 5Mbit ARCnet"
0x1571	0xa00c	"unknown"	"Contemporary Controls|CCSI PCI20-5-FOG-ST 5Mbit ARCnet"
0x1571	0xa00d	"unknown"	"Contemporary Controls|CCSI PCI20-5-FOG-SMA 5Mbit ARCnet"
0x1571	0xa201	"unknown"	"Contemporary Controls|CCSI PCI22-485 10Mbit ARCnet"
0x1571	0xa202	"unknown"	"Contemporary Controls|CCSI PCI22-485D 10Mbit ARCnet"
0x1571	0xa203	"unknown"	"Contemporary Controls|CCSI PCI22-485X 10Mbit ARCnet"
0x1571	0xa204	"unknown"	"Contemporary Controls|CCSI PCI22-CHB 10Mbit ARCnet"
0x1571	0xa205	"unknown"	"Contemporary Controls|CCSI PCI22-FOG_ST 10Mbit ARCnet"
0x1571	0xa206	"unknown"	"Contemporary Controls|CCSI PCI22-THB 10Mbit ARCnet"
0x157c	0x8001	"unknown"	"Eurosoft (UK)|Fix2000 PCI Y2K Compliance Card"
0x1592	0x0781	"unknown"	"Syba Tech Ltd|Multi-IO Card"
0x1592	0x0782	"unknown"	"Syba Tech Ltd|Parallel Port Card 2xEPP"
0x1592	0x0783	"unknown"	"Syba Tech Ltd|Multi-IO Card"
0x1592	0x0785	"unknown"	"Syba Tech Ltd|Multi-IO Card"
0x1592	0x0786	"unknown"	"Syba Tech Ltd|Multi-IO Card"
0x1592	0x0787	"unknown"	"Syba Tech Ltd|Multi-IO Card"
0x1592	0x0788	"unknown"	"Syba Tech Ltd|Multi-IO Card"
0x1592	0x078a	"unknown"	"Syba Tech Ltd|Multi-IO Card"
0x15ad	0x0710	"unknown"	"VMWare Inc|Virtual SVGA"
0x15b0	0x2bd0	"hisax"	"Zoltrix|2BD0"
0x15dc	0x0001	"unknown"	"Litronic Inc|Argus 300 PCI Cryptography Module"
0x1813	0x4000	"unknown"	"Modem Silicon Operation|MD563X Host Acceletrated Modem"
0x1850	0x1851	"bttv"	"Chronos|Video Shuttle II"
0x1852	0x1852	"bttv"	"Typhoon|TView TV/FM Tuner"
0x1a08	0x0000	"unknown"	"Sierra semiconductor|SC15064"
0x1c1c	0x0001	"unknown"	"Symphony|82C101"
0x1d44	0xa400	"eata"	"DPT|PM2x24/PM3224"
0x1de1	0x0391	"dc395x_trm"	"Tekram|TRM-S1040"
0x1de1	0x2020	"unknown"	"Tekram|DC-390"
0x1de1	0x690c	"unknown"	"Tekram|690c"
0x1de1	0xdc29	"unknown"	"Tekram|DC290"
0x217d	0x6606	"bttv"	"Leadtek|WinFast TV 2000"
0x2348	0x2010	"unknown"	"Racore|8142 100VG/AnyLAN"
0x2636	0x10b4	"bttv"	"STB|TV PCI FM, P/N 6000704"
0x3000	0x144f	"bttv"	"???!TView 99 (CPH063)"
0x3000	0x14ff	"bttv"	"???!TView 99 (CPH061)"
0x3002	0x144f	"bttv"	"Askey|Magic TView"
0x3002	0x14ff	"bttv"	"Phoebe|TV Master"
0x3388	0x8011	"unknown"	"Hint Corp|VXPro II Chipset"
0x3388	0x8012	"unknown"	"Hint Corp|VXPro II Chipset"
0x3388	0x8013	"unknown"	"Hint Corp|VXPro II Chipset"
0x3d3d	0x0001	"Card:ELSA GLoria-S"	"3DLabs|GLINT 300SX"
0x3d3d	0x0002	"Card:ELSA GLoria-L"	"3DLabs|GLINT 500TX"
0x3d3d	0x0003	"Card:ELSA GLoria-S"	"3DLabs|GLINT Delta"
0x3d3d	0x0004	"Card:ELSA GLoria-S"	"3DLabs|GLINT Permedia"
0x3d3d	0x0005	"Card:ELSA GLoria-S"	"3DLabs|Permedia"
0x3d3d	0x0006	"Card:ELSA GLoria-S"	"3DLabs|GLINT MX"
0x3d3d	0x0007	"Card:ELSA GLoria-S"	"3DLabs|4D Extreme [GLINT Permedia 2]"
0x3d3d	0x0008	"Card:ELSA GLoria-S"	"3DLabs|GLINT Gamma"
0x3d3d	0x0009	"Card:3Dlabs Permedia2 (generic)"	"3DLabs|Permedia II 2D+3D"
0x3d3d	0x000a	"Card:ELSA GLoria-S"	"3DLabs|GLINT R3"
0x3d3d	0x0100	"Card:3Dlabs Permedia2 (generic)"	"3DLabs|Permedia II 2D+3D"
0x3d3d	0x1004	"Card:ELSA GLoria-S"	"3DLabs|Permedia"
0x3d3d	0x3d04	"Card:ELSA GLoria-S"	"3DLabs|Permedia"
0x3d3d	0xffff	"Card:ELSA GLoria-S"	"3DLabs|Glint VGA"
0x4005	0x0300	"unknown"	"Avance Logic Inc.|ALS300 PCI Audio Device"
0x4005	0x0308	"unknown"	"Avance Logic Inc.|ALS300+ PCI Audio Device"
0x4005	0x0309	"unknown"	"Avance Logic Inc.|PCI Input Controller"
0x4005	0x1064	"unknown"	"Avance Logic Inc.|ALG-2064"
0x4005	0x2064	"unknown"	"Avance Logic Inc.|ALG-2064i"
0x4005	0x2128	"unknown"	"Avance Logic Inc.|ALG-2364A GUI Accelerator"
0x4005	0x2301	"Card:Avance Logic 2301"	"Avance Logic Inc.|ALG-2301"
0x4005	0x2302	"Card:Avance Logic 2302"	"Avance Logic Inc.|ALG-2302"
0x4005	0x2303	"unknown"	"Avance Logic Inc.|AVG-2302 GUI Accelerator"
0x4005	0x2364	"unknown"	"Avance Logic Inc.|ALG-2364A"
0x4005	0x2464	"unknown"	"Avance Logic Inc.|ALG-2464"
0x4005	0x2501	"unknown"	"Avance Logic Inc.|ALG-2564A/25128A"
0x4005	0x4000	"unknown"	"Avance Logic Inc.|ALS4000 Audio Chipset"
0x400a	0x15b0	"bttv"	"Zoltrix|Genie TV"
0x4010	0x15b0	"bttv"	"Zoltrix|Genie TV / Radio"
0x4020	0x10fc	"bttv"	"I-O Data Co.|GV-BCV3/PCI"
0x4033	0x1360	"8139too"	"Addtron Technology|8139 10/100BaseTX"
0x4916	0x1960	"unknown"	"RedCreek Communications Inc|RedCreek PCI adapter"
0x4a14	0x5000	"ne2k-pci"	"NetVin|NV5000SC"
0x4b10	0x3080	"unknown"	"Buslogic Inc|SCSI Host Adapter"
0x4b10	0x4010	"unknown"	"Buslogic Inc|Wide SCSI Host Adapter"
0x4d51	0x0200	"unknown"	"MediaQ Inc.|MQ-200"
0x5053	0x2010	"unknown"	"Voyetra Technologies|Daytona Audio Adapter"
0x5145	0x3031	"unknown"	"Ensoniq (Old)|Concert AudioPCI"
0x5301	0x0001	"Card:AT3D"	"Alliance Semiconductor Corp.|ProMotion aT3D"
0x5333	0x0551	"Card:S3 Trio3D"	"S3 Inc.|Plato/PX (system)"
0x5333	0x5631	"Card:S3 ViRGE (generic)"	"S3 Inc.|86c325 [ViRGE]"
0x5333	0x8800	"unknown"	"S3 Inc.|86c866 [Vision 866]"
0x5333	0x8801	"Card:S3 Vision964 (generic)"	"S3 Inc.|86c964 [Vision 964]"
0x5333	0x8810	"Card:S3 Trio32 (generic)"	"S3 Inc.|86c764_0 [Trio 32 vers 0]"
0x5333	0x8811	"Card:S3 Trio64 (generic)"	"S3 Inc.|86c764/765 [Trio32/64/64V+]"
0x5333	0x8812	"Card:S3 Aurora64V+ (generic)"	"S3 Inc.|86cM65 [Aurora64V+]"
0x5333	0x8813	"Card:S3 Trio64 (generic)"	"S3 Inc.|86c764_3 [Trio 32/64 vers 3]"
0x5333	0x8814	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|86c767 [Trio 64UV+]"
0x5333	0x8815	"Card:S3 Aurora64V+ (generic)"	"S3 Inc.|86cM65 [Aurora 128]"
0x5333	0x883d	"Card:S3 ViRGE (generic)"	"S3 Inc.|86c988 [ViRGE/VX]"
0x5333	0x8870	"unknown"	"S3 Inc.|FireGL"
0x5333	0x8880	"Card:S3 868 (generic)"	"S3 Inc.|86c868 [Vision 868 VRAM] vers 0"
0x5333	0x8881	"Card:S3 868 (generic)"	"S3 Inc.|86c868 [Vision 868 VRAM] vers 1"
0x5333	0x8882	"Card:S3 868 (generic)"	"S3 Inc.|86c868 [Vision 868 VRAM] vers 2"
0x5333	0x8883	"Card:S3 868 (generic)"	"S3 Inc.|86c868 [Vision 868 VRAM] vers 3"
0x5333	0x88b0	"Card:S3 928 (generic)"	"S3 Inc.|86c928 [Vision 928 VRAM] vers 0"
0x5333	0x88b1	"Card:S3 86C928 (generic)"	"S3 Inc.|86c928 [Vision 928 VRAM] vers 1"
0x5333	0x88b2	"Card:S3 86C928 (generic)"	"S3 Inc.|86c928 [Vision 928 VRAM] vers 2"
0x5333	0x88b3	"Card:S3 86C928 (generic)"	"S3 Inc.|86c928 [Vision 928 VRAM] vers 3"
0x5333	0x88c0	"Card:S3 864 (generic)"	"S3 Inc.|86c864 [Vision 864 DRAM] vers 0"
0x5333	0x88c1	"Card:S3 864 (generic)"	"S3 Inc.|86c864 [Vision 864 DRAM] vers 1"
0x5333	0x88c2	"Card:S3 864 (generic)"	"S3 Inc.|86c864 [Vision 864-P DRAM] vers 2"
0x5333	0x88c3	"Card:S3 864 (generic)"	"S3 Inc.|86c864 [Vision 864-P DRAM] vers 3"
0x5333	0x88d0	"Card:S3 964 (generic)"	"S3 Inc.|86c964 [Vision 964 VRAM] vers 0"
0x5333	0x88d1	"Card:S3 964 (generic)"	"S3 Inc.|86c964 [Vision 964 VRAM] vers 1"
0x5333	0x88d2	"Card:S3 964 (generic)"	"S3 Inc.|86c964 [Vision 964-P VRAM] vers 2"
0x5333	0x88d3	"Card:S3 964 (generic)"	"S3 Inc.|86c964 [Vision 964-P VRAM] vers 3"
0x5333	0x88f0	"Card:S3 968 (generic)"	"S3 Inc.|86c968 [Vision 968 VRAM] rev 0"
0x5333	0x88f1	"Card:S3 968 (generic)"	"S3 Inc.|86c968 [Vision 968 VRAM] rev 1"
0x5333	0x88f2	"Card:S3 968 (generic)"	"S3 Inc.|86c968 [Vision 968 VRAM] rev 2"
0x5333	0x88f3	"Card:S3 968 (generic)"	"S3 Inc.|86c968 [Vision 968 VRAM] rev 3"
0x5333	0x8900	"Card:S3 Trio64V2 (generic)"	"S3 Inc.|86c755 [Trio 64V2/DX]"
0x5333	0x8901	"Card:S3 Trio64V2 (generic)"	"S3 Inc.|Trio 64V2/DX or /GX"
0x5333	0x8902	"Card:S3 Trio3D"	"S3 Inc.|Plato/PX (graphics)"
0x5333	0x8903	"Card:S3 Trio3D"	"S3 Inc.|Trio 3D business multimedia"
0x5333	0x8904	"Card:S3 Trio3D"	"S3 Inc.|Trio 64 3D"
0x5333	0x8905	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x8906	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x8907	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x8908	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x8909	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x890a	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x890b	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x890c	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x890d	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x890e	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x890f	"Card:S3 Trio64V+ (generic)"	"S3 Inc.|Trio 64V+ family"
0x5333	0x8a01	"Card:S3 ViRGE (generic)"	"S3 Inc.|ViRGE/DX or /GX"
0x5333	0x8a10	"Card:S3 ViRGE/GX2 (generic)"	"S3 Inc.|ViRGE/GX2"
0x5333	0x8a13	"Card:S3 86C368 (Trio3D/2X)"	"S3 Inc.|86c368 [Trio 3D/2X]"
0x5333	0x8a20	"Card:S3 Savage3D"	"S3 Inc.|86c794 [Savage 3D]"
0x5333	0x8a21	"Card:S3 Savage3D"	"S3 Inc.|86c795 [Savage 3D/MV]"
0x5333	0x8a22	"Card:S3 Savage4"	"S3 Inc.|Savage 4"
0x5333	0x8a23	"Card:S3 Savage4"	"S3 Inc.|Savage 4"
0x5333	0x8c00	"Card:S3 ViRGE/MX (generic)"	"S3 Inc.|ViRGE/M3"
0x5333	0x8c01	"Card:S3 ViRGE/MX (generic)"	"S3 Inc.|ViRGE/MX"
0x5333	0x8c02	"Card:S3 ViRGE/MX+ (generic)"	"S3 Inc.|ViRGE/MX+"
0x5333	0x8c03	"Card:S3 ViRGE/MX (generic)"	"S3 Inc.|ViRGE/MX+MV"
0x5333	0x8c10	"Card:S3 Savage (generic)"	"S3 Inc.|86C270-294 Savage/MX-/IX"
0x5333	0x8c12	"Card:S3 Savage (generic)"	"S3 Inc.|86C270-294 Savage/MX-/IX"
0x5333	0x9102	"Card:S3 Savage2000 (generic)"	"S3 Inc.|86C410 Savage 2000"
0x5333	0xca00	"sonicvibes"	"S3 Inc.|SonicVibes"
0x5455	0x4458	"unknown"	"Technische University Berlin|S5933"
0x5555	0x0003	"unknown"	"Genroco, Inc|TURBOstor HFP-832 [HiPPI NIC]"
0x6356	0x4002	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4102	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4202	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4302	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4402	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4502	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4602	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4702	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4802	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4902	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4a02	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4b02	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4c02	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4d02	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4e02	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6356	0x4f02	"unknown"	"UltraStor|ULTRA24 SCSI Host"
0x6374	0x6773	"unknown"	"c't Magazin|GPPCI"
0x6606	0x217d	"bttv"	"Leadtek|WinFast TV 2000"
0x6666	0x0001	"unknown"	"Decision Computer|PCCOM4"
0x6666	0x0002	"unknown"	"Decision Computer|PCCOM8"
0x8008	0x0010	"unknown"	"Quancom Electronic GmbH|WDOG1 [PCI-Watchdog 1]"
0x8008	0x0011	"unknown"	"Quancom Electronic GmbH|PWDOG2 [PCI-Watchdog 2]"
0x8086	0x0007	"unknown"	"Intel Corporation|82379AB"
0x8086	0x0008	"unknown"	"Intel|Extended Express System Support Controller"
0x8086	0x0039	"tulip"	"Intel Corporation|21145"
0x8086	0x0122	"unknown"	"Intel Corporation|82437FX"
0x8086	0x0482	"unknown"	"Intel Corporation|82375EB"
0x8086	0x0483	"unknown"	"Intel Corporation|82424ZX [Saturn]"
0x8086	0x0484	"unknown"	"Intel Corporation|82378IB [SIO ISA Bridge]"
0x8086	0x0486	"unknown"	"Intel Corporation|82430ZX [Aries]"
0x8086	0x04a3	"unknown"	"Intel Corporation|82434LX [Mercury/Neptune]"
0x8086	0x04d0	"unknown"	"Intel Corporation|82437FX [Triton FX]"
0x8086	0x0960	"unknown"	"Intel Corporation|80960RP [i960 RP Microprocessor/Bridge]"
0x8086	0x1000	"e1000"	"Intel Corporation|82542 Gigabit Ethernet Adapter"
0x8086	0x1001	"e1000"	"Intel Corporation|82543 Gigabit Ethernet Adapter"
0x8086	0x1030	"eepro100"	"Intel Corporation|82559 InBusiness 10/100"
0x8086	0x1130	"agpgart"	"Intel Corporation|82815 815 Chipset Host Bridge and Memory Controller Hub"
0x8086	0x1132	"Card:Intel 815"	"Intel Corporation|82815 CGC [Chipset Graphics Controller]"
0x8086	0x1161	"unknown"	"Intel Corporation|82806AA PCI64 Hub Advanced Programmable Interrupt Controller"
0x8086	0x1209	"unknown"	"Intel Corporation|82559ER"
0x8086	0x1221	"i82365"	"Intel Corporation|82092AA_0"
0x8086	0x1222	"i82365"	"Intel Corporation|82092AA_1"
0x8086	0x1223	"unknown"	"Intel Corporation|SAA7116"
0x8086	0x1225	"unknown"	"Intel Corporation|82452KX/GX [Orion]"
0x8086	0x1226	"unknown"	"Intel Corporation|82596"
0x8086	0x1227	"eepro100"	"Intel Corporation|82865 [Ether Express Pro 100]"
0x8086	0x1228	"eepro100"	"Intel Corporation|82556 [Ether Express Pro 100 Smart]"
0x8086	0x1229	"eepro100"	"Intel Corporation|82557 [Ethernet Pro 100]"
0x8086	0x122d	"unknown"	"Intel Corporation|430FX - 82437FX TSC [Triton I]"
0x8086	0x122e	"unknown"	"Intel Corporation|82371FB PIIX ISA [Triton I]"
0x8086	0x1230	"unknown"	"Intel Corporation|82371FB PIIX IDE [Triton I]"
0x8086	0x1231	"unknown"	"Intel Corporation|DSVD Modem"
0x8086	0x1234	"unknown"	"Intel Corporation|430MX - 82371MX MPIIX [430MX PCIset - 82371MX Mobile PCI I/O IDE Xcelerator (MPIIX)]"
0x8086	0x1235	"unknown"	"Intel Corporation|430MX - 82437MX MTSC [430MX PCIset - 82437MX Mobile System Controller (MTSC) and 82438MX Mobile Data Path (MTDP)]"
0x8086	0x1237	"unknown"	"Intel Corporation|440FX - 82441FX PMC [Natoma]"
0x8086	0x1239	"unknown"	"Intel Corporation|82371FB"
0x8086	0x123b	"unknown"	"Intel Corporation|82380PB"
0x8086	0x123c	"unknown"	"Intel Corporation|82380AB"
0x8086	0x123d	"unknown"	"Intel Corporation|683053 Programmable Interrupt Device"
0x8086	0x1240	"unknown"	"Intel Corporation|752 AGP"
0x8086	0x124b	"unknown"	"Intel Corporation|82380FB"
0x8086	0x1250	"unknown"	"Intel Corporation|430HX - 82439HX TXC [Triton II]"
0x8086	0x1360	"unknown"	"Intel Corporation|82806AA PCI64 Hub PCI Bridge"
0x8086	0x1361	"unknown"	"Intel Corporation|82806AA PCI64 Hub Controller (HRes)"
0x8086	0x1960	"megaraid"	"Intel Corporation|80960RP [i960RP Microprocessor]"
0x8086	0x1a21	"agpgart"	"Intel Corporation|82840 840 (Carmel) Chipset Host Bridge (Hub A)"
0x8086	0x1a23	"unknown"	"Intel Corporation|82840 840 (Carmel) Chipset AGP Bridge"
0x8086	0x1a24	"unknown"	"Intel Corporation|82840 840 (Carmel) Chipset PCI Bridge (Hub B)"
0x8086	0x2410	"unknown"	"Intel Corporation|82801AA 810 Chipset LPC Interface Bridge"
0x8086	0x2411	"unknown"	"Intel Corporation|82801AA 810 Chipset IDE Controller"
0x8086	0x2412	"usb-uhci"	"Intel Corporation|82801AA 810 Chipset USB Controller"
0x8086	0x2413	"unknown"	"Intel Corporation|82801AA 810 Chipset SMBus Controller"
0x8086	0x2415	"snd-card-intel8x0"	"Intel Corporation|82801AA 810 Chipset AC'97 Audio Controller"
0x8086	0x2416	"unknown"	"Intel Corporation|82801AA 810 Chipset AC'97 PCI Modem"
0x8086	0x2418	"unknown"	"Intel Corporation|82801AA 810 Chipset Hub to PCI Bridge"
0x8086	0x2420	"unknown"	"Intel Corporation|82801AB 810 Chipset LPC Interface Bridge"
0x8086	0x2421	"unknown"	"Intel Corporation|82801AB 810 Chipset IDE Controller"
0x8086	0x2422	"usb-uhci"	"Intel Corporation|82801AB 810 Chipset USB Controller"
0x8086	0x2423	"unknown"	"Intel Corporation|82801AB 810 Chipset SMBus Controller"
0x8086	0x2425	"snd-card-intel8x0"	"Intel Corporation|82801AB 810 Chipset AC'97 Audio Controller"
0x8086	0x2426	"unknown"	"Intel Corporation|82801AB 810 Chipset AC'97 PCI Modem"
0x8086	0x2428	"unknown"	"Intel Corporation|82801AB 810 Chipset Hub to PCI Bridge"
0x8086	0x2445	"snd-card-intel8x0"	"Intel Corporation 815 Chipset AC'97 Audio Controller"
0x8086	0x2449	"eepro100"	"Intel Corporation|EtherExpress PRO/100"
0x8086	0x2500	"unknown"	"Intel Corporation|82820 820 (Camino) Chipset Host Bridge (MCH)"
0x8086	0x2501	"unknown"	"Intel Corporation|82820 820 (Camino) Chipset Host Bridge (MCH)"
0x8086	0x250b	"unknown"	"Intel Corporation|82820 820 (Camino) Chipset Host Bridge"
0x8086	0x250f	"unknown"	"Intel Corporation|82820 820 (Camino) Chipset PCI to AGP Bridge"
0x8086	0x2520	"unknown"	"Intel Corporation|82805AA MTH Memory Translator Hub"
0x8086	0x2521	"unknown"	"Intel Corporation|82804AA MRH-S Memory Repeater Hub for SDRAM"
0x8086	0x5200	"eepro100"	"Intel Corporation|EtherExpress PRO/100"
0x8086	0x5201	"eepro100"	"Intel Corporation|EtherExpress PRO/100"
0x8086	0x7000	"unknown"	"Intel Corporation|82371SB PIIX3 ISA [Natoma/Triton II]"
0x8086	0x7010	"unknown"	"Intel Corporation|82371SB PIIX3 IDE [Natoma/Triton II]"
0x8086	0x7020	"usb-uhci"	"Intel Corporation|82371SB PIIX3 USB [Natoma/Triton II]"
0x8086	0x7030	"unknown"	"Intel Corporation|430VX - 82437VX TVX [Triton VX]"
0x8086	0x7100	"unknown"	"Intel Corporation|430TX - 82439TX MTXC"
0x8086	0x7110	"unknown"	"Intel Corporation|82371AB PIIX4 ISA"
0x8086	0x7111	"unknown"	"Intel Corporation|82371AB PIIX4 IDE"
0x8086	0x7112	"usb-uhci"	"Intel Corporation|82371AB PIIX4 USB"
0x8086	0x7113	"unknown"	"Intel Corporation|82371AB PIIX4 ACPI - Bus Master IDE Controller"
0x8086	0x7120	"agpgart"	"Intel Corporation|82810 GMCH [Graphics Memory Controller Hub]"
0x8086	0x7121	"Card:Intel 810"	"Intel Corporation|82810 CGC [Chipset Graphics Controller]"
0x8086	0x7122	"agpgart"	"Intel Corporation|82810-DC100 GMCH [Graphics Memory Controller Hub]"
0x8086	0x7123	"Card:Intel 810"	"Intel Corporation|82810-DC100 CGC [Chipset Graphics Controller]"
0x8086	0x7124	"agpgart"	"Intel Corporation|82810E GMCH [Graphics Memory Controller Hub]"
0x8086	0x7125	"Card:Intel 810"	"Intel Corporation|82810E CGC [Chipset Graphics Controller]"
0x8086	0x7126	"unknown"	"Intel Corporation|82810 810 Chipset Host Bridge and Memory Controller Hub"
0x8086	0x7180	"agpgart"	"Intel Corporation|440LX/EX - 82443LX/EX Host bridge"
0x8086	0x7181	"unknown"	"Intel Corporation|440LX/EX - 82443LX/EX AGP bridge"
0x8086	0x7190	"agpgart"	"Intel Corporation|440BX/ZX - 82443BX/ZX Host bridge"
0x8086	0x7191	"unknown"	"Intel Corporation|440BX/ZX - 82443BX/ZX AGP bridge"
0x8086	0x7192	"unknown"	"Intel Corporation|440BX/ZX - 82443BX/ZX Host bridge (AGP disabled)"
0x8086	0x7194	"unknown"	"Intel|82440MX CPU to I/O Controller"
0x8086	0x7195	"snd-card-intel8x0"	"Intel Corporation|82440MX AC'97 Audio Controller"
0x8086	0x7198	"unknown"	"Intel|82440MX PCI to ISA Bridge"
0x8086	0x7199	"unknown"	"Intel|82440MX EIDE Controller"
0x8086	0x719a	"unknown"	"Intel|82440MX USB Universal Host Controller"
0x8086	0x719b	"unknown"	"Intel|82440MX Power Management Controller"
0x8086	0x71a0	"agpgart"	"Intel Corporation|440GX - 82443GX Host bridge"
0x8086	0x71a1	"unknown"	"Intel Corporation|440GX - 82443GX AGP bridge"
0x8086	0x71a2	"unknown"	"Intel Corporation|440GX - 82443GX Host bridge (AGP disabled)"
0x8086	0x7600	"unknown"	"Intel Corporation|82372FB PCI to ISA Bridge"
0x8086	0x7601	"unknown"	"Intel Corporation|82372FB PIIX4 IDE"
0x8086	0x7602	"usb-uhci"	"Intel Corporation|82372FB [PCI-to-USB UHCI]"
0x8086	0x7603	"unknown"	"Intel Corporation|82372FB System Management Bus Controller"
0x8086	0x7800	"Card:Intel 740 (generic)"	"Intel Corporation|i740"
0x8086	0x84c4	"unknown"	"Intel Corporation|450KX/GX [Orion] - 82454KX/GX PCI bridge"
0x8086	0x84c5	"unknown"	"Intel Corporation|450KX/GX [Orion] - 82453KX/GX Memory controller"
0x8086	0x84ca	"unknown"	"Intel Corporation|450NX - 82451NX Memory & I/O Controller"
0x8086	0x84cb	"unknown"	"Intel Corporation|450NX - 82454NX PCI Expander Bridge"
0x8086	0xffff	"unknown"	"Intel Corporation|450NX/GX [Orion] - 82453KX/GX Memory controller [BUG]"
0x8800	0x2008	"unknown"	"Trigem Computer Inc.|Video assistent component"
0x8e2e	0x3000	"ne2k-pci"	"KTI|ET32P2"
0x9004	0x0010	"unknown"	"Adaptec|2940U2"
0x9004	0x1078	"aic7xxx"	"Adaptec|AIC-7810"
0x9004	0x1160	"unknown"	"Adaptec|AIC-1160 [Family Fiber Channel Adapter]"
0x9004	0x2178	"aic7xxx"	"Adaptec|AIC-7821"
0x9004	0x3860	"aic7xxx"	"Adaptec|AHA-2930CU"
0x9004	0x3b78	"unknown"	"Adaptec|AHA-4844W/4844UW"
0x9004	0x5075	"aic7xxx"	"Adaptec|AIC-755x"
0x9004	0x5078	"aic7xxx"	"Adaptec|AHA-7850"
0x9004	0x5175	"aic7xxx"	"Adaptec|AIC-755x"
0x9004	0x5178	"aic7xxx"	"Adaptec|AIC-7851"
0x9004	0x5275	"aic7xxx"	"Adaptec|AIC-755x"
0x9004	0x5278	"aic7xxx"	"Adaptec|AIC-7852"
0x9004	0x5375	"aic7xxx"	"Adaptec|AIC-755x"
0x9004	0x5378	"aic7xxx"	"Adaptec|AIC-7850"
0x9004	0x5475	"aic7xxx"	"Adaptec|AIC-2930"
0x9004	0x5478	"aic7xxx"	"Adaptec|AIC-7850"
0x9004	0x5575	"aic7xxx"	"Adaptec|AVA-2930"
0x9004	0x5578	"aic7xxx"	"Adaptec|AIC-7855"
0x9004	0x5675	"aic7xxx"	"Adaptec|AIC-755x"
0x9004	0x5678	"aic7xxx"	"Adaptec|AIC-7850"
0x9004	0x5775	"aic7xxx"	"Adaptec|AIC-755x"
0x9004	0x5778	"aic7xxx"	"Adaptec|AIC-7850"
0x9004	0x5800	"aic7xxx"	"Adaptec|AIC-5800"
0x9004	0x5900	"unknown"	"Adaptec|ANA-5910/5930/5940 ATM155 & 25 LAN Adapter"
0x9004	0x5905	"unknown"	"Adaptec|ANA-5910A/5930A/5940A ATM Adapter"
0x9004	0x6038	"aic7xxx"	"Adaptec|AIC-3860"
0x9004	0x6075	"aic7xxx"	"Adaptec|AIC-1480 / APA-1480"
0x9004	0x6078	"aic7xxx"	"Adaptec|AIC-7860"
0x9004	0x6178	"aic7xxx"	"Adaptec|AIC-7861"
0x9004	0x6278	"aic7xxx"	"Adaptec|AIC-7860"
0x9004	0x6378	"aic7xxx"	"Adaptec|AIC-7860"
0x9004	0x6478	"aic7xxx"	"Adaptec|AIC-786"
0x9004	0x6578	"aic7xxx"	"Adaptec|AIC-786x"
0x9004	0x6678	"aic7xxx"	"Adaptec|AIC-786"
0x9004	0x6778	"aic7xxx"	"Adaptec|AIC-786x"
0x9004	0x6915	"unknown"	"Adaptec|ANA620xx/ANA69011A Fast Ethernet"
0x9004	0x7078	"aic7xxx"	"Adaptec|AHA-294x / AIC-7870"
0x9004	0x7178	"aic7xxx"	"Adaptec|AHA-294x / AIC-7871"
0x9004	0x7278	"aic7xxx"	"Adaptec|AHA-3940 / AIC-7872"
0x9004	0x7378	"aic7xxx"	"Adaptec|AHA-3985 / AIC-7873"
0x9004	0x7478	"aic7xxx"	"Adaptec|AHA-2944 / AIC-7874"
0x9004	0x7578	"aic7xxx"	"Adaptec|AHA-3944 / AHA-3944W / 7875"
0x9004	0x7678	"aic7xxx"	"Adaptec|AHA-4944W/UW / 7876"
0x9004	0x7778	"aic7xxx"	"Adaptec|AIC-787x"
0x9004	0x7810	"aic7xxx"	"Adaptec|AIC-7810"
0x9004	0x7815	"aic7xxx"	"Adaptec|AIC-7815 RAID+Memory Controller IC"
0x9004	0x7850	"aic7xxx"	"Adaptec|AIC-7850"
0x9004	0x7855	"aic7xxx"	"Adaptec|AHA-2930"
0x9004	0x7860	"aic7xxx"	"Adaptec|AIC-7860"
0x9004	0x7870	"aic7xxx"	"Adaptec|AIC-7870"
0x9004	0x7871	"aic7xxx"	"Adaptec|AHA-2940"
0x9004	0x7872	"aic7xxx"	"Adaptec|AHA-3940"
0x9004	0x7873	"aic7xxx"	"Adaptec|AHA-3980"
0x9004	0x7874	"aic7xxx"	"Adaptec|AHA-2944"
0x9004	0x7880	"aic7xxx"	"Adaptec|AIC-7880P"
0x9004	0x7890	"aic7xxx"	"Adaptec|AIC-7890"
0x9004	0x7891	"aic7xxx"	"Adaptec|AIC-789x"
0x9004	0x7892	"aic7xxx"	"Adaptec|AIC-789x"
0x9004	0x7893	"aic7xxx"	"Adaptec|AIC-789x"
0x9004	0x7894	"aic7xxx"	"Adaptec|AIC-789x"
0x9004	0x7895	"aic7xxx"	"Adaptec|AHA-2940U/UW / AHA-39xx / AIC-7895"
0x9004	0x7896	"aic7xxx"	"Adaptec|AIC-789x"
0x9004	0x7897	"aic7xxx"	"Adaptec|AIC-789x"
0x9004	0x8078	"aic7xxx"	"Adaptec|AIC-7880U"
0x9004	0x8178	"aic7xxx"	"Adaptec|AIC-7881U"
0x9004	0x8278	"aic7xxx"	"Adaptec|AHA-3940U/UW / AIC-7882U"
0x9004	0x8378	"aic7xxx"	"Adaptec|AHA-3940U/UW / AIC-7883U"
0x9004	0x8478	"aic7xxx"	"Adaptec|AHA-294x / AIC-7884U"
0x9004	0x8578	"aic7xxx"	"Adaptec|AHA-3944U / AHA-3944UWD / 7885"
0x9004	0x8678	"aic7xxx"	"Adaptec|AHA-4944UW / 7886"
0x9004	0x8778	"aic7xxx"	"Adaptec|AIC-788x"
0x9004	0x8878	"aic7xxx"	"Adaptec|7888"
0x9004	0x8b78	"aic7xxx"	"Adaptec|ABA-1030"
0x9004	0xec78	"aic7xxx"	"Adaptec|AHA-4944W/UW"
0x9005	0x0010	"aic7xxx"	"Adaptec|AHA-2940U2/W"
0x9005	0x0011	"aic7xxx"	"Adaptec|2930U2"
0x9005	0x0013	"aic7xxx"	"Adaptec|78902"
0x9005	0x001f	"aic7xxx"	"Adaptec|AHA-2940U2/W / 7890"
0x9005	0x0020	"aic7xxx"	"Adaptec|AIC-7890"
0x9005	0x002f	"aic7xxx"	"Adaptec|AIC-7890"
0x9005	0x0030	"aic7xxx"	"Adaptec|AIC-7890"
0x9005	0x003f	"aic7xxx"	"Adaptec|AIC-7890"
0x9005	0x0050	"aic7xxx"	"Adaptec|3940U2"
0x9005	0x0051	"aic7xxx"	"Adaptec|3950U2D"
0x9005	0x0053	"aic7xxx"	"Adaptec|AIC-7896 SCSI Controller"
0x9005	0x005f	"aic7xxx"	"Adaptec|7896"
0x9005	0x0080	"aic7xxx"	"Adaptec|7892A"
0x9005	0x0081	"aic7xxx"	"Adaptec|7892B"
0x9005	0x0083	"aic7xxx"	"Adaptec|7892D"
0x9005	0x008f	"aic7xxx"	"Adaptec|7892P"
0x9005	0x00c0	"aic7xxx"	"Adaptec|7899A"
0x9005	0x00c1	"aic7xxx"	"Adaptec|7899B"
0x9005	0x00c3	"aic7xxx"	"Adaptec|7899D"
0x9005	0x00c5	"unknown"	"Adaptec|RAID subsystem HBA"
0x9005	0x00cf	"aic7xxx"	"Adaptec|7899P"
0x9005	0x1364	"aacraid"	"Adaptec|Dell PowerEdge RAID Controller 2"
0x9005	0x1365	"aacraid"	"Adaptec|Dell PowerEdge RAID Controller 2"
0x907f	0x2015	"unknown"	"Atronics|IDE-2015PL"
0x9412	0x6565	"unknown"	"Holtek|6565"
0x9699	0x6565	"unknown"	"Omni Media Technology Inc|6565"
0xd4d4	0x0601	"unknown"	"Dy4 Systems Inc|PCI Mezzanine Card"
0xe000	0xe000	"unknown"	"Winbond|W89C940"
0xe159	0x0001	"hisax"	"Tiger Jet Network Inc.|Model 300 128k"
0xedd8	0xa091	"Card:Ark Logic ARK1000PV (generic)"	"ARK Logic Inc|1000PV [Stingray]"
0xedd8	0xa099	"Card:Ark Logic ARK2000MT (generic)"	"ARK Logic Inc|2000PV [Stingray]"
0xedd8	0xa0a1	"Card:Ark Logic ARK2000MT (generic)"	"ARK Logic Inc|2000MT"
0xedd8	0xa0a9	"Card:Ark Logic ARK2000MT (generic)"	"ARK Logic Inc|2000MI"
0xff00	0x0070	"bttv"	"Osprey|Osprey-100"
0xff01	0x0070	"bttv"	"Osprey|Osprey-200"
0xfffe	0x0710	"unknown"	"VMWare Inc|Virtual SVGA"