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
|
/*
* THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.
*
* generated from:
* OpenBSD: pcidevs,v 1.72 1998/07/21 20:48:24 mickey Exp
*/
/* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */
/*
* Copyright (c) 1995, 1996 Christopher G. Demetriou
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Christopher G. Demetriou
* for the NetBSD Project.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* NOTE: a fairly complete list of PCI codes can be found at:
*
* http://www.halcyon.com/scripts/jboemler/pci/pcicode
*/
/*
* List of known PCI vendors
*/
#define PCI_VENDOR_MARTINMARIETTA 0x003d /* Lockheed Martin Corp */
#define PCI_VENDOR_COMPAQ 0x0e11 /* Compaq */
#define PCI_VENDOR_SYMBIOS 0x1000 /* Symbios Logic Inc */
#define PCI_VENDOR_KOLTER 0x1001 /* KOLTER ELECTRONIC */
#define PCI_VENDOR_ATI 0x1002 /* ATI Technologies */
#define PCI_VENDOR_ULSI 0x1003 /* ULSI Systems */
#define PCI_VENDOR_VLSI 0x1004 /* VLSI Technology */
#define PCI_VENDOR_AVANCE 0x1005 /* Avance Logic */
#define PCI_VENDOR_REPLY 0x1006 /* Reply Group */
#define PCI_VENDOR_NETFRAME 0x1007 /* NetFrame Systems */
#define PCI_VENDOR_EPSON 0x1008 /* Epson */
#define PCI_VENDOR_PHOENIX 0x100a /* Phoenix Technologies */
#define PCI_VENDOR_NS 0x100b /* National Semiconductor */
#define PCI_VENDOR_TSENG 0x100c /* Tseng Labs */
#define PCI_VENDOR_AST 0x100d /* AST Research */
#define PCI_VENDOR_WEITEK 0x100e /* Weitek */
#define PCI_VENDOR_VIDEOLOGIC 0x1010 /* Video Logic */
#define PCI_VENDOR_DEC 0x1011 /* Digital Equipment */
#define PCI_VENDOR_MICRONICS 0x1012 /* Micronics Computers */
#define PCI_VENDOR_CIRRUS 0x1013 /* Cirrus Logic */
#define PCI_VENDOR_IBM 0x1014 /* IBM */
#define PCI_VENDOR_LSIL 0x1015 /* LSI Logic Corp of Canada */
#define PCI_VENDOR_ICLPERSONAL 0x1016 /* ICL Personal Systems */
#define PCI_VENDOR_SPEA 0x1017 /* SPEA Software */
#define PCI_VENDOR_UNISYS 0x1018 /* Unisys Systems */
#define PCI_VENDOR_ELITEGROUP 0x1019 /* Elitegroup Computer Systems */
#define PCI_VENDOR_NCR 0x101a /* AT&T Global Information Systems */
#define PCI_VENDOR_VITESSE 0x101b /* Vitesse Semiconductor */
#define PCI_VENDOR_WD 0x101c /* Western Digital */
#define PCI_VENDOR_AMI 0x101e /* American Megatrends */
#define PCI_VENDOR_PICTURETEL 0x101f /* PictureTel */
#define PCI_VENDOR_HITACHICOMP 0x1020 /* Hitachi Computer Products */
#define PCI_VENDOR_OKI 0x1021 /* OKI Electric Industry */
#define PCI_VENDOR_AMD 0x1022 /* Advanced Micro Devices */
#define PCI_VENDOR_TRIDENT 0x1023 /* Trident Microsystems */
#define PCI_VENDOR_ZENITH 0x1024 /* Zenith Data Systems */
#define PCI_VENDOR_ACER 0x1025 /* Acer */
#define PCI_VENDOR_DELL 0x1028 /* Dell Computer */
#define PCI_VENDOR_SNI 0x1029 /* Siemens Nixdorf AG */
#define PCI_VENDOR_LSILOGIC 0x102a /* LSI Logic, Headland div. */
#define PCI_VENDOR_MATROX 0x102b /* Matrox */
#define PCI_VENDOR_CHIPS 0x102c /* Chips and Technologies */
#define PCI_VENDOR_WYSE 0x102d /* WYSE Technology */
#define PCI_VENDOR_OLIVETTI 0x102e /* Olivetti Advanced Technology */
#define PCI_VENDOR_TOSHIBA 0x102f /* Toshiba America */
#define PCI_VENDOR_TMCRESEARCH 0x1030 /* TMC Research */
#define PCI_VENDOR_MIRO 0x1031 /* Miro Computer Products */
#define PCI_VENDOR_COMPAQ2 0x1032 /* Compaq (2nd ID) */
#define PCI_VENDOR_NEC 0x1033 /* NEC */
#define PCI_VENDOR_BURNDY 0x1034 /* Burndy */
#define PCI_VENDOR_COMPCOMM 0x1035 /* Comp. & Comm. Research Lab */
#define PCI_VENDOR_FUTUREDOMAIN 0x1036 /* Future Domain */
#define PCI_VENDOR_HITACHIMICRO 0x1037 /* Hitach Microsystems */
#define PCI_VENDOR_AMP 0x1038 /* AMP */
#define PCI_VENDOR_SIS 0x1039 /* Silicon Integrated System */
#define PCI_VENDOR_SEIKOEPSON 0x103a /* Seiko Epson */
#define PCI_VENDOR_TATUNGAMERICA 0x103b /* Tatung Co. of America */
#define PCI_VENDOR_HP 0x103c /* Hewlett-Packard */
#define PCI_VENDOR_SOLLIDAY 0x103e /* Solliday Engineering */
#define PCI_VENDOR_LOGICMODELLING 0x103f /* Logic Modeling */
#define PCI_VENDOR_KPC 0x1040 /* Kubota Pacific */
#define PCI_VENDOR_COMPUTREND 0x1041 /* Computrend */
#define PCI_VENDOR_PCTECH 0x1042 /* PC Technology */
#define PCI_VENDOR_ASUSTEK 0x1043 /* Asustek Computer */
#define PCI_VENDOR_DPT 0x1044 /* Distributed Processing Technology */
#define PCI_VENDOR_OPTI 0x1045 /* Opti */
#define PCI_VENDOR_IPCCORP 0x1046 /* IPC Corporation */
#define PCI_VENDOR_GENOA 0x1047 /* Genoa Systems */
#define PCI_VENDOR_ELSA 0x1048 /* Elsa */
#define PCI_VENDOR_FOUNTAINTECH 0x1049 /* Fountain Technology */
#define PCI_VENDOR_SGSTHOMSON 0x104a /* SGS Thomson Microelectric */
#define PCI_VENDOR_BUSLOGIC 0x104b /* BusLogic */
#define PCI_VENDOR_TI 0x104c /* Texas Instruments */
#define PCI_VENDOR_SONY 0x104d /* Sony */
#define PCI_VENDOR_OAKTECH 0x104e /* Oak Technology */
#define PCI_VENDOR_COTIME 0x104f /* Co-time Computer */
#define PCI_VENDOR_WINBOND 0x1050 /* Winbond Electronics */
#define PCI_VENDOR_ANIGMA 0x1051 /* Anigma */
#define PCI_VENDOR_YOUNGMICRO 0x1052 /* Young Micro Systems */
#define PCI_VENDOR_HITACHI 0x1054 /* Hitachi */
#define PCI_VENDOR_EFARMICRO 0x1055 /* Efar Microsystems */
#define PCI_VENDOR_ICL 0x1056 /* ICL */
#define PCI_VENDOR_MOT 0x1057 /* Motorola */
#define PCI_VENDOR_ETR 0x1058 /* Electronics & Telec. RSH */
#define PCI_VENDOR_TEKNOR 0x1059 /* Teknor Microsystems */
#define PCI_VENDOR_PROMISE 0x105a /* Promise Technology */
#define PCI_VENDOR_FOXCONN 0x105b /* Foxconn International */
#define PCI_VENDOR_WIPRO 0x105c /* Wipro Infotech */
#define PCI_VENDOR_NUMBER9 0x105d /* Number 9 Computer Company */
#define PCI_VENDOR_VTECH 0x105e /* Vtech Computers */
#define PCI_VENDOR_INFOTRONIC 0x105f /* Infotronic America */
#define PCI_VENDOR_UMC 0x1060 /* United Microelectronics */
#define PCI_VENDOR_ITT 0x1061 /* I. T. T. */
#define PCI_VENDOR_MASPAR 0x1062 /* MasPar Computer */
#define PCI_VENDOR_OCEANOA 0x1063 /* Ocean Office Automation */
#define PCI_VENDOR_ALCATEL 0x1064 /* Alcatel CIT */
#define PCI_VENDOR_TEXASMICRO 0x1065 /* Texas Microsystems */
#define PCI_VENDOR_PICOPOWER 0x1066 /* Picopower Technology */
#define PCI_VENDOR_MITSUBISHI 0x1067 /* Mitsubishi Electronics */
#define PCI_VENDOR_DIVERSIFIED 0x1068 /* Diversified Technology */
#define PCI_VENDOR_MYLEX 0x1069 /* Mylex */
#define PCI_VENDOR_ATEN 0x106a /* Aten Research */
#define PCI_VENDOR_APPLE 0x106b /* Apple Computer */
#define PCI_VENDOR_HYUNDAI 0x106c /* Hyundai Electronics America */
#define PCI_VENDOR_SEQUENT 0x106d /* Sequent */
#define PCI_VENDOR_DFI 0x106e /* DFI */
#define PCI_VENDOR_CITYGATE 0x106f /* City Gate Development */
#define PCI_VENDOR_DAEWOO 0x1070 /* Daewoo Telecom */
#define PCI_VENDOR_MITAC 0x1071 /* Mitac */
#define PCI_VENDOR_GIT 0x1072 /* GIT Co. */
#define PCI_VENDOR_YAMAHA 0x1073 /* Yamaha */
#define PCI_VENDOR_NEXGEN 0x1074 /* NexGen Microsystems */
#define PCI_VENDOR_AIR 0x1075 /* Advanced Integration Research */
#define PCI_VENDOR_CHAINTECH 0x1076 /* Chaintech Computer */
#define PCI_VENDOR_QLOGIC 0x1077 /* QLogic */
#define PCI_VENDOR_CYRIX 0x1078 /* Cyrix */
#define PCI_VENDOR_IBUS 0x1079 /* I-Bus */
#define PCI_VENDOR_NETWORTH 0x107a /* NetWorth */
#define PCI_VENDOR_GATEWAY 0x107b /* Gateway 2000 */
#define PCI_VENDOR_GOLDSTART 0x107c /* Goldstar */
#define PCI_VENDOR_LEADTEK 0x107d /* LeadTek Research */
#define PCI_VENDOR_INTERPHASE 0x107e /* Interphase */
#define PCI_VENDOR_DATATECH 0x107f /* Data Technology Corporation */
#define PCI_VENDOR_CONTAQ 0x1080 /* Contaq Microsystems */
#define PCI_VENDOR_SUPERMAC 0x1081 /* Supermac Technology */
#define PCI_VENDOR_EFA 0x1082 /* EFA */
#define PCI_VENDOR_FOREX 0x1083 /* Forex Computer */
#define PCI_VENDOR_PARADOR 0x1084 /* Parador */
#define PCI_VENDOR_TULIP 0x1085 /* Tulip Computers */
#define PCI_VENDOR_JBOND 0x1086 /* J. Bond Computer Systems */
#define PCI_VENDOR_CACHECOMP 0x1087 /* Cache Computer */
#define PCI_VENDOR_MICROCOMP 0x1088 /* Microcomputer Systems */
#define PCI_VENDOR_DG 0x1089 /* Data General */
#define PCI_VENDOR_BIT3 0x108a /* Bit3 Computer Corp. */
#define PCI_VENDOR_ELONEX 0x108c /* Elonex PLC c/o Oakleigh Systems */
#define PCI_VENDOR_OLICOM 0x108d /* Olicom */
#define PCI_VENDOR_SUN 0x108e /* Sun Microsystems */
#define PCI_VENDOR_SYSTEMSOFT 0x108f /* Systemsoft */
#define PCI_VENDOR_ENCORE 0x1090 /* Encore Computer */
#define PCI_VENDOR_INTERGRAPH 0x1091 /* Intergraph */
#define PCI_VENDOR_DIAMOND 0x1092 /* Diamond Computer Systems */
#define PCI_VENDOR_NATIONALINST 0x1093 /* National Instruments */
#define PCI_VENDOR_FICOMP 0x1094 /* First Int'l Computers */
#define PCI_VENDOR_CMDTECH 0x1095 /* CMD Technology */
#define PCI_VENDOR_ALACRON 0x1096 /* Alacron */
#define PCI_VENDOR_APPIAN 0x1097 /* Appian Technology */
#define PCI_VENDOR_QUANTUMDESIGNS 0x1098 /* Quantum Designs */
#define PCI_VENDOR_SAMSUNGELEC 0x1099 /* Samsung Electronics */
#define PCI_VENDOR_PACKARDBELL 0x109a /* Packard Bell */
#define PCI_VENDOR_GEMLIGHT 0x109b /* Gemlight Computer */
#define PCI_VENDOR_MEGACHIPS 0x109c /* Megachips */
#define PCI_VENDOR_ZIDA 0x109d /* Zida Technologies */
#define PCI_VENDOR_BROOKTREE 0x109e /* Brooktree */
#define PCI_VENDOR_TRIGEM 0x109f /* Trigem Computer */
#define PCI_VENDOR_MEIDENSHA 0x10a0 /* Meidensha */
#define PCI_VENDOR_JUKO 0x10a1 /* Juko Electronics */
#define PCI_VENDOR_QUANTUM 0x10a2 /* Quantum */
#define PCI_VENDOR_EVEREX 0x10a3 /* Everex Systems */
#define PCI_VENDOR_GLOBE 0x10a4 /* Globe Manufacturing Sales */
#define PCI_VENDOR_RACAL 0x10a5 /* Racal Interlan */
#define PCI_VENDOR_INFORMTECH 0x10a6 /* Informtech Industrial */
#define PCI_VENDOR_BENCHMARQ 0x10a7 /* Benchmarq Microelectronics */
#define PCI_VENDOR_SIERRA 0x10a8 /* Sierra Semiconductor */
#define PCI_VENDOR_SGI 0x10a9 /* Silicon Graphics */
#define PCI_VENDOR_ACC 0x10aa /* ACC Microelectronics */
#define PCI_VENDOR_DIGICOM 0x10ab /* Digicom */
#define PCI_VENDOR_HONEYWELL 0x10ac /* Honeywell IASD */
#define PCI_VENDOR_SYMPHONY 0x10ad /* Symphony Labs */
#define PCI_VENDOR_CORNERSTONE 0x10ae /* Cornerstone Technology */
#define PCI_VENDOR_MICROCOMPSON 0x10af /* Micro Computer Sysytems (M) SON */
#define PCI_VENDOR_CARDEXPER 0x10b0 /* CardExpert Technology */
#define PCI_VENDOR_CABLETRON 0x10B1 /* Cabletron Systems */
#define PCI_VENDOR_RAYETHON 0x10b2 /* Raytheon */
#define PCI_VENDOR_DATABOOK 0x10b3 /* Databook */
#define PCI_VENDOR_STB 0x10b4 /* STB Systems */
#define PCI_VENDOR_PLX 0x10b5 /* PLX Technology */
#define PCI_VENDOR_MADGE 0x10b6 /* Madge Networks */
#define PCI_VENDOR_3COM 0x10B7 /* 3Com */
#define PCI_VENDOR_SMC 0x10b8 /* Standard Microsystems */
#define PCI_VENDOR_ALI 0x10b9 /* Acer Labs */
#define PCI_VENDOR_MITSUBISHIELEC 0x10ba /* Mitsubishi Electronics */
#define PCI_VENDOR_DAPHA 0x10bb /* Dapha Electronics */
#define PCI_VENDOR_ALR 0x10bc /* Advanced Logic Research */
#define PCI_VENDOR_SURECOM 0x10bd /* Surecom Technology */
#define PCI_VENDOR_TSENGLABS 0x10be /* Tseng Labs International */
#define PCI_VENDOR_MOST 0x10bf /* Most */
#define PCI_VENDOR_BOCA 0x10c0 /* Boca Research */
#define PCI_VENDOR_ICM 0x10c1 /* ICM */
#define PCI_VENDOR_AUSPEX 0x10c2 /* Auspex Systems */
#define PCI_VENDOR_SAMSUNGSEMI 0x10c3 /* Samsung Semiconductors */
#define PCI_VENDOR_AWARD 0x10c4 /* Award Software Int'l */
#define PCI_VENDOR_XEROX 0x10c5 /* Xerox */
#define PCI_VENDOR_RAMBUS 0x10c6 /* Rambus */
#define PCI_VENDOR_MEDIAVIS 0x10c7 /* Media Vision */
#define PCI_VENDOR_NEOMAGIC 0x10c8 /* Neomagic */
#define PCI_VENDOR_DATAEXPERT 0x10c9 /* Dataexpert */
#define PCI_VENDOR_FUJITSU 0x10ca /* Fujitsu */
#define PCI_VENDOR_OMRON 0x10cb /* Omron */
#define PCI_VENDOR_MENTOR 0x10cc /* Mentor ARC */
#define PCI_VENDOR_ADVSYSPROD 0x10cd /* Advanced System Products */
#define PCI_VENDOR_RADIUS 0x10ce /* Radius */
#define PCI_VENDOR_CITICORP 0x10cf /* Citicorp TTI */
#define PCI_VENDOR_FUJITSU2 0x10d0 /* Fujitsu Limited (2nd ID) */
#define PCI_VENDOR_FUTUREPLUS 0x10d1 /* Future+ Systems */
#define PCI_VENDOR_MOLEX 0x10d2 /* Molex */
#define PCI_VENDOR_JABIL 0x10d3 /* Jabil Circuit */
#define PCI_VENDOR_HAULON 0x10d4 /* Hualon Microelectronics */
#define PCI_VENDOR_AUTOLOGIC 0x10d5 /* Autologic */
#define PCI_VENDOR_CETIA 0x10d6 /* Cetia */
#define PCI_VENDOR_BCM 0x10d7 /* BCM Advanced */
#define PCI_VENDOR_APL 0x10d8 /* Advanced Peripherals Labs */
#define PCI_VENDOR_MACRONIX 0x10d9 /* Macronix */
#define PCI_VENDOR_THOMASCONRAD 0x10da /* Thomas-Conrad */
#define PCI_VENDOR_ROHM 0x10db /* Rohm Research */
#define PCI_VENDOR_CERN 0x10dc /* CERN/ECP/EDU */
#define PCI_VENDOR_ES 0x10dd /* Evans & Sutherland */
#define PCI_VENDOR_NVIDIA 0x10de /* Nvidia */
#define PCI_VENDOR_EMULEX 0x10df /* Emulex */
#define PCI_VENDOR_IMS 0x10e0 /* Integrated Micro Solutions */
#define PCI_VENDOR_TEKRAM 0x10e1 /* Tekram Technology (1st ID) */
#define PCI_VENDOR_APTIX 0x10e2 /* Aptix */
#define PCI_VENDOR_NEWBRIDGE 0x10e3 /* Newbridge Microsystems */
#define PCI_VENDOR_TANDEM 0x10e4 /* Tandem Computers */
#define PCI_VENDOR_MICROINDUSTRIES 0x10e5 /* Micro Industries */
#define PCI_VENDOR_GAINBERY 0x10e6 /* Gainbery Computer Products */
#define PCI_VENDOR_VADEM 0x10e7 /* Vadem */
#define PCI_VENDOR_AMCIRCUITS 0x10e8 /* Applied Micro Circuits */
#define PCI_VENDOR_ALPSELECTIC 0x10e9 /* Alps Electric */
#define PCI_VENDOR_INTERGRAPHICS 0x10ea /* Integraphics Systems */
#define PCI_VENDOR_ARTISTSGRAPHICS 0x10eb /* Artists Graphics */
#define PCI_VENDOR_REALTEK 0x10ec /* Realtek Semiconductor */
#define PCI_VENDOR_ASCIICORP 0x10ed /* ASCII Corporation */
#define PCI_VENDOR_XILINX 0x10ee /* Xilinx */
#define PCI_VENDOR_RACORE 0x10ef /* Racore Computer Products */
#define PCI_VENDOR_PERITEK 0x10f0 /* Peritek */
#define PCI_VENDOR_TYAN 0x10f1 /* Tyan Computer */
#define PCI_VENDOR_ACHME 0x10f2 /* Achme Computer */
#define PCI_VENDOR_ALARIS 0x10f3 /* Alaris */
#define PCI_VENDOR_SMOS 0x10f4 /* S-MOS Systems */
#define PCI_VENDOR_NKK 0x10f5 /* NKK */
#define PCI_VENDOR_CREATIVE 0x10f6 /* Creative Electronic Systems */
#define PCI_VENDOR_MATSUSHITA 0x10f7 /* Matsushita */
#define PCI_VENDOR_ALTOS 0x10f8 /* Altos India */
#define PCI_VENDOR_PCDIRECT 0x10f9 /* PC Direct */
#define PCI_VENDOR_TRUEVISIO 0x10fa /* Truevision */
#define PCI_VENDOR_THESYS 0x10fb /* Thesys Ges. F. Mikroelektronik */
#define PCI_VENDOR_IODATA 0x10fc /* I-O Data Device */
#define PCI_VENDOR_SOYO 0x10fd /* Soyo Technology */
#define PCI_VENDOR_FAST 0x10fe /* Fast Electronic */
#define PCI_VENDOR_NCUBE 0x10ff /* NCube */
#define PCI_VENDOR_JAZZ 0x1100 /* Jazz Multimedia */
#define PCI_VENDOR_INITIO 0x1101 /* Initio */
#define PCI_VENDOR_CREATIVELABS 0x1102 /* Creative Labs */
#define PCI_VENDOR_TRIONES 0x1103 /* Triones Technologies */
#define PCI_VENDOR_RASTEROPS 0x1104 /* RasterOps */
#define PCI_VENDOR_SIGMA 0x1105 /* Sigma Designs */
#define PCI_VENDOR_VIATECH 0x1106 /* VIA Technologies */
#define PCI_VENDOR_STRATIS 0x1107 /* Stratus Computer */
#define PCI_VENDOR_PROTEON 0x1108 /* Proteon */
#define PCI_VENDOR_COGENT 0x1109 /* Cogent Data Technologies */
#define PCI_VENDOR_SIEMENS 0x110a /* Siemens AG / Siemens Nixdorf AG */
#define PCI_VENDOR_XENON 0x110b /* Xenon Microsystems */
#define PCI_VENDOR_MINIMAX 0x110c /* Mini-Max Technology */
#define PCI_VENDOR_ZNYX 0x110d /* Znyx Advanced Systems */
#define PCI_VENDOR_CPUTECH 0x110e /* CPU Technology */
#define PCI_VENDOR_ROSS 0x110f /* Ross Technology */
#define PCI_VENDOR_POWERHOUSE 0x1110 /* Powerhouse Systems */
#define PCI_VENDOR_SCO 0x1111 /* Santa Cruz Operation */
#define PCI_VENDOR_RNS 0x1112 /* RNS */
#define PCI_VENDOR_ACCTON 0x1113 /* Accton Technology */
#define PCI_VENDOR_ATMEL 0x1114 /* Atmel */
#define PCI_VENDOR_DUPONT 0x1115 /* DuPont Pixel Systems */
#define PCI_VENDOR_DATATRANSLATION 0x1116 /* Data Translation */
#define PCI_VENDOR_DATACUBE 0x1117 /* Datacube */
#define PCI_VENDOR_BERG 0x1118 /* Berg Electronics */
#define PCI_VENDOR_VORTEX 0x1119 /* Vortex Computer Systems */
#define PCI_VENDOR_EFFICIENTNETS 0x111a /* Efficent Networks */
#define PCI_VENDOR_TELEDYNE 0x111b /* Teledyne Electronic Systems */
#define PCI_VENDOR_TRICORD 0x111c /* Tricord Systems */
#define PCI_VENDOR_IDT 0x111d /* IDT */
#define PCI_VENDOR_ELDEC 0x111e /* Eldec */
#define PCI_VENDOR_PDI 0x111f /* Prescision Digital Images */
#define PCI_VENDOR_EMC 0x1120 /* Emc */
#define PCI_VENDOR_ZILOG 0x1121 /* Zilog */
#define PCI_VENDOR_MULTITECH 0x1122 /* Multi-tech Systems */
#define PCI_VENDOR_EDI 0x1123 /* Excellent Design, Inc. */
#define PCI_VENDOR_LEUTRON 0x1124 /* Leutron Vision */
#define PCI_VENDOR_EUROCORE 0x1125 /* Eurocore/Vigra */
#define PCI_VENDOR_VIGRA 0x1126 /* Vigra */
#define PCI_VENDOR_FORE 0x1127 /* FORE Systems */
#define PCI_VENDOR_FIRMWORKS 0x1129 /* Firmworks */
#define PCI_VENDOR_HERMES 0x112a /* Hermes Electronics */
#define PCI_VENDOR_LINOTYPE 0x112b /* Linotype */
#define PCI_VENDOR_ZENITH2 0x112c /* Zenith Data Systems (2nd ID) */
#define PCI_VENDOR_RAVICAD 0x112d /* Ravicad */
#define PCI_VENDOR_INFOMEDIA 0x112e /* Infomedia Microelectronics */
#define PCI_VENDOR_IMAGINGTECH 0x112f /* Imaging Technlogy */
#define PCI_VENDOR_COMPUTERVISION 0x1130 /* Computervision */
#define PCI_VENDOR_PHILIPS 0x1131 /* Philips */
#define PCI_VENDOR_MITEL 0x1132 /* Mitel */
#define PCI_VENDOR_EICON 0x1133 /* Eicon Technology */
#define PCI_VENDOR_MCS 0x1134 /* Mercury Computer Systems */
#define PCI_VENDOR_FUJIXEROX 0x1135 /* Fuji Xerox */
#define PCI_VENDOR_MOMENTUM 0x1136 /* Momentum Data Systems */
#define PCI_VENDOR_CISCO 0x1137 /* Cisco Systems */
#define PCI_VENDOR_ZIATECH 0x1138 /* Ziatech */
#define PCI_VENDOR_DYNPIC 0x1139 /* Dynamic Pictures */
#define PCI_VENDOR_FWB 0x113a /* FWB */
#define PCI_VENDOR_NCD 0x113b /* Network Computing Devices */
#define PCI_VENDOR_CYCLONE 0x113c /* Cyclone Micro */
#define PCI_VENDOR_LEADINGEDGE 0x113d /* Leading Edge */
#define PCI_VENDOR_SANYO 0x113e /* Sanyo Electric */
#define PCI_VENDOR_EQUINOX 0x113f /* Equinox Systems */
#define PCI_VENDOR_INTERVOICE 0x1140 /* Intervoice */
#define PCI_VENDOR_CREST 0x1141 /* Crest Microsystem */
#define PCI_VENDOR_ALLIANCE 0x1142 /* Alliance Semiconductor */
#define PCI_VENDOR_NETPOWER 0x1143 /* NetPower */
#define PCI_VENDOR_CINMILACRON 0x1144 /* Cincinnati Milacron */
#define PCI_VENDOR_WORKBIT 0x1145 /* Workbit */
#define PCI_VENDOR_FORCE 0x1146 /* Force Computers */
#define PCI_VENDOR_INTERFACE 0x1147 /* Interface */
#define PCI_VENDOR_SCHNEIDERKOCH 0x1148 /* Schneider & Koch */
#define PCI_VENDOR_WINSYSTEM 0x1149 /* Win System */
#define PCI_VENDOR_VMIC 0x114a /* VMIC */
#define PCI_VENDOR_CANOPUS 0x114b /* Canopus */
#define PCI_VENDOR_ANNABOOKS 0x114c /* Annabooks */
#define PCI_VENDOR_IC 0x114d /* IC Corporation */
#define PCI_VENDOR_NIKON 0x114e /* Nikon Systems */
#define PCI_VENDOR_DIGIINTERNAT 0x114f /* Digi International */
#define PCI_VENDOR_TMC 0x1150 /* Thinking Machines */
#define PCI_VENDOR_JAE 0x1151 /* JAE Electronics */
#define PCI_VENDOR_MEGATEK 0x1152 /* Megatek */
#define PCI_VENDOR_LANDWIN 0x1153 /* Land Win Electronic */
#define PCI_VENDOR_MELCO 0x1154 /* Melco */
#define PCI_VENDOR_PINETECH 0x1155 /* Pine Technology */
#define PCI_VENDOR_PERISCOPE 0x1156 /* Periscope Engineering */
#define PCI_VENDOR_AVSYS 0x1157 /* Avsys */
#define PCI_VENDOR_VOARX 0x1158 /* Voarx R & D */
#define PCI_VENDOR_MUTECH 0x1159 /* Mutech */
#define PCI_VENDOR_HARLEQUIN 0x115a /* Harlequin */
#define PCI_VENDOR_PARALLAX 0x115b /* Parallax Graphics */
#define PCI_VENDOR_PHOTRON 0x115c /* Photron Ltd. */
#define PCI_VENDOR_XIRCOM 0x115d /* Xircom */
#define PCI_VENDOR_PEERPROTO 0x115e /* Peer Protocols */
#define PCI_VENDOR_MAXTOR 0x115f /* Maxtor */
#define PCI_VENDOR_MEGASOFT 0x1160 /* Megasoft */
#define PCI_VENDOR_PFU 0x1161 /* PFU Limited */
#define PCI_VENDOR_OALAB 0x1162 /* OA Laboratory */
#define PCI_VENDOR_SYNEMA 0x1163 /* Synema */
#define PCI_VENDOR_APT 0x1164 /* Advanced Peripherals Technologies */
#define PCI_VENDOR_IMAGRAPH 0x1165 /* Imagraph */
#define PCI_VENDOR_PEQUR 0x1166 /* Pequr Technology */
#define PCI_VENDOR_MUTOH 0x1167 /* Mutoh Industries */
#define PCI_VENDOR_THINE 0x1168 /* Thine Electronics */
#define PCI_VENDOR_CDAC 0x1169 /* Centre for Dev. of Advanced Computing */
#define PCI_VENDOR_POLARIS 0x116a /* Polaris Communications */
#define PCI_VENDOR_CONNECTWARE 0x116b /* Connectware */
#define PCI_VENDOR_INTRES 0x116c /* Intelligent Resources */
#define PCI_VENDOR_E4I 0x116e /* Electronics for Imaging */
#define PCI_VENDOR_WSTECH 0x116f /* Workstation Technology */
#define PCI_VENDOR_INVENTEC 0x1170 /* Inventec */
#define PCI_VENDOR_LOUGHSOUND 0x1171 /* Loughborough Sound Images */
#define PCI_VENDOR_ALTERA 0x1172 /* Altera Corperation */
#define PCI_VENDOR_ADOBE 0x1173 /* Adobe Systems */
#define PCI_VENDOR_BRIDGEPORT 0x1174 /* Bridgeport Machines */
#define PCI_VENDOR_MIRTRON 0x1175 /* Mitron Computer */
#define PCI_VENDOR_SBE 0x1176 /* SBE */
#define PCI_VENDOR_SILICONENG 0x1177 /* Silicon Engineering */
#define PCI_VENDOR_ALFA 0x1178 /* Alfa */
#define PCI_VENDOR_TOSHIBA2 0x1179 /* Toshiba Info Systems (2nd ID) */
#define PCI_VENDOR_ATREND 0x117a /* A-Trend Technology */
#define PCI_VENDOR_LGEI 0x117b /* LG Electronics Inc. */
#define PCI_VENDOR_ATTO 0x117c /* Atto Technology */
#define PCI_VENDOR_BND 0x117d /* Becton & Dickinson */
#define PCI_VENDOR_TR 0x117e /* T/R Systems */
#define PCI_VENDOR_ICS 0x117f /* Integrated Circuit Systems */
#define PCI_VENDOR_RICOH 0x1180 /* Ricoh */
#define PCI_VENDOR_TELEMATICS 0x1181 /* Telematics International */
#define PCI_VENDOR_FUJIKURA 0x1183 /* Fujikura */
#define PCI_VENDOR_FORKS 0x1184 /* Forks */
#define PCI_VENDOR_DATAWORLD 0x1185 /* Dataworld */
#define PCI_VENDOR_DLINK 0x1186 /* D-Link Systems */
#define PCI_VENDOR_ATL 0x1187 /* Advanced Techonoloy Labratories */
#define PCI_VENDOR_SHIMA 0x1188 /* Shima Seiki Manufacturing */
#define PCI_VENDOR_MATSUSHITA2 0x1189 /* Matsushita Electronics (2nd ID) */
#define PCI_VENDOR_HILEVEL 0x118a /* HiLevel Technology */
#define PCI_VENDOR_HYPERTEC 0x118b /* Hypertec Pty Ltd */
#define PCI_VENDOR_COROLLARY 0x118c /* Corrollary */
#define PCI_VENDOR_BITFLOW 0x118d /* BitFlow */
#define PCI_VENDOR_HERMSTEDT 0x118e /* Hermstedt */
#define PCI_VENDOR_GREENLOGIC 0x118f /* Green Logic */
#define PCI_VENDOR_ARTOP 0x1191 /* Artop Electric */
#define PCI_VENDOR_DENSAN 0x1192 /* Densan */
#define PCI_VENDOR_ZEINET 0x1193 /* Zeinet */
#define PCI_VENDOR_TOUCAN 0x1194 /* Toucan Technology */
#define PCI_VENDOR_RATOC 0x1195 /* Ratoc System */
#define PCI_VENDOR_HYTEC 0x1196 /* Hytec Electronic */
#define PCI_VENDOR_GAGE 0x1197 /* Gage Applied Sciences */
#define PCI_VENDOR_LAMBDA 0x1198 /* Lambda Systems */
#define PCI_VENDOR_DCA 0x1199 /* Digital Communications Associates */
#define PCI_VENDOR_MINDSHARE 0x119a /* Mind Share */
#define PCI_VENDOR_OMEGA 0x119b /* Omega Micro */
#define PCI_VENDOR_ITI 0x119c /* Information Technology Institute */
#define PCI_VENDOR_BUG 0x119d /* Bug Sapporo */
#define PCI_VENDOR_FUJITSU3 0x119e /* Fujitsu (3th PCI Vendor ID) */
#define PCI_VENDOR_BULL 0x119f /* Bull Hn Information Systems */
#define PCI_VENDOR_CONVEX 0x11a0 /* Convex Computer */
#define PCI_VENDOR_HAMAMATSU 0x11a1 /* Hamamatsu Photonics */
#define PCI_VENDOR_SIERRA2 0x11a2 /* Sierra Research & Technology (2nd ID) */
#define PCI_VENDOR_DEURETZBACHER 0x11a3 /* Deuretzbacher GmbH & Co. Eng. KG */
#define PCI_VENDOR_BARCO 0x11a4 /* Barco */
#define PCI_VENDOR_MICROUNITY 0x11a5 /* MicroUnity Systems Engineering */
#define PCI_VENDOR_PUREDATA 0x11a6 /* Pure Data */
#define PCI_VENDOR_POWERCC 0x11a7 /* Power Computing */
#define PCI_VENDOR_SYSTECH 0x11a8 /* Systech Corp. */
#define PCI_VENDOR_INNOSYS 0x11a9 /* InnoSys */
#define PCI_VENDOR_ACTEL 0x11aa /* Actel */
#define PCI_VENDOR_GALILEO 0x11ab /* Galileo Technology */
#define PCI_VENDOR_CANNON 0x11ac /* Cannon IS */
#define PCI_VENDOR_LITEON 0x11ad /* Lite-On */
#define PCI_VENDOR_SCITEX 0x11ae /* Scitex */
#define PCI_VENDOR_AVID 0x11af /* Avid Technology Inc. */
#define PCI_VENDOR_V3 0x11b0 /* V3 Semiconductor */
#define PCI_VENDOR_APRICOT 0x11b1 /* Apricot Computer */
#define PCI_VENDOR_KODAK 0x11b2 /* Eastman Kodak */
#define PCI_VENDOR_BARR 0x11b3 /* Barr Systems */
#define PCI_VENDOR_LEITECH 0x11b4 /* Leitch Technology */
#define PCI_VENDOR_RADSTONE 0x11b5 /* Radstone Technology */
#define PCI_VENDOR_UNITEDVIDEO 0x11b6 /* United Video */
#define PCI_VENDOR_MOT2 0x11b7 /* Motorola (2nd ID) */
#define PCI_VENDOR_XPOINT 0x11b8 /* Xpoint Technologies */
#define PCI_VENDOR_PATHLIGHT 0x11b9 /* Pathlight Technology */
#define PCI_VENDOR_VIDEOTRON 0x11ba /* VideoTron */
#define PCI_VENDOR_PYRAMID 0x11bb /* Pyramid Technologies */
#define PCI_VENDOR_NETPERIPH 0x11bc /* Network Peripherals */
#define PCI_VENDOR_PINNACLE 0x11bd /* Pinnacle Systems */
#define PCI_VENDOR_IMI 0x11be /* International Microcircuts */
#define PCI_VENDOR_ASTRODESIGN 0x11bf /* Astrodesign Inc. */
#define PCI_VENDOR_HP2 0x11c0 /* Hewlett-Packard (2nd ID) */
#define PCI_VENDOR_ATT 0x11c1 /* AT&T Microelectronics */
#define PCI_VENDOR_SAND 0x11c2 /* Sand Microelectronics */
#define PCI_VENDOR_NEC2 0x11c3 /* NEC (2nd ID) */
#define PCI_VENDOR_DOCTECH 0x11c4 /* Document Technologies */
#define PCI_VENDOR_SHIVA 0x11c5 /* Shiva Corporation */
#define PCI_VENDOR_DSMFG 0x11c6 /* Dainippon Screen Mfg. Co */
#define PCI_VENDOR_DCMDATA 0x11c7 /* DCM Data Systems */
#define PCI_VENDOR_DOLPHIN 0x11c8 /* Dolphin Interconnect Solutions */
#define PCI_VENDOR_MRTMAGMA 0x11c9 /* Mesa Ridge Technologies (MAGMA) */
#define PCI_VENDOR_LSISYS 0x11ca /* LSI Systems */
#define PCI_VENDOR_SPECIALIX 0x11cb /* Specialix Research */
#define PCI_VENDOR_MKC 0x11cc /* Michels & Kleberhoff Computer */
#define PCI_VENDOR_HAL 0x11cd /* HAL Computer Systems */
#define PCI_VENDOR_PRIMRATE 0x11ce /* Primary Rate Inc */
#define PCI_VENDOR_PIONEER 0x11cf /* Pioneer Electronic Corporation */
#define PCI_VENDOR_LORAL 0x11d0 /* Loral Frederal Systems - Manassas */
#define PCI_VENDOR_AURAVISION 0x11d1 /* AuraVision Corporation */
#define PCI_VENDOR_INTERCOM 0x11d2 /* Intercom Inc. */
#define PCI_VENDOR_TRANCELL 0x11d3 /* Trancell Systems Inc */
#define PCI_VENDOR_ANALOGDEV 0x11d4 /* Analog Devices */
#define PCI_VENDOR_IKON 0x11d5 /* Ikon Corporation */
#define PCI_VENDOR_TEKELEC 0x11d6 /* Tekelec Technologies */
#define PCI_VENDOR_TRENTONTERM 0x11d7 /* Trenton Terminals Inc */
#define PCI_VENDOR_ITD 0x11d8 /* Image Technologies Development */
#define PCI_VENDOR_TEC 0x11d9 /* Tec Corporation */
#define PCI_VENDOR_NOVELL 0x11da /* Novell */
#define PCI_VENDOR_SEGA 0x11db /* Sega Enterprises Ltd */
#define PCI_VENDOR_QUESTRA 0x11dc /* Questra Corporation */
#define PCI_VENDOR_CROSSFIELD 0x11dd /* Crosfield Electronics Ltd */
#define PCI_VENDOR_ZORAN 0x11de /* Zoran */
#define PCI_VENDOR_NEWWAVE 0x11df /* New Wave Pdg */
#define PCI_VENDOR_CRAYCOMM 0x11e0 /* Cray Communications A/S */
#define PCI_VENDOR_GPSI 0x11e1 /* Gec Plessey Semi Inc */
#define PCI_VENDOR_SAMSUNGISA 0x11e2 /* Samsung Information Systems America */
#define PCI_VENDOR_QUICKLOGIC 0x11e3 /* Quicklogic Corp */
#define PCI_VENDOR_2NDWAVE 0x11e4 /* Second Wave Inc */
#define PCI_VENDOR_IIXC 0x11E5 /* IIX Consulting */
#define PCI_VENDOR_MZSR 0x11e6 /* Mitsui-Zosen System Research */
#define PCI_VENDOR_TOSHIB3 0x11e7 /* Toshiba America, Elec. Co (3rd ID) */
#define PCI_VENDOR_DPS 0x11e8 /* Digital Processing Systems Inc */
#define PCI_VENDOR_HIGHWATER 0x11e9 /* Highwater Designs Ltd */
#define PCI_VENDOR_ELSAGDAILEY 0x11ea /* Elsag Bailey */
#define PCI_VENDOR_FORMATION 0x11eb /* Formation Inc */
#define PCI_VENDOR_CORECO 0x11ec /* Coreco Inc */
#define PCI_VENDOR_MEDIAMATICS 0x11ed /* Mediamatics */
#define PCI_VENDOR_DISYS 0x11ee /* Dome Imaging Systems Inc */
#define PCI_VENDOR_NICOLETECH 0x11ef /* Nicolet Technologies BV */
#define PCI_VENDOR_COMPUSHACK 0x11f0 /* Compu-Shack GmbH */
#define PCI_VENDOR_SYMBIOS2 0x11f1 /* Symbios Logic Inc (2nd ID) */
#define PCI_VENDOR_PICTURETEL2 0x11f2 /* Picture Tel Japan KK (2nd ID) */
#define PCI_VENDOR_KEITHLEY 0x11f3 /* Keithley Metrabyte */
#define PCI_VENDOR_KINETICSYS 0x11f4 /* Kinetic Systems Corporation */
#define PCI_VENDOR_COMPDEVS 0x11f5 /* Computing Devices Intl */
#define PCI_VENDOR_COMPEX 0x11f6 /* Compex */
#define PCI_VENDOR_SCIATLANTA 0x11f7 /* Scientific Atlanta */
#define PCI_VENDOR_PMCSIERRA 0x11f8 /* PMC-Sierra */
#define PCI_VENDOR_ICUBE 0x11F9 /* I-Cube Inc */
#define PCI_VENDOR_KASAN 0x11FA /* Kasan Electronics Co Ltd */
#define PCI_VENDOR_DATEL 0x11FB /* Datel Inc */
#define PCI_VENDOR_SILICONMAG 0x11FC /* Silicon Magic */
#define PCI_VENDOR_HIGHSTREET 0x11FD /* High Street Consultants */
#define PCI_VENDOR_COMTROL 0x11FE /* Comtrol Corp */
#define PCI_VENDOR_SCION 0x11FF /* Scion Corp */
#define PCI_VENDOR_CSS 0x1200 /* CSS Corp */
#define PCI_VENDOR_VISTA 0x1201 /* Vista Controls Corp */
#define PCI_VENDOR_NGC 0x1202 /* Network General Corp */
#define PCI_VENDOR_BAYER 0x1203 /* Bayer Corporation, Agfa Div */
#define PCI_VENDOR_LATTICE 0x1204 /* Lattice Semiconductor Corp */
#define PCI_VENDOR_ARRAY 0x1205 /* Array Corp */
#define PCI_VENDOR_AMDAHL 0x1206 /* Amdahl Corp */
#define PCI_VENDOR_PARSYTEC 0x1208 /* Parsytec GmbH */
#define PCI_VENDOR_SCISYS 0x1209 /* Sci Systems Inc */
#define PCI_VENDOR_SYNAPTEL 0x120A /* Synaptel */
#define PCI_VENDOR_ADAPSOL 0x120B /* Adaptive Solutions */
#define PCI_VENDOR_COMPRESLABS 0x120D /* Compression Labs, Inc. */
#define PCI_VENDOR_CYCLADES 0x120e /* Cyclades */
#define PCI_VENDOR_ESSENTIAL 0x120f /* Essential Communications */
#define PCI_VENDOR_HPT 0x1210 /* Hyperparallel Technologies */
#define PCI_VENDOR_BRAINTECH 0x1211 /* Braintech Inc */
#define PCI_VENDOR_KINGSTON 0x1212 /* Kingston Technology Corp */
#define PCI_VENDOR_AISI 0x1213 /* Applied Intelligent Systems Inc */
#define PCI_VENDOR_PTI 0x1214 /* Performance Technologies Inc */
#define PCI_VENDOR_INTERWARE 0x1215 /* Interware Co Ltd */
#define PCI_VENDOR_PURUP 0x1216 /* Purup Prepress A/S */
#define PCI_VENDOR_2MICRO 0x1217 /* 2 Micro Inc */
#define PCI_VENDOR_HYBRICON 0x1218 /* Hybricon Corporation */
#define PCI_VENDOR_1STVIRTUAL 0x1219 /* First Virtual Corporation */
#define PCI_VENDOR_3DFX 0x121a /* 3DFX Interactive Inc */
#define PCI_VENDOR_ADM 0x121b /* Advanced Telecommunications Modules */
#define PCI_VENDOR_NIPPON 0x121c /* Nippon Texa Co Ltd */
#define PCI_VENDOR_LIPPERT 0x121d /* Lippert Automationstechnik GmbH */
#define PCI_VENDOR_CSPI 0x121e /* CSPI */
#define PCI_VENDOR_ARCUS 0x121f /* Arcus Technology Inc */
#define PCI_VENDOR_ARIEL 0x1220 /* Ariel */
#define PCI_VENDOR_CONTEC 0x1221 /* Contec Co Ltd */
#define PCI_VENDOR_ANCOR 0x1222 /* Ancor Communications Inc */
#define PCI_VENDOR_HEURIKON 0x1223 /* Heurikon/Computer Products */
#define PCI_VENDOR_IACTIMAGES 0x1224 /* Interactive Images */
#define PCI_VENDOR_POWERIO 0x1225 /* Power I/O Inc. */
#define PCI_VENDOR_TECHSRC 0x1227 /* Tech-Source */
#define PCI_VENDOR_NEOAS 0x1228 /* Norsk Elektro Optikk A/S */
#define PCI_VENDOR_DATAKINESIS 0x1229 /* Data Kinesis Inc. */
#define PCI_VENDOR_INTELECOM 0x122A /* Integrated Telecom */
#define PCI_VENDOR_LGIS 0x122B /* LG Industrial Systems Co. Ltd. */
#define PCI_VENDOR_SICAN 0x122c /* Sican GmbH */
#define PCI_VENDOR_AZTECH 0x122d /* Aztech */
#define PCI_VENDOR_XYRATEX 0x122e /* Xyratex */
#define PCI_VENDOR_ANDREW 0x122f /* Andrew Corporation */
#define PCI_VENDOR_FISHCAMP 0x1230 /* Fishcamp Engineering */
#define PCI_VENDOR_WOODWARD 0x1231 /* Woodward McCoach Inc. */
#define PCI_VENDOR_GPT 0x1232 /* GPT Ltd. */
#define PCI_VENDOR_BUSTECH 0x1233 /* Bus-Tech Inc. */
#define PCI_VENDOR_TECHNICAL 0x1234 /* Technical Corp */
#define PCI_VENDOR_RMSI 0x1235 /* Risq Modular Systems Inc. */
#define PCI_VENDOR_SIGMAD 0x1236 /* Sigma Designs Corp. */
#define PCI_VENDOR_ALTATECH 0x1237 /* Alta Technology Corp. */
#define PCI_VENDOR_ADTRAN 0x1238 /* Adtran */
#define PCI_VENDOR_3DO 0x1239 /* The 3D0 Company */
#define PCI_VENDOR_VBISICOM 0x123A /* Visicom Laboratories Inc. */
#define PCI_VENDOR_SEEQTECH 0x123B /* Seeq Technology Inc. */
#define PCI_VENDOR_CENTSYS 0x123C /* Century Systems Inc. */
#define PCI_VENDOR_EDTI 0x123D /* Engineering Design Team Inc. */
#define PCI_VENDOR_CCUBE 0x123F /* C-Cube Microsystems */
#define PCI_VENDOR_MARATHONTECH 0x1240 /* Marathon Technologies Corp. */
#define PCI_VENDOR_DSC 0x1241 /* DSC Communications */
#define PCI_VENDOR_DELPHAX 0x1243 /* Delphax */
#define PCI_VENDOR_AVM 0x1244 /* AVM */
#define PCI_VENDOR_APDSA 0x1245 /* APD S.A. */
#define PCI_VENDOR_DIPIXTECH 0x1246 /* Dipix Technologies Inc */
#define PCI_VENDOR_XYLON 0x1247 /* Xylon Research Inc. */
#define PCI_VENDOR_CDC 0x1248 /* Central Data Corp. */
#define PCI_VENDOR_SAMSUNG 0x1249 /* Samsung Electronics Co. Ltd. */
#define PCI_VENDOR_AEG 0x124A /* AEG Electrocom GmbH */
#define PCI_VENDOR_GREENSPRING 0x124B /* GreenSpring Computers */
#define PCI_VENDOR_SOLITRON 0x124C /* Solitron Technologies Inc. */
#define PCI_VENDOR_STALLION 0x124d /* Stallion Technologies */
#define PCI_VENDOR_CYLINK 0x124E /* Cylink */
#define PCI_VENDOR_INFORTREND 0x124F /* Infortrend Technology Inc */
#define PCI_VENDOR_HITACHIMCSYS 0x1250 /* Hitachi Microcomputer System Ltd. */
#define PCI_VENDOR_VLSISOL 0x1251 /* VLSI Solution OY */
#define PCI_VENDOR_GUZIK 0x1253 /* Guzik Technical Enterprises */
#define PCI_VENDOR_LINEARSYS 0x1254 /* Linear Systems */
#define PCI_VENDOR_OPTIBASE 0x1255 /* Optibase Ltd. */
#define PCI_VENDOR_PSI 0x1256 /* Perceptive Solutions Inc. */
#define PCI_VENDOR_VERTEXNET 0x1257 /* Vertex Networks Inc. */
#define PCI_VENDOR_GILBARCO 0x1258 /* Gilbarco Inc. */
#define PCI_VENDOR_ALLIEDTEL 0x1259 /* Allied Telesyn International */
#define PCI_VENDOR_ABBPS 0x125a /* ABB Power Systems */
#define PCI_VENDOR_ASIX 0x125b /* Asix Electronics Corporation */
#define PCI_VENDOR_AURORA 0x125c /* Aurora Technologies */
#define PCI_VENDOR_ESSTECH 0x125D /* ESS Technology */
#define PCI_VENDOR_SESRL 0x125E /* Specialvideo Engineering SRL */
#define PCI_VENDOR_CTI 0x125F /* Concurrent Technologies Inc. */
#define PCI_VENDOR_HARRIS 0x1260 /* Harris Semiconductor */
#define PCI_VENDOR_MATSISHITA3 0x1261 /* Matsushita-Kotobuki Electronics Industr */
#define PCI_VENDOR_ESC 0x1262 /* ES Computer Co. Ltd. */
#define PCI_VENDOR_SONIC 0x1263 /* Sonic Solutions */
#define PCI_VENDOR_AVAL 0x1264 /* Aval Nagasaki Corp. */
#define PCI_VENDOR_CASIO 0x1265 /* Casio Computer Co. Ltd. */
#define PCI_VENDOR_MICRODYNE 0x1266 /* Microdyne Corp. */
#define PCI_VENDOR_SATC 0x1267 /* S.A. Telecommunications */
#define PCI_VENDOR_TEKTRONIX 0x1268 /* Tektronix */
#define PCI_VENDOR_THOMSON 0x1269 /* Thomson-CSF/TTM */
#define PCI_VENDOR_LEXMARK 0x126A /* Lexmark International Inc. */
#define PCI_VENDOR_ADAX 0x126B /* Adax Inc. */
#define PCI_VENDOR_NORTHTELCOM 0x126C /* Northern Telecom */
#define PCI_VENDOR_SPLASHTECH 0x126D /* Splash Technology Inc. */
#define PCI_VENDOR_SMI 0x126E /* Sumitomo Metal Industries Ltd. */
#define PCI_VENDOR_SILICONMOTION 0x126F /* Silicon Motion */
#define PCI_VENDOR_OLYMPUSOPT 0x1270 /* Olympus Optical Co. Ltd. */
#define PCI_VENDOR_GWI 0x1271 /* GW Instruments */
#define PCI_VENDOR_TELEMATICS2 0x1272 /* Telematics International (2nd ID) */
#define PCI_VENDOR_HNS 0x1273 /* Hughes Network Systems */
#define PCI_VENDOR_ENSONIQ 0x1274 /* Ensoniq */
#define PCI_VENDOR_NETAPP 0x1275 /* Network Appliance */
#define PCI_VENDOR_SNTI 0x1276 /* Switched Network Technologies Inc. */
#define PCI_VENDOR_COMSTREAM 0x1277 /* Comstream */
#define PCI_VENDOR_TPS 0x1278 /* Transtech Parallel Systems */
#define PCI_VENDOR_TRANSMETA 0x1279 /* Transmeta Corporation */
#define PCI_VENDOR_ROCKWELL 0x127a /* Rockwell Semiconductor Systems */
#define PCI_VENDOR_PIXERA 0x127B /* Pixera Corp */
#define PCI_VENDOR_XPTSOLUTIONS 0x127C /* Crosspoint Solutions Inc. */
#define PCI_VENDOR_VELA 0x127D /* Vela Research */
#define PCI_VENDOR_WINNOV 0x127E /* Winnov, L.P. */
#define PCI_VENDOR_FUJIFILM 0x127F /* Fujifilm */
#define PCI_VENDOR_PSG 0x1280 /* Photoscript Group Ltd. */
#define PCI_VENDOR_YOKOGAWA 0x1281 /* Yokogawa Electronic Corp. */
#define PCI_VENDOR_DAVICOM 0x1282 /* Davicom Semiconductor Inc. */
#define PCI_VENDOR_ITE 0x1283 /* Integrated Technology Express Inc. */
#define PCI_VENDOR_SAHARANET 0x1284 /* Sahara Networks Inc. */
#define PCI_VENDOR_PLATFORMTECH 0x1285 /* Platform Technologies Inc. */
#define PCI_VENDOR_MAZET 0x1286 /* Mazet GmbH */
#define PCI_VENDOR_LUXSONOR 0x1287 /* LuxSonor Inc. */
#define PCI_VENDOR_TIMESTEP 0x1288 /* Timestep Corp. */
#define PCI_VENDOR_AVCTECH 0x1289 /* AVC Technology Inc. */
#define PCI_VENDOR_ASANTECH 0x128A /* Asante Technologies Inc. */
#define PCI_VENDOR_TRANSWITCH 0x128B /* Transwitch Corp. */
#define PCI_VENDOR_RETIX 0x128C /* Retix Corp. */
#define PCI_VENDOR_G2NETS 0x128D /* G2 Networks Inc. */
#define PCI_VENDOR_SAMHO 0x128E /* Samho Multi Tech Ltd. */
#define PCI_VENDOR_TATENO 0x128F /* Tateno Dennou Inc. */
#define PCI_VENDOR_SORD 0x1290 /* Sord Computer Corp. */
#define PCI_VENDOR_NCS 0x1291 /* NCS Computer Italia */
#define PCI_VENDOR_TRITECH 0x1292 /* TriTech Microelectronics */
#define PCI_VENDOR_MRT 0x1293 /* Media Reality Technology */
#define PCI_VENDOR_RHETORES 0x1294 /* Rhetorex Inc. */
#define PCI_VENDOR_IMAGINATION 0x1295 /* Imagenation Corporation */
#define PCI_VENDOR_KOFAX 0x1296 /* Kofax Image Products */
#define PCI_VENDOR_HOLCO 0x1297 /* Holco Enterprise */
#define PCI_VENDOR_SPELLCASTER 0x1298 /* Spellcaster Telecommunications Inc. */
#define PCI_VENDOR_KTLABS 0x1299 /* Knowledge Technology Laboratories */
#define PCI_VENDOR_VMETRO 0x129A /* VMETRO */
#define PCI_VENDOR_IMAGEACCESS 0x129B /* Image Access */
#define PCI_VENDOR_COMPCORE 0x129D /* CompCore Multimedia Inc. */
#define PCI_VENDOR_JVC 0x129E /* Victor Co. of Japan Ltd. */
#define PCI_VENDOR_OECMS 0x129F /* OEC Medical Systems Inc. */
#define PCI_VENDOR_ABC 0x12A0 /* Allen Bradley Co. */
#define PCI_VENDOR_SIMPACT 0x12A1 /* Simpact Inc */
#define PCI_VENDOR_NGS 0x12A2 /* NewGen Systems Corp. */
#define PCI_VENDOR_LUCENT 0x12A3 /* Lucent Technologies */
#define PCI_VENDOR_NTT 0x12A4 /* NTT Electronics Technology Co. */
#define PCI_VENDOR_VDLTD 0x12A5 /* Vision Dynamics Ltd. */
#define PCI_VENDOR_SNETS 0x12A6 /* Scalable Networks Inc. */
#define PCI_VENDOR_AMO 0x12A7 /* AMO GmbH */
#define PCI_VENDOR_NEWSDATACOM 0x12A8 /* News Datacom */
#define PCI_VENDOR_XIOTECH 0x12A9 /* Xiotech Corp. */
#define PCI_VENDOR_SDL 0x12AA /* SDL Communications Inc. */
#define PCI_VENDOR_YYECO 0x12AB /* Yuan Yuan Enterprise Co. Ltd. */
#define PCI_VENDOR_MEASUREX 0x12AC /* MeasureX Corp. */
#define PCI_VENDOR_MULTIDATA 0x12AD /* Multidata GmbH */
#define PCI_VENDOR_ALTECON 0x12AE /* lteon Networks Inc. */
#define PCI_VENDOR_TDK 0x12AF /* TDK USA Corp. */
#define PCI_VENDOR_JORGESCI 0x12B0 /* Jorge Scientific Corp. */
#define PCI_VENDOR_GAMMALINK 0x12B1 /* GammaLink */
#define PCI_VENDOR_GSNET 0x12B2 /* General Signal Networks */
#define PCI_VENDOR_IFACE 0x12B3 /* Inter-Face Co. Ltd. */
#define PCI_VENDOR_FUTURETEL 0x12B4 /* Future Tel Inc. */
#define PCI_VENDOR_GRANITESYS 0x12B5 /* Granite Systems Inc. */
#define PCI_VENDOR_NATURAL 0x12B6 /* Natural Microsystems */
#define PCI_VENDOR_ACUMEN 0x12B7 /* Acumen */
#define PCI_VENDOR_KORG 0x12B8 /* Korg */
#define PCI_VENDOR_USR 0x12B9 /* US Robotics */
#define PCI_VENDOR_BITTWARE 0x12BA /* Bittware Research Systems Inc */
#define PCI_VENDOR_NIPPONUS 0x12BB /* Nippon Unisoft Corp. */
#define PCI_VENDOR_ARRAYMSYS 0x12BC /* Array Microsystems */
#define PCI_VENDOR_COMPUTERM 0x12BD /* Computerm Corp. */
#define PCI_VENDOR_ANCHOR 0x12BE /* Anchor Chips Inc. */
#define PCI_VENDOR_FUJIFILMMD 0x12BF /* Fujifilm Microdevices */
#define PCI_VENDOR_INFIMED 0x12C0 /* Infimed */
#define PCI_VENDOR_GMM 0x12C1 /* GMM Research Corp. */
#define PCI_VENDOR_MENTEC 0x12C2 /* Mentec Ltd. */
#define PCI_VENDOR_HOLTEK 0x12C3 /* Holtek Microelectronics Inc. */
#define PCI_VENDOR_CONNECT 0x12C4 /* Connect Tech Inc. */
#define PCI_VENDOR_PICTUREEL 0x12c5 /* Picture Elements */
#define PCI_VENDOR_MITANI 0x12C6 /* Mitani Corp. */
#define PCI_VENDOR_DIALOGIC 0x12C7 /* Dialogic Corp. */
#define PCI_VENDOR_GFORCE 0x12C8 /* G Force Co. Ltd. */
#define PCI_VENDOR_GIGIOP 0x12C9 /* Gigi Operations */
#define PCI_VENDOR_ICE 0x12CA /* Integrated Computing Engines, Inc. */
#define PCI_VENDOR_ANTEX 0x12CB /* Antex Electronics Corp. */
#define PCI_VENDOR_PLUTO 0x12CC /* Pluto Technologies International */
#define PCI_VENDOR_AIMS 0x12CD /* Aims Lab */
#define PCI_VENDOR_NETSPEED 0x12CE /* Netspeed Inc. */
#define PCI_VENDOR_PROPHET 0x12CF /* Prophet Systems Inc. */
#define PCI_VENDOR_GDESYS 0x12D0 /* GDE Systems Inc. */
#define PCI_VENDOR_PSITECH 0x12D1 /* PsiTech */
#define PCI_VENDOR_STB2 0x12d2 /* STB (2nd ID) */
#define PCI_VENDOR_VINGMED 0x12D3 /* Vingmed Sound A/S */
#define PCI_VENDOR_DGMS 0x12D4 /* DGM & S */
#define PCI_VENDOR_EQUATOR 0x12D5 /* Equator Technologies */
#define PCI_VENDOR_ANALOGIC 0x12D6 /* Analogic Corp. */
#define PCI_VENDOR_BIOTRONIC 0x12D7 /* Biotronic SRL */
#define PCI_VENDOR_PERICOM 0x12D8 /* Pericom Semiconductor */
#define PCI_VENDOR_ACULAB 0x12D9 /* Aculab Plc. */
#define PCI_VENDOR_TRUETIME 0x12DA /* True Time */
#define PCI_VENDOR_ANNAPOLIS 0x12DB /* Annapolis Micro Systems Inc. */
#define PCI_VENDOR_SYMICRON 0x12DC /* Symicron Computer Communication Ltd. */
#define PCI_VENDOR_MGI 0x12DD /* Management Graphics Inc. */
#define PCI_VENDOR_RAINBOW 0x12DE /* Rainbow Technologies */
#define PCI_VENDOR_SBSTECH 0x12DF /* SBS Technologies Inc. */
#define PCI_VENDOR_CHASE 0x12E0 /* Chase Research PLC */
#define PCI_VENDOR_NINTENDO 0x12E1 /* Nintendo Co. Ltd. */
#define PCI_VENDOR_DATUM 0x12E2 /* Datum Inc., Bancomm-Timing Division */
#define PCI_VENDOR_IMATION 0x12E3 /* Imation Corp. - Medical Imaging Systems */
#define PCI_VENDOR_BROOKTROUT 0x12E4 /* Brooktrout Technology Inc. */
#define PCI_VENDOR_CIREL 0x12E6 /* Cirel Systems */
#define PCI_VENDOR_SEBRING 0x12E7 /* Sebring Systems Inc */
#define PCI_VENDOR_CRISC 0x12E8 /* CRISC Corp. */
#define PCI_VENDOR_GESN 0x12E9 /* GE Spacenet */
#define PCI_VENDOR_ZUKEN 0x12EA /* Zuken */
#define PCI_VENDOR_AUREAL 0x12EB /* Aureal Semiconductor */
#define PCI_VENDOR_3AINT 0x12EC /* 3A International Inc. */
#define PCI_VENDOR_OPTIVISION 0x12ED /* Optivision Inc. */
#define PCI_VENDOR_ORANGE 0x12EE /* Orange Micro */
#define PCI_VENDOR_VIENNA 0x12EF /* Vienna Systems */
#define PCI_VENDOR_PENTEK 0x12F0 /* Pentek */
#define PCI_VENDOR_SORENSON 0x12F1 /* Sorenson Vision Inc. */
#define PCI_VENDOR_GGI 0x12F2 /* Gammagraphx Inc. */
#define PCI_VENDOR_MEGATEL 0x12F4 /* Megatel */
#define PCI_VENDOR_FORKS2 0x12F5 /* Forks (2nd ID) */
#define PCI_VENDOR_DAWSON 0x12F6 /* Dawson France */
#define PCI_VENDOR_COGNEX 0x12F7 /* Cognex */
#define PCI_VENDOR_EDESIGN 0x12F8 /* Electronic-Design GmbH */
#define PCI_VENDOR_FOURFOLD 0x12F9 /* FourFold Technologies */
#define PCI_VENDOR_ESD 0x12FE /* Electronic System Design GmbH */
#define PCI_VENDOR_RADISYS 0x1331 /* RadiSys Corporation */
#define PCI_VENDOR_VIDEOMAIL 0x1335 /* Videomail Inc. */
#define PCI_VENDOR_ODETICS 0x1347 /* Odetics */
#define PCI_VENDOR_ABBNP 0x135D /* ABB Network Partner AB */
#define PCI_VENDOR_PATRIOTSCI 0x137E /* Patriot Scientific Corp. */
#define PCI_VENDOR_CDI 0x1390 /* Concept Development Inc. */
#define PCI_VENDOR_SYMPHONY2 0x1c1c /* Symphony Labs (2nd ID) */
#define PCI_VENDOR_TEKRAM2 0x1de1 /* Tekram Technology (2nd ID) */
#define PCI_VENDOR_CHAINTECH2 0x270f /* ChainTech Computer (2nd ID) */
#define PCI_VENDOR_HANSOL 0x3000 /* Hansol Electronics Inc. */
#define PCI_VENDOR_PIS 0x3142 /* Post Impressions Systems */
#define PCI_VENDOR_3DLABS 0x3d3d /* 3D Labs */
#define PCI_VENDOR_AVANCE2 0x4005 /* Avance Logic (2nd ID) */
#define PCI_VENDOR_COGETEC 0x4594 /* Cogetec Informatique Inc. */
#define PCI_VENDOR_UMAX 0x4680 /* UMAX Computer Corp. */
#define PCI_VENDOR_NETVIN 0x4a14 /* NetVin */
#define PCI_VENDOR_BUSLOGIC2 0x4b10 /* Buslogic (2nd ID) */
#define PCI_VENDOR_S3 0x5333 /* S3 */
#define PCI_VENDOR_TUB 0x5455 /* Technische Universtiaet Berlin */
#define PCI_VENDOR_CNET 0x5519 /* Cnet Technoliges, Inc. */
#define PCI_VENDOR_NETPOWER2 0x5700 /* NetPower (2nd ID) */
#define PCI_VENDOR_C4T 0x6374 /* c't Magazin */
#define PCI_VENDOR_QUANCM 0x8008 /* Quancm Electronic GmbH */
#define PCI_VENDOR_INTEL 0x8086 /* Intel */
#define PCI_VENDOR_TRIGEM2 0x8800 /* Trigem Computer (2nd ID) */
#define PCI_VENDOR_SILICONMAG2 0x8888 /* Silicon Magic (2nd ID) */
#define PCI_VENDOR_WINBOND2 0x8c4a /* Winbond Electronics (2nd ID) */
#define PCI_VENDOR_COMPUTONE 0x8e0e /* Computone Corperation */
#define PCI_VENDOR_KTI 0x8e2e /* KTI */
#define PCI_VENDOR_ADP 0x9004 /* Adaptec */
#define PCI_VENDOR_ATRONICS 0x907f /* Atronics */
#define PCI_VENDOR_MOTIONENG 0xc0fe /* Motion Engineering Inc. */
#define PCI_VENDOR_DY4S 0xd4d4 /* DY4 Systems Inc. */
#define PCI_VENDOR_TIGERJET 0xe159 /* Tiger Jet Network Inc */
#define PCI_VENDOR_ARC 0xedd8 /* ARC Logic */
#define PCI_VENDOR_INVALID 0xffff /* INVALID VENDOR ID */
/*
* List of known products. Grouped by vendor.
*/
/* 2 Micro Inc */
#define PCI_PRODUCT_2MICRO_OZ6832 0x6832 /* OZ6832 CardBus Controller */
/* 3COM Products */
#define PCI_PRODUCT_3COM_3C590 0x5900 /* 3c590 10Mbps */
#define PCI_PRODUCT_3COM_3C595TX 0x5950 /* 3c595 100Base-TX */
#define PCI_PRODUCT_3COM_3C595T4 0x5951 /* 3c595 100Base-T4 */
#define PCI_PRODUCT_3COM_3C595MII 0x5952 /* 3c595 10Mbps-MII */
#define PCI_PRODUCT_3COM_3C900TPO 0x9000 /* 3c900 10Base-T */
#define PCI_PRODUCT_3COM_3C900COMBO 0x9001 /* 3c900 10Mbps-Combo */
#define PCI_PRODUCT_3COM_3C905TX 0x9050 /* 3c905 100Base-TX */
#define PCI_PRODUCT_3COM_3C905T4 0x9051 /* 3c905 100Base-T4 */
#define PCI_PRODUCT_3COM_3C905B 0x9055 /* 3c905B 100Base-T4 */
/* 3DFX Interactive */
#define PCI_PRODUCT_3DFX_VOODOO 0x0001 /* Voodoo */
#define PCI_PRODUCT_3DFX_VOODOO2 0x0002 /* Voodoo2 */
/* 3D Labs products */
#define PCI_PRODUCT_3DLABS_300SX 0x0001 /* 300SX (Glint) */
#define PCI_PRODUCT_3DLABS_500TX 0x0002 /* GLINT 500TX */
#define PCI_PRODUCT_3DLABS_DELTA 0x0003 /* GLINT DELTA */
#define PCI_PRODUCT_3DLABS_500MX 0x0006 /* GLINT 500MX */
/* ACC Products */
#define PCI_PRODUCT_ACC_2188 0x0000 /* ACCM 2188 VL-PCI Bridge */
/* Acer products */
#define PCI_PRODUCT_ACER_M1435 0x1435 /* M1435 VL-PCI Bridge */
/* Acer Labs products */
#define PCI_PRODUCT_ALI_M1445 0x1445 /* M1445 VL-PCI Bridge */
#define PCI_PRODUCT_ALI_M1449 0x1449 /* M1449 PCI-ISA Bridge */
#define PCI_PRODUCT_ALI_M1451 0x1451 /* M1451 Host-PCI Bridge */
#define PCI_PRODUCT_ALI_M1461 0x1461 /* M1461 Host-PCI Bridge */
#define PCI_PRODUCT_ALI_M1521 0x1521 /* M1523 Host-PCI Bridge */
#define PCI_PRODUCT_ALI_M1541 0x1541 /* M1543 Host-PCI Bridge */
#define PCI_PRODUCT_ALI_M4803 0x5215 /* M4803 */
#define PCI_PRODUCT_ALI_M1523 0x1523 /* M1523 PCI-ISA Bridge */
#define PCI_PRODUCT_ALI_M1543 0x1533 /* M1543 PCI-ISA Bridge */
#define PCI_PRODUCT_ALI_M5219 0x5219 /* M5219 UDMA IDE Controller */
#define PCI_PRODUCT_ALI_M5229 0x5229 /* M5229 UDMA IDE Controller */
#define PCI_PRODUCT_ALI_M5237 0x5237 /* M5237 USB Host Controller */
#define PCI_PRODUCT_ALI_M5243 0x5243 /* M5243 AGP/PCI-PCI Bridge */
#define PCI_PRODUCT_ALI_M7101 0x7101 /* M7101 Power Management Controller */
/* Adaptec products */
#define PCI_PRODUCT_ADP_AIC7810 0x1078 /* AIC-7810 */
#define PCI_PRODUCT_ADP_AIC7850 0x5078 /* AIC-7850 */
#define PCI_PRODUCT_ADP_AIC7855 0x5578 /* AIC-7855 */
#define PCI_PRODUCT_ADP_AIC5900 0x5900 /* AIC-5900 ATM */
#define PCI_PRODUCT_ADP_AIC5905 0x5905 /* AIC-5905 ATM */
#define PCI_PRODUCT_ADP_AIC7860 0x6078 /* AIC-7860 */
#define PCI_PRODUCT_ADP_2940AU 0x6178 /* AHA-2940A Ultra */
#define PCI_PRODUCT_ADP_AIC7870 0x7078 /* AIC-7870 */
#define PCI_PRODUCT_ADP_2940 0x7178 /* AHA-2940 */
#define PCI_PRODUCT_ADP_3940 0x7278 /* AHA-3940 */
#define PCI_PRODUCT_ADP_3985 0x7378 /* AHA-3985 */
#define PCI_PRODUCT_ADP_2944 0x7478 /* AHA-2944 */
#define PCI_PRODUCT_ADP_AIC7880 0x8078 /* AIC-7880 Ultra */
#define PCI_PRODUCT_ADP_2940U 0x8178 /* AHA-2940 Ultra */
#define PCI_PRODUCT_ADP_3940U 0x8278 /* AHA-3940 Ultra */
#define PCI_PRODUCT_ADP_398XU 0x8378 /* AHA-398X Ultra */
#define PCI_PRODUCT_ADP_2944U 0x8478 /* AHA-2944 Ultra */
/* Alliance products */
#define PCI_PRODUCT_ALLIANCE_AT24 0x6424 /* AT24 */
/* Apple products */
#define PCI_PRODUCT_APPLE_BANDIT 0x0001 /* PCI Controller */
/* AMD products */
#define PCI_PRODUCT_AMD_PCNET_PCI 0x2000 /* 79c970 PCnet-PCI LANCE Ethernet */
#define PCI_PRODUCT_AMD_PCSCSI_PCI 0x2020 /* 53c974 PCscsi-PCI SCSI */
#define PCI_PRODUCT_AMD_PCNETS_PCI 0x2040 /* 79C974 PCnet-PCI Ethernet & SCSI */
/* Apple products */
#define PCI_PRODUCT_APPLE_BANDIT 0x0001 /* PCI Controller */
/* ARC Logic products */
#define PCI_PRODUCT_ARC_1000PV 0xa091 /* 1000PV */
#define PCI_PRODUCT_ARC_2000PV 0xa099 /* 2000PV */
#define PCI_PRODUCT_ARC_2000MT 0xa0a1 /* 2000MT */
#define PCI_PRODUCT_ARC_2000MI 0xa0a9 /* 2000MI */
/* ATI products */
#define PCI_PRODUCT_ATI_MACH32 0x4158 /* Mach32 */
#define PCI_PRODUCT_ATI_MACH64_CT 0x4354 /* Mach64 CT */
#define PCI_PRODUCT_ATI_MACH64_CX 0x4358 /* Mach64 CX */
#define PCI_PRODUCT_ATI_MACH64_ET 0x4554 /* Mach64 ET */
#define PCI_PRODUCT_ATI_MACH64_VT 0x4654 /* Mach64 VT */
#define PCI_PRODUCT_ATI_MACH64_GT 0x4754 /* Mach64 GT */
#define PCI_PRODUCT_ATI_MACH64_GX 0x4758 /* Mach64 GX */
/* Applied Micro Circuts products */
#define PCI_PRODUCT_AMCIRCUITS_S5933 0x4750 /* S5933 PCI Matchmaker */
#define PCI_PRODUCT_AMCIRCUITS_LANAI 0x8043 /* Myrinet LANai Interface */
/* Atronics products */
#define PCI_PRODUCT_ATRONICS_IDE_2015PL 0x2015 /* IDE-2015PL */
/* Avance Logic products */
#define PCI_PRODUCT_AVANCE_AVL2301 0x2301 /* AVL2301 */
#define PCI_PRODUCT_AVANCE_AVG2302 0x2302 /* AVG2302 */
#define PCI_PRODUCT_AVANCE2_ALG2301 0x2301 /* ALG2301 */
#define PCI_PRODUCT_AVANCE2_ALG2302 0x2302 /* ALG2302 */
/* Bit3 products */
#define PCI_PRODUCT_BIT3_PCIVME617 0x0001 /* PCI-VME Interface Mod. 617 */
/* Brooktree products */
#define PCI_PRODUCT_BROOKTREE_BT848 0x0350 /* BT848 */
#define PCI_PRODUCT_BROOKTREE_BT849 0x0351 /* BT849 */
/* BusLogic products */
#define PCI_PRODUCT_BUSLOGIC_MULTIMASTER_NC 0x0140 /* MultiMaster NC */
#define PCI_PRODUCT_BUSLOGIC_MULTIMASTER 0x1040 /* MultiMaster */
#define PCI_PRODUCT_BUSLOGIC_FLASHPOINT 0x8130 /* FlashPoint */
/* c't Magazin products */
#define PCI_PRODUCT_C4T_GPPCI 0x6773 /* GPPCI */
/* Chips and Technologies products */
#define PCI_PRODUCT_CHIPS_64310 0x00b8 /* 64310 */
#define PCI_PRODUCT_CHIPS_65545 0x00d8 /* 65545 */
#define PCI_PRODUCT_CHIPS_65548 0x00dc /* 65548 */
#define PCI_PRODUCT_CHIPS_65550 0x00e0 /* 65550 */
#define PCI_PRODUCT_CHIPS_65554 0x00e4 /* 65554 */
#define PCI_PRODUCT_CHIPS_65555 0x00e5 /* 65555 */
/* Cirrus Logic products */
#define PCI_PRODUCT_CIRRUS_CL_GD7548 0x0038 /* CL-GD7548 */
#define PCI_PRODUCT_CIRRUS_CL_GD5430 0x00a0 /* CL-GD5430 */
#define PCI_PRODUCT_CIRRUS_CL_GD5434_4 0x00a4 /* CL-GD5434-4 */
#define PCI_PRODUCT_CIRRUS_CL_GD5434_8 0x00a8 /* CL-GD5434-8 */
#define PCI_PRODUCT_CIRRUS_CL_GD5436 0x00ac /* CL-GD5436 */
#define PCI_PRODUCT_CIRRUS_CL_GD5446 0x00b8 /* CL-GD5446 */
#define PCI_PRODUCT_CIRRUS_CL_GD5480 0x00bc /* CL-GD5480 */
#define PCI_PRODUCT_CIRRUS_CL_PD6729 0x1100 /* CL-PD6729 */
#define PCI_PRODUCT_CIRRUS_CL_PD6832 0x1110 /* CL-PD6832 */
#define PCI_PRODUCT_CIRRUS_CL_GD7542 0x1200 /* CL-GD7542 */
#define PCI_PRODUCT_CIRRUS_CL_GD7543 0x1202 /* CL-GD7543 */
#define PCI_PRODUCT_CIRRUS_CL_GD7541 0x1204 /* CL-GD7541 */
/* CMD Technology products -- info gleaned from their web site */
#define PCI_PRODUCT_CMDTECH_640 0x0640 /* PCI640 */
/* No data on the CMD Tech. web site for the following as of Mar. 3 '98 */
#define PCI_PRODUCT_CMDTECH_642 0x0642 /* PCI0642 */
#define PCI_PRODUCT_CMDTECH_643 0x0643 /* PCI0643 */
#define PCI_PRODUCT_CMDTECH_646 0x0646 /* PCI0646 */
#define PCI_PRODUCT_CMDTECH_647 0x0647 /* PCI0647 */
/* Inclusion of 'A' in the following entry is probably wrong. */
/* No data on the CMD Tech. web site for the following as of Mar. 3 '98 */
#define PCI_PRODUCT_CMDTECH_650A 0x0650 /* PCI0650A */
#define PCI_PRODUCT_CMDTECH_670 0x0670 /* USB0670 */
#define PCI_PRODUCT_CMDTECH_673 0x0673 /* USB0673 */
/* Cogent Data Technologies products */
#define PCI_PRODUCT_COGENT_EM110TX 0x1400 /* EX110TX PCI Fast Ethernet Adapter */
/* Compaq products */
#define PCI_PRODUCT_COMPAQ_PCI_EISA_BRIDGE 0x0001 /* PCI-EISA Bridge */
#define PCI_PRODUCT_COMPAQ_PCI_ISA_BRIDGE 0x0002 /* PCI-ISA Bridge */
#define PCI_PRODUCT_COMPAQ_TRIFLEX1 0x1000 /* Triflex Host-PCI Bridge */
#define PCI_PRODUCT_COMPAQ_TRIFLEX2 0x2000 /* Triflex Host-PCI Bridge */
#define PCI_PRODUCT_COMPAQ_QVISION_V0 0x3032 /* QVision */
#define PCI_PRODUCT_COMPAQ_QVISION_1280P 0x3033 /* QVision 1280/p */
#define PCI_PRODUCT_COMPAQ_QVISION_V2 0x3034 /* QVision */
#define PCI_PRODUCT_COMPAQ_TRIFLEX4 0x4000 /* Triflex Host-PCI Bridge */
#define PCI_PRODUCT_COMPAQ_USB 0x7020 /* USB Controller */
#define PCI_PRODUCT_COMPAQ_N100TX 0xae32 /* Netelligent 10/100 TX */
#define PCI_PRODUCT_COMPAQ_N10T 0xae34 /* Netelligent 10 T */
#define PCI_PRODUCT_COMPAQ_IntNF3P 0xae35 /* Integrated NetFlex 3/P */
#define PCI_PRODUCT_COMPAQ_DPNet100TX 0xae40 /* Dual Port Netelligent 10/100 TX */
#define PCI_PRODUCT_COMPAQ_IntPL100TX 0xae43 /* ProLiant Integrated Netelligent 10/100 TX */
#define PCI_PRODUCT_COMPAQ_DP4000 0xb011 /* Deskpro 4000 5233MMX */
#define PCI_PRODUCT_COMPAQ_NF3P 0xf130 /* NetFlex 3/P */
#define PCI_PRODUCT_COMPAQ_NF3P_BNC 0xf150 /* NetFlex 3/P w/ BNC */
/* Compex */
#define PCI_PRODUCT_COMPEX_COMPEXE 0x1401 /* Compex Ethernet */
/* Contaq Microsystems products */
#define PCI_PRODUCT_CONTAQ_82C599 0x0600 /* 82C599 PCI-VLB Bridge */
#define PCI_PRODUCT_CONTAQ_SIO 0xc693 /* CY82C693U PCI-ISA Bridge (System I/O) */
/* Corollary Products */
#define PCI_PRODUCT_COROLLARY_CBUSII_PCIB 0x0014 /* C-Bus II-PCI Bridge */
/* Cyclades products */
#define PCI_PRODUCT_CYCLADES_CYCLOMY_1 0x0100 /* Cyclom-Y below 1M */
#define PCI_PRODUCT_CYCLADES_CYCLOMY_2 0x0101 /* Cyclom-Y above 1M */
#define PCI_PRODUCT_CYCLADES_CYCLOMZ_1 0x0200 /* Cyclom-Z below 1M */
#define PCI_PRODUCT_CYCLADES_CYCLOMZ_2 0x0201 /* Cyclom-Z above 1M */
/* DEC products */
#define PCI_PRODUCT_DEC_21050 0x0001 /* DECchip 21050 PCI-PCI Bridge */
#define PCI_PRODUCT_DEC_21040 0x0002 /* DECchip 21040 (Tulip) */
#define PCI_PRODUCT_DEC_21030 0x0004 /* DECchip 21030 (TGA) */
#define PCI_PRODUCT_DEC_NVRAM 0x0007 /* Zephyr NV-RAM */
#define PCI_PRODUCT_DEC_KZPSA 0x0008 /* KZPSA */
#define PCI_PRODUCT_DEC_21140 0x0009 /* DECchip 21140 (FasterNet) */
#define PCI_PRODUCT_DEC_PBXGB 0x000d /* TGA2 */
#define PCI_PRODUCT_DEC_DEFPA 0x000f /* DEFPA */
/* product DEC ??? 0x0010 ??? VME Interface */
#define PCI_PRODUCT_DEC_21041 0x0014 /* DECchip 21041 (Tulip Pass 3) */
#define PCI_PRODUCT_DEC_DGLPB 0x0016 /* DGLPB (OPPO) */
#define PCI_PRODUCT_DEC_21142 0x0019 /* DECchip 21142/3 */
#define PCI_PRODUCT_DEC_21052 0x0021 /* DECchip 21052 PCI-PCI Bridge */
#define PCI_PRODUCT_DEC_21150 0x0022 /* DECchip 21150 PCI-PCI Bridge */
#define PCI_PRODUCT_DEC_21152 0x0024 /* DECchip 21152 PCI-PCI Bridge */
#define PCI_PRODUCT_DEC_21153 0x0025 /* DECchip 21153 PCI-PCI Bridge */
#define PCI_PRODUCT_DEC_21154 0x0026 /* DECchip 21154 PCI-PCI Bridge */
/* Diamond products */
#define PCI_PRODUCT_DIAMOND_VIPER 0x9001 /* Viper/PCI */
#define PCI_PRODUCT_DIAMOND_MONSTER 0x0001 /* Monster */
/* Distributed Processing Technology products */
#define PCI_PRODUCT_DPT_SC_RAID 0xa400 /* SmartCache/Raid */
/* Dolphin products */
#define PCI_PRODUCT_DOLPHIN_PCISCI 0x0658 /* PCI-SCI Bridge */
/* Emulex products */
#define PCI_PRODUCT_EMULEX_LPPFC 0x10df /* Light Pulse FibreChannel adapter */
/* Ensoniq products */
#define PCI_PRODUCT_ENSONIQ_AUDIOPCI 0x5000 /* AudioPCI */
/* Essential Communications products */
#define PCI_PRODUCT_ESSENTIAL_RR_HIPPI 0x0001 /* RoadRunner HIPPI Interface */
#define PCI_PRODUCT_ESSENTIAL_RR_GIGE 0x0005 /* RoadRunner Gig-E Interface */
/* Evans & Sutherland products */
#define PCI_PRODUCT_ES_FREEDOM 0x0001 /* Freedom PCI-GBus Interface */
/* FORE products */
#define PCI_PRODUCT_FORE_PCA200 0x0210 /* ATM PCA-200 */
#define PCI_PRODUCT_FORE_PCA200E 0x0300 /* ATM PCA-200e */
/* Future Domain products */
#define PCI_PRODUCT_FUTUREDOMAIN_TMC_18C30 0x0000 /* TMC-18C30 (36C70) */
/* Efficient Networks products */
#define PCI_PRODUCT_EFFICIENTNETS_ENI155PF 0x0000 /* 155P-MF1 ATM (FPGA) */
#define PCI_PRODUCT_EFFICIENTNETS_ENI155PA 0x0002 /* 155P-MF1 ATM (ASIC) */
/* Hewlett-Packard products */
#define PCI_PRODUCT_HP_J2585A 0x1030 /* J2585A */
/* IBM products */
#define PCI_PRODUCT_IBM_0x0002 0x0002 /* MCA Bridge */
#define PCI_PRODUCT_IBM_0x0005 0x0005 /* CPU Bridge - Alta Lite */
#define PCI_PRODUCT_IBM_0x0007 0x0007 /* CPU Bridge - Alta MP */
#define PCI_PRODUCT_IBM_0x000a 0x000a /* ISA Bridge w/PnP */
#define PCI_PRODUCT_IBM_0x0017 0x0017 /* CPU Bridge */
#define PCI_PRODUCT_IBM_0x0018 0x0018 /* Auto LANStreamer */
#define PCI_PRODUCT_IBM_GXT150P 0x001B /* GXT-150P 2D Accelerator */
#define PCI_PRODUCT_IBM_0x0020 0x0020 /* MCA Bridge */
#define PCI_PRODUCT_IBM_82351 0x0022 /* 82351 PCI-PCI Bridge */
#define PCI_PRODUCT_IBM_0x0036 0x0036 /* Miami/PCI */
/* IDT products */
#define PCI_PRODUCT_IDT_77201 0x0001 /* 77201/77211 ATM (NICStAR) */
/* Integrated Micro Solutions products */
#define PCI_PRODUCT_IMS_8849 0x8849 /* 8849 */
/* Intel products */
#define PCI_PRODUCT_INTEL_PCEB 0x0482 /* 82375EB PCI-EISA Bridge */
#define PCI_PRODUCT_INTEL_CDC 0x0483 /* 82424ZX (Saturn) Cache and DRAM controller */
#define PCI_PRODUCT_INTEL_SIO 0x0484 /* 82378IB PCI-ISA Bridge (System I/O) */
#define PCI_PRODUCT_INTEL_82426EX 0x0486 /* 82426EX PCI-to-ISA Bridge (PCIB) */
#define PCI_PRODUCT_INTEL_PCMC 0x04a3 /* 82434LX/NX (Mercury/Neptune) PCI/Cache/DRAM Controller */
#define PCI_PRODUCT_INTEL_82092AA 0x1222 /* 82092AA IDE controller */
#define PCI_PRODUCT_INTEL_SAA7116 0x1223 /* SAA7116 */
#define PCI_PRODUCT_INTEL_82596 0x1226 /* 82596 Ethernet */
#define PCI_PRODUCT_INTEL_EEPRO100 0x1227 /* EE Pro 100 10/100 Fast Ethernet */
#define PCI_PRODUCT_INTEL_EEPRO100S 0x1228 /* EE Pro 100 Smart 10/100 Fast Ethernet */
#define PCI_PRODUCT_INTEL_82557 0x1229 /* 82557 Fast Ethernet */
#define PCI_PRODUCT_INTEL_82437FX 0x122d /* 82437FX (Triton) PCI, Cache, and DRAM Controller */
#define PCI_PRODUCT_INTEL_82371 0x122e /* 82371FB (Triton) PCI-ISA Bridge */
#define PCI_PRODUCT_INTEL_82438 0x1230 /* 82438 (Triton) IDE controller */
#define PCI_PRODUCT_INTEL_82371MX 0x1234 /* 82371 (Triton MX) PCI-ISA and IDE */
#define PCI_PRODUCT_INTEL_82437MX 0x1235 /* 82437 (Triton MX) PCI/CACHECOMP/DRAM Controller */
#define PCI_PRODUCT_INTEL_82441FX 0x1237 /* 82441FX PCI and Memory Controller (PMC) */
#define PCI_PRODUCT_INTEL_82380AB 0x123c /* 82380AB Mobile PCI-to-ISA Bridge (MISA) */
#define PCI_PRODUCT_INTEL_82380FB 0x124b /* 82380FB Mobile PCI-to-PCI Bridge (MPCI2) */
#define PCI_PRODUCT_INTEL_82439HX 0x1250 /* 82439HX (Triton II) TXC Host Bridge */
#define PCI_PRODUCT_INTEL_82371SB 0x7000 /* 82371SB (Triton II) PCI-ISA Bridge */
#define PCI_PRODUCT_INTEL_82371IDE 0x7010 /* 82371SB (Triton II) IDE controller */
#define PCI_PRODUCT_INTEL_82371USB 0x7020 /* 82371SB (Triton II) USB Interface */
#define PCI_PRODUCT_INTEL_82437VX 0x7030 /* 82437VX System Controller (TVX) */
#define PCI_PRODUCT_INTEL_82439TX 0x7100 /* 82439TX System Controller (MTXC) */
#define PCI_PRODUCT_INTEL_82371AB 0x7110 /* 82371AB PIIX4 ISA Bridge */
#define PCI_PRODUCT_INTEL_82371AB_IDE 0x7111 /* 82371AB IDE controller (PIIX4) */
#define PCI_PRODUCT_INTEL_82371AB_USB 0x7112 /* 82371AB USB Host Controller (PIIX4) */
#define PCI_PRODUCT_INTEL_82371AB_PMC 0x7113 /* 82371AB Power Management Controller (PIIX4) */
#define PCI_PRODUCT_INTEL_82443LX 0x7180 /* 82443LX PCI AGP Controller (PAC) */
#define PCI_PRODUCT_INTEL_82443LX_AGP 0x7181 /* 82443LX AGP Device (PAC) */
#define PCI_PRODUCT_INTEL_82443BX 0x7190 /* 82443BX PCI AGP Controller (PAC) */
#define PCI_PRODUCT_INTEL_82443BX_AGP 0x7191 /* 82443BX AGP Device (PAC) */
#define PCI_PRODUCT_INTEL_PCI450_PB 0x84c4 /* 450 PCIset (Orion) Host-PCI bridge */
#define PCI_PRODUCT_INTEL_PCI450_MC 0x84c5 /* 450 PCIset (Orion) Memory Controller */
/* I. T. T. products */
#define PCI_PRODUCT_ITT_AGX016 0x0001 /* AGX016 */
#define PCI_PRODUCT_ITT_ITT3204 0x0002 /* ITT3204 MPEG Decoder */
/* KTI */
#define PCI_PRODUCT_KTI_KTIE 0x3000 /* KTI Ethernet */
/* LeadTek Research */
#define PCI_PRODUCT_LEADTEK_S3_805 0x0000 /* S3 805 */
/* Lite-On Communications */
#define PCI_PRODUCT_LITEON_PNIC 0x0002 /* PNIC */
/* Macronix */
#define PCI_PRODUCT_MACRONIX_MX98713 0x0512 /* PMAC 100/10base PCI MAC controller */
/* Madge Networks products */
#define PCI_PRODUCT_MADGE_COLLAGE25 0x1000 /* Collage 25 ATM adapter */
#define PCI_PRODUCT_MADGE_COLLAGE155 0x1001 /* Collage 155 ATM adapter */
/* Matrox products */
#define PCI_PRODUCT_MATROX_IMPRESSION 0x0d10 /* MGA Impression */
#define PCI_PRODUCT_MATROX_ATLAS 0x0518 /* MGA PX2085 (Atlas) */
#define PCI_PRODUCT_MATROX_MILLENIUM 0x0519 /* MGA Millenium 2064W (Storm) */
#define PCI_PRODUCT_MATROX_MYSTIQUE_220 0x051A /* MGA 1064SG 220MHz */
#define PCI_PRODUCT_MATROX_MILLENNIUM_II 0x051B /* MGA Millennium II 2164W */
#define PCI_PRODUCT_MATROX_MILLENNIUM_IIAGP 0x051F /* MGA Millennium II 2164WA-B AGP */
#define PCI_PRODUCT_MATROX_MYSTIQUE 0x102B /* MGA 1064SG */
#define PCI_PRODUCT_MATROX_PRODUCTIVA 0x1001 /* MGA Productiva G100 AGP */
/* Mylex products */
#define PCI_PRODUCT_MYLEX_960P 0x0001 /* DAC960P RAID controller */
/* Mutech products */
#define PCI_PRODUCT_MUTECH_MV1000 0x0001 /* MV1000 */
/* National Semiconductor products */
#define PCI_PRODUCT_NS_DP83810 0x0001 /* DP83810 10/100 Ethernet */
#define PCI_PRODUCT_NS_NS87410 0xd001 /* NS87410 */
/* NEC */
#define PCI_PRODUCT_NEC_XXX 0x0035 /* XXX USB */
#define PCI_PRODUCT_NEC_POWERVR2 0x0046 /* PowerVR PCX2 */
/* NeoMagic */
#define PCI_PRODUCT_NEOMAGIC_NM3160 0x0004 /* NM3160 */
/* NetVin */
#define PCI_PRODUCT_NETVIN_NV5000 0x5000 /* NetVin 5000 */
/* NCR/Symbios Logic products */
#define PCI_PRODUCT_SYMBIOS_810 0x0001 /* 53c810 */
#define PCI_PRODUCT_SYMBIOS_820 0x0002 /* 53c820 */
#define PCI_PRODUCT_SYMBIOS_825 0x0003 /* 53c825 */
#define PCI_PRODUCT_SYMBIOS_815 0x0004 /* 53c815 */
#define PCI_PRODUCT_SYMBIOS_810AP 0x0005 /* 53c810AP */
#define PCI_PRODUCT_SYMBIOS_860 0x0006 /* 53c860 */
#define PCI_PRODUCT_SYMBIOS_875 0x000f /* 53c875 */
#define PCI_PRODUCT_SYMBIOS_875J 0x008f /* 53c875J */
#define PCI_PRODUCT_SYMBIOS_885 0x000d /* 53c885 */
#define PCI_PRODUCT_SYMBIOS_895 0x000c /* 53c895 */
#define PCI_PRODUCT_SYMBIOS_896 0x000b /* 53c896 */
/* Packet Engines products */
#define PCI_PRODUCT_SYMBIOS_PE_GNIC 0x0702 /* Packet Engines G-NIC Ethernet */
/* NexGen products */
#define PCI_PRODUCT_NEXGEN_NX82C501 0x4e78 /* NX82C501 Host-PCI Bridge */
/* NKK products */
#define PCI_PRODUCT_NKK_NDR4600 0xA001 /* NDR4600 Host-PCI Bridge */
/* Number Nine products */
#define PCI_PRODUCT_NUMBER9_I128 0x2309 /* Imagine-128 */
#define PCI_PRODUCT_NUMBER9_I128_2 0x2339 /* Imagine-128 II */
/* Oak Technologies products */
#define PCI_PRODUCT_OAKTECH_OTI1007 0x0107 /* OTI107 */
/* Opti products */
#define PCI_PRODUCT_OPTI_82C557 0xc557 /* 82C557 Host Bridge */
#define PCI_PRODUCT_OPTI_82C558 0xc558 /* 82C558 PCI-ISA Bridge */
#define PCI_PRODUCT_OPTI_82C621 0xc621 /* 82C621 IDE */
#define PCI_PRODUCT_OPTI_82C822 0xc822 /* 82C822 */
#define PCI_PRODUCT_OPTI_RM861HA 0xc861 /* RM861HA */
/* PC Tech products */
#define PCI_PRODUCT_PCTECH_RZ1000 0x1000 /* RZ1000 */
/* Promise products */
#define PCI_PRODUCT_PROMISE_DC5030 0x5300 /* DC5030 */
#define PCI_PRODUCT_PROMISE_ULTRA33 0x4d33 /* Ultra DMA/ATA Bus Master IDE Accelerator */
/* QLogic products */
#define PCI_PRODUCT_QLOGIC_ISP1020 0x1020 /* ISP1020 */
#define PCI_PRODUCT_QLOGIC_ISP1022 0x1022 /* ISP1022 */
#define PCI_PRODUCT_QLOGIC_ISP2100 0x2100 /* ISP2100 */
/* Quantum Designs products */
#define PCI_PRODUCT_QUANTUMDESIGNS_8500 0x0001 /* 8500 */
#define PCI_PRODUCT_QUANTUMDESIGNS_8580 0x0002 /* 8580 */
/* Realtek (Creative Labs?) products */
#define PCI_PRODUCT_REALTEK_RT8029 0x8029 /* Ethernet */
#define PCI_PRODUCT_REALTEK_RT8139 0x8139 /* 100Mb Ethernet */
/* S3 products */
#define PCI_PRODUCT_S3_VIRGE 0x5631 /* ViRGE */
#define PCI_PRODUCT_S3_TRIO32 0x8810 /* Trio32 */
#define PCI_PRODUCT_S3_TRIO64 0x8811 /* Trio32/64 */
#define PCI_PRODUCT_S3_AURORA64P 0x8812 /* Aurora64V+ */
#define PCI_PRODUCT_S3_TRIO64UVP 0x8814 /* Trio64UV+ */
#define PCI_PRODUCT_S3_868 0x8880 /* 868 */
#define PCI_PRODUCT_S3_VIRGE_VX 0x883d /* ViRGE VX */
#define PCI_PRODUCT_S3_928 0x88b0 /* 86C928 */
#define PCI_PRODUCT_S3_864_0 0x88c0 /* 86C864-0 (Vision864) */
#define PCI_PRODUCT_S3_864_1 0x88c1 /* 86C864-1 (Vision864) */
#define PCI_PRODUCT_S3_864_2 0x88c2 /* 86C864-2 (Vision864) */
#define PCI_PRODUCT_S3_864_3 0x88c3 /* 86C864-3 (Vision864) */
#define PCI_PRODUCT_S3_964_0 0x88d0 /* 86C964-0 (Vision964) */
#define PCI_PRODUCT_S3_964_1 0x88d1 /* 86C964-1 (Vision964) */
#define PCI_PRODUCT_S3_964_2 0x88d2 /* 86C964-2 (Vision964) */
#define PCI_PRODUCT_S3_964_3 0x88d1 /* 86C964-3 (Vision964) */
#define PCI_PRODUCT_S3_968_0 0x88f0 /* 86C968-0 (Vision968) */
#define PCI_PRODUCT_S3_968_1 0x88f1 /* 86C968-1 (Vision968) */
#define PCI_PRODUCT_S3_968_2 0x88f2 /* 86C968-2 (Vision968) */
#define PCI_PRODUCT_S3_968_3 0x88f3 /* 86C968-3 (Vision968) */
#define PCI_PRODUCT_S3_TRIO64V2_DX 0x8901 /* Trio64V2/DX */
#define PCI_PRODUCT_S3_PLATO 0x8902 /* Plato */
#define PCI_PRODUCT_S3_VIRGE_DX_GX 0x8a01 /* ViRGE DX/GX */
#define PCI_PRODUCT_S3_SONICVIBES 0xca00 /* SonicVibes */
/* SGS Thomson products */
#define PCI_PRODUCT_SGSTHOMSON_2000 0x0008 /* STG 2000X */
#define PCI_PRODUCT_SGSTHOMSON_1764 0x1746 /* STG 1764X */
/* Sigma Designs */
#define PCI_PRODUCT_SIGMA_64GX 0x6401 /* 64GX */
/* Silicon Integrated System products */
#define PCI_PRODUCT_SIS_86C201 0x0001 /* 86C201 Host-AGP Bridge */
#define PCI_PRODUCT_SIS_86C202 0x0002 /* 86C202 */
#define PCI_PRODUCT_SIS_86C205 0x0005 /* 86C205 */
#define PCI_PRODUCT_SIS_85C503 0x0008 /* 85C503 */
#define PCI_PRODUCT_SIS_85C501 0x0406 /* 85C501 */
#define PCI_PRODUCT_SIS_85C496 0x0496 /* 85C496 */
#define PCI_PRODUCT_SIS_85C596 0x0496 /* 85C596 */
#define PCI_PRODUCT_SIS_85C601 0x0601 /* 85C601 */
#define PCI_PRODUCT_SIS_5511 0x5511 /* 5511 */
#define PCI_PRODUCT_SIS_5512 0x5512 /* 5512 */
#define PCI_PRODUCT_SIS_5513 0x5513 /* 5513 */
#define PCI_PRODUCT_SIS_5581 0x5581 /* 5581 */
#define PCI_PRODUCT_SIS_5582 0x5582 /* 5582 */
#define PCI_PRODUCT_SIS_5591 0x5591 /* 5591 Host-PCI Bridge */
#define PCI_PRODUCT_SIS_5596 0x5596 /* 5596 */
#define PCI_PRODUCT_SIS_6204 0x6204 /* 6204 */
#define PCI_PRODUCT_SIS_6205 0x6205 /* 6205 */
/* SMC products */
#define PCI_PRODUCT_SMC_37C665 0x1000 /* FDC 37C665 */
#define PCI_PRODUCT_SMC_37C922 0x1001 /* FDC 37C922 */
#define PCI_PRODUCT_SMC_83C170 0x0005 /* 83C170 (EPIC/100) Fast Ethernet */
/* STB products */
#define PCI_PRODUCT_STB2_RIVA128 0x0018 /* Velocity128 */
/* Surecom products */
#define PCI_PRODUCT_SURECOM_NE34 0x0e34 /* Surecom NE-34 */
/* Symphony Labs products */
#define PCI_PRODUCT_SYMPHONY_82C101 0x0001 /* 82C101 */
#define PCI_PRODUCT_SYMPHONY_82C103 0x0103 /* 82C103 */
#define PCI_PRODUCT_SYMPHONY_82C105 0x0105 /* 82C105 */
#define PCI_PRODUCT_SYMPHONY2_82C101 0x0001 /* 82C101 */
/* Tekram Technology products (1st ID)*/
#define PCI_PRODUCT_TEKRAM_DC290 0xdc29 /* DC-290(M) */
/* Tekram Technology products (2nd ID) */
#define PCI_PRODUCT_TEKRAM2_DC690C 0x690c /* DC-690C */
/* Texas Instruments products */
#define PCI_PRODUCT_TI_TLAN 0x0500 /* TLAN */
#define PCI_PRODUCT_TI_PCI1130 0xac12 /* PCI1130 PCI-CardBus Bridge */
#define PCI_PRODUCT_TI_PCI1131 0xac15 /* PCI1131 */
#define PCI_PRODUCT_TI_PCI1250 0xac16 /* PCI1250 */
#define PCI_PRODUCT_TI_PCI2030 0xac20 /* PCI2030 */
/* Toshiba products */
#define PCI_PRODUCT_TOSHIBA_R4X00 0x102f /* R4x00 Host-PCI Bridge */
#define PCI_PRODUCT_TOSHIBA_TC35856F 0x0020 /* TC35856F ATM (Meteor) */
/* Trident products */
#define PCI_PRODUCT_TRIDENT_TGUI_9320 0x9320 /* TGUI 9320 */
#define PCI_PRODUCT_TRIDENT_TGUI_9350 0x9350 /* TGUI 9350 */
#define PCI_PRODUCT_TRIDENT_TGUI_9360 0x9360 /* TGUI 9360 */
#define PCI_PRODUCT_TRIDENT_TGUI_9420 0x9420 /* TGUI 9420 */
#define PCI_PRODUCT_TRIDENT_TGUI_9440 0x9440 /* TGUI 9440 */
#define PCI_PRODUCT_TRIDENT_TGUI_9660 0x9660 /* TGUI 9660 */
#define PCI_PRODUCT_TRIDENT_TGUI_9680 0x9680 /* TGUI 9680 */
#define PCI_PRODUCT_TRIDENT_TGUI_9682 0x9682 /* TGUI 9682 */
/* TriTech Microelectronics products*/
#define PCI_PRODUCT_TRITECH_TR25202 0xfc02 /* Pyramid3D TR25202 */
/* Tseng Labs products */
#define PCI_PRODUCT_TSENG_ET4000_W32P_A 0x3202 /* ET4000w32p rev A */
#define PCI_PRODUCT_TSENG_ET4000_W32P_B 0x3205 /* ET4000w32p rev B */
#define PCI_PRODUCT_TSENG_ET4000_W32P_C 0x3206 /* ET4000w32p rev C */
#define PCI_PRODUCT_TSENG_ET4000_W32P_D 0x3207 /* ET4000w32p rev D */
#define PCI_PRODUCT_TSENG_ET6000 0x3208 /* ET6000 */
/* UMC products */
#define PCI_PRODUCT_UMC_UM82C881 0x0001 /* UM82C881 486 Chipset */
#define PCI_PRODUCT_UMC_UM82C886 0x0002 /* UM82C886 ISA Bridge */
#define PCI_PRODUCT_UMC_UM8673F 0x0101 /* UM8673F EIDE Controller */
#define PCI_PRODUCT_UMC_UM8881 0x0881 /* UM8881 HB4 486 PCI Chipset */
#define PCI_PRODUCT_UMC_UM82C891 0x0891 /* UM82C891 */
#define PCI_PRODUCT_UMC_UM886A 0x1001 /* UM886A */
#define PCI_PRODUCT_UMC_UM8886BF 0x673a /* UM8886BF */
#define PCI_PRODUCT_UMC_UM8710 0x8710 /* UM8710 */
#define PCI_PRODUCT_UMC_UM8886 0x886a /* UM8886 */
#define PCI_PRODUCT_UMC_UM8881F 0x8881 /* UM8881F PCI-Host bridge */
#define PCI_PRODUCT_UMC_UM8886F 0x8886 /* UM8886F PCI-ISA bridge */
#define PCI_PRODUCT_UMC_UM8886A 0x888a /* UM8886A */
#define PCI_PRODUCT_UMC_UM8891A 0x8891 /* UM8891A */
#define PCI_PRODUCT_UMC_UM9017F 0x9017 /* UM9017F */
#define PCI_PRODUCT_UMC_UM8886N 0xe88a /* UM8886N */
#define PCI_PRODUCT_UMC_UM8891N 0xe891 /* UM8891N */
/* ULSI Systems products */
#define PCI_PRODUCT_ULSI_US201 0x0201 /* US201 */
/* V3 Semiconductor products */
#define PCI_PRODUCT_V3_V292PBC 0x0292 /* V292PBC AMD290x0 Host-PCI Bridge */
#define PCI_PRODUCT_V3_V960PBC 0x0960 /* V960PBC i960 Host-PCI Bridge */
#define PCI_PRODUCT_V3_V96DPC 0xC960 /* V96DPC i960 (Dual) Host-PCI Bridge */
/* VIA Technologies products */
#define PCI_PRODUCT_VIATECH_VT82C505 0x0505 /* VT82C505 (Pluto) */
#define PCI_PRODUCT_VIATECH_VT82C561 0x0561 /* VT82C561 */
#define PCI_PRODUCT_VIATECH_VT82C586_IDE 0x0571 /* VT82C586 (Apollo VP) IDE Controller */
#define PCI_PRODUCT_VIATECH_VT82C576 0x0576 /* VT82C576 3V */
#define PCI_PRODUCT_VIATECH_VT82C585 0x0585 /* VT82C585 (Apollo) PCI-ISA Bridge */
#define PCI_PRODUCT_VIATECH_VT82C586 0x0586 /* VT82C586 (Apollo VP) PCI-ISA Bridge */
#define PCI_PRODUCT_VIATECH_VT82C597PCI 0x0597 /* VT82C597 (Apollo VP3) Host-PCI Bridge */
#define PCI_PRODUCT_VIATECH_VT86C926 0x0926 /* VT86C926 Amazon PCI-Ethernet Controller */
#define PCI_PRODUCT_VIATECH_VT82C570M 0x1000 /* VT82C570M (Apollo) Host-PCI Bridge */
#define PCI_PRODUCT_VIATECH_VT82C570MV 0x1006 /* VT82C570M (Apollo) PCI-ISA Bridge */
#define PCI_PRODUCT_VIATECH_VT82C416MV 0x1571 /* VT82C416MV */
#define PCI_PRODUCT_VIATECH_VT82C595 0x1595 /* VT82C595 (Apollo VP2) Host-PCI Bridge */
#define PCI_PRODUCT_VIATECH_VT83C572 0x3038 /* VT83C572 USB Controller */
#define PCI_PRODUCT_VIATECH_VT82C597AGP 0x8597 /* VT82C597 (Apollo VP3) PCI-AGP Bridge */
/* Vortex Computer Systems products */
#define PCI_PRODUCT_VORTEX_GDT_6000B 0x0001 /* GDT 6000b */
/* VLSI products */
#define PCI_PRODUCT_VLSI_82C592 0x0005 /* 82C592 CPU Bridge */
#define PCI_PRODUCT_VLSI_82C593 0x0006 /* 82C593 ISA Bridge */
#define PCI_PRODUCT_VLSI_82C594 0x0007 /* 82C594 Wildcat System Controller */
#define PCI_PRODUCT_VLSI_82C596597 0x0008 /* 82C596/597 Wildcat ISA Bridge */
#define PCI_PRODUCT_VLSI_82C541 0x000c /* 82C541 */
#define PCI_PRODUCT_VLSI_82C543 0x000d /* 82C543 */
#define PCI_PRODUCT_VLSI_82C532 0x0101 /* 82C532 */
#define PCI_PRODUCT_VLSI_82C534 0x0102 /* 82C534 */
#define PCI_PRODUCT_VLSI_82C535 0x0104 /* 82C535 */
#define PCI_PRODUCT_VLSI_82C147 0x0105 /* 82C147 */
#define PCI_PRODUCT_VLSI_82C975 0x0200 /* 82C975 */
#define PCI_PRODUCT_VLSI_82C925 0x0280 /* 82C925 */
/* Weitek products */
#define PCI_PRODUCT_WEITEK_P9000 0x9001 /* P9000 */
#define PCI_PRODUCT_WEITEK_P9100 0x9100 /* P9100 */
/* Western Digital products */
#define PCI_PRODUCT_WD_WD33C193A 0x0193 /* WD33C193A */
#define PCI_PRODUCT_WD_WD33C196A 0x0196 /* WD33C196A */
#define PCI_PRODUCT_WD_WD33C197A 0x0197 /* WD33C197A */
#define PCI_PRODUCT_WD_WD7193 0x3193 /* WD7193 */
#define PCI_PRODUCT_WD_WD7197 0x3197 /* WD7197 */
#define PCI_PRODUCT_WD_WD33C296A 0x3296 /* WD33C296A */
#define PCI_PRODUCT_WD_WD34C296 0x4296 /* WD34C296 */
#define PCI_PRODUCT_WD_90C 0xC24A /* 90C */
/* Winbond Electronics products */
#define PCI_PRODUCT_WINBOND_W83769F 0x0001 /* W83769F */
#define PCI_PRODUCT_WINBOND_W89C940F 0x0940 /* Linksys EtherPCI II */
/* Winbond Electronics products (PCI products set 2) */
#define PCI_PRODUCT_WINBOND2_W89C940 0x1980 /* Linksys EtherPCI */
/* Zeinet products */
#define PCI_PRODUCT_ZEINET_1221 0x0001 /* 1221 */
/* Ziatech products */
#define PCI_PRODUCT_ZIATECH_ZT8905 0x8905 /* PCI-ST32 Bridge */
|