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
|
/*
* THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.
*
* generated from:
* OpenBSD: pcidevs,v 1.129 1999/03/12 20:01:33 deraadt 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 /* Martin-Marietta */
#define PCI_VENDOR_COMPAQ 0x0e11 /* Compaq */
#define PCI_VENDOR_SYMBIOS 0x1000 /* Symbios Logic */
#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 /* DEC */
#define PCI_VENDOR_MICRONICS 0x1012 /* Micronics */
#define PCI_VENDOR_CIRRUS 0x1013 /* Cirrus Logic */
#define PCI_VENDOR_IBM 0x1014 /* IBM */
#define PCI_VENDOR_LSIL 0x1015 /* LSI 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 */
#define PCI_VENDOR_NCR 0x101a /* AT&T GIS */
#define PCI_VENDOR_VITESSE 0x101b /* Vitesse Semiconductor */
#define PCI_VENDOR_WD 0x101c /* Western Digital */
#define PCI_VENDOR_AMI 0x101e /* AMI */
#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 /* AMD */
#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 */
#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 */
#define PCI_VENDOR_TOSHIBA 0x102f /* Toshiba */
#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 /* DPT */
#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 */
#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 */
#define PCI_VENDOR_ANIGMA 0x1051 /* Anigma */
#define PCI_VENDOR_YOUNGMICRO 0x1052 /* Young Micro */
#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 */
#define PCI_VENDOR_FOXCONN 0x105b /* Foxconn */
#define PCI_VENDOR_WIPRO 0x105c /* Wipro Infotech */
#define PCI_VENDOR_NUMBER9 0x105d /* Number 9 */
#define PCI_VENDOR_VTECH 0x105e /* Vtech Computers */
#define PCI_VENDOR_INFOTRONIC 0x105f /* Infotronic America */
#define PCI_VENDOR_UMC 0x1060 /* UMC */
#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 */
#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 */
#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 Systems (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 */
#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_ADVSYS 0x10cd /* Advanced System Products */
#define PCI_VENDOR_RADIUS 0x10ce /* Radius */
#define PCI_VENDOR_CITICORP 0x10cf /* Citicorp TTI */
#define PCI_VENDOR_FUJITSU2 0x10d0 /* Fujitsu (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 */
#define PCI_VENDOR_TANDEM 0x10e4 /* Tandem */
#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 */
#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 /* SCO */
#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 */
#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_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_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 */
#define PCI_VENDOR_ZIATECH 0x1138 /* Ziatech */
#define PCI_VENDOR_DYNPIC 0x1139 /* Dynamic Pictures */
#define PCI_VENDOR_FWB 0x113a /* FWB */
#define PCI_VENDOR_CYCLONE 0x113c /* Cyclone */
#define PCI_VENDOR_LEADINGEDGE 0x113d /* Leading Edge */
#define PCI_VENDOR_SANYO 0x113e /* Sanyo */
#define PCI_VENDOR_EQUINOX 0x113f /* Equinox */
#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 */
#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 */
#define PCI_VENDOR_DIGIINTERNAT 0x114f /* Digi */
#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 */
#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_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_WSTECH 0x116f /* Workstation Technology */
#define PCI_VENDOR_INVENTEC 0x1170 /* Inventec */
#define PCI_VENDOR_LOUGHSOUND 0x1171 /* Loughborough Sound Images */
#define PCI_VENDOR_ALTERA 0x1172 /* Altera */
#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 (2nd ID) */
#define PCI_VENDOR_ATREND 0x117a /* A-Trend Technology */
#define PCI_VENDOR_ATTO 0x117c /* Atto Technology */
#define PCI_VENDOR_TR 0x117e /* T/R 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_COROLLARY 0x118c /* Corrollary */
#define PCI_VENDOR_BITFLOW 0x118d /* BitFlow */
#define PCI_VENDOR_HERMSTEDT 0x118e /* Hermstedt */
#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 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_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_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_PROLOG 0x11af /* Pro-Log */
#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_FUJITSU4 0x11c1 /* Fujitsu (4th ID) */
#define PCI_VENDOR_NEC2 0x11c3 /* NEC (2nd ID) */
#define PCI_VENDOR_DOCTECH 0x11c4 /* Document Technologies */
#define PCI_VENDOR_SHIVA 0x11c5 /* Shiva */
#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_ZORAN 0x11de /* Zoran */
#define PCI_VENDOR_COMPEX 0x11f6 /* Compex */
#define PCI_VENDOR_PMCSIERRA 0x11f8 /* PMC-Sierra */
#define PCI_VENDOR_CYCLADES 0x120e /* Cyclades */
#define PCI_VENDOR_ESSENTIAL 0x120f /* Essential Communications */
#define PCI_VENDOR_2MICRO 0x1217 /* 2 Micro Inc */
#define PCI_VENDOR_3DFX 0x121a /* 3DFX Interactive */
#define PCI_VENDOR_ARIEL 0x1220 /* Ariel */
#define PCI_VENDOR_AZTECH 0x122d /* Aztech */
#define PCI_VENDOR_3DO 0x1239 /* The 3D0 Company */
#define PCI_VENDOR_CCUBE 0x123f /* C-Cube */
#define PCI_VENDOR_STALLION 0x124d /* Stallion Technologies */
#define PCI_VENDOR_LINEARSYS 0x1254 /* Linear Systems */
#define PCI_VENDOR_ASIX 0x125b /* ASIX */
#define PCI_VENDOR_AURORA 0x125c /* Aurora Technologies */
#define PCI_VENDOR_ESSTECH 0x125d /* ESS Technology Inc */
#define PCI_VENDOR_ENSONIQ 0x1274 /* Ensoniq */
#define PCI_VENDOR_NETAPP 0x1275 /* Network Appliance */
#define PCI_VENDOR_ROCKWELL 0x127a /* Rockwell Semiconductor Systems */
#define PCI_VENDOR_LUXSONOR 0x1287 /* LuxSonor */
#define PCI_VENDOR_TRITECH 0x1292 /* TriTech Microelectronics */
#define PCI_VENDOR_KOFAX 0x1296 /* Kofax Image Products */
#define PCI_VENDOR_RISCOM 0x12aa /* RISCom */
#define PCI_VENDOR_PICTUREEL 0x12c5 /* Picture Elements */
#define PCI_VENDOR_STB2 0x12d2 /* NVidia/SGS-Thomson */
#define PCI_VENDOR_INVERTEX 0x14e1 /* Invertex */
#define PCI_VENDOR_DELTA 0x1500 /* Delta */
#define PCI_VENDOR_SYMPHONY2 0x1c1c /* Symphony Labs (2nd ID) */
#define PCI_VENDOR_TEKRAM2 0x1de1 /* Tekram Technology (2nd ID) */
#define PCI_VENDOR_3DLABS 0x3d3d /* 3D Labs */
#define PCI_VENDOR_AVANCE2 0x4005 /* Avance Logic (2nd ID) */
#define PCI_VENDOR_ADDTRON 0x4033 /* Addtron */
#define PCI_VENDOR_NETVIN 0x4a14 /* NetVin */
#define PCI_VENDOR_BUSLOGIC2 0x4b10 /* Buslogic (2nd ID) */
#define PCI_VENDOR_S3 0x5333 /* S3 */
#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_WINBOND2 0x8c4a /* Winbond (2nd ID) */
#define PCI_VENDOR_COMPUTONE 0x8e0e /* Computone */
#define PCI_VENDOR_KTI 0x8e2e /* KTI */
#define PCI_VENDOR_ADP 0x9004 /* Adaptec */
#define PCI_VENDOR_ADP2 0x9005 /* Adaptec (2nd ID) */
#define PCI_VENDOR_ATRONICS 0x907f /* Atronics */
#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 */
/* 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_3C900B 0x9004 /* 3c900B 10Mbps */
#define PCI_PRODUCT_3COM_3C900BCOMBO 0x9005 /* 3c900B 10Mbps-Combo */
#define PCI_PRODUCT_3COM_3C905TX 0x9050 /* 3c905 100Base-TX */
#define PCI_PRODUCT_3COM_3C905T4 0x9051 /* 3c905 100Base-T4 */
#define PCI_PRODUCT_3COM_3C905BTX 0x9055 /* 3c905B 100Base-TX */
#define PCI_PRODUCT_3COM_3C905BT4 0x9056 /* 3c905B 100Base-T4 */
#define PCI_PRODUCT_3COM_3C905BFX 0x905a /* 3c905B 100Base-FX */
#define PCI_PRODUCT_3COM_3C980TX 0x9800 /* 3c980 100Base-TX */
/* 3DFX Interactive */
#define PCI_PRODUCT_3DFX_VOODOO 0x0001 /* Voodoo */
#define PCI_PRODUCT_3DFX_VOODOO2 0x0002 /* Voodoo2 */
#define PCI_PRODUCT_3DFX_BANSHEE 0x0003 /* Banshee */
/* 3D Labs products */
#define PCI_PRODUCT_3DLABS_300SX 0x0001 /* GLINT 300SX */
#define PCI_PRODUCT_3DLABS_500TX 0x0002 /* GLINT 500TX */
#define PCI_PRODUCT_3DLABS_DELTA 0x0003 /* GLINT Delta */
#define PCI_PRODUCT_3DLABS_PERMEDIA 0x0004 /* GLINT Permedia */
#define PCI_PRODUCT_3DLABS_500MX 0x0006 /* GLINT 500MX */
#define PCI_PRODUCT_3DLABS_PERMEDIA2 0x0007 /* GLINT Permedia 2 */
/* ACC Products */
#define PCI_PRODUCT_ACC_2188 0x0000 /* ACCM 2188 VL-PCI */
#define PCI_PRODUCT_ACC_2051_HB 0x2051 /* 2051 Host-PCI */
#define PCI_PRODUCT_ACC_2051_ISA 0x5842 /* 2051 Host-ISA */
/* Accton products */
#define PCI_PRODUCT_ACCTON_5030 0x1211 /* MPX 5030/5038 */
/* Addtron products */
#define PCI_PRODUCT_ADDTRON_8139 0x1360 /* 8139 */
#define PCI_PRODUCT_ADDTRON_RHINEII 0x1320 /* RhineII */
/* Acer products */
#define PCI_PRODUCT_ACER_M1435 0x1435 /* M1435 VL-PCI */
/* Acer Labs products */
#define PCI_PRODUCT_ALI_M1445 0x1445 /* M1445 VL-PCI */
#define PCI_PRODUCT_ALI_M1449 0x1449 /* M1449 PCI-ISA */
#define PCI_PRODUCT_ALI_M1451 0x1451 /* M1451 Host-PCI */
#define PCI_PRODUCT_ALI_M1461 0x1461 /* M1461 Host-PCI */
#define PCI_PRODUCT_ALI_M1521 0x1521 /* M1523 Host-PCI */
#define PCI_PRODUCT_ALI_M1531 0x1531 /* M1531 Host-PCI */
#define PCI_PRODUCT_ALI_M1541 0x1541 /* M1543 Host-PCI */
#define PCI_PRODUCT_ALI_M4803 0x5215 /* M4803 */
#define PCI_PRODUCT_ALI_M1523 0x1523 /* M1523 PCI-ISA */
#define PCI_PRODUCT_ALI_M1543 0x1533 /* M1543 PCI-ISA */
#define PCI_PRODUCT_ALI_M5219 0x5219 /* M5219 UDMA IDE */
#define PCI_PRODUCT_ALI_M5229 0x5229 /* M5229 UDMA IDE */
#define PCI_PRODUCT_ALI_M5237 0x5237 /* M5237 USB Host */
#define PCI_PRODUCT_ALI_M5243 0x5243 /* M5243 AGP/PCI-PCI */
#define PCI_PRODUCT_ALI_M7101 0x7101 /* M7101 Power Management */
/* 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-2940AU */
#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 */
#define PCI_PRODUCT_ADP_2940U 0x8178 /* AHA-2940U */
#define PCI_PRODUCT_ADP_3940U 0x8278 /* AHA-3940U */
#define PCI_PRODUCT_ADP_398XU 0x8378 /* AHA-398XU */
#define PCI_PRODUCT_ADP_2944U 0x8478 /* AHA-2944U */
#define PCI_PRODUCT_ADP2_2940U2 0x0010 /* AHA-2940U2 */
#define PCI_PRODUCT_ADP2_7890 0x001f /* AIC-7890/1 */
#define PCI_PRODUCT_ADP2_3940U2 0x0050 /* AHA-3940U2 */
#define PCI_PRODUCT_ADP2_7896 0x005f /* AIC-7896/7 */
/* Advanced System Products */
#define PCI_PRODUCT_ADVSYS_1200A 0x1100
#define PCI_PRODUCT_ADVSYS_1200B 0x1200
#define PCI_PRODUCT_ADVSYS_ULTRA 0x1300 /* ABP-930/40UA */
#define PCI_PRODUCT_ADVSYS_WIDE 0x2300 /* ABP-940UW */
/* Alliance products */
#define PCI_PRODUCT_ALLIANCE_AT24 0x6424 /* AT24 */
/* Apple products */
#define PCI_PRODUCT_APPLE_BANDIT 0x0001 /* PCI */
/* AMD products */
#define PCI_PRODUCT_AMD_PCNET_PCI 0x2000 /* 79c970 PCnet-PCI LANCE */
#define PCI_PRODUCT_AMD_PCSCSI_PCI 0x2020 /* 53c974 PCscsi-PCI SCSI */
#define PCI_PRODUCT_AMD_PCNETS_PCI 0x2040 /* 79C974 PCnet-PCI Ether+SCSI */
/* Apple products */
#define PCI_PRODUCT_APPLE_BANDIT 0x0001 /* PCI */
/* 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 */
/* ASIX Electronics products */
#define PCI_PRODUCT_ASIX_AX88140A 0x1400 /* AX88140A 10/100 Ethernet */
/* 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_RAGEPRO 0x4742 /* Rage Pro */
#define PCI_PRODUCT_ATI_MACH64_GD 0x4744 /* Mach64 GD */
#define PCI_PRODUCT_ATI_MACH64_GI 0x4749 /* Mach64 GI */
#define PCI_PRODUCT_ATI_MACH64_GP 0x4750 /* Mach64 GP */
#define PCI_PRODUCT_ATI_MACH64_GQ 0x4751 /* Mach64 GQ */
#define PCI_PRODUCT_ATI_MACH64_GT 0x4754 /* Mach64 GT */
#define PCI_PRODUCT_ATI_MACH64_GU 0x4755 /* Mach64 GU */
#define PCI_PRODUCT_ATI_MACH64_GV 0x4756 /* Mach64 GV */
#define PCI_PRODUCT_ATI_MACH64_GW 0x4757 /* Mach64 GW */
#define PCI_PRODUCT_ATI_MACH64_GX 0x4758 /* Mach64 GX */
#define PCI_PRODUCT_ATI_MACH64_GZ 0x475A /* Mach64 GZ */
#define PCI_PRODUCT_ATI_MACH64_LB 0x4C42 /* Mach64 LB */
#define PCI_PRODUCT_ATI_MACH64_LD 0x4c44 /* Mach64 LD */
#define PCI_PRODUCT_ATI_MACH64_LG 0x4c47 /* Mach64 LG */
#define PCI_PRODUCT_ATI_MACH64_LI 0x4c49 /* Mach64 LI */
#define PCI_PRODUCT_ATI_MACH64_LP 0x4c50 /* Mach64 LP */
#define PCI_PRODUCT_ATI_MACH64_VT 0x5654 /* Mach64 VT */
#define PCI_PRODUCT_ATI_MACH64_VU 0x5655 /* Mach64 VU */
#define PCI_PRODUCT_ATI_MACH64_VV 0x5656 /* Mach64 VV */
/* 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 */
#define PCI_PRODUCT_BIT3_PCIVME2706 0x0300 /* PCI-VME Interface Mod. 2706 */
/* Brooktree products */
#define PCI_PRODUCT_BROOKTREE_BT848 0x0350 /* BT848 */
#define PCI_PRODUCT_BROOKTREE_BT849 0x0351 /* BT849 */
#define PCI_PRODUCT_BROOKTREE_BT878 0x036e /* BT878 */
#define PCI_PRODUCT_BROOKTREE_BT879 0x036f /* BT879 */
#define PCI_PRODUCT_BROOKTREE_BT878_DEV2 0x0878 /* BT878 (2nd device) */
/* 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 */
#define PCI_PRODUCT_CHIPS_68554 0x00f4 /* 68554 */
#define PCI_PRODUCT_CHIPS_69000 0x00c0 /* 69000 */
/* 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_GD5462 0x00d0 /* CL-GD5462 */
#define PCI_PRODUCT_CIRRUS_CL_GD5464 0x00d4 /* CL-GD6464 */
#define PCI_PRODUCT_CIRRUS_CL_PD6729 0x1100 /* CL-PD6729 */
#define PCI_PRODUCT_CIRRUS_CL_PD6832 0x1110 /* CL-PD6832 */
#define PCI_PRODUCT_CIRRUS_CL_PD6833 0x1113 /* CL-PD6833 */
#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 */
/* Compaq products */
#define PCI_PRODUCT_COMPAQ_PCI_EISA_BRIDGE 0x0001 /* PCI-EISA */
#define PCI_PRODUCT_COMPAQ_PCI_ISA_BRIDGE 0x0002 /* PCI-ISA */
#define PCI_PRODUCT_COMPAQ_TRIFLEX1 0x1000 /* Triflex Host-PCI */
#define PCI_PRODUCT_COMPAQ_TRIFLEX2 0x2000 /* Triflex Host-PCI */
#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 */
#define PCI_PRODUCT_COMPAQ_USB 0x7020 /* USB */
#define PCI_PRODUCT_COMPAQ_FXP 0xa0f0 /* Netelligent FXP */
#define PCI_PRODUCT_COMPAQ_N100TX 0xae32 /* Netelligent 10/100 TX */
#define PCI_PRODUCT_COMPAQ_Nunknown 0xae33 /* Netelligent unknown */
#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 Netelligent 10/100 TX */
#define PCI_PRODUCT_COMPAQ_DP4000 0xb011 /* Embedded Netelligent 10/100 TX */
#define PCI_PRODUCT_COMPAQ_N10T2 0xb012 /* Netelligent 10 T/2 PCI */
#define PCI_PRODUCT_COMPAQ_N10_TX_UTP 0xb030 /* Netelligent 10/100 TX */
#define PCI_PRODUCT_COMPAQ_NF3P 0xf130 /* NetFlex 3/P */
#define PCI_PRODUCT_COMPAQ_NF3P_BNC 0xf150 /* NetFlex 3/PB */
/* Compex */
#define PCI_PRODUCT_COMPEX_COMPEXE 0x1401 /* Ethernet */
#define PCI_PRODUCT_COMPEX_RL100ATX 0x2011 /* RL100-ATX 10/100 */
/* Contaq Microsystems products */
#define PCI_PRODUCT_CONTAQ_82C599 0x0600 /* 82C599 PCI-VLB */
#define PCI_PRODUCT_CONTAQ_82C693 0xc693 /* CY82C693U PCI-ISA */
/* Corollary Products */
#define PCI_PRODUCT_COROLLARY_CBUSII_PCIB 0x0014 /* C-Bus II-PCI */
/* Creative Labs */
#define PCI_PRODUCT_CREATIVELABS_SBLIVE 0x0002 /* SoundBlaster Live */
#define PCI_PRODUCT_CREATIVELABS_DIGIN 0x7002 /* SoundBlaster Digital Input */
/* 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 */
/* Cyrix/National Semiconductor products */
#define PCI_PRODUCT_CYRIX_GXMPCI 0x0001 /* GXm Host-PCI */
#define PCI_PRODUCT_CYRIX_GXMISA 0x0002 /* GXm PCI-ISA */
/* DEC products */
#define PCI_PRODUCT_DEC_21050 0x0001 /* DECchip 21050 PCI-PCI */
#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 */
#define PCI_PRODUCT_DEC_21150 0x0022 /* DECchip 21150 PCI-PCI */
#define PCI_PRODUCT_DEC_21152 0x0024 /* DECchip 21152 PCI-PCI */
#define PCI_PRODUCT_DEC_21153 0x0025 /* DECchip 21153 PCI-PCI */
#define PCI_PRODUCT_DEC_21154 0x0026 /* DECchip 21154 PCI-PCI */
/* Delta Electronics products */
#define PCI_PRODUCT_DELTA_8139 0x1360 /* 8139 */
#define PCI_PRODUCT_DELTA_RHINEII 0x1320 /* RhineII */
/* 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 */
/* Emulex products */
#define PCI_PRODUCT_EMULEX_LPPFC 0x10df /* Light Pulse FibreChannel */
/* Ensoniq products */
#define PCI_PRODUCT_ENSONIQ_SB64PCI 0x1371 /* SoundBlaster 64PCI */
#define PCI_PRODUCT_ENSONIQ_AUDIOPCI 0x5000 /* AudioPCI */
/* ESS Technology Inc products */
#define PCI_PRODUCT_ESSTECH_MAESTROII 0x1968 /* Maestro II */
#define PCI_PRODUCT_ESSTECH_SOLO1 0x1969 /* SOLO-1 AudioDrive */
/* Essential Communications products */
#define PCI_PRODUCT_ESSENTIAL_RR_HIPPI 0x0001 /* RoadRunner HIPPI */
#define PCI_PRODUCT_ESSENTIAL_RR_GIGE 0x0005 /* RoadRunner Gig-E */
/* Evans & Sutherland products */
#define PCI_PRODUCT_ES_FREEDOM 0x0001 /* Freedom PCI-GBus */
/* FORE products */
#define PCI_PRODUCT_FORE_PCA200 0x0210 /* ATM PCA-200 */
#define PCI_PRODUCT_FORE_PCA200E 0x0300 /* ATM PCA-200e */
/* Fujtsu products */
#define PCI_PRODUCT_FUJITSU4_LTMODEM 0x0440 /* K56flex DSVD LTMODEM */
/* 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 */
#define PCI_PRODUCT_IBM_0x0005 0x0005 /* CPU - Alta Lite */
#define PCI_PRODUCT_IBM_0x0007 0x0007 /* CPU - Alta MP */
#define PCI_PRODUCT_IBM_0x000a 0x000a /* ISA w/PnP */
#define PCI_PRODUCT_IBM_0x0017 0x0017 /* CPU */
#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 */
#define PCI_PRODUCT_IBM_82351 0x0022 /* 82351 PCI-PCI */
#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 */
#define PCI_PRODUCT_INTEL_CDC 0x0483 /* 82424ZX (Saturn) Cache/DRAM */
#define PCI_PRODUCT_INTEL_SIO 0x0484 /* 82378IB PCI-ISA (System I/O) */
#define PCI_PRODUCT_INTEL_82426EX 0x0486 /* 82426EX PCI-to-ISA (PCIB) */
#define PCI_PRODUCT_INTEL_PCMC 0x04a3 /* 82434LX/NX (Mercury/Neptune) PCI/Cache/DRAM */
#define PCI_PRODUCT_INTEL_82092AA 0x1222 /* 82092AA IDE */
#define PCI_PRODUCT_INTEL_SAA7116 0x1223 /* SAA7116 */
#define PCI_PRODUCT_INTEL_82596 0x1226 /* EE Pro 10 PCI */
#define PCI_PRODUCT_INTEL_EEPRO100 0x1227 /* EE Pro 100 */
#define PCI_PRODUCT_INTEL_EEPRO100S 0x1228 /* EE Pro 100 Smart */
#define PCI_PRODUCT_INTEL_82557 0x1229 /* 82557 */
#define PCI_PRODUCT_INTEL_82437FX 0x122d /* 82437FX (Triton) PCI/Cache/DRAM */
#define PCI_PRODUCT_INTEL_82371 0x122e /* 82371FB (Triton) PCI-ISA */
#define PCI_PRODUCT_INTEL_82438 0x1230 /* 82438 (Triton) IDE */
#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 */
#define PCI_PRODUCT_INTEL_82441FX 0x1237 /* 82441FX PCI/Memory (PMC) */
#define PCI_PRODUCT_INTEL_82380AB 0x123c /* 82380AB Mobile PCI-to-ISA (MISA) */
#define PCI_PRODUCT_INTEL_82380FB 0x124b /* 82380FB Mobile PCI-to-PCI (MPCI2) */
#define PCI_PRODUCT_INTEL_82439HX 0x1250 /* 82439HX (Triton II) TXC Host */
#define PCI_PRODUCT_INTEL_82371SB 0x7000 /* 82371SB (Triton II) PCI-ISA */
#define PCI_PRODUCT_INTEL_82371IDE 0x7010 /* 82371SB (Triton II) IDE */
#define PCI_PRODUCT_INTEL_82371USB 0x7020 /* 82371SB (Triton II) USB */
#define PCI_PRODUCT_INTEL_82437VX 0x7030 /* 82437VX System (TVX) */
#define PCI_PRODUCT_INTEL_82439TX 0x7100 /* 82439TX System (MTXC) */
#define PCI_PRODUCT_INTEL_82371AB 0x7110 /* 82371AB PIIX4 ISA */
#define PCI_PRODUCT_INTEL_82371AB_IDE 0x7111 /* 82371AB IDE (PIIX4) */
#define PCI_PRODUCT_INTEL_82371AB_USB 0x7112 /* 82371AB USB Host (PIIX4) */
#define PCI_PRODUCT_INTEL_82371AB_PMC 0x7113 /* 82371AB Power Management (PIIX4) */
#define PCI_PRODUCT_INTEL_82443LX 0x7180 /* 82443LX PCI AGP (PAC) */
#define PCI_PRODUCT_INTEL_82443LX_AGP 0x7181 /* 82443LX AGP Device (PAC) */
#define PCI_PRODUCT_INTEL_82443BX 0x7190 /* 82443BX PCI AGP (PAC) */
#define PCI_PRODUCT_INTEL_82443BX_AGP 0x7191 /* 82443BX AGP Device (PAC) */
#define PCI_PRODUCT_INTEL_82443BX_NOAGP 0x7192 /* 82443BX Host-PCI (no AGP) */
#define PCI_PRODUCT_INTEL_PCI450_PB 0x84c4 /* 450 PCIset (Orion) Host-PCI */
#define PCI_PRODUCT_INTEL_PCI450_MC 0x84c5 /* 450 PCIset (Orion) Memory */
/* Intergraph products */
#define PCI_PRODUCT_INTERGRAPH_4D50T 0x00e4 /* Powerstorm 4D50T */
/* Invertex */
#define PCI_PRODUCT_INVERTEX_AEON 0x0005 /* AEON */
/* 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 */
/* LeadTek Research */
#define PCI_PRODUCT_LEADTEK_S3_805 0x0000 /* S3 805 */
/* Lite-On Communications */
#define PCI_PRODUCT_LITEON_PNIC 0x0002 /* PNIC */
#define PCI_PRODUCT_LITEON_PNICII 0xc115 /* PNIC-II */
/* LuxSonor */
#define PCI_PRODUCT_LUXSONOR_LS242 0x0020 /* LS242 DVD Decoder */
/* Macronix */
#define PCI_PRODUCT_MACRONIX_MX98713 0x0512 /* PMAC 98713 */
#define PCI_PRODUCT_MACRONIX_MX98715 0x0531 /* PMAC 98715 */
/* 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_MILL_II_G200_PCI 0x0520 /* MGA Millennium G200 PCI */
#define PCI_PRODUCT_MATROX_MILL_II_G200_AGP 0x0521 /* MGA Millennium G200 AGP */
#define PCI_PRODUCT_MATROX_PRODUCTIVA_PCI 0x1000 /* MGA Productiva G100 PCI */
#define PCI_PRODUCT_MATROX_PRODUCTIVA_AGP 0x1001 /* MGA Productiva G100 AGP */
#define PCI_PRODUCT_MATROX_MYSTIQUE 0x102B /* MGA 1064SG */
/* Mylex products */
#define PCI_PRODUCT_MYLEX_960P 0x0001 /* DAC960P RAID */
/* Mutech products */
#define PCI_PRODUCT_MUTECH_MV1000 0x0001 /* MV1000 */
/* National Semiconductor products */
#define PCI_PRODUCT_NS_DP83810 0x0001 /* DP83810 10/100 */
#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_NM2070 0x0001 /* Magicgraph NM2070 */
#define PCI_PRODUCT_NEOMAGIC_128V 0x0002 /* Magicgraph 128V */
#define PCI_PRODUCT_NEOMAGIC_128ZV 0x0003 /* Magicgraph 128ZV */
#define PCI_PRODUCT_NEOMAGIC_NM2160 0x0004 /* Magicgraph NM2160 */
/* NetVin */
#define PCI_PRODUCT_NETVIN_NV5000 0x5000 /* NetVin 5000 */
/* Newbridge / Tundra products */
#define PCI_PRODUCT_NEWBRIDGE_CA91CX42 0x0000 /* Universe VME */
/* 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 */
/* NexGen products */
#define PCI_PRODUCT_NEXGEN_NX82C501 0x4e78 /* NX82C501 Host-PCI */
/* NKK products */
#define PCI_PRODUCT_NKK_NDR4600 0xA001 /* NDR4600 Host-PCI */
/* Number Nine products */
#define PCI_PRODUCT_NUMBER9_I128 0x2309 /* Imagine-128 */
#define PCI_PRODUCT_NUMBER9_I128_2 0x2339 /* Imagine-128 II */
#define PCI_PRODUCT_NUMBER9_I128_T2R 0x493D /* Imagine-128 T2R */
/* NVidia products */
#define PCI_PRODUCT_NVIDIA_NV1 0x0008 /* NV1 */
#define PCI_PRODUCT_NVIDIA_DAC64 0x0009 /* DAC64 */
#define PCI_PRODUCT_NVIDIA_RIVA_TNT 0x0020 /* Riva TNT */
/* Oak Technologies products */
#define PCI_PRODUCT_OAKTECH_OTI1007 0x0107 /* OTI107 */
/* Olicom */
#define PCI_PRODUCT_OLICOM_OC2183 0x0013 /* OC2183 */
#define PCI_PRODUCT_OLICOM_OC2325 0x0012 /* OC2325 */
#define PCI_PRODUCT_OLICOM_OC2326 0x0014 /* OC2326 */
/* Opti products */
#define PCI_PRODUCT_OPTI_82C557 0xc557 /* 82C557 Host */
#define PCI_PRODUCT_OPTI_82C558 0xc558 /* 82C558 PCI-ISA */
#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 */
/* Pequr products */
#define PCI_PRODUCT_PEQUR_PCIBRIDGE 0x0200 /* PCI */
/* 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_ISP1080 0x1080 /* ISP1080 */
#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 /* 8029 */
#define PCI_PRODUCT_REALTEK_RT8129 0x8129 /* 8129 */
#define PCI_PRODUCT_REALTEK_RT8139 0x8139 /* 8139 */
/* 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_TRIO3D_AGP 0x8904 /* Trio3D AGP */
#define PCI_PRODUCT_S3_VIRGE_DX_GX 0x8a01 /* ViRGE DX/GX */
#define PCI_PRODUCT_S3_VIRGE_GX2 0x8a10 /* ViRGE GX2 */
#define PCI_PRODUCT_S3_VIRGE_MX 0x8c01 /* ViRGE MX */
#define PCI_PRODUCT_S3_VIRGE_MXP 0x8c03 /* ViRGE MXP */
#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 */
#define PCI_PRODUCT_SIS_86C202 0x0002 /* 86C202 VGA */
#define PCI_PRODUCT_SIS_86C205 0x0005 /* 86C205 */
#define PCI_PRODUCT_SIS_85C503 0x0008 /* 85C503 ISA */
#define PCI_PRODUCT_SIS_5595 0x0009 /* 5595 PCI System I/O Chipset */
#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 EIDE */
#define PCI_PRODUCT_SIS_5511 0x5511 /* 5511 */
#define PCI_PRODUCT_SIS_5512 0x5512 /* 5512 */
#define PCI_PRODUCT_SIS_5513 0x5513 /* 5513 EIDE */
#define PCI_PRODUCT_SIS_5581 0x5581 /* 5581 */
#define PCI_PRODUCT_SIS_5582 0x5582 /* 5582 */
#define PCI_PRODUCT_SIS_5591 0x5591 /* 5591 Host-PCI */
#define PCI_PRODUCT_SIS_5596 0x5596 /* 5596 */
#define PCI_PRODUCT_SIS_5598 0x5598 /* 5598 */
#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) */
/* 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 */
#define PCI_PRODUCT_TI_PCI1131 0xac15 /* PCI1131 */
#define PCI_PRODUCT_TI_PCI1250 0xac16 /* PCI1250 */
#define PCI_PRODUCT_TI_PCI1220 0xac17 /* PCI1220 PCI-CardBus */
#define PCI_PRODUCT_TI_PCI2030 0xac20 /* PCI2030 */
#define PCI_PRODUCT_TI_PERMEDIA 0x3d04 /* 3DLabs Permedia */
#define PCI_PRODUCT_TI_PERMEDIA2 0x3d07 /* 3DLabs Permedia 2 */
/* Toshiba products */
#define PCI_PRODUCT_TOSHIBA_R4X00 0x102f /* R4x00 Host-PCI */
#define PCI_PRODUCT_TOSHIBA_TC35856F 0x0020 /* TC35856F ATM (Meteor) */
/* Toshiba (2nd ID) products */
#define PCI_PRODUCT_TOSHIBA2_THB 0x0601 /* Host-PCI */
#define PCI_PRODUCT_TOSHIBA2_TOPIC95 0x060a /* PCI-CardBus */
#define PCI_PRODUCT_TOSHIBA2_TCB 0x060f /* PCI-CardBus */
#define PCI_PRODUCT_TOSHIBA2_TFIRO 0x0701 /* PCI-FIRO */
/* 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_9388 0x9388 /* TGUI 9388 */
#define PCI_PRODUCT_TRIDENT_CYBER_9397 0x9397 /* CYBER 9397 */
#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 */
#define PCI_PRODUCT_TRIDENT_TGUI_9750 0x9750 /* TGUI 9750 (3D Image) */
#define PCI_PRODUCT_TRIDENT_TGUI_9850 0x9850 /* TGUI 9850 */
/* 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/ET6100 */
#define PCI_PRODUCT_TSENG_ET6300 0x4702 /* ET6300 */
/* UMC products */
#define PCI_PRODUCT_UMC_UM82C881 0x0001 /* UM82C881 486 Chipset */
#define PCI_PRODUCT_UMC_UM82C886 0x0002 /* UM82C886 ISA */
#define PCI_PRODUCT_UMC_UM8673F 0x0101 /* UM8673F EIDE */
#define PCI_PRODUCT_UMC_UM8881 0x0881 /* UM8881 HB4 486 PCI */
#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 */
#define PCI_PRODUCT_UMC_UM8886F 0x8886 /* UM8886F PCI-ISA */
#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 */
#define PCI_PRODUCT_V3_V960PBC 0x0960 /* V960PBC i960 Host-PCI */
#define PCI_PRODUCT_V3_V96DPC 0xC960 /* V96DPC i960 (Dual) Host-PCI */
/* VIA Technologies products */
#define PCI_PRODUCT_VIATECH_VT82C505 0x0505 /* VT82C505 (Pluto) */
#define PCI_PRODUCT_VIATECH_VT82C561 0x0561 /* VT82C561 */
#define PCI_PRODUCT_VIATECH_VT82C586A_IDE 0x0571 /* VT82C586A IDE */
#define PCI_PRODUCT_VIATECH_VT82C576 0x0576 /* VT82C576 3V */
#define PCI_PRODUCT_VIATECH_VT82C585 0x0585 /* VT82C585 (Apollo) PCI-ISA */
#define PCI_PRODUCT_VIATECH_VT82C586 0x0586 /* VT82C586 (Apollo VP) PCI-ISA */
#define PCI_PRODUCT_VIATECH_VT82C595 0x0595 /* VT82C595 (Apollo VP2) Host-PCI */
#define PCI_PRODUCT_VIATECH_VT82C597PCI 0x0597 /* VT82C597 (Apollo VP3) Host-PCI */
#define PCI_PRODUCT_VIATECH_VT82C598PCI 0x0598 /* VT82C598 (Apollo MVP3) Host-PCI */
#define PCI_PRODUCT_VIATECH_VT86C926 0x0926 /* VT86C926 Amazon */
#define PCI_PRODUCT_VIATECH_VT82C570M 0x1000 /* VT82C570M (Apollo) Host-PCI */
#define PCI_PRODUCT_VIATECH_VT82C570MV 0x1006 /* VT82C570M (Apollo) PCI-ISA */
#define PCI_PRODUCT_VIATECH_VT82C586_IDE 0x1571 /* VT82C586 (Apollo VP) IDE */
#define PCI_PRODUCT_VIATECH_VT82C1595 0x1595 /* VT82C1595 (Apollo VP2) Host-PCI */
#define PCI_PRODUCT_VIATECH_VT83C572 0x3038 /* VT83C572 USB */
#define PCI_PRODUCT_VIATECH_VT82C586_PWR 0x3040 /* VT82C586 (Apollo VP) Power Management */
#define PCI_PRODUCT_VIATECH_VT82C597AGP 0x8597 /* VT82C597 (Apollo VP3) PCI-AGP */
#define PCI_PRODUCT_VIATECH_VT82C598AGP 0x8598 /* VT82C598 (Apollo MVP3) PCI-AGP */
#define PCI_PRODUCT_VIATECH_RHINE 0x3043 /* Rhine/RhineII */
#define PCI_PRODUCT_VIATECH_RHINEII 0x6100 /* RhineII */
/* Vortex Computer Systems products */
#define PCI_PRODUCT_VORTEX_GDT_6000B 0x0001 /* GDT 6000b */
/* VLSI products */
#define PCI_PRODUCT_VLSI_82C592 0x0005 /* 82C592 CPU */
#define PCI_PRODUCT_VLSI_82C593 0x0006 /* 82C593 ISA */
#define PCI_PRODUCT_VLSI_82C594 0x0007 /* 82C594 Wildcat */
#define PCI_PRODUCT_VLSI_82C596597 0x0008 /* 82C596/597 Wildcat ISA */
#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_WD9710 0x9710 /* WD9610 */
#define PCI_PRODUCT_WD_90C 0xC24A /* 90C */
/* Winbond Electronics products */
#define PCI_PRODUCT_WINBOND_W83769F 0x0001 /* W83769F */
#define PCI_PRODUCT_WINBOND_W89C840F 0x0840 /* W89C840F 10/100 Ethernet */
#define PCI_PRODUCT_WINBOND_W89C940F 0x0940 /* Linksys EtherPCI II */
/* Winbond Electronics products (PCI products set 2) */
#define PCI_PRODUCT_WINBOND2_W89C940 0x1980 /* Linksys EtherPCI */
/* Yamaha products */
#define PCI_PRODUCT_YAMAHA_YMF724E_V 0x0004 /* 724 Audio */
/* Zeinet products */
#define PCI_PRODUCT_ZEINET_1221 0x0001 /* 1221 */
/* Ziatech products */
#define PCI_PRODUCT_ZIATECH_ZT8905 0x8905 /* PCI-ST32 */
/* Zoran products */
#define PCI_PRODUCT_ZORAN_ZR36120 0x6120 /* Video */
|