summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/partitioning_wizard.pm
blob: 58acbf54d544d5367e9c244542b7b58b1e9c202c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
package fs::partitioning_wizard; # $Id: partitioning_wizard.pm 269969 2010-06-09 13:01:09Z pterjan $

use diagnostics;
use strict;
use utf8;

use common;
use devices;
use fsedit;
use fs::type;
use fs::mount_point;
use partition_table;
use partition_table::raw;
use partition_table::dos;
use POSIX qw(ceil);
use mygtk2;
use ugtk2 qw(:wrappers);

#- unit of $mb is mega bytes, min and max are in sectors, this
#- function is used to convert back to sectors count the size of
#- a partition ($mb) given from the interface (on Resize or Create).
#- modified to take into account a true bounding with min and max.
sub from_Mb {
    my ($mb, $min, $max) = @_;
    $mb <= to_Mb($min) and return $min;
    $mb >= to_Mb($max) and return $max;
    MB($mb);
}
sub to_Mb {
    my ($size_sector) = @_;
    to_int($size_sector / 2048);
}

sub partition_with_diskdrake {
    my ($in, $all_hds, $fstab, $manual_fstab, $_partitions, $partitioning_flags, $skip_mtab) = @_;
    my $ok;

    do {
	$ok = 1;
	my $do_force_reload = sub {
            my $new_hds = fs::get::empty_all_hds();
            fs::any::get_hds($new_hds, $fstab, $manual_fstab, $partitioning_flags, $skip_mtab, $in);
            %$all_hds = %$new_hds;
            $all_hds;
	};
	require diskdrake::interactive;
	{
	    local $::expert = 0;
	    diskdrake::interactive::main($in, $all_hds, $do_force_reload);
	}
	my @fstab = fs::get::fstab($all_hds);

	unless (fs::get::root_(\@fstab)) {
	    $ok = 0;
	    $in->ask_okcancel(N("Partitioning"), N("You must have a root partition.
To accomplish this, create a partition (or click on an existing one).
Then choose action ``Mount point'' and set it to `/'"), 1) or return;
	}

	if (!any { isSwap($_) } @fstab) {
	    $ok &&= $in->ask_okcancel('', N("You do not have a swap partition.\n\nContinue anyway?"));
	}
	if (arch() =~ /ia64/ && !fs::get::has_mntpoint("/boot/efi", $all_hds)) {
	    $in->ask_warn('', N("You must have a FAT partition mounted in /boot/efi"));
	    $ok = '';
	}
    } until $ok;
    1;
}

sub partitionWizardSolutions {
    my ($in, $all_hds, $all_fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, $target) = @_;
    my $hds = $all_hds->{hds};
    my $fstab;
    my $full_fstab = [ fs::get::fstab($all_hds) ];
    if ($target) {
        $hds = [ $target ];
        $fstab = [ grep { $_->{rootDevice} eq $target->{device} } fs::get::fstab($all_hds) ];
    } else {
        $fstab = $full_fstab;
    }

    my @wizlog;
    my (%solutions);

    my $min_linux = MB(600);
    my $min_swap = MB(50);
    my $min_freewin = MB(100);

    # each solution is a [ score, text, function ], where the function retunrs true if succeeded

    my @hds_rw = grep { !$_->{readonly} } @$hds;
    my @hds_can_add = grep { $_->{type} ne 'hd' || $_->can_add } @hds_rw;
    if (fs::get::hds_free_space(@hds_can_add) > $min_linux) {
	$solutions{free_space} = [ 30, N("Use free space"), sub { fsedit::auto_allocate($all_hds, $partitions); 1 } ];
    } else { 
	push @wizlog, N("Not enough free space to allocate new partitions") . ": " .
	  (@hds_can_add ? 
	   fs::get::hds_free_space(@hds_can_add) . " < $min_linux" :
	   "no harddrive on which partitions can be added");
    }

    if (my @truefs = grep { isTrueLocalFS($_) } @$fstab) {
	#- value twice the ext2 partitions
	$solutions{existing_part} = [ 20 + @truefs + @$fstab, N("Use existing partitions"), sub { fs::mount_point::ask_mount_points($in, $full_fstab, $all_hds) } ];
    } else {
	push @wizlog, N("There is no existing partition to use");
    }

    if (my @ok_for_resize_fat = grep { isFat_or_NTFS($_) && !fs::get::part2hd($_, $all_hds)->{readonly}
					 && !isRecovery($_) && $_->{size} > $min_linux + $min_swap + $min_freewin } @$fstab) {
        @ok_for_resize_fat = map {
            my $part = $_;
            my $hd = fs::get::part2hd($part, $all_hds);
            my $resize_fat = eval {
                my $pkg = $part->{fs_type} eq 'vfat' ? do { 
                    require resize_fat::main;
                    'resize_fat::main';
                } : do {
                    require diskdrake::resize_ntfs;
                    'diskdrake::resize_ntfs';
                };
                $pkg->new($part->{device}, devices::make($part->{device}));
            };
            if ($@) {
                log::l("The FAT resizer is unable to handle $part->{device} partition%s", formatError($@));
                undef $part;
            }
            if ($part) {
                my $min_win = eval {
                    my $_w = $in->wait_message(N("Resizing"), N("Computing the size of the Microsoft Windows® partition"));
                    $resize_fat->min_size + $min_freewin;
                };
                if ($@) {
                    log::l("The FAT resizer is unable to get minimal size for $part->{device} partition %s", formatError($@));
                    undef $part;
                } else {
                    my $min_linux_all = $min_linux + $min_swap;
                    #- make sure that even after normalizing the size to cylinder boundaries, the minimun will be saved,
                    #- this save at least a cylinder (less than 8Mb).
                    $min_win += partition_table::raw::cylinder_size($hd);

                    if ($part->{size} <= $min_linux_all + $min_win) {
#                die N("Your Microsoft Windows® partition is too fragmented. Please reboot your computer under Microsoft Windows®, run the ``defrag'' utility, then restart the %s installation.", N("Mageia"));
                        undef $part;
                    } else {
                        $part->{resize_fat} = $resize_fat;
                        $part->{min_win} = $min_win;
                        $part->{min_linux} = $min_linux_all;
                        #- try to keep at least 1GB free for Windows
                        #- try to use from 6GB to 10% free space for Linux
                        my $suggested_size = max(
                            $part->{min_win} + 1 * MB(1024),
                            min(
                                $part->{size} - int(0.1 * ($part->{size} - $part->{min_win})),
                                $part->{size} - 6 * MB(1024),
                            ),
                        );
                        $part->{req_size} = max(min($suggested_size, $part->{size} - $part->{min_linux}), $part->{min_win});
                    }
                }
            }
            $part || ();
        } @ok_for_resize_fat;
	if (@ok_for_resize_fat) {
            $solutions{resize_fat} =
                [ 20 - @ok_for_resize_fat, N("Use the free space on a Microsoft Windows® partition"),
                  sub {
                      my $part;
                      if (!$in->isa('interactive::gtk')) {
                          $part = $in->ask_from_listf_raw({ messages => N("Which partition do you want to resize?"),
                                                               interactive_help_id => 'resizeFATChoose',
                                                             }, \&partition_table::description, \@ok_for_resize_fat) or return;
                          $part->{size} > $part->{min_linux} + $part->{min_win} or die N("Your Microsoft Windows® partition is too fragmented. Please reboot your computer under Microsoft Windows®, run the ``defrag'' utility, then restart the %s installation.", N("Mageia"));
                      } else {
                          $part = top(grep { $_->{req_size} } @ok_for_resize_fat);
                      }
                      my $resize_fat = $part->{resize_fat};
                      my $hd = fs::get::part2hd($part, $all_hds);
                      $in->ask_okcancel('', formatAlaTeX(
                                            #-PO: keep the double empty lines between sections, this is formatted a la LaTeX
                                            N("WARNING!


Your Microsoft Windows® partition will be now resized.


Be careful: this operation is dangerous. If you have not already done so, you first need to exit the installation, run \"chkdsk c:\" from a Command Prompt under Microsoft Windows® (beware, running graphical program \"scandisk\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), optionally run defrag, then restart the installation. You should also backup your data.


When sure, press %s.", N("Next")))) or return;

                      my $oldsize = $part->{size};
                      if (!$in->isa('interactive::gtk')) {
                          my $mb_size = to_Mb($part->{req_size});
                          my $max_win = $part->{size} - $part->{min_linux};
                          $in->ask_from(N("Partitionning"), N("Which size do you want to keep for Microsoft Windows® on partition %s?", partition_table::description($part)), [
                                        { label => N("Size"), val => \$mb_size, min => to_Mb($part->{min_win}), max => to_Mb($max_win), type => 'range' },
                                    ]) or return;
                          $part->{req_size} = from_Mb($mb_size, $part->{min_win}, $part->{max_win});
                      }
                      $part->{size} = $part->{req_size};

                      $hd->adjustEnd($part);

                      eval {
                          my $_w = $in->wait_message(N("Resizing"), N("Resizing Microsoft Windows® partition"));
                          $resize_fat->resize($part->{size});
                      };
                      if (my $err = $@) {
                          $part->{size} = $oldsize;
                          die N("FAT resizing failed: %s", formatError($err));
                      }

                      $in->ask_warn('', N("To ensure data integrity after resizing the partition(s),
filesystem checks will be run on your next boot into Microsoft Windows®")) if $part->{fs_type} ne 'vfat';

                      set_isFormatted($part, 1);
                      partition_table::will_tell_kernel($hd, resize => $part); #- down-sizing, write_partitions is not needed
                      partition_table::adjust_local_extended($hd, $part);
                      partition_table::adjust_main_extended($hd);

                      fsedit::auto_allocate($all_hds, $partitions);
                      1;
                  }, \@ok_for_resize_fat ];
        }
    } else {
	push @wizlog, N("There is no FAT partition to resize (or not enough space left)");
    }

    if (@$fstab && @hds_rw) {
	$solutions{wipe_drive} =
	  [ 10, fsedit::is_one_big_fat_or_NT($hds) ? N("Remove Microsoft Windows®") : N("Erase and use entire disk"),
	    sub {
                my $hd;
                if (!$in->isa('interactive::gtk')) {
                    $hd = $in->ask_from_listf_raw({ messages => N("You have more than one hard disk drive, which one do you want the installer to use?"),
                                                       title => N("Partitioning"),
                                                       interactive_help_id => 'takeOverHdChoose',
                                                     },
                                                     \&partition_table::description, \@hds_rw) or return;
                } else {
                    $hd = $target;
                }
		$in->ask_okcancel_({ messages => N("ALL existing partitions and their data will be lost on drive %s", partition_table::description($hd)),
				    title => N("Partitioning"),
				    interactive_help_id => 'takeOverHdConfirm' }) or return;
		fsedit::partition_table_clear_and_initialize($all_hds->{lvms}, $hd, $in);
		fsedit::auto_allocate($all_hds, $partitions);
		1;
	    } ];
    }

    if (@hds_rw || find { $_->isa('partition_table::lvm') } @$hds) {
	$solutions{diskdrake} = [ 0, N("Custom disk partitioning"), sub {
	    partition_with_diskdrake($in, $all_hds, $all_fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab);
        } ];
    }

    $solutions{fdisk} =
      [ -10, N("Use fdisk"), sub {
	    $in->enter_console;
	    foreach (@$hds) {
		print "\n" x 10, N("You can now partition %s.
When you are done, do not forget to save using `w'", partition_table::description($_));
		print "\n\n";
		my $pid = 0;
		if (arch() =~ /ppc/) {
			$pid = fork() or exec "pdisk", devices::make($_->{device});
		} else {
			$pid = fork() or exec "fdisk", devices::make($_->{device});
		}
		waitpid($pid, 0);
	    }
	    $in->leave_console;
	    0;
	} ] if $partitioning_flags->{fdisk};

    log::l("partitioning wizard log:\n", (map { ">>wizlog>>$_\n" } @wizlog));
    %solutions;
}

sub warn_reboot_needed {
    my ($in) = @_;
    $in->ask_warn(N("Partitioning"), N("You need to reboot for the partition table modifications to take effect"));
}

sub create_display_box {
    my ($kind, $resize, $fill_empty, $button) = @_;

    my @parts = diskdrake::hd_gtk::kind2parts($kind);
    my $totalsectors = diskdrake::hd_gtk::kind2sectors($kind, @parts);

    my $width = 540;
    my $minwidth = 40;

    my $display_box = ugtk2::gtkset_size_request(Gtk2::HBox->new(0,0), -1, 26);

    my $sep_count = @parts - 1;
    #- ratio used to compute initial partition pixel width (each partition should be > min_width)
    #- though, the pixel/sectors ratio cannot be the same for all the partitions
    my $initial_ratio = $totalsectors ? ($width - @parts * $minwidth - $sep_count) / $totalsectors : 1;

    my $vbox = Gtk2::VBox->new;

    my $part_sep;
    my $desc;

    my $last = $resize && $resize->[-1];

    foreach my $entry (@parts) {
	my $part_info = Gtk2::Label->new($entry->{device_LABEL});
	my @colorized_fs_types = qw(ext2 ext3 ext4 xfs swap vfat ntfs ntfs-3g);
        my $part_widget = Gtk2::EventBox->new;
        $entry->{width} = int($entry->{size} * $initial_ratio) + $minwidth;
        if ($last && $last->{device} eq $entry->{device}) {
            #- entry is the last resizable partition

            my $ratio;
            my $update_ratio = sub { $ratio = $entry->{width} / $entry->{size} };
            $update_ratio->();

            $part_widget->set_name("PART_vfat");
            $part_info->set_size_request(ceil($ratio * $entry->{min_win}), 0);

            my $mdv_widget = gtkadd(gtkset_name(Gtk2::EventBox->new, "PART_new"),
                                    gtkset_size_request(gtknew("Image", file => "small-logo"),
                                                        $ratio * MB(600), 0));

            my $hpane = Gtk2::HPaned->new;
            $hpane->add1($part_widget);
            $hpane->child1_shrink(0);
            $hpane->add2($mdv_widget);
            $hpane->child2_shrink(0);
            $hpane->set_position(ceil($ratio * $entry->{req_size}));
            ugtk2::gtkset_size_request($hpane, $entry->{width}, 0);
            ugtk2::gtkpack__($display_box, $hpane);

            my $add_part_size_info = sub {
                my ($name, $label) = @_;
                ugtk2::gtkpack__($desc,
                                 gtkadd(gtkset_name(Gtk2::EventBox->new, $name),
                                        Gtk2::Label->new(" " x 4)),
                                 gtkset_size_request(gtkset_alignment($label, 0, 0.5),
                                                     150, 20));
            };
            $desc = Gtk2::HBox->new(0,0);

            my $win_size_label = Gtk2::Label->new;
            $add_part_size_info->("PART_vfat", $win_size_label);

            my $mdv_size_label = Gtk2::Label->new;
            $add_part_size_info->("PART_new", $mdv_size_label);

            my $update_size_labels = sub {
                $win_size_label->set_label(" Windows (" . formatXiB($entry->{req_size}, 512) . ")");
                $mdv_size_label->set_label(" Mageia (" . formatXiB($entry->{size} - $entry->{req_size}, 512) . ")");
                0;
            };
            my $update_req_size = sub {
                $entry->{req_size} = int($hpane->get_position / $ratio);
                $update_size_labels->();
            };
            my $button_activate = sub {
                $button->activate;
                0;
            };
            $hpane->signal_connect('size-allocate' => sub {
                my (undef, $alloc) = @_;
                $entry->{width} = $alloc->width;
                $update_ratio->();
                0;
            });
            $update_size_labels->();
            $hpane->signal_connect('motion-notify-event' => $update_req_size);
            $hpane->signal_connect('move-handle' => $update_req_size);
            $hpane->signal_connect('button-press-event' => $button_activate);
            $vbox->signal_connect('button-press-event' => $button_activate);
            $button->signal_connect('focus-in-event' => sub {
                $hpane->grab_focus;
                0;
            });
        } else {
            if ($fill_empty && isEmpty($entry)) {
                $part_info = gtknew("Image", file => "small-logo");
                $part_widget->set_name("PART_new");
            } else {
                $part_widget->set_name("PART_" . (isEmpty($entry) ? 'empty' :
                                         $entry->{fs_type} && member($entry->{fs_type}, @colorized_fs_types) ? $entry->{fs_type} :
                                         'other'));
            }
            $part_widget->set_size_request($entry->{width}, 0);
            ugtk2::gtkpack($display_box, $part_widget);
        }
	$part_widget->add($part_info);

	$part_sep = gtkadd(Gtk2::EventBox->new,
                     gtkset_size_request(Gtk2::Label->new("."), 1, 0));
	gtkpack__($display_box, $part_sep);
    }
    $display_box->remove($part_sep) if $part_sep;
    unless ($resize || $fill_empty) {
        my @types = (N_("Ext2/3/4"), N_("XFS"), N_("Swap"), arch() =~ /sparc/ ? N_("SunOS") : arch() eq "ppc" ? N_("HFS") : N_("Windows"),
                    N_("Other"), N_("Empty"));
        my %name2fs_type = ('Ext2/3/4' => 'ext3', 'XFS' => 'xfs', Swap => 'swap', Other => 'other', "Windows" => 'vfat', HFS => 'hfs');
        $desc = ugtk2::gtkpack(Gtk2::HBox->new,
                map {
                     my $t = $name2fs_type{$_};
                     my $ev = Gtk2::EventBox->new;
		     my $w = Gtk2::Label->new(translate($_));
	             $ev->add($w);
		     $ev->set_name('PART_' . ($t || 'empty'));
                     $ev;
                } @types);
    }

    $vbox->add($display_box);
    $vbox->add($desc) if $desc;

    $vbox;
}

sub display_choices {
    my ($o, $contentbox, $mainw, %solutions) = @_;
    my @solutions = sort { $solutions{$b}[0] <=> $solutions{$a}[0] } keys %solutions;
    my @sol = grep { $solutions{$_}[0] >= 0 } @solutions;

    log::l(''  . "solutions found: " . join('', map { $solutions{$_}[1] } @sol) .
           " (all solutions found: " . join('', map { $solutions{$_}[1] } @solutions) . ")");

    @solutions = @sol if @sol > 1;
    log::l("solutions: ", int @solutions);
    @solutions or $o->ask_warn(N("Partitioning"), N("I cannot find any room for installing")), die 'already displayed';

    log::l('HERE: ', join(',', map { $solutions{$_}[1] } @solutions));

    $contentbox->foreach(sub { $contentbox->remove($_[0]) });

    $mainw->{kind}{display_box} ||= create_display_box($mainw->{kind});
    ugtk2::gtkpack2__($contentbox, $mainw->{kind}{display_box});
    ugtk2::gtkpack__($contentbox, gtknew('Label',
                                         text => N("The DrakX Partitioning wizard found the following solutions:"),
                                         alignment => [0, 0]));

    my $choicesbox = gtknew('VBox');
    my $oldbutton;
    my $sep;
    foreach my $s (@solutions) {
        my $item;
        my $vbox = gtknew('VBox');
        my $button = gtknew('RadioButton', child => $vbox);
        if ($s eq 'free_space') {
            $item = create_display_box($mainw->{kind}, undef, 1);
        } elsif ($s eq 'resize_fat') {
            $item = create_display_box($mainw->{kind}, $solutions{$s}[3], undef, $button);
        } elsif ($s eq 'existing_part') {
        } elsif ($s eq 'wipe_drive') {
            $item = Gtk2::EventBox->new;
            my $b2 = gtknew("Image", file => "small-logo");
            $item->add($b2);
            $item->set_size_request(540,26);
            $item->set_name("PART_new");
        } elsif ($s eq 'diskdrake') {
        } else {
            log::l($s);
            next;
        }
        ugtk2::gtkpack($vbox, 
                       gtknew('Label',
                              text => $solutions{$s}[1],
                              alignment => [0, 0]));
        ugtk2::gtkpack($vbox, $item) if defined($item);
        $button->set_group($oldbutton->get_group) if $oldbutton;
        $oldbutton = $button;
        $button->signal_connect('toggled', sub { $mainw->{sol} = $solutions{$s} if $_[0]->get_active });
        ugtk2::gtkpack2__($choicesbox, $button);
        $sep = gtknew('HSeparator');
        ugtk2::gtkpack2__($choicesbox, $sep);
    }
    $choicesbox->remove($sep);
    ugtk2::gtkadd($contentbox, $choicesbox);
    $mainw->{sol} = $solutions{@solutions[0]};
}

sub main {
    my ($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, $b_nodiskdrake) = @_;

    my $sol;

    if ($o->isa('interactive::gtk')) {
        require mygtk2;
        mygtk2->import(qw(gtknew));
        require ugtk2;
        ugtk2->import(qw(:wrappers));

        my $mainw = ugtk2->new(N("Partitioning"), %$o, if__($::main_window, transient => $::main_window));
        $mainw->{box_allow_grow} = 1;

        mygtk2::set_main_window_size($mainw->{rwindow});

        require diskdrake::hd_gtk;
        diskdrake::hd_gtk::load_theme();

        my $mainbox = Gtk2::VBox->new;

        my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } sort { $a->{is_removable} <=> $b->{is_removable} } @{ $all_hds->{hds} };
        push @kinds, diskdrake::hd_gtk::raid2real_kind($_) foreach @{$all_hds->{raids}};
        push @kinds, map { diskdrake::hd_gtk::lvm2kind($_) } @{$all_hds->{lvms}};

        my $hdchoice = Gtk2::HBox->new;

        my $hdchoicelabel = Gtk2::Label->new(N("Here is the content of your disk drive "));

        my $combobox = Gtk2::ComboBox->new_text;
        foreach (@kinds) {
            my $info = $_->{val}{info} || $_->{val}{device};
            $info =~ s|^(?:.*/)?(.{24}).*|$1|;
            $info .= " (" . formatXiB($_->{val}{totalsectors}, 512) . ")" if $_->{val}{totalsectors};
            $combobox->append_text($info);
        }
        $combobox->set_active(0);

        ugtk2::gtkpack2__($hdchoice, $hdchoicelabel);
        $hdchoice->add($combobox);

        ugtk2::gtkpack2__($mainbox, $hdchoice);

        my $contentbox = Gtk2::VBox->new(0, 12);

        my $scroll = Gtk2::ScrolledWindow->new;
        $scroll->set_policy('never', 'automatic'),
        my $vp = Gtk2::Viewport->new;
        $vp->set_shadow_type('none');
        $vp->add($contentbox);
        $scroll->add($vp);
        $mainbox->add($scroll);

        my $kind = @kinds[$combobox->get_active];
        my %solutions = partitionWizardSolutions($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, diskdrake::hd_gtk::kind2hd($kind));
        delete $solutions{diskdrake} if $b_nodiskdrake;
        $mainw->{kind} = $kind;
        display_choices($o, $contentbox, $mainw, %solutions);

        $combobox->signal_connect("changed", sub {        
            $mainw->{kind} = @kinds[$combobox->get_active];
            my %solutions = partitionWizardSolutions($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab, diskdrake::hd_gtk::kind2hd($mainw->{kind}));
            delete $solutions{diskdrake} if $b_nodiskdrake;
            display_choices($o, $contentbox, $mainw, %solutions);
            $mainw->{window}->show_all;
        });

        my @more_buttons = (
            if_($::isInstall, 
            [ gtknew('Install_Button',
                     text => N("Help"),
                     clicked => sub { interactive::gtk::display_help($o, {interactive_help_id => 'doPartitionDisks' }, $mainw) }),
              undef, 1 ]),
            );
        my $buttons_pack = $mainw->create_okcancel(N("Next"), undef, '', @more_buttons);
        $mainbox->pack_end($buttons_pack, 0, 0, 0);
        ugtk2::gtkadd($mainw->{window}, $mainbox);
        $mainw->{window}->show_all;

        $mainw->main;

        $sol=$mainw->{sol};
    } else {
        my %solutions = partitionWizardSolutions($o, $all_hds, $fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab);

        delete $solutions{diskdrake} if $b_nodiskdrake;

        my @solutions = sort { $b->[0] <=> $a->[0] } values %solutions;

        my @sol = grep { $_->[0] >= 0 } @solutions;
        log::l(''  . "solutions found: " . join('', map { $_->[1] } @sol) . 
               " (all solutions found: " . join('', map { $_->[1] } @solutions) . ")");
        @solutions = @sol if @sol > 1;
        log::l("solutions: ", int @solutions);
        @solutions or $o->ask_warn(N("Partitioning"), N("I cannot find any room for installing")), die 'already displayed';
        log::l('HERE: ', join(',', map { $_->[1] } @solutions));
        $o->ask_from_({ 
            title => N("Partitioning"),
            interactive_help_id => 'doPartitionDisks',
                      },
                      [
                       { label => N("The DrakX Partitioning wizard found the following solutions:"),  title => $::isInstall },
                       { val => \$sol, list => \@solutions, format => sub { $_[0][1] }, type => 'list' },
                      ]);
    }
    log::l("partitionWizard calling solution $sol->[1]");
    my $ok = eval { $sol->[2]->() };
    if (my $err = $@) {
        if ($err =~ /wizcancel/) {
            $_->destroy foreach $::WizardTable->get_children;
        } else {
            $o->ask_warn('', N("Partitioning failed: %s", formatError($err)));
        }
    }
    $ok or goto &main;
    1;
}

1;
'#n3843'>3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847
#
#	List of PCI ID's
#
#	Version: 2010.07.14
#	Date:    2010-07-14 03:15:03
#
#	Maintained by Martin Mares <mj@ucw.cz> and other volunteers from the
#	PCI ID Project at http://pciids.sf.net/.
#
#	New data are always welcome, especially if they are accurate. If you have
#	anything to contribute, please follow the instructions at the web site.
#
#	This file can be distributed under either the GNU General Public License
#	(version 2 or higher) or the 3-clause BSD License.
#

# Vendors, devices and subsystems. Please keep sorted.

# Syntax:
# vendor  vendor_name
#	device  device_name				<-- single tab
#		subvendor subdevice  subsystem_name	<-- two tabs

0000  Gammagraphx, Inc. (or missing ID)
0010  Allied Telesis, Inc
# This is a relabelled RTL-8139
	8139  AT-2500TX V3 Ethernet
001a  Ascend Communications, Inc.
001c  PEAK-System Technik GmbH
	0001  PCAN-PCI CAN-Bus controller
		001c 0004  2 Channel CAN Bus SJC1000
		001c 0005  2 Channel CAN Bus SJC1000 (Optically Isolated)
0033  Paradyne corp.
003d  Lockheed Martin-Marietta Corp
# Real TJN ID is e159, but they got it wrong several times --mj
0059  Tiger Jet Network Inc. (Wrong ID)
0070  Hauppauge computer works Inc.
	0003  WinTV PVR-250
	0009  WinTV PVR-150
	0801  WinTV PVR-150
	0807  WinTV PVR-150
	4000  WinTV PVR-350
	4001  WinTV PVR-250 (v1)
	4009  WinTV PVR-250
	4800  WinTV PVR-350
	4801  WinTV PVR-250 MCE
	4803  WinTV PVR-250
	7444  WinTV HVR-1600
	7801  WinTV HVR-1800 MCE
	8003  WinTV PVR-150
	8801  WinTV PVR-150
	c801  WinTV PVR-150
	e807  WinTV PVR-500 MCE (1st tuner)
	e817  WinTV PVR-500 MCE (2nd tuner)
0071  Nebula Electronics Ltd.
0095  Silicon Image, Inc. (Wrong ID)
	0680  Ultra ATA/133 IDE RAID CONTROLLER CARD
# Wrong ID used in subsystem ID of the TELES.S0/PCI 2.x ISDN adapter
00a7  Teles AG (Wrong ID)
00f5  BFG Technologies, Inc.
0100  Ncipher Corp Ltd
0123  General Dynamics
# 018a is not LevelOne but there is a board misprogrammed
018a  LevelOne
	0106  FPC-0106TX misprogrammed [RTL81xx]
# 021b is not Compaq but there is a board misprogrammed
021b  Compaq Computer Corporation
	8139  HNE-300 (RealTek RTL8139c) [iPaq Networking]
0270  Hauppauge computer works Inc. (Wrong ID)
0291  Davicom Semiconductor, Inc.
	8212  DM9102A(DM9102AE, SM9102AF) Ethernet 100/10 MBit(Rev 40)
# SpeedStream is Efficient Networks, Inc, a Siemens Company
02ac  SpeedStream
	1012  1012 PCMCIA 10/100 Ethernet Card [RTL81xx]
02e0  XFX Pine Group Inc
0303  Hewlett-Packard Company (Wrong ID)
0315  SK-Electronics Co., Ltd.
0357  TTTech AG
	000a  TTP-Monitoring Card V2.0
036f  Trigem Computer Inc.
0403  Future Technology Devices International Ltd
0432  SCM Microsystems, Inc.
	0001  Pluto2 DVB-T Receiver for PCMCIA [EasyWatch MobilSet]
045e  Microsoft
	006e  MN-510 802.11b wireless USB paddle
	00c2  MN-710 wireless USB paddle
0482  Kyocera
# vendor code used for (at a minimum) RSA cards
04b3  IBM Corp.
	4001  Remote System Administration device [RSA2]
04cf  Myson Century, Inc
	8818  CS8818 USB2.0-to-ATAPI Bridge Controller with Embedded PHY
050d  Belkin
	001a  FSD7000 802.11g PCI Wireless card
	700f  F5D7001 - Wireless G Plus Desktop Card
	7050  F5D7050 802.11g Wireless USB Adapter
	705c  F5D7050 v4
058f  Alcor Micro Corporation
05a9  OmniVision
	8519  OV519 series
05e3  CyberDoor
	0701  CBD516
066f  Sigmatel Inc.
	3410  SMTP3410
	3500  SMTP3500
0675  Dynalink
	1700  IS64PH ISDN Adapter
	1702  IS64PH ISDN Adapter
	1703  ISDN Adapter (PCI Bus, DV, W)
	1704  ISDN Adapter (PCI Bus, D, C)
069d  Hughes Network Systems (HNS)
0721  Sapphire, Inc.
0795  Wired Inc.
	6663  Butane II (MPEG2 encoder board)
	6666  MediaPress (MPEG2 encoder board)
07ca  AVerMedia Technologies Inc.
	a301  AVerTV 301
	b808  AVerTV DVB-T Volar (USB 2.0)
07d0  ITT Geospatial Systems
07e2  ELMEG Communication Systems GmbH
0842  NPG, Personal Grand Technology
# Nee Gemplus International, SA
08e6  Gemalto NV
08ff  AuthenTec
	afe4  [Anchor] AF-S2 FingerLoc Sensor Module
0925  First International Computer, Inc.
	1234  VA-502 Mainboard
093a  PixArt Imaging Inc.
	010e  Innovage Mini Digital Camera
	010f  SDC-300 Webcam
	020f  Digital Photo Viewer
	2468  CIF Single Chip
	2600  PAC7311
	2603  Philips Webcam SPC500NC
	2608  Maxell MaxCam RotaWeb
09c1  Arris
	0704  CM 200E Cable Modem
0a89  BREA Technologies Inc
0ace  ZyDAS
	1211  ZD1211 IEEE 802.11b+g USB Adapter
0b0b  Rhino Equipment Corp.
	0105  Rhino R1T1
	0205  Rhino R4FXO
	0206  RCB4FXO 4-channel FXO analog telphony card
	0305  Rhino R4T1
	0405  Rhino R8FXX
	0406  RCB8FXX 8-channel modular analog telphony card
	0505  Rhino R24FXX
	0506  RCB24FXS 24-Channel FXS analog telphony card
	0605  Rhino R2T1
	0705  Rhino R24FXS
	0706  RCB24FXO 24-Channel FXO analog telphony card
	0905  R1T3 Single T3 Digital Telephony Card
	0906  RCB24FXX 24-channel modular analog telphony card
	0a06  RCB672FXX 672-channel modular analog telphony card
0b3d  Brontes Technologies
0b49  ASCII Corporation
	064f  Trance Vibrator
0ccd  TerraTec Electronic GmbH
	0038  Cinergy T^2 DVB-T Receiver
0e11  Compaq Computer Corporation
	0001  PCI to EISA Bridge
	0002  PCI to ISA Bridge
	0046  Smart Array 64xx
		0e11 4091  Smart Array 6i
		0e11 409a  Smart Array 641
		0e11 409b  Smart Array 642
		0e11 409c  Smart Array 6400
		0e11 409d  Smart Array 6400 EM
	0049  NC7132 Gigabit Upgrade Module
	004a  NC6136 Gigabit Server Adapter
	005a  Remote Insight II board - Lights-Out
	007c  NC7770 1000BaseTX
	007d  NC6770 1000BaseTX
	0085  NC7780 1000BaseTX
	00b1  Remote Insight II board - PCI device
	00bb  NC7760
	00ca  NC7771
	00cb  NC7781
	00cf  NC7772
	00d0  NC7782
	00d1  NC7783
	00e3  NC7761
	0508  Netelligent 4/16 Token Ring
	1000  Triflex/Pentium Bridge, Model 1000
	2000  Triflex/Pentium Bridge, Model 2000
	3032  QVision 1280/p
	3033  QVision 1280/p
	3034  QVision 1280/p
	4000  4000 [Triflex]
	4040  Integrated Array
	4048  Compaq Raid LC2
	4050  Smart Array 4200
	4051  Smart Array 4250ES
	4058  Smart Array 431
	4070  Smart Array 5300
	4080  Smart Array 5i
	4082  Smart Array 532
	4083  Smart Array 5312
	4091  Smart Array 6i
	409a  Smart Array 641
	409b  Smart Array 642
	409c  Smart Array 6400
	409d  Smart Array 6400 EM
	6010  HotPlug PCI Bridge 6010
	7020  USB Controller
	a0ec  Fibre Channel Host Controller
	a0f0  Advanced System Management Controller
	a0f3  Triflex PCI to ISA Bridge
	a0f7  PCI Hotplug Controller
		8086 002a  PCI Hotplug Controller A
		8086 002b  PCI Hotplug Controller B
	a0f8  ZFMicro Chipset USB
	a0fc  FibreChannel HBA Tachyon
	ae10  Smart-2/P RAID Controller
		0e11 4030  Smart-2/P Array Controller
		0e11 4031  Smart-2SL Array Controller
		0e11 4032  Smart Array 3200 Controller
		0e11 4033  Smart Array 3100ES Controller
		0e11 4034  Smart Array 221 Controller
	ae29  MIS-L
	ae2a  MPC
	ae2b  MIS-E
	ae31  System Management Controller
	ae32  Netelligent 10/100 TX PCI UTP
	ae33  Triflex Dual EIDE Controller
	ae34  Netelligent 10 T PCI UTP
	ae35  Integrated NetFlex-3/P
	ae40  Netelligent Dual 10/100 TX PCI UTP
	ae43  Netelligent Integrated 10/100 TX UTP
	ae69  CETUS-L
	ae6c  Northstar
	ae6d  NorthStar CPU to PCI Bridge
	b011  Netelligent 10/100 TX Embedded UTP
	b012  Netelligent 10 T/2 PCI UTP/Coax
	b01e  NC3120 Fast Ethernet NIC
	b01f  NC3122 Fast Ethernet NIC
	b02f  NC1120 Ethernet NIC
	b030  Netelligent 10/100 TX UTP
	b04a  10/100 TX PCI Intel WOL UTP Controller
	b060  Smart Array 5300 Controller
	b0c6  NC3161 Fast Ethernet NIC
	b0c7  NC3160 Fast Ethernet NIC
	b0d7  NC3121 Fast Ethernet NIC
	b0dd  NC3131 Fast Ethernet NIC
	b0de  NC3132 Fast Ethernet Module
	b0df  NC6132 Gigabit Module
	b0e0  NC6133 Gigabit Module
	b0e1  NC3133 Fast Ethernet Module
	b123  NC6134 Gigabit NIC
	b134  NC3163 Fast Ethernet NIC
	b13c  NC3162 Fast Ethernet NIC
	b144  NC3123 Fast Ethernet NIC
	b163  NC3134 Fast Ethernet NIC
	b164  NC3165 Fast Ethernet Upgrade Module
	b178  Smart Array 5i/532
		0e11 4080  Smart Array 5i
		0e11 4082  Smart Array 532
		0e11 4083  Smart Array 5312
	b1a4  NC7131 Gigabit Server Adapter
	b200  Memory Hot-Plug Controller
	b203  Integrated Lights Out Controller
	b204  Integrated Lights Out  Processor
	c000  Remote Insight Lights-Out Edition
	f130  NetFlex-3/P ThunderLAN 1.0
	f150  NetFlex-3/P ThunderLAN 2.3
0e21  Cowon Systems, Inc.
0e55  HaSoTec GmbH
0eac  SHF Communication Technologies AG
	0008  Ethernet Powerlink Managing Node 01
0f62  Acrox Technologies Co., Ltd.
# Formerly NCR
1000  LSI Logic / Symbios Logic
	0001  53c810
		1000 1000  LSI53C810AE PCI to SCSI I/O Processor
	0002  53c820
	0003  53c825
		1000 1000  LSI53C825AE PCI to SCSI I/O Processor (Ultra Wide)
	0004  53c815
	0005  53c810AP
	0006  53c860
		1000 1000  LSI53C860E PCI to Ultra SCSI I/O Processor
	000a  53c1510
		0e11 b143  Integrated Dual Channel Wide Ultra2 SCSI Controller
		1000 1000  LSI53C1510 PCI to Dual Channel Wide Ultra2 SCSI Controller (Nonintelligent mode)
	000b  53C896/897
		0e11 6004  EOB003 Series SCSI host adapter
		1000 1000  LSI53C896/7 PCI to Dual Channel Ultra2 SCSI Multifunction Controller
		1000 1010  LSI22910 PCI to Dual Channel Ultra2 SCSI host adapter
		1000 1020  LSI21002 PCI to Dual Channel Ultra2 SCSI host adapter
		13e9 1000  6221L-4U (Dual U2W SCSI, dual 10/100TX, graphics)
	000c  53c895
		1000 1010  LSI8951U PCI to Ultra2 SCSI host adapter
		1000 1020  LSI8952U PCI to Ultra2 SCSI host adapter
		1de1 3906  DC-390U2B SCSI adapter
		1de1 3907  DC-390U2W
	000d  53c885
	000f  53c875
		0e11 7004  Embedded Ultra Wide SCSI Controller
		1000 1000  LSI53C876/E PCI to Dual Channel SCSI Controller
		1000 1010  LSI22801 PCI to Dual Channel Ultra SCSI host adapter
		1000 1020  LSI22802 PCI to Dual Channel Ultra SCSI host adapter
		1092 8760  FirePort 40 Dual SCSI Controller
		1775 10d0  V5D Single Board Computer Wide Ultra SCSI
		1775 10d1  V5D Single Board Computer Ultra SCSI
		1de1 3904  DC390F/U Ultra Wide SCSI Adapter
		4c53 1000  CC7/CR7/CP7/VC7/VP7/VR7 mainboard
		4c53 1050  CT7 mainboard
	0010  53C1510
		0e11 4040  Integrated Smart Array Controller
		0e11 4048  RAID LC2 Controller
		1000 1000  53C1510 PCI to Dual Channel Wide Ultra2 SCSI Controller (Intelligent mode)
	0012  53c895a
		1000 1000  LSI53C895A PCI to Ultra2 SCSI Controller
	0013  53c875a
		1000 1000  LSI53C875A PCI to Ultra SCSI Controller
	0020  53c1010 Ultra3 SCSI Adapter
		1000 1000  LSI53C1010-33 PCI to Dual Channel Ultra160 SCSI Controller
		107b 1040  Server Onboard 53C1010-33
		1de1 1020  DC-390U3W
	0021  53c1010 66MHz  Ultra3 SCSI Adapter
		1000 1000  LSI53C1000/1000R/1010R/1010-66 PCI to Ultra160 SCSI Controller
		1000 1010  Asus TR-DLS onboard 53C1010-66
		103c 1300  Ultra160 SCSI [AB306A]
		103c 1310  Ultra160 SCSI [A9918A]
		103c 1330  Ultra160 SCSI [A7059A]
		103c 1340  Ultra160 SCSI [A7060A]
		124b 1070  PMC-USCSI3
		4c53 1080  CT8 mainboard
		4c53 1300  P017 mezzanine (32-bit PMC)
		4c53 1310  P017 mezzanine (64-bit PMC)
	0030  53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI
		0e11 00da  ProLiant ML 350
		1028 0123  LSI Logic 1020/1030
		1028 014a  LSI Logic 1020/1030
		1028 016c  PowerEdge 1850 MPT Fusion SCSI/RAID (Perc 4)
		1028 0183  LSI Logic 1020/1030
		1028 018a  PERC 4/IM
		1028 1010  LSI U320 SCSI Controller
		103c 12c5  Ultra320 SCSI [A7173A]
		103c 1323  Core I/O LAN/SCSI Combo [AB314A]
		103c 3108  Single Channel Ultra320 SCSI HBA G2
		124b 1170  PMC-USCSI320
# VMware's emulation of this device. Was missing from the list.
		15ad 1976  LSI Logic Parallel SCSI Controller
		1734 1052  PRIMERGY BX/RX/TX S2 series onboard SCSI(IME)
	0031  53c1030ZC PCI-X Fusion-MPT Dual Ultra320 SCSI
	0032  53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI
		1000 1000  LSI53C1020/1030 PCI-X to Ultra320 SCSI Controller
	0033  1030ZC_53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI
	0040  53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI
		1000 0033  MegaRAID SCSI 320-2XR
		1000 0066  MegaRAID SCSI 320-2XRWS
	0041  53C1035ZC PCI-X Fusion-MPT Dual Ultra320 SCSI
	0050  SAS1064 PCI-X Fusion-MPT SAS
		1028 1f04  SAS 5/E
		1028 1f09  SAS 5i/R
	0054  SAS1068 PCI-X Fusion-MPT SAS
		1028 1f04  SAS 5/E Adapter Controller
		1028 1f05  SAS 5/i Adapter Controller
		1028 1f06  SAS 5/i Integrated Controller
		1028 1f07  SAS 5/iR Integrated RAID Controller
		1028 1f08  SAS 5/iR Integrated RAID Controller
		1028 1f09  SAS 5/iR Adapter RAID Controller
		15ad 1976  SAS Controller
	0055  SAS1068 PCI-X Fusion-MPT SAS
		1033 8336  SAS1068
	0056  SAS1064ET PCI-Express Fusion-MPT SAS
	0057  M1064E MegaRAID SAS
		8086 346c  Embedded Software RAID Technology II (ESTRII)
	0058  SAS1068E PCI-Express Fusion-MPT SAS
		1000 3140  SAS3081E-R 8-Port SAS/SATA Host Bus Adapter
		1028 021d  SAS 6/iR Integrated Workstations RAID Controller
		1028 1f0e  SAS 6/iR Adapter RAID Controller
		1028 1f0f  SAS 6/iR Integrated Blades RAID Controller
		1028 1f10  SAS 6/iR Integrated RAID Controller
		103c 3229  SC44Ge Host Bus Adapter
	0059  MegaRAID SAS 8208ELP/8208ELP
	005a  SAS1066E PCI-Express Fusion-MPT SAS
	005c  SAS1064A PCI-X Fusion-MPT SAS
	005e  SAS1066 PCI-X Fusion-MPT SAS
	0060  MegaRAID SAS 1078
		1000 1006  MegaRAID SAS 8888ELP
		1000 100a  MegaRAID SAS 8708ELP
		1000 100e  MegaRAID SAS 8884E
		1000 100f  MegaRAID SAS 8708E
		1000 1010  MegaRAID SATA 350-8ELP
		1000 1011  MegaRAID SATA 350-4ELP
		1000 1012  MegaRAID SAS 8704ELP
		1000 1016  MegaRAID SAS 8880EM2
		1014 0363  MegaRAID SAS PCI Express ROMB
		1014 0364  SystemX MegaRAID SAS 8808E
		1014 0365  SystemX MegaRAID SAS 8884E
		1014 0379  SystemX MegaRAID SAS 8880EM2
		1028 1f0a  PERC 6/E Adapter RAID Controller
		1028 1f0b  PERC 6/i Adapter RAID Controller
		1028 1f0c  PERC 6/i Integrated RAID Controller
		1028 1f0d  PERC 6/i Integrated RAID Controller
		1028 1f11  CERC 6/i Integrated RAID Controller
		1033 835a  MegaRAID SAS PCI Express ROMB
		1043 824d  MegaRAID SAS PCI Express ROMB
		1170 002f  MegaRAID SAS PCI Express ROMB
		1170 0036  MegaRAID SAS PCI Express ROMB
		15d9 c080  MegaRAID SAS PCI Express ROMB
		17aa 6b7c  MegaRAID SAS PCI Express ROMB
		18a1 0003  LSI MegaRAID SAS PCI Express ROMB
		8086 1006  RAID Controller SRCSAS28EP
		8086 100a  RAID Controller SRCSAS28EV
		8086 1010  RAID Controller SRCSATA28E
		8086 34cc  Integrated RAID Controller SROMBSAS28E
		8086 34cd  Integrated RAID Controller SROMBSAS28E
	0062  SAS1078 PCI-Express Fusion-MPT SAS
		1000 0062  SAS1078 PCI-Express Fusion-MPT SAS
	0064  SAS2116 PCI-Express Fusion-MPT SAS-2 [Meteor]
	0065  SAS2116 PCI-Express Fusion-MPT SAS-2 [Meteor]
	0070  SAS2004 PCI-Express Fusion-MPT SAS-2 [Spitfire]
	0072  SAS2008 PCI-Express Fusion-MPT SAS-2 [Falcon]
		1028 1f1c  6Gbps SAS HBA Adapter
		1028 1f1d  PERC H200 Adapter
		1028 1f1e  PERC H200 Integrated
		1028 1f1f  PERC H200 Modular
		1028 1f20  PERC H200 Embedded
	0073  MegaRAID SAS 9240
		1000 9240  MegaRAID SAS 9240-4i
		1000 9241  MegaRAID SAS 9240-4i
		1014 03b1  ServeRAID M1015 SAS/SATA Controller
		1054 3035  LSI MegaRAID SAS 9240-8i
		1137 0073  2008 ROMB
		1734 1177  RAID Ctrl SAS 6G 0/1 (D2607)
		8086 9240  RAID Controller RS2WC080
		8086 9241  RAID Controller RS2WC040
	0074  SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator]
	0076  SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator]
	0077  SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator]
	0079  LSI MegaSAS 9260
		1000 9251  MegaRAID SAS 9260-4ix
		1000 9256  MegaRAID SAS 9260-8ix
		1000 9262  MegaRAID SAS 9262-8i
		1000 9263  MegaRAID SAS 9261-8i
		1000 9264  MegaRAID SAS 9264-8i
		1000 9275  MegaRAID SAS 9280-8ex
		1000 9280  MegaRAID SAS 9280-8e
		1000 9281  MegaRAID SAS 9281-8E
		1000 9282  MegaRAID SAS 9280-4i4e
		1000 9290  MegaRAID SAS 9280DE-24i4e
		1014 03b2  ServeRAID M5015 SAS/SATA Controller
		1014 03b3  ServeRAID M5025 SAS/SATA Controller
		1028 1f15  PERC H800 Adapter
		1028 1f16  PERC H700 Adapter
		1028 1f17  PERC H700 Integrated
		1028 1f18  PERC H700 Modular
		1028 1f1a  PERC H800 Proto Adapter
		1028 1f1b  PERC H700 Integrated
		1734 1176  RAID Ctrl SAS 6G 5/6 512MB (D2616)
		1734 1177  RAID Ctrl SAS 6G 0/1 (D2607)
		8086 9256  MegaRAID SAS 9260DE-8i
		8086 9260  MegaRAID SAS 9260-4i
		8086 9261  MegaRAID SAS 9260-8i
	007c  MegaRAID SAS 1078DE
		1014 0395  ServeRAID-AR10is SAS/SATA Controller
	0080  SAS2208 PCI-Express Fusion-MPT SAS-2
	0081  SAS2208 PCI-Express Fusion-MPT SAS-2
	0082  SAS2208 PCI-Express Fusion-MPT SAS-2
	0083  SAS2208 PCI-Express Fusion-MPT SAS-2
	0084  SAS2208 PCI-Express Fusion-MPT SAS-2
	0085  SAS2208 PCI-Express Fusion-MPT SAS-2
	0086  SAS2208 PCI-Express Fusion-MPT SAS-2
	0087  SAS2208 PCI-Express Fusion-MPT SAS-2
	008f  53c875J
		1092 8000  FirePort 40 SCSI Controller
		1092 8760  FirePort 40 Dual SCSI Host Adapter
	0407  MegaRAID
		1000 0530  MegaRAID 530 SCSI 320-0X RAID Controller
		1000 0531  MegaRAID 531 SCSI 320-4X RAID Controller
		1000 0532  MegaRAID 532 SCSI 320-2X RAID Controller
		1028 0531  PowerEdge Expandable RAID Controller 4/QC
		1028 0533  PowerEdge Expandable RAID Controller 4/QC
		8086 0530  MegaRAID Intel RAID Controller SRCZCRX
		8086 0532  MegaRAID Intel RAID Controller SRCU42X
	0408  MegaRAID
		1000 0001  MegaRAID SCSI 320-1E RAID Controller
		1000 0002  MegaRAID SCSI 320-2E RAID Controller
		1025 004d  MegaRAID ACER ROMB-2E RAID Controller
		1028 0001  PowerEdge RAID Controller PERC4e/SC
		1028 0002  PowerEdge RAID Controller PERC4e/DC
		1028 0012  PowerEdge RAID Controller RAC4
		1028 0015  PowerEdge RAID Controller PERC5
		1028 1f03  PowerEdge RAID Controller PERC5
		1734 1065  FSC MegaRAID PCI Express ROMB
		8086 0002  MegaRAID Intel RAID Controller SRCU42E
		8086 3449  MegaRAID Intel RAID Controller SROMBU
	0409  MegaRAID
		1000 3004  MegaRAID SATA 300-4X RAID Controller
		1000 3008  MegaRAID SATA 300-8X RAID Controller
		8086 3008  MegaRAID RAID Controller SRCS28X
		8086 3431  MegaRAID RAID Controller Alief SROMBU42E
		8086 3499  MegaRAID RAID Controller Harwich SROMBU42E
	0411  MegaRAID SAS
		1000 1001  MegaRAID SAS 8408E
		1000 1002  MegaRAID SAS 8480E
		1000 1003  MegaRAID SAS 8344ELP
		1000 1004  MegaRAID SAS 8308ELP
		1000 1008  MegaRAID SAS 84016E
		1000 100c  MegaRAID SATA 300-12E
		1000 100d  MegaRAID SATA 300-16E
		1000 2004  MegaRAID SATA 300-8ELP
		1000 2005  MegaRAID SATA 300-4ELP
		1033 8287  MegaRAID SAS PCI Express ROMB
		1054 3016  MegaRAID SAS RoMB Server
		1734 1081  MegaRAID SAS PCI Express ROMB
		1734 10a3  MegaRAID SAS PCI Express ROMB
		8086 1001  RAID Controller SRCSAS18E
		8086 1003  RAID Controller SRCSAS144E
		8086 3500  SROMBSAS18E RAID Controller
		8086 3501  SROMBSAS18E RAID Controller
		8086 3504  SROMBSAS18E RAID Controller
	0413  MegaRAID SAS Verde ZCR
		1000 1005  MegaRAID SAS 8300XLP
	0621  FC909 Fibre Channel Adapter
	0622  FC929 Fibre Channel Adapter
		1000 1020  44929 O Dual Fibre Channel card
	0623  FC929 LAN
	0624  FC919 Fibre Channel Adapter
	0625  FC919 LAN
	0626  FC929X Fibre Channel Adapter
		1000 1010  7202-XP-LC Dual Fibre Channel card
	0627  FC929X LAN
	0628  FC919X Fibre Channel Adapter
	0629  FC919X LAN
	0640  FC949X Fibre Channel Adapter
	0642  FC939X Fibre Channel Adapter
	0646  FC949ES Fibre Channel Adapter
	0701  83C885 NT50 DigitalScape Fast Ethernet
	0702  Yellowfin G-NIC gigabit ethernet
		1318 0000  PEI100X
	0804  SA2010
	0805  SA2010ZC
	0806  SA2020
	0807  SA2020ZC
	0901  61C102
	1000  63C815
	1960  MegaRAID
		1000 0518  MegaRAID 518 SCSI 320-2 Controller
		1000 0520  MegaRAID 520 SCSI 320-1 Controller
		1000 0522  MegaRAID 522 i4 133 RAID Controller
		1000 0523  MegaRAID SATA 150-6 RAID Controller
		1000 4523  MegaRAID SATA 150-4 RAID Controller
		1000 a520  MegaRAID ZCR SCSI 320-0 Controller
		1028 0518  MegaRAID 518 DELL PERC 4/DC RAID Controller
		1028 0520  MegaRAID 520 DELL PERC 4/SC RAID Controller
		1028 0531  PowerEdge Expandable RAID Controller 4/QC
		1028 0533  PowerEdge Expandable RAID Controller 4/QC
		8086 0520  MegaRAIDRAID Controller SRCU41L
		8086 0523  MegaRAID RAID Controller SRCS16
	6001  DX1 Multiformat Broadcast HD/SD Encoder/Decoder
1001  Kolter Electronic
	0010  PCI 1616 Measurement card with 32 digital I/O lines
	0011  OPTO-PCI Opto-Isolated digital I/O board
	0012  PCI-AD/DA Analogue I/O board
	0013  PCI-OPTO-RELAIS Digital I/O board with relay outputs
	0014  PCI-Counter/Timer Counter Timer board
	0015  PCI-DAC416 Analogue output board
	0016  PCI-MFB Analogue I/O board
	0017  PROTO-3 PCI Prototyping board
	9100  INI-9100/9100W SCSI Host
1002  ATI Technologies Inc
	3150  M24 1P [Radeon Mobility X600]
		103c 0934  nx8220
	3151  M24 [FireMV 2400]
	3152  M22 [Radeon Mobility X300]
	3154  M24GL [Mobility FireGL V3200]
	3171  M24 [FireMV 2400] (Secondary)
	3e50  RV380 0x3e50 [Radeon X600]
	3e54  RV380 0x3e54 [FireGL V3200]
	3e70  RV380 [Radeon X600] (Secondary)
	4136  Radeon IGP 320 M
	4137  Radeon IGP330/340/350
	4144  R300 AD [Radeon 9500 Pro]
	4145  R300 AE [Radeon 9700 Pro]
	4146  R300 AF [Radeon 9700 Pro]
	4147  R300 AG [FireGL Z1/X1]
	4148  R350 AH [Radeon 9800]
	4149  R350 AI [Radeon 9800]
	414a  R350 AJ [Radeon 9800]
	414b  R350 AK [FireGL X2]
	4150  RV350 AP [Radeon 9600]
		1002 0002  R9600 Pro primary (Asus OEM for HP)
		1002 0003  R9600 Pro secondary (Asus OEM for HP)
		1002 4722  All-in-Wonder 2006 AGP Edition
		1458 4024  Giga-Byte GV-R96128D (Primary)
		148c 2064  PowerColor R96A-C3N
		148c 2066  PowerColor R96A-C3N
		174b 7c19  Sapphire Atlantis Radeon 9600 Pro
		174b 7c29  GC-R9600PRO [Sapphire] (Primary)
		17ee 2002  Radeon 9600 256Mb Primary
		18bc 0101  GC-R9600PRO (Primary)
	4151  RV350 AQ [Radeon 9600]
		1043 c004  A9600SE
	4152  RV350 AR [Radeon 9600]
		1002 0002  Radeon 9600XT
		1002 4772  All-in-Wonder 9600 XT
		1043 c002  Radeon 9600 XT TVD
		1043 c01a  A9600XT/TD
		174b 7c29  Sapphire Radeon 9600XT
		1787 4002  Radeon 9600 XT
	4153  RV350 AS [Radeon 9550]
		1043 010c  A9550GE/TD
		1462 932c  RX9550SE-TD128 (MS-8932)
	4154  RV350 AT [FireGL T2]
	4155  RV350 AU [FireGL T2]
	4156  RV350 AV [FireGL T2]
	4157  RV350 AW [FireGL T2]
	4158  68800AX [Mach32]
	4164  R300 AD [Radeon 9500 Pro] (Secondary)
	4165  R300 AE [Radeon 9700 Pro] (Secondary)
	4166  R300 AF [Radeon 9700 Pro] (Secondary)
	4168  Radeon R350 [Radeon 9800] (Secondary)
	4170  RV350 AP [Radeon 9600] (Secondary)
		1002 0003  R9600 Pro secondary (Asus OEM for HP)
		1002 4723  All-in-Wonder 2006 AGP Edition (Secondary)
		1458 4025  Giga-Byte GV-R96128D (Secondary)
		148c 2067  PowerColor R96A-C3N (Secondary)
		174b 7c28  GC-R9600PRO [Sapphire] (Secondary)
		17ee 2003  Radeon 9600 256Mb (Secondary)
		18bc 0100  GC-R9600PRO (Secondary)
	4171  RV350 AQ [Radeon 9600] (Secondary)
		1043 c005  A9600SE (Secondary)
	4172  RV350 AR [Radeon 9600] (Secondary)
		1002 0003  Radeon 9600XT (Secondary)
		1002 4773  All-in-Wonder 9600 XT (Secondary)
		1043 c003  A9600XT (Secondary)
		1043 c01b  A9600XT/TD (Secondary)
		174b 7c28  Sapphire Radeon 9600XT (Secondary)
		1787 4003  Radeon 9600 XT (Secondary)
	4173  RV350 AS [Radeon 9550] (Secondary)
		1043 010d  A9550GE/TD (Secondary)
	4237  Radeon 7000 IGP
	4242  R200 BB [Radeon All in Wonder 8500DV]
		1002 02aa  Radeon 8500 AIW DV Edition
	4243  R200 BC [Radeon All in Wonder 8500]
	4336  Radeon Mobility U1
		1002 4336  Pavilion ze4300 ATI Radeon Mobility U1 (IGP 320 M)
		103c 0024  Pavilion ze4400 builtin Video
		161f 2029  eMachines M5312 builtin Video
	4337  Radeon IGP 330M/340M/350M
		1014 053a  ThinkPad R40e
		103c 0850  Radeon IGP 345M
	4341  IXP150 AC'97 Audio Controller
	4342  IXP200 3COM 3C920B Ethernet Controller
	4345  EHCI USB Controller
	4347  OHCI USB Controller #1
	4348  OHCI USB Controller #2
	4349  Dual Channel Bus Master PCI IDE Controller
	434d  IXP AC'97 Modem
	4353  SMBus
	4354  215CT [Mach64 CT]
	4358  210888CX [Mach64 CX]
	4361  IXP SB300 AC'97 Audio Controller
	4363  SMBus
	436e  436E Serial ATA Controller
	4370  IXP SB400 AC'97 Audio Controller
		1025 0079  Aspire 5024WLMMi
		1025 0091  Aspire 5032WXMi
		103c 308b  MX6125
		105b 0c81  Realtek ALC 653
		107b 0300  MX6421
		1462 0131  MS-1013 Notebook
	4371  IXP SB400 PCI-PCI Bridge
		103c 308b  MX6125
		1462 7217  Aspire L250
	4372  IXP SB400 SMBus Controller
		1025 0080  Aspire 5024WLMMi
		103c 308b  MX6125
		1462 0131  MS-1013 Notebook
		1462 7217  Aspire L250
	4373  IXP SB400 USB2 Host Controller
		1025 0080  Aspire 5024WLMMi
		103c 308b  MX6125
		1462 7217  Aspire L250
	4374  IXP SB400 USB Host Controller
		103c 308b  MX6125
		1462 7217  Aspire L250
	4375  IXP SB400 USB Host Controller
		1025 0080  Aspire 5024WLMMi
		103c 308b  MX6125
		1462 7217  Aspire L250
	4376  IXP SB400 IDE Controller
		1025 0080  Aspire 5024WLMMi
		103c 308b  MX6125
		1462 0131  MS-1013 Notebook
		1462 7217  Aspire L250
	4377  IXP SB400 PCI-ISA Bridge
		1025 0080  Aspire 5024WLMi
		103c 308b  MX6125
		1462 7217  Aspire L250
	4378  SB400 AC'97 Modem Controller
		1025 0080  Aspire 5024WLMMi
		103c 308b  MX6125
		1462 0131  MS-1013 Notebook
	4379  IXP SB400 Serial ATA Controller
		1462 7141  Aspire L250
	437a  IXP SB400 Serial ATA Controller
		1002 4379  4379 Serial ATA Controller
		1002 437a  437A Serial ATA Controller
		1462 7141  Aspire L250
		14f1 8800  Leadtek WinFast TV2000XP Expert
	437b  IXP SB4x0 High Definition Audio Controller
		1002 437b  IXP SB4x0 High Definition Audio Controller
		10cf 1326  Fujitsu Lifebook A3040
		1734 10b8  Realtek High Definition Audio
	4380  SB600 Non-Raid-5 SATA
		103c 2813  DC5750 Microtower
		1458 b003  GA-MA790FX-DS5 (rev. 1.0)
		1458 b005  Gigabyte GA-MA69G-S3H Motherboard
		1462 7327  K9AG Neo2
		17f2 5999  KI690-AM2 Motherboard
	4381  SB600 Raid-5 SATA
	4382  SB600 AC97 Audio
	4383  SBx00 Azalia (Intel HDA)
		103c 280a  DC5750 Microtower
		1043 836c  M4A785TD Motherboard
		17f2 5000  KI690-AM2 Motherboard
	4384  SBx00 PCI to PCI Bridge
	4385  SBx00 SMBus Controller
		103c 280a  DC5750 Microtower
		1043 8389  M4A785TD Motherboard
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	4386  SB600 USB Controller (EHCI)
		103c 280a  DC5750 Microtower
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	4387  SB600 USB (OHCI0)
		103c 280a  DC5750 Microtower
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	4388  SB600 USB (OHCI1)
		103c 280a  DC5750 Microtower
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	4389  SB600 USB (OHCI2)
		103c 280a  DC5750 Microtower
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	438a  SB600 USB (OHCI3)
		103c 280a  DC5750 Microtower
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	438b  SB600 USB (OHCI4)
		103c 280a  DC5750 Microtower
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	438c  SB600 IDE
		103c 280a  DC5750 Microtower
		1458 5002  Gigabyte GA-MA69G-S3H Motherboard
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	438d  SB600 PCI to LPC Bridge
		103c 280a  DC5750 Microtower
		1462 7368  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	438e  SB600 AC97 Modem
	4390  SB700/SB800 SATA Controller [IDE mode]
		1043 8389  M4A785TD Motherboard
		1849 4390  Motherboard (one of many)
	4391  SB700/SB800 SATA Controller [AHCI mode]
	4392  SB700/SB800 SATA Controller [Non-RAID5 mode]
	4393  SB700/SB800 SATA Controller [RAID5 mode]
# 4394 is same as 4391, for AHCI mode
	4394  SB700/SB800 SATA Controller [AHCI mode]
	4395  SB800 SATA Controller [Storage mode with HyperFlash-PCIE]
	4396  SB700/SB800 USB EHCI Controller
	4397  SB700/SB800 USB OHCI0 Controller
	4398  SB700 USB OHCI1 Controller
	4399  SB700/SB800 USB OHCI2 Controller
	439c  SB700/SB800 IDE Controller
	439d  SB700/SB800 LPC host controller
	4437  Radeon Mobility 7000 IGP
	4554  210888ET [Mach64 ET]
	4654  Mach64 VT
	4742  3D Rage Pro AGP 1X/2X
		1002 0040  Rage Pro Turbo AGP 2X
		1002 0044  Rage Pro Turbo AGP 2X
		1002 0061  Rage Pro AIW AGP 2X
		1002 0062  Rage Pro AIW AGP 2X
		1002 0063  Rage Pro AIW AGP 2X
		1002 0080  Rage Pro Turbo AGP 2X
		1002 0084  Rage Pro Turbo AGP 2X
		1002 4742  Rage Pro Turbo AGP 2X
		1002 8001  Rage Pro Turbo AGP 2X
		1028 0082  Rage Pro Turbo AGP 2X
		1028 4082  Optiplex GX1 Onboard Display Adapter
		1028 8082  Rage Pro Turbo AGP 2X
		1028 c082  Rage Pro Turbo AGP 2X
		8086 4152  Xpert 98D AGP 2X
		8086 464a  Rage Pro Turbo AGP 2X
	4744  3D Rage Pro AGP 1X
		1002 4744  Rage Pro Turbo AGP
		8086 4d55  Rage 3D Pro AGP 1X [Intel MU440EX]
	4747  3D Rage Pro
	4749  3D Rage Pro
		1002 0061  Rage Pro AIW
		1002 0062  Rage Pro AIW
	474c  Rage XC
	474d  Rage XL AGP 2X
		1002 0004  Xpert 98 RXL AGP 2X
		1002 0008  Xpert 98 RXL AGP 2X
		1002 0080  Rage XL AGP 2X
		1002 0084  Xpert 98 AGP 2X
		1002 474d  Rage XL AGP
		1033 806a  Rage XL AGP
	474e  Rage XC AGP
		1002 474e  Rage XC AGP
	474f  Rage XL
		1002 0008  Rage XL
		1002 474f  Rage XL
	4750  3D Rage Pro 215GP
		1002 0040  Rage Pro Turbo
		1002 0044  Rage Pro Turbo
		1002 0080  Rage Pro Turbo
		1002 0084  Rage Pro Turbo
		1002 4750  Rage Pro Turbo
	4751  3D Rage Pro 215GQ
	4752  Rage XL
		0e11 001e  Proliant Rage XL
		1002 0008  Rage XL
		1002 4752  Proliant Rage XL
		1002 8008  Rage XL
		1028 00ce  PowerEdge 1400
		1028 00d1  PowerEdge 2550
		1028 00d9  PowerEdge 2500
		1028 0134  PowerEdge 600SC
		1028 014a  PowerEdge 1750
		1028 0165  PowerEdge 750
		103c 10e1  NetServer Rage XL
		107b 6400  6400 Server
		1734 007a  PRIMERGY RX/TX series onboard VGA
		8086 3411  SDS2 Mainboard
		8086 3427  S875WP1-E mainboard
		8086 5744  S845WD1-E mainboard
	4753  Rage XC
		1002 4753  Rage XC
	4754  3D Rage I/II 215GT [Mach64 GT]
	4755  3D Rage II+ 215GTB [Mach64 GTB]
	4756  3D Rage IIC 215IIC [Mach64 GT IIC]
		1002 4756  Rage IIC
	4757  3D Rage IIC AGP
		1002 4757  Rage IIC AGP
		1028 0089  Rage 3D IIC
		1028 008e  PowerEdge 1300 onboard video
		1028 4082  Rage 3D IIC
		1028 8082  Rage 3D IIC
		1028 c082  Rage 3D IIC
	4758  210888GX [Mach64 GX]
	4759  3D Rage IIC
	475a  3D Rage IIC AGP
		1002 0084  Rage 3D Pro AGP 2x XPERT 98
		1002 0087  Rage 3D IIC
		1002 475a  Rage IIC AGP
	4964  Radeon RV250 Id [Radeon 9000]
	4965  Radeon RV250 Ie [Radeon 9000]
	4966  Radeon RV250 If [Radeon 9000]
		10f1 0002  RV250 If [Tachyon G9000 PRO]
		148c 2039  RV250 If [Radeon 9000 Pro "Evil Commando"]
		1509 9a00  RV250 If [Radeon 9000 "AT009"]
		1681 0040  RV250 If [3D prophet 9000]
		174b 7176  RV250 If [Sapphire Radeon 9000 Pro]
		174b 7192  RV250 If [Radeon 9000 "Atlantis"]
		17af 2005  RV250 If [Excalibur Radeon 9000 Pro]
		17af 2006  RV250 If [Excalibur Radeon 9000]
	4967  Radeon RV250 Ig [Radeon 9000]
	496e  Radeon RV250 [Radeon 9000] (Secondary)
	4a48  R420 JH [Radeon X800]
	4a49  R420 JI [Radeon X800PRO]
	4a4a  R420 JJ [Radeon X800SE]
	4a4b  R420 JK [Radeon X800]
	4a4c  R420 JL [Radeon X800]
	4a4d  R420 JM [FireGL X3]
	4a4e  M18 JN [Radeon Mobility 9800]
	4a4f  Radeon X800 SE (R420) (AGP)
	4a50  R420 JP [Radeon X800XT]
	4a54  R420 [Radeon X800 VE]
	4a69  R420 [Radeon X800 PRO/GTO] (Secondary)
	4a6a  R420 [Radeon X800] (Secondary)
	4a6b  R420 [Radeon X800] (Secondary)
	4a70  R420 [X800XT-PE] (Secondary)
	4a74  R420 [Radeon X800 VE] (Secondary)
	4b48  Radeon X850 Consumer (R481)
	4b49  R480 [Radeon X850XT]
	4b4a  Radeon X850 SE (R480) (AGP)
	4b4b  R480 [Radeon X850Pro]
	4b4c  R481 [Radeon X850XT-PE]
	4b69  R480 [Radeon X850XT] (Secondary)
	4b6b  R480 [Radeon X850Pro] (Secondary)
	4b6c  R481 [Radeon X850XT-PE] (Secondary)
	4c42  3D Rage LT Pro AGP-133
		0e11 b0e7  Rage LT Pro (Compaq Presario 5240)
		0e11 b0e8  Rage 3D LT Pro
		0e11 b10e  3D Rage LT Pro (Compaq Armada 1750)
		1002 0040  Rage LT Pro AGP 2X
		1002 0044  Rage LT Pro AGP 2X
		1002 4c42  Rage LT Pro AGP 2X
		1002 8001  Rage LT Pro AGP 2X
		1028 0085  Rage 3D LT Pro
	4c44  3D Rage LT Pro AGP-66
	4c45  Rage Mobility M3 AGP
	4c46  Rage Mobility M3 AGP 2x
		1002 0155  IBM Thinkpad A22p
		1014 0155  IBM Thinkpad A22p
		1028 00b1  Latitude C600
	4c47  3D Rage LT-G 215LG
	4c49  3D Rage LT Pro
		1002 0004  Rage LT Pro
		1002 0040  Rage LT Pro
		1002 0044  Rage LT Pro
		1002 4c49  Rage LT Pro
	4c4d  Rage Mobility P/M AGP 2x
		0e11 b111  Armada M700
		0e11 b160  Armada E500
		1002 0084  Xpert 98 AGP 2X (Mobility)
		1014 0154  ThinkPad A20m/A21m
		1028 00aa  Latitude CPt
		1028 00bb  Latitude CPx
		1179 ff00  Satellite 1715XCDS laptop
		13bd 1019  PC-AR10
	4c4e  Rage Mobility L AGP 2x
	4c50  3D Rage LT Pro
		1002 4c50  Rage LT Pro
	4c51  3D Rage LT Pro
	4c52  Rage Mobility P/M
		1033 8112  Versa Note VXi
	4c53  Rage Mobility L
	4c54  264LT [Mach64 LT]
	4c57  Radeon Mobility M7 LW [Radeon Mobility 7500]
		1014 0517  ThinkPad T30
		1014 0530  ThinkPad T42 2373-4WU
		1028 00e6  Radeon Mobility M7 LW (Dell Inspiron 8100)
		1028 012a  Latitude C640
		1043 1622  Mobility Radeon M7 (L3C/S)
		144d c006  Radeon Mobility M7 LW in vpr Matrix 170B4
	4c58  Radeon RV200 LX [Mobility FireGL 7800 M7]
	4c59  Radeon Mobility M6 LY
		0e11 b111  Evo N600c
		1014 0235  ThinkPad A30/A30p (2652/2653)
		1014 0239  ThinkPad X22/X23/X24
		104d 80e7  VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP
		104d 8140  PCG-Z1SP laptop
		1509 1930  Medion MD9703
	4c5a  Radeon Mobility M6 LZ
	4c64  Radeon RV250 Ld [Radeon Mobility 9000 M9]
	4c65  Radeon RV250 Le [Radeon Mobility 9000 M9]
	4c66  Radeon RV250 [Mobility FireGL 9000]
		1014 054d  ThinkPad T41
	4c67  Radeon RV250 Lg [Radeon Mobility 9000 M9]
# Secondary chip to the Lf
	4c6e  Radeon RV250 Ln [Radeon Mobility 9000 M9] (Secondary)
	4d46  Rage Mobility M4 AGP
	4d4c  Rage Mobility M4 AGP
	4d52  Theater 550 PRO PCI [ATI TV Wonder 550]
	4d53  Theater 550 PRO PCIe
	4e44  Radeon R300 ND [Radeon 9700 Pro]
		1002 515e  Radeon ES1000
		1002 5965  Radeon ES1000
	4e45  Radeon R300 NE [Radeon 9500 Pro]
		1002 0002  Radeon R300 NE [Radeon 9500 Pro]
		1681 0002  Hercules 3D Prophet 9500 PRO [Radeon 9500 Pro]
	4e46  R300 NF [Radeon 9600 TX]
	4e47  Radeon R300 NG [FireGL X1]
	4e48  Radeon R350 [Radeon 9800 Pro]
	4e49  Radeon R350 [Radeon 9800]
	4e4a  R360 NJ [Radeon 9800 XT]
		1002 4e4a  R360 [Radeon 9800 XT]
	4e4b  R350 NK [FireGL X2]
	4e50  RV350 [Mobility Radeon 9600 M10]
		1025 005a  TravelMate 290
		103c 088c  NC8000 laptop
		103c 0890  NC6000 laptop
		144d c00c  P35 notebook
		1462 0311  MSI M510A
		1734 1055  Amilo M1420W
	4e51  M10 NQ [Radeon Mobility 9600]
	4e52  RV350 [Mobility Radeon 9600 M10]
		144d c00c  P35 notebook
	4e53  M10 NS [Radeon Mobility 9600]
	4e54  M10 NT [FireGL Mobility T2]
	4e56  M11 NV [FireGL Mobility T2e]
	4e64  Radeon R300 [Radeon 9700 Pro] (Secondary)
	4e65  Radeon R300 [Radeon 9500 Pro] (Secondary)
		1002 0003  Radeon R300 NE [Radeon 9500 Pro]
		1681 0003  Hercules 3D Prophet 9500 PRO [Radeon 9500 Pro] (Secondary)
	4e66  RV350 NF [Radeon 9600] (Secondary)
	4e67  Radeon R300 [FireGL X1] (Secondary)
	4e68  Radeon R350 [Radeon 9800 Pro] (Secondary)
	4e69  Radeon R350 [Radeon 9800] (Secondary)
	4e6a  RV350 NJ [Radeon 9800 XT] (Secondary)
		1002 4e6a  R360 [Radeon 9800 XT] (Secondary)
		1002 4e71  M10 NQ [Radeon Mobility 9600]
	4e71  M10 NQ [Radeon Mobility 9600] (Secondary)
	4f72  RV250 [Radeon 9000 Series]
	4f73  Radeon RV250 [Radeon 9000 Series] (Secondary)
	5041  Rage 128 PA/PRO
	5042  Rage 128 PB/PRO AGP 2x
	5043  Rage 128 PC/PRO AGP 4x
	5044  Rage 128 PD/PRO TMDS
		1002 0028  Rage 128 AIW
		1002 0029  Rage 128 AIW
	5045  Rage 128 PE/PRO AGP 2x TMDS
	5046  Rage 128 PF/PRO AGP 4x TMDS
		1002 0004  Rage Fury Pro
		1002 0008  Rage Fury Pro/Xpert 2000 Pro
		1002 0014  Rage Fury Pro
		1002 0018  Rage Fury Pro/Xpert 2000 Pro
		1002 0028  Rage 128 Pro AIW AGP
		1002 002a  Rage 128 Pro AIW AGP
		1002 0048  Rage Fury Pro
		1002 2000  Rage Fury MAXX AGP 4x (TMDS) (VGA device)
		1002 2001  Rage Fury MAXX AGP 4x (TMDS) (Extra device?!)
	5047  Rage 128 PG/PRO
	5048  Rage 128 PH/PRO AGP 2x
	5049  Rage 128 PI/PRO AGP 4x
	504a  Rage 128 PJ/PRO TMDS
	504b  Rage 128 PK/PRO AGP 2x TMDS
	504c  Rage 128 PL/PRO AGP 4x TMDS
	504d  Rage 128 PM/PRO
	504e  Rage 128 PN/PRO AGP 2x
	504f  Rage 128 PO/PRO AGP 4x
	5050  Rage 128 PP/PRO TMDS [Xpert 128]
		1002 0008  Xpert 128
	5051  Rage 128 PQ/PRO AGP 2x TMDS
	5052  Rage 128 PR/PRO AGP 4x TMDS
	5053  Rage 128 PS/PRO
	5054  Rage 128 PT/PRO AGP 2x
	5055  Rage 128 PU/PRO AGP 4x
	5056  Rage 128 PV/PRO TMDS
	5057  Rage 128 PW/PRO AGP 2x TMDS
	5058  Rage 128 PX/PRO AGP 4x TMDS
	5144  Radeon R100 QD [Radeon 7200]
		1002 0008  Radeon 7000/Radeon VE
		1002 0009  Radeon 7000/Radeon
		1002 000a  Radeon 7000/Radeon
		1002 001a  Radeon 7000/Radeon
		1002 0029  Radeon AIW
		1002 0038  Radeon 7000/Radeon
		1002 0039  Radeon 7000/Radeon
		1002 008a  Radeon 7000/Radeon
		1002 00ba  Radeon 7000/Radeon
		1002 0139  Radeon 7000/Radeon
		1002 028a  Radeon 7000/Radeon
		1002 02aa  Radeon AIW
		1002 053a  Radeon 7000/Radeon
	5145  Radeon R100 QE
	5146  Radeon R100 QF
	5147  Radeon R100 QG
	5148  Radeon R200 QH [Radeon 8500]
		1002 010a  FireGL 8800 64Mb
		1002 0152  FireGL 8800 128Mb
		1002 0162  FireGL 8700 32Mb
		1002 0172  FireGL 8700 64Mb
	5149  Radeon R200 QI
	514a  Radeon R200 QJ
	514b  Radeon R200 QK
	514c  Radeon R200 QL [Radeon 8500 LE]
		1002 003a  Radeon R200 QL [Radeon 8500 LE]
		1002 013a  Radeon 8500
		148c 2026  R200 QL [Radeon 8500 Evil Master II Multi Display Edition]
		1681 0010  Radeon 8500 [3D Prophet 8500 128Mb]
		174b 7149  Radeon R200 QL [Sapphire Radeon 8500 LE]
		1787 0f08  Radeon R200 QL [PowerMagic Radeon 8500]
	514d  Radeon R200 QM [Radeon 9100]
	514e  Radeon R200 QN [Radeon 8500LE]
	514f  Radeon R200 QO [Radeon 8500LE]
	5154  R200 QT [Radeon 8500]
	5155  R200 QU [Radeon 9100]
	5157  Radeon RV200 QW [Radeon 7500]
		1002 013a  Radeon 7500
		1002 0f2b  ALL-IN-WONDER VE PCI
		1002 103a  Dell Optiplex GX260
		1458 4000  RV200 QW [RADEON 7500 PRO MAYA AR]
		148c 2024  RV200 QW [Radeon 7500LE Dual Display]
		148c 2025  RV200 QW [Radeon 7500 Evil Master Multi Display Edition]
		148c 2036  RV200 QW [Radeon 7500 PCI Dual Display]
		174b 7146  RV200 QW [Radeon 7500 LE]
		174b 7147  RV200 QW [Sapphire Radeon 7500LE]
		174b 7161  Radeon RV200 QW [Radeon 7500 LE]
		17af 0202  RV200 QW [Excalibur Radeon 7500LE]
	5158  Radeon RV200 QX [Radeon 7500]
	5159  Radeon RV100 QY [Radeon 7000/VE]
		1002 000a  Radeon 7000/Radeon VE
		1002 000b  Radeon 7000
		1002 0038  Radeon 7000/Radeon VE
		1002 003a  Radeon 7000/Radeon VE
		1002 00ba  Radeon 7000/Radeon VE
		1002 013a  Radeon 7000/Radeon VE
		1002 0908  XVR-100 (supplied by Sun)
# The IBM card doubles as an ATI PCI video adapter
		1014 029a  Remote Supervisor Adapter II (RSA2)
		1014 02c8  eServer xSeries server mainboard
		1028 016c  PowerEdge 1850 Embedded Radeon 7000/VE
		1028 016d  PowerEdge 2850 Embedded Radeon 7000-M
		1028 0170  PowerEdge 6850 Embedded Radeon 7000/VE
		1028 019a  PowerEdge SC1425
		103c 1292  Radeon 7000
		1043 c00a  A7000/T/64M
		1458 4002  RV100 QY [RADEON 7000 PRO MAYA AV Series]
		148c 2003  RV100 QY [Radeon 7000 Multi-Display Edition]
		148c 2023  RV100 QY [Radeon 7000 Evil Master Multi-Display]
		174b 0280  Radeon RV100 QY [Radeon 7000/VE]
		174b 7112  RV100 QY [Sapphire Radeon VE 7000]
		174b 7c28  Sapphire Radeon VE 7000 DDR
		1787 0202  RV100 QY [Excalibur Radeon 7000]
		17ee 1001  Radeon 7000 64MB DDR + DVI
	515a  Radeon RV100 QZ [Radeon 7000/VE]
	515e  ES1000
		1028 01bb  PowerEdge 1955 Embedded ATI ES1000
		1028 01df  PowerEdge SC440
		1028 01e6  PowerEdge 860
		1028 01f0  PowerEdge R900 Embedded ATI ES1000
		1028 0205  PowerEdge 2970 Embedded ATI ES1000
		1028 020b  PowerEdge T605 Embedded ATI ES1000
		1028 020f  PowerEdge R300 Embedded ATI ES1000
		1028 0210  PowerEdge T300 Embedded ATI ES1000
		1028 0221  PowerEdge R805 Embedded ATI ES1000
		1028 0223  PowerEdge R905 Embedded ATI ES1000
		1028 0225  PowerEdge T105 Embedded ATI ES1000
		1028 023c  PowerEdge R200 Embedded ATI ES1000
		103c 1304  Integrity iLO2 Advanced KVM VGA [AD307A]
		15d9 8680  X7DVL-E-O motherboard
		8086 3476  S5000PSLSATA Server Board
	515f  ES1000
	5168  Radeon R200 Qh
	5169  Radeon R200 Qi
	516a  Radeon R200 Qj
	516b  Radeon R200 Qk
# This one is not in ATI documentation, but is in XFree86 source code
	516c  Radeon R200 Ql
	5245  Rage 128 RE/SG
		1002 0008  Xpert 128
		1002 0028  Rage 128 AIW
		1002 0029  Rage 128 AIW
		1002 0068  Rage 128 AIW
	5246  Rage 128 RF/SG AGP
		1002 0004  Magnum/Xpert 128/Xpert 99
		1002 0008  Magnum/Xpert128/X99/Xpert2000
		1002 0028  Rage 128 AIW AGP
		1002 0044  Rage Fury/Xpert 128/Xpert 2000
		1002 0068  Rage 128 AIW AGP
		1002 0448  Rage Fury
	5247  Rage 128 RG
	524b  Rage 128 RK/VR
	524c  Rage 128 RL/VR AGP
		1002 0008  Xpert 99/Xpert 2000
		1002 0088  Xpert 99
	5345  Rage 128 SE/4x
	5346  Rage 128 SF/4x AGP 2x
		1002 0048  RAGE 128 16MB VGA TVOUT AMC PAL
	5347  Rage 128 SG/4x AGP 4x
	5348  Rage 128 SH
	534b  Rage 128 SK/4x
	534c  Rage 128 SL/4x AGP 2x
	534d  Rage 128 SM/4x AGP 4x
		1002 0008  Xpert 99/Xpert 2000
		1002 0018  Xpert 2000
	534e  Rage 128 4x
	5354  Mach 64 VT
		1002 5654  Mach 64 reference
	5446  Rage 128 Pro Ultra TF
		1002 0004  Rage Fury Pro
		1002 0008  Rage Fury Pro/Xpert 2000 Pro
		1002 0018  Rage Fury Pro/Xpert 2000 Pro
		1002 0028  Rage 128 AIW Pro AGP
		1002 0029  Rage 128 AIW
		1002 002a  Rage 128 AIW Pro AGP
		1002 002b  Rage 128 AIW
		1002 0048  Xpert 2000 Pro
	544c  Rage 128 Pro Ultra TL
	5452  Rage 128 Pro Ultra TR
		1002 001c  Rage 128 Pro 4XL
		103c 1279  Rage 128 Pro 4XL
	5453  Rage 128 Pro Ultra TS
	5454  Rage 128 Pro Ultra TT
	5455  Rage 128 Pro Ultra TU
	5460  M22 [Mobility Radeon X300]
		1775 1100  CR11/VR11 Single Board Computer
	5461  M22 [Mobility Radeon X300]
	5462  M24 [Radeon Mobility X600]
	5464  M22 [FireGL GL]
	5548  R423 UH [Radeon X800 (PCIE)]
	5549  R423 UI [Radeon X800PRO (PCIE)]
	554a  R423 UJ [Radeon X800LE (PCIE)]
	554b  R423 UK [Radeon X800SE (PCIE)]
	554c  Radeon X800 XTP (R430) (PCIE)
	554d  R430 [Radeon X800 XL] (PCIe)
		1458 2124  GV-R80L256V-B (AGP)
	554e  Radeon X800 SE (R430) (PCIE)
	554f  R430 [Radeon X800 (PCIE)]
	5550  R423 [FireGL V7100]
	5551  R423 [FireGL V5100 (PCIE)]
	5552  R423 UR [FireGL V5100 (PCIE)]
	5554  R423 UT [FireGL V7100 (PCIE)]
	5555  R430 GL PRO
	5569  R423 UI [Radeon X800PRO (PCIE)] (Secondary)
	556b  Radeon R423 UK (PCIE) [X800 SE] (Secondary)
	556d  R430 [Radeon X800 XL] (PCIe) (Secondary)
		1458 2125  GV-R80L256V-B (AGP)
	556f  R430 [Radeon X800] (PCIE) (Secondary)
	5571  R423GL-SE [FireGL V5100 (PCIE)] (Secondary)
	564a  M26 [Mobility FireGL V5000]
	564b  M26 [Mobility FireGL V5000]
	564f  M26 [Radeon Mobility X700 XL (PCIE)]
	5652  M26 [Radeon Mobility X700]
	5653  Radeon Mobility X700 (PCIE)
		1025 0080  Aspire 5024WLMi
		103c 0940  HP Compaq NW8240 Mobile Workstation
	5654  264VT [Mach64 VT]
		1002 5654  Mach64VT Reference
	5655  264VT3 [Mach64 VT3]
	5656  264VT4 [Mach64 VT4]
	5657  Radeon X550/X700 Series (RV410)
	5830  RS300 Host Bridge
	5831  RS300 Host Bridge
	5832  RS300 Host Bridge
	5833  Radeon 9100 IGP Host Bridge
	5834  Radeon 9100 IGP
	5835  RS300M AGP [Radeon Mobility 9100IGP]
	5838  Radeon 9100 IGP AGP Bridge
	5854  Radeon Xpress Series (RS480)
	5874  Radeon Xpress Series (RS482)
	5940  RV280 [Radeon 9200 PRO] (Secondary)
		17af 2021  Excalibur Radeon 9250 (Secondary)
	5941  RV280 [Radeon 9200] (Secondary)
		1458 4019  Gigabyte Radeon 9200
		174b 7c12  Sapphire Radeon 9200
		17af 200d  Excalibur Radeon 9200
		18bc 0050  GeXcube GC-R9200-C3 (Secondary)
	5944  RV280 [Radeon 9200 SE (PCI)]
	5950  RS480 Host Bridge
		1025 0080  Aspire 5024WLMMi
		103c 280a  DC5750 Microtower
		103c 308b  MX6125
		1462 0131  MS-1013 Notebook
		1462 7217  Aspire L250
	5951  Radeon Xpress 200 (RS480/RS482/RX480/RX482) Chipset - Host bridge
	5952  RD580 [CrossFire Xpress 3200] Chipset Host Bridge
	5954  RS480 [Radeon Xpress 200G Series]
		1002 5954  RV370 [Radeon Xpress 200G Series]
	5955  Radeon XPRESS 200M 5955 (PCIE)
		1002 5955  RS480 0x5955 [Radeon XPRESS 200M 5955 (PCIE)]
		103c 308b  MX6125
		1462 0131  MS-1013 Notebook
	5956  RD790 Northbridge only dual slot PCI-e_GFX and HT3 K8 part
	5957  RX780/RX790 Chipset Host Bridge
		1849 5957  A770CrossFire Motherboard
	5958  RD780 Northbridge only dual slot PCI-e_GFX and HT1 K8 part
	5960  RV280 [Radeon 9200 PRO]
		17af 2020  Excalibur Radeon 9250
	5961  RV280 [Radeon 9200]
		1002 2f72  All-in-Wonder 9200 Series
		1019 4c30  Radeon 9200 VIVO
		12ab 5961  YUAN SMARTVGA Radeon 9200
		1458 4018  Gigabyte Radeon 9200
		174b 7c13  Sapphire Radeon 9200
		17af 200c  Excalibur Radeon 9200
		18bc 0050  Radeon 9200 Game Buster
		18bc 0051  GeXcube GC-R9200-C3
		18bc 0053  Radeon 9200 Game Buster VIVO
	5962  RV280 [Radeon 9200]
	5964  RV280 [Radeon 9200 SE]
		1002 5964  Radeon 9200 SE, 64-bit 128MB DDR, 200/166MHz
		1043 c006  ASUS Radeon 9200 SE / TD / 128M
		1458 4018  Radeon 9200 SE
		1458 4032  Radeon 9200 SE 128MB
		147b 6191  R9200SE-DT
		148c 2073  CN-AG92E
		174b 7c13  Sapphire Radeon 9200 SE
		1787 5964  Excalibur 9200SE VIVO 128M
		17af 2012  Radeon 9200 SE Excalibur
		18bc 0170  Sapphire Radeon 9200 SE 128MB Game Buster
		18bc 0173  GC-R9200L(SE)-C3H [Radeon 9200 Game Buster]
	5965  RV280 [FireMV 2200 PCI]
	5969  ES1000
	5974  RS482 [Radeon Xpress 200]
		103c 280a  DC5750 Microtower
		1462 7141  Aspire L250
	5975  RS482 [Radeon Xpress 200M]
	5978  RD790 PCI to PCI bridge (external gfx0 port A)
		1849 5957  A770CrossFire Motherboard
	5979  RD790 PCI to PCI bridge (external gfx0 port B)
	597a  RD790 PCI to PCI bridge (PCI express gpp port A)
	597b  RD790 PCI to PCI bridge (PCI express gpp port B)
	597c  RD790 PCI to PCI bridge (PCI express gpp port C)
	597d  RD790 PCI to PCI bridge (PCI express gpp port D)
	597e  RD790 PCI to PCI bridge (PCI express gpp port E)
		1849 5957  A770CrossFire Motherboard
	597f  RD790 PCI to PCI bridge (PCI express gpp port F)
		1849 5957  A770CrossFire Motherboard
	5980  RD790 PCI to PCI bridge (external gfx1 port A)
	5981  RD790 PCI to PCI bridge (external gfx1 port B)
	5982  RD790 PCI to PCI bridge (NB-SB link)
	5a10  RD890 Northbridge only dual slot (2x16) PCI-e GFX Hydra part
	5a11  RD890 Northbridge only single slot PCI-e GFX Hydra part
	5a12  RD890 Northbridge only dual slot (2x8) PCI-e GFX Hydra part
	5a13  RD890 PCI to PCI bridge (external gfx0 port A)
	5a14  RD890 PCI to PCI bridge (external gfx0 port B)
	5a15  RD890 PCI to PCI bridge (PCI express gpp port A)
	5a16  RD890 PCI to PCI bridge (PCI express gpp port B)
	5a17  RD890 PCI to PCI bridge (PCI express gpp port C)
	5a18  RD890 PCI to PCI bridge (PCI express gpp port D)
	5a19  RD890 PCI to PCI bridge (PCI express gpp port E)
	5a1a  RD890 PCI to PCI bridge (PCI express gpp port F)
	5a1b  RD890 PCI to PCI bridge (PCI express gpp port G)
	5a1c  RD890 PCI to PCI bridge (PCI express gpp port H)
	5a1d  RD890 PCI to PCI bridge (external gfx1 port A)
	5a1e  RD890 PCI to PCI bridge (external gfx1 port B)
	5a1f  RD890 PCI to PCI bridge (NB-SB link)
	5a33  Radeon Xpress 200 Host Bridge
	5a34  RS480 PCI-X Root Port
# Comes in pair with 5a3f
	5a36  RS480 PCI Bridge
	5a37  RS480 PCI Bridge
	5a38  RS480 PCI Bridge
# Comes in pair with 5a38
	5a39  RS480 PCI Bridge
	5a3f  RS480 PCI Bridge
		1462 7217  Aspire L250
	5a41  RS400 [Radeon Xpress 200]
	5a42  RS400 [Radeon Xpress 200M]
	5a43  Radeon Xpress Series (RS400)
	5a61  RC410 [Radeon Xpress 200]
	5a62  RC410 [Radeon Xpress 200M]
	5a63  Radeon Xpress Series (RC410)
	5b60  RV370 5B60 [Radeon X300 (PCIE)]
		1043 002a  Extreme AX300SE-X
		1043 032e  Extreme AX300/TD
		1458 2102  GV-RX30S128D (X300SE)
		1462 0400  RX300SE-TD128E (MS-8940 REV:200)
		1462 0402  RX300SE-TD128E (MS-8940)
		174b 0500  Radeon X300 (PCIE)
		196d 1086  X300SE HM
	5b62  RV380 [Radeon X600 (PCIE)]
	5b63  RV370 [Sapphire X550 Silent]
	5b64  RV370 5B64 [FireGL V3100 (PCIE)]
	5b65  RV370 5B65 [FireGL D1100 (PCIE)]
	5b66  RV370X
	5b70  RV370 [Radeon X300SE]
		1462 0403  RX300SE-TD128E (MS-8940) (secondary display)
		174b 0501  Radeon X300SE
		196d 1087  X300SE HM
	5b72  RV380 [Radeon X600]
	5b73  RV370 secondary [Sapphire X550 Silent]
	5b74  RV370 5B64 [FireGL V3100 (PCIE)] (Secondary)
	5b75  RV370 5B75 [FireGL D1100 (PCIE)] (Secondary)
	5c61  M9+ 5C61 [Radeon Mobility 9200 (AGP)]
	5c63  M9+ 5C63 [Radeon Mobility 9200 (AGP)]
		1002 5c63  Apple iBook G4 2004
		144d c00c  P30 notebook
	5d44  RV280 [Radeon 9200 SE] (Secondary)
		1458 4019  Radeon 9200 SE (Secondary)
		1458 4032  Radeon 9200 SE 128MB
		147b 6190  R9200SE-DT (Secondary)
		174b 7c12  Sapphire Radeon 9200 SE (Secondary)
		1787 5965  Excalibur 9200SE VIVO 128M (Secondary)
		17af 2013  Radeon 9200 SE Excalibur (Secondary)
		18bc 0171  Radeon 9200 SE 128MB Game Buster (Secondary)
		18bc 0172  GC-R9200L(SE)-C3H [Radeon 9200 Game Buster]
	5d45  RV280 [FireMV 2200 PCI] (secondary)
	5d48  M28 [Radeon Mobility X800XT]
	5d49  M28 [Mobility FireGL V5100]
	5d4a  Mobility Radeon X800
	5d4c  Radeon X850 (PCIE)
	5d4d  R480 [Radeon X850XT Platinum (PCIE)]
	5d4e  Radeon X850 SE (R480) (PCIE)
	5d4f  R480 [Radeon X800 GTO (PCIE)]
	5d50  FireGL V7200 (R480) (PCIE)
	5d51  R480 GL 12P
	5d52  R480 [Radeon X850XT (PCIE)] (Primary)
		1002 0b12  PowerColor X850XT PCIe (Primary)
		1002 0b13  PowerColor X850XT PCIe (Secondary)
	5d57  R423 5F57 [Radeon X800XT (PCIE)]
	5d6d  R480 [Radeon X850XT Platinum (PCIE)] (Secondary)
	5d6f  R480 [Radeon X800 GTO (PCIE)] (Secondary)
	5d72  R480 [Radeon X850XT (PCIE)] (Secondary)
	5d77  R423 5F57 [Radeon X800XT (PCIE)] (Secondary)
	5e48  RV410 [FireGL V5000]
	5e49  RV410 [FireGL V3300]
	5e4a  RV410 [Radeon X700XT]
	5e4b  RV410 [Radeon X700 Pro (PCIE)]
	5e4c  RV410 [Radeon X700SE]
	5e4d  RV410 [Radeon X700 (PCIE)]
		148c 2116  PowerColor Bravo X700
	5e4f  RV410 [Radeon X700]
	5e6b  RV410 [Radeon X700 Pro (PCIE)] (Secondary)
	5e6d  RV410 [Radeon X700 (PCIE)] (Secondary)
		148c 2117  PowerColor Bravo X700
	5f57  R423 [Radeon X800XT (PCIE)]
	6898  Radeon HD 5870 (Cypress)
		1462 8032  R5870 PM2D1G
	6899  Cypress [Radeon HD 5800 Series]
	68a0  Broadway XT [Mobility Radeon HD 5800 Series]
		103c 1520  Broadway XT [FirePro M7820]
	68a1  Broadway PRO [Mobility Radeon HD 5800 Series]
	68b8  Juniper [Radeon HD 5700 Series]
	68be  Juniper [Radeon HD 5750 Series]
	68c0  Madison [Mobility Radeon HD 5000 Series]
		103c 1521  Madison XT [FirePro M5800]
	68c1  Redwood [Radeon HD 5600 Series]
		1025 0347  Aspire 7740G
		103c 1521  Madison Pro [FirePro M5800]
	68d8  Redwood [Radeon HD 5670]
	68d9  Redwood PRO [Radeon HD 5500 Series]
	68da  Redwood PRO [Radeon HD 5500 Series]
	68e0  Manhattan [Mobility Radeon HD 5000 Series]
	68f9  Cedar PRO [Radeon HD 5450]
	700f  PCI Bridge [IGP 320M]
	7010  PCI Bridge [IGP 340M]
	7100  R520 [Radeon X1800]
	7102  M58 [Radeon Mobility X1800]
	7103  M58 [Mobility FireGL V7200]
	7104  R520GL [FireGL V7200] (Primary)
	7105  R520 [FireGL]
	7106  M58 [Mobility FireGL V7100]
	7108  M58 [Radeon Mobility X1800]
	7109  R520 [Radeon X1800]
		1002 0322  All-in-Wonder X1800XL
		1002 0d02  Radeon X1800 CrossFire Edition
	710a  R520 [Radeon X1800]
	710b  R520 [Radeon X1800]
	710c  R520 [Radeon X1800]
	7120  R520 [Radeon X1800] (Secondary)
	7124  R520GL [FireGL V7200] (Secondary)
	7129  R520 [Radeon X1800] (Secondary)
		1002 0323  All-in-Wonder X1800XL (Secondary)
		1002 0d03  Radeon X1800 CrossFire Edition (Secondary)
	7140  RV515 [Radeon X1600]
	7142  RV515 PRO [Radeon X1300/X1550 Series]
		1002 0322  All-in-Wonder 2006 PCI-E Edition
		1043 0142  EAX1300PRO/TD/256M
	7143  RV505 [Radeon X1550 Series]
	7145  Radeon Mobility X1400
		17aa 2006  Thinkpad T60 model 2007
	7146  RV515 [Radeon X1300]
		1002 0322  All-in-Wonder 2006 PCI-E Edition
		1545 1996  Radeon X1300 512MB PCI-e
	7147  RV505 [Radeon X1550 64-bit]
	7149  M52 [Mobility Radeon X1300]
	714a  M52 [Mobility Radeon X1300]
	714b  M52 [Mobility Radeon X1300]
	714c  M52 [Mobility Radeon X1300]
	714d  RV515 [Radeon X1300]
	714e  RV515LE [Radeon X1300]
	7152  RV515GL [FireGL V3300] (Primary)
	7153  RV515GL [FireGL V3350]
	715e  RV515 [Radeon X1300]
	715f  RV505 CE [Radeon X1550 64-bit]
	7162  RV515 PRO [Radeon X1300/X1550 Series] (Secondary)
		1002 0323  All-in-Wonder 2006 PCI-E Edition (Secondary)
	7163  RV505 [Radeon X1550 Series] (Secondary)
	7166  RV515 [Radeon X1300] (Secondary)
		1002 0323  All-in-Wonder 2006 PCI-E Edition (Secondary)
		1545 1997  Radeon X1300 512MB PCI-e (Secondary)
	716e  RV515LE [Radeon X1300] Secondary
	7172  RV515GL [FireGL V3300] (Secondary)
	7173  RV515GL [FireGL V3350] (Secondary)
	7180  RV516 [Radeon X1300/X1550 Series]
	7181  RV516 XT Radeon X1600 Series (Primary)
	7183  RV516 [Radeon X1300/X1550 Series]
	7186  RV515 [Radeon Mobility X1450]
	7187  RV516 [Radeon X1300/X1550 Series]
	7188  M64-S [Mobility Radeon X2300]
		103c 30c1  6910p
	718a  Mobility Radeon X2300
	718c  M62CSP64 [Mobility Radeon X1350]
	718d  M64CSP128 [Mobility Radeon X1450]
	7193  RV516 [Radeon X1550 Series]
	7196  RV516 [Mobility Radeon X1350]
	719b  FireMV 2250
	719f  RV516LE [Radeon X1550 64-bit]
	71a0  RV516 [Radeon X1300/X1550 Series] (Secondary)
	71a1  RV516 XT Radeon X1600 Series (Secondary)
	71a3  RV516 [Radeon X1300 Pro] (Secondary)
	71a7  RV516 [Radeon X1300/X1550 Series] (Secondary)
	71bb  FireMV 2250 (Secondary)
	71c0  RV530 [Radeon X1600]
	71c1  Radeon X1650 Pro
	71c2  RV530 [Radeon X1600]
	71c4  M56GL [Mobility FireGL V5200]
		17aa 2007  ThinkPad T60p
	71c5  M56P [Radeon Mobility X1600]
		103c 309f  Compaq nx9420 Notebook
		103c 30a3  Compaq NW8440
		1043 10b2  A6J-Q008
		106b 0080  MacBook Pro
	71c6  RV530LE [Radeon X1600/X1650 PRO]
	71c7  RV535 [Radeon X1650 Series]
	71ce  RV530LE [Radeon X1600]
	71d2  RV530GL [FireGL V3400]
	71d4  M56GL [Mobility FireGL V5250]
	71d5  M66-P [Mobility Radeon X1700]
	71d6  M66-XT [Mobility Radeon X1700]
	71de  RV530LE [Radeon X1600]
	71e0  RV530 [Radeon X1600] (Secondary)
	71e1  Radeon X1650 Pro (Secondary)
	71e2  RV530 [Radeon X1600] (Secondary)
	71e6  RV530LE [Radeon X1650 PRO] (Secondary)
	71e7  RV535 [Radeon X1650 Series]
	71f2  RV530GL [FireGL V3400 (Secondary)]
	7210  M71 [Mobility Radeon X2100]
	7211  M71 [Mobility Radeon X2100] (Secondary)
	7240  R580 [Radeon X1900]
	7241  R580 [Radeon X1900]
	7242  R580 [Radeon X1900]
	7243  R580 [Radeon X1900]
	7244  R580 [Radeon X1900]
	7245  R580 [Radeon X1900]
	7246  R580 [Radeon X1900]
	7247  R580 [Radeon X1900]
	7248  R580 [Radeon X1900]
	7249  R580 [Radeon X1900 XT] (Primary)
	724a  R580 [Radeon X1900]
	724b  R580 [Radeon X1900]
		1002 0b12  Radeon X1900 (Primary)
		1002 0b13  Radeon X1900 (Secondary)
	724c  R580 [Radeon X1900]
	724d  R580 [Radeon X1900]
	724e  R580 [AMD Stream Processor]
	7269  R580 [Radeon X1900 XT] (Secondary)
	726b  R580 [Radeon X1900]
	726e  R580 [AMD Stream Processor] (Secondary)
	7280  RV570 [Radeon X1950 Pro]
	7288  Radeon X1950 GT
	7291  Radeon X1650 XT (Primary) (PCIE)
	7293  Radeon X1650 Series
	72a0  RV570 [Radeon X1950 Pro] (secondary)
	72a8  Radeon X1950 GT (Secondary)
	72b1  Radeon X1650 XT (Secondary) (PCIE)
	72b3  Radeon X1650 Series (Secondary)
	7833  Radeon 9100 IGP Host Bridge
	7834  Radeon 9100 PRO IGP
	7835  Radeon Mobility 9200 IGP
	7838  Radeon 9100 IGP PCI/AGP Bridge
	7910  RS690 Host Bridge
		17f2 5000  KI690-AM2 Motherboard
	7911  RS690 Host Bridge
	7912  RS690 PCI to PCI Bridge (Internal gfx)
	7913  RS690 PCI to PCI Bridge (PCI Express Graphics Port 0)
	7915  RS690 PCI to PCI Bridge (PCI Express Port 1)
	7916  RS690 PCI to PCI Bridge (PCI Express Port 2)
	7917  RS690 PCI to PCI Bridge (PCI Express Port 3)
		1002 7910  RS690 PCI to PCI Bridge
	7919  Radeon X1200 Series Audio Controller
		17f2 5000  KI690-AM2 Motherboard
	791e  RS690 [Radeon X1200 Series]
		1462 7327  K9AG Neo2
		17f2 5000  KI690-AM2 Motherboard
	791f  RS690M [Radeon X1200 Series]
	7930  Radeon Xpress 7930 Host Bridge
	7932  RS7932 PCI Bridge
	7933  RS7933 PCI Bridge
	7936  RS7936 PCI Bridge
	793b  RS600 audio device [Radeon Xpress 12xx Series]
	793f  RS600 [Radeon Xpress 1200 Series]
	7941  RS600 [Radeon Xpress 1200 Series]
	7942  Radeon Xpress 1250
	796e  Radeon 2100
	7c37  RV350 AQ [Radeon 9600 SE]
	9400  R600 [Radeon HD 2900 Series]
		1002 3000  Sapphire Radeon HD 2900 XT
		1002 3142  HIS Radeon HD 2900XT 512MB GDDR3 VIVO PCIe
	9403  R600 [Radeon HD 2900 PRO]
	940a  R600GL [Fire GL V8650]
	940b  R600GL [Fire GL V8600]
	940f  R600 [FireGL V7600]
	9440  RV770 [Radeon HD 4870]
	9441  R700 [Radeon HD 4870 X2]
	9442  RV770 [Radeon HD 4850]
		174b e810  Sapphire HD 4850 512MB GDDR3 PCI-E Dual Slot Fansink
	9443  R700 [Radeon HD 4850]
	944a  M98L [Mobility Radeon HD 4850]
	944c  RV770 LE [Radeon HD 4800 Series]
	944e  RV770 CE [Radeon HD 4710]
	9450  RV770 [FireStream 9270]
	9452  RV770 [FireStream 9250]
	945a  M98 XT [Mobility Radeon HD 4870]
	9460  RV790 [Radeon HD 4800 Series]
	9462  RV790LE [Radeon HD 4800 Series]
	9480  M96 [Mobility Radeon HD 4650]
		103c 3628  ATI Mobility Radeon HD 4650 [dv6-1190en]
	9485  RV740 Pro [Radeon HD 4770]
	9489  M96 XT [Mobility FireGL V5725]
	9490  RV730XT [Radeon HD 4670]
		174b e880  Radeon HD 4670 512MB DDR3
	9491  M96 CSP [ATI RADEON E4690]
	9495  RV730 Pro AGP [Radeon HD 4600 Series]
		1002 9495  RV730 XT [PowerColor Radeon HD4670 AGP 1GB DDR]
		1458 0028  HD4650
	9498  RV730 PRO [Radeon HD 4650]
	949e  RV370 [FirePro V5700]
	949f  RV730 [FirePro V5700]
	94a0  Mobility Radeon HD 4830 [M97]
	94a1  [M97 XT] Mobility Radeon HD 4860
	94a3  M97 GL [ATI FirePro M7740]
	94b3  Radeon HD 4770 [RV740]
	94b4  RV740 LE [ATI Radeon HD 4700 Series]
	94c1  RV610 [Radeon HD 2400 XT]
		1028 0211  Optiplex 755
		1028 0d02  Optiplex 755
	94c3  RV610 video device [Radeon HD 2400 PRO]
		1002 94c3  Radeon HD 2400PRO
		174b e400  Sapphire HD 2400 PRO video device
		18bc 3550  GeCube Radeon HD2400 PRO
	94c4  RV610 LE AGP [Radeon HD 2400 PRO AGP]
	94c8  Radeon HD 2400 XT
	94c9  Mobility Radeon HD 2400
		1002 94c9  Radeon HD2400
	94cb  Radeon E2400
	94cc  RV 610LE PCI [Radeon HD 2400]
	9501  Radeon HD 3870
		174b e620  Sapphire Radeon HD 3870 PCIe 2.0
	9504  Mobility Radeon HD 3850
	9505  RV670PRO [Radeon HD 3850]
	9507  RV670 [Radeon HD 3850]
	9508  M88 XT Mobility Radeon HD 3870]
	950f  R680 [Radeon HD 3870 x2]
	9511  RV670 [FireGL 7700]
	9515  RV670 AGP [Radeon HD 3850]
	9519  RV670 [FireStream 9170]
	9540  RV710 [Radeon HD 4550]
	954f  RV710 [Radeon HD 4350]
	9552  M92 LP [Mobility Radeon HD 4300 Series]
	9553  M92 [Mobility Radeon HD 4500 Series]
	9555  M93 [Mobility Radeon HD 4500 Series]
	9559  Mobility Radeon HD 3600 Series
	9581  M76 [Radeon Mobility HD 2600 Series]
	9583  M76XT [Mobility Radeon HD 2600 XT]
	9586  RV 630 XT AGP [Radeon HD 2600 XT AGP]
	9587  RV630 PRO AGP [Radeon HD 2600 PRO AGP]
	9588  RV630 [Radeon HD 2600XT]
		1458 216c  Radeon HD 2600 XT, 256MB GDDR3, 2x DVI, TV-out, PCIe (GV-RX26T256H)
	9589  RV630 [Radeon HD 2600 Series]
	958c  RV630GL [FireGL v5600]
	958d  RV630 [FireGL V3600]
	9591  Mobility Radeon HD 3650
		1002 9591  Mobility Radeon HD 3650
	9593  Radeon Mobility HD 3670
	9595  M86GL [Mobility FireGL V5700]
	9596  RV635 PRO AGP [Radeon HD 3650]
	9598  Mobility Radeon HD 3600 Series
		1002 9598  Mobility Radeon HD 3600
		1043 01d6  EAH3650 Silent
	95c0  Mobility Radeon HD 3470
		1002 95c0  Mobility Radeon HD 3470
	95c4  Mobility Radeon HD 3400 Series
		1002 95c4  Mobility Radeon HD 3400
	95c5  RV620 LE [Radeon HD 3450]
	95c6  RV620 LE AGP [Radeon HD 3450]
	95c7  RV620 CE [Radeon HD 3430]
	95c9  RV620 PCI [Radeon HD 3450]
	95cc  RV620 [ATI FireGL V3700]
	95cd  RV620 [FireMV 2450]
	95ce  RV620 [FirePro 2260]
	95cf  RV620 [FirePro 2260]
	960f  RS780 Azalia controller
	9610  Radeon HD 3200 Graphics
		1458 d000  GA-MA78GM-S2H Motherboard
	9611  Radeon 3100 Graphics
	9612  RS780M/RS780MN [Radeon HD 3200 Graphics]
	9613  RS780MC [Radeon HD 3100 Graphics]
	9614  Radeon HD 3300 Graphics
	9615  RS780E [AMD 780E]
	9616  760G [Radeon 3000]
	970f  RS880 Audio Device [Radeon HD 4200]
		1043 83a2  M4A785TD Motherboard
	9710  RS880 [Radeon HD 4200]
		1043 83a2  M4A785TD Motherboard
	9712  M880G [Mobility Radeon HD 4200]
	9713  M860G [Mobility Radeon 4100]
	9714  RS880 [Radeon HD 4290]
	9715  RS880 [Radeon HD 4250]
	9723  Radeon HD 5450
	aa00  R600 Audio Device [Radeon HD 2900 Series]
	aa08  RV630/M76 audio device [Radeon HD 2600 Series]
	aa10  RV610 audio device [Radeon HD 2400 PRO]
		174b aa10  Sapphire HD 2400 PRO audio device
		18bc aa10  GeCube Radeon HD 2400 PRO HDCP-capable digital-only audio device
	aa18  Radeon HD 3870 Audio device
	aa20  RV635 Audio device [Radeon HD 3600 Series]
	aa28  RV620 Audio device [Radeon HD 34xx Series]
	aa30  HD48x0 audio
		174b aa30  Sapphire HD 4850 512MB GDDR3 PCI-E Dual Slot Fansink
	aa38  RV710/730
		103c 3628  ATI RV710/730 [dv6-1190en]
		174b aa38  R700 Audio Device [Radeon HD 4000 Series]
	aa50  Cypress HDMI Audio [Radeon HD 5800 Series]
	aa58  Juniper HDMI Audio [Radeon HD 5700 Series]
	aa60  Redwood HDMI Audio [Radeon HD 5600 Series]
		1025 0347  Aspire 7740G
	aa68  Manhattan HDMI Audio [Mobility Radeon HD 5000 Series]
	ac00  Theater 600 Pro
	cab0  AGP Bridge [IGP 320M]
	cab2  RS200/RS200M AGP Bridge [IGP 340M]
	cab3  R200 AGP Bridge [Mobility Radeon 7000 IGP]
	cbb2  RS200/RS200M AGP Bridge [IGP 340M]
1003  ULSI Systems
	0201  US201
1004  VLSI Technology Inc
	0005  82C592-FC1
	0006  82C593-FC1
	0007  82C594-AFC2
	0008  82C596/7 [Wildcat]
	0009  82C597-AFC2
	000c  82C541 [Lynx]
	000d  82C543 [Lynx]
	0101  82C532
	0102  82C534 [Eagle]
	0103  82C538
	0104  82C535
	0105  82C147
	0200  82C975
	0280  82C925
	0304  QSound ThunderBird PCI Audio
		1004 0304  QSound ThunderBird PCI Audio
		122d 1206  DSP368 Audio
		1483 5020  XWave Thunder 3D Audio
	0305  QSound ThunderBird PCI Audio Gameport
		1004 0305  QSound ThunderBird PCI Audio Gameport
		122d 1207  DSP368 Audio Gameport
		1483 5021  XWave Thunder 3D Audio Gameport
	0306  QSound ThunderBird PCI Audio Support Registers
		1004 0306  QSound ThunderBird PCI Audio Support Registers
		122d 1208  DSP368 Audio Support Registers
		1483 5022  XWave Thunder 3D Audio Support Registers
	0307  Thunderbird
	0308  Thunderbird
	0702  VAS96011 [Golden Gate II]
	0703  Tollgate
1005  Avance Logic Inc. [ALI]
	2064  ALG2032/2064
	2128  ALG2364A
	2301  ALG2301
	2302  ALG2302
	2364  ALG2364
	2464  ALG2364A
	2501  ALG2564A/25128A
1006  Reply Group
1007  NetFrame Systems Inc
1008  Epson
100a  Phoenix Technologies
100b  National Semiconductor Corporation
	0001  DP83810
	0002  87415/87560 IDE
	000e  87560 Legacy I/O
	000f  FireWire Controller
	0011  NS87560 National PCI System I/O
	0012  USB Controller
	0020  DP83815 (MacPhyter) Ethernet Controller
		103c 0024  Pavilion ze4400 builtin Network
		12d9 000c  Aculab E1/T1 PMXc cPCI carrier card
		1385 f311  FA311 / FA312 (FA311 with WoL HW)
	0021  PC87200 PCI to ISA Bridge
	0022  DP83820 10/100/1000 Ethernet Controller
		1186 4900  DGE-500T
		1385 621a  GA621
		1385 622a  GA622T
	0028  Geode GX2 Host Bridge
	002a  CS5535 South Bridge
	002b  CS5535 ISA bridge
	002d  CS5535 IDE
	002e  CS5535 Audio
	002f  CS5535 USB
	0030  Geode GX2 Graphics Processor
	0035  DP83065 [Saturn] 10/100/1000 Ethernet Controller
	0500  SCx200 Bridge
	0501  SCx200 SMI
	0502  SCx200, SC1100 IDE controller
		100b 0502  IDE Controller
	0503  SCx200, SC1100 Audio Controller
		100b 0503  XpressAudio controller
	0504  SCx200 Video
	0505  SCx200 XBus
	0510  SC1100 Bridge
		100b 0500  GPIO and LPC support bridge
	0511  SC1100 SMI & ACPI
		100b 0501  SC1100 SMI & ACPI bridge
	0515  SC1100 XBus
		100b 0505  SC1100 PCI to XBus bridge
	d001  87410 IDE
100c  Tseng Labs Inc
	3202  ET4000/W32p rev A
	3205  ET4000/W32p rev B
	3206  ET4000/W32p rev C
	3207  ET4000/W32p rev D
	3208  ET6000
	4702  ET6300
100d  AST Research Inc
100e  Weitek
	9000  P9000 Viper
	9001  P9000 Viper
	9002  P9000 Viper
	9100  P9100 Viper Pro/SE
1010  Video Logic, Ltd.
1011  Digital Equipment Corporation
	0001  DECchip 21050
	0002  DECchip 21040 [Tulip]
	0004  DECchip 21030 [TGA]
	0007  NVRAM [Zephyr NVRAM]
	0008  KZPSA [KZPSA]
	0009  DECchip 21140 [FasterNet]
		1025 0310  21140 Fast Ethernet
		10b8 2001  SMC9332BDT EtherPower 10/100
		10b8 2002  SMC9332BVT EtherPower T4 10/100
		10b8 2003  SMC9334BDT EtherPower 10/100 (1-port)
		1109 2400  ANA-6944A/TX Fast Ethernet
		1112 2300  RNS2300 Fast Ethernet
		1112 2320  RNS2320 Fast Ethernet
		1112 2340  RNS2340 Fast Ethernet
		1113 1207  EN-1207-TX Fast Ethernet
		1186 1100  DFE-500TX Fast Ethernet
		1186 1112  DFE-570TX Fast Ethernet
		1186 1140  DFE-660 Cardbus Ethernet 10/100
		1186 1142  DFE-660 Cardbus Ethernet 10/100
		11f6 0503  Freedomline Fast Ethernet
		1282 9100  AEF-380TXD Fast Ethernet
		1385 1100  FA310TX Fast Ethernet
		2646 0001  KNE100TX Fast Ethernet
	000a  21230 Video Codec
	000d  PBXGB [TGA2]
	000f  PCI-to-PDQ Interface Chip [PFI]
		1011 def1  FDDI controller (DEFPA)
		103c def1  FDDI controller (3X-DEFPA)
	0014  DECchip 21041 [Tulip Pass 3]
		1186 0100  DE-530+
	0016  DGLPB [OPPO]
	0017  PV-PCI Graphics Controller (ZLXp-L)
	0018  Memory Channel interface
	0019  DECchip 21142/43
		1011 500a  DE500A Fast Ethernet
		1011 500b  DE500B Fast Ethernet
		1014 0001  10/100 EtherJet Cardbus
		1025 0315  ALN315 Fast Ethernet
		1033 800c  PC-9821-CS01 100BASE-TX Interface Card
		1033 800d  PC-9821NR-B06 100BASE-TX Interface Card
		103c 125a  10/100Base-TX (PCI) [A5506B]
		108d 0016  Rapidfire 2327 10/100 Ethernet
		108d 0017  GoCard 2250 Ethernet 10/100 Cardbus
		10b8 2005  SMC8032DT Extreme Ethernet 10/100
		10b8 8034  SMC8034 Extreme Ethernet 10/100
		10ef 8169  Cardbus Fast Ethernet
		1109 2a00  ANA-6911A/TX Fast Ethernet
		1109 2b00  ANA-6911A/TXC Fast Ethernet
		1109 3000  ANA-6922/TX Fast Ethernet
		1113 1207  Cheetah Fast Ethernet
		1113 2220  Cardbus Fast Ethernet
		115d 0002  Cardbus Ethernet 10/100
		1179 0203  Fast Ethernet
		1179 0204  Cardbus Fast Ethernet
		1186 1100  DFE-500TX Fast Ethernet
		1186 1101  DFE-500TX Fast Ethernet
		1186 1102  DFE-500TX Fast Ethernet
		1186 1112  DFE-570TX Quad Fast Ethernet
		1259 2800  AT-2800Tx Fast Ethernet
		1266 0004  Eagle Fast EtherMAX
		12af 0019  NetFlyer Cardbus Fast Ethernet
		1374 0001  Cardbus Ethernet Card 10/100
		1374 0002  Cardbus Ethernet Card 10/100
		1374 0007  Cardbus Ethernet Card 10/100
		1374 0008  Cardbus Ethernet Card 10/100
		1385 2100  FA510
		1395 0001  10/100 Ethernet CardBus PC Card
		13d1 ab01  EtherFast 10/100 Cardbus (PCMPC200)
		1498 000a  TPMC880-10 10/100Base-T and 10Base2 PMC Ethernet Adapter
		1498 000b  TPMC880-11 Single 10/100Base-T PMC Ethernet Adapter
		1498 000c  TPMC880-12 Single 10Base2 PMC Ethernet Adapter
		14cb 0100  LNDL-100N 100Base-TX Ethernet PC Card
		1668 2000  FastNet Pro (PE2000)
		2646 0001  KNE100TX
		2646 0002  KNE-CB4TX
		8086 0001  EtherExpress PRO/100 Mobile CardBus 32
	001a  Farallon PN9000SX Gigabit Ethernet
	0021  DECchip 21052
	0022  DECchip 21150
	0023  DECchip 21150
	0024  DECchip 21152
	0025  DECchip 21153
	0026  DECchip 21154
	0034  56k Modem Cardbus
		1374 0003  56k Modem Cardbus
	0045  DECchip 21553
	0046  DECchip 21554
		0e11 4050  Smart Array 4200 Controller
		0e11 4051  Smart Array 4250ES Controller
		0e11 4058  Smart Array 431 Controller
		103c 10c2  NetRAID-4M
		12d9 000a  IP Telephony card
		4c53 1050  CT7 mainboard
		4c53 1051  CE7 mainboard
		9005 0364  5400S (Mustang)
		9005 0365  5400S (Mustang)
		9005 1364  Dell PowerEdge RAID Controller 2
		9005 1365  Dell PowerEdge RAID Controller 2
		e4bf 1000  CC8-1-BLUES
	1065  StrongARM DC21285
		1069 0020  DAC960P / DAC1164P
1012  Micronics Computers Inc
1013  Cirrus Logic
	0038  GD 7548
	0040  GD 7555 Flat Panel GUI Accelerator
	004c  GD 7556 Video/Graphics LCD/CRT Ctrlr
	00a0  GD 5430/40 [Alpine]
	00a2  GD 5432 [Alpine]
	00a4  GD 5434-4 [Alpine]
	00a8  GD 5434-8 [Alpine]
	00ac  GD 5436 [Alpine]
	00b0  GD 5440
	00b8  GD 5446
	00bc  GD 5480
		1013 00bc  CL-GD5480
	00d0  GD 5462
	00d2  GD 5462 [Laguna I]
	00d4  GD 5464 [Laguna]
	00d5  GD 5464 BD [Laguna]
	00d6  GD 5465 [Laguna]
		13ce 8031  Barco Metheus 2 Megapixel, Dual Head
		13cf 8031  Barco Metheus 2 Megapixel, Dual Head
	00e8  GD 5436U
	1100  CL 6729
	1110  PD 6832 PCMCIA/CardBus Ctrlr
	1112  PD 6834 PCMCIA/CardBus Ctrlr
	1113  PD 6833 PCMCIA/CardBus Ctrlr
	1200  GD 7542 [Nordic]
	1202  GD 7543 [Viking]
	1204  GD 7541 [Nordic Light]
	4000  MD 5620 [CLM Data Fax Voice]
	4400  CD 4400
	6001  CS 4610/11 [CrystalClear SoundFusion Audio Accelerator]
		1014 1010  CS4610 SoundFusion Audio Accelerator
	6003  CS 4614/22/24/30 [CrystalClear SoundFusion Audio Accelerator]
		1013 4280  Crystal SoundFusion PCI Audio Accelerator
		1014 0153  ThinkPad 600X/A20m
		153b 112e  DMX XFire 1024
		153b 1136  SiXPack 5.1+
		1681 0050  Game Theater XP
		1681 a010  Gamesurround Fortissimo II
		1681 a011  Gamesurround Fortissimo III 7.1
		5053 3357  Santa Cruz
	6004  CS 4614/22/24 [CrystalClear SoundFusion Audio Accelerator]
	6005  Crystal CS4281 PCI Audio
		1013 4281  Crystal CS4281 PCI Audio
		10cf 10a8  Crystal CS4281 PCI Audio
		10cf 10a9  Crystal CS4281 PCI Audio
		10cf 10aa  Crystal CS4281 PCI Audio
		10cf 10ab  Crystal CS4281 PCI Audio
		10cf 10ac  Crystal CS4281 PCI Audio
		10cf 10ad  Crystal CS4281 PCI Audio
		10cf 10b4  Crystal CS4281 PCI Audio
		1179 0001  Crystal CS4281 PCI Audio
		14c0 000c  Crystal CS4281 PCI Audio
1014  IBM
	0002  PCI to MCA Bridge
	0005  Processor to I/O Controller [Alta Lite]
	0007  Processor to I/O Controller [Alta MP]
	000a  PCI to ISA Bridge (IBM27-82376) [Fire Coral]
	0017  CPU to PCI Bridge
	0018  TR Auto LANstreamer
	001b  GXT-150P
	001c  Carrera
	001d  SCSI-2 FAST PCI Adapter (82G2675)
	0020  GXT1000 Graphics Adapter
	0022  PCI to PCI Bridge (IBM27-82351)
	002d  Processor to I/O Controller [Python]
	002e  SCSI RAID Adapter [ServeRAID]
		1014 002e  ServeRAID-3x
		1014 022e  ServeRAID-4H
	0031  2 Port Serial Adapter
# AS400 iSeries PCI sync serial card
		1014 0031  2721 WAN IOA - 2 Port Sync Serial Adapter
	0036  PCI to 32-bit LocalBus Bridge [Miami]
	0037  PowerPC to PCI Bridge (IBM27-82660)
	003a  CPU to PCI Bridge
	003c  GXT250P/GXT255P Graphics Adapter
	003e  16/4 Token ring UTP/STP controller
		1014 003e  Token-Ring Adapter
		1014 00cd  Token-Ring Adapter + Wake-On-LAN
		1014 00ce  16/4 Token-Ring Adapter 2
		1014 00cf  16/4 Token-Ring Adapter Special
		1014 00e4  High-Speed 100/16/4 Token-Ring Adapter
		1014 00e5  16/4 Token-Ring Adapter 2 + Wake-On-LAN
		1014 016d  iSeries 2744 Card
	0045  SSA Adapter
	0046  MPIC interrupt controller
	0047  PCI to PCI Bridge
	0048  PCI to PCI Bridge
	0049  Warhead SCSI Controller
	004e  ATM Controller (14104e00)
	004f  ATM Controller (14104f00)
	0050  ATM Controller (14105000)
	0053  25 MBit ATM Controller
	0054  GXT500P/GXT550P Graphics Adapter
	0057  MPEG PCI Bridge
	0058  SSA Adapter [Advanced SerialRAID/X]
	005c  i82557B 10/100
	005e  GXT800P Graphics Adapter
	007c  ATM Controller (14107c00)
	007d  3780IDSP [MWave]
	008b  EADS PCI to PCI Bridge
	008e  GXT3000P Graphics Adapter
	0090  GXT 3000P
		1014 008e  GXT-3000P
	0091  SSA Adapter
	0095  20H2999 PCI Docking Bridge
	0096  Chukar chipset SCSI controller
		1014 0097  iSeries 2778 DASD IOA
		1014 0098  iSeries 2763 DASD IOA
		1014 0099  iSeries 2748 DASD IOA
	009f  PCI 4758 Cryptographic Accelerator
	00a5  ATM Controller (1410a500)
	00a6  ATM 155MBPS MM Controller (1410a600)
	00b7  256-bit Graphics Rasterizer [FireGL1]
		1092 00b8  FireGL1 AGP 32Mb
	00b8  GXT2000P Graphics Adapter
	00be  ATM 622MBPS Controller (1410be00)
	00dc  Advanced Systems Management Adapter (ASMA)
	00fc  CPC710 Dual Bridge and Memory Controller (PCI-64)
	0104  Gigabit Ethernet-SX Adapter
	0105  CPC710 Dual Bridge and Memory Controller (PCI-32)
	010f  Remote Supervisor Adapter (RSA)
	0142  Yotta Video Compositor Input
		1014 0143  Yotta Input Controller (ytin)
	0144  Yotta Video Compositor Output
		1014 0145  Yotta Output Controller (ytout)
	0156  405GP PLB to PCI Bridge
	015e  622Mbps ATM PCI Adapter
	0160  64bit/66MHz PCI ATM 155 MMF
	016e  GXT4000P Graphics Adapter
	0170  GXT6000P Graphics Adapter
	017d  GXT300P Graphics Adapter
	0180  Snipe chipset SCSI controller
		1014 0241  iSeries 2757 DASD IOA
		1014 0264  Quad Channel PCI-X U320 SCSI RAID Adapter (2780)
	0188  EADS-X PCI-X to PCI-X Bridge
	01a7  PCI-X to PCI-X Bridge
	01bd  ServeRAID Controller
		1014 01bd  ServeRAID 4Lx
		1014 01be  ServeRAID-4M
		1014 01bf  ServeRAID-4L
		1014 0208  ServeRAID-4Mx
		1014 020e  ServeRAID-4Lx
		1014 022e  ServeRAID-4H
		1014 0258  ServeRAID-5i
		1014 0259  ServeRAID-5i
	01c1  64bit/66MHz PCI ATM 155 UTP
	01e6  Cryptographic Accelerator
	01ef  PowerPC 440GP PCI Bridge
		1734 102b  PCEAS PCI-X Dual Port ESCON Adapter
		1734 10f8  PCEAT PCI-Express Dual Port ESCON Adapter
	01ff  10/100 Mbps Ethernet
	0219  Multiport Serial Adapter
		1014 021a  Dual RVX
		1014 0251  Internal Modem/RVX
		1014 0252  Quad Internal Modem
	021b  GXT6500P Graphics Adapter
	021c  GXT4500P Graphics Adapter
	0233  GXT135P Graphics Adapter
	0266  PCI-X Dual Channel SCSI
	0268  Gigabit Ethernet-SX Adapter (PCI-X)
	0269  10/100/1000 Base-TX Ethernet Adapter (PCI-X)
	028c  Citrine chipset SCSI controller
		1014 028d  Dual Channel PCI-X DDR SAS RAID Adapter (572E)
		1014 02be  Dual Channel PCI-X DDR U320 SCSI RAID Adapter (571B)
		1014 02c0  Dual Channel PCI-X DDR U320 SCSI Adapter (571A)
		1014 030d  PCI-X DDR Auxiliary Cache Adapter (575B)
	02a1  Calgary PCI-X Host Bridge
	02bd  Obsidian chipset SCSI controller
		1014 02c1  PCI-X DDR 3Gb SAS Adapter (572A/572C)
		1014 02c2  PCI-X DDR 3Gb SAS RAID Adapter (572B/571D)
		1014 0338  PCI-X DDR Auxiliary Cache Adapter (575C)
	0302  Winnipeg PCI-X Host Bridge
	0308  CalIOC2 PCI-E Root Port
	0314  ZISC 036 Neural accelerator card
	032d  Axon - Cell Companion Chip
		1014 03a1  PCIe PowerXCell 8i Cell Accelerator Board
	0339  Obsidian-E PCI-E SCSI controller
		1014 030a  PCIe 3Gb SAS RAID Adapter (574E)
		1014 033a  PCIe 3Gb SAS Adapter (57B3)
		1014 0360  PCI-E Auxiliary Cache Adapter (57B7)
	033d  PCI-E IPR SAS Adapter (FPGA)
		1014 033c  PCIe2 1.8GB Cache 6Gb SAS RAID Adapter Tri-port (57B5)
		1014 0356  PCIe2 1.8GB Cache 6Gb SAS RAID & SSD Adapter (574D)
		1014 035f  PCIe2 6Gb SAS Adapter Quad-port (57B2)
	034a  PCI-E IPR SAS Adapter (ASIC)
		1014 033b  PCIe2 6Gb SAS RAID Adapter Quad-port (57B4)
		1014 0355  PCIe2 3.6GB Cache 6Gb SAS RAID Adapter Quad-port (57B1)
		1014 0357  PCIe2 6Gb SAS Adapter Quad-port (57C6)
		1014 035d  PCIe2 3.6GB Cache 6Gb SAS RAID & SSD Adapter (575D)
		1014 035e  PCIe2 3.6GB Cache 6Gb SAS RAID Adapter Quad-port (57CE)
	3022  QLA3022 Network Adapter
	4022  QLA3022 Network Adapter
	ffff  MPIC-2 interrupt controller
1015  LSI Logic Corp of Canada
1016  ICL Personal Systems
1017  SPEA Software AG
	5343  SPEA 3D Accelerator
1018  Unisys Systems
1019  Elitegroup Computer Systems
101a  AT&T GIS (NCR)
	0005  100VG ethernet
	0007  BYNET BIC4G/2C/2G
		101a 0019  BYNET BIC2C
		101a 001c  BYNET BIC2G
		101a 001f  BYNET BIC4G
	0009  PQS Memory Controller
	000a  BYNET BPCI Adapter
	000b  BYNET 4 Port BYA Switch (BYA4P)
	000c  BYNET 4 Port BYA Switch (BYA4G)
	0010  NCR AMC Memory Controller
	1dc1  BYNET BIC2M/BIC4M/BYA4M
		101a 0019  BIC2M
		101a 001f  BIC4M
		101a 0ece  BYA4M
	1fa8  BYNET Multi-port BIC Adapter (XBIC Based)
		101a 00c3  BYNET BIC2SE
101b  Vitesse Semiconductor
# Maxim VSC452 Super BMC Controller with Video
	0452  VSC452 [SuperBMC]
101c  Western Digital
	0193  33C193A
	0196  33C196A
	0197  33C197A
	0296  33C296A
	3193  7193
	3197  7197
	3296  33C296A
	4296  34C296
	9710  Pipeline 9710
	9712  Pipeline 9712
	c24a  90C
# ID for Newly Acquired Storage Products from Vitesse
101d  Maxim Integrated Products
101e  American Megatrends Inc.
	0009  MegaRAID 428 Ultra RAID Controller (rev 03)
	1960  MegaRAID
		101e 0471  MegaRAID 471 Enterprise 1600 RAID Controller
		101e 0475  MegaRAID 475 Express 500/500LC RAID Controller
		101e 0477  MegaRAID 477 Elite 3100 RAID Controller
		101e 0493  MegaRAID 493 Elite 1600 RAID Controller
		101e 0494  MegaRAID 494 Elite 1650 RAID Controller
		101e 0503  MegaRAID 503 Enterprise 1650 RAID Controller
		101e 0511  MegaRAID 511 i4 IDE RAID Controller
		101e 0522  MegaRAID 522 i4133 RAID Controller
		1028 0471  PowerEdge RAID Controller 3/QC
		1028 0475  PowerEdge RAID Controller 3/SC
		1028 0493  PowerEdge RAID Controller 3/DC
		1028 0511  PowerEdge Cost Effective RAID Controller ATA100/4Ch
		103c 60e7  NetRAID-1M
	9010  MegaRAID 428 Ultra RAID Controller
	9030  EIDE Controller
	9031  EIDE Controller
	9032  EIDE & SCSI Controller
	9033  SCSI Controller
	9040  Multimedia card
	9060  MegaRAID 434 Ultra GT RAID Controller
	9063  MegaRAC
		101e 0767  Dell Remote Assistant Card 2
101f  PictureTel
1020  Hitachi Computer Products
1021  OKI Electric Industry Co. Ltd.
1022  Advanced Micro Devices [AMD]
	1100  K8 [Athlon64/Opteron] HyperTransport Technology Configuration
	1101  K8 [Athlon64/Opteron] Address Map
	1102  K8 [Athlon64/Opteron] DRAM Controller
	1103  K8 [Athlon64/Opteron] Miscellaneous Control
	1200  Family 10h Processor HyperTransport Configuration
	1201  Family 10h Processor Address Map
	1202  Family 10h Processor DRAM Controller
	1203  Family 10h Processor Miscellaneous Control
	1204  Family 10h Processor Link Control
	1300  Family 11h Processor HyperTransport Configuration
	1301  Family 11h Processor Address Map
	1302  Family 11h Processor DRAM Controller
	1303  Family 11h Processor Miscellaneous Control
	1304  Family 11h Processor Link Control
	2000  79c970 [PCnet32 LANCE]
		1014 2000  NetFinity 10/100 Fast Ethernet
		1022 2000  PCnet - Fast 79C971
		103c 104c  Ethernet with LAN remote power Adapter
		103c 1064  Ethernet with LAN remote power Adapter
		103c 1065  Ethernet with LAN remote power Adapter
		103c 106c  Ethernet with LAN remote power Adapter
		103c 106e  Ethernet with LAN remote power Adapter
		103c 10ea  Ethernet with LAN remote power Adapter
		1113 1220  EN1220 10/100 Fast Ethernet
		1259 2450  AT-2450 10/100 Fast Ethernet
		1259 2454  AT-2450v4 10Mb Ethernet Adapter
		1259 2700  AT-2700TX 10/100 Fast Ethernet
		1259 2701  AT-2700FX 100Mb Ethernet
		1259 2702  AT-2700FTX 10/100 Mb Fiber/Copper Fast Ethernet
		1259 2703  AT-2701FX
		1259 2704  AT-2701FTX 10/100 Mb Fiber/Copper Fast Ethernet
		4c53 1000  CC7/CR7/CP7/VC7/VP7/VR7 mainboard
		4c53 1010  CP5/CR6 mainboard
		4c53 1020  VR6 mainboard
		4c53 1030  PC5 mainboard
		4c53 1040  CL7 mainboard
		4c53 1060  PC7 mainboard
	2001  79c978 [HomePNA]
		1092 0a78  Multimedia Home Network Adapter
		1668 0299  ActionLink Home Network Adapter
	2003  Am 1771 MBW [Alchemy]
	2020  53c974 [PCscsi]
	2040  79c974
	2080  CS5536 [Geode companion] Host Bridge
	2081  Geode LX Video
	2082  Geode LX AES Security Block
	208f  CS5536 GeodeLink PCI South Bridge
	2090  CS5536 [Geode companion] ISA
	2091  CS5536 [Geode companion] FLASH
	2093  CS5536 [Geode companion] Audio
	2094  CS5536 [Geode companion] OHC
	2095  CS5536 [Geode companion] EHC
	2096  CS5536 [Geode companion] UDC
	2097  CS5536 [Geode companion] UOC
	209a  CS5536 [Geode companion] IDE
	3000  ELanSC520 Microcontroller
	7006  AMD-751 [Irongate] System Controller
	7007  AMD-751 [Irongate] AGP Bridge
	700a  AMD-IGR4 AGP Host to PCI Bridge
	700b  AMD-IGR4 PCI to PCI Bridge
	700c  AMD-760 MP [IGD4-2P] System Controller
	700d  AMD-760 MP [IGD4-2P] AGP Bridge
	700e  AMD-760 [IGD4-1P] System Controller
	700f  AMD-760 [IGD4-1P] AGP Bridge
	7400  AMD-755 [Cobra] ISA
	7401  AMD-755 [Cobra] IDE
	7403  AMD-755 [Cobra] ACPI
	7404  AMD-755 [Cobra] USB
	7408  AMD-756 [Viper] ISA
	7409  AMD-756 [Viper] IDE
	740b  AMD-756 [Viper] ACPI
	740c  AMD-756 [Viper] USB
	7410  AMD-766 [ViperPlus] ISA
	7411  AMD-766 [ViperPlus] IDE
	7413  AMD-766 [ViperPlus] ACPI
	7414  AMD-766 [ViperPlus] USB
	7440  AMD-768 [Opus] ISA
		1043 8044  A7M-D Mainboard
	7441  AMD-768 [Opus] IDE
	7443  AMD-768 [Opus] ACPI
		1043 8044  A7M-D Mainboard
	7445  AMD-768 [Opus] Audio
	7446  AMD-768 [Opus] MC97 Modem (Smart Link HAMR5600 compatible)
	7448  AMD-768 [Opus] PCI
	7449  AMD-768 [Opus] USB
	7450  AMD-8131 PCI-X Bridge
	7451  AMD-8131 PCI-X IOAPIC
	7454  AMD-8151 System Controller
	7455  AMD-8151 AGP Bridge
	7458  AMD-8132 PCI-X Bridge
	7459  AMD-8132 PCI-X IOAPIC
	7460  AMD-8111 PCI
		161f 3017  HDAMB
	7461  AMD-8111 USB
	7462  AMD-8111 Ethernet
	7463  AMD-8111 USB EHCI
	7464  AMD-8111 USB OHCI
		161f 3017  HDAMB
	7468  AMD-8111 LPC
		161f 3017  HDAMB
	7469  AMD-8111 IDE
		1022 2b80  AMD-8111 IDE [Quartet]
		161f 3017  HDAMB
	746a  AMD-8111 SMBus 2.0
	746b  AMD-8111 ACPI
		161f 3017  HDAMB
	746d  AMD-8111 AC97 Audio
		161f 3017  HDAMB
	746e  AMD-8111 MC97 Modem
	756b  AMD-8111 ACPI
	7800  Hudson SATA Controller [IDE mode]
	7801  Hudson SATA Controller [AHCI mode]
	7802  Hudson SATA Controller [RAID mode]
	7803  Hudson SATA Controller [RAID mode]
	7804  Hudson SATA Controller [AHCI mode]
	7805  Hudson SATA Controller [RAID mode]
	7806  Hudson SD Flash Controller
	7807  Hudson USB OHCI Controller
	7808  Hudson USB EHCI Controller
	7809  Hudson USB OHCI Controller
	780b  Hudson SMBus Controller
	780c  Hudson IDE Controller
	780d  Hudson Azalia Controller
	780e  Hudson LPC Bridge
	780f  Hudson PCI Bridge
	7812  Hudson USB XHCI Controller
	9600  RS780 Host Bridge
	9601  RS780 Host Bridge Alternate
	9602  RS780 PCI to PCI bridge (int gfx)
	9603  RS780 PCI to PCI bridge (ext gfx port 0)
	9604  RS780 PCI to PCI bridge (PCIE port 0)
	9605  RS780 PCI to PCI bridge (PCIE port 1)
	9606  RS780 PCI to PCI bridge (PCIE port 2)
	9607  RS780 PCI to PCI bridge (PCIE port 3)
	9608  RS780 PCI to PCI bridge (PCIE port 4)
	9609  RS780 PCI to PCI bridge (PCIE port 5)
	960a  RS780 PCI to PCI bridge (NB-SB link)
	960b  RS780 PCI to PCI bridge (ext gfx port 1)
1023  Trident Microsystems
	0194  82C194
	2000  4DWave DX
	2001  4DWave NX
		122d 1400  Trident PCI288-Q3DII (NX)
	2100  CyberBlade XP4m32
	2200  XGI Volari XP5
	8400  CyberBlade/i7
		1023 8400  CyberBlade i7 AGP
	8420  CyberBlade/i7d
		0e11 b15a  CyberBlade i7 AGP
	8500  CyberBlade/i1
	8520  CyberBlade i1
		0e11 b16e  CyberBlade i1 AGP
		1023 8520  CyberBlade i1 AGP
	8620  CyberBlade/i1
		1014 0502  ThinkPad R30/T30
		1014 1025  Travelmate 352TE
	8820  CyberBlade XPAi1
	9320  TGUI 9320
	9350  GUI Accelerator
	9360  Flat panel GUI Accelerator
	9382  Cyber 9382 [Reference design]
	9383  Cyber 9383 [Reference design]
	9385  Cyber 9385 [Reference design]
	9386  Cyber 9386
	9388  Cyber 9388
	9397  Cyber 9397
	939a  Cyber 9397DVD
	9420  TGUI 9420
	9430  TGUI 9430
	9440  TGUI 9440
	9460  TGUI 9460
	9470  TGUI 9470
	9520  Cyber 9520
	9525  Cyber 9525
	9540  Cyber 9540
	9660  TGUI 9660/938x/968x
	9680  TGUI 9680
	9682  TGUI 9682
	9683  TGUI 9683
	9685  ProVIDIA 9685
	9750  3DImage 9750
		1014 9750  3DImage 9750
		1023 9750  3DImage 9750
	9753  TGUI 9753
	9754  TGUI 9754
	9759  TGUI 975
	9783  TGUI 9783
	9785  TGUI 9785
	9850  3DImage 9850
	9880  Blade 3D PCI/AGP
		1023 9880  Blade 3D
	9910  CyberBlade/XP
	9930  CyberBlade/XPm
	9960  CyberBlade XP2
1024  Zenith Data Systems
1025  Acer Incorporated [ALI]
	1435  M1435
	1445  M1445
	1449  M1449
	1451  M1451
	1461  M1461
	1489  M1489
	1511  M1511
	1512  ALI M1512 Aladdin
	1513  M1513
	1521  ALI M1521 Aladdin III CPU Bridge
		10b9 1521  ALI M1521 Aladdin III CPU Bridge
	1523  ALI M1523 ISA Bridge
		10b9 1523  ALI M1523 ISA Bridge
	1531  M1531 Northbridge [Aladdin IV/IV+]
	1533  M1533 PCI-to-ISA Bridge
		10b9 1533  ALI M1533 Aladdin IV/V ISA South Bridge
	1535  M1535 PCI Bridge + Super I/O + FIR
	1541  M1541 Northbridge [Aladdin V]
		10b9 1541  ALI M1541 Aladdin V/V+ AGP+PCI North Bridge
	1542  M1542 Northbridge [Aladdin V]
	1543  M1543 PCI-to-ISA Bridge + Super I/O + FIR
	1561  M1561 Northbridge [Aladdin 7]
	1621  M1621 Northbridge [Aladdin-Pro II]
	1631  M1631 Northbridge+3D Graphics [Aladdin TNT2]
	1641  M1641 Northbridge [Aladdin-Pro IV]
	1647  M1647 [MaGiK1] PCI North Bridge
	1671  M1671 Northbridge [ALADDiN-P4]
	1672  Northbridge [CyberALADDiN-P4]
	3141  M3141
	3143  M3143
	3145  M3145
	3147  M3147
	3149  M3149
	3151  M3151
	3307  M3307 MPEG-I Video Controller
	3309  M3309 MPEG-II Video w/ Software Audio Decoder
	3321  M3321 MPEG-II Audio/Video Decoder
	5212  M4803
	5215  ALI PCI EIDE Controller
	5217  M5217H
	5219  M5219
	5225  M5225
	5229  M5229
	5235  M5235
	5237  M5237 PCI USB Host Controller
	5240  EIDE Controller
	5241  PCMCIA Bridge
	5242  General Purpose Controller
	5243  PCI to PCI Bridge Controller
	5244  Floppy Disk Controller
	5247  M1541 PCI to PCI Bridge
	5251  M5251 P1394 Controller
	5427  PCI to AGP Bridge
	5451  M5451 PCI AC-Link Controller Audio Device
	5453  M5453 PCI AC-Link Controller Modem Device
	7101  M7101 PCI PMU Power Management Controller
		10b9 7101  M7101 PCI PMU Power Management Controller
1028  Dell
	0001  PowerEdge Expandable RAID Controller 2/Si
		1028 0001  PowerEdge 2400
	0002  PowerEdge Expandable RAID Controller 3/Di
		1028 0002  PowerEdge 4400
		1028 00d1  PERC 3/DiV [Viper]
		1028 00d9  PERC 3/DiL [Lexus]
	0003  PowerEdge Expandable RAID Controller 3/Si
		1028 0003  PowerEdge 2450
# PowerEdge Codename Iguana
	0004  PowerEdge Expandable RAID Controller 3/Di [Iguana]
		1028 0004  PERC 3/DiF [Iguana]
	0006  PowerEdge Expandable RAID Controller 3/Di
	0007  Remote Access Card III
	0008  Remote Access Card III
	0009  Remote Access Card III: BMC/SMIC device not present
	000a  PowerEdge Expandable RAID Controller 3/Di
		1028 0106  PERC 3/DiJ [Jaguar]
		1028 011b  PERC 3/DiD [Dagger]
		1028 0121  PERC 3/DiB [Boxster]
	000c  Embedded Remote Access or ERA/O
	000d  Embedded Remote Access: BMC/SMIC device
	000e  PowerEdge Expandable RAID controller 4/Di
	000f  PowerEdge Expandable RAID controller 4/Di
		1028 014a  PowerEdge 1750
	0010  Remote Access Card 4
	0011  Remote Access Card 4 Daughter Card
	0012  Remote Access Card 4 Daughter Card Virtual UART
	0013  PowerEdge Expandable RAID controller 4
		1028 016c  PowerEdge Expandable RAID Controller 4e/Si
		1028 016d  PowerEdge Expandable RAID Controller 4e/Di
		1028 016e  PowerEdge Expandable RAID Controller 4e/Di
		1028 016f  PowerEdge Expandable RAID Controller 4e/Di
		1028 0170  PowerEdge Expandable RAID Controller 4e/Di
	0014  Remote Access Card 4 Daughter Card SMIC interface
	0015  PowerEdge Expandable RAID controller 5
		1028 1f01  PERC 5/E Adapter RAID Controller
		1028 1f02  PERC 5/i Adapter RAID Controller
		1028 1f03  PERC 5/i Integrated RAID Controller
	0016  PowerEdge Expandable RAID controller S300
		1028 1f24  PERC S300 Controller
1029  Siemens Nixdorf IS
102a  LSI Logic
	0000  HYDRA
	0010  ASPEN
	001f  AHA-2940U2/U2W /7890/7891 SCSI Controllers
		9005 000f  2940U2W SCSI Controller
		9005 0106  2940U2W SCSI Controller
		9005 a180  2940U2W SCSI Controller
	00c5  AIC-7899 U160/m SCSI Controller
		1028 00c5  PowerEdge 2550/2650/4600
	00cf  AIC-7899P U160/m
		1028 0106  PowerEdge 4600
		1028 0121  PowerEdge 2650
102b  Matrox Graphics, Inc.
# DJ: I've a suspicion that 0010 is a duplicate of 0d10.
	0010  MGA-I [Impression?]
	0100  MGA 1064SG [Mystique]
	0518  MGA-II [Athena]
	0519  MGA 2064W [Millennium]
	051a  MGA 1064SG [Mystique]
		102b 0100  MGA-1064SG Mystique
		102b 1100  MGA-1084SG Mystique
		102b 1200  MGA-1084SG Mystique
		1100 102b  MGA-1084SG Mystique
		110a 0018  Scenic Pro C5 (D1025)
	051b  MGA 2164W [Millennium II]
		102b 051b  MGA-2164W Millennium II
		102b 1100  MGA-2164W Millennium II
		102b 1200  MGA-2164W Millennium II
		102b 2100  MGA-2164W Millennium II
	051e  MGA 1064SG [Mystique] AGP
	051f  MGA 2164W [Millennium II] AGP
	0520  MGA G200
		102b dbc2  G200 Multi-Monitor
		102b dbc8  G200 Multi-Monitor
		102b dbe2  G200 Multi-Monitor
		102b dbe8  G200 Multi-Monitor
		102b ff03  Millennium G200 SD
		102b ff04  Marvel G200
	0521  MGA G200 AGP
		1014 ff03  Millennium G200 AGP
		102b 48e9  Mystique G200 AGP
		102b 48f8  Millennium G200 SD AGP
		102b 4a60  Millennium G200 LE AGP
		102b 4a64  Millennium G200 AGP
		102b c93c  Millennium G200 AGP
		102b c9b0  Millennium G200 AGP
		102b c9bc  Millennium G200 AGP
		102b ca60  Millennium G250 LE AGP
		102b ca6c  Millennium G250 AGP
		102b dbbc  Millennium G200 AGP
		102b dbc2  Millennium G200 MMS (Dual G200)
		102b dbc3  G200 Multi-Monitor
		102b dbc8  Millennium G200 MMS (Dual G200)
		102b dbd2  G200 Multi-Monitor
		102b dbd3  G200 Multi-Monitor
		102b dbd4  G200 Multi-Monitor
		102b dbd5  G200 Multi-Monitor
		102b dbd8  G200 Multi-Monitor
		102b dbd9  G200 Multi-Monitor
		102b dbe2  Millennium G200 MMS (Quad G200)
		102b dbe3  G200 Multi-Monitor
		102b dbe8  Millennium G200 MMS (Quad G200)
		102b dbf2  G200 Multi-Monitor
		102b dbf3  G200 Multi-Monitor
		102b dbf4  G200 Multi-Monitor
		102b dbf5  G200 Multi-Monitor
		102b dbf8  G200 Multi-Monitor
		102b dbf9  G200 Multi-Monitor
		102b f806  Mystique G200 Video AGP
		102b ff00  MGA-G200 AGP
		102b ff02  Mystique G200 AGP
		102b ff03  Millennium G200 AGP
		102b ff04  Marvel G200 AGP
		110a 0032  MGA-G200 AGP
	0522  MGA G200e [Pilot] ServerEngines (SEP1)
	0525  MGA G400/G450
		0e11 b16f  MGA-G400 AGP
		102b 0328  Millennium G400 16Mb SDRAM
		102b 0338  Millennium G400 16Mb SDRAM
		102b 0378  Millennium G400 32Mb SDRAM
		102b 0541  Millennium G450 Dual Head
		102b 0542  Millennium G450 Dual Head LX
		102b 0543  Millennium G450 Single Head LX
		102b 0641  Millennium G450 32Mb SDRAM Dual Head
		102b 0642  Millennium G450 32Mb SDRAM Dual Head LX
		102b 0643  Millennium G450 32Mb SDRAM Single Head LX
		102b 07c0  Millennium G450 Dual Head LE
		102b 07c1  Millennium G450 SDR Dual Head LE
		102b 0d41  Millennium G450 Dual Head PCI
		102b 0d42  Millennium G450 Dual Head LX PCI
		102b 0d43  Millennium G450 32Mb Dual Head PCI
		102b 0e00  Marvel G450 eTV
		102b 0e01  Marvel G450 eTV
		102b 0e02  Marvel G450 eTV
		102b 0e03  Marvel G450 eTV
		102b 0f80  Millennium G450 Low Profile
		102b 0f81  Millennium G450 Low Profile
		102b 0f82  Millennium G450 Low Profile DVI
		102b 0f83  Millennium G450 Low Profile DVI
		102b 19d8  Millennium G400 16Mb SGRAM
		102b 19f8  Millennium G400 32Mb SGRAM
		102b 2159  Millennium G400 Dual Head 16Mb
		102b 2179  Millennium G400 MAX/Dual Head 32Mb
		102b 217d  Millennium G400 Dual Head Max
		102b 23c0  Millennium G450
		102b 23c1  Millennium G450
		102b 23c2  Millennium G450 DVI
		102b 23c3  Millennium G450 DVI
		102b 2f58  Millennium G400
		102b 2f78  Millennium G400
		102b 3693  Marvel G400 AGP
		102b 5dd0  4Sight II
		102b 5f50  4Sight II
		102b 5f51  4Sight II
		102b 5f52  4Sight II
		102b 9010  Millennium G400 Dual Head
		1458 0400  GA-G400
		1705 0001  Millennium G450 32MB SGRAM
		1705 0002  Millennium G450 16MB SGRAM
		1705 0003  Millennium G450 32MB
		1705 0004  Millennium G450 16MB
	0527  Parhelia
		102b 0840  Parhelia 128Mb
		102b 0850  Parhelia 256MB
		102b 0870  MED2mp-DVI
		102b 0880  P-256 Edge Overlap Controller
	0528  Parhelia
		102b 1020  Parhelia 128MB
		102b 1030  Parhelia 256 MB Dual DVI
		102b 1040  MED2mp-DVI
		102b 1050  Sono S20
		102b 1060  PJ-30L
		102b 1070  PJ-40L
		102b 1421  MED5mp
		102b 1431  MED3mp-DVI
		102b 1451  MED5mp-DVI
		102b 1491  MED2mp-DVI
		102b 14b1  MED3mp-DVI
		102b 14c1  MED5mp-DVI
		102b 14e1  Parhelia PCI 256MB
		102b 14f1  Parhelia Precision SGT
		102b 1501  ATC-4MP
		102b 1511  ATC-4MP
		102b 1521  TheatreVUE T30
		102b 1531  TheatreVUE T20
		102b 1541  MED2mp-DVI
		102b 1551  MED3mp-DVI
		102b 1561  MED5mp-DVI
		102b 1571  Parhelia DL256 PCI
		102b 1591  Parhelia Precision SDT
		102b 15a1  MED4mp-DVI
		102b 2011  Parhelia HR256
		102b 2021  QID Pro
		102b 2061  PJ-40LP
		102b 2081  EWS Quad
		102b 2411  PPX-OUT8
		102b 2421  VPX-OUT8
		102b 2441  PPX-OUT4
		102b 2451  VPX-OUT4
		102b 2491  LPX-OUT4
	0530  MGA G200EV
	0532  MGA G200eW WPCM450
		1028 0235  PowerEdge R710 MGA G200eW WPCM450
		1028 0236  PowerEdge R610 MGA G200eW WPCM450
		1028 0237  PowerEdge T610 MGA G200eW WPCM450
		1028 0287  PowerEdge M610 MGA G200eW WPCM450
		1028 028c  PowerEdge R410 MGA G200eW WPCM450
		1028 028d  PowerEdge T410 MGA G200eW WPCM450
		1028 029c  PowerEdge M710 MGA G200eW WPCM450
		1028 02a4  PowerEdge T310 MGA G200eW WPCM450
	0540  M91XX
		102b 2080  M9140 LP PCIe x16
		102b 20c0  Xenia
		102b 20c1  Xenia Pro
		102b 2100  M9120 PCIe x16
		102b 2140  M9125 PCIe x16
		102b 2180  M9120 Plus LP PCIe x16
		102b 21c0  M9120 Plus LP PCIe x1
		102b 2200  VDA1164 Output Board
		102b 2240  M9148 LP PCIe x16
		102b 2241  M9138 LP PCIe x16
		102b 2280  M9188 ATX PCIe x16
		102b 22c0  M9128 LP PCIe x16
	0d10  MGA Ultima/Impression
	1000  MGA G100 [Productiva]
		102b ff01  Productiva G100
		102b ff05  Productiva G100 Multi-Monitor
	1001  MGA G100 [Productiva] AGP
		102b 1001  MGA-G100 AGP
		102b ff00  MGA-G100 AGP
		102b ff01  MGA-G100 Productiva AGP
		102b ff03  Millennium G100 AGP
		102b ff04  MGA-G100 AGP
		102b ff05  MGA-G100 Productiva AGP Multi-Monitor
		110a 001e  MGA-G100 AGP
	2007  MGA Mistral
	2527  MGA G550 AGP
		102b 0f83  Millennium G550
		102b 0f84  Millennium G550 Dual Head DDR 32Mb
		102b 1e41  Millennium G550
# Clearly the device name should not say AGP anymore...
		102b 2300  Millennium G550 LP PCIE
	2537  Millenium P650/P750
		102b 1820  Millennium P750 64MB
		102b 1830  Millennium P650 64MB
		102b 1850  RAD2mp
		102b 1860  RAD3mp
		102b 1880  Sono S10
		102b 1c10  QID 128MB
		102b 2811  Millennium P650 Low-profile PCI 64MB
		102b 2821  Millenium P650 Low-profile PCI
		102b 2841  RAD PCI
		102b 2851  Spectrum PCI
		102b 2871  EpicA TC2
		102b 2c11  QID Low-profile PCI
		102b 2c21  QID LP PCI LW
		102b 2c31  QID LP PCI
		102b 2c41  EpicA TC4
		102b 3001  Extio F1400
		102b 3011  Extio F1220
		102b 3041  RG-200DL
		102b 3051  RG-400SL
		102b 3061  Extio F1420
		102b 3081  Extio F1240
	2538  Millenium P650 PCIe
		102b 0847  RAD PCIe
		102b 08c7  Millennium P650 PCIe 128MB
		102b 0907  Millennium P650 PCIe 64MB
		102b 0947  Parhelia APVe
		102b 0987  ATC PCIe 4MP
		102b 1047  Millennium P650 LP PCIe 128MB
		102b 1087  Millennium P650 LP PCIe 64MB
		102b 1801  Millenium P650 PCIe x1
		102b 2538  Parhelia APVe
		102b 3007  QID Low-profile PCIe
		102b 3087  Aurora VX3mp
		102b 30c7  QID LP PCIe
	2539  Millennium P690
		102b 0040  Millenium P690 PCIe x16
		102b 0042  ONYX
		102b 0043  SPECTRA
		102b 0080  Millenium P690 Plus LP PCIe x16
		102b 0081  Millenium P690 LP PCIe x16
		102b 0082  RAD LPX PCIe x16
		102b 00c0  Millenium P690 Plus LP PCI
		102b 00c2  Millenium P690 LP PCI
		102b 00c3  RAD LPX PCI
		102b 0101  Millenium P690 PCI
		102b 0140  Millenium P690 LP PCIe x1
		102b 0180  Display Wall IP Decode 128 MB
	4536  VIA Framegrabber
	4cdc  Morphis Vision System Jpeg2000
	4fc5  Morphis Vision System
	5e10  Morphis Vision System Aux/IO
	6573  Shark 10/100 Multiport SwitchNIC
102c  Chips and Technologies
	00b8  F64310
	00c0  F69000 HiQVideo
		102c 00c0  F69000 HiQVideo
		4c53 1000  CC7/CR7/CP7/VC7/VP7/VR7 mainboard
		4c53 1010  CP5/CR6 mainboard
		4c53 1020  VR6 mainboard
		4c53 1030  PC5 mainboard
		4c53 1050  CT7 mainboard
		4c53 1051  CE7 mainboard
	00d0  F65545
	00d8  F65545
	00dc  F65548
	00e0  F65550
	00e4  F65554
	00e5  F65555 HiQVPro
		0e11 b049  Armada 1700 Laptop Display Controller
		1179 0001  Satellite Pro/Satellite
	00f0  F68554
	00f4  F68554 HiQVision
	00f5  F68555
	0c30  F69030
		4c53 1000  CC7/CR7/CP7/VC7/VP7/VR7 mainboard
		4c53 1050  CT7 mainboard
		4c53 1051  CE7 mainboard
		4c53 1080  CT8 mainboard
102d  Wyse Technology Inc.
	50dc  3328 Audio
102e  Olivetti Advanced Technology
102f  Toshiba America
	0009  r4x00
	000a  TX3927 MIPS RISC PCI Controller
	0020  ATM Meteor 155
		102f 00f8  ATM Meteor 155
	0030  TC35815CF PCI 10/100 Mbit Ethernet Controller
	0031  TC35815CF PCI 10/100 Mbit Ethernet Controller with WOL
	0032  TC35815CF PCI 10/100 Mbit Ethernet Controller on TX4939
	0105  TC86C001 [goku-s] IDE
	0106  TC86C001 [goku-s] USB 1.1 Host
	0107  TC86C001 [goku-s] USB Device Controller
	0108  TC86C001 [goku-s] I2C/SIO/GPIO Controller
	0180  TX4927/38 MIPS RISC PCI Controller
	0181  TX4925 MIPS RISC PCI Controller
	0182  TX4937 MIPS RISC PCI Controller
	01b4  Celleb platform IDE interface
	01b5  SCC USB 2.0 EHCI controller
	01b6  SCC USB 1.1 OHCI controller
1030  TMC Research
1031  Miro Computer Products AG
	5601  DC20 ASIC
	5607  Video I/O & motion JPEG compressor
	5631  Media 3D
	6057  MiroVideo DC10/DC30+
1032  Compaq
1033  NEC Corporation
	0000  Vr4181A USB Host or Function Control Unit
	0001  PCI to 486-like bus Bridge
	0002  PCI to VL98 Bridge
	0003  ATM Controller
	0004  R4000 PCI Bridge
	0005  PCI to 486-like bus Bridge
	0006  PC-9800 Graphic Accelerator
	0007  PCI to UX-Bus Bridge
	0008  PC-9800 Graphic Accelerator
	0009  PCI to PC9800 Core-Graph Bridge
	0016  PCI to VL Bridge
	001a  [Nile II]
	0021  Vrc4373 [Nile I]
	0029  PowerVR PCX1
	002a  PowerVR 3D
	002c  Star Alpha 2
	002d  PCI to C-bus Bridge
	0035  USB
		1033 0035  Hama USB 2.0 CardBus
		103c 1293  USB add-in card
		103c 1294  USB 2.0 add-in card
		1179 0001  USB
		12ee 7000  Root Hub
		14c2 0105  PTI-205N USB 2.0 Host Controller
		1799 0001  Root Hub
		1931 000a  GlobeTrotter Fusion Quad Lite (PPP data)
		1931 000b  GlobeTrotter Fusion Quad Lite (GSM data)
		807d 0035  PCI-USB2 (OHCI subsystem)
	003b  PCI to C-bus Bridge
	003e  NAPCCARD Cardbus Controller
	0046  PowerVR PCX2 [midas]
	005a  Vrc5074 [Nile 4]
	0063  Firewarden
	0067  PowerVR Neon 250 Chipset
		1010 0020  PowerVR Neon 250 AGP 32Mb
		1010 0080  PowerVR Neon 250 AGP 16Mb
		1010 0088  PowerVR Neon 250 16Mb
		1010 0090  PowerVR Neon 250 AGP 16Mb
		1010 0098  PowerVR Neon 250 16Mb
		1010 00a0  PowerVR Neon 250 AGP 32Mb
		1010 00a8  PowerVR Neon 250 32Mb
		1010 0120  PowerVR Neon 250 AGP 32Mb
	0072  uPD72874 IEEE1394 OHCI 1.1 3-port PHY-Link Ctrlr
	0074  56k Voice Modem
		1033 8014  RCV56ACF 56k Voice Modem
	009b  Vrc5476
	00a5  VRC4173
	00a6  VRC5477 AC97
	00cd  IEEE 1394 [OrangeLink] Host Controller
		12ee 8011  Root hub
	00ce  IEEE 1394 Host Controller
	00df  Vr4131
	00e0  USB 2.0
		12ee 7001  Root hub
		14c2 0205  PTI-205N USB 2.0 Host Controller
		1799 0002  Root Hub
		807d 1043  PCI-USB2 (EHCI subsystem)
	00e7  uPD72873 IEEE1394 OHCI 1.1 2-port Host Controller
	00f2  uPD72874 IEEE1394 OHCI 1.1 3-port PHY-Link Ctrlr
	00f3  uPD6113x Multimedia Decoder/Processor [EMMA2]
	010c  VR7701
	0125  uPD720400 PCI Express - PCI/PCI-X Bridge
	013a  Dual Tuner/MPEG Encoder
	0194  uPD720200 USB 3.0 Host Controller
1034  Framatome Connectors USA Inc.
1035  Comp. & Comm. Research Lab
1036  Future Domain Corp.
	0000  TMC-18C30 [36C70]
1037  Hitachi Micro Systems
1038  AMP, Inc
1039  Silicon Integrated Systems [SiS]
	0001  Virtual PCI-to-PCI bridge (AGP)
	0002  SG86C202
	0003  SiS AGP Port (virtual PCI-to-PCI bridge)
	0004  PCI-to-PCI bridge
	0006  85C501/2/3
	0008  SiS85C503/5513 (LPC Bridge)
	0009  ACPI
	000a  PCI-to-PCI bridge
	0016  SiS961/2 SMBus Controller
	0018  SiS85C503/5513 (LPC Bridge)
	0180  RAID bus controller 180 SATA/PATA  [SiS]
	0181  SATA
	0182  182 SATA/RAID Controller
		1734 1095  D2030-A1
	0186  AHCI Controller (0106)
	0190  190 Ethernet Adapter
	0191  191 Gigabit Ethernet Adapter
	0200  5597/5598/6326 VGA
		1039 0000  SiS5597 SVGA (Shared RAM)
	0204  82C204
	0205  SG86C205
	0300  300/305 PCI/AGP VGA Display Adapter
		107d 2720  Leadtek WinFast VR300
	0310  315H PCI/AGP VGA Display Adapter
	0315  315 PCI/AGP VGA Display Adapter
	0325  315PRO PCI/AGP VGA Display Adapter
	0330  330 [Xabre] PCI/AGP VGA Display Adapter
	0406  85C501/2
	0496  85C496
	0530  530 Host
	0540  540 Host
	0550  550 Host
	0597  5513C
	0601  85C601
	0620  620 Host
	0630  630 Host
	0633  633 Host
	0635  635 Host
	0645  SiS645 Host & Memory & AGP Controller
	0646  SiS645DX Host & Memory & AGP Controller
	0648  645xx
	0649  SiS649 Host
	0650  650/M650 Host
	0651  651 Host
	0655  655 Host
	0660  660 Host
	0661  661FX/M661FX/M661MX Host
	0662  662 Host
	0671  671MX
	0730  730 Host
	0733  733 Host
	0735  735 Host
	0740  740 Host
	0741  741/741GX/M741 Host
	0745  745 Host
	0746  746 Host
	0755  755 Host
	0760  760/M760 Host
	0761  761/M761 Host
		1734 1099  D2030-A1 Motherboard
	0900  SiS900 PCI Fast Ethernet
		1019 0a14  K7S5A motherboard
		1039 0900  SiS900 10/100 Ethernet Adapter onboard [Asus P4SC-EA]
		1043 8035  CUSI-FX motherboard
		1043 80a7  Motherboard P4S800D-X
		1462 0900  MS-6701 motherboard
	0961  SiS961 [MuTIOL Media IO]
	0962  SiS962 [MuTIOL Media IO]
	0963  SiS963 [MuTIOL Media IO]
	0964  SiS964 [MuTIOL Media IO]
	0965  SiS965 [MuTIOL Media IO]
	0966  SiS966 [MuTIOL Media IO]
	0968  SiS968 [MuTIOL Media IO]
	1180  SATA Controller / IDE mode
	1182  SATA Controller / RAID mode
	1183  SATA Controller / IDE mode
	1184  AHCI Controller / RAID mode
	1185  AHCI IDE Controller (0106)
	3602  83C602
	5107  5107
	5300  SiS540 PCI Display Adapter
	5315  550 PCI/AGP VGA Display Adapter
	5401  486 PCI Chipset
	5511  5511/5512
	5513  5513 [IDE]
		1019 0970  P6STP-FL motherboard
		1039 5513  SiS5513 EIDE Controller (A,B step)
		1043 8035  CUSI-FX motherboard
		1462 7010  MS-6701 motherboard
		1631 5513  GA-8SIML Rev1.0 Motherboard
		1734 1095  D2030-A1 Motherboard
	5517  5517
	5571  5571
	5581  5581 Pentium Chipset
	5582  5582
	5591  5591/5592 Host
	5596  5596 Pentium Chipset
	5597  5597 [SiS5582]
	5600  5600 Host
	6204  Video decoder & MPEG interface
	6205  VGA Controller
	6236  6236 3D-AGP
	6300  630/730 PCI/AGP VGA Display Adapter
		1019 0970  P6STP-FL motherboard
		1043 8035  CUSI-FX motherboard
	6306  530/620 PCI/AGP VGA Display Adapter
	6325  65x/M650/740 PCI/AGP VGA Display Adapter
		1039 6325  SiS 651 onboard [Asus P4SC-EA]
		1631 1004  SiS 651C onboard [Gigabyte GA-8SIML Rev1.0]
	6326  86C326 5598/6326
		1039 6326  SiS6326 GUI Accelerator
		1092 0a50  SpeedStar A50
		1092 0a70  SpeedStar A70
		1092 4910  SpeedStar A70
		1092 4920  SpeedStar A70
		10b0 6326  S6110-B (AGP)
		1569 6326  SiS6326 GUI Accelerator
	6330  661/741/760 PCI/AGP or 662/761Gx PCIE VGA Display Adapter
		1039 6330  [M]661xX/[M]741[GX]/[M]760 PCI/AGP VGA Adapter
		1043 8113  SiS Real 256E (ASUS P5S800-VM motherboard)
		1458 d000  SiS661FX GUI 2D/3D Accelerator
		1734 1099  D2030-A1
	6350  770/670 PCIE VGA Display Adapter
	6351  771/671 PCIE VGA Display Adapter
	7001  USB 1.1 Controller
		1019 0a14  K7S5A motherboard
		1039 7000  Onboard USB Controller
		1462 5470  ECS K7SOM+ motherboard
		1462 7010  MS-6701 motherboard
		1734 1095  D2030-A1 Motherboard
	7002  USB 2.0 Controller
		1462 5470  K7SOM+ 5.2C Motherboard
		1462 7010  MS-6701 motherboard
		1509 7002  Onboard USB Controller
		1734 1095  D2030-A1
	7007  FireWire Controller
		1462 701d  MS-6701
	7012  AC'97 Sound Controller
		1039 7012  SiS 7012 onboard [Asus P4SC-EA] AC'97 Sound Controller
		1043 818f  A8S-X Motherboard
		13f6 0300  CMI9739(A) on ECS K7SOM+ motherboard
		1462 5850  MSI 648 Max (MS-6585)
		1462 7010  MS-6701 motherboard
		15bd 1001  DFI 661FX motherboard
		1734 109f  D2030-A1 Motherboard
# There are may be different modem codecs here (Intel537 compatible and incompatible)
	7013  AC'97 Modem Controller
	7016  SiS7016 PCI Fast Ethernet Adapter
		1039 7016  SiS7016 10/100 Ethernet Adapter
	7018  SiS PCI Audio Accelerator
		1014 01b6  SiS PCI Audio Accelerator
		1014 01b7  SiS PCI Audio Accelerator
		1019 7018  SiS PCI Audio Accelerator
		1025 000e  SiS PCI Audio Accelerator
		1025 0018  SiS PCI Audio Accelerator
		1039 7018  SiS PCI Audio Accelerator
		1043 1453  SiS PCI Audio Accelerator
		1043 800b  SiS PCI Audio Accelerator
		1054 7018  SiS PCI Audio Accelerator
		107d 5330  SiS PCI Audio Accelerator
		107d 5350  SiS PCI Audio Accelerator
		1170 3209  SiS PCI Audio Accelerator
		1462 400a  SiS PCI Audio Accelerator
		14a4 2089  SiS PCI Audio Accelerator
		14cd 2194  SiS PCI Audio Accelerator
		14ff 1100  SiS PCI Audio Accelerator
		152d 8808  SiS PCI Audio Accelerator
		1558 1103  SiS PCI Audio Accelerator
		1558 2200  SiS PCI Audio Accelerator
		1563 7018  SiS PCI Audio Accelerator
		15c5 0111  SiS PCI Audio Accelerator
		270f a171  SiS PCI Audio Accelerator
		a0a0 0022  SiS PCI Audio Accelerator
	7019  SiS7019 Audio Accelerator
	7502  Azalia Audio Controller
103a  Seiko Epson Corporation
103b  Tatung Corp. Of America
103c  Hewlett-Packard Company
	002a  NX9000 Notebook
	08bc  NX5000 Notebook
	1005  A4977A Visualize EG
	1008  Visualize FX
	1028  Tach TL Fibre Channel Host Adapter
	1029  Tach XL2 Fibre Channel Host Adapter
		107e 000f  Interphase 5560 Fibre Channel Adapter
		9004 9210  1Gb/2Gb Family Fibre Channel Controller
		9004 9211  1Gb/2Gb Family Fibre Channel Controller
	102a  Tach TS Fibre Channel Host Adapter
		107e 000e  Interphase 5540/5541 Fibre Channel Adapter
		9004 9110  1Gb/2Gb Family Fibre Channel Controller
		9004 9111  1Gb/2Gb Family Fibre Channel Controller
	1030  J2585A DeskDirect 10/100VG NIC
	1031  J2585B HP 10/100VG PCI LAN Adapter
		103c 1040  J2973A DeskDirect 10BaseT NIC
		103c 1041  J2585B DeskDirect 10/100VG NIC
		103c 1042  J2970A DeskDirect 10BaseT/2 NIC
	1040  J2973A DeskDirect 10BaseT NIC
	1041  J2585B DeskDirect 10/100 NIC
	1042  J2970A DeskDirect 10BaseT/2 NIC
	1048  Diva Serial [GSP] Multiport UART
		103c 1049  Tosca Console
		103c 104a  Tosca Secondary
		103c 104b  Maestro SP2
		103c 1223  Superdome Console
		103c 1226  Keystone SP2
		103c 1227  Powerbar SP2
		103c 1282  Everest SP2
		103c 1301  Diva RMP3
	1054  PCI Local Bus Adapter
	1064  79C970 PCnet Ethernet Controller
	108b  Visualize FXe
	10c1  NetServer Smart IRQ Router
	10ed  TopTools Remote Control
	10f0  rio System Bus Adapter
	10f1  rio I/O Controller
	1200  82557B 10/100 NIC
	1219  NetServer PCI Hot-Plug Controller
	121a  NetServer SMIC Controller
	121b  NetServer Legacy COM Port Decoder
	121c  NetServer PCI COM Port Decoder
	1229  zx1 System Bus Adapter
	122a  zx1 I/O Controller
	122e  PCI-X Local Bus Adapter
	127b  sx1000 System Bus Adapter
	127c  sx1000 I/O Controller
	1290  Auxiliary Diva Serial Port
		103c 1291  Diva SP2
	1291  Auxiliary Diva Serial Port
	12b4  zx1 QuickSilver AGP8x Local Bus Adapter
	12eb  sx2000 System Bus Adapter
	12ec  sx2000 I/O Controller
	12ee  PCI-X 2.0 Local Bus Adapter
	12f8  Broadcom BCM4306 802.11b/g Wireless LAN
	12fa  BCM4306 802.11b/g Wireless LAN Controller
	1302  RMP-3 Shared Memory Driver
	1303  RMP-3 (Remote Management Processor)
	1361  BCM4312 802.11a/b/g WLAN Controller
	1371  Broadcom Corporation BCM4312 802.11a/b/g (rev 02)
	2910  E2910A PCIBus Exerciser
	2925  E2925A 32 Bit, 33 MHzPCI Exerciser & Analyzer
	3080  Pavilion ze2028ea
	3085  Realtek RTL8139/8139C/8139C+
	30b5  Compaq Presario V3000Z
	31fb  DL365 ATI ES1000 VGA controller
	3206  Adaptec Embedded Serial ATA HostRAID
	3220  Smart Array P600
		103c 3225  3 Gb/s SAS RAID
	3230  Smart Array Controller
		103c 3223  Smart Array P800
		103c 3234  P400 SAS Controller
		103c 3235  P400i SAS Controller
		103c 3237  E500 SAS Controller
		103c 323d  P700m SAS Controller
	3238  Smart Array E200i (SAS Controller)
		103c 3211  Smart Array E200i
		103c 3212  Smart Array E200
	323a  Smart Array G6 controllers
		103c 3241  Smart Array P212
		103c 3243  Smart Array P410
		103c 3245  Smart Array P410i
		103c 3247  Smart Array P411
		103c 3249  Smart Array P812
		103c 324a  HP Smart Array 712m (Mezzanine RAID controller)
		103c 324b  Smart Array P711m (Mezzanine RAID controller)
	3300  Proliant iLO2/iLO3 virtual USB controller
	3301  iLO3 Serial Port
# Virtual serial port which is presented on a Java applet
	3302  Proliant iLO2 virtual UART
	3305  Proliant iLO2 [Integrated Lights Out] controller
	3306  iLO3 Slave instrumentation & System support
	3307  iLO3 Management Processor Support and Messaging
	3308  iLO3 MS Watchdog Timer
	402f  PCIe Root Port
	4030  zx2 System Bus Adapter
	4031  zx2 I/O Controller
	4037  PCIe Local Bus Adapter
	403b  PCIe Root Port
	60e8  NetRAID-2M : ZX1/M (OEM AMI MegaRAID 493)
103e  Solliday Engineering
103f  Synopsys/Logic Modeling Group
1040  Accelgraphics Inc.
1041  Computrend
1042  Micron
	1000  PC Tech RZ1000
	1001  PC Tech RZ1001
	3000  Samurai_0
	3010  Samurai_1
	3020  Samurai_IDE
1043  ASUSTeK Computer Inc.
	0675  ISDNLink P-IN100-ST-D
		0675 1704  ISDN Adapter (PCI Bus, D, C)
		0675 1707  ISDN Adapter (PCI Bus, DV, W)
		10cf 105e  ISDN Adapter (PCI Bus, DV, W)
	0c11  A7N8X Motherboard nForce2 IDE/USB/SMBus
	4015  v7100 SDRAM [GeForce2 MX]
	4021  v7100 Combo Deluxe [GeForce2 MX + TV tuner]
	4057  v8200 GeForce 3
	8043  v8240 PAL 128M [P4T] Motherboard
	8047  v8420 Deluxe [GeForce4 Ti4200]
	807b  v9280/TD [Geforce4 TI4200 8X With TV-Out and DVI]
	8095  A7N8X Motherboard nForce2 AC97 Audio
	80ac  A7N8X Motherboard nForce2 AGP/Memory
	80bb  v9180 Magic/T [GeForce4 MX440 AGP 8x 64MB TV-out]
	80c5  nForce3 chipset motherboard [SK8N]
	80df  v9520 Magic/T
	815a  A8N-SLI Motherboard nForce4 SATA
	8168  Realtek PCI-E Gigabit Ethernet Controller (RTL8111B)
	8187  802.11a/b/g Wireless LAN Card
	8188  Tiger Hybrid TV Capture Device
# Found on ASUS M2V motherboard
	81e7  Realtek ALC-660 6-channel CODEC
	81f4  EN7300TC512/TD/128M/A(C262G) [Graphics Card EN7300TC512]
	8233  EEE-PC 701 Netbook
	82ca  G96 GeForce 9500 GT
	82e8  M3N72-D
# wrong vendor ID (should have been AMD)
	9602  RS880 PCI to PCI bridge (int gfx)
		1043 83a2  M4A785TD Motherboard
1044  Adaptec (formerly DPT)
	1012  Domino RAID Engine
	a400  SmartCache/Raid I-IV Controller
	a500  PCI Bridge
	a501  SmartRAID V Controller
		1044 c001  PM1554U2 Ultra2 Single Channel
		1044 c002  PM1654U2 Ultra2 Single Channel
		1044 c003  PM1564U3 Ultra3 Single Channel
		1044 c004  PM1564U3 Ultra3 Dual Channel
		1044 c005  PM1554U2 Ultra2 Single Channel (NON ACPI)
		1044 c00a  PM2554U2 Ultra2 Single Channel
		1044 c00b  PM2654U2 Ultra2 Single Channel
		1044 c00c  PM2664U3 Ultra3 Single Channel
		1044 c00d  PM2664U3 Ultra3 Dual Channel
		1044 c00e  PM2554U2 Ultra2 Single Channel (NON ACPI)
		1044 c00f  PM2654U2 Ultra2 Single Channel (NON ACPI)
		1044 c014  PM3754U2 Ultra2 Single Channel (NON ACPI)
		1044 c015  PM3755U2B Ultra2 Single Channel (NON ACPI)
		1044 c016  PM3755F Fibre Channel (NON ACPI)
		1044 c01e  PM3757U2 Ultra2 Single Channel
		1044 c01f  PM3757U2 Ultra2 Dual Channel
		1044 c020  PM3767U3 Ultra3 Dual Channel
		1044 c021  PM3767U3 Ultra3 Quad Channel
		1044 c028  PM2865U3 Ultra3 Single Channel
		1044 c029  PM2865U3 Ultra3 Dual Channel
		1044 c02a  PM2865F Fibre Channel
		1044 c03c  2000S Ultra3 Single Channel
		1044 c03d  2000S Ultra3 Dual Channel
		1044 c03e  2000F Fibre Channel
		1044 c046  3000S Ultra3 Single Channel
		1044 c047  3000S Ultra3 Dual Channel
		1044 c048  3000F Fibre Channel
		1044 c050  5000S Ultra3 Single Channel
		1044 c051  5000S Ultra3 Dual Channel
		1044 c052  5000F Fibre Channel
		1044 c05a  2400A UDMA Four Channel
		1044 c05b  2400A UDMA Four Channel DAC
		1044 c064  3010S Ultra3 Dual Channel
		1044 c065  3410S Ultra160 Four Channel
		1044 c066  3010S Fibre Channel
	a511  SmartRAID V Controller
		1044 c032  ASR-2005S I2O Zero Channel
		1044 c035  ASR-2010S I2O Zero Channel
	c066  3010S Ultra3 Dual Channel
1045  OPTi Inc.
	a0f8  82C750 [Vendetta] USB Controller
	c101  92C264
	c178  92C178
	c556  82X556 [Viper]
	c557  82C557 [Viper-M]
	c558  82C558 [Viper-M ISA+IDE]
	c567  82C750 [Vendetta], device 0
	c568  82C750 [Vendetta], device 1
	c569  82C579 [Viper XPress+ Chipset]
	c621  82C621 [Viper-M/N+]
	c700  82C700 [FireStar]
	c701  82C701 [FireStar Plus]
	c814  82C814 [Firebridge 1]
	c822  82C822
	c824  82C824
	c825  82C825 [Firebridge 2]
	c832  82C832
	c861  82C861
	c895  82C895
	c935  EV1935 ECTIVA MachOne PCIAudio
	d568  82C825 [Firebridge 2]
	d721  IDE [FireStar]
1046  IPC Corporation, Ltd.
1047  Genoa Systems Corp
1048  Elsa AG
	0c60  Gladiac MX
	0d22  Quadro4 900XGL [ELSA GLoria4 900XGL]
	1000  QuickStep 1000
	3000  QuickStep 3000
	8901  Gloria XL
		1048 0935  GLoria XL (Virge)
1049  Fountain Technologies, Inc.
# nee SGS Thomson Microelectronics
104a  STMicroelectronics
	0000  STLS2F Host Bridge
	0008  STG 2000X
	0009  STG 1764X
	0010  STG4000 [3D Prophet Kyro Series]
	0201  STPC Vega Northbridge
	0209  STPC Consumer/Industrial North- and Southbridge
	020a  STPC Atlas/ConsumerS/Consumer IIA Northbridge
	020b  STPC Consumer II ISA Bridge
	0210  STPC Atlas ISA Bridge
	021a  STPC Consumer S Southbridge
	021b  STPC Consumer IIA Southbridge
	0220  STPC Industrial PCI to PCCard bridge
	0228  STPC Atlas IDE
	0229  STPC Vega IDE
	0230  STPC Atlas/Vega OHCI USB Controller
	0238  STPC Vega LAN
	0500  ST70137 [Unicorn] ADSL DMT Transceiver
		104a 0500  BeWAN ADSL PCI st
	0564  STPC Client Northbridge
	0981  21x4x DEC-Tulip compatible 10/100 Ethernet
	1746  STG 1764X
	2774  21x4x DEC-Tulip compatible 10/100 Ethernet
	3520  MPEG-II decoder card
	55cc  STPC Client Southbridge
104b  BusLogic
	0140  BT-946C (old) [multimaster  01]
	1040  BT-946C (BA80C30) [MultiMaster 10]
	8130  Flashpoint LT
104c  Texas Instruments
	0500  100 MBit LAN Controller
	0508  TMS380C2X Compressor Interface
	1000  Eagle i/f AS
	104c  PCI1510 PC card Cardbus Controller
	3d04  TVP4010 [Permedia]
	3d07  TVP4020 [Permedia 2]
		1011 4d10  Comet
		1040 000f  AccelStar II
		1040 0011  AccelStar II
		1048 0a31  WINNER 2000
		1048 0a32  GLoria Synergy
		1048 0a34  GLoria Synergy
		1048 0a35  GLoria Synergy
		1048 0a36  GLoria Synergy
		1048 0a43  GLoria Synergy
		1048 0a44  GLoria Synergy
		107d 2633  WinFast 3D L2300
		1092 0126  FIRE GL 1000 PRO
		1092 0127  FIRE GL 1000 PRO
		1092 0136  FIRE GL 1000 PRO
		1092 0141  FIRE GL 1000 PRO
		1092 0146  FIRE GL 1000 PRO
		1092 0148  FIRE GL 1000 PRO
		1092 0149  FIRE GL 1000 PRO
		1092 0152  FIRE GL 1000 PRO
		1092 0154  FIRE GL 1000 PRO
		1092 0155  FIRE GL 1000 PRO
		1092 0156  FIRE GL 1000 PRO
		1092 0157  FIRE GL 1000 PRO
		1097 3d01  Jeronimo Pro
		1102 100f  Graphics Blaster Extreme
		3d3d 0100  Reference Permedia 2 3D
	8000  PCILynx/PCILynx2 IEEE 1394 Link Layer Controller
		1443 8003  FireBoard200
		e4bf 1010  CF1-1-SNARE
		e4bf 1020  CF1-2-SNARE
	8009  TSB12LV22 IEEE-1394 Controller
		104d 8032  8032 OHCI i.LINK (IEEE 1394) Controller
	8017  PCI4410 FireWire Controller
	8019  TSB12LV23 IEEE-1394 Controller
		11bd 000a  Studio DV500-1394
		11bd 000e  Studio DV
		e4bf 1010  CF2-1-CYMBAL
	8020  TSB12LV26 IEEE-1394 Controller (Link)
		1028 00d8  Precision 530
		11bd 000f  Studio DV500-1394
		11bd 001c  Excalibur 4.1
	8021  TSB43AA22 IEEE-1394 Controller (PHY/Link Integrated)
		104d 80df  Vaio PCG-FX403
		104d 80e7  VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP
	8022  TSB43AB22 IEEE-1394a-2000 Controller (PHY/Link)
		104c 8023  TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link)
	8023  TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link)
		103c 088c  NC8000 laptop
		1043 808b  K8N4-E Mainboard
		1043 815b  P5W DH Deluxe Motherboard
		1443 8023  FireCard400
	8024  TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link)
		107d 6620  Winfast DV2000 FireWire Controller
		1443 8024  FireBoard Blue
		1458 1000  GA-EP45-DS5 Motherboard
	8025  TSB82AA2 IEEE-1394b Link Layer Controller
		1458 1000  GA-K8N Ultra-9 Mainboard
	8026  TSB43AB21 IEEE-1394a-2000 Controller (PHY/Link)
		1025 0035  TravelMate 660
		1025 003c  Aspire 2001WLCi (Compaq CL50 motherboard)
		103c 006a  NX9500
		1043 808d  A7V333 mainboard.
	8027  PCI4451 IEEE-1394 Controller
		1028 00e6  PCI4451 IEEE-1394 Controller (Dell Inspiron 8100)
	8029  PCI4510 IEEE-1394 Controller
		1028 0163  Latitude D505
		1028 0196  Inspiron 5160
		1071 8160  MIM2900
	802b  PCI7410,7510,7610 OHCI-Lynx Controller
		1028 0139  Latitude D400
		1028 014e  PCI7410,7510,7610 OHCI-Lynx Controller (Latitude D800)
	802e  PCI7x20 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller
		1028 018d  Inspiron 700m/710m
	8031  PCIxx21/x515 Cardbus Controller
		1025 0080  Aspire 5024WLMi
		103c 0934  Compaq nw8240/nx8220
		103c 099c  NX6110/NC6120
		103c 308b  MX6125
	8032  OHCI Compliant IEEE 1394 Host Controller
		1025 0080  Aspire 5024WLMi
		103c 0934  Compaq nw8240/nx8220
		103c 099c  NX6110/NC6120
		103c 308b  MX6125
	8033  PCIxx21 Integrated FlashMedia Controller
		1025 0080  Aspire 5024WLMi
		103c 0934  Compaq nw8240/nx8220
		103c 099c  NX6110/NC6120
		103c 308b  MX6125
	8034  PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller
		1025 0080  Aspire 5024WLMi
		103c 0934  Compaq nw8240/nx8220
		103c 099c  NX6110/NC6120
		103c 308b  MX6125
	8035  PCI6411/6421/6611/6621/7411/7421/7611/7621 Smart Card Controller
		103c 0934  Compaq nw8240/nx8220
		103c 099c  NX6110/NC6120
	8036  PCI6515 Cardbus Controller
	8038  PCI6515 SmartCard Controller
	8039  PCIxx12 Cardbus Controller
		103c 309f  Compaq nx9420 Notebook
		103c 30a1  NC2400
		103c 30a3  Compaq nw8440
	803a  PCIxx12 OHCI Compliant IEEE 1394 Host Controller
		103c 309f  nx9420
		103c 30a1  NC2400
		103c 30a3  Compaq nw8440
	803b  5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD)
		103c 309f  nx9420
		103c 30a3  Compaq nw8440
	803c  PCIxx12 SDA Standard Compliant SD Host Controller
		103c 309f  nx9420
		103c 30a3  Compaq nw8440
	803d  PCIxx12 GemCore based SmartCard controller
		103c 309f  Compaq nx9420 Notebook
		103c 30a1  NC2400
		103c 30a3  nc8430
		103c 30aa  nc6310
	8101  TSB43DB42 IEEE-1394a-2000 Controller (PHY/Link)
	8201  PCI1620 Firmware Loading Function
	8204  PCI7410,7510,7610 PCI Firmware Loading Function
		1028 0139  Latitude D400
		1028 014e  Latitude D800
	8231  XIO2000(A)/XIO2200(A) PCI Express-to-PCI Bridge
		5678 1234  DC-1394 PCIe
	8232  XIO3130 PCI Express Switch (Upstream)
	8233  XIO3130 PCI Express Switch (Downstream)
	8235  XIO2200(A) IEEE-1394a-2000 Controller (PHY/Link)
		5678 1234  DC-1394 PCIe
	823e  XIO2213A/B/XIO2221 PCI Express to PCI Bridge
	823f  XIO2213A/B/XIO2221 IEEE-1394b OHCI Controller
		1546 803c  FWB-PCIE1X11B
	8240  XIO2001 PCI Express-to-PCI Bridge
	8400  ACX 100 22Mbps Wireless Interface
		1186 3b00  DWL-650+ PC Card cardbus 22Mbs Wireless Adapter [AirPlus]
		1186 3b01  DWL-520+ 22Mbps PCI Wireless Adapter
		1395 2201  WL22-PC
		16ab 8501  WL-8305 IEEE802.11b+ Wireless LAN PCI Adapter
	8401  ACX 100 22Mbps Wireless Interface
	9000  Wireless Interface (of unknown type)
	9065  TMS320DM642
	9066  ACX 111 54Mbps Wireless Interface
		104c 9066  WL212 Sitecom Wireless Network PCI-Card 100M (Version 1)
		104c 9096  Trendnet TEW-412PC Wireless PCI Adapter (Version A)
		1186 3b04  DWL-G520+ Wireless PCI Adapter
		1186 3b05  DWL-G650+ AirPlusG+ CardBus Wireless LAN
		1186 3b08  AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.B1)
		1385 4c00  WG311v2 802.11g Wireless PCI Adapter
		13d1 aba0  SWLMP-54108 108Mbps Wireless mini PCI card 802.11g+
		16ec 010d  USR5416 802.11g Wireless Turbo PCI Adapter
		1737 0033  WPC54G v2 802.11g Wireless-G Notebook Adapter
		17cf 0033  Z-Com XG650 Wireless miniPCI 802.11b/g
	a001  TDC1570
	a100  TDC1561
	a102  TNETA1575 HyperSAR Plus w/PCI Host i/f & UTOPIA i/f
	a106  TMS320C6414 TMS320C6415 TMS320C6416
		175c 5000  ASI50xx Audio Adapter
		175c 6400  ASI6400 Cobranet series
		175c 8700  ASI87xx Radio Tuner card
	ac10  PCI1050
	ac11  PCI1053
	ac12  PCI1130
	ac13  PCI1031
	ac15  PCI1131
	ac16  PCI1250
		1014 0092  ThinkPad 600
	ac17  PCI1220
	ac18  PCI1260
	ac19  PCI1221
	ac1a  PCI1210
	ac1b  PCI1450
		0e11 b113  Armada M700
		1014 0130  ThinkPad 600X/A21m/T20/T22
	ac1c  PCI1225
		0e11 b121  Armada E500
		1028 0088  Latitude CPi A400XT
	ac1d  PCI1251A
	ac1e  PCI1211
	ac1f  PCI1251B
	ac20  TI 2030
	ac21  PCI2031
	ac22  PCI2032 PCI Docking Bridge
	ac23  PCI2250 PCI-to-PCI Bridge
	ac28  PCI2050 PCI-to-PCI Bridge
	ac2c  PCI2060 PCI-to-PCI Bridge
	ac30  PCI1260 PC card Cardbus Controller
	ac40  PCI4450 PC card Cardbus Controller
	ac41  PCI4410 PC card Cardbus Controller
	ac42  PCI4451 PC card Cardbus Controller
		1028 00e6  PCI4451 PC card CardBus Controller (Inspiron 8100)
	ac44  PCI4510 PC card Cardbus Controller
		1028 0149  Inspiron 5100
		1028 0163  Latitude D505
		1028 0196  Inspiron 5160
		1071 8160  MIM2000
	ac46  PCI4520 PC card Cardbus Controller
		1014 0552  ThinkPad
	ac47  PCI7510 PC card Cardbus Controller
		1028 0139  Latitude D400
		1028 013f  Precision M60
		1028 014e  Latitude D800
	ac48  PCI7610 PC Card Cardbus Controller
	ac49  PCI7410 PC Card Cardbus Controller
	ac4a  PCI7510,7610 PC card Cardbus Controller
		1028 0139  Latitude D400
		1028 014e  Latitude D800
	ac4b  PCI7610 SD/MMC controller
	ac4c  PCI7610 Memory Stick controller
	ac50  PCI1410 PC card Cardbus Controller
	ac51  PCI1420 PC card Cardbus Controller
		0e11 004e  Evo N600c
		1014 0148  ThinkPad A20m
		1014 023b  ThinkPad T23
		1028 00b1  Latitude C600
		1028 012a  Latitude C640
		1033 80cd  Versa Note VXi
		10cf 1095  Lifebook S-4510/C6155
		e4bf 1000  CP2-2-HIPHOP
	ac52  PCI1451 PC card Cardbus Controller
	ac53  PCI1421 PC card Cardbus Controller
	ac54  PCI1620 PC Card Controller
		103c 08b0  tc1100 tablet
	ac55  PCI1520 PC card Cardbus Controller
		1014 0512  ThinkPad T30/T40
	ac56  PCI1510 PC card Cardbus Controller
		1014 0512  ThinkPad R50e
		1014 0528  ThinkPad R40e
		17aa 2012  ThinkPad T60/R60 series
	ac60  PCI2040 PCI to DSP Bridge Controller
		175c 5100  ASI51xx Audio Adapter
		175c 6100  ASI61xx Audio Adapter
		175c 6200  ASI62xx Audio Adapter
		175c 8800  ASI88xx Audio Adapter
		186f 3001  WR-G303 PCI radio receiver
		186f 3005  WR-G305 PCI radio receiver
		186f 3101  WR-G313 PCI radio receiver
		186f 3105  WR-G315 PCI radio receiver
	ac8d  PCI 7620
	ac8e  PCI7420 CardBus Controller
		1028 018d  Inspiron 700m/710m
	ac8f  PCI7420/7620 Combo CardBus, 1394a-2000 OHCI and SD/MS-Pro Controller
		1028 018d  Inspiron 700m/710m
	fe00  FireWire Host Controller
	fe03  12C01A FireWire Host Controller
104d  Sony Corporation
	8004  DTL-H2500 [Playstation development board]
	8009  CXD1947Q i.LINK Controller
	8039  CXD3222 i.LINK Controller
	8056  Rockwell HCF 56K modem
	808a  Memory Stick Controller
	81ce  SxS Pro memory card
104e  Oak Technology, Inc
	0017  OTI-64017
	0107  OTI-107 [Spitfire]
	0109  Video Adapter
	0111  OTI-64111 [Spitfire]
	0217  OTI-64217
	0317  OTI-64317
104f  Co-time Computer Ltd
1050  Winbond Electronics Corp
	0000  NE2000
	0001  W83769F
	0033  W89C33D 802.11 a/b/g BB/MAC
	0105  W82C105
	0840  W89C840
		1050 0001  W89C840 Ethernet Adapter
		1050 0840  W89C840 Ethernet Adapter
	0940  W89C940
	5a5a  W89C940F
	6692  W6692
		1043 1702  ISDN Adapter (PCI Bus, D, W)
		1043 1703  ISDN Adapter (PCI Bus, DV, W)
		1043 1707  ISDN Adapter (PCI Bus, DV, W)
		144f 1702  ISDN Adapter (PCI Bus, D, W)
		144f 1703  ISDN Adapter (PCI Bus, DV, W)
		144f 1707  ISDN Adapter (PCI Bus, DV, W)
	9921  W99200F MPEG-1 Video Encoder
	9922  W99200F/W9922PF MPEG-1/2 Video Encoder
	9970  W9970CF
1051  Anigma, Inc.
1052  ?Young Micro Systems
1053  Young Micro Systems
1054  Hitachi, Ltd
	3009  2Gbps Fibre Channel to PCI HBA 3009
	300a  4Gbps Fibre Channel to PCI-X HBA 300a
	300b  4Gbps Fibre Channel to PCI-X HBA 300b
	300f  ColdFusion 3 Chipset Processor to I/O Controller
	3010  ColdFusion 3 Chipset Memory Controller Hub
	3011  ColdFusion 3e Chipset Processor to I/O Controller
	3012  ColdFusion 3e Chipset Memory Controller Hub
	3017  Unassigned Hitachi Shared FC Device 3017
	301d  PCIe-to-PCIe Bridge with Virtualization IO Assist Feature
	3020  FIVE-EX based Fibre Channel to PCIe HBA
	302c  M001 PCI Express Switch Upstream Port
	302d  M001 PCI Express Switch Downstream Port
	3505  SH7751 PCI Controller (PCIC)
	350e  SH7751R PCI Controller (PCIC)
1055  Efar Microsystems
	9130  SLC90E66 [Victory66] IDE
	9460  SLC90E66 [Victory66] ISA
	9462  SLC90E66 [Victory66] USB
	9463  SLC90E66 [Victory66] ACPI
	e420  LAN9420/LAN9420i
1056  ICL
# Motorola made a mistake and used 1507 instead of 1057 in some chips. Please look at the 1507 entry as well when updating this.
1057  Motorola
	0001  MPC105 [Eagle]
	0002  MPC106 [Grackle]
	0003  MPC8240 [Kahlua]
	0004  MPC107
	0006  MPC8245 [Unity]
	0008  MPC8540
	0009  MPC8560
	0012  MPC8548 [PowerQUICC III]
	0100  MC145575 [HFC-PCI]
	0431  KTI829c 100VG
	1073  Nokia N770
	1219  Nokia N800
	1801  DSP56301 Digital Signal Processor
		14fb 0101  Transas Radar Imitator Board [RIM]
		14fb 0102  Transas Radar Imitator Board [RIM-2]
		14fb 0202  Transas Radar Integrator Board [RIB-2]
		14fb 0611  1 channel CAN bus Controller [CanPci-1]
		14fb 0612  2 channels CAN bus Controller [CanPci-2]
		14fb 0613  3 channels CAN bus Controller [CanPci-3]
		14fb 0614  4 channels CAN bus Controller [CanPci-4]
		14fb 0621  1 channel CAN bus Controller [CanPci2-1]
		14fb 0622  2 channels CAN bus Controller [CanPci2-2]
		14fb 0810  Transas VTS Radar Integrator Board [RIB-4]
		175c 4200  ASI4215 Audio Adapter
		175c 4300  ASI43xx Audio Adapter
		175c 4400  ASI4401 Audio Adapter
		ecc0 0010  Darla
		ecc0 0020  Gina
		ecc0 0030  Layla rev.0
		ecc0 0031  Layla rev.1
		ecc0 0040  Darla24 rev.0
		ecc0 0041  Darla24 rev.1
		ecc0 0050  Gina24 rev.0
		ecc0 0051  Gina24 rev.1
		ecc0 0070  Mona rev.0
		ecc0 0071  Mona rev.1
		ecc0 0072  Mona rev.2
	18c0  MPC8265A/8266/8272
	18c1  MPC8271/MPC8272
	3052  SM56 Data Fax Modem
	3055  SM56 Data Fax Modem
	3410  DSP56361 Digital Signal Processor
		ecc0 0050  Gina24 rev.0
		ecc0 0051  Gina24 rev.1
		ecc0 0060  Layla24
		ecc0 0070  Mona rev.0
		ecc0 0071  Mona rev.1
		ecc0 0072  Mona rev.2
		ecc0 0080  Mia rev.0
		ecc0 0081  Mia rev.1
		ecc0 0090  Indigo
		ecc0 00a0  Indigo IO
		ecc0 00b0  Indigo DJ
		ecc0 0100  3G
	4801  Raven
	4802  Falcon
	4803  Hawk
	4806  CPX8216
	4d68  20268
	5600  SM56 PCI Modem
		1057 0300  SM56 PCI Speakerphone Modem
		1057 0301  SM56 PCI Voice Modem
		1057 0302  SM56 PCI Fax Modem
		1057 5600  SM56 PCI Voice modem
		13d2 0300  SM56 PCI Speakerphone Modem
		13d2 0301  SM56 PCI Voice modem
		13d2 0302  SM56 PCI Fax Modem
		1436 0300  SM56 PCI Speakerphone Modem
		1436 0301  SM56 PCI Voice modem
		1436 0302  SM56 PCI Fax Modem
		144f 100c  SM56 PCI Fax Modem
		1494 0300  SM56 PCI Speakerphone Modem
		1494 0301  SM56 PCI Voice modem
		14c8 0300  SM56 PCI Speakerphone Modem
		14c8 0302  SM56 PCI Fax Modem
		1668 0300  SM56 PCI Speakerphone Modem
		1668 0302  SM56 PCI Fax Modem
	5608  Wildcard X100P
	5803  MPC5200
	5806  MCF54 Coldfire
	5808  MPC8220
	5809  MPC5200B
	6400  MPC190 Security Processor (S1 family, encryption)
	6405  MPC184 Security Processor (S1 family)
1058  Electronics & Telecommunications RSH
# Formerly: Teknor Industrial Computers Inc
1059  Kontron
105a  Promise Technology, Inc.
	0d30  PDC20265 (FastTrak100 Lite/Ultra100)
		1043 8042  AV7266-E South Bridge Promise RAID
		105a 4d33  Ultra100
	0d38  20263
		105a 4d39  Fasttrak66
	1275  20275
	3318  PDC20318 (SATA150 TX4)
	3319  PDC20319 (FastTrak S150 TX4)
		8086 3427  S875WP1-E mainboard
	3371  PDC20371 (FastTrak S150 TX2plus)
	3373  PDC20378 (FastTrak 378/SATA 378)
		1043 80f5  K8V Deluxe/PC-DL Deluxe motherboard
		1462 590d  KT6 Delta-FIS2R (MS-6590)
		1462 702e  K8T NEO FIS2R motherboard
	3375  PDC20375 (SATA150 TX2plus)
	3376  PDC20376 (FastTrak 376)
		1043 809e  A7V8X motherboard
	3515  PDC40719 [FastTrak TX4300/TX4310]
	3519  PDC40519 (FastTrak TX4200)
	3570  20771 (FastTrak TX2300)
	3571  PDC20571 (FastTrak TX2200)
	3574  PDC20579 SATAII 150 IDE Controller
	3577  PDC40779 (SATA 300 779)
	3d17  PDC40718 (SATA 300 TX4)
	3d18  PDC20518/PDC40518 (SATAII 150 TX4)
	3d73  PDC40775 (SATA 300 TX2plus)
	3d75  PDC20575 (SATAII150 TX2plus)
	3f20  PDC42819 [FastTrak TX2650/TX4650]
	4302  80333 [SuperTrak EX4350]
	4d30  PDC20267 (FastTrak100/Ultra100)
		105a 4d33  Ultra100
		105a 4d39  FastTrak100
		8086 5744  S845WD1-E mainboard
	4d33  20246
		105a 4d33  20246 IDE Controller
	4d38  PDC20262 (FastTrak66/Ultra66)
		105a 4d30  Ultra Device on SuperTrak
		105a 4d33  Ultra66
		105a 4d39  FastTrak66
	4d68  PDC20268 (Ultra100 TX2)
		105a 4d68  Ultra100TX2
	4d69  20269
		105a 4d68  Ultra133TX2
	5275  PDC20276 (MBFastTrak133 Lite)
		1043 807e  A7V333 motherboard.
		105a 0275  SuperTrak SX6000 IDE
		105a 1275  MBFastTrak133 Lite (tm) Controller (RAID mode)
		1458 b001  MBUltra 133
	5300  DC5300
	6268  PDC20270 (FastTrak100 LP/TX2/TX4)
		105a 4d68  FastTrak100 TX2
	6269  PDC20271 (FastTrak TX2000)
		105a 6269  FastTrak TX2/TX2000
	6300  PDC81731 [FastTrak SX8300]
	6621  PDC20621 (FastTrak S150 SX4/FastTrak SX4000 lite)
	6622  PDC20621 [SATA150 SX4] 4 Channel IDE RAID Controller
	6624  PDC20621 [FastTrak SX4100]
	6626  PDC20618 (Ultra 618)
	6629  PDC20619 (FastTrak TX4000)
	7275  PDC20277 (SBFastTrak133 Lite)
	8002  SATAII150 SX8
	8350  80333 [SuperTrak EX8350/EX16350], 80331 [SuperTrak EX8300/EX16300]
	8650  81384 [SuperTrak EX SAS and SATA RAID Controller]
		105a 4600  SuperTrak EX4650A
		105a 4601  SuperTrak EX4650
		105a 4610  SuperTrak EX4650EL
		105a 8600  SuperTrak EX8650EL
		105a 8601  SuperTrak EX8650A
		105a 8602  SuperTrak EX8654
		105a 8603  SuperTrak EX8658
		105a 8604  SuperTrak EX8650
		105a 8610  SuperTrak EX8650M
		105a a600  SuperTrak EX12650
		105a b600  SuperTrak EX16650
		105a b601  SuperTrak EX16654
		105a b602  SuperTrak EX16658
	8760  PM8010 [SuperTrak EX SAS and SATA 6G RAID Controller]
	c350  80333 [SuperTrak EX12350]
	e350  80333 [SuperTrak EX24350]
105b  Foxconn International, Inc.
	0c4d  SiS AC'97 Sound Controller
105c  Wipro Infotech Limited
105d  Number 9 Computer Company
	2309  Imagine 128
	2339  Imagine 128-II
		105d 0000  Imagine 128 series 2 4Mb VRAM
		105d 0001  Imagine 128 series 2 4Mb VRAM
		105d 0002  Imagine 128 series 2 4Mb VRAM
		105d 0003  Imagine 128 series 2 4Mb VRAM
		105d 0004  Imagine 128 series 2 4Mb VRAM
		105d 0005  Imagine 128 series 2 4Mb VRAM
		105d 0006  Imagine 128 series 2 4Mb VRAM
		105d 0007  Imagine 128 series 2 4Mb VRAM
		105d 0008  Imagine 128 series 2e 4Mb DRAM
		105d 0009  Imagine 128 series 2e 4Mb DRAM
		105d 000a  Imagine 128 series 2 8Mb VRAM
		105d 000b  Imagine 128 series 2 8Mb H-VRAM
		11a4 000a  Barco Metheus 5 Megapixel
		13cc 0000  Barco Metheus 5 Megapixel
		13cc 0004  Barco Metheus 5 Megapixel
		13cc 0005  Barco Metheus 5 Megapixel
		13cc 0006  Barco Metheus 5 Megapixel
		13cc 0008  Barco Metheus 5 Megapixel
		13cc 0009  Barco Metheus 5 Megapixel
		13cc 000a  Barco Metheus 5 Megapixel
		13cc 000c  Barco Metheus 5 Megapixel
	493d  Imagine 128 T2R [Ticket to Ride]
		11a4 000a  Barco Metheus 5 Megapixel, Dual Head
		11a4 000b  Barco Metheus 5 Megapixel, Dual Head
		13cc 0002  Barco Metheus 4 Megapixel, Dual Head
		13cc 0003  Barco Metheus 5 Megapixel, Dual Head
		13cc 0007  Barco Metheus 5 Megapixel, Dual Head
		13cc 0008  Barco Metheus 5 Megapixel, Dual Head
		13cc 0009  Barco Metheus 5 Megapixel, Dual Head
		13cc 000a  Barco Metheus 5 Megapixel, Dual Head
	5348  Revolution 4
		105d 0037  Revolution IV-FP AGP (For SGI 1600SW)
		11a4 0028  PVS5600M
		11a4 0038  PVS5600D
105e  Vtech Computers Ltd
105f  Infotronic America Inc
1060  United Microelectronics [UMC]
	0001  UM82C881
	0002  UM82C886
	0101  UM8673F
	0881  UM8881
	0886  UM8886F
	0891  UM8891A
	1001  UM886A
	673a  UM8886BF
	673b  EIDE Master/DMA
	8710  UM8710
	886a  UM8886A
	8881  UM8881F
	8886  UM8886F
	888a  UM8886A
	8891  UM8891A
	9017  UM9017F
	9018  UM9018
	9026  UM9026
	e881  UM8881N
	e886  UM8886N
	e88a  UM8886N
	e891  UM8891N
1061  I.I.T.
	0001  AGX016
	0002  IIT3204/3501
1062  Maspar Computer Corp
1063  Ocean Office Automation
1064  Alcatel
	1102  Dynamite 2840 (ADSL PCI modem)
1065  Texas Microsystems
1066  PicoPower Technology
	0000  PT80C826
	0001  PT86C521 [Vesuvius v1] Host Bridge
	0002  PT86C523 [Vesuvius v3] PCI-ISA Bridge Master
	0003  PT86C524 [Nile] PCI-to-PCI Bridge
	0004  PT86C525 [Nile-II] PCI-to-PCI Bridge
	0005  National PC87550 System Controller
	8002  PT86C523 [Vesuvius v3] PCI-ISA Bridge Slave
1067  Mitsubishi Electric
	0301  AccelGraphics AccelECLIPSE
	0304  AccelGALAXY A2100 [OEM Evans & Sutherland]
	0308  Tornado 3000 [OEM Evans & Sutherland]
	1002  VG500 [VolumePro Volume Rendering Accelerator]
1068  Diversified Technology
1069  Mylex Corporation
	0001  DAC960P
	0002  DAC960PD
	0010  DAC960PG
	0020  DAC960LA
	0050  AcceleRAID 352/170/160 support Device
		1069 0050  AcceleRAID 352 support Device
		1069 0052  AcceleRAID 170 support Device
		1069 0054  AcceleRAID 160 support Device
	b166  AcceleRAID 600/500/400/Sapphire support Device
		1014 0242  iSeries 2872 DASD IOA
		1014 0266  Dual Channel PCI-X U320 SCSI Adapter
		1014 0278  Dual Channel PCI-X U320 SCSI RAID Adapter
		1014 02d3  Dual Channel PCI-X U320 SCSI Adapter
		1014 02d4  Dual Channel PCI-X U320 SCSI RAID Adapter
		1069 0200  AcceleRAID 400, Single Channel, PCI-X, U320, SCSI RAID
		1069 0202  AcceleRAID Sapphire, Dual Channel, PCI-X, U320, SCSI RAID
		1069 0204  AcceleRAID 500, Dual Channel, Low-Profile, PCI-X, U320, SCSI RAID
		1069 0206  AcceleRAID 600, Dual Channel, PCI-X, U320, SCSI RAID
	ba55  eXtremeRAID 1100 support Device
	ba56  eXtremeRAID 2000/3000 support Device
		1069 0030  eXtremeRAID 3000 support Device
		1069 0040  eXtremeRAID 2000 support Device
	ba57  eXtremeRAID 4000/5000 support Device
		1069 0072  eXtremeRAID 5000 support Device
106a  Aten Research Inc
106b  Apple Computer Inc.
	0001  Bandit PowerPC host bridge
	0002  Grand Central I/O
	0003  Control Video
	0004  PlanB Video-In
	0007  O'Hare I/O
	000c  DOS on Mac
	000e  Hydra Mac I/O
	0010  Heathrow Mac I/O
	0017  Paddington Mac I/O
	0018  UniNorth FireWire
	0019  KeyLargo USB
	001e  UniNorth Internal PCI
	001f  UniNorth PCI
	0020  UniNorth AGP
	0021  UniNorth GMAC (Sun GEM)
	0022  KeyLargo Mac I/O
	0024  UniNorth/Pangea GMAC (Sun GEM)
	0025  KeyLargo/Pangea Mac I/O
	0026  KeyLargo/Pangea USB
	0027  UniNorth/Pangea AGP
	0028  UniNorth/Pangea PCI
	0029  UniNorth/Pangea Internal PCI
	002d  UniNorth 1.5 AGP
	002e  UniNorth 1.5 PCI
	002f  UniNorth 1.5 Internal PCI
	0030  UniNorth/Pangea FireWire
	0031  UniNorth 2 FireWire
		106b 5811  iBook G4 2004
	0032  UniNorth 2 GMAC (Sun GEM)
	0033  UniNorth 2 ATA/100
	0034  UniNorth 2 AGP
	0035  UniNorth 2 PCI
	0036  UniNorth 2 Internal PCI
	003b  UniNorth/Intrepid ATA/100
	003e  KeyLargo/Intrepid Mac I/O
	003f  KeyLargo/Intrepid USB
	0040  K2 KeyLargo USB
	0041  K2 KeyLargo Mac/IO
	0042  K2 FireWire
	0043  K2 ATA/100
	0045  K2 HT-PCI Bridge
	0046  K2 HT-PCI Bridge
	0047  K2 HT-PCI Bridge
	0048  K2 HT-PCI Bridge
	0049  K2 HT-PCI Bridge
	004a  CPC945 HT Bridge
	004b  U3 AGP
	004c  K2 GMAC (Sun GEM)
	004f  Shasta Mac I/O
	0050  Shasta IDE
	0051  Shasta (Sun GEM)
	0052  Shasta Firewire
	0053  Shasta PCI Bridge
	0054  Shasta PCI Bridge
	0055  Shasta PCI Bridge
	0056  U4 PCIe
	0057  U3 HT Bridge
	0058  U3L AGP Bridge
	0059  U3H AGP Bridge
	005b  CPC945 PCIe Bridge
	0066  Intrepid2 AGP Bridge
	0067  Intrepid2 PCI Bridge
	0068  Intrepid2 PCI Bridge
	0069  Intrepid2 ATA/100
	006a  Intrepid2 Firewire
	006b  Intrepid2 GMAC (Sun GEM)
	0074  U4 HT Bridge
	1645  Tigon3 Gigabit Ethernet NIC (BCM5701)
106c  Hynix Semiconductor
	8801  Dual Pentium ISA/PCI Motherboard
	8802  PowerPC ISA/PCI Motherboard
	8803  Dual Window Graphics Accelerator
	8804  LAN Controller
	8805  100-BaseT LAN
106d  Sequent Computer Systems
106e  DFI, Inc
106f  City Gate Development Ltd
1070  Daewoo Telecom Ltd
1071  Mitac
	8160  Mitac 8060B Mobile Platform
1072  GIT Co Ltd
1073  Yamaha Corporation
	0001  3D GUI Accelerator
	0002  YGV615 [RPA3 3D-Graphics Controller]
	0003  YMF-740
	0004  YMF-724
		1073 0004  YMF724-Based PCI Audio Adapter
	0005  DS1 Audio
		1073 0005  DS-XG PCI Audio CODEC
	0006  DS1 Audio
	0008  DS1 Audio
		1073 0008  DS-XG PCI Audio CODEC
	000a  DS1L Audio
		1073 0004  DS-XG PCI Audio CODEC
		1073 000a  DS-XG PCI Audio CODEC
		8086 4d55  DS-XG PCI Audio CODEC [Intel MU440EX]
	000c  YMF-740C [DS-1L Audio Controller]
		107a 000c  DS-XG PCI Audio CODEC
	000d  YMF-724F [DS-1 Audio Controller]
		1073 000d  DS-XG PCI Audio CODEC
	0010  YMF-744B [DS-1S Audio Controller]
		1073 0006  DS-XG PCI Audio CODEC
		1073 0010  DS-XG PCI Audio CODEC
	0012  YMF-754 [DS-1E Audio Controller]
		1073 0012  DS-XG PCI Audio Codec
	0020  DS-1 Audio
	1000  SW1000XG [XG Factory]
	2000  DS2416 Digital Mixing Card
		1073 2000  DS2416 Digital Mixing Card
1074  NexGen Microsystems
	4e78  82c500/1
1075  Advanced Integrations Research
1076  Chaintech Computer Co. Ltd
1077  QLogic Corp.
	1016  ISP10160 Single Channel Ultra3 SCSI Processor
	1020  ISP1020 Fast-wide SCSI
	1022  ISP1022 Fast-wide SCSI
	1080  ISP1080 SCSI Host Adapter
	1216  ISP12160 Dual Channel Ultra3 SCSI Processor
		101e 8471  QLA12160 on AMI MegaRAID
		101e 8493  QLA12160 on AMI MegaRAID
	1240  ISP1240 SCSI Host Adapter
	1280  ISP1280 SCSI Host Adapter
	2020  ISP2020A Fast!SCSI Basic Adapter
	2100  QLA2100 64-bit Fibre Channel Adapter
		1077 0001  QLA2100 64-bit Fibre Channel Adapter
	2200  QLA2200 64-bit Fibre Channel Adapter
		1077 0002  QLA2200
	2300  QLA2300 64-bit Fibre Channel Adapter
	2312  ISP2312-based 2Gb Fibre Channel to PCI-X HBA
		103c 0131  2Gb Fibre Channel - Single port [A7538A]
		103c 12ba  2Gb Fibre Channel - Dual port [A6826A]
	2322  ISP2322-based 2Gb Fibre Channel to PCI-X HBA
	2422  ISP2422-based 4Gb Fibre Channel to PCI-X HBA
		103c 12d7  4Gb Fibre Channel [AB379A]
		103c 12dd  4Gb Fibre Channel [AB429A]
	2432  ISP2432-based 4Gb Fibre Channel to PCI Express HBA
	2532  ISP2532-based 8Gb Fibre Channel to PCI Express HBA
	3022  ISP4022-based Ethernet NIC
	3032  ISP4032-based Ethernet IPv6 NIC
	4010  ISP4010-based iSCSI TOE HBA
	4022  ISP4022-based iSCSI TOE HBA
	4032  ISP4032-based iSCSI TOE IPv6 HBA
	5432  SP232-based 4Gb Fibre Channel to PCI Express HBA
	6312  SP202-based 2Gb Fibre Channel to PCI-X HBA
	6322  SP212-based 2Gb Fibre Channel to PCI-X HBA
	7220  IBA7220 InfiniBand HCA
	7322  IBA7322 QDR InfiniBand HCA
	8000  10GbE Converged Network Adapter (TCP/IP Networking)
	8001  10GbE Converged Network Adapter (FCoE)
	8020  cLOM8214 1/10GbE Controller
		1077 0203  8200 Series Single Port 10GbE Converged Network Adapter (TCP/IP Networking)
		1077 0207  8200 Series Dual Port 10GbE Converged Network Adapter (TCP/IP Networking)
		1077 020b  3200 Series Dual Port 10Gb Intelligent Ethernet Adapter
		1077 020c  3200 Series Quad Port 1Gb Intelligent Ethernet Adapter
		1077 020f  3200 Series Single Port 10Gb Intelligent Ethernet Adapter
	8021  8200 Series 10GbE Converged Network Adapter (FCoE)
	8022  8200 Series 10GbE Converged Network Adapter (iSCSI)
	8432  ISP2432M-based 10GbE Converged Network Adapter (CNA)
1078  Cyrix Corporation
	0000  5510 [Grappa]
	0001  PCI Master
	0002  5520 [Cognac]
	0100  5530 Legacy [Kahlua]
	0101  5530 SMI [Kahlua]
	0102  5530 IDE [Kahlua]
	0103  5530 Audio [Kahlua]
	0104  5530 Video [Kahlua]
	0400  ZFMicro PCI Bridge
	0401  ZFMicro Chipset SMI
	0402  ZFMicro Chipset IDE
	0403  ZFMicro Expansion Bus
1079  I-Bus
107a  NetWorth
107b  Gateway 2000
107c  LG Electronics [Lucky Goldstar Co. Ltd]
107d  LeadTek Research Inc.
	0000  P86C850
	204d  [GeForce 7800 GTX] Winfast PX7800 GTX TDH
	2134  WinFast 3D S320 II
	2971  [GeForce FX 5900] WinFast A350 TDH MyViVo
	6609  Winfast TV 2000 XP RM
	6654  Conexant CX23883 [WinFast DTV1800 H]
	6f34  WinFast DVR3100 H
107e  Interphase Corporation
	0001  5515 ATM Adapter [Flipper]
	0002  100 VG AnyLan Controller
	0004  5526 Fibre Channel Host Adapter
	0005  x526 Fibre Channel Host Adapter
	0008  5525/5575 ATM Adapter (155 Mbit) [Atlantic]
	9003  5535-4P-BRI-ST
	9007  5535-4P-BRI-U
	9008  5535-1P-SR
	900c  5535-1P-SR-ST
	900e  5535-1P-SR-U
	9011  5535-1P-PRI
	9013  5535-2P-PRI
	9023  5536-4P-BRI-ST
	9027  5536-4P-BRI-U
	9031  5536-1P-PRI
	9033  5536-2P-PRI
107f  Data Technology Corporation
	0802  SL82C105
1080  Contaq Microsystems
	0600  82C599
	c691  Cypress CY82C691
	c693  82c693
1081  Supermac Technology
	0d47  Radius PCI to NuBUS Bridge
1082  EFA Corporation of America
1083  Forex Computer Corporation
	0001  FR710
1084  Parador
1085  Tulip Computers Int.B.V.
1086  J. Bond Computer Systems
1087  Cache Computer
1088  Microcomputer Systems (M) Son
1089  Data General Corporation
# Formerly Bit3 Computer Corp.
108a  SBS Technologies
	0001  VME Bridge Model 617
	0010  VME Bridge Model 618
	0040  dataBLIZZARD
	3000  VME Bridge Model 2706
108c  Oakleigh Systems Inc.
108d  Olicom
	0001  Token-Ring 16/4 PCI Adapter (3136/3137)
	0002  16/4 Token Ring
	0004  RapidFire 3139 Token-Ring 16/4 PCI Adapter
		108d 0004  OC-3139/3140 RapidFire Token-Ring 16/4 Adapter
	0005  GoCard 3250 Token-Ring 16/4 CardBus PC Card
	0006  OC-3530 RapidFire Token-Ring 100
	0007  RapidFire 3141 Token-Ring 16/4 PCI Fiber Adapter
		108d 0007  OC-3141 RapidFire Token-Ring 16/4 Adapter
	0008  RapidFire 3540 HSTR 100/16/4 PCI Adapter
		108d 0008  OC-3540 RapidFire HSTR 100/16/4 Adapter
	0011  OC-2315
	0012  OC-2325
	0013  OC-2183/2185
	0014  OC-2326
	0019  OC-2327/2250 10/100 Ethernet Adapter
		108d 0016  OC-2327 Rapidfire 10/100 Ethernet Adapter
		108d 0017  OC-2250 GoCard 10/100 Ethernet Adapter
	0021  OC-6151/6152 [RapidFire ATM 155]
	0022  ATM Adapter
108e  Sun Microsystems Computer Corp.
	0001  EBUS
	1000  EBUS
	1001  Happy Meal 10/100 Ethernet [hme]
	1100  RIO EBUS
		108e 1100  RIO EBUS on Blade 100 motherboard
# Correction
	1101  RIO 10/100 Ethernet [eri]
		108e 1101  RIO GEM on Blade 100 motherboard
	1102  RIO 1394
		108e 1102  RIO 1394 on Blade 100 motherboard
	1103  RIO USB
		108e 1103  RIO USB on Blade 100 motherboard
	1647  Broadcom 570x 10/100/1000 Ethernet [bge]
	1648  Broadcom 570x 10/100/1000 Ethernet [bge]
	16a7  Broadcom 570x 10/100/1000 Ethernet [bge]
	16a8  Broadcom 570x 10/100/1000 Ethernet [bge]
	2bad  GEM 10/100/1000 Ethernet [ge]
	5000  Simba Advanced PCI Bridge
		108e 5000  Netra AX1105-500
	5043  SunPCI Co-processor
	5ca0  Crypto Accelerator 6000 [mca]
	6300  Intel 21554 PCI-PCI bus bridge [db21554]
	6301  Intel 21554 PCI-PCI bus bridge [db21554]
	6302  Intel 21554 PCI-PCI bus bridge [db21554]
	6303  Intel 21554 PCI-PCI bus bridge [db21554]
	6310  Intel 21554 PCI-PCI bus bridge [db21554]
	6311  Intel 21554 PCI-PCI bus bridge [db21554]
	6312  Intel 21554 PCI-PCI bus bridge [db21554]
	6313  Intel 21554 PCI-PCI bus bridge [db21554]
	6320  Intel 21554 PCI-PCI bus bridge [db21554]
	6323  Intel 21554 PCI-PCI bus bridge [db21554]
	6330  Intel 21554 PCI-PCI bus bridge [db21554]
	6331  Intel 21554 PCI-PCI bus bridge [db21554]
	6332  Intel 21554 PCI-PCI bus bridge [db21554]
	6333  Intel 21554 PCI-PCI bus bridge [db21554]
	6340  Intel 21554 PCI-PCI bus bridge [db21554]
	6343  Intel 21554 PCI-PCI bus bridge [db21554]
	6350  Intel 21554 PCI-PCI bus bridge [db21554]
	6353  Intel 21554 PCI-PCI bus bridge [db21554]
	6722  Intel 21554 PCI-PCI bus bridge [db21554]
	676e  SunPCiIII
	7063  SunPCiII / SunPCiIIpro
	8000  Psycho PCI Bus Module
	8001  Schizo PCI Bus Module
	8002  Schizo+ PCI Bus Module
	80f0  PCIe switch [px]
	80f8  PCIe switch [px]
	9010  PCIe/PCI bridge switch [pxb_plx]
	9020  PCIe/PCI bridge switch [pxb_plx]
	9102  Davicom Fast Ethernet driver for Davicom DM9102A [dmfe]
	a000  Psycho UPA-PCI Bus Module [pcipsy]
	a001  Psycho UPA-PCI Bus Module [pcipsy]
		108e a001  Ultra IIe on Blade 100 motherboard
	a801  Schizo Fireplane-PCI bus bridge module [pcisch]
	abba  Cassini 10/100/1000
	abcd  Multithreaded 10-Gigabit Ethernet Network Controller
	c416  Sun Fire System/System Controller Interface chip [sbbc]
108f  Systemsoft
1090  Compro Computer Services, Inc.
	4610  PCI RTOM
	4620  GPIO HSD
1091  Intergraph Corporation
	0020  3D graphics processor
	0021  3D graphics processor w/Texturing
	0040  3D graphics frame buffer
	0041  3D graphics frame buffer
	0060  Proprietary bus bridge
	00e4  Powerstorm 4D50T
	0720  Motion JPEG codec
	0780  Intense3D Wildcat 3410 (MSMT496)
	07a0  Sun Expert3D-Lite Graphics Accelerator
	1091  Sun Expert3D Graphics Accelerator
1092  Diamond Multimedia Systems
	0028  Viper V770
		1092 4a00  Viper V770 32MB
	00a0  Speedstar Pro SE
	00a8  Speedstar 64
	0550  Viper V550
	08d4  Supra 2260 Modem
	094c  SupraExpress 56i Pro
	1001  Video Crunch It 1001 capture card
	1092  Viper V330
	6120  Maximum DVD
	8810  Stealth SE
	8811  Stealth 64/SE
	8880  Stealth
	8881  Stealth
	88b0  Stealth 64
	88b1  Stealth 64
	88c0  Stealth 64
	88c1  Stealth 64
	88d0  Stealth 64
	88d1  Stealth 64
	88f0  Stealth 64
	88f1  Stealth 64
	9999  DMD-I0928-1 "Monster sound" sound chip
1093  National Instruments
	0160  PCI-DIO-96
	0162  PCI-MIO-16XE-50
	1150  PCI-DIO-32HS High Speed Digital I/O Board
	1170  PCI-MIO-16XE-10
	1180  PCI-MIO-16E-1
	1190  PCI-MIO-16E-4
	1310  PCI-6602
	1330  PCI-6031E
	1350  PCI-6071E
	14e0  PCI-6110
	14f0  PCI-6111
	17d0  PCI-6503
	1870  PCI-6713
	1880  PCI-6711
	18b0  PCI-6052E
	2410  PCI-6733
	2890  PCI-6036E
	2a60  PCI-6023E
	2a70  PCI-6024E
	2a80  PCI-6025E
	2c80  PCI-6035E
	2ca0  PCI-6034E
	70a9  PCI-6528 (Digital I/O at 60V)
	70b8  PCI-6251 [M Series - High Speed Multifunction DAQ]
	7144  PXI-5124 (12-bit 200 MS/s Digitizer)
	b001  IMAQ-PCI-1408
	b011  IMAQ-PXI-1408
	b021  IMAQ-PCI-1424
	b031  IMAQ-PCI-1413
	b041  IMAQ-PCI-1407
	b051  IMAQ-PXI-1407
	b061  IMAQ-PCI-1411
	b071  IMAQ-PCI-1422
	b081  IMAQ-PXI-1422
	b091  IMAQ-PXI-1411
	c801  PCI-GPIB
	c831  PCI-GPIB bridge
1094  First International Computers [FIC]
# nee CMD Technology Inc
1095  Silicon Image, Inc.
	0240  Adaptec AAR-1210SA SATA HostRAID Controller
	0640  PCI0640
	0643  PCI0643
	0646  PCI0646
	0647  PCI0647
	0648  PCI0648
		1043 8025  CUBX motherboard
	0649  SiI 0649 Ultra ATA/100 PCI to ATA Host Controller
		0e11 005d  Integrated Ultra ATA-100 Dual Channel Controller
		0e11 007e  Integrated Ultra ATA-100 IDE RAID Controller
		101e 0649  AMI MegaRAID IDE 100 Controller
	0650  PBC0650A
	0670  USB0670
		1095 0670  USB0670
	0673  USB0673
	0680  PCI0680 Ultra ATA-133 Host Controller
		1095 0680  SiI 0680 ATA/133 Controller
		1095 3680  Winic W-680 (Silicon Image 680 based)
	3112  SiI 3112 [SATALink/SATARaid] Serial ATA Controller
		1095 3112  SiI 3112 SATALink Controller
		1095 6112  SiI 3112 SATARaid Controller
		9005 0250  SATAConnect 1205SA Host Controller
	3114  SiI 3114 [SATALink/SATARaid] Serial ATA Controller
		1095 3114  SiI 3114 SATALink Controller
		1095 6114  SiI 3114 SATARaid Controller
	3124  SiI 3124 PCI-X Serial ATA Controller
		1095 3124  SiI 3124 PCI-X Serial ATA Controller
	3132  SiI 3132 Serial ATA Raid II Controller
	3512  SiI 3512 [SATALink/SATARaid] Serial ATA Controller
		1095 3512  SiI 3512 SATALink Controller
		1095 6512  SiI 3512 SATARaid Controller
	3531  SiI 3531 [SATALink/SATARaid] Serial ATA Controller
1096  Alacron
1097  Appian Technology
1098  Quantum Designs (H.K.) Ltd
	0001  QD-8500
	0002  QD-8580
1099  Samsung Electronics Co., Ltd
109a  Packard Bell
109b  Gemlight Computer Ltd.
109c  Megachips Corporation
109d  Zida Technologies Ltd.
109e  Brooktree Corporation
	032e  Bt878 Video Capture
	0350  Bt848 Video Capture
	0351  Bt849A Video capture
	0369  Bt878 Video Capture
		1002 0001  TV-Wonder
		1002 0003  TV-Wonder/VE
	036c  Bt879(??) Video Capture
		13e9 0070  Win/TV (Video Section)
	036e  Bt878 Video Capture
		0070 13eb  WinTV Series
		0070 ff01  Viewcast Osprey 200
		0071 0101  DigiTV PCI
		107d 6606  WinFast TV 2000
		11bd 0012  PCTV pro (TV + FM stereo receiver)
		11bd 001c  PCTV Sat (DBC receiver)
		127a 0001  Bt878 Mediastream Controller NTSC
		127a 0002  Bt878 Mediastream Controller PAL BG
		127a 0003  Bt878a Mediastream Controller PAL BG
		127a 0048  Bt878/832 Mediastream Controller
		144f 3000  MagicTView CPH060 - Video
		1461 0002  TV98 Series (TV/No FM/Remote)
		1461 0003  AverMedia UltraTV PCI 350
		1461 0004  AVerTV WDM Video Capture
		1461 0761  AverTV DVB-T
		1461 0771  AverMedia AVerTV DVB-T 771
		14f1 0001  Bt878 Mediastream Controller NTSC
		14f1 0002  Bt878 Mediastream Controller PAL BG
		14f1 0003  Bt878a Mediastream Controller PAL BG
		14f1 0048  Bt878/832 Mediastream Controller
		1822 0001  VisionPlus DVB card
		1851 1850  FlyVideo'98 - Video
		1851 1851  FlyVideo II
		1852 1852  FlyVideo'98 - Video (with FM Tuner)
		18ac d500  DViCO FusionHDTV5 Lite
		270f fc00  Digitop DTT-1000
		bd11 1200  PCTV pro (TV + FM stereo receiver)
	036f  Bt879 Video Capture
		127a 0044  Bt879 Video Capture NTSC
		127a 0122  Bt879 Video Capture PAL I
		127a 0144  Bt879 Video Capture NTSC
		127a 0222  Bt879 Video Capture PAL BG
		127a 0244  Bt879a Video Capture NTSC
		127a 0322  Bt879 Video Capture NTSC
		127a 0422  Bt879 Video Capture NTSC
		127a 1122  Bt879 Video Capture PAL I
		127a 1222  Bt879 Video Capture PAL BG
		127a 1322  Bt879 Video Capture NTSC
		127a 1522  Bt879a Video Capture PAL I
		127a 1622  Bt879a Video Capture PAL BG
		127a 1722  Bt879a Video Capture NTSC
		14f1 0044  Bt879 Video Capture NTSC
		14f1 0122  Bt879 Video Capture PAL I
		14f1 0144  Bt879 Video Capture NTSC
		14f1 0222  Bt879 Video Capture PAL BG
		14f1 0244  Bt879a Video Capture NTSC
		14f1 0322  Bt879 Video Capture NTSC
		14f1 0422  Bt879 Video Capture NTSC
		14f1 1122  Bt879 Video Capture PAL I
		14f1 1222  Bt879 Video Capture PAL BG
		14f1 1322  Bt879 Video Capture NTSC
		14f1 1522  Bt879a Video Capture PAL I
		14f1 1622  Bt879a Video Capture PAL BG
		14f1 1722  Bt879a Video Capture NTSC
		1851 1850  FlyVideo'98 - Video
		1851 1851  FlyVideo II
		1852 1852  FlyVideo'98 - Video (with FM Tuner)
	0370  Bt880 Video Capture
		1851 1850  FlyVideo'98
		1851 1851  FlyVideo'98 EZ - video
		1852 1852  FlyVideo'98 (with FM Tuner)
	0878  Bt878 Audio Capture
		0070 13eb  WinTV Series
		0070 ff01  Viewcast Osprey 200
		0071 0101  DigiTV PCI
		1002 0001  TV-Wonder
		1002 0003  TV-Wonder/VE
		11bd 0012  PCTV pro (TV + FM stereo receiver, audio section)
		11bd 001c  PCTV Sat (DBC receiver)
		127a 0001  Bt878 Video Capture (Audio Section)
		127a 0002  Bt878 Video Capture (Audio Section)
		127a 0003  Bt878 Video Capture (Audio Section)
		127a 0048  Bt878 Video Capture (Audio Section)
		13e9 0070  Win/TV (Audio Section)
		144f 3000  MagicTView CPH060 - Audio
		1461 0002  Avermedia PCTV98 Audio Capture
		1461 0003  UltraTV PCI 350
		1461 0004  AVerTV WDM Audio Capture
		1461 0761  AVerTV DVB-T
		1461 0771  AverMedia AVerTV DVB-T 771
		14f1 0001  Bt878 Video Capture (Audio Section)
		14f1 0002  Bt878 Video Capture (Audio Section)
		14f1 0003  Bt878 Video Capture (Audio Section)
		14f1 0048  Bt878 Video Capture (Audio Section)
		1822 0001  VisionPlus DVB Card
		18ac d500  DViCO FusionHDTV5 Lite
		270f fc00  Digitop DTT-1000
		bd11 1200  PCTV pro (TV + FM stereo receiver, audio section)
	0879  Bt879 Audio Capture
		127a 0044  Bt879 Video Capture (Audio Section)
		127a 0122  Bt879 Video Capture (Audio Section)
		127a 0144  Bt879 Video Capture (Audio Section)
		127a 0222  Bt879 Video Capture (Audio Section)
		127a 0244  Bt879 Video Capture (Audio Section)
		127a 0322  Bt879 Video Capture (Audio Section)
		127a 0422  Bt879 Video Capture (Audio Section)
		127a 1122  Bt879 Video Capture (Audio Section)
		127a 1222  Bt879 Video Capture (Audio Section)
		127a 1322  Bt879 Video Capture (Audio Section)
		127a 1522  Bt879 Video Capture (Audio Section)
		127a 1622  Bt879 Video Capture (Audio Section)
		127a 1722  Bt879 Video Capture (Audio Section)
		14f1 0044  Bt879 Video Capture (Audio Section)
		14f1 0122  Bt879 Video Capture (Audio Section)
		14f1 0144  Bt879 Video Capture (Audio Section)
		14f1 0222  Bt879 Video Capture (Audio Section)
		14f1 0244  Bt879 Video Capture (Audio Section)
		14f1 0322  Bt879 Video Capture (Audio Section)
		14f1 0422  Bt879 Video Capture (Audio Section)
		14f1 1122  Bt879 Video Capture (Audio Section)
		14f1 1222  Bt879 Video Capture (Audio Section)
		14f1 1322  Bt879 Video Capture (Audio Section)
		14f1 1522  Bt879 Video Capture (Audio Section)
		14f1 1622  Bt879 Video Capture (Audio Section)
		14f1 1722  Bt879 Video Capture (Audio Section)
	0880  Bt880 Audio Capture
	2115  BtV 2115 Mediastream controller
	2125  BtV 2125 Mediastream controller
	2164  BtV 2164
	2165  BtV 2165
	8230  Bt8230 ATM Segment/Reassembly Ctrlr (SRC)
	8472  Bt8472
	8474  Bt8474
109f  Trigem Computer Inc.
10a0  Meidensha Corporation
10a1  Juko Electronics Ind. Co. Ltd
10a2  Quantum Corporation
10a3  Everex Systems Inc
10a4  Globe Manufacturing Sales
10a5  Smart Link Ltd.
	3052  SmartPCI562 56K Modem
	5449  SmartPCI561 modem
10a6  Informtech Industrial Ltd.
10a7  Benchmarq Microelectronics
10a8  Sierra Semiconductor
	0000  STB Horizon 64
10a9  Silicon Graphics, Inc.
	0001  Crosstalk to PCI Bridge
	0002  Linc I/O controller
	0003  IOC3 I/O controller
	0004  O2 MACE
	0005  RAD Audio
	0006  HPCEX
	0007  RPCEX
	0008  DiVO VIP
	0009  AceNIC Gigabit Ethernet
		10a9 8002  AceNIC Gigabit Ethernet
	0010  AMP Video I/O
	0011  GRIP
	0012  SGH PSHAC GSN
	0208  SSIM1 SAS Adapter
	1001  Magic Carpet
	1002  Lithium
	1003  Dual JPEG 1
	1004  Dual JPEG 2
	1005  Dual JPEG 3
	1006  Dual JPEG 4
	1007  Dual JPEG 5
	1008  Cesium
	100a  IOC4 I/O controller
	1504  SSIM1 Fibre Channel Adapter
	2001  Fibre Channel
	2002  ASDE
	4001  TIO-CE PCI Express Bridge
	4002  TIO-CE PCI Express Port
	8001  O2 1394
	8002  G-net NT
	8010  Broadcom e-net [SGI IO9/IO10 BaseIO]
	8018  Broadcom e-net [SGI A330 Server BaseIO]
10aa  ACC Microelectronics
	0000  ACCM 2188
	2051  2051 CPU bridge
	5842  2051 ISA bridge
10ab  Digicom
10ac  Honeywell IAC
10ad  Symphony Labs
	0001  W83769F
	0003  SL82C103
	0005  SL82C105
	0103  SL82c103
	0105  SL82c105
	0565  W83C553F/W83C554F
10ae  Cornerstone Technology
10af  Micro Computer Systems Inc
10b0  CardExpert Technology
10b1  Cabletron Systems Inc
10b2  Raytheon Company
10b3  Databook Inc
	3106  DB87144
	b106  DB87144
10b4  STB Systems Inc
	1b1d  Velocity 128 3D
		10b4 237e  Velocity 4400
10b5  PLX Technology, Inc.
	0001  i960 PCI bus interface
	1024  Acromag, Inc. IndustryPack Carrier Card
	1042  Brandywine / jxi2, Inc. - PMC-SyncClock32, IRIG A & B, Nasa 36
	106a  Dual OX16C952 4 port serial adapter [Megawolf Romulus/4]
	1076  VScom 800 8 port serial adaptor
	1077  VScom 400 4 port serial adaptor
	1078  VScom 210 2 port serial and 1 port parallel adaptor
	1103  VScom 200 2 port serial adaptor
	1146  VScom 010 1 port parallel adaptor
	1147  VScom 020 2 port parallel adaptor
	2540  IXXAT CAN-Interface PC-I 04/PCI
	2724  Thales PCSM Security Card
	6140  PCI6140 32-bit 33MHz PCI-to-PCI Bridge
	6150  PCI6150 32-bit 33MHz PCI-to-PCI Bridge
	6152  PCI6152 32-bit 66MHz PCI-to-PCI Bridge
	6154  PCI6154 64-bit 66MHz PCI-to-PCI Bridge
	6254  PCI6254 64-bit 66MHz PCI-to-PCI Bridge
	6466  PCI6466 64-bit 66MHz PCI-to-PCI Bridge
	6520  PCI6520 64-bit 133MHz PCI-X-to-PCI-X Bridge
	6540  PCI6540 64-bit 133MHz PCI-X-to-PCI-X Bridge
		1775 1100  CR11 Single Board Computer
		4c53 10e0  PSL09 PrPMC
	6541  PCI6540/6466 PCI-PCI bridge (non-transparent mode, primary side)
		1775 1100  CR11 Single Board Computer
		4c53 10e0  PSL09 PrPMC
	6542  PCI6540/6466 PCI-PCI bridge (non-transparent mode, secondary side)
		1775 1100  CR11 Single Board Computer
		4c53 10e0  PSL09 PrPMC
	8111  PEX 8111 PCI Express-to-PCI Bridge
	8112  PEX8112 x1 Lane PCI Express-to-PCI Bridge
	8114  PEX 8114 PCI Express-to-PCI/PCI-X Bridge
	8311  PEX8311 x1 Lane PCI Express-to-Generic Local Bus Bridge
	8505  PEX 8505 5-lane, 5-port PCI Express Switch
	8508  PEX 8508 8-lane, 5-port PCI Express Switch
	8509  PEX 8509 8-lane, 8-port PCI Express Switch
	8512  PEX 8512 12-lane, 5-port PCI Express Switch
	8516  PEX 8516  Versatile PCI Express Switch
	8517  PEX 8517 16-lane, 5-port PCI Express Switch
	8518  PEX 8518 16-lane, 5-port PCI Express Switch
	8524  PEX 8524 24-lane, 6-port PCI Express Switch
	8525  PEX 8525 24-lane, 5-port PCI Express Switch
	8532  PEX 8532  Versatile PCI Express Switch
	8533  PEX 8533 32-lane, 6-port PCI Express Switch
	8547  PEX 8547 48-lane, 3-port PCI Express Switch
	8548  PEX 8548 48-lane, 9-port PCI Express Switch
	8604  PEX 8604 4-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8606  PEX 8606 6 Lane, 6 Port PCI Express Gen 2 (5.0 GT/s) Switch
	8608  PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8609  PEX 8609 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA
	8612  PEX 8612 12-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8613  PEX 8613 12-lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8614  PEX 8614 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8615  PEX 8615 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA
	8616  PEX 8616 16-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8617  PEX 8617 16-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch with P2P
	8618  PEX 8618 16-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8619  PEX 8619 16-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA
	8624  PEX 8624 24-lane, 6-Port PCI Express Gen 2 (5.0 GT/s) Switch [ExpressLane]
	8625  PEX 8625 24-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8632  PEX 8632 32-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8636  PEX 8636 36-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8647  PEX 8647 48-Lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8648  PEX 8648 48-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8649  PEX 8649 48-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8664  PEX 8664 64-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch
	8680  PEX 8680 80-lane, 20-Port PCI Express Gen 2 (5.0 GT/s) Multi-Root Switch
	8696  PEX 8696 96-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Multi-Root Switch
	9016  PLX 9016 8-port serial controller
	9030  PCI9030 32-bit 33MHz PCI <-> IOBus Bridge
		10b5 2695  Hilscher CIF50-PB Profibus Master Board
		10b5 2862  Alpermann+Velte PCL PCI LV (3V/5V): Timecode Reader Board
		10b5 2906  Alpermann+Velte PCI TS (3V/5V): Time Synchronisation Board
		10b5 2940  Alpermann+Velte PCL PCI D (3V/5V): Timecode Reader Board
		10b5 2977  IXXAT iPC-I XC16/PCI CAN Board
		10b5 2978  SH ARC-PCIu SOHARD ARCNET card
		10b5 3025  Alpermann+Velte PCL PCI L (3V/5V): Timecode Reader Board
		10b5 3068  Alpermann+Velte PCL PCI HD (3V/5V): Timecode Reader Board
		10b5 3463  Alpermann+Velte PCL PCI D (v2) (3V/5V): Timecode Reader Board
		12fe 0111  CPCI-ASIO4 (ESD 4-port Serial Interface Board)
		1369 9c01  VX222v2
		1369 9d01  VX222-Mic
		1369 9d02  VX222-Mic
		1369 9e01  PCX924v2
		1369 9f01  PCX924-Mic
		1369 9f02  PCX924-Mic
		1369 a001  PCX22v2
		1369 a701  LCM220v2
		1369 a801  LCM200
		1397 3136  4xS0-ISDN PCI Adapter
		1397 3137  S2M-E1-ISDN PCI Adapter
		1518 0200  Kontron ThinkIO-C
		15ed 1002  MCCS 8-port Serial Hot Swap
		15ed 1003  MCCS 16-port Serial Hot Swap
	9036  9036
	9050  PCI <-> IOBus Bridge
		10b5 1067  IXXAT CAN i165
		10b5 114e  Wasco WITIO PCI168extended
		10b5 1169  Wasco OPTOIO32standard 32 digital in, 32 digital out
		10b5 1172  IK220 (Heidenhain)
		10b5 2036  SatPak GPS
		10b5 2221  Alpermann+Velte PCL PCI LV: Timecode Reader Board
		10b5 2273  SH ARC-PCI SOHARD ARCNET card
		10b5 2431  Alpermann+Velte PCL PCI D: Timecode Reader Board
		10b5 2905  Alpermann+Velte PCI TS: Time Synchronisation Board
		10b5 3196  Goramo PLX200SYN sync serial card
		10b5 9050  PCI-I04 PCI Passive PC/CAN Interface
		1369 8901  PCX11+ PCI
		1369 8f01  VX222
		1369 9401  PCX924
		1369 9501  PCX22
		1498 0362  TPMC866 8 Channel Serial Card
		1522 0001  RockForce 4 Port V.90 Data/Fax/Voice Modem
		1522 0002  RockForce 2 Port V.90 Data/Fax/Voice Modem
		1522 0003  RockForce 6 Port V.90 Data/Fax/Voice Modem
		1522 0004  RockForce 8 Port V.90 Data/Fax/Voice Modem
		1522 0010  RockForce2000 4 Port V.90 Data/Fax/Voice Modem
		1522 0020  RockForce2000 2 Port V.90 Data/Fax/Voice Modem
		15ed 1000  Macrolink MCCS 8-port Serial
		15ed 1001  Macrolink MCCS 16-port Serial
		15ed 1002  Macrolink MCCS 8-port Serial Hot Swap
		15ed 1003  Macrolink MCCS 16-port Serial Hot Swap
		5654 2036  OpenSwitch 6 Telephony card
		5654 3132  OpenSwitch 12 Telephony card
		5654 5634  OpenLine4 Telephony Card
		d531 c002  PCIntelliCAN 2xSJA1000 CAN bus
		d84d 4006  EX-4006 1P
		d84d 4008  EX-4008 1P EPP/ECP
		d84d 4014  EX-4014 2P
		d84d 4018  EX-4018 3P EPP/ECP
		d84d 4025  EX-4025 1S(16C550) RS-232
		d84d 4027  EX-4027 1S(16C650) RS-232
		d84d 4028  EX-4028 1S(16C850) RS-232
		d84d 4036  EX-4036 2S(16C650) RS-232
		d84d 4037  EX-4037 2S(16C650) RS-232
		d84d 4038  EX-4038 2S(16C850) RS-232
		d84d 4052  EX-4052 1S(16C550) RS-422/485
		d84d 4053  EX-4053 2S(16C550) RS-422/485
		d84d 4055  EX-4055 4S(16C550) RS-232
		d84d 4058  EX-4055 4S(16C650) RS-232
		d84d 4065  EX-4065 8S(16C550) RS-232
		d84d 4068  EX-4068 8S(16C650) RS-232
		d84d 4078  EX-4078 2S(16C552) RS-232+1P
	9052  PCI9052 PCI <-> IOBus Bridge
	9054  PCI9054 32-bit 33MHz PCI <-> IOBus Bridge
		10b5 2455  Wessex Techology PHIL-PCI
		10b5 2696  Innes Corp AM Radcap card
		10b5 2717  Innes Corp Auricon card
		10b5 2844  Innes Corp TVS Encoder card
		12c7 4001  Intel Dialogic DM/V960-4T1 PCI
		12d9 0002  PCI Prosody Card rev 1.5
		14b4 d100  Dektec DTA-100
		14b4 d114  Dektec DTA-120
		16df 0011  PIKA PrimeNet MM PCI
		16df 0012  PIKA PrimeNet MM cPCI 8
		16df 0013  PIKA PrimeNet MM cPCI 8 (without CAS Signaling)
		16df 0014  PIKA PrimeNet MM cPCI 4
		16df 0015  PIKA Daytona MM
		16df 0016  PIKA InLine MM
	9056  PCI9056 32-bit 66MHz PCI <-> IOBus Bridge
		10b5 2979  CellinkBlade 11 - CPCI board VoATM AAL1
		10b5 3268  IXXAT iPC-I XC16/PCIe CAN Board
		10b5 3352  Alpermann+Velte PCL PCIe HD: Timecode Reader Board
		10b5 3353  Alpermann+Velte PCL PCIe D: Timecode Reader Board
		10b5 3354  Alpermann+Velte PCL PCIe LV: Timecode Reader Board
		10b5 3355  Alpermann+Velte PCL PCIe L: Timecode Reader Board
		10b5 3415  Alpermann+Velte PCIe TS: Time Synchronisation Board
		1369 c001  LX6464ES
		1369 c201  LX1616ES
		14b4 d140  Dektec DTA-140
	9060  PCI9060 32-bit 33MHz PCI <-> IOBus Bridge
	906d  9060SD
		125c 0640  Aries 16000P
	906e  9060ES
	9080  PCI9080 32-bit; 33MHz PCI <-> IOBus Bridge
		103c 10eb  (Agilent) E2777B 83K Series Optical Communication Interface
		103c 10ec  (Agilent) E6978-66442 PCI CIC
		10b5 1123  Sectra KK631 encryption board
		10b5 9080  9080 [real subsystem ID not set]
		12d9 0002  PCI Prosody Card
		12df 4422  4422PCI ["Do-All" Telemetry Data Aquisition System]
		1369 9601  PCX822np
		1369 a102  PCX822v2
		1369 a201  PCX442
		1369 a301  LCM440v2
		1369 a401  VX822
		1369 a402  VX822v2
		1369 a901  LCM420
		1369 aa01  VX820v2
		1517 000b  ECSG-1R3ADC-PMC Clock synthesizer
	9656  PCI9656 PCI <-> IOBus Bridge
		1517 000f  ECDR-GC314-PMC Receiver
		1885 0700  Tsunami FPGA PMC with Altera Stratix S40
		1885 0701  Tsunami FPGA PMC with Altera Stratix S30
	a100  Blackmagic Design DeckLink
	bb04  B&B 3PCIOSD1A Isolated PCI Serial
	c001  CronyxOmega-PCI (8-port RS232)
10b6  Madge Networks
	0001  Smart 16/4 PCI Ringnode
	0002  Smart 16/4 PCI Ringnode Mk2
		10b6 0002  Smart 16/4 PCI Ringnode Mk2
		10b6 0006  16/4 CardBus Adapter
	0003  Smart 16/4 PCI Ringnode Mk3
		0e11 b0fd  Compaq NC4621 PCI, 4/16, WOL
		10b6 0003  Smart 16/4 PCI Ringnode Mk3
		10b6 0007  Presto PCI Plus Adapter
	0004  Smart 16/4 PCI Ringnode Mk1
	0006  16/4 Cardbus Adapter
		10b6 0006  16/4 CardBus Adapter
	0007  Presto PCI Adapter
		10b6 0007  Presto PCI
	0009  Smart 100/16/4 PCI-HS Ringnode
		10b6 0009  Smart 100/16/4 PCI-HS Ringnode
	000a  Smart 100/16/4 PCI Ringnode
		10b6 000a  Smart 100/16/4 PCI Ringnode
	000b  16/4 CardBus Adapter Mk2
		10b6 0008  16/4 CardBus Adapter Mk2
		10b6 000b  16/4 Cardbus Adapter Mk2
	000c  RapidFire 3140V2 16/4 TR Adapter
		10b6 000c  RapidFire 3140V2 16/4 TR Adapter
	1000  Collage 25/155 ATM Client Adapter
	1001  Collage 155 ATM Server Adapter
10b7  3Com Corporation
	0001  3c985 1000BaseSX (SX/TX)
	0013  AR5212 802.11abg NIC (3CRDAG675)
		10b7 2031  3CRDAG675 11a/b/g Wireless PCI Adapter
	0910  3C910-A01
	1006  MINI PCI type 3B Data Fax Modem
	1007  Mini PCI 56k Winmodem
		10b7 615b  Mini PCI 56K Modem
		10b7 615c  Mini PCI 56K Modem
	1201  3c982-TXM 10/100baseTX Dual Port A [Hydra]
	1202  3c982-TXM 10/100baseTX Dual Port B [Hydra]
	1700  3c940 10/100/1000Base-T [Marvell]
		1043 80eb  A7V600/P4P800/K8V motherboard
		10b7 0010  3C940 Gigabit LOM Ethernet Adapter
		10b7 0020  3C941 Gigabit LOM Ethernet Adapter
		147b 1407  KV8-MAX3 motherboard
	3390  3c339 TokenLink Velocity
	3590  3c359 TokenLink Velocity XL
		10b7 3590  TokenLink Velocity XL Adapter (3C359/359B)
	4500  3c450 HomePNA [Tornado]
	5055  3c555 Laptop Hurricane
	5057  3c575 Megahertz 10/100 LAN CardBus [Boomerang]
		10b7 5a57  3C575 Megahertz 10/100 LAN Cardbus PC Card
	5157  3cCFE575BT Megahertz 10/100 LAN CardBus [Cyclone]
		10b7 5b57  3C575 Megahertz 10/100 LAN Cardbus PC Card
	5257  3cCFE575CT CardBus [Cyclone]
		10b7 5c57  FE575C-3Com 10/100 LAN CardBus-Fast Ethernet
	5900  3c590 10BaseT [Vortex]
	5920  3c592 EISA 10mbps Demon/Vortex
	5950  3c595 100BaseTX [Vortex]
	5951  3c595 100BaseT4 [Vortex]
	5952  3c595 100Base-MII [Vortex]
	5970  3c597 EISA Fast Demon/Vortex
	5b57  3c595 Megahertz 10/100 LAN CardBus [Boomerang]
		10b7 5b57  3C575 Megahertz 10/100 LAN Cardbus PC Card
	6000  3CRSHPW796 [OfficeConnect Wireless CardBus]
	6001  3com 3CRWE154G72 [Office Connect Wireless LAN Adapter]
	6055  3c556 Hurricane CardBus [Cyclone]
	6056  3c556B CardBus [Tornado]
		10b7 6556  10/100 Mini PCI Ethernet Adapter
	6560  3cCFE656 CardBus [Cyclone]
		10b7 656a  3CCFEM656 10/100 LAN+56K Modem CardBus
	6561  3cCFEM656 10/100 LAN+56K Modem CardBus
		10b7 656b  3CCFEM656 10/100 LAN+56K Modem CardBus
	6562  3cCFEM656B 10/100 LAN+Winmodem CardBus [Cyclone]
		10b7 656b  3CCFEM656B 10/100 LAN+56K Modem CardBus
	6563  3cCFEM656B 10/100 LAN+56K Modem CardBus
		10b7 656b  3CCFEM656 10/100 LAN+56K Modem CardBus
	6564  3cXFEM656C 10/100 LAN+Winmodem CardBus [Tornado]
	7646  3cSOHO100-TX Hurricane
	7770  3CRWE777 PCI(PLX) Wireless Adaptor [Airconnect]
	7940  3c803 FDDILink UTP Controller
	7980  3c804 FDDILink SAS Controller
	7990  3c805 FDDILink DAS Controller
	80eb  3c940B 10/100/1000Base-T
	8811  Token ring
	9000  3c900 10BaseT [Boomerang]
	9001  3c900 10Mbps Combo [Boomerang]
	9004  3c900B-TPO Etherlink XL [Cyclone]
		10b7 9004  3C900B-TPO Etherlink XL TPO 10Mb
	9005  3c900B-Combo Etherlink XL [Cyclone]
		10b7 9005  3C900B-Combo Etherlink XL Combo
	9006  3c900B-TPC Etherlink XL [Cyclone]
	900a  3c900B-FL 10base-FL [Cyclone]
	9050  3c905 100BaseTX [Boomerang]
	9051  3c905 100BaseT4 [Boomerang]
	9054  3C905B-TX Fast Etherlink XL PCI
		10b7 9054  3C905B-TX Fast Etherlink XL PCI
	9055  3c905B 100BaseTX [Cyclone]
		1028 0080  3C905B Fast Etherlink XL 10/100
		1028 0081  3C905B Fast Etherlink XL 10/100
		1028 0082  3C905B Fast Etherlink XL 10/100
		1028 0083  3C905B Fast Etherlink XL 10/100
		1028 0084  3C905B Fast Etherlink XL 10/100
		1028 0085  3C905B Fast Etherlink XL 10/100
		1028 0086  3C905B Fast Etherlink XL 10/100
		1028 0087  3C905B Fast Etherlink XL 10/100
		1028 0088  3C905B Fast Etherlink XL 10/100
		1028 0089  3C905B Fast Etherlink XL 10/100
		1028 0090  3C905B Fast Etherlink XL 10/100
		1028 0091  3C905B Fast Etherlink XL 10/100
		1028 0092  3C905B Fast Etherlink XL 10/100
		1028 0093  3C905B Fast Etherlink XL 10/100
		1028 0094  3C905B Fast Etherlink XL 10/100
		1028 0095  3C905B Fast Etherlink XL 10/100
		1028 0096  3C905B Fast Etherlink XL 10/100
		1028 0097  3C905B Fast Etherlink XL 10/100
		1028 0098  3C905B Fast Etherlink XL 10/100
		1028 0099  3C905B Fast Etherlink XL 10/100
		10b7 9055  3C905B Fast Etherlink XL 10/100
	9056  3c905B-T4 Fast EtherLink XL [Cyclone]
	9058  3c905B Deluxe Etherlink 10/100/BNC [Cyclone]
	905a  3c905B-FX Fast Etherlink XL FX 100baseFx [Cyclone]
	9200  3c905C-TX/TX-M [Tornado]
		1028 0095  3C920 Integrated Fast Ethernet Controller
		1028 0097  3C920 Integrated Fast Ethernet Controller
		1028 00b4  OptiPlex GX110
		1028 00d8  Precision 530
		1028 00fe  Optiplex GX240
		1028 012a  3C920 Integrated Fast Ethernet Controller [Latitude C640]
		10b7 1000  3C905CX-TX/TX-M Fast Etherlink for PC Management NIC
		10b7 7000  10/100 Mini PCI Ethernet Adapter
		10f1 2466  Tiger MPX S2466 (3C920 Integrated Fast Ethernet Controller)
		144d c005  X10 Laptop
	9201  3C920B-EMB Integrated Fast Ethernet Controller [Tornado]
		1043 80ab  A7N8X Deluxe onboard 3C920B-EMB Integrated Fast Ethernet Controller
	9202  3Com 3C920B-EMB-WNM Integrated Fast Ethernet Controller
	9210  3C920B-EMB-WNM Integrated Fast Ethernet Controller
	9300  3CSOHO100B-TX 910-A01 [tulip]
	9800  3c980-TX Fast Etherlink XL Server Adapter [Cyclone]
		10b7 9800  3c980-TX Fast Etherlink XL Server Adapter
	9805  3c980-C 10/100baseTX NIC [Python-T]
		10b7 1201  EtherLink Server 10/100 Dual Port A
		10b7 1202  EtherLink Server 10/100 Dual Port B
		10b7 9805  3c980 10/100baseTX NIC [Python-T]
		10f1 2462  Thunder K7 S2462
	9900  3C990-TX [Typhoon]
	9902  3CR990-TX-95 [Typhoon 56-bit]
	9903  3CR990-TX-97 [Typhoon 168-bit]
	9904  3C990B-TX-M/3C990BSVR [Typhoon2]
		10b7 1000  3CR990B-TX-M [Typhoon2]
		10b7 2000  3CR990BSVR [Typhoon2 Server]
	9905  3CR990-FX-95/97/95 [Typhon Fiber]
		10b7 1101  3CR990-FX-95 [Typhoon Fiber 56-bit]
		10b7 1102  3CR990-FX-97 [Typhoon Fiber 168-bit]
		10b7 2101  3CR990-FX-95 Server [Typhoon Fiber 56-bit]
		10b7 2102  3CR990-FX-97 Server [Typhoon Fiber 168-bit]
	9908  3CR990SVR95 [Typhoon Server 56-bit]
	9909  3CR990SVR97 [Typhoon Server 168-bit]
	990a  3C990SVR [Typhoon Server]
	990b  3C990SVR [Typhoon Server]
10b8  Standard Microsystems Corp [SMC]
	0005  83c170 EPIC/100 Fast Ethernet Adapter
		1055 e000  LANEPIC 10/100 [EVB171Q-PCI]
		1055 e002  LANEPIC 10/100 [EVB171G-PCI]
		10b8 a011  EtherPower II 10/100
		10b8 a014  EtherPower II 10/100
		10b8 a015  EtherPower II 10/100
		10b8 a016  EtherPower II 10/100
		10b8 a017  EtherPower II 10/100
	0006  83c175 EPIC/100 Fast Ethernet Adapter
		1055 e100  LANEPIC Cardbus Fast Ethernet Adapter
		1055 e102  LANEPIC Cardbus Fast Ethernet Adapter
		1055 e300  LANEPIC Cardbus Fast Ethernet Adapter
		1055 e302  LANEPIC Cardbus Fast Ethernet Adapter
		10b8 a012  LANEPIC Cardbus Fast Ethernet Adapter
		13a2 8002  LANEPIC Cardbus Fast Ethernet Adapter
		13a2 8006  LANEPIC Cardbus Fast Ethernet Adapter
	1000  FDC 37c665
	1001  FDC 37C922
	2802  SMC2802W [EZ Connect g]
	a011  83C170QF
	b106  SMC34C90
10b9  ALi Corporation
	0101  CMI8338/C3DX PCI Audio Device
	0111  C-Media CMI8738/C3DX Audio Device (OEM)
		10b9 0111  C-Media CMI8738/C3DX Audio Device (OEM)
	0780  Multi-IO Card
	0782  Multi-IO Card
	1435  M1435
	1445  M1445
	1449  M1449
	1451  M1451
	1461  M1461
	1489  M1489
	1511  M1511 [Aladdin]
	1512  M1512 [Aladdin]
	1513  M1513 [Aladdin]
	1521  M1521 [Aladdin III]
		10b9 1521  ALI M1521 Aladdin III CPU Bridge
	1523  M1523
		10b9 1523  ALI M1523 ISA Bridge
	1531  M1531 [Aladdin IV]
	1533  M1533/M1535/M1543 PCI to ISA Bridge [Aladdin IV/V/V+]
		1014 053b  ThinkPad R40e
		10b9 1533  ALi M1533 Aladdin IV/V ISA Bridge
	1541  M1541
		10b9 1541  ALI M1541 Aladdin V/V+ AGP System Controller
	1543  M1543
	1563  M1563 HyperTransport South Bridge
		10b9 1563  ASRock 939Dual-SATA2 Motherboard
		1849 1563  ASRock 939Dual-SATA2 Motherboard
	1573  PCI to LPC Controller
	1575  M1575 South Bridge
	1621  M1621
	1631  ALI M1631 PCI North Bridge Aladdin Pro III
	1632  M1632M Northbridge+Trident
	1641  ALI M1641 PCI North Bridge Aladdin Pro IV
	1644  M1644/M1644T Northbridge+Trident
	1646  M1646 Northbridge+Trident
	1647  M1647 Northbridge [MAGiK 1 / MobileMAGiK 1]
	1651  M1651/M1651T Northbridge [Aladdin-Pro 5/5M,Aladdin-Pro 5T/5TM]
	1671  M1671 Super P4 Northbridge [AGP4X,PCI and SDR/DDR]
	1672  M1672 Northbridge [CyberALADDiN-P4]
	1681  M1681 P4 Northbridge [AGP8X,HyperTransport and SDR/DDR]
	1687  M1687 K8 Northbridge [AGP8X and HyperTransport]
	1689  M1689 K8 Northbridge [Super K8 Single Chip]
	1695  M1695 K8 Northbridge [PCI Express and HyperTransport]
	1697  M1697 HTT Host Bridge
	3141  M3141
	3143  M3143
	3145  M3145
	3147  M3147
	3149  M3149
	3151  M3151
	3307  M3307
	3309  M3309
	3323  M3325 Video/Audio Decoder
	5212  M4803
	5215  MS4803
	5217  M5217H
	5219  M5219
	5225  M5225
	5228  M5228 ALi ATA/RAID Controller
	5229  M5229 IDE
		1014 050f  ThinkPad R30
		1014 053d  ThinkPad R40e
		103c 0024  Pavilion ze4400 builtin IDE
		1043 8053  A7A266 Motherboard IDE
		1849 5229  ASRock 939Dual-SATA2 Motherboard IDE (PATA)
	5235  M5225
	5237  USB 1.1 Controller
		1014 0540  ThinkPad R40e
		103c 0024  Pavilion ze4400 builtin USB
		104d 810f  VAIO PCG-U1 USB/OHCI Revision 1.0
		10b9 5237  ASRock 939Dual-SATA2 Motherboard
		1849 5237  ASRock 939Dual-SATA2 Motherboard
	5239  USB 2.0 Controller
		10b9 5239  ASRock 939Dual-SATA2 Motherboard
		1849 5239  ASRock 939Dual-SATA2 Motherboard
	5243  M1541 PCI to AGP Controller
	5246  AGP8X Controller
	5247  PCI to AGP Controller
	5249  M5249 HTT to PCI Bridge
	524b  PCI Express Root Port
	524c  PCI Express Root Port
	524d  PCI Express Root Port
	524e  PCI Express Root Port
	5251  M5251 P1394 OHCI 1.0 Controller
	5253  M5253 P1394 OHCI 1.1 Controller
	5261  M5261 Ethernet Controller
	5263  ULi 1689,1573 integrated ethernet.
	5281  ALi M5281 Serial ATA / RAID Host Controller
	5287  ULi 5287 SATA
	5288  ULi M5288 SATA
		1043 8056  A8R-MVP Mainboard
	5289  ULi 5289 SATA
	5450  Lucent Technologies Soft Modem AMR
	5451  M5451 PCI AC-Link Controller Audio Device
		1014 0506  ThinkPad R30
		1014 053e  ThinkPad R40e
		103c 0024  Pavilion ze4400 builtin Audio
	5453  M5453 PCI AC-Link Controller Modem Device
	5455  M5455 PCI AC-Link Controller Audio Device
		10b9 5455  ASRock 939Dual-SATA2 Motherboard
		1849 0850  ASRock 939Dual-SATA2 Motherboard
	5457  M5457 AC'97 Modem Controller
		1014 0535  ThinkPad R40e
		103c 0024  Pavilion ze4400 builtin Modem Device
	5459  SmartLink SmartPCI561 56K Modem
	545a  SmartLink SmartPCI563 56K Modem
	5461  High Definition Audio/AC'97 Host Controller
	5471  M5471 Memory Stick Controller
	5473  M5473 SD-MMC Controller
	7101  M7101 Power Management Controller [PMU]
		1014 0510  ThinkPad R30
		1014 053c  ThinkPad R40e
		103c 0024  Pavilion ze4400
		1849 7101  ASRock 939Dual-SATA2 Motherboard
10ba  Mitsubishi Electric Corp.
	0301  AccelGraphics AccelECLIPSE
	0304  AccelGALAXY A2100 [OEM Evans & Sutherland]
	0308  Tornado 3000 [OEM Evans & Sutherland]
		10dd 0024  Tornado 3000
	1002  VG500 [VolumePro Volume Rendering Accelerator]
10bb  Dapha Electronics Corporation
10bc  Advanced Logic Research
10bd  Surecom Technology
	0e34  NE-34
10be  Tseng Labs International Co.
10bf  Most Inc
10c0  Boca Research Inc.
10c1  ICM Co., Ltd.
10c2  Auspex Systems Inc.
10c3  Samsung Semiconductors, Inc.
	1100  Smartether100 SC1100 LAN Adapter (i82557B)
10c4  Award Software International Inc.
10c5  Xerox Corporation
10c6  Rambus Inc.
10c7  Media Vision
10c8  Neomagic Corporation
	0001  NM2070 [MagicGraph 128]
	0002  NM2090 [MagicGraph 128V]
	0003  NM2093 [MagicGraph 128ZV]
	0004  NM2160 [MagicGraph 128XD]
		1014 00ba  MagicGraph 128XD
		1025 1007  MagicGraph 128XD
		1028 0074  MagicGraph 128XD
		1028 0075  MagicGraph 128XD
		1028 007d  MagicGraph 128XD
		1028 007e  MagicGraph 128XD
		1033 802f  MagicGraph 128XD
		104d 801b  MagicGraph 128XD
		104d 802f  MagicGraph 128XD
		104d 830b  MagicGraph 128XD
		10ba 0e00  MagicGraph 128XD
		10c8 0004  MagicGraph 128XD
		10cf 1029  MagicGraph 128XD
		10f7 8308  MagicGraph 128XD
		10f7 8309  MagicGraph 128XD
		10f7 830b  MagicGraph 128XD
		10f7 830d  MagicGraph 128XD
		10f7 8312  MagicGraph 128XD
	0005  NM2200 [MagicGraph 256AV]
		1014 00dd  ThinkPad 570
		1028 0088  Latitude CPi A
	0006  NM2360 [MagicMedia 256ZX]
		1014 0152  ThinkPad 600X
	0016  NM2380 [MagicMedia 256XL+]
		10c8 0016  MagicMedia 256XL+
	0025  NM2230 [MagicGraph 256AV+]
	0083  NM2093 [MagicGraph 128ZV+]
	8005  NM2200 [MagicMedia 256AV Audio]
		0e11 b0d1  MagicMedia 256AV Audio Device on Discovery
		0e11 b126  MagicMedia 256AV Audio Device on Durango
		1014 00dd  ThinkPad 390/i1720/i1721
		1025 1003  MagicMedia 256AV Audio Device on TravelMate 720
		1028 0088  Latitude CPi A
		1028 008f  MagicMedia 256AV Audio Device on Colorado Inspiron
		103c 0007  MagicMedia 256AV Audio Device on Voyager II
		103c 0008  MagicMedia 256AV Audio Device on Voyager III
		103c 000d  MagicMedia 256AV Audio Device on Omnibook 900
		10c8 8005  MagicMedia 256AV Audio Device on FireAnt
		110a 8005  MagicMedia 256AV Audio Device
		14c0 0004  MagicMedia 256AV Audio Device
	8006  NM2360 [MagicMedia 256ZX Audio]
	8016  NM2380 [MagicMedia 256XL+ Audio]
10c9  Dataexpert Corporation
10ca  Fujitsu Microelectr., Inc.
10cb  Omron Corporation
# nee Mentor ARC Inc
10cc  Mai Logic Incorporated
	0660  Articia S Host Bridge
	0661  Articia S PCI Bridge
10cd  Advanced System Products, Inc
	1100  ASC1100
	1200  ASC1200 [(abp940) Fast SCSI-II]
	1300  ABP940-U / ABP960-U
		10cd 1310  ASC1300 SCSI Adapter
		1195 1320  Ultra-SCSI CardBus PC Card REX CB31
	2300  ABP940-UW
	2500  ABP940-U2W
	2700  ABP3950-U3W
10ce  Radius
# nee Citicorp TTI
10cf  Fujitsu Limited.
	1414  On-board USB 1.1 companion controller
	1415  On-board USB 2.0 EHCI controller
	1422  E8410 nVidia graphics adapter
	142d  HD audio (Realtek ALC262)
	1430  82566MM Intel 1Gb copper LAN interface
	2001  mb86605
	200c  MB86613L IEEE1394 OHCI 1.0 Controller
	2019  MB86295S [CORAL P]
	201e  MB86296S [CORAL PA]
	202b  MB86297A [Carmine Graphics Controller]
10d1  FuturePlus Systems Corp.
10d2  Molex Incorporated
10d3  Jabil Circuit Inc
10d4  Hualon Microelectronics
10d5  Autologic Inc.
10d6  Cetia
10d7  BCM Advanced Research
10d8  Advanced Peripherals Labs
10d9  Macronix, Inc. [MXIC]
	0431  MX98715
	0512  MX98713
	0531  MX987x5
		1186 1200  DFE-540TX ProFAST 10/100 Adapter
	8625  MX86250
	8626  Macronix MX86251 + 3Dfx Voodoo Rush
	8888  MX86200
10da  Compaq IPG-Austin
	0508  TC4048 Token Ring 4/16
	3390  Tl3c3x9
10db  Rohm LSI Systems, Inc.
10dc  CERN/ECP/EDU
	0001  STAR/RD24 SCI-PCI (PMC)
	0002  TAR/RD24 SCI-PCI (PMC)
	0021  HIPPI destination
	0022  HIPPI source
	10dc  ATT2C15-3 FPGA
10dd  Evans & Sutherland
	0100  Lightning 1200
		10dd 0023  Lightning 1200 15+16M
10de  nVidia Corporation
	0008  NV1 [EDGE 3D]
	0009  NV1 [EDGE 3D]
	0010  NV2 [Mutara V08]
	0020  NV4 [RIVA TNT]
		1043 0200  V3400 TNT
		1048 0c18  Erazor II SGRAM
		1048 0c19  Erazor II
		1048 0c1b  Erazor II
		1048 0c1c  Erazor II
		1092 0550  Viper V550
		1092 0552  Viper V550
		1092 4804  Viper V550
		1092 4808  Viper V550
		1092 4810  Viper V550
		1092 4812  Viper V550
		1092 4815  Viper V550
		1092 4820  Viper V550 with TV out
		1092 4822  Viper V550
		1092 4904  Viper V550
		1092 4914  Viper V550
		1092 8225  Viper V550
		10b4 273d  Velocity 4400
		10b4 273e  Velocity 4400
		10b4 2740  Velocity 4400
		10de 0020  Riva TNT
		1102 1015  Graphics Blaster CT6710
		1102 1016  Graphics Blaster RIVA TNT
	0028  NV5 [RIVA TNT2/TNT2 Pro]
		1043 0200  AGP-V3800 SGRAM
		1043 0201  AGP-V3800 SDRAM
		1043 0205  PCI-V3800
		1043 4000  AGP-V3800PRO
		1048 0c21  Synergy II
		1048 0c28  Erazor III
		1048 0c29  Erazor III
		1048 0c2a  Erazor III
		1048 0c2b  Erazor III
		1048 0c31  Erazor III Pro
		1048 0c32  Erazor III Pro
		1048 0c33  Erazor III Pro
		1048 0c34  Erazor III Pro
		107d 2134  WinFast 3D S320 II + TV-Out
		1092 4804  Viper V770
		1092 4a00  Viper V770
		1092 4a02  Viper V770 Ultra
		1092 5a00  RIVA TNT2/TNT2 Pro
		1092 6a02  Viper V770 Ultra
		1092 7a02  Viper V770 Ultra
		10de 0005  RIVA TNT2 Pro
		10de 000f  Compaq NVIDIA TNT2 Pro
		1102 1020  3D Blaster RIVA TNT2
		1102 1026  3D Blaster RIVA TNT2 Digital
		14af 5810  Maxi Gamer Xentor
	0029  NV5 [RIVA TNT2 Ultra]
		1043 0200  AGP-V3800 Deluxe
		1043 0201  AGP-V3800 Ultra SDRAM
		1043 0205  PCI-V3800 Ultra
		1048 0c2e  Erazor III Ultra
		1048 0c2f  Erazor III Ultra
		1048 0c30  Erazor III Ultra
		1102 1021  3D Blaster RIVA TNT2 Ultra
		1102 1029  3D Blaster RIVA TNT2 Ultra
		1102 102f  3D Blaster RIVA TNT2 Ultra
		14af 5820  Maxi Gamer Xentor 32
	002a  NV5 [Riva TNT2]
	002b  NV5 [Riva TNT2]
	002c  NV6 [Vanta/Vanta LT]
		1043 0200  AGP-V3800 Combat SDRAM
		1043 0201  AGP-V3800 Combat
		1048 0c20  TNT2 Vanta
		1048 0c21  TNT2 Vanta
		1092 6820  Viper V730
		1102 1031  CT6938 VANTA 8MB
		1102 1034  CT6894 VANTA 16MB
		14af 5008  Maxi Gamer Phoenix 2
	002d  NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]
		1043 0200  AGP-V3800M
		1043 0201  AGP-V3800M
		1048 0c3a  Erazor III LT
		1048 0c3b  Erazor III LT
		10de 0006  RIVA TNT2 Model 64/Model 64 Pro
		10de 001e  M64 AGP4x
		1102 1023  CT6892 RIVA TNT2 Value
		1102 1024  CT6932 RIVA TNT2 Value 32Mb
		1102 102c  CT6931 RIVA TNT2 Value [Jumper]
		1462 8808  MSI-8808
		1554 1041  Pixelview RIVA TNT2 M64
		1569 002d  Palit Microsystems Daytona TNT2 M64
	002e  NV6 [Vanta]
	002f  NV6 [Vanta]
	0034  MCP04 SMBus
	0035  MCP04 IDE
	0036  MCP04 Serial ATA Controller
	0037  MCP04 Ethernet Controller
	0038  MCP04 Ethernet Controller
	003a  MCP04 AC'97 Audio Controller
	003b  MCP04 USB Controller
	003c  MCP04 USB Controller
	003d  MCP04 PCI Bridge
	003e  MCP04 Serial ATA Controller
	0040  NV40 [GeForce 6800 Ultra]
	0041  NV40 [GeForce 6800]
		1043 817b  V9999 Gamer Edition
	0042  NV40.2 [GeForce 6800 LE]
	0043  NV40.3 [GeForce 6800 XE]
	0044  NV40 [GeForce 6800 XT]
	0045  NV40 [GeForce 6800 GT]
	0046  NV45 [GeForce 6800 GT]
	0047  NV40 [GeForce 6800 GS]
		1682 2109  GeForce 6800 GS
	0048  NV40 [GeForce 6800 XT]
	0049  NV40GL
	004d  NV40GL [Quadro FX 4000]
	004e  NV40GL [Quadro FX 4000]
	0050  CK804 ISA Bridge
		1043 815a  K8N4-E or A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		1458 0c11  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 3402  NF4 AM2L Mainboard
	0051  CK804 ISA Bridge
		1028 0225  PowerEdge T105 ISA Bridge
	0052  CK804 SMBus
		1028 0225  PowerEdge T105 SMBus
		1043 815a  K8N4-E or A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		1458 0c11  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 3402  NF4 AM2L Mainboard
	0053  CK804 IDE
		1043 815a  K8N4-E or A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		1458 5002  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 3402  NF4 AM2L Mainboard
	0054  CK804 Serial ATA Controller
		1028 0225  PowerEdge T105 Serial ATA
		1043 815a  A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		1458 b003  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 5401  NF4 AM2L Mainboard
	0055  CK804 Serial ATA Controller
		1028 0225  PowerEdge T105 Serial ATA
		1043 815a  K8N4-E or A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		1458 b003  GA-K8N Ultra-9 Mainboard
		147b 1c1a  KN8-Ultra Mainboard
		1565 5401  NF4 AM2L Mainboard
	0056  CK804 Ethernet Controller
	0057  CK804 Ethernet Controller
		1043 8141  K8N4-E or A8N-E Mainboard
		10de cb84  NF4 Lanparty
		10f1 2865  Tomcat K8E (S2865)
		1458 e000  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 2501  NF4 AM2L Mainboard
	0058  CK804 AC'97 Modem
	0059  CK804 AC'97 Audio Controller
		1043 812a  K8N4-E or A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		147b 1c1a  KN8-Ultra Mainboard
		1565 8211  NF4 AM2L Mainboard
	005a  CK804 USB Controller
		1028 0225  PowerEdge T105 onboard USB
		1043 815a  K8N4-E or A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		1458 5004  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 3402  NF4 AM2L Mainboard
	005b  CK804 USB Controller
		1028 0225  PowerEdge T105 onboard USB
		1043 815a  K8N4-E or A8N-E Mainboard
		10f1 2865  Tomcat K8E (S2865)
		1458 5004  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 3402  NF4 AM2L Mainboard
	005c  CK804 PCI Bridge
	005d  CK804 PCIE Bridge
	005e  CK804 Memory Controller
		1028 0225  PowerEdge T105 Memory Controller
		1043 815a  A8N-E Mainboard
		10de 005e  ECS Elitegroup NFORCE3-A939 motherboard.
		10f1 2865  Tomcat K8E (S2865)
		10f1 2891  Thunder K8SRE Mainboard
		1458 5000  GA-K8N Ultra-9 Mainboard
		1462 7100  MSI K8N Diamond
		147b 1c1a  KN8-Ultra Mainboard
		1565 3402  NF4 AM2L Mainboard
	005f  CK804 Memory Controller
	0060  nForce2 ISA Bridge
		1043 80ad  A7N8X Mainboard
		147b 1c02  NF7-S/NF7 (nVidia-nForce2) 2.X
		a0a0 03ba  UK79G-1394 motherboard
	0064  nForce2 SMBus (MCP)
		147b 1c02  NF7-S/NF7 (nVidia-nForce2) 2.X
		a0a0 03bb  UK79G-1394 motherboard
	0065  nForce2 IDE
		10de 0c11  nForce 2 EIDE Controller
		a0a0 03b2  UK79G-1394 motherboard
	0066  nForce2 Ethernet Controller
		1043 80a7  A7N8X Mainboard onboard nForce2 Ethernet
		10de 0c11  nForce MCP-T Networking Adapter
		a0a0 03b3  UK79G-1394 motherboard
	0067  nForce2 USB Controller
		1043 0c11  A7N8X Mainboard
		a0a0 03b4  UK79G-1394 motherboard
	0068  nForce2 USB Controller
		1043 0c11  A7N8X Mainboard
		a0a0 03b4  UK79G-1394 motherboard
	006a  nForce2 AC97 Audio Controler (MCP)
		1043 8095  nForce2 AC97 Audio Controler (MCP)
		a0a0 0304  UK79G-1394 motherboard
	006b  nForce Audio Processing Unit
		10de 006b  nForce2 MCP Audio Processing Unit
		a0a0 0304  UK79G-1394 motherboard
	006c  nForce2 External PCI Bridge
	006d  nForce2 PCI Bridge
	006e  nForce2 FireWire (IEEE 1394) Controller
		a0a0 0306  UK79G-1394 motherboard
	0080  MCP2A ISA bridge
		147b 1c09  NV7 Motherboard
	0084  MCP2A SMBus
		147b 1c09  NV7 Motherboard
	0085  MCP2A IDE
		147b 1c09  NV7 Motherboard
	0086  MCP2A Ethernet Controller
	0087  MCP2A USB Controller
		147b 1c09  NV7 Motherboard
	0088  MCP2A USB Controller
		147b 1c09  NV7 Motherboard
	008a  MCP2S AC'97 Audio Controller
		147b 1c09  NV7 Motherboard
	008b  MCP2A PCI Bridge
	008c  MCP2A Ethernet Controller
	008e  nForce2 Serial ATA Controller
	0090  G70 [GeForce 7800 GTX]
	0091  G70 [GeForce 7800 GTX]
	0092  G70 [GeForce 7800 GT]
	0093  G70 [GeForce 7800 GS]
	0095  G70 [GeForce 7800 SLI]
	0098  G70 [GeForce Go 7800]
	0099  G70 [GeForce Go 7800 GTX]
	009d  G70GL [Quadro FX 4500]
	00a0  NV5 [Aladdin TNT2]
		14af 5810  Maxi Gamer Xentor
	00c0  NV41 [GeForce 6800 GS]
	00c1  NV41.1 [GeForce 6800]
	00c2  NV41.2 [GeForce 6800 LE]
	00c3  NV42 [GeForce 6800 XT]
	00c8  NV41.8 [GeForce Go 6800]
	00c9  NV41.9 [GeForce Go 6800 Ultra]
	00cc  NV41 [Quadro FX Go1400]
	00cd  NV41 [Quadro FX 3450/4000 SDI]
		10de 029b  wx4300 Workstation
	00ce  NV41GL [Quadro FX 1400]
	00d0  nForce3 LPC Bridge
	00d1  nForce3 Host Bridge
	00d2  nForce3 AGP Bridge
	00d3  CK804 Memory Controller
	00d4  nForce3 SMBus
	00d5  nForce3 IDE
	00d6  nForce3 Ethernet
	00d7  nForce3 USB 1.1
	00d8  nForce3 USB 2.0
	00d9  nForce3 Audio
	00da  nForce3 Audio
	00dd  nForce3 PCI Bridge
	00df  CK8S Ethernet Controller
		1043 80a7  K8N-E
		105b 0c43  Winfast NF3250K8AA
		147b 1c0b  NF8 Mainboard
	00e0  nForce3 250Gb LPC Bridge
		1043 813f  K8N-E
		10de 0c11  Winfast NF3250K8AA
		1462 7030  K8N Neo-FSR v2.0
		147b 1c0b  NF8 Mainboard
		1849 00e0  Motherboard (one of many)
	00e1  nForce3 250Gb Host Bridge
		1043 813f  K8N-E
		1462 7030  K8N Neo-FSR v2.0
		147b 1c0b  NF8 Mainboard
		1849 00e1  Motherboard (one of many)
	00e2  nForce3 250Gb AGP Host to PCI Bridge
	00e3  nForce3 Serial ATA Controller
		1043 813f  K8N-E
		105b 0c43  Winfast NF3250K8AA
		147b 1c0b  NF8 Mainboard
		1849 00e3  Motherboard (one of many)
	00e4  nForce 250Gb PCI System Management
		1043 813f  K8N-E
		105b 0c43  Winfast NF3250K8AA
		1462 7030  K8N Neo-FSR v2.0
		147b 1c0b  NF8 Mainboard
		1849 00e4  Motherboard (one of many)
	00e5  CK8S Parallel ATA Controller (v2.5)
		1043 813f  K8N-E
		105b 0c43  Winfast NF3250K8AA
		1462 7030  K8N Neo-FSR v2.0
		147b 1c0b  NF8 Mainboard
		1849 00e5  Motherboard (one of many)
		f849 00e5  Motherboard (one of many)
	00e6  CK8S Ethernet Controller
	00e7  CK8S USB Controller
		1043 813f  K8N-E
		105b 0c43  Winfast NF3250K8AA
		1462 7030  K8N Neo-FSR v2.0
		147b 1c0b  NF8 Mainboard
		1849 00e7  Motherboard (one of many)
	00e8  nForce3 EHCI USB 2.0 Controller
		1043 813f  K8N-E
		105b 0c43  Winfast NF3250K8AA
		1462 7030  K8N Neo-FSR v2.0
		147b 1c0b  NF8 Mainboard
		1849 00e8  Motherboard (one of many)
	00ea  nForce3 250Gb AC'97 Audio Controller
		1043 819d  K8N-E
		105b 0c43  Winfast NF3250K8AA
		1462 b010  K8N Neo-FSR v2.0
		147b 1c0b  NF8 Mainboard
	00ed  nForce3 250Gb PCI-to-PCI Bridge
	00ee  nForce3 Serial ATA Controller 2
	00f0  NV40 [GeForce 6800 Ultra]
	00f1  NV43 [GeForce 6600 GT]
		1043 81a6  N6600GT TD 128M AGP
		1043 81c6  N6600GT TD 128M AGP
		1458 3150  GV-N66T128VP
		1554 1191  PixelView PV-N43UA (128KD)
		1682 2119  GeForce 6600 GT AGP 128MB DDR3 DUAL DVI TV
	00f2  NV43 [GeForce 6600]
		1554 1194  PixelView PV-N43AT (256KD)
		1682 211c  GeForce 6600 256MB DDR DUAL DVI TV
	00f3  NV43 [GeForce 6200]
	00f4  NV43 [GeForce 6600 LE]
	00f5  G70 [GeForce 7800 GS]
	00f6  NV43 [GeForce 6800 GS]
		1682 217e  XFX GeForce 6800 XTreme 256MB DDR3 AGP
	00f8  NV45GL [Quadro FX 3400/4400]
	00f9  NV45 [GeForce 6800 GTO]
		10de 00f9  NV40 [GeForce 6800 GT]
		1682 2120  GEFORCE 6800 GT PCI-E
	00fa  NV36 [GeForce PCX 5750]
	00fb  NV35 [GeForce PCX 5900]
	00fc  NV37GL [Quadro FX 330/GeForce PCX 5300]
	00fd  NV37GL [Quadro PCI-E Series]
	00fe  NV38GL [Quadro FX 1300]
	00ff  NV18 [GeForce PCX 4300]
	0100  NV10 [GeForce 256 SDR]
		1043 0200  AGP-V6600 SGRAM
		1043 0201  AGP-V6600 SDRAM
		1043 4008  AGP-V6600 SGRAM
		1043 4009  AGP-V6600 SDRAM
		1048 0c41  Erazor X
		1048 0c43  ERAZOR X PCI
		1048 0c48  Synergy Force
		1102 102d  CT6941 GeForce 256
		14af 5022  3D Prophet SE
	0101  NV10DDR [GeForce 256 DDR]
		1043 0202  AGP-V6800 DDR
		1043 400a  AGP-V6800 DDR SGRAM
		1043 400b  AGP-V6800 DDR SDRAM
		1048 0c42  Erazor X
		107d 2822  WinFast GeForce 256
		1102 102e  CT6971 GeForce 256 DDR
		14af 5021  3D Prophet DDR-DVI
	0103  NV10GL [Quadro]
		1048 0c40  GLoria II-64
		1048 0c44  GLoria II
		1048 0c45  GLoria II
		1048 0c4a  GLoria II-64 Pro
		1048 0c4b  GLoria II-64 Pro DVII
	0110  NV11 [GeForce2 MX/MX 400]
		1043 4015  AGP-V7100 Pro
		1043 4021  V7100 Deluxe Combo
		1043 4031  V7100 Pro with TV output
		1048 0c60  Gladiac MX
		1048 0c61  Gladiac 511PCI
		1048 0c63  Gladiac 511TV-OUT 32MB
		1048 0c64  Gladiac 511TV-OUT 64MB
		1048 0c65  Gladiac 511TWIN
		1048 0c66  Gladiac 311
		10de 0091  Dell OEM GeForce 2 MX 400
		10de 00a1  Apple OEM GeForce2 MX
		1462 8817  MSI GeForce2 MX400 Pro32S [MS-8817]
		14af 7102  3D Prophet II MX
		14af 7103  3D Prophet II MX Dual-Display
		1545 0023  Xtasy Rev. B2
	0111  NV11DDR [GeForce2 MX200]
	0112  NV11 [GeForce2 Go]
	0113  NV11GL [Quadro2 MXR/EX/Go]
	0140  NV43 [GeForce 6600 GT]
	0141  NV43 [GeForce 6600]
		1043 81b0  EN6600 Silencer
		1458 3124  GV-NX66128DP Turbo Force Edition
	0142  NV43 [GeForce 6600 LE]
	0143  NV43 [GeForce 6600 VE]
	0144  NV43 [GeForce Go 6600]
	0145  NV43 [GeForce 6610 XL]
	0146  NV43 [Geforce Go 6600TE/6200TE]
	0147  NV43 [GeForce 6700 XL]
	0148  NV43 [GeForce Go 6600]
	0149  NV43 [GeForce Go 6600 GT]
	014a  NV43 [Quadro NVS 440]
	014c  NV43 [Quadro FX 540 MXM]
	014d  NV43GL [Quadro FX 550]
	014e  NV43GL [Quadro FX 540]
	014f  NV43 [GeForce 6200]
	0150  NV15 [GeForce2 GTS/Pro]
		1043 4016  V7700 AGP Video Card
		1048 0c50  Gladiac
		1048 0c52  Gladiac-64
		107d 2840  WinFast GeForce2 GTS with TV output
		107d 2842  WinFast GeForce 2 Pro
		10de 002e  GeForce2 GTS
		1462 8831  Creative GeForce2 Pro
	0151  NV15DDR [GeForce2 Ti]
		1043 405f  V7700Ti
		1462 5506  Creative 3D Blaster Geforce2 Titanium
	0152  NV15BR [GeForce2 Ultra, Bladerunner]
		1048 0c56  GLADIAC Ultra
	0153  NV15GL [Quadro2 Pro]
	0160  NV44 [GeForce 6500]
	0161  NV44 [GeForce 6200 TurboCache(TM)]
	0162  NV44 [GeForce 6200SE TurboCache (TM)]
	0163  NV44 [GeForce 6200 LE]
	0164  NV44 [GeForce Go 6200]
	0165  NV44 [Quadro NVS 285]
	0166  NV43 [GeForce Go 6400]
	0167  NV43 [GeForce Go 6200/6400]
	0168  NV43 [GeForce Go 6200/6400]
	0169  NV44 [GeForce 6250]
	016a  NV44 [GeForce 7100 GS]
	0170  NV17 [GeForce4 MX 460]
	0171  NV17 [GeForce4 MX 440]
		10b0 0002  Gainward Pro/600 TV
		10de 0008  Apple OEM GeForce4 MX 440
		1462 8661  G4MX440-VTP
		1462 8730  MX440SES-T (MS-8873)
		1462 8852  GeForce4 MX440 PCI
		147b 8f00  Abit Siluro GeForce4MX440
	0172  NV17 [GeForce4 MX 420]
	0173  NV17 [GeForce4 MX 440-SE]
	0174  NV17 [GeForce4 440 Go]
	0175  NV17 [GeForce4 420 Go]
	0176  NV17 [GeForce4 420 Go 32M]
		103c 08b0  tc1100 tablet
		144d c005  X10 Laptop
		4c53 1090  Cx9 / Vx9 mainboard
	0177  NV17 [GeForce4 460 Go]
	0178  NV17GL [Quadro4 550 XGL]
	0179  NV17 [GeForce4 440 Go 64M]
		10de 0179  GeForce4 MX (Mac)
	017a  NV17GL [Quadro NVS]
	017b  NV17GL [Quadro4 550 XGL]
	017c  NV17GL [Quadro4 500 GoGL]
	017d  NV17 [GeForce4 410 Go 16M]
	0181  NV18 [GeForce4 MX 440 AGP 8x]
		1043 8063  GeForce4 MX 440 AGP 8X
		1043 806f  V9180 Magic
		1462 8880  MS-StarForce GeForce4 MX 440 with AGP8X
		1462 8900  MS-8890 GeForce 4 MX440 AGP8X
		1462 9350  MSI Geforce4 MX T8X with AGP8X
		147b 8f0d  Siluro GF4 MX-8X
		1554 1111  PixelView MVGA-NVG18A
	0182  NV18 [GeForce4 MX 440SE AGP 8x]
	0183  NV18 [GeForce4 MX 420 AGP 8x]
	0184  NV18 [GeForce4 MX]
	0185  NV18 [GeForce4 MX 4000]
	0186  NV18M [GeForce4 448 Go]
	0187  NV18M [GeForce4 488 Go]
	0188  NV18GL [Quadro4 580 XGL]
	0189  NV18 [GeForce4 MX with AGP8X (Mac)]
	018a  NV18GL [Quadro NVS 280 SD]
	018b  NV18GL [Quadro4 380 XGL]
	018c  NV18GL [Quadro NVS 50 PCI]
	018d  NV18M [GeForce4 448 Go]
	0191  G80 [GeForce 8800 GTX]
	0193  G80 [GeForce 8800 GTS]
	0194  G80 [GeForce 8800 Ultra]
# Found in GPU server Tesla D870 and S870
	0197  G80 [Tesla C870]
	019d  G80 [Quadro FX 5600]
	019e  G80 [Quadro FX 4600]
	01a0  NVCrush11 [GeForce2 MX Integrated Graphics]
	01a4  nForce CPU bridge
	01ab  nForce 420 Memory Controller (DDR)
	01ac  nForce 220/420 Memory Controller
	01ad  nForce 220/420 Memory Controller
	01b0  nForce Audio Processing Unit
	01b1  nForce AC'97 Audio Controller
	01b2  nForce ISA Bridge
	01b4  nForce PCI System Management
	01b7  nForce AGP to PCI Bridge
	01b8  nForce PCI-to-PCI bridge
	01bc  nForce IDE
	01c1  nForce AC'97 Modem Controller
	01c2  nForce USB Controller
	01c3  nForce Ethernet Controller
	01d0  G72 [GeForce 7350 LE]
	01d1  G72 [GeForce 7300 LE]
		1462 0345  7300LE PCI Express Graphics Adapter
	01d2  G72 [GeForce 7550 LE]
	01d3  G72 [GeForce 7300 SE/7200 GS]
	01d6  G72M [GeForce Go 7200]
	01d7  G72M [Quadro NVS 110M/GeForce Go 7300]
	01d8  G72M [GeForce Go 7400]
		1028 01d7  XPS M1210
	01d9  G72M [GeForce Go 7450]
	01da  G72M [Quadro NVS 110M]
	01db  G72M [Quadro NVS 120M]
	01dc  G72GL [Quadro FX 350M]
	01dd  G72 [GeForce 7500 LE]
	01de  G72GL [Quadro FX 350]
		10de 01dc  Quadro  FX Go350M
	01df  G71 [GeForce 7300 GS]
	01e0  nForce2 IGP2
		147b 1c09  NV7 Motherboard
	01e8  nForce2 AGP
	01ea  nForce2 Memory Controller 0
		a0a0 03b9  UK79G-1394 motherboard
	01eb  nForce2 Memory Controller 1
		a0a0 03b9  UK79G-1394 motherboard
	01ec  nForce2 Memory Controller 2
		a0a0 03b9  UK79G-1394 motherboard
	01ed  nForce2 Memory Controller 3
		a0a0 03b9  UK79G-1394 motherboard
	01ee  nForce2 Memory Controller 4
		10de 01ee  MSI Delta-L nForce2 memory controller
		a0a0 03b9  UK79G-1394 motherboard
	01ef  nForce2 Memory Controller 5
		a0a0 03b9  UK79G-1394 motherboard
	01f0  NV18 [GeForce4 MX - nForce GPU]
		a0a0 03b5  UK79G-1394 motherboard
	0200  NV20 [GeForce3]
		1043 402f  AGP-V8200 DDR
		1048 0c70  GLADIAC 920
	0201  NV20 [GeForce3 Ti 200]
	0202  NV20 [GeForce3 Ti 500]
		1043 405b  V8200 T5
		1545 002f  Xtasy 6964
	0203  NV20DCC [Quadro DCC]
	0211  NV48 [GeForce 6800]
	0212  NV48 [GeForce 6800 LE]
	0215  NV48 [GeForce 6800 GT]
	0218  NV48 [GeForce 6800 XT]
	0221  NV44A [GeForce 6200]
		3842 a341  256A8N341DX
	0222  NV44 [GeForce 6200 A-LE]
	0240  C51PV [GeForce 6150]
		1043 81cd  A8N-VM CSM
		1462 7207  K8NGM2 series
	0241  C51 [GeForce 6150 LE]
	0242  C51G [GeForce 6100]
		105b 0cad  Winfast 6100K8MB
	0243  C51 PCI Express Bridge
	0244  C51 [Geforce Go 6150]
		103c 30b5  Presario V3242AU
		103c 30b7  Presario V6133CL
		10de 0244  GeForce Go 6150
	0245  C51 [Quadro NVS 210S/GeForce 6150LE]
	0246  C51 PCI Express Bridge
	0247  C51 [GeForce Go 6100]
		1043 1382  MCP51 PCI-X GeForce Go 6100
	0248  C51 PCI Express Bridge
	0249  C51 PCI Express Bridge
	024a  C51 PCI Express Bridge
	024b  C51 PCI Express Bridge
	024c  C51 PCI Express Bridge
	024d  C51 PCI Express Bridge
	024e  C51 PCI Express Bridge
	024f  C51 PCI Express Bridge
	0250  NV25 [GeForce4 Ti 4600]
	0251  NV25 [GeForce4 Ti 4400]
		1043 8023  v8440 GeForce 4 Ti4400
		10de 0251  PNY GeForce4 Ti 4400
		1462 8710  PNY GeForce4 Ti 4400
	0252  NV25 [GeForce4 Ti]
	0253  NV25 [GeForce4 Ti 4200]
		107d 2896  WinFast A250 LE TD (Dual VGA/TV-out/DVI)
		147b 8f09  Siluro (Dual VGA/TV-out/DVI)
	0258  NV25GL [Quadro4 900 XGL]
	0259  NV25GL [Quadro4 750 XGL]
	025b  NV25GL [Quadro4 700 XGL]
	0260  MCP51 LPC Bridge
		103c 30b7  Presario V6133CL
		1043 81bc  A8N-VM CSM Mainboard
		1458 5001  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	0261  MCP51 LPC Bridge
		105b 0cad  Winfast 6100K8MB
	0262  MCP51 LPC Bridge
	0263  MCP51 LPC Bridge
	0264  MCP51 SMBus
		103c 30b7  Presario V6133CL
		1043 81bc  A8N-VM CSM Mainboard
		105b 0cad  Winfast 6100K8MB
		1462 7207  K8NGM2 series
	0265  MCP51 IDE
		103c 30b7  Presario V6133CL
		1043 81bc  A8N-VM CSM Mainboard
		1462 7207  K8NGM2 series
# Foxconn has used a wrong vendor ID for this one
		f05b 0cad  Winfast 6100K8MB
	0266  MCP51 Serial ATA Controller
		103c 30b7  Presario V6133CL
		1043 81bc  A8N-VM CSM Mainboard
		1462 7207  K8NGM2 series
	0267  MCP51 Serial ATA Controller
		1043 81bc  A8N-VM CSM Mainboard
		1462 7207  K8NGM2 series
	0268  MCP51 Ethernet Controller
	0269  MCP51 Ethernet Controller
		103c 30b7  Presario V6133CL
		1043 8141  A8N-VM CSM Mainboard
		1462 7207  K8NGM2 series
	026a  MCP51 MCI
	026b  MCP51 AC97 Audio Controller
		105b 0cad  Winfast 6100K8MB
	026c  MCP51 High Definition Audio
		103c 30b5  Presario V3242AU
		103c 30b7  Presario V6133CL
		10de cb84  ASUSTeK Computer Inc. A8N-VM CSM Mainboard
		1462 7207  K8NGM2 series
	026d  MCP51 USB Controller
		103c 30b7  Presario V6133CL
		1043 81bc  A8N-VM CSM Mainboard
		105b 0cad  Winfast 6100K8MB
		1462 7207  K8NGM2 series
	026e  MCP51 USB Controller
		103c 30b7  Presario V6133CL
		1043 81bc  A8N-VM CSM Mainboard
		105b 0cad  Winfast 6100K8MB
		1462 7207  K8NGM2 series
	026f  MCP51 PCI Bridge
		103c 30b7  Presario V6133CL
	0270  MCP51 Host Bridge
		103c 30b7  Presario V6133CL
		1043 81bc  A8N-VM CSM Mainboard
		105b 0cad  Winfast 6100K8MB
		1458 5001  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	0271  MCP51 PMU
		103c 30b5  Presario V3242AU
		103c 30b7  Presario V6133CL
	0272  MCP51 Memory Controller 0
		105b 0cad  Winfast 6100K8MB
	027e  C51 Memory Controller 2
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1458 5000  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	027f  C51 Memory Controller 3
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1458 5000  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	0280  NV28 [GeForce4 Ti 4800]
	0281  NV28 [GeForce4 Ti 4200 AGP 8x]
	0282  NV28 [GeForce4 Ti 4800 SE]
	0286  NV28 [GeForce4 Ti 4200 Go AGP 8x]
	0288  NV28GL [Quadro4 980 XGL]
	0289  NV28GL [Quadro4 780 XGL]
	028c  NV28GLM [Quadro4 Go700]
	0290  G71 [GeForce 7900 GTX]
	0291  G71 [GeForce 7900 GT/GTO]
		10de 042b  NX7900GTO-T2D512E [7900 GTO]
	0292  G71 [GeForce 7900 GS]
	0293  G71 [GeForce 7900 GX2]
	0294  G71 [GeForce 7950 GX2]
	0295  G71 [GeForce 7950 GT]
		1043 8225  GeForce 7950 GT
		107d 2a68  WinFast PX7950GT TDH
		1462 0663  NX7950GT-VT2D512EZ-HD
	0297  G71 [GeForce Go 7950 GTX]
	0298  G71 [GeForce Go 7900 GS]
	0299  G71 [GeForce Go 7900 GTX]
	029a  G71 [Quadro FX 2500M]
	029b  G71 [Quadro FX 1500M]
	029c  G71 [Quadro FX 5500]
	029d  G71GL [Quadro FX 3500]
	029e  G71 [Quadro FX 1500]
	029f  G70 [Quadro FX 4500 X2]
# Xbox Graphics Processing Unit (Integrated). GeForce3 derivative (NV20 < NV2A < NV25).
	02a0  NV2A [XGPU]
	02a5  MCPX CPU Bridge
	02a6  MCPX Memory Controller
	02e0  G73 [GeForce 7600 GT]
		02e0 2249  GF 7600GT 560M 256MB DDR3 DUAL DVI TV
	02e1  G73 [GeForce 7600 GS]
		1682 222b  PV-T73K-UAL3 (256MB)
		1682 2247  GF 7600GS 512MB DDR2
	02e2  G73 [GeForce 7300 GT]
	02e3  G71 [GeForce 7900 GS]
	02e4  G71 [GeForce 7950 GT]
		1682 2271  PV-T71A-YDF7 (512MB)
	02f0  C51 Host Bridge
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1462 7207  K8NGM2 series
	02f1  C51 Host Bridge
		1458 5000  GA-M55plus-S3G
	02f2  C51 Host Bridge
	02f3  C51 Host Bridge
	02f4  C51 Host Bridge
	02f5  C51 Host Bridge
	02f6  C51 Host Bridge
	02f7  C51 Host Bridge
	02f8  C51 Memory Controller 5
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1458 5000  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	02f9  C51 Memory Controller 4
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1458 5000  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	02fa  C51 Memory Controller 0
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1458 5000  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	02fb  C51 PCI Express Bridge
	02fc  C51 PCI Express Bridge
		103c 30b7  Presario V6133CL
	02fd  C51 PCI Express Bridge
		103c 30b7  Presario V6133CL
	02fe  C51 Memory Controller 1
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1458 5000  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	02ff  C51 Host Bridge
		103c 30b7  Presario V6133CL
		1043 81cd  A8N-VM CSM Mainboard
		1458 5000  GA-M55plus-S3G
		1462 7207  K8NGM2 series
	0300  NV30 [GeForce FX]
	0301  NV30 [GeForce FX 5800 Ultra]
	0302  NV30 [GeForce FX 5800]
	0308  NV30GL [Quadro FX 2000]
	0309  NV30GL [Quadro FX 1000]
	0311  NV31 [GeForce FX 5600 Ultra]
	0312  NV31 [GeForce FX 5600]
	0313  NV31
	0314  NV31 [GeForce FX 5600XT]
		1043 814a  V9560XT/TD
	0316  NV31M
	0317  NV31M Pro
	031a  NV31M [GeForce FX Go5600]
	031b  NV31M [GeForce FX Go5650]
	031c  NV31 [Quadro FX Go700]
	031d  NV31GLM
	031e  NV31GLM Pro
	031f  NV31GLM Pro
	0320  NV34 [GeForce FX 5200]
	0321  NV34 [GeForce FX 5200 Ultra]
	0322  NV34 [GeForce FX 5200]
		1043 02fb  V9250 Magic
		1043 8180  V9520-X/TD/128M
		1462 9110  MS-8911 (FX5200-TD128)
		1462 9171  MS-8917 (FX5200-T128)
		1462 9360  MS-8936 (FX5200-T128)
	0323  NV34 [GeForce FX 5200LE]
	0324  NV34M [GeForce FX Go5200 64M]
		1028 0196  Inspiron 5160
		103c 006a  Pavillon ZD7000 laptop
		1071 8160  MIM2000
	0325  NV34M [GeForce FX Go5250]
	0326  NV34 [GeForce FX 5500]
		1458 310d  GeForce FX 5500 128 MB
		1682 2034  GeForce 5500 256 MB
	0327  NV34 [GeForce FX 5100]
	0328  NV34M [GeForce FX Go5200 32M/64M]
	0329  NV34M [GeForce FX Go5200]
		10de 0010  Powerbook G4
	032a  NV34GL [Quadro NVS 280 PCI]
	032b  NV34GL [Quadro FX 500/600 PCI]
	032c  NV34GLM [GeForce FX Go 5300]
	032d  NV34 [GeForce FX Go5100]
	032f  NV34GL
	0330  NV35 [GeForce FX 5900 Ultra]
		1043 8137  V9950 Ultra / 256 MB
	0331  NV35 [GeForce FX 5900]
		1043 8145  V9950GE
	0332  NV35 [GeForce FX 5900XT]
	0333  NV38 [GeForce FX 5950 Ultra]
	0334  NV35 [GeForce FX 5900ZT]
		1462 9373  FX5900ZT-VTD128 (MS-8937)
	0338  NV35GL [Quadro FX 3000]
	033f  NV35GL [Quadro FX 700]
	0341  NV36.1 [GeForce FX 5700 Ultra]
		1462 9380  MS-8938 (FX5700U-TD128)
	0342  NV36.2 [GeForce FX 5700]
	0343  NV36 [GeForce FX 5700LE]
	0344  NV36.4 [GeForce FX 5700VE]
	0345  NV36.5
	0347  NV36 [GeForce FX Go5700]
		103c 006a  NX9500
	0348  NV36 [GeForce FX Go5700]
	0349  NV36M Pro
	034b  NV36MAP
	034c  NV36 [Quadro FX Go1000]
	034e  NV36GL [Quadro FX 1100]
	034f  NV36GL
	0360  MCP55 LPC Bridge
	0361  MCP55 LPC Bridge
		1028 0221  PowerEdge R805 MCP55 LPC Bridge
	0362  MCP55 LPC Bridge
		147b 12c4  KN9-Ultra Mainboard
	0363  MCP55 LPC Bridge
	0364  MCP55 LPC Bridge
		1028 0221  PowerEdge R805 MCP55 LPC Bridge
	0365  MCP55 LPC Bridge
	0366  MCP55 LPC Bridge
	0367  MCP55 LPC Bridge
	0368  MCP55 SMBus
		1028 020c  PowerEdge M605 MCP55 SMBus
		1028 0221  PowerEdge R805 MCP55 SMBus
		147b 12c4  KN9-Ultra Mainboard
	0369  MCP55 Memory Controller
		147b 12c4  KN9-Ultra Mainboard
	036a  MCP55 Memory Controller
	036b  MCP55 SMU
	036c  MCP55 USB Controller
		1028 020c  PowerEdge M605 MCP55 USB Controller
		1028 0221  PowerEdge R805 MCP55 USB Controller
		147b 12c4  KN9-Ultra Mainboard
	036d  MCP55 USB Controller
		1028 020c  PowerEdge M605 MCP55 USB Controller
		1028 0221  PowerEdge R805 MCP55 USB Controller
		147b 12c4  KN9-Ultra Mainboard
	036e  MCP55 IDE
		147b 12c4  KN9-Ultra Mainboard
	0370  MCP55 PCI bridge
	0371  MCP55 High Definition Audio
	0372  MCP55 Ethernet
	0373  MCP55 Ethernet
		147b 12c4  KN9-Ultra Mainboard
	0374  MCP55 PCI Express bridge
	0375  MCP55 PCI Express bridge
	0376  MCP55 PCI Express bridge
	0377  MCP55 PCI Express bridge
	0378  MCP55 PCI Express bridge
	037a  MCP55 Memory Controller
	037e  MCP55 SATA Controller
	037f  MCP55 SATA Controller
		1028 0221  PowerEdge R805 MCP55 SATA Controller
		147b 12c4  KN9-Ultra Mainboard
	038b  G73 [GeForce 7650 GS]
	0390  G73 [GeForce 7650 GS]
	0391  G73 [GeForce 7600 GT]
		1458 3427  GV-NX76T128D-RH
	0392  G73 [GeForce 7600 GS]
		1462 0622  NX7600GS-T2D256EH
	0393  G73 [GeForce 7300 GT]
		10de 0412  NX7300GT-TD256EH
		1462 0412  NX7300GT-TD256EH
	0394  G73 [GeForce 7600 LE]
	0395  G73 [GeForce 7300 GT]
	0397  G73 [GeForce Go 7700]
	0398  G73 [GeForce Go 7600]
		1025 006c  Acer 9814 WKMI
	0399  G73 [GeForce Go 7600 GT]
	039a  G73M [Quadro NVS 300M]
	039b  G73 [GeForce Go 7900 SE]
	039c  G73 [Quadro FX 550M]
		10de 039c  Quadro FX 560M
	039e  G73GL [Quadro FX 560]
	03a0  C55 Host Bridge
	03a1  C55 Host Bridge
	03a2  C55 Host Bridge
	03a3  C55 Host Bridge
	03a4  C55 Host Bridge
	03a5  C55 Host Bridge
	03a6  C55 Host Bridge
	03a7  C55 Host Bridge
	03a8  C55 Memory Controller
	03a9  C55 Memory Controller
	03aa  C55 Memory Controller
	03ab  C55 Memory Controller
	03ac  C55 Memory Controller
	03ad  C55 Memory Controller
	03ae  C55 Memory Controller
	03af  C55 Memory Controller
	03b0  C55 Memory Controller
	03b1  C55 Memory Controller
	03b2  C55 Memory Controller
	03b3  C55 Memory Controller
	03b4  C55 Memory Controller
	03b5  C55 Memory Controller
	03b6  C55 Memory Controller
	03b7  C55 PCI Express bridge
	03b8  C55 PCI Express bridge
	03b9  C55 PCI Express bridge
	03ba  C55 Memory Controller
	03bb  C55 PCI Express bridge
	03bc  C55 Memory Controller
	03d0  C61 [GeForce 6150SE nForce 430]
	03d1  C61 [GeForce 6100 nForce 405]
	03d2  C61 [GeForce 6100 nForce 400]
	03d5  C61 [GeForce 6100 nForce 420]
	03d6  C61 [GeForce 7025 / nForce 630a]
	03e0  MCP61 LPC Bridge
		1849 03e0  939NF6G-VSTA Board
	03e1  MCP61 LPC Bridge
	03e2  MCP61 LPC Bridge
	03e3  MCP61 LPC Bridge
	03e4  MCP61 High Definition Audio
	03e5  MCP61 Ethernet
	03e6  MCP61 Ethernet
	03e7  MCP61 SATA Controller
	03e8  MCP61 PCI Express bridge
		1849 03e8  939NF6G-VSTA Board
	03e9  MCP61 PCI Express bridge
		1849 03e9  939NF6G-VSTA Board
	03ea  MCP61 Memory Controller
		1849 03ea  939NF6G-VSTA Board
	03eb  MCP61 SMBus
		1849 03eb  939NF6G-VSTA Board
	03ec  MCP61 IDE
		1849 03ec  939NF6G-VSTA Board
	03ee  MCP61 Ethernet
	03ef  MCP61 Ethernet
		1849 03ef  939NF6G-VSTA Board
	03f0  MCP61 High Definition Audio
		1849 0888  939NF6G-VSTA Board
	03f1  MCP61 USB Controller
		1849 03f1  939NF6G-VSTA Board
	03f2  MCP61 USB Controller
		1849 03f2  939NF6G-VSTA Board
	03f3  MCP61 PCI bridge
		1849 03f3  939NF6G-VSTA Board
	03f4  MCP61 SMU
	03f5  MCP61 Memory Controller
		1849 03eb  939NF6G-VSTA Board
	03f6  MCP61 SATA Controller
		1849 03f6  939NF6G-VSTA Board
	03f7  MCP61 SATA Controller
	0400  G84 [GeForce 8600 GTS]
	0401  G84 [GeForce 8600GT]
	0402  G84 [GeForce 8600 GT]
		1462 0910  NX8600GT-T2D256EZ
	0403  G84 [GeForce 8600 GS]
	0404  G84 [GeForce 8400 GS]
		1462 1230  NX8400GS-TD256E
	0405  G84 [GeForce 9500M GS]
	0406  G84 [GeForce 8300 GS]
	0407  G84 [GeForce 8600M GT]
	0408  G84 [GeForce 9650M GS]
	0409  G84 [GeForce 8700M GT]
	040a  G84 [Quadro FX 370]
	040b  G84M [Quadro NVS 320M]
	040c  G84M [Quadro FX 570M]
		17aa 20d9  ThinkPad T61p
	040d  G84 [Quadro FX 1600M]
	040e  G84 [Quadro FX 570]
	040f  G84 [Quadro FX 1700]
	0410  G92 [GeForce GT 330]
	0420  G86 [GeForce 8400 SE]
	0421  G86 [GeForce 8500 GT]
		1462 0960  NX8500GT-TD512EH/M2
	0422  G86 [GeForce 8400 GS]
	0423  G86 [GeForce 8300 GS]
	0424  G86 [GeForce 8400 GS]
	0425  G86 [GeForce 8600M GS]
		1025 0121  Aspire 5920G
	0426  G86 [GeForce 8400M GT]
	0427  G86 [GeForce 8400M GS]
	0428  G86 [GeForce 8400M G]
	0429  G84M [Quadro NVS 140M]
		17aa 20d8  ThinkPad T61
	042a  G86M [Quadro NVS 130M]
	042b  G86M [Quadro NVS 135M]
	042c  G86 [GeForce 9400 GT]
	042d  G86M [Quadro FX 360M]
	042e  G86 [GeForce 9300M G]
	042f  G86 [Quadro NVS 290]
	0440  MCP65 LPC Bridge
	0441  MCP65 LPC Bridge
	0442  MCP65 LPC Bridge
	0443  MCP65 LPC Bridge
	0444  MCP65 Memory Controller
	0445  MCP65 Memory Controller
	0446  MCP65 SMBus
	0447  MCP65 SMU
	0448  MCP65 IDE
	0449  MCP65 PCI bridge
	044a  MCP65 High Definition Audio
	044b  MCP65 High Definition Audio
	044c  MCP65 AHCI Controller
	044d  MCP65 AHCI Controller
	044e  MCP65 AHCI Controller
	044f  MCP65 AHCI Controller
	0450  MCP65 Ethernet
	0451  MCP65 Ethernet
	0452  MCP65 Ethernet
	0453  MCP65 Ethernet
	0454  MCP65 USB Controller
	0455  MCP65 USB Controller
	0456  MCP65 USB Controller
	0457  MCP65 USB Controller
	0458  MCP65 PCI Express bridge
	0459  MCP65 PCI Express bridge
	045a  MCP65 PCI Express bridge
	045c  MCP65 SATA Controller
	045d  MCP65 SATA Controller
	045e  MCP65 SATA Controller
	045f  MCP65 SATA Controller
	0531  C67 [GeForce 7150M / nForce 630M]
	0533  C67 [GeForce 7000M / nForce 610M]
	053a  C68 [GeForce 7050 PV / nForce 630a]
	053b  C68 [GeForce 7050 PV / nForce 630a]
		1043 8308  M2N68-AM Motherbord
	053e  C68 [GeForce 7025 / nForce 630a]
	0541  MCP67 Memory Controller
	0542  MCP67 SMBus
		1043 8308  M2N68-AM Motherbord
	0543  MCP67 Co-processor
	0547  MCP67 Memory Controller
		1043 8308  M2N68-AM Motherbord
		1849 0547  ALiveNF7G-HDready
	0548  MCP67 ISA Bridge
		1043 8308  M2N68-AM Motherboard
	054c  MCP67 Ethernet
		1043 8308  M2N68-AM Motherbord
		1849 054c  ALiveNF7G-HDready, MCP67 Gigabit Ethernet
	054d  MCP67 Ethernet
	054e  MCP67 Ethernet
# forcedeth source code from Nvidi
	054f  MCP67 Ethernet
	0550  MCP67 AHCI Controller
		1043 8308  M2N68-AM Motherboard
	0554  MCP67 AHCI Controller
		1043 8308  M2N68-AM Motherboard
	0555  MCP67 SATA Controller
		1043 8308  M2N68-AM Motherboard
	055c  MCP67 High Definition Audio
		1043 8290  M2N68-AM Motherboard
	055d  MCP67 High Definition Audio
	055e  MCP67 OHCI USB 1.1 Controller
		1043 8308  M2N68-AM Motherboard
	055f  MCP67 EHCI USB 2.0 Controller
		1043 8308  M2N68-AM Motherboard
	0560  MCP67 IDE Controller
		f043 8308  M2N68-AM Motherboard
	0561  MCP67 PCI Bridge
	0562  MCP67 PCI Express Bridge
		1849 0562  ALiveNF7G-HDready
	0563  MCP67 PCI Express Bridge
	0568  MCP78S [GeForce 8200] Memory Controller
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0568  K10N78FullHD-hSLI R3.0 Memory Controller
	0569  MCP78S [GeForce 8200] PCI Express Bridge
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0569  K10N78FullHD-hSLI R3.0 PCI Express Bridge
	056a  MCP73 [nForce 630i] USB 2.0 Controller (EHCI)
	056c  MCP73 IDE
		1afa 7150  JW-IN7150-HD
	056d  MCP73 PCI Express bridge
	056e  MCP73 PCI Express bridge
	056f  MCP73 PCI Express bridge
	05b1  NF200 PCIe 2.0 switch for mainboards
	05b8  NF200 PCIe 2.0 switch for GTX 295
	05be  NF200 PCIe 2.0 switch for Quadro Plex S4 / Tesla S870 / Tesla S1070
	05e0  GT200b [GeForce GTX 295]
	05e1  GT200 [GeForce GTX 280]
# GT200 [GTX 260] or GT200 [GTX 260-216] or GT200b [GTX 260-216]
	05e2  GT200 [GeForce GTX 260]
	05e3  GT200b [GeForce GTX 285]
	05e6  GT200b [GeForce GTX 275]
# Found in GPU server Tesla S1070
	05e7  GT200 [Tesla C1060]
	05ea  GT200 [GeForce GTX 260]
	05eb  GT200 [GeForce GTX 295]
	05ed  GT200GL [Quadro Plex 2200 D2]
	05f8  GT200GL [Quadro Plex 2200 S4]
	05f9  GT200GL [Quadro CX]
	05fd  GT200GL [Quadro FX 5800]
	05fe  GT200GL [Quadro FX 4800]
	05ff  GT200GL [NVIDIA Quadro FX 3800]
	0600  G92 [GeForce 8800 GTS 512]
	0601  G92 [GeForce 9800 GT]
	0602  G92 [GeForce 8800 GT]
	0603  G92 [GeForce GT 230]
	0604  G92 [GeForce 9800 GX2]
	0605  G92 [GeForce 9800 GT]
	0606  G92 [GeForce 8800 GS]
	0607  G92 [GeForce GTS 240]
	0608  G92 [GeForce 9800M GTX]
	0609  G92 [GeForce 8800M GTS]
	060a  GT200 [GeForce GTX 280M]
	060b  G92 [GeForce 9800M GT]
	060c  G92 [GeForce 8800M GTX]
	060d  G92 [GeForce 8800 GS]
	060f  G92 [GeForce GTX 285M]
	0610  G92 [GeForce 9600 GSO]
		1682 2385  GeForce 9600 GSO 768mb
	0611  G92 [GeForce 8800 GT]
		107d 2ab0  Winfast PX8800 GT PCI-E
		19da 1040  ZT-88TES2P-FSP
	0612  G92 [GeForce 9800 GTX]
	0613  G92 [GeForce 9800 GTX+]
	0614  G92 [GeForce 9800 GT]
		107d 2ab3  WinFast PX9800 GT (S-Fanpipe)
	0615  G92 [GeForce GTS 250]
		3842 1150  GeForce GTS 250 P/N 512-P3-1150-TR
# Overclocked
		3842 1151  GeForce GTS 250 P/N 512-P3-1151-TR
		3842 1155  GeForce GTS 250 P/N 01G-P3-1155-TR
# Overclocked
		3842 1156  GeForce GTS 250 P/N 01G-P3-1156-TR
	0617  G92 [GeForce 9800M GTX]
	0618  G92 [GeForce GTX 260M]
	0619  G92GL [Quadro FX 4700 X2]
	061a  G92 [Quadro FX 3700]
	061b  G92GL [Quadro VX 200]
	061c  G92M [Quadro FX 3600M]
	061d  G92 [Quadro FX 2800M]
	061e  G92 [Quadro FX 3700M]
	061f  G92 [Quadro FX 3800M]
	0622  G94 [GeForce 9600 GT]
		107d 2ac1  WinFast PX9600GT 1024MB
		1458 3481  GV-NX96T512HP
	0623  G94 [GeForce 9600 GS]
	0625  G94 [GeForce 9600 GSO 512]
	0626  G94 [GeForce GT 130]
	0627  G94 [GeForce GT 140]
	0628  G94 [GeForce 9800M GTS]
	062a  G94 [GeForce 9700M GTS]
	062b  G94 [GeForce 9800M GS]
	062c  G94 [GeForce 9800M GTS]
	062d  G94 [GeForce 9600 GT]
	062e  G94 [GeForce 9600 GT]
	0631  G94M [GeForce GTS 160M]
	0632  G94M [GeForce GTS 150M]
	0635  G94 [GeForce 9600 GSO]
	0637  G94 [GeForce 9600 GT]
	0638  G94 [Quadro FX 1800]
	063a  G94M [Quadro FX 2700M]
	0640  G96 [GeForce 9500 GT]
	0641  G96 [GeForce 9400 GT]
	0643  G96 [GeForce 9500 GT]
	0644  G96 [GeForce 9500 GS]
	0645  G96 [GeForce 9500 GS]
	0646  G96 [GeForce GT 120]
	0647  G96 [GeForce 9600M GT]
	0648  G96 [GeForce 9600M GS]
	0649  G96 [GeForce 9600M GT]
	064a  G96 [GeForce 9700M GT]
	064b  G96 [GeForce 9500M G]
	064c  G96 [GeForce 9650M GT]
	0651  G96 [GeForce G 110M]
	0652  G96 [GeForce GT 130M]
	0653  G96M [GeForce GT 120M]
	0654  G96 [GeForce GT 220M]
	0656  G96 [GeForce 9650 S]
	0658  G96 [Quadro FX 380]
	0659  G96 [Quadro FX 580]
	065a  G96 [Quadro FX 1700M]
	065b  G96 [GeForce 9400 GT]
	065c  G96M [Quadro FX 770M]
	06c0  GF100 [GeForce GTX 480]
	06cd  GF100 [GeForce GTX 470]
	06d1  GF100 [Tesla C2050]
	06e0  G98 [GeForce 9300 GE]
	06e1  G98 [GeForce 9300 GS]
	06e2  G98 [GeForce 8400]
	06e3  G98 [GeForce 8300 GS]
	06e4  G98 [GeForce 8400 GS]
		1458 3475  GV-NX84S256HE [GeForce 8400 GS]
	06e5  G98 [GeForce 9300M GS]
	06e6  G98 [GeForce G100]
	06e7  G98 [GeForce 9300 SE]
	06e8  G98 [GeForce 9200M GS]
	06e9  G98 [GeForce 9300M GS]
		1043 19b2  U6V laptop
	06ea  G86M [Quadro NVS 150M]
	06eb  G98M [Quadro NVS 160M]
	06ec  G98M [GeForce G 105M]
	06ef  G98M [GeForce G 103M]
	06f1  G98 [GeForce G105M]
	06f8  G98 [Quadro NVS 420]
	06f9  G98 [Quadro FX 370 LP]
	06fa  G98 [Quadro NVS 450]
	06fb  G98 [Quadro FX 370M]
	06fd  G98 [Quadro NVS 295]
	06ff  G98 [HICx16 + Graphics]
	0751  MCP78S [GeForce 8200] Memory Controller
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0751  K10N78FullHD-hSLI R3.0 Memory Controller
	0752  MCP78S [GeForce 8200] SMBus
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0752  K10N78FullHD-hSLI R3.0 SMBus
	0753  MCP78S [GeForce 8200] Co-Processor
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0753  K10N78FullHD-hSLI R3.0 Co-Processor
	0754  MCP78S [GeForce 8200] Memory Controller
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0754  K10N78FullHD-hSLI R3.0 Memory Controller
	0759  MCP78S [GeForce 8200] IDE
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0759  K10N78FullHD-hSLI R3.0 IDE
	075a  MCP78S [GeForce 8200] PCI Bridge
		1043 82e8  M3N72-D
		1849 075a  K10N78FullHD-hSLI R3.0 PCI Bridge
	075b  MCP78S [GeForce 8200] PCI Express Bridge
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 075b  K10N78FullHD-hSLI R3.0 PCI Express Bridge
	075c  MCP78S [GeForce 8200] LPC Bridge
		1462 7508  K9N2GM-FIH
		1849 075c  K10N78FullHD-hSLI R3.0 LPC Bridge
	075d  MCP78S [GeForce 8200] LPC Bridge
		1043 82e8  M3N72-D
	0760  MCP77 Ethernet
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0760  K10N78FullHD-hSLI R3.0 Ethernet
	0761  MCP77 Ethernet
	0762  MCP77 Ethernet
	0763  MCP77 Ethernet
	0774  MCP72XE/MCP72P/MCP78U/MCP78S High Definition Audio
# has a Realtek ALC1200 HDAudio Codec
		1043 82fe  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 3662  K10N78FullHD-hSLI R3.0 High Definition Audio
	0778  MCP78S [GeForce 8200] PCI Express Bridge
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 0778  K10N78FullHD-hSLI R3.0 PCI Express Bridge
	077a  MCP78S [GeForce 8200] PCI Bridge
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 077a  K10N78FullHD-hSLI R3.0 PCI Bridge
	077b  MCP78S [GeForce 8200] OHCI USB 1.1 Controller
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 077b  K10N78FullHD-hSLI R3.0 OHCI USB 1.1 Controller
	077c  MCP78S [GeForce 8200] EHCI USB 2.0 Controller
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 077c  K10N78FullHD-hSLI R3.0 EHCI USB 2.0 Controller
	077d  MCP78S [GeForce 8200] OHCI USB 1.1 Controller
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 077d  K10N78FullHD-hSLI R3.0 OHCI USB 1.1 Controller
	077e  MCP78S [GeForce 8200] EHCI USB 2.0 Controller
		1043 82e8  M3N72-D
		1462 7508  K9N2GM-FIH
		1849 077e  K10N78FullHD-hSLI R3.0 EHCI USB 2.0 Controller
	07c0  MCP73 Host Bridge
		1afa 7150  JW-IN7150-HD
	07c1  MCP73 Host Bridge
	07c2  MCP73 Host Bridge
	07c5  MCP73 Host Bridge
	07c8  MCP73 Memory Controller
		1afa 7150  JW-IN7150-HD
	07cb  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07cd  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07ce  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07cf  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07d0  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07d1  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07d2  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07d3  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07d6  nForce 630i memory controller
		1afa 7150  JW-IN7150-HD
	07d7  MCP73 LPC Bridge
		1afa 7150  JW-IN7150-HD
	07d8  MCP73 SMBus
		1afa 7150  JW-IN7150-HD
	07d9  MCP73 Memory Controller
		1afa 7150  JW-IN7150-HD
	07da  MCP73 Co-processor
		1afa 7150  JW-IN7150-HD
	07dc  MCP73 Ethernet
	07dd  MCP73 Ethernet
	07de  MCP73 Ethernet
	07df  MCP73 Ethernet
	07e0  C73 [GeForce 7150 / nForce 630i]
		1afa 7150  JW-IN7150-HD
	07e1  C73 [GeForce 7100 / nForce 630i]
	07e2  C73 [GeForce 7050 / nForce 630i]
	07e3  C73 [GeForce 7050 / nForce 610i]
	07e5  C73 [GeForce 7100 / nForce 620i]
	07f0  MCP73 IDE
	07f4  GeForce 7100/nForce 630i SATA
	07f8  MCP73 SATA RAID Controller
	07fc  MCP73 High Definition Audio
		10de 07fc  MCP73 High Definition Audio
	07fe  GeForce 7100/nForce 630i USB
		1afa 7150  JW-IN7150-HD
	0844  C77 [GeForce 9100M G]
	0845  C77 [GeForce 8200M G]
	0846  C77 [GeForce 9200]
	0847  C78 [GeForce 9100]
	0848  C77 [GeForce 8300]
	0849  C77 [GeForce 8200]
		1462 7508  K9N2GM-FIH
		1849 0849  K10N78FullHD-hSLI R3.0 GeForce 8200
	084a  C77 [nForce 730a]
	084b  C77 [GeForce 8200]
	084c  C77 [nForce 780a SLI]
	084d  C77 [nForce 750a SLI]
		1043 82e8  M3N72-D mGPU
	084f  C77 [GeForce 8100 / nForce 720a]
	0860  C79 [GeForce 9300]
	0861  C79 [GeForce 9400]
	0862  C79 [GeForce 9400M G]
	0863  C79 [GeForce 9400M]
	0864  C79 [GeForce 9300]
	0865  C79 [GeForce 9300]
	0866  C79 [GeForce 9400M G]
	0867  C79 [GeForce 9400]
	0868  C79 [nForce 760i SLI]
	086a  C79 [GeForce 9400]
	086c  C79 [GeForce 9300 / nForce 730i]
	086d  C79 [GeForce 9200]
	086e  C79 [GeForce 9100M G]
	086f  C79 [GeForce 9200M G]
	0870  C79 [GeForce 9400M]
	0871  C79 [GeForce 9200]
	0872  C79 [GeForce G102M]
	0873  C79 [GeForce G102M]
	0874  C79 [ION]
	0876  ION VGA [GeForce 9400M]
	087a  C79 [GeForce 9400]
	087d  ION VGA
	087e  ION LE VGA
	087f  ION LE VGA
	0a20  GT216 [GeForce GT 220]
	0a23  GT218 [GeForce 210]
	0a28  GT216 [GeForce GT 230M]
	0a29  GT216 [GeForce GT 330M]
	0a2a  GT216 [GeForce GT 230M]
	0a2b  GT216 [GeForce GT 330M]
	0a2c  GT216 [NVS 5100M]
	0a2d  GT216 [GeForce GT 320M]
	0a34  GT216 [GeForce GT 240M]
	0a35  GT216 [GeForce GT 325M]
	0a3c  GT216 [Quadro FX 880M]
	0a60  GT218 [GeForce G210]
	0a62  GT218 [GeForce 205]
	0a63  GT218 [GeForce 310]
	0a64  GT218 [ION]
	0a65  GT218 [GeForce 210]
	0a66  GT218 [GeForce 310]
	0a68  G98M [GeForce G105M]
	0a69  G98M [GeForce G105M]
	0a6a  GT218 [NVS 2100M]
	0a6c  GT218 [NVS 3100M]
	0a6e  GT218 [GeForce 305M]
	0a6f  GT218 [ION]
	0a70  GT218 [GeForce 310M]
	0a71  GT218 [GeForce 305M]
	0a72  GT218 [GeForce 310M]
	0a73  GT218 [GeForce 305M]
	0a74  GT218 [GeForce G210M]
	0a75  GT218 [GeForce 310M]
	0a78  GT218GL [Quadro FX 380 LP]
	0a7c  GT218 [Quadro FX 380M]
	0a80  MCP79 Host Bridge
	0a81  MCP79 Host Bridge
	0a82  MCP79 Host Bridge
	0a83  MCP79 Host Bridge
	0a84  MCP79 Host Bridge
	0a85  MCP79 Host Bridge
	0a86  MCP79 Host Bridge
	0a87  MCP79 Host Bridge
	0a88  MCP79 Memory Controller
	0a89  MCP79 Memory Controller
	0aa0  MCP79 PCI Express Bridge
	0aa2  MCP79 SMBus
	0aa3  MCP79 Co-processor
	0aa4  MCP79 Memory Controller
	0aa5  MCP79 OHCI USB 1.1 Controller
	0aa6  MCP79 EHCI USB 2.0 Controller
	0aa7  MCP79 OHCI USB 1.1 Controller
	0aa8  MCP79 OHCI USB 1.1 Controller
	0aa9  MCP79 EHCI USB 2.0 Controller
	0aaa  MCP79 EHCI USB 2.0 Controller
	0aab  MCP79 PCI Bridge
	0aac  MCP79 LPC Bridge
	0aad  MCP79 LPC Bridge
	0aae  MCP79 LPC Bridge
	0aaf  MCP79 LPC Bridge
	0ab0  MCP79 Ethernet
	0ab1  MCP79 Ethernet
	0ab2  MCP79 Ethernet
	0ab3  MCP79 Ethernet
	0ab4  MCP79 SATA Controller
	0ab5  MCP79 SATA Controller
	0ab6  MCP79 SATA Controller
	0ab7  MCP79 SATA Controller
	0ab8  MCP79 AHCI Controller
	0ab9  MCP79 AHCI Controller
	0aba  MCP79 AHCI Controller
	0abb  MCP79 AHCI Controller
	0abc  MCP79 RAID Controller
	0abd  MCP79 RAID Controller
	0abe  MCP79 RAID Controller
	0abf  MCP79 RAID Controller
	0ac0  MCP79 High Definition Audio
	0ac1  MCP79 High Definition Audio
	0ac2  MCP79 High Definition Audio
	0ac3  MCP79 High Definition Audio
	0ac4  MCP79 PCI Express Bridge
	0ac5  MCP79 PCI Express Bridge
	0ac6  MCP79 PCI Express Bridge
	0ac7  MCP79 PCI Express Bridge
	0ac8  MCP79 PCI Express Bridge
	0ad0  MCP78S [GeForce 8200] SATA Controller (non-AHCI mode)
		1462 7508  K9N2GM-FIH
		1849 0ad0  K10N78FullHD-hSLI R3.0 IDE
	0ad4  MCP78S [GeForce 8200] AHCI Controller
		1043 82e8  M3N72-D
		1849 0ad4  K10N78FullHD-hSLI R3.0 AHCI Controller
	0ad8  MCP78S [GeForce 8200] SATA Controller (RAID mode)
	0be2  High Definition Audio Controller
	0be3  High Definition Audio Controller
	0be4  High Definition Audio Controller
	0be5  GF100 High Definition Audio Controller
	0ca0  GT215 [GeForce GT 330]
	0ca2  GT215 [GeForce GT 320]
	0ca3  GT215 [GeForce GT 240]
	0ca4  GT215 [GeForce GT 340]
	0ca7  GT215 [GeForce GT 330]
	0ca8  GT215 [GeForce GTS 260M]
	0ca9  GT215 [GeForce GTS 250M]
	0caf  GT215 [GeForce GT 335M]
	0cb0  GT215 [GeForce GTS 350M]
	0cb1  GT215 [GeForce GTS 360M]
	0cbc  GT215 [Quadro FX 1800M]
	0d60  MCP89 HOST Bridge
	0d68  MCP89 Memory Controller
	0d69  MCP89 Memory Controller
	0d76  MCP89 PCI Express Bridge
	0d79  MCP89 SMBus
	0d7a  MCP89 Co-Processor
	0d7b  MCP89 Memory Controller
	0d7d  MCP89 Ethernet
	0d80  MCP89 LPC Bridge
	0d85  MCP89 SATA Controller
	0d89  MCP89 SATA Controller (AHCI mode)
	0d8d  MCP89 SATA Controller (RAID mode)
	0d94  MCP89 High Definition Audio
	0d9c  MCP89 OHCI USB 1.1 Controller
	0d9d  MCP89 EHCI USB 2.0 Controller
10df  Emulex Corporation
	1ae5  LP6000 Fibre Channel Host Adapter
	e100  Proteus-X: LightPulse IOV Fibre Channel Host Adapter
	e131  LightPulse 8Gb/s PCIe Shared I/O Fibre Channel Adapter
	e180  Proteus-X: LightPulse IOV Fibre Channel Host Adapter
	f011  Saturn: LightPulse Fibre Channel Host Adapter
	f015  Saturn: LightPulse Fibre Channel Host Adapter
	f085  LP850 Fibre Channel Host Adapter
	f095  LP952 Fibre Channel Host Adapter
	f098  LP982 Fibre Channel Host Adapter
	f0a1  Thor LightPulse Fibre Channel Host Adapter
	f0a5  Thor LightPulse Fibre Channel Host Adapter
	f0b5  Viper LightPulse Fibre Channel Host Adapter
	f0d1  Helios LightPulse Fibre Channel Host Adapter
	f0d5  Helios LightPulse Fibre Channel Host Adapter
	f0e1  Zephyr LightPulse Fibre Channel Host Adapter
	f0e5  Zephyr LightPulse Fibre Channel Host Adapter
	f0f5  Neptune LightPulse Fibre Channel Host Adapter
	f100  Saturn-X: LightPulse Fibre Channel Host Adapter
	f111  Saturn-X LightPulse Fibre Channel Host Adapter
	f112  Saturn-X LightPulse Fibre Channel Host Adapter
	f180  LPSe12002 EmulexSecure Fibre Channel Adapter
	f700  LP7000 Fibre Channel Host Adapter
	f701  LP7000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2)
	f800  LP8000 Fibre Channel Host Adapter
	f801  LP8000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2)
	f900  LP9000 Fibre Channel Host Adapter
	f901  LP9000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2)
	f980  LP9802 Fibre Channel Host Adapter
	f981  LP9802 Fibre Channel Host Adapter Alternate ID
	f982  LP9802 Fibre Channel Host Adapter Alternate ID
	fa00  Thor-X LightPulse Fibre Channel Host Adapter
	fb00  Viper LightPulse Fibre Channel Host Adapter
	fc00  Thor-X LightPulse Fibre Channel Host Adapter
		10df fc00  LP10000 LightPulse Fibre Channel Host Adapter
	fc10  Helios-X LightPulse Fibre Channel Host Adapter
	fc20  Zephyr-X LightPulse Fibre Channel Host Adapter
	fc40  Saturn-X: LightPulse Fibre Channel Host Adapter
	fc50  Proteus-X: LightPulse IOV Fibre Channel Host Adapter
	fd00  Helios-X LightPulse Fibre Channel Host Adapter
	fd11  Helios-X LightPulse Fibre Channel Host Adapter
	fd12  Helios-X LightPulse Fibre Channel Host Adapter
	fe00  Zephyr-X LightPulse Fibre Channel Host Adapter
	fe05  Zephyr-X: LightPulse FCoE Adapter
	fe11  Zephyr-X LightPulse Fibre Channel Host Adapter
	fe12  Zephyr-X LightPulse FCoE Adapter
	ff00  Neptune LightPulse Fibre Channel Host Adapter
10e0  Integrated Micro Solutions Inc.
	5026  IMS5026/27/28
	5027  IMS5027
	5028  IMS5028
	8849  IMS8849
	8853  IMS8853
	9128  IMS9128 [Twin turbo 128]
10e1  Tekram Technology Co.,Ltd.
	0391  TRM-S1040
		10e1 0391  DC-315U SCSI-3 Host Adapter
	690c  DC-690c
	dc29  DC-290
10e2  Aptix Corporation
10e3  Tundra Semiconductor Corp.
	0000  CA91C042 [Universe]
	0108  Tsi108 Host Bridge for Single PowerPC
	0148  Tsi148 [Tempe]
		1775 1100  VR11 Single Board Computer
	0860  CA91C860 [QSpan]
	0862  CA91C862A [QSpan-II]
	8260  CA91L8200B [Dual PCI PowerSpan II]
	8261  CA91L8260B [Single PCI PowerSpan II]
	a108  Tsi109 Host Bridge for Dual PowerPC
10e4  Tandem Computers
	8029  Realtek 8029 Network Card
10e5  Micro Industries Corporation
10e6  Gainbery Computer Products Inc.
10e7  Vadem
10e8  Applied Micro Circuits Corp.
	1072  INES GPIB-PCI (AMCC5920 based)
	2011  Q-Motion Video Capture/Edit board
	4750  S5930 [Matchmaker]
	5920  S5920
	8043  LANai4.x [Myrinet LANai interface chip]
	8062  S5933_PARASTATION
	807d  S5933 [Matchmaker]
	8088  Kongsberg Spacetec Format Synchronizer
	8089  Kongsberg Spacetec Serial Output Board
	809c  S5933_HEPC3
	80b9  Harmonix Hi-Card P8 (4x active ISDN BRI)
	80d7  PCI-9112
	80d9  PCI-9118
	80da  PCI-9812
	80fc  APCI1500 Signal processing controller (16 dig. inputs + 16 dig. outputs)
	811a  PCI-IEEE1355-DS-DE Interface
	814c  Fastcom ESCC-PCI (Commtech, Inc.)
	8170  S5933 [Matchmaker] (Chipset Development Tool)
	81e6  Multimedia video controller
	828d  APCI3001 Signal processing controller (up to 16 analog inputs)
	8291  Fastcom 232/8-PCI (Commtech, Inc.)
	82c4  Fastcom 422/4-PCI (Commtech, Inc.)
	82c5  Fastcom 422/2-PCI (Commtech, Inc.)
	82c6  Fastcom IG422/1-PCI (Commtech, Inc.)
	82c7  Fastcom IG232/2-PCI (Commtech, Inc.)
	82ca  Fastcom 232/4-PCI (Commtech, Inc.)
	82db  AJA HDNTV HD SDI Framestore
	82e2  Fastcom DIO24H-PCI (Commtech, Inc.)
	8406  PCIcanx/PCIcan CAN interface [Kvaser AB]
	8407  PCIcan II CAN interface (A1021, PCB-07, PCB-08) [Kvaser AB]
	8851  S5933 on Innes Corp FM Radio Capture card
10e9  Alps Electric Co., Ltd.
10ea  Intergraphics Systems
	1680  IGA-1680
	1682  IGA-1682
	1683  IGA-1683
	2000  CyberPro 2000
	2010  CyberPro 2000A
	5000  CyberPro 5000
	5050  CyberPro 5050
	5202  CyberPro 5202
# CyberPro5202 Audio Function
	5252  CyberPro5252
10eb  Artists Graphics
	0101  3GA
	8111  Twist3 Frame Grabber
10ec  Realtek Semiconductor Co., Ltd.
	0139  Zonet Zen3200
	0260  Realtek 260 High Definition Audio
	0261  Realtek 261 High Definition Audio
	0262  Realtek 262 High Definition Audio
	0269  Realtek ALC269 High Definition Audio (82801G)
	0280  Realtek 280 High Definition Audio
	0660  Realtek 660 High Definition Audio
	0662  Realtek 662 High Definition Audio
	0861  Realtek 861 High Definition Audio
	0862  Realtek 862 High Definition Audio
	0880  Realtek 880 High Definition Audio
	0883  Realtek 883 High Definition Audio
		1025 1605  TravelMate 5600 series
	0885  Realtek 885 High Definition Audio
	0888  Realtek 888 High Definition Audio
	8029  RTL-8029(AS)
		10b8 2011  EZ-Card (SMC1208)
		10ec 8029  RTL-8029(AS)
		1113 1208  EN1208
		1186 0300  DE-528
		1259 2400  AT-2400
		1af4 1100  Qemu virtual machine
	8129  RTL-8129
		10ec 8129  RT8129 Fast Ethernet Adapter
		11ec 8129  RT8129 Fast Ethernet Adapter
	8136  RTL8101E/RTL8102E PCI Express Fast Ethernet controller
		1179 ff64  RTL8102E PCI-E Fast Ethernet NIC
	8138  RT8139 (B/C) Cardbus Fast Ethernet Adapter
		10ec 8138  RT8139 (B/C) Fast Ethernet Adapter
	8139  RTL-8139/8139C/8139C+
		0357 000a  TTP-Monitoring Card V2.0
		1025 005a  TravelMate 290
		1025 8920  ALN-325
		1025 8921  ALN-325
		103c 006a  NX9500
		103c 30d9  Presario C700
		1043 1045  L8400B or L3C/S notebook
		1043 8109  P5P800-MX Mainboard
		1071 8160  MIM2000
		10bd 0320  EP-320X-R
		10f7 8338  Panasonic CF-Y5 laptop
		1113 ec01  FNC-0107TX
		1186 1300  DFE-538TX
		1186 1320  SN5200
		1186 8139  DRN-32TX
		11f6 8139  FN22-3(A) LinxPRO Ethernet Adapter
		1259 2500  AT-2500TX
		1259 2503  AT-2500TX/ACPI
		1385 f31d  FA311 v2
		1395 2100  AMB2100
		1429 d010  ND010/ND012
		1432 9130  EN-9130TX
		1436 8139  RT8139
		144d c00c  P30/P35 notebook
		1458 e000  GA-7VM400M/7VT600 Motherboard
		1462 0131  MS-1013 Notebook
		1462 217c  Aspire L250
		1462 788c  865PE Neo2-V Mainboard
		146c 1439  FE-1439TX
		1489 6001  GF100TXRII
		1489 6002  GF100TXRA
		149c 139a  LFE-8139ATX
		149c 8139  LFE-8139TX
		14cb 0200  LNR-100 Family 10/100 Base-TX Ethernet
		1565 2300  P4TSV Onboard LAN (RTL8100B)
		1631 7003  Onboard RTL8111 on GA-8SIML Rev1.0 Mainboard
		1695 9001  Onboard RTL8101L 10/100 MBit
		16ec 00ff  USR997900A
		1799 5000  F5D5000 PCI Card/Desktop Network PCI Card
		1799 5010  F5D5010 CardBus Notebook Network Card
		187e 3303  FN312
		1904 8139  RTL8139D Fast Ethernet Adapter
		2646 0001  KNE120TX
		8e2e 7000  KF-230TX
		8e2e 7100  KF-230TX/2
		a0a0 0007  ALN-325C
	8167  RTL-8110SC/8169SC Gigabit Ethernet
		1458 e000  GA-MA69G-S3H Motherboard
		1462 235c  P965 Neo MS-7235 mainboard
		1462 236c  945P Neo3-F motherboard
	8168  RTL8111/8168B PCI Express Gigabit Ethernet controller
		1043 11f5  A6J-Q008
		1043 16d5  U6V laptop
		1043 81aa  P5B
		1043 83a3  M4A785TD Motherboard
		1458 e000  GA-EP45-DS5 Motherboard
		1462 238c  Onboard RTL8111b on MSI P965 Platinum Mainboard
		1462 368c  K9AG Neo2
		1775 11cc  CC11/CL11
		1849 8168  Motherboard (one of many)
	8169  RTL-8169 Gigabit Ethernet
		1025 0079  Aspire 5024WLMi
		10bd 3202  EP-320G-TX1 32-bit PCI Gigabit Ethernet Adapter
		1259 c107  CG-LAPCIGT
		1371 434e  ProG-2000L
		1385 311a  GA311
		1458 e000  GA-8I915ME-G Mainboard
		1462 030c  K8N Neo-FSR v2.0 mainboard
		1462 065c  Hetis 865GV-E (MS-7065)
		1462 702c  K8T NEO 2 motherboard
		1462 7094  K8T Neo2-F V2.0
		16ec 011f  USR997903
		1734 1091  D2030-A1
		a0a0 0449  AK86-L motherboard
	8171  RTL8191SEvA Wireless LAN Controller
	8172  RTL8191SEvB Wireless LAN Controller
	8173  RTL8192SE Wireless LAN Controller
	8174  RTL8192SE Wireless LAN Controller
	8180  RTL8180L 802.11b MAC
		1385 4700  MA521 802.11b Wireless PC Card
		1737 0019  WPC11v4 802.11b Wireless-B Notebook Adapter
	8185  RTL-8185 IEEE 802.11a/b/g Wireless LAN Controller
	8192  RTL8192E Wireless LAN Controller
	8197  SmartLAN56 56K Modem
	8199  RTL8187SE Wireless LAN Controller
10ed  Ascii Corporation
	7310  V7310
10ee  Xilinx Corporation
	0001  EUROCOM for PCI (ECOMP)
	0002  Octal E1/T1 for PCI ETP Card
	0007  Zomojo Z1
	0205  Wildcard TE205P
	0210  Wildcard TE210P
	0314  Wildcard TE405P/TE410P (1st Gen)
	0405  Wildcard TE405P (2nd Gen)
	0410  Wildcard TE410P (2nd Gen)
	3fc0  RME Digi96
	3fc1  RME Digi96/8
	3fc2  RME Digi96/8 Pro
	3fc3  RME Digi96/8 Pad
	3fc4  RME Digi9652 (Hammerfall)
	3fc5  RME Hammerfall DSP
	3fc6  RME Hammerfall DSP MADI
	8380  Ellips ProfiXpress Profibus Master
	8381  Ellips Santos Frame Grabber
	d154  Copley Controls CAN card (PCI-CAN-02)
# SED is assigned Xilinx PCI device IDs ebf0 through ebff
	ebf0  SED Systems Modulator/Demodulator
	ebf1  SED Systems Audio Interface Card
	ebf2  SED Systems Common PCI Interface
10ef  Racore Computer Products, Inc.
	8154  M815x Token Ring Adapter
10f0  Peritek Corporation
10f1  Tyan Computer
	2865  Tyan Thunder K8E S2865
	5300  Tyan S5380 Mainboard
10f2  Achme Computer, Inc.
10f3  Alaris, Inc.
10f4  S-MOS Systems, Inc.
10f5  NKK Corporation
	a001  NDR4000 [NR4600 Bridge]
10f6  Creative Electronic Systems SA
10f7  Matsushita Electric Industrial Co., Ltd.
10f8  Altos India Ltd
10f9  PC Direct
10fa  Truevision
	000c  TARGA 1000
10fb  Thesys Gesellschaft fuer Mikroelektronik mbH
	186f  TH 6255
10fc  I-O Data Device, Inc.
# What's in the cardbus end of a Sony ACR-A01 card, comes with newer Vaio CD-RW drives
	0003  Cardbus IDE Controller
	0005  Cardbus SCSI CBSC II
10fd  Soyo Computer, Inc
10fe  Fast Multimedia AG
10ff  NCube
1100  Jazz Multimedia
1101  Initio Corporation
	0002  INI-920 Ultra SCSI Adapter
	1060  INI-A100U2W
	1622  INI-1623 PCI SATA-II Controller
	9100  INI-9100/9100W
	9400  INI-940 Fast Wide SCSI Adapter
	9401  INI-935 Fast Wide SCSI Adapter
	9500  INI-950 SCSI Adapter
	9502  INI-950P Ultra Wide SCSI Adapter
1102  Creative Labs
	0002  SB Live! EMU10k1
		100a 1102  SB Live! 5.1 Digital OEM SB0220 EMU10K1-JFF
		1102 0020  CT4850 SBLive! Value
		1102 0021  CT4620 SBLive!
		1102 002f  SBLive! mainboard implementation
		1102 100a  SB Live! 5.1 Digital OEM [SB0220]
		1102 4001  E-mu APS
		1102 8022  CT4780 SBLive! Value
		1102 8023  CT4790 SoundBlaster PCI512
		1102 8024  CT4760 SBLive!
		1102 8025  SBLive! Mainboard Implementation
		1102 8026  CT4830 SBLive! Value
		1102 8027  CT4832 SBLive! Value
		1102 8028  CT4760 SBLive! OEM version
		1102 8031  CT4831 SBLive! Value
		1102 8040  CT4760 SBLive!
		1102 8051  CT4850 SBLive! Value
		1102 8061  SBLive! Player 5.1
		1102 8064  SBLive! 5.1 Model SB0100
		1102 8065  SBLive! 5.1 Digital Model SB0220
		1102 8066  Live! 5.1 Digital [SB0228]
		1102 8067  SBLive! 5.1 eMicro 28028
	0004  SB Audigy
		1102 0051  SB0090 Audigy Player
		1102 0053  SB0090 Audigy Player/OEM
		1102 0058  SB0090 Audigy Player/OEM
		1102 1002  SB Audigy2 Platinum
		1102 1007  SB0240 Audigy 2 Platinum 6.1
		1102 1009  SB Audigy2 OEM HP
		1102 2002  SB Audigy 2 ZS (SB0350)
		1102 4001  E-MU 1010
	0005  SB X-Fi
		1102 0021  X-Fi Platinum
		1102 002c  X-Fi XtremeGamer FATAL1TY PRO
		1102 1003  X-Fi XtremeMusic
	0006  [SB Live! Value] EMU10k1X
	0007  CA0106 Soundblaster
		1102 0007  SBLive! 24bit
		1102 1001  SB0310 Audigy LS
		1102 1002  SB0312 Audigy LS
		1102 1006  SB0410 SBLive! 24-bit
		1102 100a  SB0570 [SB Audigy SE]
		1102 1012  SB0790 X-Fi XA
		1102 1013  Soundblaster X-Fi Xtreme Audio
		1462 1009  K8N Diamond
	0008  SB0400 Audigy2 Value
		1102 0008  EMU0404 Digital Audio System
		1102 4004  EMU1010 Digital Audio System [MAEM8960]
	0009  [SB X-Fi Xtreme Audio] CA0110-IBG
		1102 0010  [SB X-Fi Xtreme Audio] CA0110-IBG
		1102 0018  SB1040
	000b  X-Fi Titanium series [EMU20k2]
		1102 0041  SB X-Fi Titanium PCI-e [SB0880]
	4001  SB Audigy FireWire Port
		1102 0010  SB Audigy FireWire Port
	7002  SB Live! Game Port
		1102 0020  Gameport Joystick
	7003  SB Audigy Game Port
		1102 0040  SB Audigy Game Port
		1102 0060  SB Audigy2 MIDI/Game Port
	7004  [SB Live! Value] Input device controller
	7005  SB Audigy LS Game Port
		1102 1001  SB0310 Audigy LS MIDI/Game port
		1102 1002  SB0312 Audigy LS MIDI/Game port
	7006  [SB X-Fi Xtreme Audio] CA0110-IBG PCI to PCIe Bridge
	8938  Ectiva EV1938
		1033 80e5  SlimTower-Jim (NEC)
		1071 7150  Mitac 7150
		110a 5938  Siemens Scenic Mobile 510PIII
		13bd 100c  Ceres-C (Sharp, Intel BX)
		13bd 100d  Sharp, Intel Banister
		13bd 100e  TwinHead P09S/P09S3 (Sharp)
		13bd f6f1  Marlin (Sharp)
		14ff 0e70  P88TE (TWINHEAD INTERNATIONAL Corp)
		14ff c401  Notebook 9100/9200/2000 (TWINHEAD INTERNATIONAL Corp)
		156d b400  G400 - Geo (AlphaTop (Taiwan))
		156d b550  G560  (AlphaTop (Taiwan))
		156d b560  G560  (AlphaTop (Taiwan))
		156d b700  G700/U700  (AlphaTop (Taiwan))
		156d b795  G795  (AlphaTop (Taiwan))
		156d b797  G797  (AlphaTop (Taiwan))
# nee Triones Technologies, Inc.
1103  HighPoint Technologies, Inc.
	0003  HPT343/345/346/363
	0004  HPT366/368/370/370A/372/372N
		1103 0001  HPT370A
		1103 0004  HPT366 UDMA66 (r1) / HPT368 UDMA66 (r2) / HPT370 UDMA100 (r3) / HPT370 UDMA100 RAID (r4)
		1103 0005  HPT370 UDMA100
		1103 0006  HPT302/302N
	0005  HPT372A/372N
	0006  HPT302/302N
	0007  HPT371/371N
	0008  HPT374
	0009  HPT372N
	1720  RocketRAID 1720 (2x SATA II RAID Controller)
	1740  RocketRAID 1740
	1742  RocketRAID 1742
	2300  RocketRAID 230x 4 Port SATA-II Controller
	2310  RocketRAID 2310 4 Port SATA-II Controller
	2320  RocketRAID 2320 SATA-II Controller
	2322  RocketRAID 2322 SATA-II Controller
	2340  RocketRAID 2340 16 Port SATA-II Controller
	2640  RocketRAID 2640 SAS/SATA Controller
	3220  RocketRAID 3220
	3320  RocketRAID 3320
1104  RasterOps Corp.
1105  Sigma Designs, Inc.
	1105  REALmagic Xcard MPEG 1/2/3/4 DVD Decoder
	8300  REALmagic Hollywood Plus DVD Decoder
	8400  EM840x REALmagic DVD/MPEG-2 Audio/Video Decoder
	8401  EM8401 REALmagic DVD/MPEG-2 A/V Decoder
	8470  EM8470 REALmagic DVD/MPEG-4 A/V Decoder
	8471  EM8471 REALmagic DVD/MPEG-4 A/V Decoder
	8475  EM8475 REALmagic DVD/MPEG-4 A/V Decoder
		1105 0001  REALmagic X-Card
	8476  EM8476 REALmagic DVD/MPEG-4 A/V Decoder
		127d 0000  CineView II
	8485  EM8485 REALmagic DVD/MPEG-4 A/V Decoder
	8486  EM8486 REALmagic DVD/MPEG-4 A/V Decoder
	c622  EM8622L MPEG-4.10 (H.264) and SMPTE 421M (VC-1) A/V Decoder
1106  VIA Technologies, Inc.
	0102  Embedded VIA Ethernet Controller
	0130  VT6305 1394.A Controller
	0198  P4X600 Host Bridge
	0204  K8M800 Host Bridge
	0208  PT890 Host Bridge
	0238  K8T890 Host Bridge
	0258  PT880 Host Bridge
	0259  CN333/CN400/PM880 Host Bridge
	0269  KT880 Host Bridge
	0282  K8T800Pro Host Bridge
		1043 80a3  A8V Deluxe
	0290  K8M890 Host Bridge
	0293  PM896 Host Bridge
	0296  P4M800 Host Bridge
	0305  VT8363/8365 [KT133/KM133]
		1019 0987  K7VZA Mainboard
		1043 8033  A7V Mainboard
		1043 803e  A7V-E Mainboard
		1043 8042  A7V133/A7V133-C Mainboard
		147b a401  KT7/KT7-RAID/KT7A/KT7A-RAID Mainboard
	0308  PT880 Ultra/PT894 Host Bridge
		1043 8199  P4V800D-X Mainboard
	0314  CN700/VN800/P4M800CE/Pro Host Bridge
	0324  CX700/VX700 Host Bridge
	0327  P4M890 Host Bridge
	0336  K8M890CE Host Bridge
	0340  PT900 Host Bridge
	0351  K8T890CF Host Bridge
	0353  VX800 Host Bridge
	0364  CN896/VN896/P4M900 Host Bridge
		1043 81ce  P5VD2-VM mothervoard
	0391  VT8371 [KX133]
	0409  VX855/VX875 Host Bridge: Host Control
	0415  PATA IDE Host Controller
	0501  VT8501 [Apollo MVP4]
	0505  VT82C505
# Shares chip with :0576. The VT82C576M has :1571 instead of :0561.
	0561  VT82C576MV
	0571  VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE
		1019 0985  P6VXA Motherboard
		1019 0a81  L7VTA v1.0 Motherboard (KT400-8235)
		1043 8052  VT8233A Bus Master ATA100/66/33 IDE
		1043 808c  A7V8X / A7V333 motherboard
		1043 80a1  A7V8X-X motherboard rev. 1.01
		1043 80ed  A7V600/K8V-X/A8V Deluxe motherboard
		1106 0571  VT82C586/B/VT82C686/A/B/VT8233/A/C/VT8235 PIPC Bus Master IDE
		1179 0001  Magnia Z310
		1297 f641  FX41 motherboard
		1458 5002  GA-7VAX Mainboard
		1462 5901  KT6 Delta-FIS2R (MS-6590)
		1462 7020  K8T NEO 2 motherboard
		1462 7094  K8T Neo2-F V2.0
		1462 7120  KT4AV motherboard
		1462 7181  K8MM3-V mainboard
		147b 1407  KV8-MAX3 motherboard
		1849 0571  K7VT2/K7VT6 motherboard
	0576  VT82C576 3V [Apollo Master]
	0581  CX700/VX700 RAID Controller
# Upgrade bios to get correct ID: 5324 instead of 0581
		1106 0581  Wrong IDE ID
	0585  VT82C585VP [Apollo VP1/VPX]
	0586  VT82C586/A/B PCI-to-ISA [Apollo VP]
		1106 0000  MVP3 ISA Bridge
	0591  VT8237A SATA 2-Port Controller
	0595  VT82C595 [Apollo VP2]
	0596  VT82C596 ISA [Mobile South]
		1106 0000  VT82C596/A/B PCI to ISA Bridge
		1458 0596  VT82C596/A/B PCI to ISA Bridge
	0597  VT82C597 [Apollo VP3]
	0598  VT82C598 [Apollo MVP3]
	0601  VT8601 [Apollo ProMedia]
	0605  VT8605 [ProSavage PM133]
		103c 1254  D9840-60001 [Brio BA410 Motherboard]
		1043 802c  CUV4X mainboard
	0680  VT82C680 [Apollo P6]
	0686  VT82C686 [Apollo Super South]
		1019 0985  P6VXA Motherboard
		103c 1256  D9840-60001 [Brio BA410 Motherboard]
		1043 802c  CUV4X mainboard
		1043 8033  A7V Mainboard
		1043 803e  A7V-E Mainboard
		1043 8040  A7M266 Mainboard
		1043 8042  A7V133/A7V133-C Mainboard
		1106 0000  VT82C686/A PCI to ISA Bridge
		1106 0686  VT82C686/A PCI to ISA Bridge
		1179 0001  Magnia Z310
		147b a702  KG7-Lite Mainboard
	0691  VT82C693A/694x [Apollo PRO133x]
		1019 0985  P6VXA Motherboard
		1179 0001  Magnia Z310
		1458 0691  VT82C691 Apollo Pro System Controller
	0693  VT82C693 [Apollo Pro Plus]
	0698  VT82C693A [Apollo Pro133 AGP]
	0926  VT82C926 [Amazon]
	1000  VT82C570MV
	1106  VT82C570MV
	1122  VX800/VX820 Chrome 9 HC3 Integrated Graphics
	1204  K8M800 Host Bridge
	1208  PT890 Host Bridge
	1238  K8T890 Host Bridge
	1258  PT880 Host Bridge
	1259  CN333/CN400/PM880 Host Bridge
	1269  KT880 Host Bridge
	1282  K8T800Pro Host Bridge
	1290  K8M890 Host Bridge
	1293  PM896 Host Bridge
	1296  P4M800 Host Bridge
	1308  PT894 Host Bridge
	1314  CN700/VN800/P4M800CE/Pro Host Bridge
	1324  CX700/VX700 Host Bridge
	1327  P4M890 Host Bridge
	1336  K8M890CE Host Bridge
	1340  PT900 Host Bridge
	1351  VT3351 Host Bridge
	1353  VX800/VX820 Error Reporting
	1364  CN896/VN896/P4M900 Host Bridge
	1409  VX855/VX875 Error Reporting
	1571  VT82C576M/VT82C586
	1595  VT82C595/97 [Apollo VP2/97]
	1732  VT1732 [Envy24 II] PCI Multi-Channel Audio Controller
	2106  VIA Rhine Family Fast Ethernet Adapter (VT6105)
	2204  K8M800 Host Bridge
	2208  PT890 Host Bridge
	2238  K8T890 Host Bridge
	2258  PT880 Host Bridge
	2259  CN333/CN400/PM880 CPU Host Bridge
	2269  KT880 Host Bridge
	2282  K8T800Pro Host Bridge
	2290  K8M890 Host Bridge
	2293  PM896 Host Bridge
	2296  P4M800 Host Bridge
	2308  PT894 Host Bridge
	2314  CN700/VN800/P4M800CE/Pro Host Bridge
	2324  CX700/VX700 Host Bridge
	2327  P4M890 Host Bridge
	2336  K8M890CE Host Bridge
	2340  PT900 Host Bridge
	2351  VT3351 Host Bridge
	2353  VX800/VX820 Host Bus Control
	2364  CN896/VN896/P4M900 Host Bridge
	2409  VX855/VX875 Host Bus Control
	287a  VT8251 PCI to PCI Bridge
	287b  VT8251 Host Bridge
	287c  VT8251 PCIE Root Port
	287d  VT8251 PCIE Root Port
	287e  VT8251 Ultra VLINK Controller
	3022  CLE266
	3038  VT82xxxxx UHCI USB 1.1 Controller
# possibly Hewlett-Packard D9840-60001 [Brio BA410 Motherboard]
		0925 1234  VA-502 Mainboard
		1019 0985  P6VXA Motherboard
		1019 0a81  L7VTA v1.0 Motherboard (KT400-8235)
		1043 8080  A7V333 motherboard
		1043 808c  VT6202 USB2.0 4 port controller
		1043 80a1  A7V8X-X motherboard
		1043 80ed  A7V600/K8V-X/A8V Deluxe motherboard
		1179 0001  Magnia Z310
		1458 5004  GA-7VAX Mainboard
		1462 5901  KT6 Delta-FIS2R (MS-6590)
		1462 7020  K8T NEO 2 motherboard
		1462 7094  K8T Neo2-F V2.0
		1462 7120  KT4AV motherboard
		1462 7181  K8MM3-V mainboard
		147b 1407  KV8-MAX3 motherboard
		182d 201d  CN-029 USB2.0 4 port PCI Card
		1849 3038  K7VT6
	3040  VT82C586B ACPI
	3043  VT86C100A [Rhine]
		10bd 0000  VT86C100A Fast Ethernet Adapter
		1106 0100  VT86C100A Fast Ethernet Adapter
		1186 1400  DFE-530TX rev A
	3044  VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller
		0010 0001  IEEE 1394 4port DCST 1394-3+1B
		1025 005a  TravelMate 290
		1043 808a  A8V/A8N/P4P800 series motherboard
		1043 81fe  M4A series motherboard
		1458 1000  GA-7VT600-1394 Motherboard
		1462 207d  K8NGM2 series motherboard
		1462 217d  Aspire L250
		1462 590d  KT6 Delta-FIS2R (MS-6590)
		1462 702d  K8T NEO 2 motherboard
		1462 971d  MS-6917
	3050  VT82C596 Power Management
	3051  VT82C596 Power Management
	3053  VT6105M [Rhine-III]
	3057  VT82C686 [Apollo Super ACPI]
		1019 0985  P6VXA Motherboard
		1019 0987  K7VZA Motherboard
		1043 8033  A7V Mainboard
		1043 803e  A7V-E Mainboard
		1043 8040  A7M266 Mainboard
		1043 8042  A7V133/A7V133-C Mainboard
		1179 0001  Magnia Z310
	3058  VT82C686 AC97 Audio Controller
		0e11 0097  SoundMax Digital Integrated Audio
		0e11 b194  Soundmax integrated digital audio
		1019 0985  P6VXA Motherboard
		1019 0987  K7VZA Motherboard
		103c 1251  D9840-60001 [Brio BA410 Motherboard]
		1043 1106  A7V133/A7V133-C Mainboard
		1106 4511  Onboard Audio on EP7KXA
		1106 aa03  VT1612A AC'97 Audio Controller
		11d4 5348  AD1881A audio
		1458 7600  Onboard Audio
		1462 3091  MS-6309 Onboard Audio
		1462 3092  MS-6309 v2.x Mainboard (VIA VT1611A codec)
		1462 3300  MS-6330 Onboard Audio
		15dd 7609  Onboard Audio
	3059  VT8233/A/8235/8237 AC97 Audio Controller
		1019 0a81  L7VTA v1.0 Motherboard (KT400-8235)
		1019 1877  K8M800-M2 (V2.0) onboard audio
		1043 8095  A7V8X Motherboard (Realtek ALC650 codec)
		1043 80a1  A7V8X-X Motherboard
		1043 80b0  A7V600/K8V-X/K8V Deluxe motherboard (ADI AD1980 codec [SoundMAX])
		1043 810d  Asus P5VD1-X (AD1888 codec [SoundMax])
		1043 812a  A8V Deluxe motherboard (Realtek ALC850 codec)
		10ec 8168  High Definition Audio
		1106 3059  L7VMM2 Motherboard
		1106 4161  K7VT2 motherboard
		1106 4170  PCPartner P4M800-8237R Motherboard
		1106 4552  Soyo KT-600 Dragon Plus (Realtek ALC 650)
		1297 c160  FX41 motherboard (Realtek ALC650 codec)
		1413 147b  KV8 Pro motherboard onboard audio
		1458 a002  GA-7VAX Onboard Audio (Realtek ALC650)
		1462 0080  K8T NEO 2 motherboard
		1462 3800  KT266 onboard audio
		1462 5901  KT6 Delta-FIS2R (MS-6590)
		1462 7181  K8MM3-V mainboard
		147b 1407  KV8-MAX3 motherboard
		1695 300c  EP-8KRA2+ Mainboard
		1849 0850  ASRock 775Dual-880 Pro onboard audio (Realtek ALC850)
		1849 9739  P4VT8 Mainboard (C-Media CMI9739A codec)
		1849 9761  K7VT6 motherboard
		4005 4710  MSI K7T266 Pro2-RU (MSI-6380 v2) onboard audio (Realtek/ALC 200/200P)
		a0a0 01b6  AK77-8XN onboard audio
		a0a0 0342  AK86-L motherboard
	3065  VT6102 [Rhine-II]
		1043 80a1  A7V8X-X Motherboard
		1043 80ed  A7V600-X Motherboard
		1106 0102  VT6102 [Rhine II] Embeded Ethernet Controller on VT8235
		1186 1400  DFE-530TX rev A
		1186 1401  DFE-530TX rev B
		13b9 1421  LD-10/100AL PCI Fast Ethernet Adapter (rev.B)
		1462 7061  MS-7061
		1462 7181  K8MM3-V mainboard
		147b 1c09  NV7 Motherboard
		1695 3005  VT6103
		1695 300c  Realtek ALC655 sound chip
		1849 3065  K7VT6 motherboard
# This hosts more than just the Intel 537 codec, it also hosts PCtel (SIL33) and SmartLink (SIL34) codecs
	3068  AC'97 Modem Controller
		1462 309e  MS-6309 Saturn Motherboard
	3074  VT8233 PCI to ISA Bridge
		1043 8052  VT8233A
	3091  VT8633 [Apollo Pro266]
	3099  VT8366/A/7 [Apollo KT266/A/333]
		1043 8064  A7V266-E Mainboard
		1043 807f  A7V333 Mainboard
		1849 3099  K7VT2 motherboard
	3101  VT8653 Host Bridge
	3102  VT8662 Host Bridge
	3103  VT8615 Host Bridge
	3104  USB 2.0
		1019 0a81  L7VTA v1.0 Motherboard (KT400-8235)
		1043 808c  A7V8X motherboard
		1043 80a1  A7V8X-X motherboard rev 1.01
		1043 80ed  A7V600/K8V-X/A8V Deluxe motherboard
		1297 f641  FX41 motherboard
		1458 5004  GA-7VAX Mainboard
		1462 5901  KT6 Delta-FIS2R (MS-6590)
		1462 7020  K8T NEO 2 motherboard
		1462 7094  K8T Neo2-F V2.0
		1462 7120  KT4AV motherboard
		1462 7181  K8MM3-V mainboard
		147b 1407  KV8-MAX3 motherboard
		182d 201d  CN-029 USB 2.0 4 port PCI Card
		1849 3104  K7VT6 motherboard
	3106  VT6105/VT6106S [Rhine-III]
		1106 0105  VT6106S [Rhine-III]
		1186 1403  DFE-530TX rev C
		1186 1406  DFE-530TX+ rev F2
		1186 1407  DFE-538TX
	3108  K8M800/K8N800/K8N800A [S3 UniChrome Pro]
	3109  VT8233C PCI to ISA Bridge
	3112  VT8361 [KLE133] Host Bridge
	3113  VPX/VPX2 PCI to PCI Bridge Controller
	3116  VT8375 [KM266/KL266] Host Bridge
		1297 f641  FX41 motherboard
	3118  CN400/PM800/PM880/PN800/PN880 [S3 UniChrome Pro]
	3119  VT6120/VT6121/VT6122 Gigabit Ethernet Adapter
	3122  VT8623 [Apollo CLE266] integrated CastleRock graphics
	3123  VT8623 [Apollo CLE266]
	3128  VT8753 [P4X266 AGP]
	3133  VT3133 Host Bridge
	3147  VT8233A ISA Bridge
		1043 808c  A7V333 motherboard
	3148  P4M266 Host Bridge
	3149  VIA VT6420 SATA RAID Controller
		1043 80ed  A7V600/K8V Deluxe/K8V-X/A8V Deluxe motherboard
		1458 b003  GA-7VM400AM(F) Motherboard
		1462 5901  KT6 Delta-FIS2R (MS-6590)
		1462 7020  K8T Neo 2 Motherboard
		1462 7094  K8T Neo2-F V2.0
		1462 7181  K8MM3-V mainboard
		147b 1407  KV8-MAX3 motherboard
		147b 1408  KV7
		1849 3149  K7VT6 motherboard
		a0a0 04ad  AK86-L motherboard
	3156  P/KN266 Host Bridge
	3157  CX700/VX700 [S3 UniChrome Pro]
	3164  VT6410 ATA133 RAID controller
		1043 80f4  P4P800 Mainboard Deluxe ATX
		1462 7028  915P/G Neo2
	3168  P4X333/P4X400/PT800 AGP Bridge
		1849 3168  P4VT8 Mainboard
	3177  VT8235 ISA Bridge
		1019 0a81  L7VTA v1.0 Motherboard (KT400-8235)
		1043 808c  A7V8X motherboard
		1043 80a1  A7V8X-X motherboard
		1106 0000  KT4AV motherboard
		1297 f641  FX41 motherboard
		1458 5001  GA-7VAX Mainboard
		1849 3177  K7VT2 motherboard
	3178  ProSavageDDR P4N333 Host Bridge
	3188  VT8385 [K8T800 AGP] Host Bridge
		1043 80a3  K8V Deluxe/K8V-X motherboard
		147b 1407  KV8-MAX3 motherboard
	3189  VT8377 [KT400/KT600 AGP] Host Bridge
		1043 807f  A7V8X motherboard
		1106 0000  KT4AV motherboard (KT400A)
		1458 5000  GA-7VAX Mainboard
		1849 3189  K7VT6 motherboard
	3204  K8M800 Host Bridge
	3205  VT8378 [KM400/A] Chipset Host Bridge
		1458 5000  GA-7VM400M Motherboard
	3208  PT890 Host Bridge
	3213  VPX/VPX2 PCI to PCI Bridge Controller
	3218  K8T800M Host Bridge
	3227  VT8237 ISA bridge [KT600/K8T800/K8T890 South]
		1043 80ed  A7V600/K8V-X/A8V Deluxe motherboard
		1106 3227  DFI KT600-AL / Soltek SL-B9D-FGR Motherboard
		1458 5001  GA-7VT600 Motherboard
		147b 1407  KV8-MAX3 motherboard
		1849 3227  K7VT4 motherboard
	3230  K8M890CE/K8N890CE [Chrome 9]
	3238  K8T890 Host Bridge
	3249  VT6421 IDE RAID Controller
	324a  CX700/VX700 PCI to PCI Bridge
	324b  CX700/VX700 Host Bridge
	324e  CX700/VX700 Internal Module Bus
	3253  VIA VT6655 WiFi Adapter, 802.11a/b/g
	3258  PT880 Host Bridge
	3259  CN333/CN400/PM880 Host Bridge
	3260  VIA Chrome9 HC IGP
	3269  KT880 Host Bridge
	3282  K8T800Pro Host Bridge
	3287  VT8251 PCI to ISA Bridge
	3288  VT1708/A [Azalia HDAC] (VIA High Definition Audio Controller)
	3290  K8M890 Host Bridge
	3296  P4M800 Host Bridge
	3324  CX700/VX700 Host Bridge
	3327  P4M890 Host Bridge
	3336  K8M890CE Host Bridge
	3337  VT8237A PCI to ISA Bridge
	3340  PT900 Host Bridge
	3343  P4M890 [S3 UniChrome Pro]
	3344  CN700/P4M800 Pro/P4M800 CE/VN800 [S3 UniChrome Pro]
	3349  VT8251 AHCI/SATA 4-Port Controller
	3351  VT3351 Host Bridge
	3353  VX800 PCI to PCI Bridge
	3364  CN896/VN896/P4M900 Host Bridge
	3371  CN896/VN896/P4M900 [Chrome 9 HC]
	3372  VT8237S PCI to ISA Bridge
	337a  VT8237A PCI to PCI Bridge
	337b  VT8237A Host Bridge
	3403  VT6315 Series Firewire Controller
	3409  VX855/VX875 DRAM Bus Control
	4149  VIA VT6420 (ATA133) Controller
	4204  K8M800 Host Bridge
	4208  PT890 Host Bridge
	4238  K8T890 Host Bridge
	4258  PT880 Host Bridge
	4259  CN333/CN400/PM880 Host Bridge
	4269  KT880 Host Bridge
	4282  K8T800Pro Host Bridge
	4290  K8M890 Host Bridge
	4293  PM896 Host Bridge
	4296  P4M800 Host Bridge
	4308  PT894 Host Bridge
	4314  CN700/VN800/P4M800CE/Pro Host Bridge
	4324  CX700/VX700 Host Bridge
	4327  P4M890 Host Bridge
	4336  K8M890CE Host Bridge
	4340  PT900 Host Bridge
	4351  VT3351 Host Bridge
	4353  VX800/VX820 Power Management Control
	4364  CN896/VN896/P4M900 Host Bridge
	4397  VT1708B/1702S/1708S HD audio codec
	4409  VX855/VX875 Power Management Control
	5030  VT82C596 ACPI [Apollo PRO]
	5122  VX855/VX875 Chrome 9 HCM Integrated Graphics
	5208  PT890 I/O APIC Interrupt Controller
	5238  K8T890 I/O APIC Interrupt Controller
	5287  VT8251 Serial ATA Controller
	5290  K8M890 I/O APIC Interrupt Controller
	5308  PT894 I/O APIC Interrupt Controller
	5324  VX800 Serial ATA and EIDE Controller
	5327  P4M890 I/O APIC Interrupt Controller
	5336  K8M890CE I/O APIC Interrupt Controller
	5340  PT900 I/O APIC Interrupt Controller
	5351  VT3351 I/O APIC Interrupt Controller
	5353  VX800/VX820 APIC and Central Traffic Control
	5364  CN896/VN896/P4M900 I/O APIC Interrupt Controller
	5409  VX855/VX875 APIC and Central Traffic Control
	6100  VT85C100A [Rhine II]
	6287  SATA RAID Controller
	6327  P4M890 Security Device
	6353  VX800/VX820 Scratch Registers
	6364  CN896/VN896/P4M900 Security Device
	6409  VX855/VX875 Scratch Registers
	7204  K8M800 Host Bridge
	7205  KM400/KN400/P4M800 [S3 UniChrome]
		1458 d000  Gigabyte GA-7VM400(A)M(F) Motherboard
		1462 7061  MS-7061
	7208  PT890 Host Bridge
	7238  K8T890 Host Bridge
	7258  PT880 Host Bridge
	7259  CN333/CN400/PM880 Host Bridge
	7269  KT880 Host Bridge
	7282  K8T800Pro Host Bridge
	7290  K8M890 Host Bridge
	7293  PM896 Host Bridge
	7296  P4M800 Host Bridge
	7308  PT894 Host Bridge
	7314  CN700/VN800/P4M800CE/Pro Host Bridge
	7324  CX700/VX700 Host Bridge
	7327  P4M890 Host Bridge
	7336  K8M890CE Host Bridge
	7340  PT900 Host Bridge
	7351  VT3351 Host Bridge
	7353  VX800/VX820 North-South Module Interface Control
	7364  CN896/VN896/P4M900 Host Bridge
	7409  VX855/VX875 North-South Module Interface Control
	8231  VT8231 [PCI-to-ISA Bridge]
	8235  VT8235 ACPI
	8305  VT8363/8365 [KT133/KM133 AGP]
	8324  CX700/VX700 PCI to ISA Bridge
	8353  VX800/VX820 Bus Control and Power Management
	8391  VT8371 [KX133 AGP]
	8400  MVP4
	8409  VX855/VX875 Bus Control and Power Management
	8500  KLE133/PLE133/PLE133T
	8501  VT8501 [Apollo MVP4 AGP]
	8596  VT82C596 [Apollo PRO AGP]
	8597  VT82C597 [Apollo VP3 AGP]
	8598  VT82C598/694x [Apollo MVP3/Pro133x AGP]
		1019 0985  P6VXA Motherboard
	8601  VT8601 [Apollo ProMedia AGP]
	8605  VT8605 [PM133 AGP]
	8691  VT82C691 [Apollo Pro]
	8693  VT82C693 [Apollo Pro Plus] PCI Bridge
	8a25  PL133/PL133T [S3 ProSavage]
	8a26  KL133/KL133A/KM133/KM133A [S3 ProSavage]
	8d01  PN133/PN133T [S3 Twister]
	8d04  KM266/P4M266/P4M266A/P4N266 [S3 ProSavageDDR]
	9530  Secure Digital Memory Card Controller
	95d0  SDIO Host Controller
	a208  PT890 PCI to PCI Bridge Controller
	a238  K8T890 PCI to PCI Bridge Controller
	a327  P4M890 PCI to PCI Bridge Controller
	a353  VX8xx South-North Module Interface Control
	a364  CN896/VN896/P4M900 PCI to PCI Bridge Controller
	a409  VX855/VX875 USB Device Controller
	b091  VT8633 [Apollo Pro266 AGP]
	b099  VT8366/A/7 [Apollo KT266/A/333 AGP]
	b101  VT8653 AGP Bridge
	b102  VT8362 AGP Bridge
	b103  VT8615 AGP Bridge
	b112  VT8361 [KLE133] AGP Bridge
	b113  VPX/VPX2 I/O APIC Interrupt Controller
	b115  VT8363/8365 [KT133/KM133] PCI Bridge
	b168  VT8235 PCI Bridge
	b188  VT8237 PCI bridge [K8T800/K8T890 South]
		147b 1407  KV8-MAX3 motherboard
	b198  VT8237/VX700 PCI Bridge
	b213  VPX/VPX2 I/O APIC Interrupt Controller
	b353  VX855/VX875 PCI to PCI Bridge
	b999  [K8T890 North / VT8237 South] PCI Bridge
	c208  PT890 PCI to PCI Bridge Controller
	c238  K8T890 PCI to PCI Bridge Controller
	c327  P4M890 PCI to PCI Bridge Controller
	c340  PT900 PCI to PCI Bridge Controller
	c353  VX800/VX820 PCI Express Root Port
	c364  CN896/VN896/P4M900 PCI to PCI Bridge Controller
	c409  VX855/VX875 EIDE Controller
	d104  VT8237R USB UDCI Controller
	d208  PT890 PCI to PCI Bridge Controller
	d213  VPX/VPX2 PCI to PCI Bridge Controller
	d238  K8T890 PCI to PCI Bridge Controller
	d340  PT900 PCI to PCI Bridge Controller
	e208  PT890 PCI to PCI Bridge Controller
	e238  K8T890 PCI to PCI Bridge Controller
	e340  PT900 PCI to PCI Bridge Controller
	e353  VX800/VX820 PCI Express Root Port
	e721  VT1708B 8-channel High Definition Audio CODEC
	f208  PT890 PCI to PCI Bridge Controller
	f238  K8T890 PCI to PCI Bridge Controller
	f340  PT900 PCI to PCI Bridge Controller
	f353  VX800/VX820 PCI Express Root Port
1107  Stratus Computers
	0576  VIA VT82C570MV [Apollo] (Wrong vendor ID!)
1108  Proteon, Inc.
	0100  p1690plus_AA
	0101  p1690plus_AB
	0105  P1690Plus
	0108  P1690Plus
	0138  P1690Plus
	0139  P1690Plus
	013c  P1690Plus
	013d  P1690Plus
1109  Cogent Data Technologies, Inc.
	1400  EM110TX [EX110TX]
110a  Siemens Nixdorf AG
	0002  Pirahna 2-port
	0005  Tulip controller, power management, switch extender
	0006  FSC PINC (I/O-APIC)
	0015  FSC Multiprocessor Interrupt Controller
	001d  FSC Copernicus Management Controller
	007b  FSC Remote Service Controller, mailbox device
	007c  FSC Remote Service Controller, shared memory device
	007d  FSC Remote Service Controller, SMIC device
	2101  HST SAPHIR V Primary PCI (ISDN/PMx)
# Superfastcom-PCI (Commtech, Inc.) or DSCC4 WAN Adapter
	2102  DSCC4 PEB/PEF 20534 DMA Supported Serial Communication Controller with 4 Channels
	2104  Eicon Diva 2.02 compatible passive ISDN card
	3141  SIMATIC NET CP 5611 (Profibus Adapter)
	3142  SIMATIC NET CP 5613A1 (Profibus Adapter)
	4021  SIMATIC NET CP 5512 (Profibus and MPI Cardbus Adapter)
	4029  SIMATIC NET CP 5613A2 (Profibus Adapter)
	4942  FPGA I-Bus Tracer for MBD
	6120  SZB6120
110b  Chromatic Research Inc.
	0001  Mpact Media Processor
	0004  Mpact 2
110c  Mini-Max Technology, Inc.
110d  Znyx Advanced Systems
110e  CPU Technology
110f  Ross Technology
1110  Powerhouse Systems
	6037  Firepower Powerized SMP I/O ASIC
	6073  Firepower Powerized SMP I/O ASIC
1111  Santa Cruz Operation
# Also claimed to be RNS or Rockwell International, current PCISIG records list Osicom
1112  Osicom Technologies Inc
	2200  FDDI Adapter
	2300  Fast Ethernet Adapter
	2340  4 Port Fast Ethernet Adapter
	2400  ATM Adapter
1113  Accton Technology Corporation
	1211  SMC2-1211TX
		103c 1207  EN-1207D Fast Ethernet Adapter
		1113 1211  EN-1207D Fast Ethernet Adapter
	1216  EN-1216 Ethernet Adapter
		1113 1216  EN1207F series PCI Fast Ethernet Adapter
		1113 2220  EN2220A Cardbus Fast Ethernet Adapter
		1113 2242  EN2242 10/100 Ethernet Mini-PCI Card
		111a 1020  SpeedStream 1020 PCI 10/100 Ethernet Adaptor [EN-1207F-TX ?]
	1217  EN-1217 Ethernet Adapter
	5105  10Mbps Network card
	9211  EN-1207D Fast Ethernet Adapter
		1113 9211  EN-1207D Fast Ethernet Adapter
	9511  21x4x DEC-Tulip compatible Fast Ethernet
	d301  CPWNA100 (Philips wireless PCMCIA)
	ec02  SMC 1244TX v3
	ee23  SMCWPCIT-G 108Mbps Wireless PCI adapter
1114  Atmel Corporation
	0506  at76c506 802.11b Wireless Network Adaptor
1115  3D Labs
1116  Data Translation
	0022  DT3001
	0023  DT3002
	0024  DT3003
	0025  DT3004
	0026  DT3005
	0027  DT3001-PGL
	0028  DT3003-PGL
	0051  DT322
	0060  DT340
	0069  DT332
1117  Datacube, Inc
	9500  Max-1C SVGA card
	9501  Max-1C image processing
1118  Berg Electronics
1119  ICP Vortex Computersysteme GmbH
	0000  GDT 6000/6020/6050
	0001  GDT 6000B/6010
	0002  GDT 6110/6510
	0003  GDT 6120/6520
	0004  GDT 6530
	0005  GDT 6550
	0006  GDT 6117/6517
	0007  GDT 6127/6527
	0008  GDT 6537
	0009  GDT 6557/6557-ECC
	000a  GDT 6115/6515
	000b  GDT 6125/6525
	000c  GDT 6535
	000d  GDT 6555/6555-ECC
	0100  GDT 6117RP/6517RP
	0101  GDT 6127RP/6527RP
	0102  GDT 6537RP
	0103  GDT 6557RP
	0104  GDT 6111RP/6511RP
	0105  GDT 6121RP/6521RP
	0110  GDT 6117RD/6517RD
	0111  GDT 6127RD/6527RD
	0112  GDT 6537RD
	0113  GDT 6557RD
	0114  GDT 6111RD/6511RD
	0115  GDT 6121RD/6521RD
	0118  GDT 6118RD/6518RD/6618RD
	0119  GDT 6128RD/6528RD/6628RD
	011a  GDT 6538RD/6638RD
	011b  GDT 6558RD/6658RD
	0120  GDT 6117RP2/6517RP2
	0121  GDT 6127RP2/6527RP2
	0122  GDT 6537RP2
	0123  GDT 6557RP2
	0124  GDT 6111RP2/6511RP2
	0125  GDT 6121RP2/6521RP2
	0136  GDT 6113RS/6513RS
	0137  GDT 6123RS/6523RS
	0138  GDT 6118RS/6518RS/6618RS
	0139  GDT 6128RS/6528RS/6628RS
	013a  GDT 6538RS/6638RS
	013b  GDT 6558RS/6658RS
	013c  GDT 6533RS/6633RS
	013d  GDT 6543RS/6643RS
	013e  GDT 6553RS/6653RS
	013f  GDT 6563RS/6663RS
	0166  GDT 7113RN/7513RN/7613RN
	0167  GDT 7123RN/7523RN/7623RN
	0168  GDT 7118RN/7518RN/7518RN
	0169  GDT 7128RN/7528RN/7628RN
	016a  GDT 7538RN/7638RN
	016b  GDT 7558RN/7658RN
	016c  GDT 7533RN/7633RN
	016d  GDT 7543RN/7643RN
	016e  GDT 7553RN/7653RN
	016f  GDT 7563RN/7663RN
	01d6  GDT 4x13RZ
	01d7  GDT 4x23RZ
	01f6  GDT 8x13RZ
	01f7  GDT 8x23RZ
	01fc  GDT 8x33RZ
	01fd  GDT 8x43RZ
	01fe  GDT 8x53RZ
	01ff  GDT 8x63RZ
	0210  GDT 6519RD/6619RD
	0211  GDT 6529RD/6629RD
	0260  GDT 7519RN/7619RN
	0261  GDT 7529RN/7629RN
	02ff  GDT MAXRP
	0300  GDT NEWRX
	0301  GDT NEWRX2
111a  Efficient Networks, Inc
	0000  155P-MF1 (FPGA)
	0002  155P-MF1 (ASIC)
	0003  ENI-25P ATM
		111a 0000  ENI-25p Miniport ATM Adapter
	0005  SpeedStream (LANAI)
		111a 0001  ENI-3010 ATM
		111a 0009  ENI-3060 ADSL (VPI=0)
		111a 0101  ENI-3010 ATM
		111a 0109  ENI-3060CO ADSL (VPI=0)
		111a 0809  ENI-3060 ADSL (VPI=0 or 8)
		111a 0909  ENI-3060CO ADSL (VPI=0 or 8)
		111a 0a09  ENI-3060 ADSL (VPI=<0..15>)
	0007  SpeedStream ADSL
		111a 1001  ENI-3061 ADSL [ASIC]
	1020  SpeedStream PCI 10/100 Network Card
	1203  SpeedStream 1023 Wireless PCI Adapter
111b  Teledyne Electronic Systems
111c  Tricord Systems Inc.
	0001  Powerbis Bridge
111d  Integrated Device Technology, Inc.
	0001  IDT77201/77211 155Mbps ATM SAR Controller [NICStAR]
	0003  IDT77222/77252 155Mbps ATM MICRO ABR SAR Controller
	0004  IDT77V252 155Mbps ATM MICRO ABR SAR Controller
	0005  IDT77V222 155Mbps ATM MICRO ABR SAR Controller
	8018  PES12N3A PCI Express Switch
	801c  PES24N3A PCI Express Switch
	8028  PES4T4 PCI Express Switch
	802b  PES8T5A PCI Express Switch
	802c  PES16T4 PCI Express Switch
	802d  PES16T7 PCI Express Switch
	802e  PES24T6 PCI Express Switch
	802f  PES32T8 PCI Express Switch
	8032  PES48T12 PCI Express Switch
	8034  PES16/22/34H16 PCI Express Switch
	8035  PES32H8 PCI Express Switch
	8036  PES48H12 PCI Express Switch
	8037  PES64H16 PCI Express Switch
	8039  PES3T3 PCI Express Switch
	803a  PES4T4 PCI Express Switch
	803c  PES5T5 PCI Express Switch
	803d  PES6T5 PCI Express Switch
	8048  PES8NT2 PCI Express Switch
	8049  PES8NT2 PCI Express Switch
	804a  PES8NT2 PCI Express Internal NTB
	804b  PES8NT2 PCI Express External NTB
	804c  PES16NT2 PCI Express Switch
	804d  PES16NT2 PCI Express Switch
	804e  PES16NT2 PCI Express Internal NTB
	804f  PES16NT2 PCI Express External NTB
	8058  PES12NT3 PCI Express Switch
	8059  PES12NT3 PCI Express Switch
	805a  PES12NT3 PCI Express Internal NTB
	805b  PES12NT3 PCI Express External NTB
	805c  PES24NT3 PCI Express Switch
	805d  PES24NT3 PCI Express Switch
	805e  PES24NT3 PCI Express Internal NTB
	805f  PES24NT3 PCI Express External NTB
	8060  PES16T4G2 PCI Express Gen2 Switch
	8061  PES12T3G2 PCI Express Gen2 Switch
	8068  PES6T6G2 PCI Express Gen2 Switch
	806a  PES24T3G2 PCI Express Gen2 Switch
		14c1 000c  10G-PCIE2-8B2
	806c  PES16T4A/4T4G2 PCI Express Gen2 Switch
	806e  PES24T6G2 PCI Express Gen2 Switch
	806f  HIO524G2 PCI Express Gen2 Switch
111e  Eldec
111f  Precision Digital Images
	4a47  Precision MX Video engine interface
	5243  Frame capture bus interface
1120  EMC Corporation
1121  Zilog
1122  Multi-tech Systems, Inc.
1123  Excellent Design, Inc.
1124  Leutron Vision AG
	2581  Picport Monochrome
1125  Eurocore
1126  Vigra
1127  FORE Systems Inc
	0200  ForeRunner PCA-200 ATM
	0210  PCA-200PC
	0250  ATM
	0300  ForeRunner PCA-200EPC ATM
	0310  ATM
	0400  ForeRunnerHE ATM Adapter
		1127 0400  ForeRunnerHE ATM
1129  Firmworks
112a  Hermes Electronics Company, Ltd.
112b  Linotype - Hell AG
112c  Zenith Data Systems
112d  Ravicad
112e  Infomedia Microelectronics Inc.
112f  Dalsa Inc.
	0000  MVC IC-PCI
	0001  MVC IM-PCI Video frame grabber/processor
	0008  PC-CamLink PCI framegrabber
1130  Computervision
1131  Philips Semiconductors
	1561  USB 1.1 Host Controller
		1775 c200  C2K onboard USB 1.1 host controller
	1562  USB 2.0 Host Controller
		1775 c200  C2K onboard USB 2.0 host controller
	3400  SmartPCI56(UCB1500) 56K Modem
	5400  TriMedia TM1000/1100
		12ca 0000  BlueICE
	5402  TriMedia TM1300
		1244 0f00  Fritz!Card DSL
		15eb 1300  DT1300
		15eb 1302  DT1302
		15eb 1304  DT1304
		15eb 1305  DT1305
		15eb 1306  PMCDT1306
		15eb 1308  DT1308
		15eb 1331  DT1301 with SAA7121
		15eb 1337  DT1301 with SAA7127
		15eb 2d3d  X3D
		15eb 7022  PTM1300
	5405  TriMedia TM1500
		1136 0005  LCP-1500
	5406  TriMedia TM1700
	540b  PNX1005 Media Processor
		1131 0020  PNXLite PCI Demo Board
	7130  SAA7130 Video Broadcast Decoder
		102b 48d0  Matrox CronosPlus
		1048 226b  ELSA EX-VISION 300TV
		107d 6655  WinFast DTV1000S
		1131 2001  10MOONS PCI TV CAPTURE CARD
		1131 2005  Techcom (India) TV Tuner Card (SSD-TV-670)
		1458 9006  GT-PS700 DVB-S tuner
		1461 050c  Nagase Sangyo TransGear 3000TV
		1461 10ff  AVerMedia DVD EZMaker
		1461 2108  AverMedia AverTV/305
		1461 2115  AverMedia AverTV Studio 305
		153b 1152  Terratec Cinergy 200 TV
		185b c100  Compro VideoMate TV PVR/FM
		185b c901  Videomate DVB-T200
		5168 0138  LifeView FlyVIDEO2000
	7133  SAA7131/SAA7133/SAA7135 Video Broadcast Decoder
		0000 4091  Beholder BeholdTV 409 FM
# Deleting vendor name after rereading submit instructions
		0070 6701  WinTV HVR-1110
		1019 4cb5  Elitegroup ECS TVP3XP FM1236 Tuner Card (NTSC,FM)
		1043 0210  FlyTV mini Asus Digimatrix
		1043 4843  ASUS TV-FM 7133
		1043 4845  TV-FM 7135
		1043 4862  P7131 Dual
		1043 4876  My Cinema-P7131 Hybrid
		1131 0000  KWorld V-Stream Studio TV Terminator
		1131 2001  Proteus Pro [philips reference design]
		1131 2018  Tiger reference design
		1131 4ee9  MonsterTV Mobile
		11bd 002b  PCTV Stereo
		11bd 002e  PCTV 110i (saa7133)
		12ab 0800  PURPLE TV
		13c2 2804  Technotrend Budget T-3000 Hybrid
		1421 0335  Instant TV DVB-T Cardbus
		1421 1370  Instant TV (saa7135)
		1435 7330  VFG7330
		1435 7350  VFG7350
		1458 9002  GT-PTV-TAF-RH DVB-T/Analog TV/FM tuner
		1458 9003  GT-PTV-AF-RH Analog TV/FM tuner
		1458 9004  GT-P8000 DVB-T/Analog TV/FM tuner
		1458 9005  GT-P6000 Analog TV/FM tuner
		1458 9008  GT-P5100 Analog TV tuner
		1461 1044  AVerTVHD MCE A180
		1461 4836  M10D Hybrid DVBT
		1461 861e  M105 PAL/SECAM/NTSC/FM Tuner
		1461 a14b  AVerTV Studio 509
		1461 a836  M115 DVB-T, PAL/SECAM/NTSC Tuner
		1461 f01d  DVB-T Super 007
		1461 f31f  Avermedia AVerTV GO 007 FM
		1461 f936  Hybrid+FM PCI (rev A16D)
		1462 6231  TV@nywhere Plus
		1489 0214  LifeView FlyTV Platinum FM
		14c0 1212  LifeView FlyTV Platinum Mini2
		153b 1160  Cinergy 250 PCI TV
		153b 1162  Terratec Cinergy 400 mobile
		17de 7350  ATSC 110 Digital / Analog HDTV Tuner
		17de 7352  ATSC 115 Digital / Analog HDTV Tuner
		185b c100  VideoMate TV
		185b c900  VideoMate T750
		5168 0306  LifeView FlyDVB-T DUO
		5168 0319  LifeView FlyDVB Trio
		5168 0502  LifeView FlyDVB-T Duo CardBus
		5168 0520  LifeView FlyDVB Trio CardBus
		5168 1502  LifeView FlyTV CardBus
		5168 2502  LifeView FlyDVB-T CardBus
		5168 2520  LifeView FlyDVB-S Duo CardBus
		5168 3502  LifeView FlyDVB-T Hybrid CardBus
		5168 3520  LifeView FlyDVB Trio N CardBus
	7134  SAA7134/SAA7135HL Video Broadcast Decoder
		1019 4cb4  Elitegroup ECS TVP3XP FM1216 Tuner Card(PAL-BG,FM)
		1043 0210  Digimatrix TV
		1043 4840  ASUS TV-FM 7134
		1043 4842  TV-FM 7134
		1131 2004  EUROPA V3 reference design
		1131 4e85  SKNet Monster TV
		1131 6752  EMPRESS
		11bd 002b  PCTV Stereo
		11bd 002d  PCTV 300i DVB-T + PAL
		1461 2c00  AverTV Hybrid+FM PCI
		1461 9715  AVerTV Studio 307
		1461 a70a  Avermedia AVerTV 307
		1461 a70b  AverMedia M156 / Medion 2819
		1461 d6ee  Cardbus TV/Radio (E500)
		1471 b7e9  AVerTV Cardbus plus
		153b 1142  Terratec Cinergy 400 TV
		153b 1143  Terratec Cinergy 600 TV
		153b 1158  Terratec Cinergy 600 TV MK3
		1540 9524  ProVideo PV952
		16be 0003  Medion 7134
		185b c200  Compro VideoMate Gold+ Pal
		185b c900  Videomate DVB-T300
		1894 a006  KNC One TV-Station DVR
		1894 fe01  KNC One TV-Station RDS / Typhoon TV Tuner RDS
		5168 0138  FLY TV PRIME 34FM
	7145  SAA7145
	7146  SAA7146
		110a 0000  Fujitsu/Siemens DVB-C card rev1.5
		110a ffff  Fujitsu/Siemens DVB-C card rev1.5
		1124 2581  Leutron Vision PicPort
		1131 4f56  KNC1 DVB-S Budget
		1131 4f60  Fujitsu-Siemens Activy DVB-S Budget Rev AL
		1131 4f61  Activy DVB-S Budget Rev GR
		1131 5f61  Activy DVB-T Budget
		114b 2003  DVRaptor Video Edit/Capture Card
		11bd 0006  DV500 Overlay
		11bd 000a  DV500 Overlay
		11bd 000f  DV500 Overlay
		13c2 0000  Siemens/Technotrend/Hauppauge DVB card rev1.3 or rev1.5
		13c2 0001  Technotrend/Hauppauge DVB card rev1.3 or rev1.6
		13c2 0002  Technotrend/Hauppauge DVB card rev2.1
		13c2 0003  Technotrend/Hauppauge DVB card rev2.1
		13c2 0004  Technotrend/Hauppauge DVB card rev2.1
		13c2 0006  Technotrend/Hauppauge DVB card rev1.3 or rev1.6
		13c2 0008  Technotrend/Hauppauge DVB-T
		13c2 000a  Octal/Technotrend DVB-C for iTV
		13c2 000e  Technotrend/Hauppauge DVB card rev2.3
		13c2 1003  Technotrend-Budget/Hauppauge WinTV-NOVA-S DVB card
		13c2 1004  Technotrend-Budget/Hauppauge WinTV-NOVA-C DVB card
		13c2 1005  Technotrend-Budget/Hauppauge WinTV-NOVA-T DVB card
		13c2 100c  Technotrend-Budget/Hauppauge WinTV-NOVA-CI DVB card
		13c2 100f  Technotrend-Budget/Hauppauge WinTV-NOVA-CI DVB card
		13c2 1011  Technotrend-Budget/Hauppauge WinTV-NOVA-T DVB card
		13c2 1012  DVB T-1500
		13c2 1013  SATELCO Multimedia DVB
		13c2 1016  WinTV-NOVA-SE DVB card
		13c2 1018  DVB S-1401
		13c2 1019  S2-3200
		13c2 1102  Technotrend/Hauppauge DVB card rev2.1
		153b 1155  Cinergy 1200 DVB-S
		153b 1156  Terratec Cynergy 1200C
		153b 1157  Cinergy 1200 DVB-T
		1894 0020  KNC One DVB-C V1.0
		1894 0023  TVStation DVB-C plus
	7160  SAA7160
		1458 9009  E8000 DVB-T/Analog TV/FM tuner
	7162  SAA7162
		11bd 0101  Pinnacle PCTV 7010iX TV Card
	9730  SAA9730 Integrated Multimedia and Peripheral Controller
		1131 0000  Integrated Multimedia and Peripheral Controller
1132  Mitel Corp.
1133  Dialogic Corporation
	7701  Eiconcard C90
	7711  Eiconcard C91
	7901  EiconCard S90
	7902  EiconCard S90
	7911  EiconCard S91
	7912  EiconCard S91
	7921  Eiconcard S92
	7941  EiconCard S94
	7942  EiconCard S94
	7943  EiconCard S94
	7944  EiconCard S94
	7945  Eiconcard S94
	7948  Eiconcard S94 64bit/66MHz
	9711  Eiconcard S91 V2
	9911  Eiconcard S91 V2
	9941  Eiconcard S94 V2
	9a41  Eiconcard S94 PCIe
	b921  EiconCard P92
	b922  EiconCard P92
	b923  EiconCard P92
	e001  Diva Pro 2.0 S/T
	e002  Diva 2.0 S/T PCI
	e003  Diva Pro 2.0 U
	e004  Diva 2.0 U PCI
	e005  Diva 2.01 S/T PCI
	e006  Diva CT S/T PCI
	e007  Diva CT U PCI
	e008  Diva CT Lite S/T PCI
	e009  Diva CT Lite U PCI
	e00a  Diva ISDN+V.90 PCI
	e00b  Diva ISDN PCI 2.02
	e00c  Diva 2.02 PCI U
	e00d  Diva Pro 3.0 PCI
	e00e  Diva ISDN+CT S/T PCI Rev 2
	e010  Diva Server BRI-2M PCI
		110a 0021  Fujitsu Siemens ISDN S0
	e011  Diva Server BRI S/T Rev 2
	e012  Diva Server 4BRI-8M PCI
	e013  4BRI
		1133 1300  Diva V-4BRI-8 PCI v2
		1133 e013  Diva 4BRI-8 PCI v2
	e014  Diva Server PRI-30M PCI
	e015  Diva PRI PCI v2
	e016  Diva Server Voice 4BRI PCI
	e017  Diva Server Voice 4BRI Rev 2
		1133 e017  Diva Server Voice 4BRI-8M 2.0 PCI
	e018  BRI
		1133 1800  Diva V-BRI-2 PCI v2
		1133 e018  Diva BRI-2 PCI v2
	e019  Diva Server Voice PRI Rev 2
		1133 e019  Diva Server Voice PRI 2.0 PCI
	e01a  Diva BRI-2FX PCI v2
	e01b  Diva Server Voice BRI-2M 2.0 PCI
		1133 e01b  Diva Server Voice BRI-2M 2.0 PCI
	e01c  PRI
		1133 1c01  Diva PRI/E1/T1-8 PCI v3
		1133 1c02  Diva PRI/T1-24 PCI(e) v3
		1133 1c03  Diva PRI/E1-30 PCI(e) v3
		1133 1c04  Diva PRI/E1/T1-CTI PCI(e) v3
		1133 1c05  Diva V-PRI/T1-24 PCI(e) v3
		1133 1c06  Diva V-PRI/E1-30 PCI(e) v3
		1133 1c07  Diva Server PRI/E1/T1-8 Cornet NQ
		1133 1c08  Diva Server PRI/T1-24 Cornet NQ
		1133 1c09  Diva Server PRI/E1-30 Cornet NQ
		1133 1c0a  Diva Server PRI/E1/T1 Cornet NQ
		1133 1c0b  Diva Server V-PRI/T1-24 Cornet NQ
		1133 1c0c  Diva Server V-PRI/E1-30 Cornet NQ
	e01e  2PRI
		1133 1e01  Diva 2PRI/E1/T1-60 PCI v1
		1133 e01e  Diva V-2PRI/E1/T1-60 PCI v1
	e020  4PRI
		1133 2001  Diva 4PRI/E1/T1-120 PCI v1
		1133 e020  Diva V-4PRI/E1/T1-120 PCI v1
	e022  Analog-2
		1133 2200  Diva V-Analog-2 PCI v1
		1133 e022  Diva Analog-2 PCI v1
	e024  Analog-4
		1133 2400  Diva V-Analog-4 PCI v1
		1133 e024  Diva Analog-4 PCI v1
	e028  Analog-8
		1133 2800  Diva V-Analog-8 PCI v1
		1133 e028  Diva Analog-8 PCI v1
	e02a  Diva IPM-300 PCI v1
	e02c  Diva IPM-600 PCI v1
	e02e  4BRI
		1133 2e01  Diva V-4BRI-8 PCIe v2
		1133 e02e  Diva 4BRI-8 PCIe v2
	e032  BRI
		1133 3201  Diva V-BRI-2 PCIe v2
		1133 e032  Diva BRI-2 PCIe v2
	e034  Diva BRI-CTI PCI v2
1134  Mercury Computer Systems
	0001  Raceway Bridge
	0002  Dual PCI to RapidIO Bridge
1135  Fuji Xerox Co Ltd
	0001  Printer controller
1136  Momentum Data Systems
	0002  PCI-JTAG
1137  Cisco Systems Inc
	0023  81 VIC PCIe Upstream Port
	0040  VIC PCIe Upstream Port
	0041  VIC PCIe Downstream Port
	0042  VIC Management Controller
		1137 0047  P81E PCIe
	0043  VIC Ethernet NIC
		1137 0047  P81E PCIe
		1137 0048  M81KR Mezzanine
	0044  VIC Ethernet NIC Dynamic
		1137 0047  P81E PCIe
		1137 0048  M81KR Mezzanine
	0045  VIC FCoE HBA
		1137 0047  P81E PCIe
		1137 0048  M81KR Mezzanine
1138  Ziatech Corporation
	8905  8905 [STD 32 Bridge]
1139  Dynamic Pictures, Inc
	0001  VGA Compatable 3D Graphics
113a  FWB Inc
113b  Network Computing Devices
113c  Cyclone Microsystems, Inc.
	0000  PCI-9060 i960 Bridge
	0001  PCI-SDK [PCI i960 Evaluation Platform]
	0911  PCI-911 [i960Jx-based Intelligent I/O Controller]
	0912  PCI-912 [i960CF-based Intelligent I/O Controller]
	0913  PCI-913
	0914  PCI-914 [I/O Controller w/ secondary PCI bus]
113d  Leading Edge Products Inc
113e  Sanyo Electric Co - Computer Engineering Dept
113f  Equinox Systems, Inc.
	0808  SST-64P Adapter
	1010  SST-128P Adapter
	80c0  SST-16P DB Adapter
	80c4  SST-16P RJ Adapter
	80c8  SST-16P Adapter
	8888  SST-4P Adapter
	9090  SST-8P Adapter
1140  Intervoice Inc
1141  Crest Microsystem Inc
1142  Alliance Semiconductor Corporation
	3210  AP6410
	6422  ProVideo 6422
	6424  ProVideo 6424
	6425  ProMotion AT25
	643d  ProMotion AT3D
1143  NetPower, Inc
1144  Cincinnati Milacron
	0001  Noservo controller
1145  Workbit Corporation
	8007  NinjaSCSI-32 Workbit
	f007  NinjaSCSI-32 KME
	f010  NinjaSCSI-32 Workbit
	f012  NinjaSCSI-32 Logitec
	f013  NinjaSCSI-32 Logitec
	f015  NinjaSCSI-32 Melco
	f020  NinjaSCSI-32 Sony PCGA-DVD51
	f021  NinjaPATA-32 Delkin Cardbus UDMA
	f024  NinjaPATA-32 Delkin Cardbus UDMA
	f103  NinjaPATA-32 Delkin Cardbus UDMA
1146  Force Computers
1147  Interface Corp
# Nee Schneider & Koch
1148  SysKonnect
	4000  FDDI Adapter
		0e11 b03b  Netelligent 100 FDDI DAS Fibre SC
		0e11 b03c  Netelligent 100 FDDI SAS Fibre SC
		0e11 b03d  Netelligent 100 FDDI DAS UTP
		0e11 b03e  Netelligent 100 FDDI SAS UTP
		0e11 b03f  Netelligent 100 FDDI SAS Fibre MIC
		1148 5521  FDDI SK-5521 (SK-NET FDDI-UP)
		1148 5522  FDDI SK-5522 (SK-NET FDDI-UP DAS)
		1148 5541  FDDI SK-5541 (SK-NET FDDI-FP)
		1148 5543  FDDI SK-5543 (SK-NET FDDI-LP)
		1148 5544  FDDI SK-5544 (SK-NET FDDI-LP DAS)
		1148 5821  FDDI SK-5821 (SK-NET FDDI-UP64)
		1148 5822  FDDI SK-5822 (SK-NET FDDI-UP64 DAS)
		1148 5841  FDDI SK-5841 (SK-NET FDDI-FP64)
		1148 5843  FDDI SK-5843 (SK-NET FDDI-LP64)
		1148 5844  FDDI SK-5844 (SK-NET FDDI-LP64 DAS)
	4200  Token Ring adapter
	4300  SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link)
		1148 9821  SK-9821 Gigabit Ethernet Server Adapter (SK-NET GE-T)
		1148 9822  SK-9822 Gigabit Ethernet Server Adapter (SK-NET GE-T dual link)
		1148 9841  SK-9841 Gigabit Ethernet Server Adapter (SK-NET GE-LX)
		1148 9842  SK-9842 Gigabit Ethernet Server Adapter (SK-NET GE-LX dual link)
		1148 9843  SK-9843 Gigabit Ethernet Server Adapter (SK-NET GE-SX)
		1148 9844  SK-9844 Gigabit Ethernet Server Adapter (SK-NET GE-SX dual link)
		1148 9861  SK-9861 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition)
		1148 9862  SK-9862 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition dual link)
		1148 9871  SK-9871 Gigabit Ethernet Server Adapter (SK-NET GE-ZX)
		1148 9872  SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link)
		1259 2970  AT-2970SX Gigabit Ethernet Adapter
		1259 2971  AT-2970LX Gigabit Ethernet Adapter
		1259 2972  AT-2970TX Gigabit Ethernet Adapter
		1259 2973  AT-2971SX Gigabit Ethernet Adapter
		1259 2974  AT-2971T Gigabit Ethernet Adapter
		1259 2975  AT-2970SX/2SC Gigabit Ethernet Adapter
		1259 2976  AT-2970LX/2SC Gigabit Ethernet Adapter
		1259 2977  AT-2970TX/2TX Gigabit Ethernet Adapter
	4320  SK-9871 V2.0 Gigabit Ethernet 1000Base-ZX Adapter, PCI64, Fiber ZX/SC
		1148 0121  Marvell RDK-8001 Adapter
		1148 0221  Marvell RDK-8002 Adapter
		1148 0321  Marvell RDK-8003 Adapter
		1148 0421  Marvell RDK-8004 Adapter
		1148 0621  Marvell RDK-8006 Adapter
		1148 0721  Marvell RDK-8007 Adapter
		1148 0821  Marvell RDK-8008 Adapter
		1148 0921  Marvell RDK-8009 Adapter
		1148 1121  Marvell RDK-8011 Adapter
		1148 1221  Marvell RDK-8012 Adapter
		1148 3221  SK-9521 V2.0 10/100/1000Base-T Adapter
		1148 5021  SK-9821 V2.0 Gigabit Ethernet 10/100/1000Base-T Adapter
		1148 5041  SK-9841 V2.0 Gigabit Ethernet 1000Base-LX Adapter
		1148 5043  SK-9843 V2.0 Gigabit Ethernet 1000Base-SX Adapter
		1148 5051  SK-9851 V2.0 Gigabit Ethernet 1000Base-SX Adapter
		1148 5061  SK-9861 V2.0 Gigabit Ethernet 1000Base-SX Adapter
		1148 5071  SK-9871 V2.0 Gigabit Ethernet 1000Base-ZX Adapter
		1148 9521  SK-9521 10/100/1000Base-T Adapter
	4400  SK-9Dxx Gigabit Ethernet Adapter
	4500  SK-9Mxx Gigabit Ethernet Adapter
	9000  SK-9S21 10/100/1000Base-T Server Adapter, PCI-X, Copper RJ-45
	9843  [Fujitsu] Gigabit Ethernet
	9e00  SK-9E21D 10/100/1000Base-T Adapter, Copper RJ-45
		1148 2100  SK-9E21 Server Adapter
		1148 21d0  SK-9E21D 10/100/1000Base-T Adapter
		1148 2200  SK-9E22 Server Adapter
		1148 8100  SK-9E81 Server Adapter
		1148 8200  SK-9E82 Server Adapter
		1148 9100  SK-9E91 Server Adapter
		1148 9200  SK-9E92 Server Adapter
1149  Win System Corporation
114a  VMIC
	5579  VMIPCI-5579 (Reflective Memory Card)
	5587  VMIPCI-5587 (Reflective Memory Card)
	6504  VMIC PCI 7755 FPGA
	7587  VMIVME-7587
114b  Canopus Co., Ltd
114c  Annabooks
114d  IC Corporation
114e  Nikon Systems Inc
114f  Digi International
	0002  AccelePort EPC
	0003  RightSwitch SE-6
	0004  AccelePort Xem
	0005  AccelePort Xr
	0006  AccelePort Xr,C/X
	0009  AccelePort Xr/J
	000a  AccelePort EPC/J
	000c  DataFirePRIme T1 (1-port)
	000d  SyncPort 2-Port (x.25/FR)
	0011  AccelePort 8r EIA-232 (IBM)
	0012  AccelePort 8r EIA-422
	0013  AccelePort Xr
	0014  AccelePort 8r EIA-422
	0015  AccelePort Xem
	0016  AccelePort EPC/X
	0017  AccelePort C/X
	001a  DataFirePRIme E1 (1-port)
	001b  AccelePort C/X (IBM)
	001c  AccelePort Xr (SAIP)
	001d  DataFire RAS T1/E1/PRI
		114f 0050  DataFire RAS E1 Adapter
		114f 0051  DataFire RAS Dual E1 Adapter
		114f 0052  DataFire RAS T1 Adapter
		114f 0053  DataFire RAS Dual T1 Adapter
	0023  AccelePort RAS
	0024  DataFire RAS B4 ST/U
		114f 0030  DataFire RAS BRI U Adapter
		114f 0031  DataFire RAS BRI S/T Adapter
	0026  AccelePort 4r 920
	0027  AccelePort Xr 920
	0028  ClassicBoard 4
	0029  ClassicBoard 8
	0034  AccelePort 2r 920
	0035  DataFire DSP T1/E1/PRI cPCI
	0040  AccelePort Xp
		114f 0042  AccelePort 2p PCI
		114f 0043  AccelePort 4p PCI
		114f 0044  AccelePort 8p PCI
		114f 0045  AccelePort 16p PCI
		114f 004e  AccelePort 32p PCI
	0042  AccelePort 2p
	0043  AccelePort 4p
	0044  AccelePort 8p
	0045  AccelePort 16p
	004e  AccelePort 32p
	0070  Datafire Micro V IOM2 (Europe)
	0071  Datafire Micro V (Europe)
	0072  Datafire Micro V IOM2 (North America)
	0073  Datafire Micro V (North America)
	00b0  Digi Neo 4
	00b1  Digi Neo 8
	00c8  Digi Neo 2 DB9
	00c9  Digi Neo 2 DB9 PRI
	00ca  Digi Neo 2 RJ45
	00cb  Digi Neo 2 RJ45 PRI
	00cc  Digi Neo 1 422
	00cd  Digi Neo 1 422 485
	00ce  Digi Neo 2 422 485
	00d0  ClassicBoard 4 422
	00d1  ClassicBoard 8 422
	00f1  Digi Neo PCI-E 4 port
	00f4  Digi Neo 4 (IBM version)
	6001  Avanstar
1150  Thinking Machines Corp
1151  JAE Electronics Inc.
1152  Megatek
1153  Land Win Electronic Corp
1154  Melco Inc
1155  Pine Technology Ltd
1156  Periscope Engineering
1157  Avsys Corporation
1158  Voarx R & D Inc
	3011  Tokenet/vg 1001/10m anylan
	9050  Lanfleet/Truevalue
	9051  Lanfleet/Truevalue
1159  Mutech Corp
	0001  MV-1000
	0002  MV-1500
115a  Harlequin Ltd
115b  Parallax Graphics
115c  Photron Ltd.
115d  Xircom
	0003  Cardbus Ethernet 10/100
		1014 0181  10/100 EtherJet Cardbus Adapter
		1014 1181  10/100 EtherJet Cardbus Adapter
		1014 8181  10/100 EtherJet Cardbus Adapter
		1014 9181  10/100 EtherJet Cardbus Adapter
		115d 0181  Cardbus Ethernet 10/100
		115d 0182  RealPort2 CardBus Ethernet 10/100 (R2BE-100)
		115d 1181  Cardbus Ethernet 10/100
		1179 0181  Cardbus Ethernet 10/100
		8086 8181  EtherExpress PRO/100 Mobile CardBus 32 Adapter
		8086 9181  EtherExpress PRO/100 Mobile CardBus 32 Adapter
	0005  Cardbus Ethernet 10/100
		1014 0182  10/100 EtherJet Cardbus Adapter
		1014 1182  10/100 EtherJet Cardbus Adapter
		115d 0182  Cardbus Ethernet 10/100
		115d 1182  Cardbus Ethernet 10/100
	0007  Cardbus Ethernet 10/100
		1014 0182  10/100 EtherJet Cardbus Adapter
		1014 1182  10/100 EtherJet Cardbus Adapter
		115d 0182  Cardbus Ethernet 10/100
		115d 1182  Cardbus Ethernet 10/100
	000b  Cardbus Ethernet 10/100
		1014 0183  10/100 EtherJet Cardbus Adapter
		115d 0183  Cardbus Ethernet 10/100
	000c  Mini-PCI V.90 56k Modem
	000f  Cardbus Ethernet 10/100
		1014 0183  10/100 EtherJet Cardbus Adapter
		115d 0183  Cardbus Ethernet 10/100
	00d4  Mini-PCI K56Flex Modem
	0101  Cardbus 56k modem
		115d 1081  Cardbus 56k Modem
	0103  Cardbus Ethernet + 56k Modem
		1014 9181  Cardbus 56k Modem
		1115 1181  Cardbus Ethernet 100 + 56k Modem
		115d 1181  CBEM56G-100 Ethernet + 56k Modem
		8086 9181  PRO/100 LAN + Modem56 CardBus
115e  Peer Protocols Inc
115f  Maxtor Corporation
1160  Megasoft Inc
1161  PFU Limited
1162  OA Laboratory Co Ltd
1163  Rendition
	0001  Verite 1000
	2000  Verite V2000/V2100/V2200
		1092 2000  Stealth II S220
1164  Advanced Peripherals Technologies
1165  Imagraph Corporation
	0001  Motion TPEG Recorder/Player with audio
# nee ServerWorks
1166  Broadcom
	0000  CMIC-LE
	0005  CNB20-LE Host Bridge
	0006  CNB20HE Host Bridge
	0007  CNB20-LE Host Bridge
	0008  CNB20HE Host Bridge
	0009  CNB20LE Host Bridge
	0010  CIOB30
	0011  CMIC-HE
	0012  CMIC-WS Host Bridge (GC-LE chipset)
	0013  CNB20-HE Host Bridge
	0014  CMIC-LE Host Bridge (GC-LE chipset)
	0015  CMIC-GC Host Bridge
	0016  CMIC-GC Host Bridge
	0017  GCNB-LE Host Bridge
	0031  HT1100 HPX0 HT Host Bridge
	0036  BCM5785 [HT1000] PCI/PCI-X Bridge
	0101  CIOB-X2 PCI-X I/O Bridge
	0103  EPB PCI-Express to PCI-X Bridge
	0104  BCM5785 [HT1000] PCI/PCI-X Bridge
	0110  CIOB-E I/O Bridge with Gigabit Ethernet
	0130  BCM5780 [HT2000] PCI-X bridge
	0132  BCM5780 [HT2000] PCI-Express Bridge
		1166 0132  HT2000 PCI-Express bridge
	0140  HT2100 PCI-Express Bridge
	0141  HT2100 PCI-Express Bridge
	0142  HT2100 PCI-Express Bridge
	0144  HT2100 PCI-Express Bridge
	0200  OSB4 South Bridge
	0201  CSB5 South Bridge
		4c53 1080  CT8 mainboard
	0203  CSB6 South Bridge
		1734 1012  PRIMERGY RX/TX series
	0205  BCM5785 [HT1000] Legacy South Bridge
	0211  OSB4 IDE Controller
	0212  CSB5 IDE Controller
		1028 014a  PowerEdge 1750
		1028 810b  PowerEdge 1650/2550
		4c53 1080  CT8 mainboard
	0213  CSB6 RAID/IDE Controller
		1028 4134  PowerEdge 600SC
		1028 c134  Poweredge SC600
		1734 1012  PRIMERGY RX/TX series onboard IDE
	0214  BCM5785 [HT1000] IDE
		1028 0205  PowerEdge 2970 HT1000 IDE
	0217  CSB6 IDE Controller
		1028 4134  Poweredge SC600
	021b  HT1100 HD Audio
	0220  OSB4/CSB5 OHCI USB Controller
		4c53 1080  CT8 mainboard
	0221  CSB6 OHCI USB Controller
		1734 1012  PRIMERGY RX/TX series onboard OHCI
	0223  BCM5785 [HT1000] USB
		1028 0205  PowerEdge 2970 HT1000 USB Controller
		1028 020b  PowerEdge T605 HT1000 USB Controller
	0225  CSB5 LPC bridge
		1166 0230  Dell PowerEdge 1650/1750
	0227  GCLE-2 Host Bridge
		1734 1012  PRIMERGY RX/TX series
	0230  CSB5 LPC bridge
		4c53 1080  CT8 mainboard
	0234  BCM5785 [HT1000] LPC
		1028 0205  PowerEdge 2970 HT1000 LPC
		1028 020b  PowerEdge T605 HT1000 LPC
	0235  BCM5785 [HT1000] XIOAPIC0-2
	0238  BCM5785 [HT1000] WDTimer
	0240  K2 SATA
	0241  RAIDCore RC4000
	0242  RAIDCore BC4000
	024a  BCM5785 [HT1000] SATA (Native SATA Mode)
		1028 020b  PowerEdge T605 onboard SATA Controller
# The device starts as 024A, and changes to 024B if set to PATA mode in BIOS
	024b  BCM5785 [HT1000] SATA (PATA/IDE Mode)
		1028 0205  PowerEdge 2970 HT1000 SATA controller
	0406  HT1100 PCI-X Bridge
	0408  HT1100 Legacy Device
	040a  HT1100 ISA-LPC Bridge
		1028 0223  PowerEdge R905 HT1100 ISA-LPC Bridge
	0410  HT1100 SATA Controller (Native SATA Mode)
	0411  HT1100 SATA Controller (PATA / IDE Mode)
	0412  HT1100 USB OHCI Controller
	0414  HT1100 USB EHCI Controller
	0416  HT1100 USB EHCI Controller (with Debug Port)
	0420  HT1100 PCI-Express Bridge
	0421  HT1100 SAS/SATA Controller
	0422  HT1100 PCI-Express Bridge
1167  Mutoh Industries Inc
1168  Thine Electronics Inc
1169  Centre for Development of Advanced Computing
# nee Polaris Communications
116a  Luminex Software, Inc.
	6100  Bus/Tag Channel
	6800  Escon Channel
	7100  Bus/Tag Channel
	7800  Escon Channel
116b  Connectware Inc
116c  Intelligent Resources Integrated Systems
116d  Martin-Marietta
116e  Electronics for Imaging
116f  Workstation Technology
1170  Inventec Corporation
1171  Loughborough Sound Images Plc
1172  Altera Corporation
1173  Adobe Systems, Inc
1174  Bridgeport Machines
1175  Mitron Computer Inc.
1176  SBE Incorporated
1177  Silicon Engineering
1178  Alfa, Inc.
	afa1  Fast Ethernet Adapter
1179  Toshiba America Info Systems
	0102  Extended IDE Controller
	0103  EX-IDE Type-B
	0404  DVD Decoder card
	0406  Tecra Video Capture device
	0407  DVD Decoder card (Version 2)
	0601  CPU to PCI bridge
		1179 0001  Satellite Pro
	0603  ToPIC95 PCI to CardBus Bridge for Notebooks
	060a  ToPIC95
		1179 0001  Satellite Pro
	060f  ToPIC97
		1179 0001  Satellite 4010
	0617  ToPIC100 PCI to Cardbus Bridge with ZV Support
	0618  CPU to PCI and PCI to ISA bridge
	0701  FIR Port Type-O
	0804  TC6371AF SmartMedia Controller
	0805  SD TypA Controller
	0d01  FIR Port Type-DO
		1179 0001  FIR Port Type-DO
117a  A-Trend Technology
117b  L G Electronics, Inc.
117c  Atto Technology
	002c  SAS RAID Adapter
	0030  Ultra320 SCSI Host Adapter
		117c 8013  ExpressPCI UL4D
		117c 8014  ExpressPCI UL4S
		117c 8027  ExpressPCI UL5D
		117c 802f  ExpressPCI UL5D Low Profile
	0033  SAS Adapter
117d  Becton & Dickinson
117e  T/R Systems
117f  Integrated Circuit Systems
1180  Ricoh Co Ltd
	0465  RL5c465
	0466  RL5c466
	0475  RL5c475
		144d c006  vpr Matrix 170B4 CardBus bridge
	0476  RL5c476 II
		1014 0185  ThinkPad A/T/X Series
		1014 056c  ThinkPad Z60t
		1028 014f  Latitude X300 laptop
		1028 0188  Inspiron 6000 laptop
		103c 30c0  Compaq 6710b
		103c 30c1  Compaq 6910p
		1043 1237  A6J-Q008
		1043 1967  V6800V
		1043 1987  Asus A4K and Z81K notebooks, possibly others ( mid-2005 machines )
		104d 80df  Vaio PCG-FX403
		104d 80e7  VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP
		104d 814e  VAIO GRZ390Z
		10f7 8338  Panasonic CF-Y5 laptop
		144d c005  X10 Laptop
		144d c00c  P30/P35 notebook
		14ef 0220  PCD-RP-220S
		17aa 201c  ThinkPad X60s
		17aa 20c4  ThinkPad T61
	0477  RL5c477
	0478  RL5c478
		1014 0184  ThinkPad A30p
	0511  R5C511
	0522  R5C522 IEEE 1394 Controller
		1014 01cf  ThinkPad A30p
		1043 1967  V6800V
	0551  R5C551 IEEE 1394 Controller
		144d c006  vpr Matrix 170B4
	0552  R5C552 IEEE 1394 Controller
		1014 0511  ThinkPad A/T/X Series
		1028 014f  Latitude X300 laptop
		1028 0188  Inspiron 6000 laptop
		1043 1237  A6J-Q008
		144d c005  X10 Laptop
		144d c00c  P30/P35 notebook
		17aa 201e  ThinkPad X60s
	0554  R5C554
	0575  R5C575 SD Bus Host Adapter
	0576  R5C576 SD Bus Host Adapter
	0592  R5C592 Memory Stick Bus Host Adapter
		1025 0121  Aspire 5920G
		1028 01d7  XPS M1210
		1028 01f3  Inspiron 1420
		103c 30b5  Presario V3242AU
		103c 30b7  Presario V6133CL
		1043 1237  A6J-Q008
		1043 1967  V6800V
		144d c018  X20 IV
		17aa 20ca  ThinkPad T61
	0811  R5C811
	0822  R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter
		1014 0556  ThinkPad X60s / Z60t
		1014 0598  ThinkPad Z60m
		1025 0121  Aspire 5920G
		1028 0188  Inspiron 6000 laptop
		1028 01a2  Inspiron 9200
		1028 01d7  XPS M1210
		1028 01f3  Inspiron 1420
		103c 03b5  Presario V3242AU
		103c 30b7  Presario V6133CL
		103c 30c1  Compaq 6910p
		1043 1237  A6J-Q008
		1043 1967  ASUS V6800V
		10f7 8338  Panasonic CF-Y5 laptop
		144d c018  X20 IV
		17aa 201d  ThinkPad X60s
		17aa 20c7  ThinkPad T61
	0832  R5C832 IEEE 1394 Controller
		1025 0121  Aspire 5920G
		1028 01d7  XPS M1210
		1028 01f3  Inspiron 1420
		103c 30b5  Presario V3242AU
		103c 30b7  Presario V6133CL
		103c 30c1  Compaq 6910p
	0841  R5C841 CardBus/SD/SDIO/MMC/MS/MSPro/xD/IEEE1394
	0843  R5C843 MMC Host Controller
		1025 0121  Aspire 5920G
		1028 01d7  XPS M1210
		1028 01f3  Inspiron 1420
		1028 01f5  Dell Inspiron 1501
		103c 03b5  Presario V3242AU
		103c 30b7  Presario V6133CL
		1183 0843  Alienware Aurora m9700
	0852  xD-Picture Card Controller
		1025 0121  Aspire 5920G
		1028 01f3  Inspiron 1420
		103c 30b5  Presario V3242AU
		103c 30b7  Presario V6133CL
		1043 1967  V6800V
		1180 0852  Pavilion 2410us
		1324 10cf  P7120
1181  Telmatics International
1183  Fujikura Ltd
1184  Forks Inc
1185  Dataworld International Ltd
1186  D-Link System Inc
	0100  DC21041
	1002  DL10050 Sundance Ethernet
		1186 1002  DFE-550TX/FX
		1186 1012  DFE-580TX
	1025  AirPlus Xtreme G DWL-G650 Adapter
	1026  AirXpert DWL-AG650 Wireless Cardbus Adapter
	1043  AirXpert DWL-AG650 Wireless Cardbus Adapter
	1300  RTL8139 Ethernet
		1186 1300  DFE-538TX 10/100 Ethernet Adapter
		1186 1301  DFE-530TX+ 10/100 Ethernet Adapter
		1186 1303  DFE-528TX 10/100 Fast Ethernet PCI Adapter
	1340  DFE-690TXD CardBus PC Card
	1405  DFE-520TX Fast Ethernet PCI Adapter
	1540  DFE-680TX
	1541  DFE-680TXD CardBus PC Card
	1561  DRP-32TXD Cardbus PC Card
	2027  AirPlus Xtreme G DWL-G520 Adapter
	3203  AirPlus Xtreme G DWL-G520 Adapter
	3300  DWL-510 2.4GHz Wireless PCI Adapter
	3a03  AirPro DWL-A650 Wireless Cardbus Adapter(rev.B)
	3a04  AirPro DWL-AB650 Multimode Wireless Cardbus Adapter
	3a05  AirPro DWL-AB520 Multimode Wireless PCI Adapter
	3a07  AirXpert DWL-AG650 Wireless Cardbus Adapter
	3a08  AirXpert DWL-AG520 Wireless PCI Adapter
	3a10  AirXpert DWL-AG650 Wireless Cardbus Adapter(rev.B)
	3a11  AirXpert DWL-AG520 Wireless PCI Adapter(rev.B)
	3a12  AirPlus DWL-G650 Wireless Cardbus Adapter(rev.C)
	3a13  AirPlus DWL-G520 Wireless PCI Adapter(rev.B)
	3a14  AirPremier DWL-AG530 Wireless PCI Adapter
	3a63  AirXpert DWL-AG660 Wireless Cardbus Adapter
	3a70  DWA-556 Xtreme N PCI Express Desktop Adapter
	3c00  D-link DWL-G650X
	3c09  AirPlus G DWL-G510
	4000  DL2000-based Gigabit Ethernet
	4001  DGE-550SX PCI-X Gigabit Ethernet Adapter
	4300  DGE-528T Gigabit Ethernet Adapter
# There are at least 3 revisions of this adapter; 4800 is board revision A1 as far as I can tell, revision B1 is 4c00.
	4800  DGE-530T Gigabit Ethernet Adapter (rev 11)
	4b00  DGE-560T PCI Express Gigabit Ethernet Adapter
	4b01  DGE-530T Gigabit Ethernet Adapter (rev 11)
	4b02  DGE-560SX PCI Express Gigabit Ethernet Adapter
	4b03  DGE-550T Gigabit Ethernet Adapter V.B1
	4c00  Gigabit Ethernet Adapter
		1186 4c00  DGE-530T Gigabit Ethernet Adapter
	8400  D-Link DWL-650+ CardBus PC Card
1187  Advanced Technology Laboratories, Inc.
1188  Shima Seiki Manufacturing Ltd.
1189  Matsushita Electronics Co Ltd
118a  Hilevel Technology
118b  Hypertec Pty Limited
118c  Corollary, Inc
	0014  PCIB [C-bus II to PCI bus host bridge chip]
	1117  Intel 8-way XEON Profusion Chipset [Cache Coherency Filter]
118d  BitFlow Inc
	0001  Raptor-PCI framegrabber
	0012  Model 12 Road Runner Frame Grabber
	0014  Model 14 Road Runner Frame Grabber
	0024  Model 24 Road Runner Frame Grabber
	0044  Model 44 Road Runner Frame Grabber
	0112  Model 12 Road Runner Frame Grabber
	0114  Model 14 Road Runner Frame Grabber
	0124  Model 24 Road Runner Frame Grabber
	0144  Model 44 Road Runner Frame Grabber
	0212  Model 12 Road Runner Frame Grabber
	0214  Model 14 Road Runner Frame Grabber
	0224  Model 24 Road Runner Frame Grabber
	0244  Model 44 Road Runner Frame Grabber
	0312  Model 12 Road Runner Frame Grabber
	0314  Model 14 Road Runner Frame Grabber
	0324  Model 24 Road Runner Frame Grabber
	0344  Model 44 Road Runner Frame Grabber
118e  Hermstedt GmbH
118f  Green Logic
1190  Tripace
	c731  TP-910/920/940 PCI Ultra(Wide) SCSI Adapter
1191  Artop Electronic Corp
	0003  SCSI Cache Host Adapter
	0004  ATP8400
	0005  ATP850UF
	0006  ATP860 NO-BIOS
	0007  ATP860
	0008  ATP865 NO-ROM
	0009  ATP865
	000a  ATP867-A
	000b  ATP867-B
	000d  ATP8620
	000e  ATP8620
	8002  AEC6710 SCSI-2 Host Adapter
	8010  AEC6712UW SCSI
	8020  AEC6712U SCSI
	8030  AEC6712S SCSI
	8040  AEC6712D SCSI
	8050  AEC6712SUW SCSI
	8060  AEC6712 SCSI
	8080  AEC67160 SCSI
	8081  AEC67160S SCSI
	808a  AEC67162 2-ch. LVD SCSI
1192  Densan Company Ltd
1193  Zeitnet Inc.
	0001  1221
	0002  1225
1194  Toucan Technology
1195  Ratoc System Inc
1196  Hytec Electronics Ltd
1197  Gage Applied Sciences, Inc.
	010c  CompuScope 82G 8bit 2GS/s Analog Input Card
1198  Lambda Systems Inc
1199  Attachmate Corporation
	6832  Sierra Wireless MC8780 Device
119a  Mind Share, Inc.
119b  Omega Micro Inc.
	1221  82C092G
119c  Information Technology Inst.
119d  Bug, Inc. Sapporo Japan
119e  Fujitsu Microelectronics Ltd.
	0001  FireStream 155
	0003  FireStream 50
119f  Bull HN Information Systems
11a0  Convex Computer Corporation
11a1  Hamamatsu Photonics K.K.
11a2  Sierra Research and Technology
11a3  Deuretzbacher GmbH & Co. Eng. KG
11a4  Barco Graphics NV
11a5  Microunity Systems Eng. Inc
11a6  Pure Data Ltd.
11a7  Power Computing Corp.
11a8  Systech Corp.
11a9  InnoSys Inc.
	4240  AMCC S933Q Intelligent Serial Card
11aa  Actel
# Nee Galileo Technology, Inc.
11ab  Marvell Technology Group Ltd.
	0146  GT-64010/64010A System Controller
	0f53  88E6318 Link Street network controller
	11ab  MV88SE614x SATA II PCI-E controller
	138f  W8300 802.11 Adapter (rev 07)
	1fa6  Marvell W8300 802.11 Adapter
		1186 3b08  AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.A1)
	1fa7  88W8310 and 88W8000G [Libertas] 802.11g client chipset
	1faa  88w8335 [Libertas] 802.11b/g Wireless
		1385 4e00  WG511v2 54 Mbps Wireless PC Card
		1385 6b00  WG311v3 802.11g Wireless PCI Adapter
		1737 0040  WPC54G v5 802.11g Wireless-G Notebook Adapter
	2211  88SB2211 PCI Express to PCI Bridge
	2a01  88W8335 [Libertas] 802.11b/g Wireless
	2a02  88W8361 [TopDog] 802.11n Wireless
	2a0c  88W8363 [TopDog] 802.11n Wireless
	2a30  88W8687 [TopDog] 802.11b/g Wireless
	2a40  88W8366 [TopDog] 802.11n Wireless
	2a43  88W8366 [TopDog] 802.11n Wireless
	4101  OLPC Cafe Controller Secure Digital Controller
	4320  88E8001 Gigabit Ethernet Controller
		1019 0f38  Marvell 88E8001 Gigabit Ethernet Controller (ECS)
		1019 8001  Marvell 88E8001 Gigabit Ethernet Controller (ECS)
		1043 173c  Marvell 88E8001 Gigabit Ethernet Controller (Asus)
		1043 811a  Marvell 88E8001 Gigabit Ethernet Controller (Asus)
		105b 0c19  Marvell 88E8001 Gigabit Ethernet Controller (Foxconn)
		10b8 b452  EZ Card 1000 (SMC9452TXV.2)
		11ab 0121  Marvell RDK-8001
		11ab 0321  Marvell RDK-8003
		11ab 1021  Marvell RDK-8010
		11ab 4320  Marvell Yukon Gigabit Ethernet 10/100/1000Baset-T Constroller (Asus)
		11ab 5021  Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Controller (64 bit)
		11ab 9521  Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Controller (32 bit)
		1458 e000  Marvell 88E8001 Gigabit Ethernet Controller (Gigabyte)
		147b 1406  Marvell 88E8001 Gigabit Ethernet Controller (Abit)
		15d4 0047  Marvell 88E8001 Gigabit Ethernet Controller (Iwill)
		1695 9025  Marvell 88E8001 Gigabit Ethernet Controller (Epox)
		17f2 1c03  Marvell 88E8001 Gigabit Ethernet Controller (Albatron)
		270f 2803  Marvell 88E8001 Gigabit Ethernet Controller (Chaintech)
	4340  88E8021 PCI-X IPMI Gigabit Ethernet Controller
	4341  88E8022 PCI-X IPMI Gigabit Ethernet Controller
	4342  88E8061 PCI-E IPMI Gigabit Ethernet Controller
	4343  88E8062 PCI-E IPMI Gigabit Ethernet Controller
	4344  88E8021 PCI-X IPMI Gigabit Ethernet Controller
	4345  88E8022 PCI-X IPMI Gigabit Ethernet Controller
	4346  88E8061 PCI-E IPMI Gigabit Ethernet Controller
	4347  88E8062 PCI-E IPMI Gigabit Ethernet Controller
		4c53 10d0  Telum ASLP10 PrAMC Gigabit Ethernet
	4350  88E8035 PCI-E Fast Ethernet Controller
		1179 0001  Marvell 88E8035 Fast Ethernet Controller (Toshiba)
		11ab 3521  Marvell RDK-8035
		1854 000d  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 000e  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 000f  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 0011  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 0012  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 0016  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 0017  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 0018  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 0019  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 001c  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 001e  Marvell 88E8035 Fast Ethernet Controller (LGE)
		1854 0020  Marvell 88E8035 Fast Ethernet Controller (LGE)
	4351  88E8036 PCI-E Fast Ethernet Controller
		107b 4009  Marvell 88E8036 Fast Ethernet Controller (Wistron)
		10f7 8338  Marvell 88E8036 Fast Ethernet Controller (Panasonic)
		1179 0001  Marvell 88E8036 Fast Ethernet Controller (Toshiba)
		1179 ff00  Marvell 88E8036 Fast Ethernet Controller (Compal)
		1179 ff10  Marvell 88E8036 Fast Ethernet Controller (Inventec)
		11ab 3621  Marvell RDK-8036
		13d1 ac12  Abocom EFE3K - 10/100 Ethernet Expresscard
		161f 203d  Marvell 88E8036 Fast Ethernet Controller (Arima)
		1854 000d  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 000e  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 000f  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 0011  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 0012  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 0016  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 0017  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 0018  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 0019  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 001c  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 001e  Marvell 88E8036 Fast Ethernet Controller (LGE)
		1854 0020  Marvell 88E8036 Fast Ethernet Controller (LGE)
	4352  88E8038 PCI-E Fast Ethernet Controller
	4353  88E8039 PCI-E Fast Ethernet Controller
	4354  88E8040 PCI-E Fast Ethernet Controller
	4355  88E8040T PCI-E Fast Ethernet Controller
	4356  88EC033 PCI-E Fast Ethernet Controller
	4357  88E8042 PCI-E Fast Ethernet Controller
	435a  88E8048 PCI-E Fast Ethernet Controller
	4360  88E8052 PCI-E ASF Gigabit Ethernet Controller
		1043 8134  Marvell 88E8052 Gigabit Ethernet Controller (Asus)
		107b 4009  Marvell 88E8052 Gigabit Ethernet Controller (Wistron)
		11ab 5221  Marvell RDK-8052
		1458 e000  Marvell 88E8052 Gigabit Ethernet Controller (Gigabyte)
		1462 052c  Marvell 88E8052 Gigabit Ethernet Controller (MSI)
		1849 8052  Marvell 88E8052 Gigabit Ethernet Controller (ASRock)
		a0a0 0509  Marvell 88E8052 Gigabit Ethernet Controller (Aopen)
	4361  88E8050 PCI-E ASF Gigabit Ethernet Controller
		107b 3015  Marvell 88E8050 Gigabit Ethernet Controller (Gateway)
		11ab 5021  Marvell 88E8050 Gigabit Ethernet Controller (Intel)
		8086 3063  D925XCVLK mainboard
		8086 3439  Marvell 88E8050 Gigabit Ethernet Controller (Intel)
	4362  88E8053 PCI-E Gigabit Ethernet Controller
		103c 2a0d  Marvell 88E8053 Gigabit Ethernet Controller (Asus)
		1043 8142  Marvell 88E8053 Gigabit Ethernet controller PCIe (Asus)
		109f 3197  Marvell 88E8053 Gigabit Ethernet Controller (Trigem)
		10f7 8338  Marvell 88E8053 Gigabit Ethernet Controller (Panasonic)
		10fd a430  Marvell 88E8053 Gigabit Ethernet Controller (SOYO)
		1179 0001  Marvell 88E8053 Gigabit Ethernet Controller (Toshiba)
		1179 ff00  Marvell 88E8053 Gigabit Ethernet Controller (Compal)
		1179 ff10  Marvell 88E8053 Gigabit Ethernet Controller (Inventec)
		11ab 5321  Marvell RDK-8053
		1297 c240  Marvell 88E8053 Gigabit Ethernet Controller (Shuttle)
		1297 c241  Marvell 88E8053 Gigabit Ethernet Controller (Shuttle)
		1297 c242  Marvell 88E8053 Gigabit Ethernet Controller (Shuttle)
		1297 c243  Marvell 88E8053 Gigabit Ethernet Controller (Shuttle)
		1297 c244  Marvell 88E8053 Gigabit Ethernet Controller (Shuttle)
		13d1 ac11  EGE5K - Giga Ethernet Expresscard
		1458 e000  Marvell 88E8053 Gigabit Ethernet Controller (Gigabyte)
		1462 058c  Marvell 88E8053 Gigabit Ethernet Controller (MSI)
		14c0 0012  Marvell 88E8053 Gigabit Ethernet Controller (Compal)
		1558 04a0  Marvell 88E8053 Gigabit Ethernet Controller (Clevo)
		15bd 1003  Marvell 88E8053 Gigabit Ethernet Controller (DFI)
		161f 203c  Marvell 88E8053 Gigabit Ethernet Controller (Arima)
		161f 203d  Marvell 88E8053 Gigabit Ethernet Controller (Arima)
		1695 9029  Marvell 88E8053 Gigabit Ethernet Controller (Epox)
		17f2 2c08  Marvell 88E8053 Gigabit Ethernet Controller (Albatron)
		17ff 0585  Marvell 88E8053 Gigabit Ethernet Controller (Quanta)
		1849 8053  Marvell 88E8053 Gigabit Ethernet Controller (ASRock)
		1854 000b  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 000c  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 0010  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 0013  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 0014  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 0015  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 001a  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 001b  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 001d  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 001f  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 0021  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		1854 0022  Marvell 88E8053 Gigabit Ethernet Controller (LGE)
		270f 2801  Marvell 88E8053 Gigabit Ethernet Controller (Chaintech)
		a0a0 0506  Marvell 88E8053 Gigabit Ethernet Controller (Aopen)
	4363  88E8055 PCI-E Gigabit Ethernet Controller
	4364  88E8056 PCI-E Gigabit Ethernet Controller
	4365  88E8070 based Ethernet Controller
	4366  88EC036 PCI-E Gigabit Ethernet Controller
	4367  88EC032 Ethernet Controller
	4368  88EC034 Ethernet Controller
	4369  88EC042 Ethernet Controller
	436a  88E8058 PCI-E Gigabit Ethernet Controller
	436b  88E8071 PCI-E Gigabit Ethernet Controller
	436c  88E8072 PCI-E Gigabit Ethernet Controller
	436d  88E8055 PCI-E Gigabit Ethernet Controller
	4370  88E8075 PCI-E Gigabit Ethernet Controller
	4380  88E8057 PCI-E Gigabit Ethernet Controller
	4381  88E8059 PCI-E Gigabit Ethernet Controller
	4611  GT-64115 System Controller
	4620  GT-64120/64120A/64121A System Controller
	4801  GT-48001
	5005  Belkin F5D5005 Gigabit Desktop Network PCI Card
	5040  MV88SX5040 4-port SATA I PCI-X Controller
	5041  MV88SX5041 4-port SATA I PCI-X Controller
	5080  MV88SX5080 8-port SATA I PCI-X Controller
	5081  MV88SX5081 8-port SATA I PCI-X Controller
	5181  88f5181 [Orion-1] ARM SoC
	5182  88f5182 [Orion-NAS] ARM SoC
	5281  88f5281 [Orion-2] ARM SoC
	6041  MV88SX6041 4-port SATA II PCI-X Controller
	6042  88SX6042 PCI-X 4-Port SATA-II
	6081  MV88SX6081 8-port SATA II PCI-X Controller
	6101  88SE6101 single-port PATA133 interface
	6111  88SE6111 1-port PATA133(IDE) and 1-port SATA II Controllers
	6121  88SE6121 SATA II Controller
	6141  88SE614x SATA II PCI-E controller
	6145  88SE6145 SATA II PCI-E controller
	6180  88F6180 [Kirkwood] ARM SoC
	6192  88F6190/6192 [Kirkwood] ARM SoC
	6281  88F6281 [Kirkwood] ARM SoC
# This device ID was used for earlier chips.
	6381  MV78xx0 [Discovery Innovation] ARM SoC
	6440  88SE6440 SAS/SATA PCIe controller
	6450  64560 System Controller
	6460  MV64360/64361/64362 System Controller
	6480  MV64460/64461/64462 System Controller
		1775 c200  C2K CompactPCI single board computer
	6485  MV64460/64461/64462 System Controller, Revision B
	7042  88SX7042 PCI-e 4-port SATA-II
		16b8 434b  Tempo SATA E4P
	7810  MV78100 [Discovery Innovation] ARM SoC
	7820  MV78200 [Discovery Innovation] ARM SoC
	f003  GT-64010 Primary Image Piranha Image Generator
11ac  Canon Information Systems Research Aust.
11ad  Lite-On Communications Inc
	0002  LNE100TX
		11ad 0002  LNE100TX
		11ad 0003  LNE100TX
		11ad f003  LNE100TX
		11ad ffff  LNE100TX
		1385 f004  FA310TX
		2646 f002  KNE110TX EtheRx Fast Ethernet
	c115  LNE100TX [Linksys EtherFast 10/100]
		11ad c001  LNE100TX [ver 2.0]
		2646 000b  KNE111TX
11ae  Aztech System Ltd
11af  Avid Technology Inc.
	0001  Cinema
	ee40  Digidesign Audiomedia III
11b0  V3 Semiconductor Inc.
	0002  V300PSC
	0292  V292PBC [Am29030/40 Bridge]
	0960  V96xPBC
	c960  V96DPC
11b1  Apricot Computers
11b2  Eastman Kodak
11b3  Barr Systems Inc.
11b4  Leitch Technology International
11b5  Radstone Technology Plc
11b6  United Video Corp
11b7  Motorola
11b8  XPoint Technologies, Inc
	0001  Quad PeerMaster
11b9  Pathlight Technology Inc.
	c0ed  SSA Controller
11ba  Videotron Corp
11bb  Pyramid Technology
11bc  Network Peripherals Inc
	0001  NP-PCI
11bd  Pinnacle Systems Inc.
	002e  PCTV 40i
	0040  Royal TS Function 1
		11bd 0044  PCTV 2000i Dual DVB-T Pro PCI Tuner 1
		11bd 0045  PCTV Dual Sat Pro PCI 4000i Tuner 1
	0041  RoyalTS Function 2
		11bd 0044  PCTV 2000i Dual DVB-T Pro PCI Tuner 2
		11bd 0045  PCTV Dual Sat Pro PCI 4000i Tuner 2
	0042  Royal TS Function 3
		11bd 0044  PCTV 2000i Dual DVB-T Pro PCI Common
		11bd 0045  PCTV Dual Sat Pro PCI 4000i Common
	0051  PCTV HD 800i
	bede  AV/DV Studio Capture Card
11be  International Microcircuits Inc
11bf  Astrodesign, Inc.
11c0  Hewlett Packard
# Nee Lucent Microelectronics
11c1  Agere Systems
	0440  56k WinModem
		1033 8015  LT WinModem 56k Data+Fax+Voice+Dsvd
		1033 8047  LT WinModem 56k Data+Fax+Voice+Dsvd
		1033 804f  LT WinModem 56k Data+Fax+Voice+Dsvd
		10cf 102c  LB LT Modem V.90 56k
		10cf 104a  BIBLO LT Modem 56k
		10cf 105f  LB2 LT Modem V.90 56k
		1179 0001  Internal V.90 Modem
		11c1 0440  LT WinModem 56k Data+Fax+Voice+Dsvd
		122d 4101  MDP7800-U Modem
		122d 4102  MDP7800SP-U Modem
		13e0 0040  LT WinModem 56k Data+Fax+Voice+Dsvd
		13e0 0440  LT WinModem 56k Data+Fax+Voice+Dsvd
		13e0 0441  LT WinModem 56k Data+Fax+Voice+Dsvd
		13e0 0450  LT WinModem 56k Data+Fax+Voice+Dsvd
		13e0 f100  LT WinModem 56k Data+Fax+Voice+Dsvd
		13e0 f101  LT WinModem 56k Data+Fax+Voice+Dsvd
		144d 2101  LT56PV Modem
		149f 0440  LT WinModem 56k Data+Fax+Voice+Dsvd
	0441  56k WinModem
		1033 804d  LT WinModem 56k Data+Fax
		1033 8065  LT WinModem 56k Data+Fax
		1092 0440  Supra 56i
		1179 0001  Internal V.90 Modem
		11c1 0440  LT WinModem 56k Data+Fax
		11c1 0441  LT WinModem 56k Data+Fax
		122d 4100  MDP7800-U Modem
		13e0 0040  LT WinModem 56k Data+Fax
		13e0 0100  LT WinModem 56k Data+Fax
		13e0 0410  LT WinModem 56k Data+Fax
		13e0 0420  TelePath Internet 56k WinModem
		13e0 0440  LT WinModem 56k Data+Fax
		13e0 0443  LT WinModem 56k Data+Fax
		13e0 f102  LT WinModem 56k Data+Fax
		1416 9804  CommWave 56k Modem
		141d 0440  LT WinModem 56k Data+Fax
		144f 0441  Lucent 56k V.90 DF Modem
		144f 0449  Lucent 56k V.90 DF Modem
		144f 110d  Lucent Win Modem
		1468 0441  Presario 56k V.90 DF Modem
		1668 0440  Lucent Win Modem
	0442  56k WinModem
		11c1 0440  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		11c1 0442  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		13e0 0412  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		13e0 0442  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		13fc 2471  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		144d 2104  LT56PT Modem
		144f 1104  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		149f 0440  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		1668 0440  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
	0443  LT WinModem
	0444  LT WinModem
	0445  LT WinModem
		8086 2203  PRO/100+ MiniPCI (probably an Ambit U98.003.C.00 combo card)
		8086 2204  PRO/100+ MiniPCI on Armada E500
	0446  LT WinModem
	0447  LT WinModem
	0448  WinModem 56k
		1014 0131  Lucent Win Modem
		1033 8066  LT WinModem 56k Data+Fax+Voice+Dsvd
		13e0 0030  56k Voice Modem
		13e0 0040  LT WinModem 56k Data+Fax+Voice+Dsvd
# Actiontech eth+modem card as used by Dell &c.
		1668 2400  LT WinModem 56k (MiniPCI Ethernet+Modem)
	0449  L56xM+S [Mars-2] WinModem 56k
		0e11 b14d  56k V.90 Modem
		1014 018c  ThinkPad 600X
		13e0 0020  LT WinModem 56k Data+Fax
		13e0 0041  TelePath Internet 56k WinModem
		1436 0440  Lucent Win Modem
		144f 0449  Lucent 56k V.90 DFi Modem
		1468 0410  IBM ThinkPad T23
		1468 0440  Lucent Win Modem
		1468 0449  Presario 56k V.90 DFi Modem
	044a  F-1156IV WinModem (V90, 56KFlex)
		10cf 1072  LB Global LT Modem
		13e0 0012  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		13e0 0042  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
		144f 1005  LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd
	044b  LT WinModem
	044c  LT WinModem
	044d  LT WinModem
	044e  LT WinModem
	044f  V90 WildWire Modem
	0450  LT WinModem
		1033 80a8  Versa Note Vxi
		144f 4005  Magnia SG20
		1468 0450  Evo N600c
	0451  LT WinModem
	0452  LT WinModem
	0453  LT WinModem
	0454  LT WinModem
	0455  LT WinModem
	0456  LT WinModem
	0457  LT WinModem
	0458  LT WinModem
	0459  LT WinModem
	045a  LT WinModem
	045c  LT WinModem
	0461  V90 WildWire Modem
	0462  V90 WildWire Modem
	0480  Venus Modem (V90, 56KFlex)
	048c  V.92 56K WinModem
# InPorte Home Internal 56k Modem/fax/answering machine/SMS Features
	048f  V.92 56k WinModem
	0620  Lucent V.92 Data/Fax Modem
	1040  HDA softmodem
	2600  StarPro26XX family (SP2601, SP2603, SP2612) DSP
	5400  OR3TP12 FPSC
	5656  Agere Systems Venus Modem
	5801  USB
	5802  USS-312 USB Controller
	5803  USS-344S USB Controller
	5811  FW322/323
		1043 8294  IEEE 1394a Firewire Controller
		8086 524c  D865PERL mainboard
		dead 0800  FireWire Host Bus Adapter
	5901  FW643 PCI Express1394b Controller (PHY/Link)
		1443 0643  FireBoard800-e V.2
		1546 0643  FWB-PCIE1X20
	8110  T8110 H.100/H.110 TDM switch
		12d9 000c  E1/T1 PMXc cPCI carrier card
	ab10  WL60010 Wireless LAN MAC
	ab11  WL60040 Multimode Wireles LAN MAC
		11c1 ab12  WaveLAN 11abg Cardbus card (Model 1102)
		11c1 ab13  WaveLAN 11abg MiniPCI card (Model 0512)
		11c1 ab15  WaveLAN 11abg Cardbus card (Model 1106)
		11c1 ab16  WaveLAN 11abg MiniPCI card (Model 0516)
	ab20  ORiNOCO PCI Adapter
	ab21  Agere Wireless PCI Adapter
	ab30  Hermes2 Mini-PCI WaveLAN a/b/g
		14cd 2012  Hermes2 Mini-PCI WaveLAN a/b/g
	ed00  ET-131x PCI-E Ethernet Controller
	ed01  ET-131x PCI-E Ethernet Controller
11c2  Sand Microelectronics
11c3  NEC Corporation
11c4  Document Technologies, Inc
11c5  Shiva Corporation
11c6  Dainippon Screen Mfg. Co. Ltd
11c7  D.C.M. Data Systems
11c8  Dolphin Interconnect Solutions AS
	0658  PSB32 SCI-Adapter D31x
	d665  PSB64 SCI-Adapter D32x
	d667  PSB66 SCI-Adapter D33x
11c9  Magma
	0010  16-line serial port w/- DMA
	0011  4-line serial port w/- DMA
11ca  LSI Systems, Inc
11cb  Specialix Research Ltd.
	2000  PCI_9050
		11cb 0200  SX
		11cb b008  I/O8+
	4000  SUPI_1
	8000  T225
11cc  Michels & Kleberhoff Computer GmbH
11cd  HAL Computer Systems, Inc.
11ce  Netaccess
11cf  Pioneer Electronic Corporation
11d0  Lockheed Martin Federal Systems-Manassas
11d1  Auravision
	01f7  VxP524
	01f9  VxP951
11d2  Intercom Inc.
11d3  Trancell Systems Inc
11d4  Analog Devices
	0078  AD1986HD sound chip
	1535  Blackfin BF535 processor
	1805  SM56 PCI modem
	1889  AD1889 sound chip
	1981  AD1981HD sound chip
	1983  AD1983HD sound chip
	1984  AD1984HD sound chip
		17aa 20bb  T61p Notebook
	1986  AD1986A sound chip
		11d4 1986  Lenovo N100 B9G
	198b  AD1988B Sound Chip
	5340  AD1881 sound chip
11d5  Ikon Corporation
	0115  10115
	0117  10117
11d6  Tekelec Telecom
11d7  Trenton Technology, Inc.
11d8  Image Technologies Development
11d9  TEC Corporation
11da  Novell
11db  Sega Enterprises Ltd
11dc  Questra Corporation
11dd  Crosfield Electronics Limited
11de  Zoran Corporation
	6017  miroVIDEO DC30
	6057  ZR36057PQC Video cutting chipset
		1031 7efe  DC10 Plus
		1031 fc00  MiroVIDEO DC50, Motion JPEG Capture/CODEC Board
		12f8 8a02  Tekram Video Kit
		13ca 4231  JPEG/TV Card
	6120  ZR36120
		1328 f001  Cinemaster C DVD Decoder
		13c2 0000  MediaFocus Satellite TV Card
		1de1 9fff  Video Kit C210
11df  New Wave PDG
11e0  Cray Communications A/S
11e1  GEC Plessey Semi Inc.
11e2  Samsung Information Systems America
11e3  Quicklogic Corporation
	0001  COM-ON-AIR Dosch&Amand DECT
	0560  QL5064 Companion Design Demo Board
	5030  PC Watchdog
	8417  QL5064 [QuickPCI] PCI v2.2 bridge for SMT417 Dual TMS320C6416T PMC Module
11e4  Second Wave Inc
11e5  IIX Consulting
11e6  Mitsui-Zosen System Research
11e7  Toshiba America, Elec. Company
11e8  Digital Processing Systems Inc.
11e9  Highwater Designs Ltd.
11ea  Elsag Bailey
11eb  Formation Inc.
11ec  Coreco Inc
	000d  Oculus-F/64P
	1800  Cobra/C6
11ed  Mediamatics
11ee  Dome Imaging Systems Inc
11ef  Nicolet Technologies B.V.
11f0  Compu-Shack
	4231  FDDI
	4232  FASTline UTP Quattro
	4233  FASTline FO
	4234  FASTline UTP
	4235  FASTline-II UTP
	4236  FASTline-II FO
	4731  GIGAline
11f1  Symbios Logic Inc
11f2  Picture Tel Japan K.K.
11f3  Keithley Metrabyte
	0011  KPCI-PIO24
11f4  Kinetic Systems Corporation
	2915  CAMAC controller
11f5  Computing Devices International
11f6  Compex
	0112  ENet100VG4
	0113  FreedomLine 100
	1401  ReadyLink 2000
	2011  RL100-ATX 10/100
		11f6 2011  RL100-ATX
	2201  ReadyLink 100TX (Winbond W89C840)
		11f6 2011  ReadyLink 100TX
	9881  RL100TX Fast Ethernet
11f7  Scientific Atlanta
11f8  PMC-Sierra Inc.
	5220  BR522x [PMC-Sierra maxRAID SAS Controller]
	7364  PM7364 [FREEDM - 32 Frame Engine & Datalink Mgr]
	7375  PM7375 [LASAR-155 ATM SAR]
	7384  PM7384 [FREEDM - 84P672 Frm Engine & Datalink Mgr]
	8000  PM8000  [SPC - SAS Protocol Controller]
11f9  I-Cube Inc
11fa  Kasan Electronics Company, Ltd.
11fb  Datel Inc
11fc  Silicon Magic
11fd  High Street Consultants
11fe  Comtrol Corporation
	0001  RocketPort 32 port w/external I/F
	0002  RocketPort 8 port w/external I/F
	0003  RocketPort 16 port w/external I/F
	0004  RocketPort 4 port w/quad cable
	0005  RocketPort 8 port w/octa cable
	0006  RocketPort 8 port w/RJ11 connectors
	0007  RocketPort 4 port w/RJ11 connectors
	0008  RocketPort 8 port w/ DB78 SNI (Siemens) connector
	0009  RocketPort 16 port w/ DB78 SNI (Siemens) connector
	000a  RocketPort Plus 4 port
	000b  RocketPort Plus 8 port
	000c  RocketModem 6 port
	000d  RocketModem 4-port
	000e  RocketPort Plus 2 port RS232
	000f  RocketPort Plus 2 port RS422
	0040  RocketPort Infinity Octa, 8port, RJ45
	0041  RocketPort Infinity 32port, External Interface
	0042  RocketPort Infinity 8port, External Interface
	0043  RocketPort Infinity 16port, External Interface
	0044  RocketPort Infinity Quad, 4port, DB
	0045  RocketPort Infinity Octa, 8port, DB
	0047  RocketPort Infinity 4port, RJ45
	004f  RocketPort Infinity 2port, SMPTE
	0052  RocketPort Infinity Octa, 8port, SMPTE
	0801  RocketPort UPCI 32 port w/external I/F
	0802  RocketPort UPCI 8 port w/external I/F
	0803  RocketPort UPCI 16 port w/external I/F
	0805  RocketPort UPCI 8 port w/octa cable
	080c  RocketModem III 8 port
	080d  RocketModem III 4 port
	0811  RocketPort UPCI Plus 8 port RS232
	0812  RocketPort UPCI Plus 8 port RS422
	0903  RocketPort Compact PCI 16 port w/external I/F
	8015  RocketPort 4-port UART 16954
11ff  Scion Corporation
	0003  AG-5
1200  CSS Corporation
1201  Vista Controls Corp
1202  Network General Corp.
	4300  Gigabit Ethernet Adapter
		1202 9841  SK-9841 LX
		1202 9842  SK-9841 LX dual link
		1202 9843  SK-9843 SX
		1202 9844  SK-9843 SX dual link
1203  Bayer Corporation, Agfa Division
1204  Lattice Semiconductor Corporation
1205  Array Corporation
1206  Amdahl Corporation
1208  Parsytec GmbH
	4853  HS-Link Device
1209  SCI Systems Inc
120a  Synaptel
120b  Adaptive Solutions
120c  Technical Corp.
120d  Compression Labs, Inc.
120e  Cyclades Corporation
	0100  Cyclom-Y below first megabyte
	0101  Cyclom-Y above first megabyte
	0102  Cyclom-4Y below first megabyte
	0103  Cyclom-4Y above first megabyte
	0104  Cyclom-8Y below first megabyte
	0105  Cyclom-8Y above first megabyte
	0200  Cyclades-Z below first megabyte
	0201  Cyclades-Z above first megabyte
	0300  PC300/RSV or /X21 (2 ports)
	0301  PC300/RSV or /X21 (1 port)
	0310  PC300/TE (2 ports)
	0311  PC300/TE (1 port)
	0320  PC300/TE-M (2 ports)
	0321  PC300/TE-M (1 port)
	0400  PC400
120f  Essential Communications
	0001  Roadrunner serial HIPPI
1210  Hyperparallel Technologies
1211  Braintech Inc
1212  Kingston Technology Corp.
1213  Applied Intelligent Systems, Inc.
1214  Performance Technologies, Inc.
1215  Interware Co., Ltd
1216  Purup Prepress A/S
1217  O2 Micro, Inc.
	00f7  Firewire (IEEE 1394)
	6729  OZ6729
	673a  OZ6730
	6832  OZ6832/6833 CardBus Controller
	6836  OZ6836/6860 CardBus Controller
	6872  OZ6812 CardBus Controller
	6925  OZ6922 CardBus Controller
	6933  OZ6933/711E1 CardBus/SmartCardBus Controller
		1025 1016  Travelmate 612 TX
	6972  OZ601/6912/711E0 CardBus/SmartCardBus Controller
		1014 020c  ThinkPad R30
		1028 0152  Latitude D500
		1179 0001  Magnia Z310
	7110  OZ711Mx 4-in-1 MemoryCardBus Accelerator
		103c 088c  NC8000 laptop
		103c 0890  NC6000 laptop
		1734 106c  Amilo A1645
	7112  OZ711EC1/M1 SmartCardBus/MemoryCardBus Controller
	7113  OZ711EC1 SmartCardBus Controller
		1025 0035  TravelMate 660
	7114  OZ711M1/MC1 4-in-1 MemoryCardBus Controller
	7120  Integrated MMC/SD Controller
	7130  Integrated MS/xD Controller
	7134  OZ711MP1/MS1 MemoryCardBus Controller
	7135  Cardbus bridge
	7136  OZ711SP1 Memory CardBus Controller
	71e2  OZ711E2 SmartCardBus Controller
	7212  OZ711M2 4-in-1 MemoryCardBus Controller
	7213  OZ6933E CardBus Controller
	7223  OZ711M3/MC3 4-in-1 MemoryCardBus Controller
		103c 088c  NC8000 laptop
		103c 0890  NC6000 laptop
		10cf 11c4  Lifebook P5020D Laptop
	7233  OZ711MP3/MS3 4-in-1 MemoryCardBus Controller
1218  Hybricon Corp.
1219  First Virtual Corporation
121a  3Dfx Interactive, Inc.
	0001  Voodoo
	0002  Voodoo 2
	0003  Voodoo Banshee
		1092 0003  Monster Fusion
		1092 4000  Monster Fusion
		1092 4002  Monster Fusion
		1092 4801  Monster Fusion AGP
		1092 4803  Monster Fusion AGP
		1092 8030  Monster Fusion
		1092 8035  Monster Fusion AGP
		10b0 0001  Dragon 4000
		1102 1017  3D Blaster Banshee PCI (CT6760)
		1102 1018  3D Blaster Banshee VE
		121a 0001  Voodoo Banshee AGP
		121a 0003  Voodoo Banshee AGP SGRAM
		121a 0004  Voodoo Banshee
		139c 0016  Raven
		139c 0017  Raven
		14af 0002  Maxi Gamer Phoenix
	0004  Voodoo Banshee [Velocity 100]
	0005  Voodoo 3
		121a 0004  Voodoo3 AGP
		121a 0030  Voodoo3 AGP
		121a 0031  Voodoo3 AGP
		121a 0034  Voodoo3 AGP
		121a 0036  Voodoo3 2000 PCI
		121a 0037  Voodoo3 AGP
		121a 0038  Voodoo3 AGP
		121a 003a  Voodoo3 AGP
		121a 0044  Voodoo3
		121a 004b  Velocity 100
		121a 004c  Velocity 200
		121a 004d  Voodoo3 AGP
		121a 004e  Voodoo3 AGP
		121a 0051  Voodoo3 AGP
		121a 0052  Voodoo3 AGP
		121a 0057  Voodoo3 3000 PCI
		121a 0060  Voodoo3 3500 TV (NTSC)
		121a 0061  Voodoo3 3500 TV (PAL)
		121a 0062  Voodoo3 3500 TV (SECAM)
	0009  Voodoo 4 / Voodoo 5
		121a 0003  Voodoo5 PCI 5500
		121a 0009  Voodoo5 AGP 5500/6000
	0057  Voodoo 3/3000 [Avenger]
121b  Advanced Telecommunications Modules
121c  Nippon Texaco., Ltd
121d  Lippert Automationstechnik GmbH
121e  CSPI
	0201  Myrinet 2000 Scalable Cluster Interconnect
121f  Arcus Technology, Inc.
1220  Ariel Corporation
	1220  AMCC 5933 TMS320C80 DSP/Imaging board
1221  Contec Co., Ltd
	9172  PO-64L(PCI)H [Isolated Digital Output Board for PCI]
	91a2  PO-32L(PCI)H [Isolated Digital Output Board for PCI]
	91c3  DA16-16(LPCI)L [Un-insulated highly precise analog output board for Low Profile PCI]
	b152  DIO-96D2-LPCI
	c103  ADA16-32/2(PCI)F [High-Speed Analog I/O Board for PCI]
1222  Ancor Communications, Inc.
1223  Artesyn Communication Products
	0003  PM/Link
	0004  PM/T1
	0005  PM/E1
	0008  PM/SLS
	0009  BajaSpan Resource Target
	000a  BajaSpan Section 0
	000b  BajaSpan Section 1
	000c  BajaSpan Section 2
	000d  BajaSpan Section 3
	000e  PM/PPC
1224  Interactive Images
1225  Power I/O, Inc.
1227  Tech-Source
	0006  Raptor GFX 8P
	0023  Raptor GFX [1100T]
	0045  Raptor 4000-L [Linux version]
	004a  Raptor 4000-LR-L [Linux version]
1228  Norsk Elektro Optikk A/S
1229  Data Kinesis Inc.
122a  Integrated Telecom
122b  LG Industrial Systems Co., Ltd
122c  Sican GmbH
122d  Aztech System Ltd
	1206  368DSP
	1400  Trident PCI288-Q3DII (NX)
	50dc  3328 Audio
		122d 0001  3328 Audio
	80da  3328 Audio
		122d 0001  3328 Audio
122e  Xyratex
	7722  Napatech XL1
	7724  Napatech XL2/XA
	7729  Napatech XD
122f  Andrew Corporation
1230  Fishcamp Engineering
1231  Woodward McCoach, Inc.
	04e1  Desktop PCI Telephony 4
	05e1  Desktop PCI Telephony 5/6
	0d00  LightParser
	0d02  LightParser 2
	0d13  Desktop PCI L1/L3 Telephony
1232  GPT Limited
1233  Bus-Tech, Inc.
# Also Bochs uses this for virtual VGA...
1234  Technical Corp.
1235  Risq Modular Systems, Inc.
1236  Sigma Designs Corporation
	0000  RealMagic64/GX
	6401  REALmagic 64/GX (SD 6425)
1237  Alta Technology Corporation
1238  Adtran
1239  3DO Company
123a  Visicom Laboratories, Inc.
123b  Seeq Technology, Inc.
123c  Century Systems, Inc.
123d  Engineering Design Team, Inc.
	0000  EasyConnect 8/32
	0002  EasyConnect 8/64
	0003  EasyIO
123e  Simutech, Inc.
123f  C-Cube Microsystems
	00e4  MPEG
	8120  E4?
		11bd 0006  DV500 E4
		11bd 000a  DV500 E4
		11bd 000f  DV500 E4
		1809 0016  Emuzed MAUI-III PCI PVR FM TV
	8888  Cinemaster C 3.0 DVD Decoder
		1002 0001  Cinemaster C 3.0 DVD Decoder
		1002 0002  Cinemaster C 3.0 DVD Decoder
		1328 0001  Cinemaster C 3.0 DVD Decoder
1240  Marathon Technologies Corp.
1241  DSC Communications
# Formerly Jaycor Networks, Inc.
1242  JNI Corporation
	1560  JNIC-1560 PCI-X Fibre Channel Controller
		1242 6562  FCX2-6562 Dual Channel PCI-X Fibre Channel Adapter
		1242 656a  FCX-6562 PCI-X Fibre Channel Adapter
	4643  FCI-1063 Fibre Channel Adapter
	6562  FCX2-6562 Dual Channel PCI-X Fibre Channel Adapter
	656a  FCX-6562 PCI-X Fibre Channel Adapter
1243  Delphax
# Audio-Visuelles Marketing und Computersysteme
1244  AVM GmbH
	0700  B1 ISDN
	0800  C4 ISDN
	0a00  A1 ISDN [Fritz]
		1244 0a00  FRITZ!Card ISDN Controller
	0e00  Fritz!PCI v2.0 ISDN
	1100  C2 ISDN
	1200  T1 ISDN
	2700  Fritz!Card DSL SL
	2900  Fritz!Card DSL v2.0
1245  A.P.D., S.A.
1246  Dipix Technologies, Inc.
1247  Xylon Research, Inc.
1248  Central Data Corporation
1249  Samsung Electronics Co., Ltd.
124a  AEG Electrocom GmbH
124b  SBS/Greenspring Modular I/O
	0040  PCI-40A or cPCI-200 Quad IndustryPack carrier
		124b 9080  PCI9080 Bridge
124c  Solitron Technologies, Inc.
124d  Stallion Technologies, Inc.
	0000  EasyConnection 8/32
	0002  EasyConnection 8/64
	0003  EasyIO
	0004  EasyConnection/RA
124e  Cylink
124f  Infortrend Technology, Inc.
	0041  IFT-2000 Series RAID Controller
1250  Hitachi Microcomputer System Ltd
1251  VLSI Solutions Oy
1253  Guzik Technical Enterprises
1254  Linear Systems Ltd.
	0065  DVB Master FD
	007c  DVB Master Quad/o
1255  Optibase Ltd
	1110  MPEG Forge
	1210  MPEG Fusion
	2110  VideoPlex
	2120  VideoPlex CC
	2130  VideoQuest
1256  Perceptive Solutions, Inc.
	4201  PCI-2220I
	4401  PCI-2240I
	5201  PCI-2000
1257  Vertex Networks, Inc.
1258  Gilbarco, Inc.
1259  Allied Telesyn International
	2560  AT-2560 Fast Ethernet Adapter (i82557B)
	2801  AT-2801FX (RTL-8139)
	a117  RTL81xx Fast Ethernet
	a11e  RTL81xx Fast Ethernet
	a120  21x4x DEC-Tulip compatible 10/100 Ethernet
125a  ABB Power Systems
125b  Asix Electronics Corporation
	1400  AX88141 Fast Ethernet Controller
		1186 1100  AX8814X Based PCI Fast Ethernet Adapter
125c  Aurora Technologies, Inc.
	0101  Saturn 4520P
	0640  Aries 16000P
125d  ESS Technology
	0000  ES336H Fax Modem (Early Model)
	1948  ES1948 Maestro-1
	1968  ES1968 Maestro 2
		1028 0085  ES1968 Maestro-2 PCI
		1033 8051  ES1968 Maestro-2 Audiodrive
	1969  ES1969 Solo-1 Audiodrive
		1014 0166  ES1969 SOLO-1 AudioDrive on IBM Aptiva Mainboard
		125d 8888  Solo-1 Audio Adapter
		153b 111b  Terratec 128i PCI
	1978  ES1978 Maestro 2E
		0e11 b112  Armada M700/E500
		1033 803c  ES1978 Maestro-2E Audiodrive
		1033 8058  ES1978 Maestro-2E Audiodrive
		1092 4000  Monster Sound MX400
		1179 0001  ES1978 Maestro-2E Audiodrive
	1988  ES1988 Allegro-1
		0e11 0098  Evo N600c
		1092 4100  Sonic Impact S100
		125d 0431  Allegro AudioDrive
		125d 1988  ESS Allegro-1 Audiodrive
		125d 1998  Allegro AudioDrive
		125d 1999  Allegro-1 AudioDrive
	1989  ESS Modem
		125d 1989  ESS Modem
	1998  ES1983S Maestro-3i PCI Audio Accelerator
		1028 00b1  Latitude C600
		1028 00e6  ES1983S Maestro-3i (Dell Inspiron 8100)
	1999  ES1983S Maestro-3i PCI Modem Accelerator
	199a  ES1983S Maestro-3i PCI Audio Accelerator
	199b  ES1983S Maestro-3i PCI Modem Accelerator
	2808  ES336H Fax Modem (Later Model)
	2838  ES2838/2839 SuperLink Modem
	2898  ES2898 Modem
		125d 0424  ES56-PI Data Fax Modem
		125d 0425  ES56T-PI Data Fax Modem
		125d 0426  ES56V-PI Data Fax Modem
		125d 0427  VW-PI Data Fax Modem
		125d 0428  ES56ST-PI Data Fax Modem
		125d 0429  ES56SV-PI Data Fax Modem
		147a c001  ES56-PI Data Fax Modem
		148d 1030  HCF WV-PI56 [ESS ES56-PI Data Fax Modem]
		14fe 0428  ES56-PI Data Fax Modem
		14fe 0429  ES56-PI Data Fax Modem
125e  Specialvideo Engineering SRL
125f  Concurrent Technologies, Inc.
1260  Intersil Corporation
	3872  Prism 2.5 Wavelan chipset
		1468 0202  LAN-Express IEEE 802.11b Wireless LAN
	3873  Prism 2.5 Wavelan chipset
		1186 3501  DWL-520 Wireless PCI Adapter
		1186 3700  DWL-520 Wireless PCI Adapter, Rev E1
		1385 4105  MA311 802.11b wireless adapter
		1668 0414  HWP01170-01 802.11b PCI Wireless Adapter
		16a5 1601  AIR.mate PC-400 PCI Wireless LAN Adapter
		1737 3874  WMP11 v1 802.11b Wireless-B PCI Adapter
		8086 2510  M3AWEB Wireless 802.11b MiniPCI Adapter
		8086 2513  Wireless 802.11b MiniPCI Adapter
	3877  ISL3877 [Prism Indigo]
	3886  ISL3886 [Prism Javelin/Prism Xbow]
		17cf 0037  XG-901 and clones Wireless Adapter
	3890  ISL3890 [Prism GT/Prism Duette]/ISL3886 [Prism Javelin/Prism Xbow]
		10b8 2802  SMC2802W Wireless PCI Adapter
		10b8 2835  SMC2835W Wireless Cardbus Adapter
		10b8 a835  SMC2835W V2 Wireless Cardbus Adapter
		1113 4203  WN4201B
		1113 8201  T-Com T-Sinus 154pcicard Wireless PCI Adapter
		1113 b301  T-Sinus 154card Cardbus
		1113 ee03  SMC2802W V2 Wireless PCI Adapter [ISL3886]
		1113 ee08  SMC2835W V3 EU Wireless Cardbus Adapter
		1186 3202  DWL-G650 A1 Wireless Adapter
		1259 c104  CG-WLCB54GT Wireless Adapter
		1260 0000  WG511 v1 54 Mbps Wireless PC Card
		1385 4800  WG511 v2/v3 54 Mbps Wireless PC Card
		16a5 1605  ALLNET ALL0271 Wireless PCI Adapter
		17cf 0014  XG-600 and clones Wireless Adapter
		17cf 0020  XG-900 and clones Wireless Adapter
	8130  HMP8130 NTSC/PAL Video Decoder
	8131  HMP8131 NTSC/PAL Video Decoder
# This is probably more likely a HW fault, but I am keeping it for now --mj
	ffff  ISL3886IK
		1260 0000  Senao 3054MP+ (J) mini-PCI WLAN 802.11g adapter
1261  Matsushita-Kotobuki Electronics Industries, Ltd.
1262  ES Computer Company, Ltd.
1263  Sonic Solutions
1264  Aval Nagasaki Corporation
1265  Casio Computer Co., Ltd.
1266  Microdyne Corporation
	0001  NE10/100 Adapter (i82557B)
	1910  NE2000Plus (RT8029) Ethernet Adapter
		1266 1910  NE2000Plus Ethernet Adapter
1267  S. A. Telecommunications
	5352  PCR2101
	5a4b  Telsat Turbo
1268  Tektronix
1269  Thomson-CSF/TTM
126a  Lexmark International, Inc.
126b  Adax, Inc.
126c  Northern Telecom
	1211  10/100BaseTX [RTL81xx]
	126c  802.11b Wireless Ethernet Adapter
126d  Splash Technology, Inc.
126e  Sumitomo Metal Industries, Ltd.
126f  Silicon Motion, Inc.
	0501  SM501 VoyagerGX Rev. AA
	0510  SM501 VoyagerGX Rev. B
	0710  SM710 LynxEM
	0712  SM712 LynxEM+
	0720  SM720 Lynx3DM
	0730  SM731 Cougar3DR
	0810  SM810 LynxE
	0811  SM811 LynxE
	0820  SM820 Lynx3D
	0910  SM910
1270  Olympus Optical Co., Ltd.
1271  GW Instruments
1272  Telematics International
1273  Hughes Network Systems
	0002  DirecPC
1274  Ensoniq
	1171  ES1373 [AudioPCI] (also Creative Labs CT5803)
	1371  ES1371 [AudioPCI-97]
		0e11 0024  AudioPCI on Motherboard Compaq Deskpro
		0e11 b1a7  ES1371, ES1373 AudioPCI
		1033 80ac  ES1371, ES1373 AudioPCI
		1042 1854  Tazer
		107b 8054  Tabor2
		1274 1371  Creative Sound Blaster AudioPCI64V, AudioPCI128
		1274 8001  CT4751 board
		1462 6470  ES1371, ES1373 AudioPCI On Motherboard MS-6147 1.1A
		1462 6560  ES1371, ES1373 AudioPCI On Motherboard MS-6156 1.10
		1462 6630  ES1371, ES1373 AudioPCI On Motherboard MS-6163BX 1.0A
		1462 6631  ES1371, ES1373 AudioPCI On Motherboard MS-6163VIA 1.0A
		1462 6632  ES1371, ES1373 AudioPCI On Motherboard MS-6163BX 2.0A
		1462 6633  ES1371, ES1373 AudioPCI On Motherboard MS-6163VIA 2.0A
		1462 6820  ES1371, ES1373 AudioPCI On Motherboard MS-6182 1.00
		1462 6822  ES1371, ES1373 AudioPCI On Motherboard MS-6182 1.00A
		1462 6830  ES1371, ES1373 AudioPCI On Motherboard MS-6183 1.00
		1462 6880  ES1371, ES1373 AudioPCI On Motherboard MS-6188 1.00
		1462 6900  ES1371, ES1373 AudioPCI On Motherboard MS-6190 1.00
		1462 6910  ES1371, ES1373 AudioPCI On Motherboard MS-6191
		1462 6930  ES1371, ES1373 AudioPCI On Motherboard MS-6193
		1462 6990  ES1371, ES1373 AudioPCI On Motherboard MS-6199BX 2.0A
		1462 6991  ES1371, ES1373 AudioPCI On Motherboard MS-6199VIA 2.0A
		14a4 2077  ES1371, ES1373 AudioPCI On Motherboard KR639
		14a4 2105  ES1371, ES1373 AudioPCI On Motherboard MR800
		14a4 2107  ES1371, ES1373 AudioPCI On Motherboard MR801
		14a4 2172  ES1371, ES1373 AudioPCI On Motherboard DR739
		1509 9902  ES1371, ES1373 AudioPCI On Motherboard KW11
		1509 9903  ES1371, ES1373 AudioPCI On Motherboard KW31
		1509 9904  ES1371, ES1373 AudioPCI On Motherboard KA11
		1509 9905  ES1371, ES1373 AudioPCI On Motherboard KC13
		152d 8801  ES1371, ES1373 AudioPCI On Motherboard CP810E
		152d 8802  ES1371, ES1373 AudioPCI On Motherboard CP810
		152d 8803  ES1371, ES1373 AudioPCI On Motherboard P3810E
		152d 8804  ES1371, ES1373 AudioPCI On Motherboard P3810-S
		152d 8805  ES1371, ES1373 AudioPCI On Motherboard P3820-S
		270f 2001  ES1371, ES1373 AudioPCI On Motherboard 6CTR
		270f 2200  ES1371, ES1373 AudioPCI On Motherboard 6WTX
		270f 3000  ES1371, ES1373 AudioPCI On Motherboard 6WSV
		270f 3100  ES1371, ES1373 AudioPCI On Motherboard 6WIV2
		270f 3102  ES1371, ES1373 AudioPCI On Motherboard 6WIV
		270f 7060  ES1371, ES1373 AudioPCI On Motherboard 6ASA2
		8086 4249  ES1371, ES1373 AudioPCI On Motherboard BI440ZX
		8086 424c  ES1371, ES1373 AudioPCI On Motherboard BL440ZX
		8086 425a  ES1371, ES1373 AudioPCI On Motherboard BZ440ZX
		8086 4341  ES1371, ES1373 AudioPCI On Motherboard Cayman
		8086 4343  ES1371, ES1373 AudioPCI On Motherboard Cape Cod
		8086 4541  D815EEA Motherboard
		8086 4649  ES1371, ES1373 AudioPCI On Motherboard Fire Island
		8086 464a  ES1371, ES1373 AudioPCI On Motherboard FJ440ZX
		8086 4d4f  ES1371, ES1373 AudioPCI On Motherboard Montreal
		8086 4f43  ES1371, ES1373 AudioPCI On Motherboard OC440LX
		8086 5243  ES1371, ES1373 AudioPCI On Motherboard RC440BX
		8086 5352  ES1371, ES1373 AudioPCI On Motherboard SunRiver
		8086 5643  ES1371, ES1373 AudioPCI On Motherboard Vancouver
		8086 5753  ES1371, ES1373 AudioPCI On Motherboard WS440BX
	5000  ES1370 [AudioPCI]
	5880  5880B [AudioPCI]
		1274 2000  Creative Sound Blaster AudioPCI128
		1274 2003  Creative SoundBlaster AudioPCI 128
		1274 5880  Creative Sound Blaster AudioPCI128
		1274 8001  Sound Blaster 16PCI 4.1ch
		1458 a000  5880 AudioPCI On Motherboard 6OXET
		1462 6880  5880 AudioPCI On Motherboard MS-6188 1.00
		270f 2001  5880 AudioPCI On Motherboard 6CTR
		270f 2200  5880 AudioPCI On Motherboard 6WTX
		270f 7040  5880 AudioPCI On Motherboard 6ATA4
	8001  CT5880 [AudioPCI]
	8002  5880A [AudioPCI]
1275  Network Appliance Corporation
1276  Switched Network Technologies, Inc.
1277  Comstream
1278  Transtech Parallel Systems Ltd.
	0701  TPE3/TM3 PowerPC Node
	0710  TPE5 PowerPC PCI board
	1100  PMC-FPGA02
	1101  TS-C43 card with 4 ADSP-TS101 processors
1279  Transmeta Corporation
	0060  TM8000 Northbridge
	0061  TM8000 AGP bridge
	0295  Northbridge
	0395  LongRun Northbridge
	0396  SDRAM controller
	0397  BIOS scratchpad
127a  Rockwell International
	1002  HCF 56k Data/Fax Modem
		1092 094c  SupraExpress 56i PRO [Diamond SUP2380]
		122d 4002  HPG / MDP3858-U
		122d 4005  MDP3858-E
		122d 4007  MDP3858-A/-NZ
		122d 4012  MDP3858-SA
		122d 4017  MDP3858-W
		122d 4018  MDP3858-W
		127a 1002  Rockwell 56K D/F HCF Modem
	1003  HCF 56k Data/Fax Modem
		0e11 b0bc  229-DF Zephyr
		0e11 b114  229-DF Cheetah
		1033 802b  229-DF
		13df 1003  PCI56RX Modem
		13e0 0117  IBM
		13e0 0147  IBM F-1156IV+/R3 Spain V.90 Modem
		13e0 0197  IBM
		13e0 01c7  IBM F-1156IV+/R3 WW V.90 Modem
		13e0 01f7  IBM
		1436 1003  IBM
		1436 1103  IBM 5614PM3G V.90 Modem
		1436 1602  Compaq 229-DF Ducati
	1004  HCF 56k Data/Fax/Voice Modem
		1048 1500  MicroLink 56k Modem
		10cf 1059  Fujitsu 229-DFRT
	1005  HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
		1005 127a  AOpen FM56-P
		1033 8029  229-DFSV
		1033 8054  Modem
		10cf 103c  Fujitsu
		10cf 1055  Fujitsu 229-DFSV
		10cf 1056  Fujitsu 229-DFSV
		122d 4003  MDP3858SP-U
		122d 4006  Packard Bell MDP3858V-E
		122d 4008  MDP3858SP-A/SP-NZ
		122d 4009  MDP3858SP-E
		122d 4010  MDP3858V-U
		122d 4011  MDP3858SP-SA
		122d 4013  MDP3858V-A/V-NZ
		122d 4015  MDP3858SP-W
		122d 4016  MDP3858V-W
		122d 4019  MDP3858V-SA
		13df 1005  PCI56RVP Modem
		13e0 0187  IBM
		13e0 01a7  IBM
		13e0 01b7  IBM DF-1156IV+/R3 Spain V.90 Modem
		13e0 01d7  IBM DF-1156IV+/R3 WW V.90 Modem
		1436 1005  IBM
		1436 1105  IBM
		1437 1105  IBM 5614PS3G V.90 Modem
	1022  HCF 56k Modem
		1436 1303  M3-5614PM3G V.90 Modem
	1023  HCF 56k Data/Fax Modem
		122d 4020  Packard Bell MDP3858-WE
		122d 4023  MDP3858-UE
		13e0 0247  IBM F-1156IV+/R6 Spain V.90 Modem
		13e0 0297  IBM
		13e0 02c7  IBM F-1156IV+/R6 WW V.90 Modem
		1436 1203  IBM
		1436 1303  IBM
	1024  HCF 56k Data/Fax/Voice Modem
	1025  HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
		10cf 106a  Fujitsu 235-DFSV
		122d 4021  Packard Bell MDP3858V-WE
		122d 4022  MDP3858SP-WE
		122d 4024  MDP3858V-UE
		122d 4025  MDP3858SP-UE
	1026  HCF 56k PCI Speakerphone Modem
	1032  HCF 56k Modem
	1033  HCF 56k Modem
	1034  HCF 56k Modem
	1035  HCF 56k PCI Speakerphone Modem
	1036  HCF 56k Modem
	1085  HCF 56k Volcano PCI Modem
	2004  HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
	2005  HCF 56k Data/Fax Modem
		104d 8044  229-DFSV
		104d 8045  229-DFSV
		104d 8055  PBE/Aztech 235W-DFSV
		104d 8056  235-DFSV
		104d 805a  Modem
		104d 805f  Modem
		104d 8074  Modem
	2013  HSF 56k Data/Fax Modem
		1179 0001  Modem
		1179 ff00  Modem
	2014  HSF 56k Data/Fax/Voice Modem
		10cf 1057  Fujitsu Citicorp III
		122d 4050  MSP3880-U
		122d 4055  MSP3880-W
	2015  HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
		10cf 1063  Fujitsu
		10cf 1064  Fujitsu
		1468 2015  Fujitsu
	2016  HSF 56k Data/Fax/Voice/Spkp Modem
		122d 4051  MSP3880V-W
		122d 4052  MSP3880SP-W
		122d 4054  MSP3880V-U
		122d 4056  MSP3880SP-U
		122d 4057  MSP3880SP-A
	4311  Riptide HSF 56k PCI Modem
		127a 4311  Ring Modular? Riptide HSF RT HP Dom
		13e0 0210  HP-GVC
	4320  Riptide PCI Audio Controller
		1235 4320  Riptide PCI Audio Controller
	4321  Riptide HCF 56k PCI Modem
		1235 4321  Hewlett Packard DF
		1235 4324  Hewlett Packard DF
		13e0 0210  Hewlett Packard DF
		144d 2321  Riptide
	4322  Riptide PCI Game Controller
		1235 4322  Riptide PCI Game Controller
	8234  RapidFire 616X ATM155 Adapter
		108d 0022  RapidFire 616X ATM155 Adapter
		108d 0027  RapidFire 616X ATM155 Adapter
127b  Pixera Corporation
127c  Crosspoint Solutions, Inc.
127d  Vela Research
127e  Winnov, L.P.
	0010  Videum 1000 Plus
127f  Fujifilm
1280  Photoscript Group Ltd.
1281  Yokogawa Electric Corporation
1282  Davicom Semiconductor, Inc.
	6585  DM562P V90 Modem
	9009  Ethernet 100/10 MBit
	9100  21x4x DEC-Tulip compatible 10/100 Ethernet
	9102  21x4x DEC-Tulip compatible 10/100 Ethernet
# Subsystem ID is main ID reveresed.
		0291 8212  DM9102A (DM9102AE, SM9102AF) Ethernet 100/10 MBit
	9132  Ethernet 100/10 MBit
1283  Integrated Technology Express, Inc.
	673a  IT8330G
	8152  IT8152F/G Advanced RISC-to-PCI Companion Chip
	8211  ITE 8211F Single Channel UDMA 133
		1043 8138  P5GD1-VW Mainboard
# PCI version seems to be IT8212, embedded seems to be ITE8212
	8212  IT/ITE8212 Dual channel ATA RAID controller
		1283 0001  IT/ITE8212 Dual channel ATA RAID controller
	8213  IT8213 IDE Controller
	8330  IT8330G
	8872  IT8874F PCI Dual Serial Port Controller
	8888  IT8888F/G PCI to ISA Bridge with SMB [Golden Gate]
	8889  IT8889F PCI to ISA Bridge
	e886  IT8330G
1284  Sahara Networks, Inc.
1285  Platform Technologies, Inc.
	0100  AGOGO sound chip (aka ESS Maestro 1)
1286  Mazet GmbH
1287  M-Pact, Inc.
	001e  LS220D DVD Decoder
	001f  LS220C DVD Decoder
1288  Timestep Corporation
1289  AVC Technology, Inc.
128a  Asante Technologies, Inc.
128b  Transwitch Corporation
128c  Retix Corporation
128d  G2 Networks, Inc.
	0021  ATM155 Adapter
128e  Hoontech Corporation/Samho Multi Tech Ltd.
	0008  ST128 WSS/SB
	0009  ST128 SAM9407
	000a  ST128 Game Port
	000b  ST128 MPU Port
	000c  ST128 Ctrl Port
128f  Tateno Dennou, Inc.
1290  Sord Computer Corporation
1291  NCS Computer Italia
1292  Tritech Microelectronics Inc
	fc02  Pyramid3D TR25202
1293  Media Reality Technology
1294  Rhetorex, Inc.
1295  Imagenation Corporation
	0800  PXR800
	1000  PXD1000
1296  Kofax Image Products
1297  Holco Enterprise Co, Ltd/Shuttle Computer
1298  Spellcaster Telecommunications Inc.
1299  Knowledge Technology Lab.
129a  VMetro, inc.
	0615  PBT-615 PCI-X Bus Analyzer
129b  Image Access
129c  Jaycor
129d  Compcore Multimedia, Inc.
129e  Victor Company of Japan, Ltd.
129f  OEC Medical Systems, Inc.
12a0  Allen-Bradley Company
12a1  Simpact Associates, Inc.
12a2  Newgen Systems Corporation
12a3  Lucent Technologies
	8105  T8105 H100 Digital Switch
12a4  NTT Electronics Technology Company
12a5  Vision Dynamics Ltd.
12a6  Scalable Networks, Inc.
12a7  AMO GmbH
12a8  News Datacom
12a9  Xiotech Corporation
12aa  SDL Communications, Inc.
12ab  Yuan Yuan Enterprise Co., Ltd.
	0000  MPG160/Kuroutoshikou ITVC15-STVLP
	0002  AU8830 [Vortex2] Based Sound Card With A3D Support
	2300  Club-3D Zap TV2100
	3000  MPG-200C PCI DVD Decoder Card
	4789  MPC788 MiniPCI Hybrid TV Tuner
	fff3  MPG600/Kuroutoshikou ITVC16-STVLP
	ffff  MPG600/Kuroutoshikou ITVC16-STVLP
12ac  Measurex Corporation
12ad  Multidata GmbH
12ae  Alteon Networks Inc.
	0001  AceNIC Gigabit Ethernet
		1014 0104  Gigabit Ethernet-SX PCI Adapter
		12ae 0001  Gigabit Ethernet-SX (Universal)
		1410 0104  Gigabit Ethernet-SX PCI Adapter
	0002  AceNIC Gigabit Ethernet (Copper)
		10a9 8002  Acenic Gigabit Ethernet
		12ae 0002  Gigabit Ethernet-T (3C986-T)
	00fa  Farallon PN9100-T Gigabit Ethernet
12af  TDK USA Corp
12b0  Jorge Scientific Corp
12b1  GammaLink
12b2  General Signal Networks
12b3  Inter-Face Co Ltd
12b4  FutureTel Inc
12b5  Granite Systems Inc.
12b6  Natural Microsystems
12b7  Cognex Modular Vision Systems Div. - Acumen Inc.
12b8  Korg
# Nee US Robotics
12b9  3Com Corp, Modem Division
	1006  WinModem
		12b9 005c  USR 56k Internal Voice WinModem (Model 3472)
		12b9 005e  USR 56k Internal WinModem (Models 662975)
		12b9 0062  USR 56k Internal Voice WinModem (Model 662978)
		12b9 0068  USR 56k Internal Voice WinModem (Model 5690)
		12b9 007a  USR 56k Internal Voice WinModem (Model 662974)
		12b9 007f  USR 56k Internal WinModem (Models 5698, 5699)
		12b9 0080  USR 56k Internal WinModem (Models 2975, 3528)
		12b9 0081  USR 56k Internal Voice WinModem (Models 2974, 3529)
		12b9 0091  USR 56k Internal Voice WinModem (Model 2978)
	1007  USR 56k Internal WinModem
		12b9 00a3  USR 56k Internal WinModem (Model 3595)
		12b9 00c4  U.S. Robotics V.92 Voice Faxmodem (2884A/B/C)
	1008  56K FaxModem Model 5610
		12b9 00a2  USR 56k Internal FAX Modem (Model 2977)
		12b9 00aa  USR 56k Internal Voice Modem (Model 2976)
		12b9 00ab  USR 56k Internal Voice Modem (Model 5609)
		12b9 00ac  USR 56k Internal Voice Modem (Model 3298)
		12b9 00ad  USR 56k Internal FAX Modem (Model 5610)
		12b9 00d3  USR 56K Internal V92 FAX Modem (Model 5610)
		12b9 baba  USR 56K Internal Voice Modem 3CP3298-DEL (Model 5601) [Hawk]
12ba  BittWare, Inc.
12bb  Nippon Unisoft Corporation
12bc  Array Microsystems
12bd  Computerm Corp.
12be  Anchor Chips Inc.
	3041  AN3041Q CO-MEM
	3042  AN3042Q CO-MEM Lite
		12be 3042  Anchor Chips Lite Evaluation Board
12bf  Fujifilm Microdevices
12c0  Infimed
12c1  GMM Research Corp
12c2  Mentec Limited
12c3  Holtek Microelectronics Inc
	0058  PCI NE2K Ethernet
	5598  PCI NE2K Ethernet
12c4  Connect Tech Inc
	0001  Blue HEAT/PCI 8 (RS232/CL/RJ11)
	0002  Blue HEAT/PCI 4 (RS232)
	0003  Blue HEAT/PCI 2 (RS232)
	0004  Blue HEAT/PCI 8 (UNIV, RS485)
	0005  Blue HEAT/PCI 4+4/6+2 (UNIV, RS232/485)
	0006  Blue HEAT/PCI 4 (OPTO, RS485)
	0007  Blue HEAT/PCI 2+2 (RS232/485)
	0008  Blue HEAT/PCI 2 (OPTO, Tx, RS485)
	0009  Blue HEAT/PCI 2+6 (RS232/485)
	000a  Blue HEAT/PCI 8 (Tx, RS485)
	000b  Blue HEAT/PCI 4 (Tx, RS485)
	000c  Blue HEAT/PCI 2 (20 MHz, RS485)
	000d  Blue HEAT/PCI 2 PTM
	0100  NT960/PCI
	0201  cPCI Titan - 2 Port
	0202  cPCI Titan - 4 Port
	0300  CTI PCI UART 2 (RS232)
	0301  CTI PCI UART 4 (RS232)
	0302  CTI PCI UART 8 (RS232)
	0310  CTI PCI UART 1+1 (RS232/485)
	0311  CTI PCI UART 2+2 (RS232/485)
	0312  CTI PCI UART 4+4 (RS232/485)
	0320  CTI PCI UART 2
	0321  CTI PCI UART 4
	0322  CTI PCI UART 8
	0330  CTI PCI UART 2 (RS485)
	0331  CTI PCI UART 4 (RS485)
	0332  CTI PCI UART 8 (RS485)
12c5  Picture Elements Incorporated
	007e  Imaging/Scanning Subsystem Engine
	007f  Imaging/Scanning Subsystem Engine
	0081  PCIVST [Grayscale Thresholding Engine]
	0085  Video Simulator/Sender
	0086  THR2 Multi-scale Thresholder
12c6  Mitani Corporation
12c7  Dialogic Corp
# 12 Line, 6 port, CT-BUS/SC-BUS, loopstart FXO adaptor.
	0546  Springware D/120JCT-LS
# 24 Channel, 1 Port, CT-BUS/SC-BUS, T1/PRI adaptor.
	0647  Springware D/240JCT-T1
# 4 Line, 4 port, CT-BUS/SC-BUS, loopstart FXO adaptor. Revision 01
	0676  Springware D/41JCT-LS
# 48 Channel, 2 Port, CT-BUS/SC-BUS, T1/PRI adaptor.
	0685  Springware D/480JCT-2T1
12c8  G Force Co, Ltd
12c9  Gigi Operations
12ca  Integrated Computing Engines
12cb  Antex Electronics Corporation
	0027  SC4 (StudioCard)
12cc  Pluto Technologies International
12cd  Aims Lab
12ce  Netspeed Inc.
12cf  Prophet Systems, Inc.
12d0  GDE Systems, Inc.
12d1  PSITech
12d2  NVidia / SGS Thomson (Joint Venture)
	0008  NV1
	0009  DAC64
	0018  Riva128
		1048 0c10  VICTORY Erazor
		107b 8030  STB Velocity 128
		1092 0350  Viper V330
		1092 1092  Viper V330
		10b4 1b1b  STB Velocity 128
		10b4 1b1d  STB Velocity 128
		10b4 1b1e  STB Velocity 128, PAL TV-Out
		10b4 1b20  STB Velocity 128 Sapphire
		10b4 1b21  STB Velocity 128
		10b4 1b22  STB Velocity 128 AGP, NTSC TV-Out
		10b4 1b23  STB Velocity 128 AGP, PAL TV-Out
		10b4 1b27  STB Velocity 128 DVD
		10b4 1b88  MVP Pro 128
		10b4 222a  STB Velocity 128 AGP
		10b4 2230  STB Velocity 128
		10b4 2232  STB Velocity 128
		10b4 2235  STB Velocity 128 AGP
		2a15 54a3  3DVision-SAGP / 3DexPlorer 3000
	0019  Riva128ZX
	0020  TNT
	0028  TNT2
	0029  UTNT2
	002c  VTNT2
	00a0  ITNT2
12d3  Vingmed Sound A/S
12d4  Ulticom (Formerly DGM&S)
	0200  T1 Card
12d5  Equator Technologies Inc
	0003  BSP16
	1000  BSP15
12d6  Analogic Corp
12d7  Biotronic SRL
12d8  Pericom Semiconductor
	01a7  PI7C21P100 PCI to PCI Bridge
	71e2  PI7C7300A/PI7C7300D PCI-to-PCI Bridge
	71e3  PI7C7300A/PI7C7300D PCI-to-PCI Bridge (Secondary Bus 2)
	8140  PI7C8140A PCI-to-PCI Bridge
	8148  PI7C8148A/PI7C8148B PCI-to-PCI Bridge
	8150  PCI to PCI Bridge
	8152  PI7C8152A/PI7C8152B/PI7C8152BI PCI-to-PCI Bridge
	8154  PI7C8154A/PI7C8154B/PI7C8154BI PCI-to-PCI Bridge
	e110  PI7C9X110 PCI Express to PCI bridge
		1775 11cc  CC11/CL11 CompactPCI Bridge
	e130  PCI Express to PCI-XPI7C9X130 PCI-X Bridge
12d9  Aculab PLC
	0002  PCI Prosody
	0004  cPCI Prosody
	0005  Aculab E1/T1 PCI card
	1078  Prosody X class e1000 device
		12d9 000d  Prosody X PCI
		12d9 000e  Prosody X cPCI
12da  True Time Inc.
12db  Annapolis Micro Systems, Inc
12dc  Symicron Computer Communication Ltd.
12dd  Management Graphics
12de  Rainbow Technologies
	0200  CryptoSwift CS200
12df  SBS Technologies Inc
12e0  Chase Research
	0010  ST16C654 Quad UART
	0020  ST16C654 Quad UART
	0030  ST16C654 Quad UART
12e1  Nintendo Co, Ltd
12e2  Datum Inc. Bancomm-Timing Division
12e3  Imation Corp - Medical Imaging Systems
12e4  Brooktrout Technology Inc
12e5  Apex Semiconductor Inc
12e6  Cirel Systems
12e7  Sunsgroup Corporation
12e8  Crisc Corp
12e9  GE Spacenet
12ea  Zuken
12eb  Aureal Semiconductor
	0001  Vortex 1
		104d 8036  AU8820 Vortex Digital Audio Processor
		1092 2000  Sonic Impact A3D
		1092 2100  Sonic Impact A3D
		1092 2110  Sonic Impact A3D
		1092 2200  Sonic Impact A3D
		122d 1002  AU8820 Vortex Digital Audio Processor
		12eb 0001  AU8820 Vortex Digital Audio Processor
		5053 3355  Montego
	0002  Vortex 2
		104d 8049  AU8830 Vortex 3D Digital Audio Processor
		104d 807b  AU8830 Vortex 3D Digital Audio Processor
		1092 3000  Monster Sound II
		1092 3001  Monster Sound II
		1092 3002  Monster Sound II
		1092 3003  Monster Sound II
		1092 3004  Monster Sound II
		12eb 0002  AU8830 Vortex 3D Digital Audio Processor
		12eb 0088  AU8830 Vortex 3D Digital Audio Processor
		144d 3510  AU8830 Vortex 3D Digital Audio Processor
		5053 3356  Montego II
	0003  AU8810 Vortex Digital Audio Processor
		104d 8049  AU8810 Vortex Digital Audio Processor
		104d 8077  AU8810 Vortex Digital Audio Processor
		109f 1000  AU8810 Vortex Digital Audio Processor
		12eb 0003  AU8810 Vortex Digital Audio Processor
		1462 6780  AU8810 Vortex Digital Audio Processor
		14a4 2073  AU8810 Vortex Digital Audio Processor
		14a4 2091  AU8810 Vortex Digital Audio Processor
		14a4 2104  AU8810 Vortex Digital Audio Processor
		14a4 2106  AU8810 Vortex Digital Audio Processor
	8803  Vortex 56k Software Modem
		12eb 8803  Vortex 56k Software Modem
12ec  3A International, Inc.
12ed  Optivision Inc.
12ee  Orange Micro
12ef  Vienna Systems
12f0  Pentek
12f1  Sorenson Vision Inc
12f2  Gammagraphx, Inc.
12f3  Radstone Technology
12f4  Megatel
12f5  Forks
12f6  Dawson France
12f7  Cognex
12f8  Electronic Design GmbH
	0002  VideoMaker
12f9  Four Fold Ltd
12fb  Spectrum Signal Processing
	0001  PMC-MAI
	00f5  F5 Dakar
	02ad  PMC-2MAI
	2adc  ePMC-2ADC
	3100  PRO-3100
	3500  PRO-3500
	4d4f  Modena
	8120  ePMC-8120
	da62  Daytona C6201 PCI (Hurricane)
	db62  Ingliston XBIF
	dc62  Ingliston PLX9054
	dd62  Ingliston JTAG/ISP
	eddc  ePMC-MSDDC
	fa01  ePMC-FPGA
12fc  Capital Equipment Corp
12fd  I2S
12fe  ESD Electronic System Design GmbH
12ff  Lexicon
1300  Harman International Industries Inc
1302  Computer Sciences Corp
1303  Innovative Integration
	0030  X3-SDF 4-channel XMC acquisition board
1304  Juniper Networks
1305  Netphone, Inc
1306  Duet Technologies
# Nee ComputerBoards
1307  Measurement Computing
	0001  PCI-DAS1602/16
	000b  PCI-DIO48H
	000c  PCI-PDISO8
	000d  PCI-PDISO16
	000f  PCI-DAS1200
	0010  PCI-DAS1602/12
	0014  PCI-DIO24H
	0015  PCI-DIO24H/CTR3
	0016  PCI-DIO48H/CTR15
	0017  PCI-DIO96H
	0018  PCI-CTR05
	0019  PCI-DAS1200/JR
	001a  PCI-DAS1001
	001b  PCI-DAS1002
	001c  PCI-DAS1602JR/16
	001d  PCI-DAS6402/16
	001e  PCI-DAS6402/12
	001f  PCI-DAS16/M1
	0020  PCI-DDA02/12
	0021  PCI-DDA04/12
	0022  PCI-DDA08/12
	0023  PCI-DDA02/16
	0024  PCI-DDA04/16
	0025  PCI-DDA08/16
	0026  PCI-DAC04/12-HS
	0027  PCI-DAC04/16-HS
	0028  PCI-DIO24
	0029  PCI-DAS08
	002c  PCI-INT32
	0033  PCI-DUAL-AC5
	0034  PCI-DAS-TC
	0035  PCI-DAS64/M1/16
	0036  PCI-DAS64/M2/16
	0037  PCI-DAS64/M3/16
	004c  PCI-DAS1000
	004d  PCI-QUAD04
	0052  PCI-DAS4020/12
	0053  PCIM-DDA06/16
	0054  PCI-DIO96
	005d  PCI-DAS6023
	005e  PCI-DAS6025
	005f  PCI-DAS6030
	0060  PCI-DAS6031
	0061  PCI-DAS6032
	0062  PCI-DAS6033
	0063  PCI-DAS6034
	0064  PCI-DAS6035
	0065  PCI-DAS6040
	0066  PCI-DAS6052
	0067  PCI-DAS6070
	0068  PCI-DAS6071
	006f  PCI-DAS6036
	0078  PCI-DAS6013
	0079  PCI-DAS6014
1308  Jato Technologies Inc.
	0001  NetCelerator Adapter
		1308 0001  NetCelerator Adapter
1309  AB Semiconductor Ltd
130a  Mitsubishi Electric Microcomputer
130b  Colorgraphic Communications Corp
130c  Ambex Technologies, Inc
130d  Accelerix Inc
130e  Yamatake-Honeywell Co. Ltd
130f  Advanet Inc
1310  Gespac
1311  Videoserver, Inc
1312  Acuity Imaging, Inc
1313  Yaskawa Electric Co.
1315  Wavesat
1316  Teradyne Inc
1317  ADMtek
	0981  21x4x DEC-Tulip compatible 10/100 Ethernet
	0985  NC100 Network Everywhere Fast Ethernet 10/100
		1734 100c  Scenic N300 ADMtek AN983 10/100 Mbps PCI Adapter
	1985  21x4x DEC-Tulip compatible 10/100 Ethernet
		1385 511a  FA511
		1395 2103  CB100-EZ (4-LED version)
	2850  HSP MicroModem 56
	5120  ADM5120 OpenGate System-on-Chip
	8201  ADM8211 802.11b Wireless Interface
		10b8 2635  SMC2635W v1 802.11b Wireless Cardbus Adapter
		1317 8201  SMC2635W v2 802.11b Wireless Cardbus Adapter
	8211  ADM8211 802.11b Wireless Interface
	9511  21x4x DEC-Tulip compatible 10/100 Ethernet
1318  Packet Engines Inc.
	0911  GNIC-II PCI Gigabit Ethernet [Hamachi]
1319  Fortemedia, Inc
	0801  Xwave QS3000A [FM801]
		1319 1319  FM801 PCI Audio
	0802  Xwave QS3000A [FM801 game port]
		1319 1319  FM801 PCI Joystick
	1000  FM801 PCI Audio
	1001  FM801 PCI Joystick
131a  Finisar Corp.
131c  Nippon Electro-Sensory Devices Corp
131d  Sysmic, Inc.
131e  Xinex Networks Inc
131f  Siig Inc
	1000  CyberSerial (1-port) 16550
	1001  CyberSerial (1-port) 16650
	1002  CyberSerial (1-port) 16850
	1010  Duet 1S(16550)+1P
	1011  Duet 1S(16650)+1P
	1012  Duet 1S(16850)+1P
	1020  CyberParallel (1-port)
	1021  CyberParallel (2-port)
	1030  CyberSerial (2-port) 16550
	1031  CyberSerial (2-port) 16650
	1032  CyberSerial (2-port) 16850
	1034  Trio 2S(16550)+1P
	1035  Trio 2S(16650)+1P
	1036  Trio 2S(16850)+1P
	1050  CyberSerial (4-port) 16550
	1051  CyberSerial (4-port) 16650
	1052  CyberSerial (4-port) 16850
	2000  CyberSerial (1-port) 16550
	2001  CyberSerial (1-port) 16650
	2002  CyberSerial (1-port) 16850
	2010  Duet 1S(16550)+1P
	2011  Duet 1S(16650)+1P
	2012  Duet 1S(16850)+1P
	2020  CyberParallel (1-port)
	2021  CyberParallel (2-port)
	2030  CyberSerial (2-port) 16550
		131f 2030  PCI Serial Card
	2031  CyberSerial (2-port) 16650
	2032  CyberSerial (2-port) 16850
	2040  Trio 1S(16550)+2P
	2041  Trio 1S(16650)+2P
	2042  Trio 1S(16850)+2P
	2050  CyberSerial (4-port) 16550
	2051  CyberSerial (4-port) 16650
	2052  CyberSerial (4-port) 16850
	2060  Trio 2S(16550)+1P
	2061  Trio 2S(16650)+1P
	2062  Trio 2S(16850)+1P
	2081  CyberSerial (8-port) ST16654
1320  Crypto AG
1321  Arcobel Graphics BV
1322  MTT Co., Ltd
1323  Dome Inc
1324  Sphere Communications
1325  Salix Technologies, Inc
1326  Seachange international
1327  Voss scientific
1328  quadrant international
1329  Productivity Enhancement
132a  Microcom Inc.
132b  Broadband Technologies
132c  Micrel Inc
132d  Integrated Silicon Solution, Inc.
1330  MMC Networks
1331  RadiSys Corporation
	0030  ENP-2611
	8200  82600 Host Bridge
	8201  82600 IDE
	8202  82600 USB
	8210  82600 PCI Bridge
1332  Micro Memory
	5415  MM-5415CN PCI Memory Module with Battery Backup
	5425  MM-5425CN PCI 64/66 Memory Module with Battery Backup
	6140  MM-6140D
1334  Redcreek Communications, Inc
1335  Videomail, Inc
1337  Third Planet Publishing
1338  BT Electronics
133a  Vtel Corp
133b  Softcom Microsystems
133c  Holontech Corp
133d  SS Technologies
133e  Virtual Computer Corp
133f  SCM Microsystems
1340  Atalla Corp
1341  Kyoto Microcomputer Co
1342  Promax Systems Inc
1343  Phylon Communications Inc
1344  Crucial Technology
1345  Arescom Inc
1347  Odetics
1349  Sumitomo Electric Industries, Ltd.
134a  DTC Technology Corp.
	0001  Domex 536
	0002  Domex DMX3194UP SCSI Adapter
134b  ARK Research Corp.
134c  Chori Joho System Co. Ltd
134d  PCTel Inc
	2189  HSP56 MicroModem
	2486  2304WT V.92 MDC Modem
	7890  HSP MicroModem 56
		134d 0001  PCT789 adapter
	7891  HSP MicroModem 56
		134d 0001  HSP MicroModem 56
	7892  HSP MicroModem 56
	7893  HSP MicroModem 56
	7894  HSP MicroModem 56
	7895  HSP MicroModem 56
	7896  HSP MicroModem 56
	7897  HSP MicroModem 56
134e  CSTI
134f  Algo System Co Ltd
1350  Systec Co. Ltd
1351  Sonix Inc
1353  Thales Idatys
	0002  Proserver
	0003  PCI-FUT
	0004  PCI-S0
	0005  PCI-FUT-S0
1354  Dwave System Inc
1355  Kratos Analytical Ltd
1356  The Logical Co
1359  Prisa Networks
135a  Brain Boxes
	0a61  UC-324 [VELOCITY RS422/485]
135b  Giganet Inc
135c  Quatech Inc
	0010  QSC-100
	0020  DSC-100
	0030  DSC-200/300
	0040  QSC-200/300
	0050  ESC-100D
	0060  ESC-100M
	00f0  MPAC-100 Syncronous Serial Card (Zilog 85230)
	0170  QSCLP-100
	0180  DSCLP-100
	0190  SSCLP-100
	01a0  QSCLP-200/300
	01b0  DSCLP-200/300
	01c0  SSCLP-200/300
	0258  DSPSX-200/300
135d  ABB Network Partner AB
135e  Sealevel Systems Inc
	5101  Route 56.PCI - Multi-Protocol Serial Interface (Zilog Z16C32)
	7101  Single Port RS-232/422/485/530
	7201  Dual Port RS-232/422/485 Interface
	7202  Dual Port RS-232 Interface
	7401  Four Port RS-232 Interface
	7402  Four Port RS-422/485 Interface
	7801  Eight Port RS-232 Interface
	7804  Eight Port RS-232/422/485 Interface
	8001  8001 Digital I/O Adapter
135f  I-Data International A-S
1360  Meinberg Funkuhren
	0101  PCI32 DCF77 Radio Clock
	0102  PCI509 DCF77 Radio Clock
	0103  PCI510 DCF77 Radio Clock
	0104  PCI511 DCF77 Radio Clock
	0105  PEX511 DCF77 Radio Clock (PCI Express)
	0201  GPS167PCI GPS Receiver
	0202  GPS168PCI GPS Receiver
	0203  GPS169PCI GPS Receiver
	0204  GPS170PCI GPS Receiver
	0205  GPS170PEX GPS Receiver (PCI Express)
	0301  TCR510PCI IRIG Timecode Reader
	0302  TCR167PCI IRIG Timecode Reader
	0303  TCR511PCI IRIG Timecode Reader
	0304  TCR511PEX IRIG Timecode Reader (PCI Express)
	0305  TCR170PEX IRIG Timecode Reader (PCI Express)
	0501  PTP270PEX PTP/IEEE1588 slave card (PCI Express)
	0601  FRC511PEX Free Running Clock (PCI Express)
1361  Soliton Systems K.K.
1362  Fujifacom Corporation
1363  Phoenix Technology Ltd
1364  ATM Communications Inc
1365  Hypercope GmbH
1366  Teijin Seiki Co. Ltd
1367  Hitachi Zosen Corporation
1368  Skyware Corporation
1369  Digigram
136a  High Soft Tech
	0004  HST Saphir VII mini PCI
	0007  HST Saphir III E MultiLink 4
	0008  HST Saphir III E MultiLink 8
	000a  HST Saphir III E MultiLink 2
136b  Kawasaki Steel Corporation
	ff01  KL5A72002 Motion JPEG
136c  Adtek System Science Co Ltd
136d  Gigalabs Inc
136f  Applied Magic Inc
1370  ATL Products
1371  CNet Technology Inc
	434e  GigaCard Network Adapter
		1371 434e  N-Way PCI-Bus Giga-Card 1000/100/10Mbps(L)
1373  Silicon Vision Inc
1374  Silicom Ltd.
	0024  Silicom Dual port Giga Ethernet BGE Bypass Server Adapter
	0025  Silicom Quad port Giga Ethernet BGE Bypass Server Adapter
	0026  Silicom Dual port Fiber Giga Ethernet 546 Bypass Server Adapter
	0027  Silicom Dual port Fiber LX Giga Ethernet 546 Bypass Server Adapter
	0029  Silicom Dual port Copper Giga Ethernet 546GB Bypass Server Adapter
	002a  Silicom Dual port Fiber Giga Ethernet 546 TAP/Bypass Server Adapter
	002b  Silicom Dual port Copper Fast Ethernet 546 TAP/Bypass Server Adapter (PXE2TBI)
	002c  Silicom Quad port Copper Giga Ethernet 546GB Bypass Server Adapter (PXG4BPI)
	002d  Silicom Quad port Fiber-SX Giga Ethernet 546GB Bypass Server Adapter (PXG4BPFI)
	002e  Silicom Quad port Fiber-LX Giga Ethernet 546GB Bypass Server Adapter (PXG4BPFI-LX)
	002f  Silicom Dual port Fiber-SX Giga Ethernet 546GB Low profile Bypass Server Adapter (PXG2BPFIL)
	0030  Silicom Dual port Fiber-LX Giga Ethernet 546GB Low profile Bypass Server Adapter
	0031  Silicom Quad port Copper Giga Ethernet PCI-E Bypass Server Adapter
	0032  Silicom Dual port Copper Fast Ethernet 546 TAP/Bypass Server Adapter
	0034  Silicom Dual port Copper Giga Ethernet PCI-E BGE Bypass Server Adapter
	0035  Silicom Quad port Copper Giga Ethernet PCI-E BGE Bypass Server Adapter
	0036  Silicom Dual port Fiber Giga Ethernet PCI-E BGE Bypass Server Adapter
	0037  Silicom Dual port Copper Ethernet PCI-E Intel based Bypass Server Adapter
	0038  Silicom Quad port Copper Ethernet PCI-E Intel based Bypass Server Adapter
	0039  Silicom Dual port Fiber-SX Ethernet PCI-E Intel based Bypass Server Adapter
	003a  Silicom Dual port Fiber-LX Ethernet PCI-E Intel based Bypass Server Adapter
	003b  Silicom Dual port Fiber Ethernet PMC Intel based Bypass Server Adapter (PMCX2BPFI)
	003c  Silicom Dual port Copper Ethernet PCI-X BGE based Bypass Server Adapter (PXG2BPRB)
	003e  Silicom Dual port Fiber Giga Ethernet PCI-E 571 TAP/Bypass Server Adapter (PEG2TBFI)
	003f  Silicom Dual port Copper Giga Ethernet PCI-X 546 TAP/Bypass Server Adapter (PXG2TBI)
	0040  Silicom Quad port Fiber-SX Giga Ethernet 571 Bypass Server Adapter (PEG4BPFI)
	0043  Silicom Quad port Fiber-SX Giga Ethernet 546 Bypass Server Adapter (PXG4BPFID)
	0045  Silicom 6 port Copper Giga Ethernet 546 Bypass Server Adapter (PXG6BPI)
	0047  Silicom Dual port Fiber-SX Giga Ethernet 571 Bypass Disconnect Server Adapter (PEG2BPFID)
	004a  Silicom Quad port Fiber-LX Giga Ethernet 571 Bypass Server Adapter (PEG4BPFI-LX)
1375  Argosystems Inc
1376  LMC
1377  Electronic Equipment Production & Distribution GmbH
1378  Telemann Co. Ltd
1379  Asahi Kasei Microsystems Co Ltd
137a  Mark of the Unicorn Inc
	0001  PCI-324 Audiowire Interface
137b  PPT Vision
137c  Iwatsu Electric Co Ltd
137d  Dynachip Corporation
137e  Patriot Scientific Corporation
137f  Japan Satellite Systems Inc
1380  Sanritz Automation Co Ltd
1381  Brains Co. Ltd
1382  Marian - Electronic & Software
	0001  ARC88 audio recording card
	2008  Prodif 96 Pro sound system
	2048  Prodif Plus sound system
	2088  Marc 8 Midi sound system
	20c8  Marc A sound system
	4008  Marc 2 sound system
	4010  Marc 2 Pro sound system
	4048  Marc 4 MIDI sound system
	4088  Marc 4 Digi sound system
	4248  Marc X sound system
	4424  TRACE D4 Sound System
1383  Controlnet Inc
1384  Reality Simulation Systems Inc
1385  Netgear
	0013  WG311T 108 Mbps Wireless PCI Adapter
	006b  WA301 802.11b Wireless PCI Adapter
	4100  MA301 802.11b Wireless PCI Adapter
	4105  MA311 802.11b Wireless PCI Adapter
	4400  WAG511 802.11a/b/g Dual Band Wireless PC Card
	4600  WAG511 802.11a/b/g Dual Band Wireless PC Card
	4601  WAG511 802.11a/b/g Dual Band Wireless PC Card
	4610  WAG511 802.11a/b/g Dual Band Wireless PC Card
	4a00  WAG311 802.11a/g Wireless PCI Adapter
	4b00  WG511T 108 Mbps Wireless PC Card
	4d00  WG311T 108 Mbps Wireless PCI Adapter
	4f00  WG511U Double 108 Mbps  Wireless PC Card
	5200  GA511 Gigabit PC Card
	620a  GA620 Gigabit Ethernet
	630a  GA630 Gigabit Ethernet
	6d00  WPNT511 RangeMax 240 Mbps Wireless PC Card
	7b00  WN511B RangeMax Next 270 Mbps Wireless PC Card
	7c00  WN511T RangeMax Next 300 Mbps Wireless PC Card
	7d00  WN311B RangeMax Next 270 Mbps Wireless PCI Adapter
	7e00  WN311T RangeMax Next 300 Mbps Wireless PCI Adapter
	f004  FA310TX
	f312  FA312 REV-A1 Fast Ethernet PCI Adapter
1386  Video Domain Technologies
1387  Systran Corp
1388  Hitachi Information Technology Co Ltd
1389  Applicom International
	0001  PCI1500PFB [Intelligent fieldbus adaptor]
138a  Fusion Micromedia Corp
138b  Tokimec Inc
138c  Silicon Reality
138d  Future Techno Designs pte Ltd
138e  Basler GmbH
138f  Patapsco Designs Inc
1390  Concept Development Inc
1391  Development Concepts Inc
1392  Medialight Inc
1393  Moxa Technologies Co Ltd
	0001  UC7000 Serial
	1020  CP102 (2-port RS-232 PCI)
	1021  CP102UL (2-port RS-232 Universal PCI)
	1022  CP102U (2-port RS-232 Universal PCI)
	1023  CP-102UF
	1040  Smartio C104H/PCI
	1041  CP104U (4-port RS-232 Universal PCI)
	1042  CP104JU (4-port RS-232 Universal PCI)
	1043  CP104EL (4-port RS-232 Smart PCI Express)
	1044  POS104UL (4-port RS-232 Universal PCI)
	1080  CB108 (8-port RS-232 PC/104-plus Module)
	1140  CT-114 series
	1141  Industrio CP-114
	1142  CB114 (4-port RS-232/422/485 PC/104-plus Module)
	1143  CP-114UL (4-port RS-232/422/485 Smart Universal PCI Serial Board)
	1180  CP118U (8-port RS-232/422/485 Smart Universal PCI)
	1181  CP118EL (8-port RS-232/422/485 Smart PCI Express)
	1320  CP132 (2-port RS-422/485 PCI)
	1321  CP132U (2-Port RS-422/485 Universal PCI)
	1340  CP134U (4-Port RS-422/485 Universal PCI)
	1341  CB134I (4-port RS-422/485 PC/104-plus Module)
	1380  CP138U (8-port RS-232/422/485 Smart Universal PCI)
	1680  Smartio C168H/PCI
	1681  CP-168U V2 Smart Serial Board (8-port RS-232)
	1682  CP168EL (8-port RS-232 Smart PCI Express)
	2040  Intellio CP-204J
	2180  Intellio C218 Turbo PCI
	3200  Intellio C320 Turbo PCI
1394  Level One Communications
	0001  LXT1001 Gigabit Ethernet
		1186 4800  DGE-500SX
		1394 0001  NetCelerator Adapter
1395  Ambicom Inc
1396  Cipher Systems Inc
1397  Cologne Chip Designs GmbH
	08b4  ISDN network Controller [HFC-4S]
		1397 b520  HFC-4S [IOB4ST]
		1397 b540  HFC-4S [Swyx 4xS0 SX2 QuadBri]
		1397 b556  HFC-4S [Junghanns DuoDBRI]
		1397 e888  HFC-4S [OpenVox B200P / B400P]
	16b8  ISDN network Controller [HFC-8S]
	2bd0  ISDN network controller [HFC-PCI]
		0675 1704  ISDN Adapter (PCI Bus, D, C)
		0675 1708  ISDN Adapter (PCI Bus, D, C, ACPI)
		1397 2bd0  ISDN Board
		e4bf 1000  CI1-1-Harp
	30b1  ISDN network Controller [HFC-E1]
	b700  ISDN network controller PrimuX S0 [HFC-PCI]
	f001  GSM Network Controller [HFC-4GSM]
1398  Clarion co. Ltd
1399  Rios systems Co Ltd
139a  Alacritech Inc
	0001  Quad Port 10/100 Server Accelerator
	0003  Single Port 10/100 Server Accelerator
	0005  Single Port Gigabit Server Accelerator
139b  Mediasonic Multimedia Systems Ltd
139c  Quantum 3d Inc
139d  EPL limited
139e  Media4
139f  Aethra s.r.l.
13a0  Crystal Group Inc
13a1  Kawasaki Heavy Industries Ltd
13a2  Ositech Communications Inc
13a3  Hifn Inc.
	0005  7751 Security Processor
	0006  6500 Public Key Processor
	0007  7811 Security Processor
	0012  7951 Security Processor
	0014  78XX Security Processor
	0016  8065 Security Processor
	0017  8165 Security Processor
	0018  8154 Security Processor
	001d  7956 Security Processor
	001f  7855 Security Processor
	0020  7955 Security Processor
	0026  8155 Security Processor
	002e  9630 Compression Processor
	002f  9725 Compression and Security Processor
		13a3 1600  DR1600 Acceleration Card
		13a3 1605  DR1605 Acceleration Card
		13a3 1610  DR1610 Acceleration Card
		13a3 1615  DR1615 Acceleration Card
		13a3 1620  DR1620 Acceleration Card
		13a3 1625  DR1625 Acceleration Card
	0033  8201 Acceleration Processor
		13a3 0036  DX1710 Acceleration Card
	0034  8202 Acceleration Processor
		13a3 0036  DX1720 Acceleration Card
	0035  8203 Acceleration Processor
		13a3 0036  DX1730 Acceleration Card
	0037  8204 Acceleration Processor
		13a3 0036  DX1740 Acceleration Card
13a4  Rascom Inc
13a5  Audio Digital Imaging Inc
13a6  Videonics Inc
13a7  Teles AG
13a8  Exar Corp.
	0152  XR17C/D152 Dual PCI UART
	0154  XR17C154 Quad UART
	0158  XR17C158 Octal UART
	0252  XR17V252 Dual UART PCI controller
	0254  XR17V254 Quad UART PCI controller
	0258  XR17V258 Octal UART PCI controller
13a9  Siemens Medical Systems, Ultrasound Group
13aa  Broadband Networks Inc
13ab  Arcom Control Systems Ltd
13ac  Motion Media Technology Ltd
13ad  Nexus Inc
13ae  ALD Technology Ltd
13af  T.Sqware
13b0  Maxspeed Corp
13b1  Tamura corporation
13b2  Techno Chips Co. Ltd
13b3  Lanart Corporation
13b4  Wellbean Co Inc
13b5  ARM
13b6  Dlog GmbH
13b7  Logic Devices Inc
13b8  Nokia Telecommunications oy
13b9  Elecom Co Ltd
13ba  Oxford Instruments
13bb  Sanyo Technosound Co Ltd
13bc  Bitran Corporation
13bd  Sharp corporation
13be  Miroku Jyoho Service Co. Ltd
13bf  Sharewave Inc
13c0  Microgate Corporation
	0010  SyncLink Adapter v1
	0020  SyncLink SCC Adapter
	0030  SyncLink Multiport Adapter
	0070  SyncLink GT Adapter
	0080  SyncLink GT4 Adapter
	00a0  SyncLink GT2 Adapter
	0210  SyncLink Adapter v2
13c1  3ware Inc
	1000  5xxx/6xxx-series PATA-RAID
	1001  7xxx/8xxx-series PATA/SATA-RAID
		13c1 1001  7xxx/8xxx-series PATA/SATA-RAID
	1002  9xxx-series SATA-RAID
	1003  9550SX SATA-II RAID PCI-X
	1004  9650SE SATA-II RAID PCIe
	1005  9690SA SAS/SATA-II RAID PCIe
	1010  9750 SAS2/SATA-II RAID PCIe
13c2  Technotrend Systemtechnik GmbH
	000e  Technotrend/Hauppauge DVB card rev2.3
	1019  TTechnoTrend-budget DVB S2-3200
13c3  Janz Computer AG
13c4  Phase Metrics
13c5  Alphi Technology Corp
13c6  Condor Engineering Inc
	0520  CEI-520 A429 Card
	0620  CEI-620 A429 Card
	0820  CEI-820 A429 Card
	0830  CEI-830 A429 Card
	1004  P-SER Multi-channel PMC to RS-485/422/232 adapter
13c7  Blue Chip Technology Ltd
	0adc  PCI-ADC
	0b10  PCI-PIO
	0d10  PCI-DIO
	524c  PCI-RLY
	5744  PCI-WDT
13c8  Apptech Inc
13c9  Eaton Corporation
13ca  Iomega Corporation
13cb  Yano Electric Co Ltd
13cc  Metheus Corporation
13cd  Compatible Systems Corporation
13ce  Cocom A/S
13cf  Studio Audio & Video Ltd
13d0  Techsan Electronics Co Ltd
	2103  B2C2 FlexCopII DVB chip / Technisat SkyStar2 DVB card
	2104  B2C2 FlexCopIII DVB chip / Technisat SkyStar2 DVB card (rev 01)
	2200  B2C2 FlexCopIII DVB chip / Technisat SkyStar2 DVB card
13d1  Abocom Systems Inc
	ab02  ADMtek Centaur-C rev 17 [D-Link DFE-680TX] CardBus Fast Ethernet Adapter
	ab03  21x4x DEC-Tulip compatible 10/100 Ethernet
	ab06  RTL8139 [FE2000VX] CardBus Fast Ethernet Attached Port Adapter
	ab08  21x4x DEC-Tulip compatible 10/100 Ethernet
13d2  Shark Multimedia Inc
13d3  IMC Networks
	3211  DTV-DVB 704A
	3216  AzureWare AD-TU200
	3219  DTV-DVB 7049A DVB-T USB Stick
13d4  Graphics Microsystems Inc
13d5  Media 100 Inc
13d6  K.I. Technology Co Ltd
13d7  Toshiba Engineering Corporation
13d8  Phobos corporation
13d9  Apex PC Solutions Inc
13da  Intresource Systems pte Ltd
13db  Janich & Klass Computertechnik GmbH
13dc  Netboost Corporation
13dd  Multimedia Bundle Inc
13de  ABB Robotics Products AB
13df  E-Tech Inc
	0001  PCI56RVP Modem
		13df 0001  PCI56RVP Modem
13e0  GVC Corporation
13e1  Silicom Multimedia Systems Inc
13e2  Dynamics Research Corporation
13e3  Nest Inc
13e4  Calculex Inc
13e5  Telesoft Design Ltd
13e6  Argosy research Inc
13e7  NAC Incorporated
13e8  Chip Express Corporation
13e9  Intraserver Technology Inc
13ea  Dallas Semiconductor
13eb  Hauppauge Computer Works Inc
13ec  Zydacron Inc
	000a  NPC-RC01 Remote control receiver
13ed  Raytheion E-Systems
13ee  Hayes Microcomputer Products Inc
13ef  Coppercom Inc
13f0  Sundance Technology Inc / IC Plus Corp
	0200  IC Plus IP100A Integrated 10/100 Ethernet MAC + PHY
		1043 8213  NX1001
	0201  ST201 Sundance Ethernet
	1021  TC9020 Gigabit Ethernet
	1023  IP1000 Family Gigabit Ethernet
		1043 8180  NX1101
13f1  Oce' - Technologies B.V.
13f2  Ford Microelectronics Inc
13f3  Mcdata Corporation
13f4  Troika Networks, Inc.
	1401  Zentai Fibre Channel Adapter
13f5  Kansai Electric Co. Ltd
13f6  C-Media Electronics Inc
	0011  CMI8738
	0100  CM8338A
		13f6 ffff  CMI8338/C3DX PCI Audio Device
	0101  CM8338B
		13f6 0101  CMI8338-031 PCI Audio Device
	0111  CM8738
		1019 0970  P6STP-FL motherboard
		1043 8035  CUSI-FX motherboard
		1043 8077  CMI8738 6-channel audio controller
		1043 80e2  CMI8738 6ch-MX
		13f6 0111  CMI8738/C3DX PCI Audio Device
		13f6 9761  Theatron Agrippa
		153b 1144  Aureon 5.1
		153b 1170  Aureon 7.1
		1681 a000  Gamesurround MUSE XL
		270f 1103  CT-7NJS Ultra motherboard
		270f f462  7NJL1 motherboard
		584d 3731  Digital X-Mystique
		584d 3741  X-Plosion 7.1
		584d 3751  X-Raider 7.1
		584d 3761  X-Mystique 7.1 LP
		584d 3771  X-Mystique 7.1 LP Value
		7284 8384  Striker 7.1
	0211  CM8738
	8788  CMI8788 [Oxygen HD Audio]
		1043 8269  Virtuoso 200 (Xonar D2)
		1043 8275  Virtuoso 100 (Xonar DX)
		1043 82b7  Virtuoso 200 (Xonar D2X)
		1043 8314  Virtuoso 200 (Xonar HDAV1.3)
		1043 8327  Virtuoso 100 (Xonar DX)
		1043 834f  Virtuoso 100 (Xonar D1)
		1043 835c  Virtuoso 100 (Xonar Essence STX)
		1043 835d  Virtuoso 100 (Xonar ST)
		1043 835e  Virtuoso 200 (Xonar HDAV1.3 Slim)
		1043 838e  Virtuoso 200 (Xonar DS)
		14c3 1710  HIFIER
		1a58 0910  Barracuda AC-1
		415a 5431  X-Meridian 7.1
		584d 3781  HDA X-Purity 7.1 Platinum
		7284 9761  CLARO
		7284 9781  CLARO halo
	9880  CM9880
13f7  Wildfire Communications
13f8  Ad Lib Multimedia Inc
13f9  NTT Advanced Technology Corp.
13fa  Pentland Systems Ltd
13fb  Aydin Corp
13fc  Computer Peripherals International
13fd  Micro Science Inc
13fe  Advantech Co. Ltd
	1240  PCI-1240 4-channel stepper motor controller card
	1600  PCI-16xx series PCI multiport serial board (function 0)
# This board has two PCI functions, appears as two PCI devices
		1601 0002  PCI-1601 2-port unisolated RS-422/485
# This board has two PCI functions, appears as two PCI devices
		1602 0002  PCI-1602 2-port isolated RS-422/485
		1612 0004  PCI-1612 4-port RS-232/422/485
	1603  PCI-1603 2-port isolated RS-232/current loop
	1604  PCI-1604 2-port RS-232
	16ff  PCI-16xx series PCI multiport serial board (function 1: RX/TX steering CPLD)
		1601 0000  PCI-1601 2-port unisolated RS-422/485 PCI communications card
		1602 0000  PCI-1602 2-port isolated RS-422/485
		1612 0000  PCI-1612 4-port RS-232/422/485
	1711  PCI-1711 16-channel data acquisition card 12-bit, 100kS/s
	1733  PCI-1733 32-channel isolated digital input card
	1752  PCI-1752
	1754  PCI-1754
	1756  PCI-1756
13ff  Silicon Spice Inc
1400  Artx Inc
	1401  9432 TX
1401  CR-Systems A/S
1402  Meilhaus Electronic GmbH
	0630  ME-630
	0940  ME-94
	0950  ME-95
	0960  ME-96
	1000  ME-1000
	100a  ME-1000
	100b  ME-1000
	1400  ME-1400
	140a  ME-1400A
	140b  ME-1400B
	140c  ME-1400C
	140d  ME-1400D
	140e  ME-1400E
	14ea  ME-1400EA
	14eb  ME-1400EB
	1604  ME-1600/4U
	1608  ME-1600/8U
	160c  ME-1600/12U
	160f  ME-1600/16U
	168f  ME-1600/16U8I
	4610  ME-4610
	4650  ME-4650
	4660  ME-4660
	4661  ME-4660I
	4662  ME-4660
	4663  ME-4660I
	4670  ME-4670
	4671  ME-4670I
	4672  ME-4670S
	4673  ME-4670IS
	4680  ME-4680
	4681  ME-4680I
	4682  ME-4680S
	4683  ME-4680IS
	6004  ME-6000/4
	6008  ME-6000/8
	600f  ME-6000/16
	6014  ME-6000I/4
	6018  ME-6000I/8
	601f  ME-6000I/16
	6034  ME-6000ISLE/4
	6038  ME-6000ISLE/8
	603f  ME-6000ISLE/16
	6044  ME-6000/4/DIO
	6048  ME-6000/8/DIO
	604f  ME-6000/16/DIO
	6054  ME-6000I/4/DIO
	6058  ME-6000I/8/DIO
	605f  ME-6000I/16/DIO
	6074  ME-6000ISLE/4/DIO
	6078  ME-6000ISLE/8/DIO
	607f  ME-6000ISLE/16/DIO
	6104  ME-6100/4
	6108  ME-6100/8
	610f  ME-6100/16
	6114  ME-6100I/4
	6118  ME-6100I/8
	611f  ME-6100I/16
	6134  ME-6100ISLE/4
	6138  ME-6100ISLE/8
	613f  ME-6100ISLE/16
	6144  ME-6100/4/DIO
	6148  ME-6100/8/DIO
	614f  ME-6100/16/DIO
	6154  ME-6100I/4/DIO
	6158  ME-6100I/8/DIO
	615f  ME-6100I/16/DIO
	6174  ME-6100ISLE/4/DIO
	6178  ME-6100ISLE/8/DIO
	617f  ME-6100ISLE/16/DIO
	6259  ME-6200I/9/DIO
	6359  ME-6300I/9/DIO
	810a  ME-8100A
	810b  ME-8100B
	820a  ME-8200A
	820b  ME-8200B
1403  Ascor Inc
1404  Fundamental Software Inc
1405  Excalibur Systems Inc
1406  Oce' Printing Systems GmbH
1407  Lava Computer mfg Inc
	0100  Lava Dual Serial
	0101  Lava Quatro A
	0102  Lava Quatro B
	0110  Lava DSerial-PCI Port A
	0111  Lava DSerial-PCI Port B
	0120  Quattro-PCI A
	0121  Quattro-PCI B
	0180  Lava Octo A
	0181  Lava Octo B
	0200  Lava Port Plus
	0201  Lava Quad A
	0202  Lava Quad B
	0220  Lava Quattro PCI Ports A/B
	0221  Lava Quattro PCI Ports C/D
	0400  Lava 8255-PIO-PCI
	0500  Lava Single Serial
	0520  Lava RS422-SS-PCI
	0600  Lava Port 650
	8000  Lava Parallel
	8001  Dual parallel port controller A
	8002  Lava Dual Parallel port A
	8003  Lava Dual Parallel port B
	8800  BOCA Research IOPPAR
1408  Aloka Co. Ltd
1409  Timedia Technology Co Ltd
	7168  PCI2S550 (Dual 16550 UART)
		1409 0002  SER4036A3V (2x RS232 port)
		1409 4027  SER4027A (1x RS232 port)
		1409 4037  SER4037A (2x RS232 port)
# Single DC-37 connector
		1409 4056  SER4056A (4x RS232)
		1409 5027  SER4027D
		1409 5037  SER4037D (2x RS232 port)
# Single DC-62 connector
		1409 5066  SER4066R (8x RS232)
# 4x 8p8c connectors
		1409 6056  SER4056D (4x RS232 port)
	7268  SUN1888 (Dual IEEE1284 parallel port)
		1409 0103  PAR4008A
		1409 0104  PAR4018A
140a  DSP Research Inc
140b  Ramix Inc
140c  Elmic Systems Inc
140d  Matsushita Electric Works Ltd
140e  Goepel Electronic GmbH
140f  Salient Systems Corp
1410  Midas lab Inc
1411  Ikos Systems Inc
# Nee IC Ensemble Inc.
1412  VIA Technologies Inc.
	1712  ICE1712 [Envy24] PCI Multi-Channel I/O Controller
		1412 1712  Hoontech ST Audio DSP 24
		1412 3632  M-Audio Delta Audiophile 192
		1412 d630  M-Audio Delta 1010
		1412 d631  M-Audio Delta DiO
		1412 d632  M-Audio Delta 66
		1412 d633  M-Audio Delta 44
		1412 d634  M-Audio Delta Audiophile 2496
		1412 d635  M-Audio Delta TDIF
		1412 d637  M-Audio Delta RBUS
		1412 d638  M-Audio Delta 410
		1412 d63b  M-Audio Delta 1010LT
		1412 d63c  Digigram VX442
		1416 1712  Hoontech ST Audio DSP 24 Media 7.1
		153b 1115  EWS88 MT
		153b 1125  EWS88 MT (Master)
		153b 112b  EWS88 D
		153b 112c  EWS88 D (Master)
		153b 1130  EWX 24/96
		153b 1138  DMX 6fire 24/96
		153b 1151  PHASE88
		16ce 1040  Edirol DA-2496
	1724  VT1720/24 [Envy24PT/HT] PCI Multi-Channel Audio Controller
		1412 1724  Albatron PX865PE 7.1
		1412 3630  M-Audio Revolution 7.1
		1412 3631  M-Audio Revolution 5.1
		153b 1145  Aureon 7.1 Space
		153b 1147  Aureon 5.1 Sky
		153b 1150  PHASE 22
		153b 1153  Aureon 7.1 Universe
		17ab 1906  PSC 724 [Ultimate Edge]
		270f f641  ZNF3-150
		270f f645  ZNF3-250
		3130 4154  MAYA 44 MKII
1413  Addonics
1414  Microsoft Corporation
	0001  MN-120 (ADMtek Centaur-C based)
	0002  MN-130 (ADMtek Centaur-P based)
	5353  Hyper-V virtual VGA
	5801  XMA Decoder (Xenon)
	5802  SATA Controller - CdRom (Xenon)
	5803  SATA Controller - Disk (Xenon)
	5804  OHCI Controller 0 (Xenon)
	5805  EHCI Controller 0 (Xenon)
	5806  OHCI Controller 1 (Xenon)
	5807  EHCI Controller 1 (Xenon)
	580a  Fast Ethernet Adapter (Xenon)
	580b  Secure Flash Controller (Xenon)
	580d  System Management Controller (Xenon)
	5811  Xenos GPU (Xenon)
1415  Oxford Semiconductor Ltd
	8401  OX9162 Mode 1 (8-bit bus)
	8403  OX9162 Mode 0 (parallel port)
	9500  OX16PCI954 (Quad 16950 UART) function 0 (Disabled)
	9501  OX16PCI954 (Quad 16950 UART) function 0 (Uart)
		12c4 0201  Titan/cPCI (2 port)
		12c4 0202  Titan/cPCI (4 port)
		12c4 0203  Titan/cPCI (8 port)
		12c4 0210  Titan/104-Plus (8 port, p1-4)
		131f 2050  CyberPro (4-port)
# Model IO1085, Part No: JJ-P46012
		131f 2051  CyberSerial 4S Plus
		15ed 2000  MCCR Serial p0-3 of 8
		15ed 2001  MCCR Serial p0-3 of 16
	9505  16950 Compatible (dual) serial controller
	950a  EXSYS EX-41092 Dual 16950 Serial adapter
	950b  OXCB950 Cardbus 16950 UART
	9510  OX16PCI954 (Quad 16950 UART) function 1 (Disabled)
		12c4 0200  Titan/cPCI (Unused)
	9511  OX16PCI954 (Quad 16950 UART) function 1 (8bit bus)
		12c4 0211  Titan/104-Plus (8 port, p5-8)
		15ed 2000  MCCR Serial p4-7 of 8
		15ed 2001  MCCR Serial p4-15 of 16
	9512  OX16PCI954 (Quad 16950 UART) function 1 (32bit bus)
	9513  OX16PCI954 (Quad 16950 UART) function 1 (parallel port)
	9521  OX16PCI952 (Dual 16950 UART)
	9523  OX16PCI952 Integrated Parallel Port
1416  Multiwave Innovation pte Ltd
1417  Convergenet Technologies Inc
1418  Kyushu electronics systems Inc
1419  Excel Switching Corp
141a  Apache Micro Peripherals Inc
141b  Zoom Telephonics Inc
141d  Digitan Systems Inc
141e  Fanuc Ltd
141f  Visiontech Ltd
1420  Psion Dacom plc
	8002  Gold Card NetGlobal 56k+10/100Mb CardBus (Ethernet part)
	8003  Gold Card NetGlobal 56k+10/100Mb CardBus (Modem part)
1421  Ads Technologies Inc
1422  Ygrec Systems Co Ltd
1423  Custom Technology Corp.
1424  Videoserver Connections
1425  Chelsio Communications Inc
	000b  T210 Protocol Engine
	000c  T204 Protocol Engine
	0022  10GbE Ethernet Adapter
	0030  T310 10GbE Single Port Adapter
		103c 705e  PCIe 10GBase-SR [AD386A]
	0031  T320 10GbE Dual Port Adapter
	0032  T302 1GbE Dual Port Adapter
	0033  T304 1GbE Quad Port Adapter
	0034  B320 10GbE Dual Port Adapter
	0035  S310-CR 10GbE Single Port Adapter
	0036  S320-LP-CR 10GbE Dual Port Adapter
	0037  N320-G2-CR 10GbE Dual Port Adapter
	4001  T420-CR Unified Wire Ethernet Controller
	4002  T422-CR Unified Wire Ethernet Controller
	4003  T440-CR Unified Wire Ethernet Controller
	4004  T420-BCH Unified Wire Ethernet Controller
	4005  T440-BCH Unified Wire Ethernet Controller
	4006  T440-CH Unified Wire Ethernet Controller
	4007  T420-SO Unified Wire Ethernet Controller
	4008  T420-CX Unified Wire Ethernet Controller
	4009  T420-BT Unified Wire Ethernet Controller
	400a  T404-BT Unified Wire Ethernet Controller
	4401  T420-CR Unified Wire Ethernet Controller
	4402  T422-CR Unified Wire Ethernet Controller
	4403  T440-CR Unified Wire Ethernet Controller
	4404  T420-BCH Unified Wire Ethernet Controller
	4405  T440-BCH Unified Wire Ethernet Controller
	4406  T440-CH Unified Wire Ethernet Controller
	4407  T420-SO Unified Wire Ethernet Controller
	4408  T420-CX Unified Wire Ethernet Controller
	4409  T420-BT Unified Wire Ethernet Controller
	440a  T404-BT Unified Wire Ethernet Controller
	4501  T420-CR Unified Wire Storage Controller
	4502  T422-CR Unified Wire Storage Controller
	4503  T440-CR Unified Wire Storage Controller
	4504  T420-BCH Unified Wire Storage Controller
	4505  T440-BCH Unified Wire Storage Controller
	4506  T440-CH Unified Wire Storage Controller
	4507  T420-SO Unified Wire Storage Controller
	4508  T420-CX Unified Wire Storage Controller
	4509  T420-BT Unified Wire Storage Controller
	450a  T404-BT Unified Wire Storage Controller
	4601  T420-CR Unified Wire Storage Controller
	4602  T422-CR Unified Wire Storage Controller
	4603  T440-CR Unified Wire Storage Controller
	4604  T420-BCH Unified Wire Storage Controller
	4605  T440-BCH Unified Wire Storage Controller
	4606  T440-CH Unified Wire Storage Controller
	4607  T420-SO Unified Wire Storage Controller
	4608  T420-CX Unified Wire Storage Controller
	4609  T420-BT Unified Wire Storage Controller
	460a  T404-BT Unified Wire Storage Controller
	4701  T420-CR Unified Wire Ethernet Controller
	4702  T422-CR Unified Wire Ethernet Controller
	4703  T440-CR Unified Wire Ethernet Controller
	4704  T420-BCH Unified Wire Ethernet Controller
	4705  T440-BCH Unified Wire Ethernet Controller
	4706  T440-CH Unified Wire Ethernet Controller
	4707  T420-SO Unified Wire Ethernet Controller
	4708  T420-CX Unified Wire Ethernet Controller
	4709  T420-BT Unified Wire Ethernet Controller
	470a  T404-BT Unified Wire Ethernet Controller
	4801  T420-CR Unified Wire Ethernet Controller
	4802  T422-CR Unified Wire Ethernet Controller
	4803  T440-CR Unified Wire Ethernet Controller
	4804  T420-BCH Unified Wire Ethernet Controller
	4805  T440-BCH Unified Wire Ethernet Controller
	4806  T440-CH Unified Wire Ethernet Controller
	4807  T420-SO Unified Wire Ethernet Controller
	4808  T420-CX Unified Wire Ethernet Controller
	4809  T420-BT Unified Wire Ethernet Controller
	480a  T404-BT Unified Wire Ethernet Controller
	a000  PE10K Unified Wire Ethernet Controller
1426  Storage Technology Corp.
1427  Better On-Line Solutions
1428  Edec Co Ltd
1429  Unex Technology Corp.
142a  Kingmax Technology Inc
142b  Radiolan
142c  Minton Optic Industry Co Ltd
142d  Pix stream Inc
142e  Vitec Multimedia
	4020  VM2-2 [Video Maker 2] MPEG1/2 Encoder
	4337  VM2-2-C7 [Video Maker 2 rev. C7] MPEG1/2 Encoder
142f  Radicom Research Inc
1430  ITT Aerospace/Communications Division
1431  Gilat Satellite Networks
1432  Edimax Computer Co.
	9130  RTL81xx Fast Ethernet
1433  Eltec Elektronik GmbH
# Nee Real Time Devices US Inc.
1435  RTD Embedded Technologies, Inc.
	4520  PCI4520
	6020  SPM6020
	6030  SPM6030
	6420  SPM186420
	6430  SPM176430
	6431  SPM176431
	7520  DM7520
	7540  SDM7540
	7820  DM7820
1436  CIS Technology Inc
1437  Nissin Inc Co
1438  Atmel-dream
1439  Outsource Engineering & Mfg. Inc
143a  Stargate Solutions Inc
143b  Canon Research Center, America
143c  Amlogic Inc
143d  Tamarack Microelectronics Inc
143e  Jones Futurex Inc
143f  Lightwell Co Ltd - Zax Division
1440  ALGOL Corp.
1441  AGIE Ltd
1442  Phoenix Contact GmbH & Co.
1443  Unibrain S.A.
1444  TRW
1445  Logical DO Ltd
1446  Graphin Co Ltd
1447  AIM GmBH
1448  Alesis Studio Electronics
1449  TUT Systems Inc
144a  Adlink Technology
	6208  PCI-6208V
	7250  PCI-7250
	7296  PCI-7296
	7432  PCI-7432
	7433  PCI-7433
	7434  PCI-7434
	7841  PCI-7841
	8133  PCI-8133
	8164  PCI-8164
	8554  PCI-8554
	9111  PCI-9111
	9113  PCI-9113
	9114  PCI-9114
# nee Loronix Information Systems Inc.
144b  Verint Systems Inc.
144c  Catalina Research Inc
144d  Samsung Electronics Co Ltd
	c00c  P35 laptop
	c511  R20 Laptop
144e  OLITEC
144f  Askey Computer Corp.
1450  Octave Communications Ind.
1451  SP3D Chip Design GmBH
1453  MYCOM Inc
1454  Altiga Networks
1455  Logic Plus Plus Inc
1456  Advanced Hardware Architectures
1457  Nuera Communications Inc
1458  Giga-byte Technology
	9001  GC-PTV-TAF Hybrid TV card
	e911  GN-WIAG02
1459  DOOIN Electronics
145a  Escalate Networks Inc
145b  PRAIM SRL
145c  Cryptek
145d  Gallant Computer Inc
145e  Aashima Technology B.V.
145f  Baldor Electric Company
	0001  NextMove PCI
1460  DYNARC INC
1461  Avermedia Technologies Inc
	a3ce  M179
	a3cf  M179
	a836  M115 DVB-T, PAL/SECAM/NTSC Tuner
	e836  M115S Hybrid Analog/DVB PAL/SECAM/NTSC Tuner
	f436  AVerTV Hybrid+FM
1462  Micro-Star International Co., Ltd.
	5501  nVidia NV15DDR [GeForce2 Ti]
	6819  Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller [MSI CB54G]
	6825  PCI Card wireless 11g [PC54G]
	6834  RaLink RT2500 802.11g [PC54G2]
	7125  MS-7125 [K8N Neo4 Platinum]
	7235  P965 Neo MS-7235 mainboard
	7242  K9AGM RS485 Motherboard
	7250  MS-7250 Motherboard [K9N Platinum SLI/non-SLI]
	7327  K9AGM2-FIH Motherboard
	7650  Hetis 865GV-E (MS-7065)
	8725  NVIDIA NV25 [GeForce4 Ti 4600] VGA Adapter
	9000  NVIDIA NV28 [GeForce4 Ti 4800] VGA Adapter
	9110  GeFORCE FX5200
	9119  NVIDIA NV31 [GeForce FX 5600XT] VGA Adapter
	9123  NVIDIA NV31 [GeForce FX 5600] FX5600-VTDR128 [MS-8912]
	9510  Radeon 9600XT
	9511  Radeon 9600XT
	9591  nVidia Corporation NV36 [GeForce FX 5700LE]
	b834  Wireless 11g Turbo G PCI card [MSI PC60G]
1463  Fast Corporation
1464  Interactive Circuits & Systems Ltd
1465  GN NETTEST Telecom DIV.
1466  Designpro Inc.
1467  DIGICOM SPA
1468  AMBIT Microsystem Corp.
1469  Cleveland Motion Controls
146a  IFR
146b  Parascan Technologies Ltd
146c  Ruby Tech Corp.
	1430  FE-1430TX Fast Ethernet PCI Adapter
146d  Tachyon, INC.
146e  Williams Electronics Games, Inc.
146f  Multi Dimensional Consulting Inc
1470  Bay Networks
1471  Integrated Telecom Express Inc
1472  DAIKIN Industries, Ltd
1473  ZAPEX Technologies Inc
1474  Doug Carson & Associates
1475  PICAZO Communications
1476  MORTARA Instrument Inc
1477  Net Insight
1478  DIATREND Corporation
1479  TORAY Industries Inc
147a  FORMOSA Industrial Computing
147b  ABIT Computer Corp.
	1084  IP35 [Dark Raider]
147c  AWARE, Inc.
147d  Interworks Computer Products
147e  Matsushita Graphic Communication Systems, Inc.
147f  NIHON UNISYS, Ltd.
1480  SCII Telecom
1481  BIOPAC Systems Inc
1482  ISYTEC - Integrierte Systemtechnik GmBH
	0001  PCI-16 Host Interface for ITC-16
1483  LABWAY Corporation
1484  Logic Corporation
1485  ERMA - Electronic GmBH
1486  L3 Communications Telemetry & Instrumentation
1487  MARQUETTE Medical Systems
1488  KONTRON Electronik GmBH
1489  KYE Systems Corporation
148a  OPTO
148b  INNOMEDIALOGIC Inc.
148c  C.P. Technology Co. Ltd
148d  DIGICOM Systems, Inc.
	1003  HCF 56k Data/Fax Modem
148e  OSI Plus Corporation
148f  Plant Equipment, Inc.
1490  Stone Microsystems PTY Ltd.
1491  ZEAL Corporation
1492  Time Logic Corporation
1493  MAKER Communications
1494  WINTOP Technology, Inc.
1495  TOKAI Communications Industry Co. Ltd
1496  JOYTECH Computer Co., Ltd.
1497  SMA Regelsysteme GmBH
	1497  SMA Technologie AG
1498  TEWS Technologies GmbH
	0330  TPMC816 2 Channel CAN bus controller.
	035d  TPMC861 4-Channel Isolated Serial Interface RS422/RS485
	0385  TPMC901 Extended CAN bus with 2/4/6 CAN controller
	21cc  TCP460 CompactPCI 16 Channel Serial Interface RS232/RS422
	21cd  TCP461 CompactPCI 8 Channel Serial Interface RS232/RS422
	3064  TPCI100 (2 Slot IndustryPack PCI Carrier)
	30c8  TPCI200
1499  EMTEC CO., Ltd
149a  ANDOR Technology Ltd
149b  SEIKO Instruments Inc
149c  OVISLINK Corp.
149d  NEWTEK Inc
	0001  Video Toaster for PC
149e  Mapletree Networks Inc.
149f  LECTRON Co Ltd
14a0  SOFTING GmBH
14a1  Systembase Co Ltd
14a2  Millennium Engineering Inc
14a3  Maverick Networks
14a4  GVC/BCM Advanced Research
14a5  XIONICS Document Technologies Inc
14a6  INOVA Computers GmBH & Co KG
14a7  MYTHOS Systems Inc
14a8  FEATRON Technologies Corporation
14a9  HIVERTEC Inc
14aa  Advanced MOS Technology Inc
14ab  Mentor Graphics Corp.
14ac  Novaweb Technologies Inc
14ad  Time Space Radio AB
14ae  CTI, Inc
14af  Guillemot Corporation
	7102  3D Prophet II MX
14b0  BST Communication Technology Ltd
14b1  Nextcom K.K.
14b2  ENNOVATE Networks Inc
14b3  XPEED Inc
	0000  DSL NIC
14b4  PHILIPS Business Electronics B.V.
14b5  Creamware GmBH
	0200  Scope
	0300  Pulsar
	0400  PulsarSRB
	0600  Pulsar2
	0800  DSP-Board
	0900  DSP-Board
	0a00  DSP-Board
	0b00  DSP-Board
14b6  Quantum Data Corp.
14b7  PROXIM Inc
	0001  Symphony 4110
14b8  Techsoft Technology Co Ltd
14b9  AIRONET Wireless Communications
	0001  PC4800
	0340  PC4800
	0350  PC4800
	4500  PC4500
	4800  Cisco Aironet 340 802.11b Wireless LAN Adapter/Aironet PC4800
	a504  Cisco Aironet Wireless 802.11b
	a505  Cisco Aironet CB20a 802.11a Wireless LAN Adapter
	a506  Cisco Aironet Mini PCI b/g
14ba  INTERNIX Inc.
# ARCNET interface card based on SMSC COM20022 chip and manufactured for SMSC Japan
	0600  ARC-PCI/22
14bb  SEMTECH Corporation
14bc  Globespan Semiconductor Inc.
	d002  Pulsar [PCI ADSL Card]
	d00f  Pulsar [PCI ADSL Card]
14bd  CARDIO Control N.V.
14be  L3 Communications
14bf  SPIDER Communications Inc.
14c0  COMPAL Electronics Inc
14c1  MYRICOM Inc.
	0008  Myri-10G Dual-Protocol NIC
		14c1 0008  10G-PCIE-8A
		14c1 0009  10G-PCIE-8A (MSI-X firmware)
		14c1 000a  10G-PCIE-8B
		14c1 000b  10G-PCIE-8B2
		14c1 000c  10G-PCIE2-8B2
	8043  Myrinet 2000 Scalable Cluster Interconnect
		103c 1240  Myrinet M2L-PCI64/2-3.0 LANai 7.4 (HP OEM)
14c2  DTK Computer
14c3  MEDIATEK Corp.
14c4  IWASAKI Information Systems Co Ltd
14c5  Automation Products AB
14c6  Data Race Inc
14c7  Modular Technology Holdings Ltd
14c8  Turbocomm Tech. Inc.
14c9  ODIN Telesystems Inc
14ca  PE Logic Corp.
14cb  Billionton Systems Inc
14cc  NAKAYO Telecommunications Inc
14cd  Universal Scientific Ind.
14ce  Whistle Communications
14cf  TEK Microsystems Inc.
14d0  Ericsson Axe R & D
14d1  Computer Hi-Tech Co Ltd
14d2  Titan Electronics Inc
	8001  VScom 010L 1 port parallel adaptor
	8002  VScom 020L 2 port parallel adaptor
	8010  VScom 100L 1 port serial adaptor
	8011  VScom 110L 1 port serial and 1 port parallel adaptor
	8020  VScom 200L 1 port serial adaptor
	8021  VScom 210L 2 port serial and 1 port parallel adaptor
	8028  VScom 200I/200I-SI 2-port serial adapter
	8040  VScom 400L 4 port serial adaptor
	8043  VScom 430L 4-port serial and 3-port parallel adapter
	8048  VScom 400I 4-port serial adapter
	8080  VScom 800L 8 port serial adaptor
	8088  VScom 800I 8-port serial adapter
	a000  VScom 010H 1 port parallel adaptor
	a001  VScom 100H 1 port serial adaptor
	a003  VScom 400H 4 port serial adaptor
	a004  VScom 400HF1 4 port serial adaptor
	a005  VScom 200H 2 port serial adaptor
	a007  VScom PCI800EH (PCIe) 8-port serial adapter Port 1-4
	a008  VScom PCI800EH (PCIe) 8-port serial adapter Port 5-8
	a009  VScom PCI400EH (PCIe) 4-port serial adapter
	e001  VScom 010HV2 1 port parallel adaptor
	e010  VScom 100HV2 1 port serial adaptor
	e020  VScom 200HV2 2 port serial adaptor
14d3  CIRTECH (UK) Ltd
14d4  Panacom Technology Corp
14d5  Nitsuko Corporation
14d6  Accusys Inc
	6101  ACS-61xxx, PCIe to SAS/SATA RAID HBA
	6201  ACS-62xxx, External PCIe to SAS/SATA RAID controller
14d7  Hirakawa Hewtech Corp
14d8  HOPF Elektronik GmBH
# Formerly SiPackets, Inc., formerly API NetWorks, Inc., formerly Alpha Processor, Inc.
14d9  Alliance Semiconductor Corporation
	0010  AP1011/SP1011 HyperTransport-PCI Bridge [Sturgeon]
	9000  AS90L10204/10208 HyperTransport to PCI-X Bridge
14da  National Aerospace Laboratories
14db  AFAVLAB Technology Inc
	2120  TK9902
	2182  AFAVLAB Technology Inc. 8-port serial card
14dc  Amplicon Liveline Ltd
	0000  PCI230
	0001  PCI242
	0002  PCI244
	0003  PCI247
	0004  PCI248
	0005  PCI249
	0006  PCI260
	0007  PCI224
	0008  PCI234
	0009  PCI236
	000a  PCI272
	000b  PCI215
14dd  Boulder Design Labs Inc
14de  Applied Integration Corporation
14df  ASIC Communications Corp
14e1  INVERTEX
14e2  INFOLIBRIA
14e3  AMTELCO
14e4  Broadcom Corporation
	0800  Sentry5 Chipcommon I/O Controller
	0804  Sentry5 PCI Bridge
	0805  Sentry5 MIPS32 CPU
	0806  Sentry5 Ethernet Controller
	080b  Sentry5 Crypto Accelerator
	080f  Sentry5 DDR/SDR RAM Controller
	0811  Sentry5 External Interface Core
	0816  BCM3302 Sentry5 MIPS32 CPU
	1600  NetXtreme BCM5752 Gigabit Ethernet PCI Express
		1028 01c1  Precision 490
		1028 01c2  Latitude D620
		103c 3015  PCIe LAN on Motherboard
		107b 5048  E4500 Onboard
	1601  NetXtreme BCM5752M Gigabit Ethernet PCI Express
	1612  BCM70012 Video Decoder [Crystal HD]
	1639  NetXtreme II BCM5709 Gigabit Ethernet
		1028 0235  PowerEdge R710 BCM5709 Gigabit Ethernet
		1028 0236  PowerEdge R610 BCM5709 Gigabit Ethernet
		1028 0237  PowerEdge T610 BCM5709 Gigabit Ethernet
		103c 7055  NC382i Integrated Quad Port PCI Express Gigabit Server Adapter
		103c 7059  NC382T PCI Express Dual Port Multifunction Gigabit Server Adapter
		10a9 8027  Quad port Gigabit Ethernet Controller
	163a  NetXtreme II BCM5709S Gigabit Ethernet
		1028 027b  PowerEdge M805 Broadcom NetXtreme II BCM5709S
		1028 029c  PowerEdge M710 BCM5709S Gigabit Ethernet
		103c 171d  NC382m Dual Port 1GbE Multifunction BL-c Adapter
		103c 7056  NC382i Integrated Quad Port PCI Express Gigabit Server Adapter
	163b  NetXtreme II BCM5716 Gigabit Ethernet
		1028 028c  PowerEdge R410 BCM5716 Gigabit Ethernet
		1028 028d  PowerEdge T410 BCM5716 Gigabit Ethernet
	163c  NetXtreme II BCM5716S Gigabit Ethernet
	1644  NetXtreme BCM5700 Gigabit Ethernet
		1014 0277  Broadcom Vigil B5700 1000Base-T
		1028 00d1  Broadcom BCM5700
		1028 0106  Broadcom BCM5700
		1028 0109  Broadcom BCM5700 1000Base-T
		1028 010a  Broadcom BCM5700 1000BaseTX
		10b7 1000  3C996-T 1000Base-T
		10b7 1001  3C996B-T 1000Base-T
		10b7 1002  3C996C-T 1000Base-T
		10b7 1003  3C997-T 1000Base-T Dual Port
		10b7 1004  3C996-SX 1000Base-SX
		10b7 1005  3C997-SX 1000Base-SX Dual Port
		10b7 1008  3C942 Gigabit LOM (31X31)
		14e4 0002  NetXtreme 1000Base-SX
		14e4 0003  NetXtreme 1000Base-SX
		14e4 0004  NetXtreme 1000Base-T
		14e4 1028  NetXtreme 1000BaseTX
		14e4 1644  BCM5700 1000Base-T
	1645  NetXtreme BCM5701 Gigabit Ethernet
		0e11 007c  NC7770 Gigabit Server Adapter (PCI-X, 10/100/1000-T)
		0e11 007d  NC6770 Gigabit Server Adapter (PCI-X, 1000-SX)
		0e11 0085  NC7780 Gigabit Server Adapter (embedded, WOL)
		0e11 0099  NC7780 Gigabit Server Adapter (embedded, WOL)
		0e11 009a  NC7770 Gigabit Server Adapter (PCI-X, 10/100/1000-T)
		0e11 00c1  NC6770 Gigabit Server Adapter (PCI-X, 1000-SX)
		1028 0121  Broadcom BCM5701 1000Base-T
		103c 128a  BCM5701 1000Base-T (HP, OEM 3COM)
		103c 128b  1000Base-SX (PCI) [A7073A]
		103c 12a4  Core Lan 1000Base-T
		103c 12c1  IOX Core Lan 1000Base-T [A7109AX]
		103c 1300  Core LAN/SCSI Combo [A6794A]
		10a9 8010  IO9/IO10 Gigabit Ethernet (Copper)
		10a9 8011  Gigabit Ethernet (Copper)
		10a9 8012  Gigabit Ethernet (Fiber)
		10b7 1004  3C996-SX 1000Base-SX
		10b7 1006  3C996B-T 1000Base-T
		10b7 1007  3C1000-T 1000Base-T
		10b7 1008  3C940-BR01 1000Base-T
		14e4 0001  BCM5701 1000Base-T
		14e4 0005  BCM5701 1000Base-T
		14e4 0006  BCM5701 1000Base-T
		14e4 0007  BCM5701 1000Base-SX
		14e4 0008  BCM5701 1000Base-T
		14e4 1645  NetXtreme BCM5701 Gigabit Ethernet
		14e4 8008  BCM5701 1000Base-T
	1646  NetXtreme BCM5702 Gigabit Ethernet
		0e11 00bb  NC7760 1000BaseTX
		1028 0126  Broadcom BCM5702 1000BaseTX
		14e4 8009  BCM5702 1000BaseTX
	1647  NetXtreme BCM5703 Gigabit Ethernet
		0e11 0099  NC7780 1000BaseTX
		0e11 009a  NC7770 1000BaseTX
		10a9 8010  SGI IO9 Gigabit Ethernet (Copper)
		14e4 0009  BCM5703 1000BaseTX
		14e4 000a  BCM5703 1000BaseSX
		14e4 000b  BCM5703 1000BaseTX
		14e4 8009  BCM5703 1000BaseTX
		14e4 800a  BCM5703 1000BaseTX
	1648  NetXtreme BCM5704 Gigabit Ethernet
		0e11 00cf  NC7772 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		0e11 00d0  NC7782 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		0e11 00d1  NC7783 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		1028 014a  PowerEdge 1750
		1028 0170  PowerEdge 6850 Broadcom NetXtreme BCM5704
		103c 310f  NC7782 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		10a9 8013  Dual Port Gigabit Ethernet (PCI-X,Copper)
		10a9 8018  Dual Port Gigabit Ethernet (A330)
		10a9 801a  Dual Port Gigabit Ethernet (IA-blade)
		10a9 801b  Quad Port Gigabit Ethernet (PCI-E,Copper)
		10b7 2000  3C998-T Dual Port 10/100/1000 PCI-X
		10b7 3000  3C999-T Quad Port 10/100/1000 PCI-X
		1166 1648  NetXtreme CIOB-E 1000Base-T
		1734 100b  PRIMERGY RX/TX series onboard LAN
	1649  NetXtreme BCM5704S_2 Gigabit Ethernet
	164a  NetXtreme II BCM5706 Gigabit Ethernet
		103c 1709  NC371i Integrated PCI-X Multifunction Gigabit Server Adapter
		103c 3070  NC380T PCI Express Dual Port Multifunction Gigabit Server Adapter
		103c 3101  NC370T MultifuNCtion Gigabit Server Adapter
		103c 3106  NC370i Multifunction Gigabit Server Adapter
	164c  NetXtreme II BCM5708 Gigabit Ethernet
		1028 01f0  PowerEdge R900 Broadcom NetXtreme II BCM5708
		1028 0205  PowerEdge 2970 Broadcom NetXtreme II BCM5708
		1028 020b  PowerEdge T605 Broadcom NetXtreme II BCM5708
		1028 0221  PowerEdge R805 Broadcom NetXtreme II BCM5708
		1028 0223  PowerEdge R905 Broadcom NetXtreme II BCM5708
		1028 1f12  PowerEdge R805/R905 Broadcom NetXtreme II BCM5708
		103c 7037  NC373T PCI Express Multifunction Gigabit Server Adapter
		103c 7038  NC373i Integrated Multifunction Gigabit Server Adapter
		103c 7045  NC374m PCI Express Dual Port Multifunction Gigabit Server Adapter
	164d  NetXtreme BCM5702FE Gigabit Ethernet
	164e  NetXtreme II BCM57710 10-Gigabit PCIe [Everest]
		103c 171c  NC532m Dual Port 10GbE Multifunction BL-C Adapter
		103c 7058  NC532i Dual Port 10GbE Multifunction BL-C Adapter
	164f  NetXtreme II BCM57711 10-Gigabit PCIe
	1650  NetXtreme II BCM57711E 10-Gigabit PCIe
		103c 171c  NC532m Dual Port 10GbE Multifunction BL-C Adapter
		103c 7058  NC532i Dual Port 10GbE Multifunction BL-C Adapter
	1653  NetXtreme BCM5705 Gigabit Ethernet
		0e11 00e3  NC7761 Gigabit Server Adapter
	1654  NetXtreme BCM5705_2 Gigabit Ethernet
		0e11 00e3  NC7761 Gigabit Server Adapter
		103c 3100  NC1020 ProLiant Gigabit Server Adapter 32 PCI
		103c 3226  NC150T 4-port Gigabit Combo Switch & Adapter
	1655  NetXtreme BCM5717 Gigabit Ethernet PCIe
	1656  NetXtreme BCM5718 Gigabit Ethernet PCIe
	1658  NetXtreme BCM5720 Gigabit Ethernet
	1659  NetXtreme BCM5721 Gigabit Ethernet PCI Express
		1014 02c6  eServer xSeries server mainboard
		1028 01e6  PowerEdge 860
		1028 023c  PowerEdge R200 Broadcom NetXtreme BCM5721
		103c 170b  NC320m PCI Express Dual Port Gigabit Server Adapter
		103c 7031  NC320T PCIe Gigabit Server Adapter
		103c 7032  NC320i PCIe Gigabit Server Adapter
		1734 1061  PRIMERGY RX/TX S2 series onboard LAN
	165a  NetXtreme BCM5722 Gigabit Ethernet PCI Express
# Dual NIC server
		1014 0378  IBM System x3350 (Machine type 4192)
		1028 020f  PowerEdge R300 Broadcom NetXtreme 5722
		1028 0210  PowerEdge T300 Broadcom NetXtreme 5722
		1028 0225  PowerEdge T105 Broadcom NetXtreme 5722
		103c 7051  NC105i PCIe Gigabit Server Adapter
		103c 7052  NC105T PCIe Gigabit Server Adapter
	165b  NetXtreme BCM5723 Gigabit Ethernet PCIe
		103c 705d  NC107i Integrated PCI Express Gigabit Server Adapter
	165c  NetXtreme BCM5724 Gigabit Ethernet PCIe
	165d  NetXtreme BCM5705M Gigabit Ethernet
		1028 865d  Latitude D400
		14e4 165d  Dell Latitude D600
	165e  NetXtreme BCM5705M_2 Gigabit Ethernet
		103c 088c  NC8000 laptop
		103c 0890  NC6000 laptop
		103c 099c  NX6110/NC6120
		10cf 1279  LifeBook E8010D
	1662  NetXtreme II BCM57712 10 Gigabit Ethernet
	1663  NetXtreme II BCM57712 10 Gigabit Ethernet Multi Function
	1668  NetXtreme BCM5714 Gigabit Ethernet
		103c 7039  NC324i PCIe Dual Port Gigabit Server Adapter
	1669  NetXtreme 5714S Gigabit Ethernet
	166a  NetXtreme BCM5780 Gigabit Ethernet
		103c 7035  NC325i Integrated Dual port PCIe Express Gigabit Server Adapter
	166b  NetXtreme BCM5780S Gigabit Ethernet
	166e  570x 10/100 Integrated Controller
	166f  NetXtreme II BCM57712 10 Gigabit Ethernet Virtual Function
	1672  NetXtreme BCM5754M Gigabit Ethernet PCI Express
	1673  NetXtreme BCM5755M Gigabit Ethernet PCI Express
	1674  NetXtreme BCM5756ME Gigabit Ethernet PCI Express
	1676  NetXtreme BCM5750 Gigabit Ethernet
	1677  NetXtreme BCM5751 Gigabit Ethernet PCI Express
		1028 0176  Dimension XPS Gen 4
		1028 0177  Dimension 8400
		1028 0179  Optiplex GX280
		1028 0182  Latitude D610
		1028 0187  Precision M70
		1028 01a8  Precision 380
		1028 01ad  OptiPlex GX620
		103c 3006  DC7100 SFF(DX878AV)
		1462 028c  915P/G Neo2
		1734 105d  Scenic W620
	1678  NetXtreme BCM5715 Gigabit Ethernet
		103c 703e  NC326i PCIe Dual Port Gigabit Server Adapter
	1679  NetXtreme BCM5715S Gigabit Ethernet
		103c 1707  NC326m PCIe Dual Port Adapter
		103c 170c  NC325m PCIe Quad Port Adapter
		103c 703c  NC326i PCIe Dual Port Gigabit Server Adapter
	167a  NetXtreme BCM5754 Gigabit Ethernet PCI Express
		1028 01da  OptiPlex 745
		1028 01de  Precision 390
		1028 01df  PowerEdge SC440
		1028 0214  Precision T3400
	167b  NetXtreme BCM5755 Gigabit Ethernet PCI Express
		103c 280a  DC5750 Microtower
	167c  NetXtreme BCM5750M Gigabit Ethernet
	167d  NetXtreme BCM5751M Gigabit Ethernet PCI Express
		1014 0577  ThinkPad Z60t
		103c 0940  HP Compaq nw8240 Mobile Workstation
		17aa 2081  ThinkPad R60e
	167e  NetXtreme BCM5751F Fast Ethernet PCI Express
	167f  NetLink BCM5787F Fast Ethernet PCI Express
	1680  NetXtreme BCM5761e Gigabit Ethernet PCIe
	1681  NetXtreme BCM5761 Gigabit Ethernet PCIe
	1684  NetXtreme BCM5764M Gigabit Ethernet PCIe
	1685  NetXtreme II BCM57500S Gigabit Ethernet
	168a  NetXtreme II BCM57800S 10 Gigabit Ethernet
	168d  NetXtreme II BCM57840S 20 Gigabit Ethernet
	168e  NetXtreme II BCM57810S 10 Gigabit Ethernet
	1690  NetXtreme BCM57760 Gigabit Ethernet PCIe
	1691  NetLink BCM57788 Gigabit Ethernet PCIe
	1692  NetLink BCM57780 Gigabit Ethernet PCIe
		1025 033d  Aspire 7740G
	1693  NetLink BCM5787M Gigabit Ethernet PCI Express
		1025 0121  Aspire 5920G
		103c 30c0  6710b
	1694  NetLink BCM57790 Gigabit Ethernet PCIe
	1696  NetXtreme BCM5782 Gigabit Ethernet
		103c 12bc  d530 CMT (DG746A)
		14e4 000d  NetXtreme BCM5782 1000Base-T
	1698  NetLink BCM5784M Gigabit Ethernet PCIe
	1699  NetLink BCM5785 Gigabit Ethernet
	169a  NetLink BCM5786 Gigabit Ethernet PCI Express
	169b  NetLink BCM5787 Gigabit Ethernet PCI Express
	169c  NetXtreme BCM5788 Gigabit Ethernet
		103c 308b  MX6125
		103c 30a1  NC2400
		144d c018  X20
		1462 590c  KT6 Delta-FIS2R (MS-6590)
	169d  NetLink BCM5789 Gigabit Ethernet PCI Express
	16a0  NetLink BCM5785 Fast Ethernet
	16a6  NetXtreme BCM5702X Gigabit Ethernet
		0e11 00bb  NC7760 Gigabit Server Adapter (PCI-X, 10/100/1000-T)
		1028 0126  BCM5702 1000Base-T
		14e4 000c  BCM5702 1000Base-T
		14e4 8009  BCM5702 1000Base-T
	16a7  NetXtreme BCM5703X Gigabit Ethernet
		0e11 00ca  NC7771 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		0e11 00cb  NC7781 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		14e4 0009  NetXtreme BCM5703 1000Base-T
		14e4 000a  NetXtreme BCM5703 1000Base-SX
		14e4 000b  NetXtreme BCM5703 1000Base-T
		14e4 800a  NetXtreme BCM5703 1000Base-T
	16a8  NetXtreme BCM5704S Gigabit Ethernet
		103c 132b  PCI-X 1000Mbps Dual-port Built-in
		10a9 8014  Dual Port Gigabit Ethernet (PCI-X,Fiber)
		10a9 801c  Quad Port Gigabit Ethernet (PCI-E,Fiber)
		10b7 2001  3C998-SX Dual Port 1000-SX PCI-X
	16aa  NetXtreme II BCM5706S Gigabit Ethernet
		103c 3102  NC370F MultifuNCtion Gigabit Server Adapter
		103c 310c  NC370i Multifunction Gigabit Server Adapter
	16ac  NetXtreme II BCM5708S Gigabit Ethernet
		1014 0304  NetXtreme II BCM5708S Gigabit Ethernet
		1028 01bb  PowerEdge 1955 Broadcom NetXtreme II BCM5708S
		1028 020c  PowerEdge M605 Broadcom NetXtreme II BCM5708S
		103c 1706  NC373m Multifunction Gigabit Server Adapter
		103c 7038  NC373i PCI Express Multifunction Gigabit Server Adapter
		103c 703b  NC373i Integrated Multifunction Gigabit Server Adapter
		103c 703d  NC373F PCI Express Multifunction Gigabit Server Adapter
	16b0  NetXtreme BCM57761 Gigabit Ethernet PCIe
	16b1  NetLink BCM57781 Gigabit Ethernet PCIe
	16b2  NetLink BCM57791 Gigabit Ethernet PCIe
	16b4  NetXtreme BCM57765 Gigabit Ethernet PCIe
	16b5  NetLink BCM57785 Gigabit Ethernet PCIe
	16b6  NetLink BCM57795 Gigabit Ethernet PCIe
	16c6  NetXtreme BCM5702A3 Gigabit Ethernet
		10b7 1100  3C1000B-T 10/100/1000 PCI
		14e4 000c  BCM5702 1000Base-T
		14e4 8009  BCM5702 1000Base-T
	16c7  NetXtreme BCM5703 Gigabit Ethernet
		0e11 00ca  NC7771 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		0e11 00cb  NC7781 Gigabit Server Adapter (PCI-X, 10,100,1000-T)
		103c 12c3  Combo FC/GigE-SX [A9782A]
		103c 12ca  Combo FC/GigE-T [A9784A]
		103c 1321  Core I/O LAN/SCSI Combo [AB314A]
		14e4 0009  NetXtreme BCM5703 1000Base-T
		14e4 000a  NetXtreme BCM5703 1000Base-SX
	16dd  NetLink BCM5781 Gigabit Ethernet PCI Express
	16f7  NetXtreme BCM5753 Gigabit Ethernet PCI Express
	16fd  NetXtreme BCM5753M Gigabit Ethernet PCI Express
		103c 309f  Compaq nx9420 Notebook
		103c 30a3  Compaq nw8440
	16fe  NetXtreme BCM5753F Fast Ethernet PCI Express
	170c  BCM4401-B0 100Base-TX
		1028 0188  Inspiron 6000 laptop
		1028 018d  Inspiron 700m/710m
		1028 0196  Inspiron 5160
		1028 01af  Inspiron 6400
		1028 01cd  Inspiron 9400 Laptop
		1028 01d7  XPS M1210
		1028 01d8  Inspiron E1405
		103c 099c  NX6110/NC6120
		103c 30a2  NX7300 laptop
		14e4 170c  HP Compaq 6720t Mobile Thin Client
	170d  NetXtreme BCM5901 100Base-TX
		1014 0545  ThinkPad R40e
	170e  NetXtreme BCM5901 100Base-TX
	1712  NetLink BCM5906 Fast Ethernet PCI Express
	1713  NetLink BCM5906M Fast Ethernet PCI Express
		1028 01f3  Inspiron 1420
		1028 0209  XPS M1330
		103c 30c0  Compaq 6710b
		17aa 3a23  IdeaPad S10e
	3352  BCM3352
	3360  BCM3360
	4210  BCM4210 iLine10 HomePNA 2.0
	4211  BCM4211 iLine10 HomePNA 2.0 + V.90 56k modem
	4212  BCM4212 v.90 56k modem
	4220  802-11b/g Wireless PCI controller, packaged as a Linksys WPC54G ver 1.2 PCMCIA card
	4222  NetXtreme BCM5753M Gigabit Ethernet PCI Express
	4301  BCM4303 802.11b Wireless LAN Controller
		1028 0407  TrueMobile 1180 Onboard WLAN
		1043 0120  WL-103b Wireless LAN PC Card
		1737 4301  WMP11 v2.7 802.11b Wireless-B PCI Adapter
	4305  BCM4307 V.90 56k Modem
	4306  BCM4307 Ethernet Controller
	4307  BCM4307 802.11b Wireless LAN Controller
	4310  BCM4310 Chipcommon I/OController
	4311  BCM4311 802.11b/g WLAN
		1028 0007  Wireless 1390 WLAN Mini-Card
		1028 0008  Wireless 1390 WLAN ExpressCard
		103c 1363  BCM4311 802.11b/g Wireless LAN Controller
		103c 1364  BCM4311 802.11b/g Wireless LAN Controller
		103c 1365  BCM4311 802.11b/g Wireless LAN Controller
		103c 1374  BCM4311 802.11b/g Wireless LAN Controller
		103c 1375  BCM4311 802.11b/g Wireless LAN Controller
		103c 1376  BCM4311 802.11b/g Wireless LAN Controller
		103c 1377  BCM4311 802.11b/g Wireless LAN Controller
		103c 137f  BCM4322 802.11a/b/g/n Wireless LAN Controller
		103c 1380  BCM4322 802.11a/b/g/n Wireless LAN Controller
		14e4 4311  BCM94311MCG
	4312  BCM4312 802.11a/b/g
		1028 0007  Wireless 1490 Dual Band WLAN Mini-Card
		1028 0008  Wireless 1490 Dual Band WLAN ExpressCard
		103c 135a  Broadcom 802.11a/b/g WLAN
		103c 135f  Broadcom 802.11a/b/g WLAN
		103c 1360  Broadcom 802.11a/b/g WLAN
		103c 1361  Broadcom 802.11a/b/g WLAN
		103c 1362  Broadcom 802.11a/b/g WLAN
		103c 1370  Broadcom 802.11a/b/g WLAN
		103c 1371  Broadcom 802.11a/b/g WLAN
		103c 1372  Broadcom 802.11a/b/g WLAN
		103c 1373  Broadcom 802.11a/b/g WLAN
		103c 30b5  Presario V3242AU
		1371 103c  Broadcom 802.11 Multiband-netwerkadapter(6715s)
	4313  BCM4311 802.11a
	4315  BCM4312 802.11b/g LP-PHY
		1028 000b  Wireless 1395 WLAN Mini-Card
		1028 000c  Wireless 1397 WLAN Mini-Card
		103c 137c  BCM4312 802.11b/g Wireless LAN Controller
		103c 137d  BCM4312 802.11b/g Wireless LAN Controller
	4318  BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller
		1028 0005  Wireless 1370 WLAN Mini-PCI Card
		1028 0006  Wireless 1370 WLAN PC Card
		103c 1355  Broadcom 802.11b/g WLAN
		103c 1356  Broadcom 802.11b/g WLAN
		103c 1357  Broadcom 802.11b/g WLAN
		1043 100f  WL-138G v2 / WL-138gE / WL-100gE
		1043 120f  A6U notebook embedded card
		1154 0355  Buffalo WLI2-PCI-G54S High Speed Mode Wireless Adapter
		1468 0311  Aspire 3022WLMi, 5024WLMi, 5020
		1468 0312  TravelMate 2410
		14e4 0449  Gateway 7510GX
		16ec 0119  U.S.Robotics Wireless MAXg PC Card
		1737 0042  WMP54GS v1.1 802.11g Wireless-G PCI Adapter with SpeedBooster
		1737 0048  WPC54G v3 802.11g Wireless-G Notebook Adapter
	4319  BCM4311 [AirForce 54g] 802.11a/b/g PCI Express Transceiver
		1028 0005  Wireless 1470 Dual Band WLAN Mini-PCI Card
		1028 0006  Wireless 1470 Dual Band WLAN PC Card
		103c 1358  Broadcom 802.11a/b/g WLAN
		103c 1359  Broadcom 802.11a/b/g WLAN
		103c 135a  Broadcom 802.11a/b/g WLAN
	4320  BCM4306 802.11b/g Wireless LAN Controller
		1028 0001  TrueMobile 1300 WLAN Mini-PCI Card
		1028 0002  TrueMobile 1300 WLAN PC Card
		1028 0003  Wireless 1350 WLAN Mini-PCI Card
		1028 0004  Wireless 1350 WLAN PC Card
		103c 12f4  Broadcom 802.11b/g WLAN
		103c 12f8  Broadcom 802.11b/g WLAN
		103c 12fa  Broadcom 802.11b/g WLAN
		103c 12fb  Broadcom 802.11b/g WLAN
		1043 100f  WL-100G
		1057 7025  WN825G
		106b 004e  AirPort Extreme
		1154 0330  Buffalo WLI2-PCI-G54S High Speed Mode Wireless Desktop Adapter
		144f 7050  eMachines M6805 802.11g Built-in Wireless
		144f 7051  Sonnet Aria Extreme PCI
		14e4 4320  Linksys WMP54G PCI
		1737 0015  WMP54GS v1.0 802.11g Wireless-G PCI Adapter with SpeedBooster
		1737 4320  WPC54G v1 802.11g Wireless-G Notebook Adapter
		1799 7000  F5D7000uk 54G Wireless Network Card
		1799 7001  Belkin F5D7001 High-Speed Mode Wireless G Network Card
		1799 7010  Belkin F5D7010 54g Wireless Network card
		1799 7011  F5D7011 54g+ Wireless Network card
		185f 1220  TravelMate 290E WLAN Mini-PCI Card
	4321  BCM4306 802.11a Wireless LAN Controller
	4322  BCM4306 UART
	4324  BCM4309 802.11a/b/g
		1028 0001  Truemobile 1400
		1028 0002  TrueMobile 1400 Dual Band WLAN PC Card
		1028 0003  Truemobile 1450 MiniPCI
		1028 0004  Wireless 1450 Dual Band WLAN PC Card
		103c 12f9  Broadcom 802.11a/b/g WLAN
		103c 12fc  Broadcom 802.11a/b/g WLAN
	4325  BCM43xG 802.11b/g
		1414 0003  Wireless Notebook Adapter MN-720
		1414 0004  Wireless PCI Adapter MN-730
	4326  BCM4307 Chipcommon I/O Controller?
	4328  BCM4321 802.11a/b/g/n
		1028 0009  Wireless 1500 Draft 802.11n WLAN Mini-Card
		1028 000a  Wireless 1500 Draft 802.11n WLAN Mini-card
		103c 1366  BCM4321 802.11a/b/g/n Wireless LAN Controller
		103c 1367  BCM4321 802.11a/b/g/n Wireless LAN Controller
		103c 1368  BCM4321 802.11a/b/g/n Wireless LAN Controller
		103c 1369  BCM4321 802.11a/b/g/n Wireless LAN Controller
		14e4 4328  BCM4328 802.11a/b/g/n
	4329  BCM4321 802.11b/g/n
		1737 0058  WPC300N v1 Wireless-N Notebook Adapter
	432a  BCM4321
	432b  BCM4322 802.11a/b/g/n Wireless LAN Controller
		1028 000d  Wireless 1510 Wireless-N WLAN Mini-Card
	432c  BCM4322 802.11b/g/n
	432d  BCM4322 802.11a/b/g/n
	4344  EDGE/GPRS data and 802.11b/g combo cardbus [GC89]
	4353  BCM43224 802.11a/b/g/n
	4357  BCM43225 802.11b/g/n
	4401  BCM4401 100Base-T
		1025 0035  TravelMate 660
		103c 08b0  tc1100 tablet
		1043 80a8  A7V8X motherboard
	4402  BCM4402 Integrated 10/100BaseT
	4403  BCM4402 V.90 56k Modem
	4410  BCM4413 iLine32 HomePNA 2.0
	4411  BCM4413 V.90 56k modem
	4412  BCM4412 10/100BaseT
	4430  BCM44xx CardBus iLine32 HomePNA 2.0
	4432  BCM4432 CardBus 10/100BaseT
	4610  BCM4610 Sentry5 PCI to SB Bridge
	4611  BCM4610 Sentry5 iLine32 HomePNA 1.0
	4612  BCM4610 Sentry5 V.90 56k Modem
	4613  BCM4610 Sentry5 Ethernet Controller
	4614  BCM4610 Sentry5 External Interface
	4615  BCM4610 Sentry5 USB Controller
	4704  BCM4704 PCI to SB Bridge
	4705  BCM4704 Sentry5 802.11b Wireless LAN Controller
	4706  BCM4704 Sentry5 Ethernet Controller
	4707  BCM4704 Sentry5 USB Controller
	4708  BCM4704 Crypto Accelerator
	4710  BCM4710 Sentry5 PCI to SB Bridge
	4711  BCM47xx Sentry5 iLine32 HomePNA 2.0
	4712  BCM47xx V.92 56k modem
	4713  Sentry5 Ethernet Controller
	4714  BCM47xx Sentry5 External Interface
	4715  Sentry5 USB Controller
	4716  BCM47xx Sentry5 USB Host Controller
	4717  BCM47xx Sentry5 USB Device Controller
	4718  Sentry5 Crypto Accelerator
	4719  BCM47xx/53xx RoboSwitch Core
	4720  BCM4712 MIPS CPU
	4727  BCM4313 802.11b/g LP-PHY
	5365  BCM5365P Sentry5 Host Bridge
	5600  BCM5600 StrataSwitch 24+2 Ethernet Switch Controller
	5605  BCM5605 StrataSwitch 24+2 Ethernet Switch Controller
	5615  BCM5615 StrataSwitch 24+2 Ethernet Switch Controller
	5625  BCM5625 StrataSwitch 24+2 Ethernet Switch Controller
	5645  BCM5645 StrataSwitch 24+2 Ethernet Switch Controller
	5670  BCM5670 8-Port 10GE Ethernet Switch Fabric
	5680  BCM5680 G-Switch 8 Port Gigabit Ethernet Switch Controller
	5690  BCM5690 12-port Multi-Layer Gigabit Ethernet Switch
	5691  BCM5691 GE/10GE 8+2 Gigabit Ethernet Switch Controller
	5692  BCM5692 12-port Multi-Layer Gigabit Ethernet Switch
	5695  BCM5695 12-port + HiGig Multi-Layer Gigabit Ethernet Switch
	5698  BCM5698 12-port Multi-Layer Gigabit Ethernet Switch
	5820  BCM5820 Crypto Accelerator
	5821  BCM5821 Crypto Accelerator
	5822  BCM5822 Crypto Accelerator
	5823  BCM5823 Crypto Accelerator
	5824  BCM5824 Crypto Accelerator
	5840  BCM5840 Crypto Accelerator
	5841  BCM5841 Crypto Accelerator
	5850  BCM5850 Crypto Accelerator
	b800  BCM56800 StrataXGS 10GE Switch Controller
14e5  Pixelfusion Ltd
14e6  SHINING Technology Inc
14e7  3CX
14e8  RAYCER Inc
14e9  GARNETS System CO Ltd
14ea  Planex Communications, Inc
	ab06  FNW-3603-TX CardBus Fast Ethernet
	ab07  RTL81xx RealTek Ethernet
	ab08  FNW-3602-TX CardBus Fast Ethernet
14eb  SEIKO EPSON Corp
14ec  ACQIRIS
14ed  DATAKINETICS Ltd
14ee  MASPRO KENKOH Corp
14ef  CARRY Computer ENG. CO Ltd
14f0  CANON RESEACH CENTRE FRANCE
14f1  Conexant Systems, Inc.
	1002  HCF 56k Modem
	1003  HCF 56k Modem
	1004  HCF 56k Modem
	1005  HCF 56k Modem
	1006  HCF 56k Modem
	1022  HCF 56k Modem
	1023  HCF 56k Modem
	1024  HCF 56k Modem
	1025  HCF 56k Modem
	1026  HCF 56k Modem
	1032  HCF 56k Modem
	1033  HCF 56k Data/Fax Modem
		1033 8077  NEC
		122d 4027  Dell Zeus - MDP3880-W(B) Data Fax Modem
		122d 4030  Dell Mercury - MDP3880-U(B) Data Fax Modem
		122d 4034  Dell Thor - MDP3880-W(U) Data Fax Modem
		13e0 020d  Dell Copper
		13e0 020e  Dell Silver
		13e0 0261  IBM
		13e0 0290  Compaq Goldwing
		13e0 02a0  IBM
		13e0 02b0  IBM
		13e0 02c0  Compaq Scooter
		13e0 02d0  IBM
		144f 1500  IBM P85-DF (1)
		144f 1501  IBM P85-DF (2)
		144f 150a  IBM P85-DF (3)
		144f 150b  IBM P85-DF Low Profile (1)
		144f 1510  IBM P85-DF Low Profile (2)
	1034  HCF 56k Data/Fax/Voice Modem
	1035  HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
		10cf 1098  Fujitsu P85-DFSV
	1036  HCF 56k Data/Fax/Voice/Spkp Modem
		104d 8067  HCF 56k Modem
		122d 4029  MDP3880SP-W
		122d 4031  MDP3880SP-U
		13e0 0209  Dell Titanium
		13e0 020a  Dell Graphite
		13e0 0260  Gateway Red Owl
		13e0 0270  Gateway White Horse
	1052  HCF 56k Data/Fax Modem (Worldwide)
	1053  HCF 56k Data/Fax Modem (Worldwide)
	1054  HCF 56k Data/Fax/Voice Modem (Worldwide)
	1055  HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (Worldwide)
	1056  HCF 56k Data/Fax/Voice/Spkp Modem (Worldwide)
	1057  HCF 56k Data/Fax/Voice/Spkp Modem (Worldwide)
	1059  HCF 56k Data/Fax/Voice Modem (Worldwide)
	1063  HCF 56k Data/Fax Modem
	1064  HCF 56k Data/Fax/Voice Modem
	1065  HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
	1066  HCF 56k Data/Fax/Voice/Spkp Modem
		122d 4033  Dell Athena - MDP3900V-U
	1085  HCF V90 56k Data/Fax/Voice/Spkp PCI Modem
	10b6  CX06834-11 HCF V.92 56k Data/Fax/Voice/Spkp Modem
	1433  HCF 56k Data/Fax Modem
	1434  HCF 56k Data/Fax/Voice Modem
	1435  HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
	1436  HCF 56k Data/Fax Modem
	1453  HCF 56k Data/Fax Modem
		13e0 0240  IBM
		13e0 0250  IBM
		144f 1502  IBM P95-DF (1)
		144f 1503  IBM P95-DF (2)
	1454  HCF 56k Data/Fax/Voice Modem
	1455  HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
	1456  HCF 56k Data/Fax/Voice/Spkp Modem
		122d 4035  Dell Europa - MDP3900V-W
		122d 4302  Dell MP3930V-W(C) MiniPCI
	1610  ADSL AccessRunner PCI Arbitration Device
	1611  AccessRunner PCI ADSL Interface Device
	1620  AccessRunner V2 PCI ADSL Arbitration Device
	1621  AccessRunner V2 PCI ADSL Interface Device
	1622  AccessRunner V2 PCI ADSL Yukon WAN Adapter
	1803  HCF 56k Modem
		0e11 0023  623-LAN Grizzly
		0e11 0043  623-LAN Yogi
	1811  MiniPCI Network Adapter
	1815  HCF 56k Modem
		0e11 0022  Grizzly
		0e11 0042  Yogi
	2003  HSF 56k Data/Fax Modem
	2004  HSF 56k Data/Fax/Voice Modem
	2005  HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
	2006  HSF 56k Data/Fax/Voice/Spkp Modem
	2013  HSF 56k Data/Fax Modem
		0e11 b195  Bear
		0e11 b196  Seminole 1
		0e11 b1be  Seminole 2
		1025 8013  Acer
		1033 809d  NEC
		1033 80bc  NEC
		155d 6793  HP
		155d 8850  E Machines
	2014  HSF 56k Data/Fax/Voice Modem
	2015  HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem
	2016  HSF 56k Data/Fax/Voice/Spkp Modem
	2043  HSF 56k Data/Fax Modem (WorldW SmartDAA)
	2044  HSF 56k Data/Fax/Voice Modem (WorldW SmartDAA)
	2045  HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (WorldW SmartDAA)
		14f1 2045  Generic SoftK56
	2046  HSF 56k Data/Fax/Voice/Spkp Modem (WorldW SmartDAA)
	2063  HSF 56k Data/Fax Modem (SmartDAA)
	2064  HSF 56k Data/Fax/Voice Modem (SmartDAA)
	2065  HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (SmartDAA)
	2066  HSF 56k Data/Fax/Voice/Spkp Modem (SmartDAA)
	2093  HSF 56k Modem
		155d 2f07  Legend
	2143  HSF 56k Data/Fax/Cell Modem (Mob WorldW SmartDAA)
	2144  HSF 56k Data/Fax/Voice/Cell Modem (Mob WorldW SmartDAA)
	2145  HSF 56k Data/Fax/Voice/Spkp (w/HS)/Cell Modem (Mob WorldW SmartDAA)
	2146  HSF 56k Data/Fax/Voice/Spkp/Cell Modem (Mob WorldW SmartDAA)
	2163  HSF 56k Data/Fax/Cell Modem (Mob SmartDAA)
	2164  HSF 56k Data/Fax/Voice/Cell Modem (Mob SmartDAA)
	2165  HSF 56k Data/Fax/Voice/Spkp (w/HS)/Cell Modem (Mob SmartDAA)
	2166  HSF 56k Data/Fax/Voice/Spkp/Cell Modem (Mob SmartDAA)
	2343  HSF 56k Data/Fax CardBus Modem (Mob WorldW SmartDAA)
	2344  HSF 56k Data/Fax/Voice CardBus Modem (Mob WorldW SmartDAA)
	2345  HSF 56k Data/Fax/Voice/Spkp (w/HS) CardBus Modem (Mob WorldW SmartDAA)
	2346  HSF 56k Data/Fax/Voice/Spkp CardBus Modem (Mob WorldW SmartDAA)
	2363  HSF 56k Data/Fax CardBus Modem (Mob SmartDAA)
	2364  HSF 56k Data/Fax/Voice CardBus Modem (Mob SmartDAA)
	2365  HSF 56k Data/Fax/Voice/Spkp (w/HS) CardBus Modem (Mob SmartDAA)
	2366  HSF 56k Data/Fax/Voice/Spkp CardBus Modem (Mob SmartDAA)
	2443  HSF 56k Data/Fax Modem (Mob WorldW SmartDAA)
		104d 8075  Modem
		104d 8083  Modem
		104d 8097  Modem
	2444  HSF 56k Data/Fax/Voice Modem (Mob WorldW SmartDAA)
	2445  HSF 56k Data/Fax/Voice/Spkp (w/HS) Modem (Mob WorldW SmartDAA)
	2446  HSF 56k Data/Fax/Voice/Spkp Modem (Mob WorldW SmartDAA)
	2463  HSF 56k Data/Fax Modem (Mob SmartDAA)
	2464  HSF 56k Data/Fax/Voice Modem (Mob SmartDAA)
	2465  HSF 56k Data/Fax/Voice/Spkp (w/HS) Modem (Mob SmartDAA)
	2466  HSF 56k Data/Fax/Voice/Spkp Modem (Mob SmartDAA)
	2bfa  D110 HDAudio Soft Data Fax Modem with SmartCP
		1025 0009  Aspire 5622WLMi
	2f00  HSF 56k HSFi Modem
		13e0 8d84  IBM HSFi V.90
		13e0 8d85  Compaq Stinger
		14f1 2004  Dynalink 56PMi
	2f02  HSF 56k HSFi Data/Fax
	2f11  HSF 56k HSFi Modem
	2f20  HSF 56k Data/Fax Modem
		14f1 200c  Soft Data Fax Modem with SmartCP
		14f1 200f  Dimension 3000
	2f30  SoftV92 SpeakerPhone SoftRing Modem with SmartSP
		14f1 2014  Devolo MikroLink 56K Modem PCI
	2f50  Conexant SoftK56 Data/Fax Modem
	5045  CX20549 (Venice)
	5047  High Definition Audio [Waikiki]
	5051  High Definition Audio (HERMOSA)
	5b7a  CX23418 Single-Chip MPEG-2 Encoder with Integrated Analog Video/Broadcast Audio Decoder
		0070 7444  WinTV HVR-1600
	8234  RS8234 ATM SAR Controller [ServiceSAR Plus]
	8800  CX23880/1/2/3 PCI Video and Audio Decoder
		0070 2801  Hauppauge WinTV 28xxx (Roslyn) models
		0070 3401  Hauppauge WinTV 34xxx models
		0070 6902  WinTV HVR-4000-HD
		0070 7801  WinTV HVR-1800 MCE
		0070 9001  Nova-T DVB-T
		0070 9200  Nova-SE2 DVB-S
		0070 9202  Nova-S-Plus DVB-S
		0070 9402  WinTV-HVR1100 DVB-T/Hybrid
		0070 9600  WinTV 88x Video
		0070 9802  WinTV-HVR1100 DVB-T/Hybrid (Low Profile)
		1002 00f8  ATI TV Wonder Pro
		1002 a101  HDTV Wonder
		1043 4823  ASUS PVR-416
		107d 6611  Winfast TV 2000XP Expert
		107d 6613  Leadtek Winfast 2000XP Expert
		107d 6620  Leadtek Winfast DV2000
		107d 663c  Leadtek PVR 2000
		107d 665f  WinFast DTV1000-T
		10fc d003  IODATA GV-VCP3/PCI
		10fc d035  IODATA GV/BCTV7E
		1421 0334  Instant TV DVB-T PCI
		1461 000a  AVerTV 303 (M126)
		1461 000b  AverTV Studio 303 (M126)
		1461 8011  UltraTV Media Center PCI 550
		1462 8606  MSI TV-@nywhere Master
		14c7 0107  GDI Black Gold
		14f1 0187  Conexant DVB-T reference design
		14f1 0342  Digital-Logic MICROSPACE Entertainment Center (MEC)
		153b 1166  Cinergy 1400 DVB-T
		1540 2580  Provideo PV259
		1554 4811  PixelView
		1554 4813  Club 3D  ZAP1000 MCE Edition
		17de 08a1  KWorld/VStream XPert DVB-T with cx22702
		17de 08a6  KWorld/VStream XPert DVB-T
		17de 08b2  KWorld DVB-S 100
		17de a8a6  digitalnow DNTV Live! DVB-T
		1822 0025  digitalnow DNTV Live! DVB-T Pro
		185b e000  VideoMate X500
		18ac d500  FusionHDTV 5 Gold
		18ac d810  FusionHDTV 3 Gold-Q
		18ac d820  FusionHDTV 3 Gold-T
		18ac db00  FusionHDTV DVB-T1
		18ac db11  FusionHDTV DVB-T Plus
		18ac db50  FusionHDTV DVB-T Dual Digital
		7063 3000  pcHDTV HD3000 HDTV
		7063 5500  pcHDTV HD-5500
	8801  CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port]
		0070 2801  Hauppauge WinTV 28xxx (Roslyn) models
		185b e000  VideoMate X500
		7063 5500  pcHDTV HD-5500
	8802  CX23880/1/2/3 PCI Video and Audio Decoder [MPEG Port]
		0070 2801  Hauppauge WinTV 28xxx (Roslyn) models
		0070 6902  WinTV HVR-4000-HD
		0070 9002  Nova-T DVB-T Model 909
		0070 9402  WinTV-HVR1100 DVB-T/Hybrid
		0070 9600  WinTV 88x MPEG Encoder
		1043 4823  ASUS PVR-416
		107d 663c  Leadtek PVR 2000
		107d 665f  WinFast DTV1000-T
		14f1 0187  Conexant DVB-T reference design
		17de 08a1  XPert DVB-T PCI BDA DVBT 23880 Transport Stream Capture
		17de 08a6  KWorld/VStream XPert DVB-T
		18ac d500  DViCO FusionHDTV5 Gold
		18ac d810  DViCO FusionHDTV3 Gold-Q
		18ac d820  DViCO FusionHDTV3 Gold-T
		18ac db00  DVICO FusionHDTV DVB-T1
		18ac db10  DVICO FusionHDTV DVB-T Plus
		7063 3000  pcHDTV HD3000 HDTV
		7063 5500  pcHDTV HD-5500
	8804  CX23880/1/2/3 PCI Video and Audio Decoder [IR Port]
		0070 6902  WinTV HVR-4000-HD
		0070 9002  Nova-T DVB-T Model 909
		0070 9402  WinTV-HVR1100 DVB-T/Hybrid
		7063 5500  pcHDTV HD-5500
	8811  CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port]
		0070 3401  Hauppauge WinTV 34xxx models
		0070 6902  WinTV HVR-4000-HD
		0070 9402  WinTV-HVR1100 DVB-T/Hybrid
		0070 9600  WinTV 88x Audio
		1462 8606  MSI TV-@nywhere Master
		18ac d500  DViCO FusionHDTV5 Gold
		18ac d810  DViCO FusionHDTV3 Gold-Q
		18ac d820  DViCO FusionHDTV3 Gold-T
		18ac db00  DVICO FusionHDTV DVB-T1
	8852  CX23885 PCI Video and Audio Decoder
		0070 8010  Hauppauge WinTV HVR-1400 ExpressCard
		1461 c039  AVerTV Hybrid Express (A577)
		18ac db78  FusionHDTV DVB-T Dual Express
	8880  Hauppauge Inc. HDPVR-1250 model 1196
14f2  MOBILITY Electronics
	0120  EV1000 bridge
	0121  EV1000 Parallel port
	0122  EV1000 Serial port
	0123  EV1000 Keyboard controller
	0124  EV1000 Mouse controller
14f3  BroadLogic
	2030  2030 DVB-S Satellite Receiver
	2035  2035 DVB-S Satellite Receiver
	2050  2050 DVB-T Terrestrial (Cable) Receiver
	2060  2060 ATSC Terrestrial (Cable) Receiver
14f4  TOKYO Electronic Industry CO Ltd
14f5  SOPAC Ltd
14f6  COYOTE Technologies LLC
14f7  WOLF Technology Inc
14f8  AUDIOCODES Inc
	2077  TP-240 dual span E1 VoIP PCI card
14f9  AG COMMUNICATIONS
14fa  WANDEL & GOLTERMANN
14fb  TRANSAS MARINE (UK) Ltd
14fc  Quadrics Ltd
	0000  QsNet Elan3 Network Adapter
	0001  QsNetII Elan4 Network Adapter
	0002  QsNetIII Elan5 Network Adapter
14fd  JAPAN Computer Industry Inc
14fe  ARCHTEK TELECOM Corp
14ff  TWINHEAD INTERNATIONAL Corp
1500  DELTA Electronics, Inc
	1360  RTL81xx RealTek Ethernet
1501  BANKSOFT CANADA Ltd
1502  MITSUBISHI ELECTRIC LOGISTICS SUPPORT Co Ltd
1503  KAWASAKI LSI USA Inc
1504  KAISER Electronics
1505  ITA INGENIEURBURO FUR TESTAUFGABEN GmbH
1506  CHAMELEON Systems Inc
# Should be HTEC Ltd, but there are no known HTEC chips and 1507 is already used by mistake by Motorola (see vendor ID 1057).
1507  Motorola ?? / HTEC
	0001  MPC105 [Eagle]
	0002  MPC106 [Grackle]
	0003  MPC8240 [Kahlua]
	0100  MC145575 [HFC-PCI]
	0431  KTI829c 100VG
	4801  Raven
	4802  Falcon
	4803  Hawk
	4806  CPX8216
1508  HONDA CONNECTORS/MHOTRONICS Inc
1509  FIRST INTERNATIONAL Computer Inc
150a  FORVUS RESEARCH Inc
150b  YAMASHITA Systems Corp
150c  KYOPAL CO Ltd
150d  WARPSPPED Inc
150e  C-PORT Corp
150f  INTEC GmbH
1510  BEHAVIOR TECH Computer Corp
1511  CENTILLIUM Technology Corp
1512  ROSUN Technologies Inc
1513  Raychem
1514  TFL LAN Inc
1515  Advent design
1516  MYSON Technology Inc
	0800  MTD-8xx 100/10M Ethernet PCI Adapter
	0803  SURECOM EP-320X-S 100/10M Ethernet PCI Adapter
		1320 10bd  SURECOM EP-320X-S 100/10M Ethernet PCI Adapter
	0891  MTD-8xx 100/10M Ethernet PCI Adapter
1517  ECHOTEK Corp
# nee PEP MODULAR Computers GmbH
1518  Kontron Modular Computers GmbH
1519  TELEFON AKTIEBOLAGET LM Ericsson
151a  Globetek
	1002  PCI-1002
	1004  PCI-1004
	1008  PCI-1008
151b  COMBOX Ltd
151c  DIGITAL AUDIO LABS Inc
	0003  Prodif T 2496
	4000  Prodif 88
151d  Fujitsu Computer Products Of America
151e  MATRIX Corp
151f  TOPIC SEMICONDUCTOR Corp
	0000  TP560 Data/Fax/Voice 56k modem
1520  CHAPLET System Inc
1521  BELL Corp
1522  MainPine Ltd
	0100  PCI <-> IOBus Bridge
		1522 0200  RockForceDUO 2 Port V.92/V.44 Data/Fax/Voice Modem
		1522 0300  RockForceQUATRO 4 Port V.92/V.44 Data/Fax/Voice Modem
		1522 0400  RockForceDUO+ 2 Port V.92/V.44 Data/Fax/Voice Modem
		1522 0500  RockForceQUATRO+ 4 Port V.92/V.44 Data/Fax/Voice Modem
		1522 0600  RockForce+ 2 Port V.90 Data/Fax/Voice Modem
		1522 0700  RockForce+ 4 Port V.90 Data/Fax/Voice Modem
		1522 0800  RockForceOCTO+ 8 Port V.92/V.44 Data/Fax/Voice Modem
		1522 0c00  RockForceDUO+ 2 Port V.92/V.44 Data, V.34 Super-G3 Fax, Voice Modem
		1522 0d00  RockForceQUATRO+ 4 Port V.92/V.44 Data, V.34 Super-G3 Fax, Voice Modem
		1522 1d00  RockForceOCTO+ 8 Port V.92/V.44 Data, V.34 Super-G3 Fax, Voice Modem
		1522 2000  RockForceD1 1 Port V.90 Data Modem
		1522 2100  RockForceF1 1 Port V.34 Super-G3 Fax Modem
		1522 2200  RockForceD2 2 Port V.90 Data Modem
		1522 2300  RockForceF2 2 Port V.34 Super-G3 Fax Modem
		1522 2400  RockForceD4 4 Port V.90 Data Modem
		1522 2500  RockForceF4 4 Port V.34 Super-G3 Fax Modem
		1522 2600  RockForceD8 8 Port V.90 Data Modem
		1522 2700  RockForceF8 8 Port V.34 Super-G3 Fax Modem
		1522 3000  IQ Express D1 - 1 Port V.92 Data Modem
		1522 3100  IQ Express F1 - 1 Port V.34 Super-G3 Fax Modem
		1522 3200  IQ Express D2 - 2 Port V.92 Data Modem
		1522 3300  IQ Express F2 - 2 Port V.34 Super-G3 Fax Modem
		1522 3400  IQ Express D4 - 4 Port V.92 Data Modem
		1522 3500  IQ Express F4 - 4 Port V.34 Super-G3 Fax Modem
		1522 3c00  IQ Express D8 - 8 Port V.92 Data Modem
		1522 3d00  IQ Express F8 - 8 Port V.34 Super-G3 Fax Modem
	4000  PCI Express UART
		1522 4001  IQ Express 1-port V.34 Super-G3 Fax
		1522 4002  IQ Express 2-port V.34 Super-G3 Fax
		1522 4004  IQ Express 4-port V.34 Super-G3 Fax
		1522 4008  IQ Express 8-port V.34 Super-G3 Fax
		1522 4100  IQ Express SideBand
1523  MUSIC Semiconductors
1524  ENE Technology Inc
	0510  CB710 Memory Card Reader Controller
		103c 006a  NX9500
	0520  FLASH memory: ENE Technology Inc:
	0530  ENE PCI Memory Stick Card Reader Controller
	0550  ENE PCI Secure Digital Card Reader Controller
	0551  SD/MMC Card Reader Controller
	0610  PCI Smart Card Reader Controller
	0720  Memory Stick Card Reader Controller
	0730  ENE PCI Memory Stick Card Reader Controller
	0750  ENE PCI SmartMedia / xD Card Reader Controller
	0751  ENE PCI Secure Digital / MMC Card Reader Controller
	1211  CB1211 Cardbus Controller
	1225  CB1225 Cardbus Controller
	1410  CB1410 Cardbus Controller
		1025 003c  CL50 motherboard
		1025 005a  TravelMate 290
	1411  CB-710/2/4 Cardbus Controller
		103c 006a  NX9500
	1412  CB-712/4 Cardbus Controller
	1420  CB1420 Cardbus Controller
	1421  CB-720/2/4 Cardbus Controller
	1422  CB-722/4 Cardbus Controller
1525  IMPACT Technologies
1526  ISS, Inc
1527  SOLECTRON
1528  ACKSYS
1529  AMERICAN MICROSystems Inc
152a  QUICKTURN DESIGN Systems
152b  FLYTECH Technology CO Ltd
152c  MACRAIGOR Systems LLC
152d  QUANTA Computer Inc
152e  MELEC Inc
152f  PHILIPS - CRYPTO
1530  ACQIS Technology Inc
1531  CHRYON Corp
1532  ECHELON Corp
	0020  LonWorks PCLTA-20 PCI LonTalk Adapter
1533  BALTIMORE
1534  ROAD Corp
1535  EVERGREEN Technologies Inc
1536  ACTIS Computer
1537  DATALEX COMMUNCATIONS
1538  ARALION Inc
	0303  ARS106S Ultra ATA 133/100/66 Host Controller
1539  ATELIER INFORMATIQUES et ELECTRONIQUE ETUDES S.A.
153a  ONO SOKKI
153b  TERRATEC Electronic GmbH
	1144  Aureon 5.1
# Terratec seems to use several IDs for the same card.
	1147  Aureon 5.1 Sky
	1158  Philips Semiconductors SAA7134 (rev 01) [Terratec Cinergy 600 TV]
153c  ANTAL Electronic
153d  FILANET Corp
153e  TECHWELL Inc
153f  MIPS Technologies, Inc.
	0001  SOC-it 101 System Controller
1540  PROVIDEO MULTIMEDIA Co Ltd
1541  MACHONE Communications
1542  Concurrent Computer Corporation
	9260  RCIM-II Real-Time Clock & Interrupt Module
1543  SILICON Laboratories
	3052  Intel 537 [Winmodem]
	3155  Motorola SM56 Speakerphone Modem
	4c22  Si3036 MC'97 DAA
1544  DCM DATA Systems
1545  VISIONTEK
1546  IOI Technology Corp
1547  MITUTOYO Corp
1548  JET PROPULSION Laboratory
1549  INTERCONNECT Systems Solutions
154a  MAX Technologies Inc
154b  COMPUTEX Co Ltd
154c  VISUAL Technology Inc
154d  PAN INTERNATIONAL Industrial Corp
154e  SERVOTEST Ltd
154f  STRATABEAM Technology
1550  OPEN NETWORK Co Ltd
1551  SMART Electronic DEVELOPMENT GmBH
1552  RACAL AIRTECH Ltd
1553  CHICONY Electronics Co Ltd
1554  PROLINK Microsystems Corp
1555  GESYTEC GmBH
1556  PLD APPLICATIONS
1557  MEDIASTAR Co Ltd
1558  CLEVO/KAPOK Computer
1559  SI LOGIC Ltd
155a  INNOMEDIA Inc
155b  PROTAC INTERNATIONAL Corp
155c  Cemax-Icon Inc
155d  Mac System Co Ltd
155e  LP Elektronik GmbH
155f  Perle Systems Ltd
1560  Terayon Communications Systems
1561  Viewgraphics Inc
1562  Symbol Technologies
1563  A-Trend Technology Co Ltd
1564  Yamakatsu Electronics Industry Co Ltd
1565  Biostar Microtech Int'l Corp
1566  Ardent Technologies Inc
1567  Jungsoft
1568  DDK Electronics Inc
1569  Palit Microsystems Inc.
156a  Avtec Systems
156b  2wire Inc
156c  Vidac Electronics GmbH
156d  Alpha-Top Corp
156e  Alfa Inc
156f  M-Systems Flash Disk Pioneers Ltd
1570  Lecroy Corp
1571  Contemporary Controls
	a001  CCSI PCI20-485 ARCnet
	a002  CCSI PCI20-485D ARCnet
	a003  CCSI PCI20-485X ARCnet
	a004  CCSI PCI20-CXB ARCnet
	a005  CCSI PCI20-CXS ARCnet
	a006  CCSI PCI20-FOG-SMA ARCnet
	a007  CCSI PCI20-FOG-ST ARCnet
	a008  CCSI PCI20-TB5 ARCnet
	a009  CCSI PCI20-5-485 5Mbit ARCnet
	a00a  CCSI PCI20-5-485D 5Mbit ARCnet
	a00b  CCSI PCI20-5-485X 5Mbit ARCnet
	a00c  CCSI PCI20-5-FOG-ST 5Mbit ARCnet
	a00d  CCSI PCI20-5-FOG-SMA 5Mbit ARCnet
	a201  CCSI PCI22-485 10Mbit ARCnet
	a202  CCSI PCI22-485D 10Mbit ARCnet
	a203  CCSI PCI22-485X 10Mbit ARCnet
	a204  CCSI PCI22-CHB 10Mbit ARCnet
	a205  CCSI PCI22-FOG_ST 10Mbit ARCnet
	a206  CCSI PCI22-THB 10Mbit ARCnet
1572  Otis Elevator Company
1573  Lattice - Vantis
1574  Fairchild Semiconductor
1575  Voltaire Advanced Data Security Ltd
1576  Viewcast COM
1578  HITT
	4d34  VPMK4 [Video Processor Mk IV]
	5615  VPMK3 [Video Processor Mk III]
1579  Dual Technology Corp
157a  Japan Elecronics Ind Inc
157b  Star Multimedia Corp
157c  Eurosoft (UK)
	8001  Fix2000 PCI Y2K Compliance Card
157d  Gemflex Networks
157e  Transition Networks
157f  PX Instruments Technology Ltd
1580  Primex Aerospace Co
1581  SEH Computertechnik GmbH
1582  Cytec Corp
1583  Inet Technologies Inc
1584  Uniwill Computer Corp
1585  Logitron
1586  Lancast Inc
1587  Konica Corp
1588  Solidum Systems Corp
1589  Atlantek Microsystems Pty Ltd
	0008  Leutron Vision PicPortExpress CL
	0009  Leutron Vision PicPortExpress CL Stereo
158a  Digalog Systems Inc
158b  Allied Data Technologies
158c  Hitachi Semiconductor & Devices Sales Co Ltd
158d  Point Multimedia Systems
158e  Lara Technology Inc
158f  Ditect Coop
1590  3PAR Inc.
	0001  Eagle Cluster Manager
	0002  Osprey Cluster Manager
	0003  Harrier Cluster Manager
	a01d  FC044X Fibre Channel HBA
1591  ARN
1592  Syba Tech Ltd
	0781  Multi-IO Card
	0782  Parallel Port Card 2xEPP
	0783  Multi-IO Card
	0785  Multi-IO Card
	0786  Multi-IO Card
	0787  Multi-IO Card
	0788  Multi-IO Card
	078a  Multi-IO Card
1593  Bops Inc
1594  Netgame Ltd
1595  Diva Systems Corp
1596  Folsom Research Inc
1597  Memec Design Services
1598  Granite Microsystems
1599  Delta Electronics Inc
159a  General Instrument
159b  Faraday Technology Corp
159c  Stratus Computer Systems
159d  Ningbo Harrison Electronics Co Ltd
159e  A-Max Technology Co Ltd
159f  Galea Network Security
15a0  Compumaster SRL
15a1  Geocast Network Systems
15a2  Catalyst Enterprises Inc
	0001  TA700 PCI Bus Analyzer/Exerciser
15a3  Italtel
15a4  X-Net OY
15a5  Toyota Macs Inc
15a6  Sunlight Ultrasound Technologies Ltd
15a7  SSE Telecom Inc
15a8  Shanghai Communications Technologies Center
15aa  Moreton Bay
15ab  Bluesteel Networks Inc
15ac  North Atlantic Instruments
15ad  VMware
	0405  SVGA II Adapter
	0710  SVGA Adapter
	0720  VMXNET Ethernet Controller
	0740  Virtual Machine Communication Interface
	0770  USB2 EHCI Controller
	0774  USB1.1 UHCI Controller
	0790  PCI bridge
	07a0  PCI Express Root Port
	07b0  VMXNET3 Ethernet Controller
	07c0  PVSCSI SCSI Controller
	0801  Virtual Machine Interface
		15ad 0800  Hypervisor ROM Interface
15ae  Amersham Pharmacia Biotech
15b0  Zoltrix International Ltd
15b1  Source Technology Inc
15b2  Mosaid Technologies Inc
15b3  Mellanox Technologies
	0191  MT25408 [ConnectX IB SDR Flash Recovery]
	1002  MT25400 Family [ConnectX-2 Virtual Function]
	1003  MT27500 Family [ConnectX-3]
	1004  MT27500 Family [ConnectX-3 Virtual Function]
	1005  MT27510 Family
	1006  MT27511 Family
	1007  MT27520 Family
	1008  MT27521 Family
	1009  MT27530 Family
	100a  MT27531 Family
	100b  MT27540 Family
	100c  MT27541 Family
	100d  MT27550 Family
	100e  MT27551 Family
	100f  MT27560 Family
	1010  MT27561 Family
	5274  MT21108 InfiniBridge
	5a44  MT23108 InfiniHost
	5a45  MT23108 [Infinihost HCA Flash Recovery]
	5a46  MT23108 PCI Bridge
	5e8c  MT24204 [InfiniHost III Lx HCA]
	5e8d  MT25204 [InfiniHost III Lx HCA Flash Recovery]
	6274  MT25204 [InfiniHost III Lx HCA]
	6278  MT25208 InfiniHost III Ex (Tavor compatibility mode)
	6279  MT25208 [InfiniHost III Ex HCA Flash Recovery]
	6282  MT25208 [InfiniHost III Ex]
	6340  MT25408 [ConnectX VPI - IB SDR / 10GigE]
	634a  MT25418 [ConnectX VPI PCIe 2.0 2.5GT/s - IB DDR / 10GigE]
	6368  MT25448 [ConnectX EN 10GigE, PCIe 2.0 2.5GT/s]
	6372  MT25408 [ConnectX EN 10GigE 10GBaseT, PCIe 2.0 2.5GT/s]
	6732  MT26418 [ConnectX VPI PCIe 2.0 5GT/s - IB DDR / 10GigE]
	673c  MT26428 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE]
	6746  MT26438 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE Virtualization+]
		103c 1781  NC543i 1-port 4x QDR IB/Flex-10 10Gb Adapter
		103c 3349  NC543i 2-port 4xQDR IB/10Gb Adapter
	6750  MT26448 [ConnectX EN 10GigE, PCIe 2.0 5GT/s]
	675a  MT25408 [ConnectX EN 10GigE 10GBaseT, PCIe Gen2 5GT/s]
	6764  MT26468 [ConnectX EN 10GigE, PCIe 2.0 5GT/s Virtualization+]
		103c 3313  HP NC542m Dual Port Flex-10 10GbE BLc Adapter
	676e  MT26478 [ConnectX EN 40GigE, PCIe 2.0 5GT/s]
	6778  MT26488 [ConnectX VPI PCIe 2.0 5GT/s - IB DDR / 10GigE Virtualization+]
15b4  CCI/TRIAD
15b5  Cimetrics Inc
15b6  Texas Memory Systems Inc
	0001  XP15 DSP Accelerator
	0002  XP30 DSP Accelerator
	0003  XP00 Data Acquisition Device
	0004  XP35 DSP Accelerator
	0007  XP100 DSP Accelerator [XP100-T0]
	0008  XP100 DSP Accelerator [XP100-T1]
	0009  XP100 DSP Accelerator [XP100-E0]
	000a  XP100 DSP Accelerator [XP100-E1]
	000e  XP100 DSP Accelerator [XP100-0]
	000f  XP100 DSP Accelerator [XP100-1]
	0010  XP100 DSP Accelerator [XP100-P0]
	0011  XP100 DSP Accelerator [XP100-P1]
	0012  XP100 DSP Accelerator [XP100-P2]
	0013  XP100 DSP Accelerator [XP100-P3]
	0014  RamSan Flash SSD
	0015  ZBox
15b7  Sandisk Corp
15b8  ADDI-DATA GmbH
	1003  APCI1032 SP controller (32 digi inputs w/ opto coupler)
	1005  APCI2200 SP controller (8/16 digi outputs (relay))
	100a  APCI1696 SP controller (96 TTL I/Os)
	3001  APCI3501 SP controller (analog output board)
	300f  APCI3600 Noise and vibration measurement board
	7001  APCI7420 2-port Serial Controller
	7002  APCI7300 Serial Controller
15b9  Maestro Digital Communications
15ba  Impacct Technology Corp
15bb  Portwell Inc
15bc  Agilent Technologies
	0103  QX4 PCI Express quad 4-gigabit Fibre Channel controller
	0105  Celerity FC-42XS Fibre Channel Adapter
		117c 0022  Celerity FC-42XS Fibre Channel Adapter
	1100  E8001-66442 PCI Express CIC
	2922  64 Bit, 133MHz PCI-X Exerciser & Protocol Checker
	2928  64 Bit, 66MHz PCI Exerciser & Analyzer
	2929  64 Bit, 133MHz PCI-X Analyzer & Exerciser
15bd  DFI Inc
15be  Sola Electronics
15bf  High Tech Computer Corp (HTC)
15c0  BVM Ltd
15c1  Quantel
15c2  Newer Technology Inc
15c3  Taiwan Mycomp Co Ltd
15c4  EVSX Inc
15c5  Procomp Informatics Ltd
	8010  1394b - 1394 Firewire 3-Port Host Adapter Card
15c6  Technical University of Budapest
15c7  Tateyama System Laboratory Co Ltd
	0349  Tateyama C-PCI PLC/NC card Rev.01A
15c8  Penta Media Co Ltd
15c9  Serome Technology Inc
15ca  Bitboys OY
15cb  AG Electronics Ltd
15cc  Hotrail Inc
15cd  Dreamtech Co Ltd
15ce  Genrad Inc
15cf  Hilscher GmbH
15d1  Infineon Technologies AG
15d2  FIC (First International Computer Inc)
15d3  NDS Technologies Israel Ltd
15d4  Iwill Corp
15d5  Tatung Co
15d6  Entridia Corp
15d7  Rockwell-Collins Inc
15d8  Cybernetics Technology Co Ltd
15d9  Super Micro Computer Inc
15da  Cyberfirm Inc
15db  Applied Computing Systems Inc
15dc  Litronic Inc
	0001  Argus 300 PCI Cryptography Module
15dd  Sigmatel Inc
15de  Malleable Technologies Inc
15df  Infinilink Corp
15e0  Cacheflow Inc
15e1  Voice Technologies Group Inc
15e2  Quicknet Technologies Inc
	0500  PhoneJack-PCI
15e3  Networth Technologies Inc
15e4  VSN Systemen BV
15e5  Valley technologies Inc
15e6  Agere Inc
15e7  Get Engineering Corp
15e8  National Datacomm Corp
	0130  Wireless PCI Card
	0131  NCP130A2 Wireless NIC
15e9  Pacific Digital Corp
	1841  ADMA-100 DiscStaQ ATA Controller
15ea  Tokyo Denshi Sekei K.K.
15eb  DResearch Digital Media Systems GmbH
15ec  Beckhoff GmbH
	3101  FC3101 Profibus DP 1 Channel PCI
	5102  FC5102
15ed  Macrolink Inc
15ee  In Win Development Inc
15ef  Intelligent Paradigm Inc
15f0  B-Tree Systems Inc
15f1  Times N Systems Inc
15f2  Diagnostic Instruments Inc
15f3  Digitmedia Corp
15f4  Valuesoft
15f5  Power Micro Research
15f6  Extreme Packet Device Inc
15f7  Banctec
15f8  Koga Electronics Co
15f9  Zenith Electronics Corp
15fa  J.P. Axzam Corp
15fb  Zilog Inc
15fc  Techsan Electronics Co Ltd
15fd  N-CUBED.NET
15fe  Kinpo Electronics Inc
15ff  Fastpoint Technologies Inc
1600  Northrop Grumman - Canada Ltd
1601  Tenta Technology
1602  Prosys-tec Inc
1603  Nokia Wireless Communications
1604  Central System Research Co Ltd
1605  Pairgain Technologies
1606  Europop AG
1607  Lava Semiconductor Manufacturing Inc
1608  Automated Wagering International
1609  Scimetric Instruments Inc
1612  Telesynergy Research Inc.
1618  Stone Ridge Technology
	0001  RDX 11
	0400  FarSync T2P (2 port X.21/V.35/V.24)
	0440  FarSync T4P (4 port X.21/V.35/V.24)
	0610  FarSync T1U (1 port X.21/V.35/V.24)
	0620  FarSync T2U (2 port X.21/V.35/V.24)
	0640  FarSync T4U (4 port X.21/V.35/V.24)
	1610  FarSync TE1 (T1,E1)
	2610  FarSync DSL-S1 (SHDSL)
	3640  FarSync T4E (4-port X.21/V.35/V.24)
	4620  FarSync T2Ue PCI Express (2-port X.21/V.35/V.24)
	4640  FarSync T4Ue PCI Express (4-port X.21/V.35/V.24)
1619  FarSite Communications Ltd
	0400  FarSync T2P (2 port X.21/V.35/V.24)
	0440  FarSync T4P (4 port X.21/V.35/V.24)
	0610  FarSync T1U (1 port X.21/V.35/V.24)
	0620  FarSync T2U (2 port X.21/V.35/V.24)
	0640  FarSync T4U (4 port X.21/V.35/V.24)
	1610  FarSync TE1 (T1,E1)
	2610  FarSync DSL-S1 (SHDSL)
	3640  FarSync T4E (4-port X.21/V.35/V.24)
	4620  FarSync T2Ue PCI Express (2-port X.21/V.35/V.24)
	4640  FarSync T4Ue PCI Express (4-port X.21/V.35/V.24)
161f  Rioworks
1626  TDK Semiconductor Corp.
	8410  RTL81xx Fast Ethernet
1629  Kongsberg Spacetec AS
	1003  Format synchronizer v3.0
	1006  Format synchronizer, model 10500
	1007  Format synchronizer, model 21000
	2002  Fast Universal Data Output
1631  Packard Bell B.V.
1638  Standard Microsystems Corp [SMC]
	1100  SMC2602W EZConnect / Addtron AWA-100 / Eumitcom PCI WL11000
163c  Smart Link Ltd.
	3052  SmartLink SmartPCI562 56K Modem
	5449  SmartPCI561 Modem
1641  MKNet Corp.
1657  Brocade Communications Systems, Inc.
	0013  425/825/42B/82B 4Gbps/8Gbps PCIe dual port FC HBA
		103c 1742  HP 82B 8Gbps dual port FC HBA
		103c 1744  HP 42B 4Gbps dual port FC HBA
		1657 0014  425/825 4Gbps/8Gbps PCIe dual port FC HBA
	0014  1010/1020/1007 10Gbps CNA
		1657 0014  1010/1020/1007 10Gbps CNA - FCOE
		1657 0015  1010/1020/1007 10Gbps CNA - LL
	0017  415/815/41B/81B 4Gbps/8Gbps PCIe single port FC HBA
		103c 1741  HP 41B 4Gbps single port FC HBA
		103c 1743  HP 81B 8Gbps single port FC HBA
		1657 0014  415/815 4Gbps/8Gbps single port PCIe FC HBA
	0021  804/807 8Gbps FC HBA
		103c 1779  804 8Gbps FC HBA for HP Bladsystem c-class
		1657 0014  8Gbps FC HBA
# Same Device_ID used for 410 (1port) and 420 (2 port) HBAs.
	0646  400 4Gbps PCIe FC HBA
165a  Epix Inc
	c100  PIXCI(R) CL1 Camera Link Video Capture Board [custom QL5232]
	d200  PIXCI(R) D2X Digital Video Capture Board [custom QL5232]
	d300  PIXCI(R) D3X Digital Video Capture Board [custom QL5232]
165d  Hsing Tech. Enterprise Co., Ltd.
165f  Linux Media Labs, LLC
	1020  LMLM4 MPEG-4 encoder
1661  Worldspace Corp.
1668  Actiontec Electronics Inc
	0100  Mini-PCI bridge
# Formerly SiByte, Inc.
166d  Broadcom Corporation
	0001  SiByte BCM1125/1125H/1250 System-on-a-Chip PCI
	0002  SiByte BCM1125H/1250 System-on-a-Chip HyperTransport
	0012  SiByte BCM1280/BCM1480 System-on-a-Chip PCI-X
	0014  Sibyte BCM1280/BCM1480 System-on-a-Chip HyperTransport
1677  Bernecker + Rainer
	104e  5LS172.6 B&R Dual CAN Interface Card
	12d7  5LS172.61 B&R Dual CAN Interface Card
	20ad  5ACPCI.MFIO-K01 Profibus DP / K-Feldbus / COM
1678  NetEffect
	0100  NE020 10Gb Accelerated Ethernet Adapter (iWARP RNIC)
1679  Tokyo Electron Device Ltd.
	3000  SD Standard host controller [Ellen]
167b  ZyDAS Technology Corp.
	2102  ZyDAS ZD1202
		187e 3406  ZyAIR B-122 CardBus 11Mbs Wireless LAN Card
	2116  ZD1212B Wireless Adapter
167d  Samsung Electro-Mechanics Co., Ltd.
	a000  IPW2200 miniPCI Wireless
167e  ONNTO Corp.
1681  Hercules
	0010  Hercules 3d Prophet II Ultra 64MB (350 MHz NV15BR core)
1682  XFX Pine Group Inc.
1688  CastleNet Technology Inc.
	1170  WLAN 802.11b card
168c  Atheros Communications Inc.
	0007  AR5000 802.11a Wireless Adapter
	0011  AR5210 802.11a NIC
	0012  AR5211 802.11ab NIC
		126c 8031  2201 Mobile Adapter
	0013  Atheros AR5001X+ Wireless Network Adapter
		0e11 00e5  NC6000 laptop
		1113 d301  Philips CPWNA100 Wireless CardBus adapter
		1113 ee23  SMCWPCIT-G 108Mbps Wireless PCI adapter
		1154 033b  Buffalo WLI-CB-AMG54
		1186 3202  DWL-G650 (Rev B3,B5) Wireless cardbus adapter
		1186 3203  DWL-G520 Wireless PCI Adapter
		1186 3a12  D-Link AirPlus DWL-G650 Wireless Cardbus Adapter(rev.C)
		1186 3a13  D-Link AirPlus DWL-G520 Wireless PCI Adapter(rev.B)
		1186 3a14  D-Link AirPremier DWL-AG530 Wireless PCI Adapter
		1186 3a17  D-Link AirPremier DWL-G680 Wireless Cardbus Adapter
		1186 3a18  D-Link AirPremier DWL-G550 Wireless PCI Adapter
		1186 3a63  D-Link AirPremier DWL-AG660 Wireless Cardbus Adapter
		1186 3a93  Conceptronic C54I Wireless 801.11g PCI card
		1186 3a94  C54C Wireless 801.11g cardbus
		1186 3ab0  Allnet ALL0281 Wireless PCI Card
		1385 4900  WG311v1 802.11g Wireless PCI Adapter
		1385 4d00  Netgear WG311T Wireless PCI Adapter
		1458 e911  Gigabyte GN-WIAG02
		1468 0408  ThinkPad 11b/g Wireless LAN Mini PCI Adapter
		14b7 0a60  8482-WD ORiNOCO 11a/b/g Wireless PCI Adapter
		14b9 cb21  CB21 802.11a/b/g Cardbus Adapter
		1668 1026  IBM HighRate 11 a/b/g Wireless CardBus Adapter
		168c 0013  AirPlus XtremeG DWL-G650 Wireless PCMCIA Adapter
		168c 1025  DWL-G650B2 Wireless CardBus Adapter
		168c 1027  Engenius NL-3054CB ARIES b/g CardBus Adapter
		168c 1042  Ubiquiti Networks SuperRange a/b/g Cardbus Adapter
		168c 1051  EZ Connect g 802.11g 108Mbps Wireless PCI Adapter
		168c 2026  Netgate 5354MP ARIES a(108Mb turbo)/b/g MiniPCI Adapter
		168c 2041  Engenius 5354MP Plus ARIES2 b/g MiniPCI Adapter
		168c 2042  Engenius 5354MP Plus ARIES2 a/b/g MiniPCI Adapter
		168c 2051  TRENDnet TEW-443PI Wireless PCI Adapter
		16ab 7302  Trust Speedshare Turbo Pro Wireless PCI Adapter
		1737 0017  WPC55AG
		1737 0026  WMP55AG v1.1
		17cf 0042  Z-COMAX Highpower XG-622H (400mw) 802.11b/g mini-PCI Adapter
		185f 1012  CM9 Wireless a/b/g MiniPCI Adapter
		185f 2012  Wistron NeWeb WLAN a+b+g model CB9
# the name AR5005G is used for the reference design using AR2413
	001a  AR2413 802.11bg NIC
		1052 168c  Sweex Wireless Lan PC Card 54Mbps
		1113 ee20  SMC Wireless CardBus Adapter 802.11g (SMCWCB-G EU)
		1113 ee24  SMC Wireless PCI Card WPCI-G
		1186 3a15  AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.D1)
		1186 3a16  AirPlus G DWL-G510 Wireless PCI Adapter(rev.B)
		1186 3a1d  WDA-1320 Desktop Adapter
		1186 3a23  AirPlus G DWL-G520+A Wireless PCI Adapter
		1186 3a24  AirPlus G DWL-G650+A Wireless Cardbus Adapter
		1186 3b08  AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.C1)
		168c 001a  Belkin FD7000
		168c 1052  TP-Link TL-WN510G Wireless CardBus Adapter
		168c 2052  Compex Wireless 802.11 b/g  MiniPCI Adapter, Rev A1 [WLM54G]
		16ec 0122  Wireless PCI Adapter Model 5418
		1737 0053  WPC54G v7 802.11g Wireless-G Notebook Adapter
# the name AR5006X is used for the reference design using AR5413
	001b  AR5413 802.11abg NIC
		1186 3a19  D-Link AirPremier AG DWL-AG660 Wireless Cardbus Adapter
		1186 3a22  D-Link AirPremier AG DWL-AG530 Wireless PCI Adapter
		1458 e901  GN-WI01HT Wireless a/b/g MiniPCI Adapter
		168c 001b  Wireless LAN PCI LiteOn
		168c 2062  EnGenius EMP-8602 (400mw) or Compex WLM54AG (SuperAG)
		168c 2063  EnGenius EMP-8602 (400mw) or Compex WLM54AG
		185f 1600  DCMA-82 High Power WLAN 802.11a/b/g mini-PCI Module (Super A/G, eXtended Range, 400mW)
		a727 6804  Wireless 11a/b/g PC Card with XJACK(r) Antenna
	001c  AR5001 Wireless Network Adapter
		1468 0428  AR5BXB63 802.11bg NIC
		1468 042a  AR5007EG 802.11bg NIC
		147b 1033  AirPace Wi-Fi
		168c 001c  AR242x 802.11abg NIC (PCI Express)
		168c 3061  AR5006EGS 802.11bg NIC (2.4GHz, PCI Express)
		168c 3062  AR5006EXS 802.11abg NIC (2.4/5.0GHz, PCI Express)
		168c 3063  AR5006EX 802.11abg NIC (2.4/5.0GHz, PCI Express)
		168c 3065  AR5006EG 802.11bg NIC (2.4GHz, PCI Express)
		168c 3067  AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
		1a3b 1026  AR5007EG 802.11bg Wi-Fi mini PCI express card
	001d  AR5007G Wireless Network Adapter
# the name AR5005VL is used for some AR5513 based designs
	0020  AR5513 802.11abg Wireless NIC
		1186 3a67  DWL-G650M Super G MIMO Wireless Notebook Adapter
	0023  AR5008 Wireless Network Adapter
		1186 3a6a  DWA-642 802.11n RangeBooster N CardBus Adapter
		1186 3a6d  DWA-552 802.11n Xtreme N Desktop Adapter (rev A1)
		1737 0059  WPC300N v2 Wireless-N Notebook Adapter
		1737 0069  WPC100 v1 802.11n RangePlus Wireless Notebook Adapter
	0024  AR5008 Wireless Network Adapter
	0027  AR9160 802.11abgn Wireless PCI Adapter
	0029  AR922X Wireless Network Adapter
		1186 3a7a  DWA-552 802.11n Xtreme N Desktop Adapter (rev A2)
	002a  AR928X Wireless Network Adapter (PCI-Express)
	002b  AR9285 Wireless Network Adapter (PCI-Express)
	002c  AR2427 Wireless Network Adapter (PCI-Express)
	002d  AR9287 Wireless Network Adapter
	002e  AR9287 Wireless Network Adapter (PCI-Express)
	0030  AR9300 Wireless LAN adaptor
	0033  11a/b/g/n Wireless LAN Mini-PCI Express Adapter
	0207  AR5210
	1014  AR5212 802.11abg NIC
		1014 058a  ThinkPad 11a/b/g Wireless LAN Mini Express Adapter (AR5BXB6)
	ff19  AR5006X Wireless Network Adapter
	ff1c  AR5008 Wireless Network Adapter
	ff1d  AR5008 Wireless Network Adapter
1695  EPoX Computer Co., Ltd.
169c  Netcell Corporation
	0044  Revolution Storage Processing Card
# The right ID is 196d, but they got it nibble-swapped in 2202.
169d  Club-3D VB (Wrong ID)
	3306  ZAP TV 2202
16a5  Tekram Technology Co.,Ltd.
16ab  Global Sun Technology Inc
	1100  GL24110P
	1101  PLX9052 PCMCIA-to-PCI Wireless LAN
	1102  PCMCIA-to-PCI Wireless Network Bridge
	8501  WL-8305 Wireless LAN PCI Adapter
16ae  SafeNet Inc
	0001  SafeXcel 1140
	000a  SafeXcel 1841
	1141  SafeXcel 1141
	1841  SafeXcel 1842
16af  SparkLAN Communications, Inc.
16b4  Aspex Semiconductor Ltd
16b8  Sonnet Technologies, Inc.
16be  Creatix Polymedia GmbH
16c6  Micrel-Kendin
	8695  Centaur KS8695 ARM processor
	8842  KSZ8842-PMQL 2-Port Ethernet Switch
16c8  Octasic Inc.
16c9  EONIC B.V. The Netherlands
16ca  CENATEK Inc
	0001  Rocket Drive DL
16cd  Densitron Technologies
16ce  Roland Corp.
16d5  Acromag, Inc.
	0504  PMC-DX504 Reconfigurable FPGA with LVDS I/O
	0520  PMC520 Serial Communication, 232 Octal
	0521  PMC521 Serial Communication, 422/485 Octal
	1020  PMC-AX1020 Reconfigurable FPGA with A/D & D/A
	1065  PMC-AX1065 Reconfigurable FPGA with A/D & D/A
	2004  PMC-DX2004 Reconfigurable FPGA with LVDS I/O
	2020  PMC-AX2020 Reconfigurable FPGA with A/D & D/A
	2065  PMC-AX2065 Reconfigurable FPGA with A/D & D/A
	3020  PMC-AX3020 Reconfigurable FPGA with A/D & D/A
	3065  PMC-AX3065 Reconfigurable FPGA with A/D & D/A
	4243  PMC424, APC424, AcPC424 Digital I/O and Counter Timer Module
	4248  PMC464, APC464, AcPC464 Digital I/O and Counter Timer Module
	424b  PMC-DX2002 Reconfigurable FPGA with Differential I/O
	4253  PMC-DX503 Reconfigurable FPGA with TTL and Differential I/O
	4312  PMC-CX1002 Reconfigurable Conduction-Cooled FPGA Virtex-II with Differential I/O
	4313  PMC-CX1003 Reconfigurable Conduction-Cooled FPGA Virtex-II with CMOS and Differential I/O
	4322  PMC-CX2002 Reconfigurable Conduction-Cooled FPGA Virtex-II with Differential I/O
	4323  PMC-CX2003 Reconfigurable Conduction-Cooled FPGA Virtex-II with CMOS and Differential I/O
	4350  PMC-DX501 Reconfigurable Digital I/O Module
	4353  PMC-DX2003 Reconfigurable FPGA with TTL and Differential I/O
	4357  PMC-DX502 Reconfigurable Differential I/O Module
	4457  PMC730, APC730, AcPC730 Multifunction Module
	464d  PMC408 32-Channel Digital Input/Output Module
	4850  PMC220-16 12-Bit Analog Output Module
	4a42  PMC483, APC483, AcPC483 Counter Timer Module
	4a50  PMC484, APC484, AcPC484 Counter Timer Module
	4a56  PMC230 16-Bit Analog Output Module
	4b47  PMC330, APC330, AcPC330 Analog Input Module, 16-bit A/D
	4c40  PMC-LX40 Reconfigurable Virtex-4 FPGA with plug-in I/O
	4c60  PMC-LX60 Reconfigurable Virtex-4 FPGA with plug-in I/O
	4d4d  PMC341, APC341, AcPC341 Analog Input Module, Simultaneous Sample & Hold
	4d4e  PMC482, APC482, AcPC482 Counter Timer Board
	524d  PMC-DX2001 Reconfigurable FPGA with TTL I/O
	5335  PMC-SX35 Reconfigurable Virtex-4 FPGA with plug-in I/O
	5456  PMC470 48-Channel Digital Input/Output Module
	5601  PMC-VLX85 Reconfigurable Virtex-5 FPGA with plug-in I/O
	5602  PMC-VLX110 Reconfigurable Virtex-5 FPGA with plug-in I/O
	5603  PMC-VSX95 Reconfigurable Virtex-5 FPGA with plug-in I/O
	5604  PMC-VLX155 Reconfigurable Virtex-5 FPGA with plug-in I/O
	5605  PMC-VFX70 Reconfigurable Virtex-5 FPGA with plug-in I/O
	5606  PMC-VLX155-1M Reconfigurable Virtex-5 FPGA with plug-in I/O
16da  Advantech Co., Ltd.
	0011  INES GPIB-PCI
16df  PIKA Technologies Inc.
16e2  Geotest-MTS
16e3  European Space Agency
	1e0f  LEON2FT Processor
16e5  Intellon Corp.
	6000  INT6000 Ethernet-to-Powerline Bridge [HomePlug AV]
	6300  INT6300 Ethernet-to-Powerline Bridge [HomePlug AV]
16ec  U.S. Robotics
	00ed  USR997900
	0116  USR997902 10/100/1000 Mbps PCI Network Card
	2f00  USR5660A (USR265660A, USR5660A-BP) 56K PCI Faxmodem
	3685  Wireless Access PCI Adapter Model 022415
	4320  USR997904 10/100/1000 64-bit NIC (Marvell Yukon)
	ab06  USR997901A 10/100 Cardbus NIC
16ed  Sycron N. V.
	1001  UMIO communication card
16f3  Jetway Information Co., Ltd.
16f4  Vweb Corp
	8000  VW2010
16f6  VideoTele.com, Inc.
1702  Internet Machines Corporation (IMC)
1705  Digital First, Inc.
170b  NetOctave
	0100  NSP2000-SSL crypto accelerator
170c  YottaYotta Inc.
1719  EZChip Technologies
# Seems to be a 2nd ID for Vitesse Semiconductor
1725  Vitesse Semiconductor
	7174  VSC7174 PCI/PCI-X Serial ATA Host Bus Controller
172a  Accelerated Encryption
	13c8  AEP SureWare Runner 1000V3
1734  Fujitsu Technology Solutions
	1078  Amilo Pro v2010
	1085  Celsius M450
	1098  Amilo L 1310G
1735  Aten International Co. Ltd.
1737  Linksys
	0013  WMP54G Wireless Pci Card
	0029  WPG54G ver. 4 PCI Card
	1032  Gigabit Network Adapter
		1737 0015  EG1032 v2 Instant Gigabit Network Adapter
		1737 0024  EG1032 v3 Instant Gigabit Network Adapter
	1064  Gigabit Network Adapter
		1737 0016  EG1064 v2 Instant Gigabit Network Adapter
	ab08  21x4x DEC-Tulip compatible 10/100 Ethernet
	ab09  21x4x DEC-Tulip compatible 10/100 Ethernet
173b  Altima (nee Broadcom)
	03e8  AC1000 Gigabit Ethernet
	03e9  AC1001 Gigabit Ethernet
	03ea  AC9100 Gigabit Ethernet
		173b 0001  AC1002
	03eb  AC1003 Gigabit Ethernet
1743  Peppercon AG
	8139  ROL/F-100 Fast Ethernet Adapter with ROL
1745  ViXS Systems, Inc.
	2020  XCode II Series
	2100  XCode 2100 Series
1749  RLX Technologies
174b  PC Partner Limited
174d  WellX Telecom SA
175c  AudioScience Inc
175e  Sanera Systems, Inc.
1760  TEDIA spol. s r. o.
1771  InnoVISION Multimedia Ltd.
# nee SBS Technologies
1775  GE Fanuc Intelligent Platforms
177d  Cavium Networks
	0001  Nitrox XL N1
	0003  Nitrox XL N1 Lite
	0004  Octeon (and older) FIPS
	0005  Octeon CN38XX Network Processor Pass 3.x
	0006  RoHS
	0010  Nitrox XL NPX
	0020  Octeon CN31XX Network Processor
	0030  Octeon CN30XX Network Processor
	0040  Octeon CN58XX Network Processor
	0050  Octeon CN57XX Network Processor (CN54XX/CN55XX/CN56XX)
	0070  Octeon CN50XX Network Processor
	0080  Octeon CN52XX Network Processor
	0090  Octeon II CN63XX Network Processor
1787  Hightech Information System Ltd.
1789  Ennyah Technologies Corp.
# also used by Struck Innovative Systeme for joint developments
1796  Research Centre Juelich
	0001  SIS1100 [Gigabit link]
	0002  HOTlink
	0003  Counter Timer
	0004  CAMAC Controller
	0005  PROFIBUS
	0006  AMCC HOTlink
	000d  Synchronisation Slave
	000e  SIS1100-eCMC
	000f  TDC (GPX)
	0010  PCIe Counter Timer
	0011  SIS1100-e single link
	0012  SIS1100-e quad link
1797  Techwell Inc.
	6801  TW6802 multimedia video card
	6802  TW6802 multimedia other device
1799  Belkin
	6001  Wireless PCI Card - F5D6001
	6020  Wireless PCMCIA Card - F5D6020 v3000 [Realtek RTL8180]
	6060  Wireless PDA Card - F5D6060
	7000  Wireless PCI Card - F5D7000
	700a  Wireless PCI Card - F5D7000UK
	7010  BCM4306 802.11b/g Wireless Lan Controller F5D7010
179a  id Quantique
	0001  Quantis PCI 16Mbps
179c  Data Patterns
	0557  DP-PCI-557 [PCI 1553B]
	0566  DP-PCI-566 [Intelligent PCI 1553B]
	1152  DP-cPCI-1152 (8-channel Isolated ADC Module)
	5031  DP-CPCI-5031-Synchro Module
# cPCI Carrier for Mezzanine Modules
	5112  DP-cPCI-5112 [MM-Carrier]
	5121  DP-CPCI-5121-IP Carrier
	5211  DP-CPCI-5211-IP Carrier
	5679  AGE Display Module
17a0  Genesys Logic, Inc
	7163  GL9701 PCIe to PCI Bridge
	8083  GL880 USB 1.1 UHCI controller
	8084  GL880 USB 2.0 EHCI controller
17aa  Lenovo
	20b1  ThinkPad T61p
17ab  Phillips Components
17af  Hightech Information System Ltd.
17b3  Hawking Technologies
	ab08  PN672TX 10/100 Ethernet
17b4  Indra Networks, Inc.
	0011  WebEnhance 100 GZIP Compression Card
	0012  WebEnhance 200 GZIP Compression Card
	0015  WebEnhance 300 GZIP Compression Card
	0016  StorCompress 300 GZIP Compression Card
	0017  StorSecure 300 GZIP Compression and AES Encryption Card
17c0  Wistron Corp.
17c2  Newisys, Inc.
17cb  Airgo Networks Inc
	0001  AGN100 802.11 a/b/g True MIMO Wireless Card
	0002  AGN300 802.11 a/b/g True MIMO Wireless Card
		1737 0054  WPC54GX4 v1 802.11g Wireless-G Notebook Adapter with SRX400
17cc  NetChip Technology, Inc
	2280  USB 2.0
17cf  Z-Com, Inc.
17d3  Areca Technology Corp.
	1110  ARC-1110 4-Port PCI-X to SATA RAID Controller
	1120  ARC-1120 8-Port PCI-X to SATA RAID Controller
	1130  ARC-1130 12-Port PCI-X to SATA RAID Controller
	1160  ARC-1160 16-Port PCI-X to SATA RAID Controller
	1170  ARC-1170 24-Port PCI-X to SATA RAID Controller
	1201  ARC-1200 2-Port PCI-Express to SATA II RAID Controller
	1210  ARC-1210 4-Port PCI-Express to SATA RAID Controller
	1220  ARC-1220 8-Port PCI-Express to SATA RAID Controller
	1230  ARC-1230 12-Port PCI-Express to SATA RAID Controller
	1260  ARC-1260 16-Port PCI-Express to SATA RAID Controller
	1280  ARC-1231 12-Port PCI-Express to SATA RAID Controller
		17d3 1221  ARC-1221 8-Port PCI-Express to SATA RAID Controller
	1300  ARC-1300ix-16 16-Port PCI-Express to SAS Non-RAID Host Adapter
	1680  ARC-1680 8 port PCIe/PCI-X to SAS/SATA II RAID Controller
# Nee S2io Inc.
17d5  Neterion Inc.
	5731  Xframe 10-Gigabit Ethernet PCI-X
	5732  Xframe II 10-Gigabit Ethernet PCI-X 2.0
	5831  Xframe 10-Gigabit Ethernet PCI-X
		103c 12d5  PCI-X 133MHz 10GbE SR Fiber
		10a9 8020  Single Port 10-Gigabit Ethernet (PCI-X, Fiber)
		10a9 8024  Single Port 10-Gigabit Ethernet (PCI-X, Fiber)
	5832  Xframe II 10-Gigabit Ethernet PCI-X 2.0
		103c 1337  PCI-X 266MHz 10GigE SR [AD385A]
		10a9 8021  Single Port 10-Gigabit Ethernet II (PCI-X, Fiber)
		17d5 6020  Xframe II SR
		17d5 6021  Xframe II SR, Low Profile
		17d5 6022  Xframe E SR
		17d5 6420  Xframe II LR
		17d5 6421  Xframe II LR, Low Profile
		17d5 6422  Xframe E LR
		17d5 6c20  Xframe II CX4
		17d5 6c21  Xframe II CX4, Low Profile
		17d5 6c22  Xframe E CX4
	5833  X3100 Series 10 Gigabit Ethernet PCIe
		17d5 6030  X3110 Single Port SR
		17d5 6031  X3120 Dual Port SR
		17d5 6430  X3110 Single Port LR
		17d5 6431  X3120 Dual Port LR
		17d5 7030  X3110 Single Port LRM
		17d5 7031  X3120 Dual Port LRM
		17d5 7430  X3110 Single Port 10GBase-T
		17d5 7431  X3120 Dual Port 10GBase-T
		17d5 7830  X3110 Single Port 10GBase-CR
		17d5 7831  X3120 Dual Port 10GBase-CR
17db  Cray Inc
	0101  XT Series [Seastar] 3D Toroidal Router
17de  KWorld Computer Co. Ltd.
17e4  Sectra AB
	0001  KK671 Cardbus encryption board
	0002  KK672 Cardbus encryption board
17e6  Entropic Communications Inc.
	0010  EN2010 [c.Link] MoCA Network Controller (Coax, PCI interface)
	0011  EN2010 [c.Link] MoCA Network Controller (Coax, MPEG interface)
	0021  EN2210 [c.Link] MoCA Network Controller (Coax)
	0025  EN2510 [c.Link] MoCA Network Controller (Coax, PCIe interface)
17ee  Connect Components Ltd
17f2  Albatron Corp.
17f3  RDC Semiconductor, Inc.
	1010  R1010 IDE Controller
	6020  R6020 North Bridge
	6021  R6021 Host Bridge
	6030  R6030 ISA Bridge
	6031  R6031 ISA Bridge
	6040  R6040 MAC Controller
	6060  R6060 USB 1.1 Controller
	6061  R6061 USB 2.0 Controller
17f7  Topdek Semiconductor Inc.
17fe  InProComm Inc.
	2120  IPN 2120 802.11b
		1737 0020  WMP11 v4 802.11b Wireless-B PCI Adapter
	2220  IPN 2220 802.11g
		1737 0029  WPC54G v4 802.11g Wireless-G Notebook Adapter
17ff  Benq Corporation
1803  ProdaSafe GmbH
1805  Euresys S.A.
1809  Lumanate, Inc.
1813  Ambient Technologies Inc
	4000  HaM controllerless modem
		16be 0001  V9x HAM Data Fax Modem
	4100  HaM plus Data Fax Modem
		16be 0002  V9x HAM 1394
1814  RaLink
	0101  Wireless PCI Adapter RT2400 / RT2460
		1043 0127  WiFi-b add-on Card
		1462 6828  PC11B2 (MS-6828) Wireless 11b PCI Card
	0200  RT2500 802.11g PCI [PC54G2]
	0201  RT2500 802.11g
		1043 130f  WL-130g
		1371 001e  CWC-854 Wireless-G CardBus Adapter
		1371 001f  CWM-854 Wireless-G Mini PCI Adapter
		1371 0020  CWP-854 Wireless-G PCI Adapter
		1458 e381  GN-WMKG 802.11b/g Wireless CardBus Adapter
		1458 e931  GN-WIKG 802.11b/g mini-PCI Adapter
		1462 6833  Unknown 802.11g mini-PCI Adapter
		1462 6835  Wireless 11G CardBus CB54G2
		1737 0032  WMP54G 2.0 PCI Adapter
		1799 700a  F5D7000 Wireless G Desktop Network Card
		1799 701a  F5D7010 Wireless G Notebook Network Card
		185f 22a0  CN-WF513 Wireless Cardbus Adapter
	0300  Wireless Adapter Canyon CN-WF511
	0301  RT2561/RT61 802.11g PCI
		1186 3c08  AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.E1)
		1186 3c09  DWL-G510 Rev C
		13d1 abe3  miniPCI Pluscom 802.11 a/b/g
		1458 e933  GN-WI01GS
		1458 e934  GN-WP01GS
		1737 0055  WMP54G ver 4.1
		1814 2561  EW-7108PCg
	0302  RT2561/RT61 rev B 802.11g
		1186 3c08  AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.E2)
		1186 3c09  AirPlus G DWL-G510 Wireless Network Adapter (Rev.C)
		1462 b834  PC54G3 Wireless 11g PCI Card
	0401  RT2600 802.11 MIMO
		1737 0052  WPC54GR v1 802.11g Wireless-G Notebook Adapter with RangeBooster
	0601  RT2800 802.11n PCI
	0681  RT2860 Wireless 802.11n PCIe
	0701  RT2760 Wireless 802.11n 1T/2R Cardbus
	0781  RT2860
	3090  RT3090 Wireless 802.11n 1T/1R PCIe
	3091  RT3091 Wireless 802.11n 1T/2R PCIe
	3092  RT3092 Wireless 802.11n 2T/2R PCIe
	e932  RT2560F 802.11 b/g PCI
1815  Devolo AG
1820  InfiniCon Systems Inc.
1822  Twinhan Technology Co. Ltd
	4e35  Mantis DTV PCI Bridge Controller [Ver 1.0]
182d  SiteCom Europe BV
# HFC-based ISDN card
	3069  ISDN PCI DC-105V2
	9790  WL-121 Wireless Network Adapter 100g+ [Ver.3]
182e  Raza Microelectronics, Inc.
	0008  XLR516 Processor
# Strange vendor ID used by BCM5785 when in RAID mode
182f  Broadcom
# HT1000 uses 3 IDs 1166:024a (Native SATA Mode), 1166:024b (PATA/IDE Mode), 182f:000b (RAID Mode) depends on SATA BIOS setting
	000b  BCM5785 [HT1000] SATA (RAID Mode)
1830  Credence Systems Corporation
183b  MikroM GmbH
	08a7  MVC100 DVI
	08a8  MVC101 SDI
	08a9  MVC102 DVI+Audio
	08b0  MVC200-DC
1849  ASRock Incorporation
184a  Thales Computers
	1100  MAX II cPLD
1851  Microtune, Inc.
1852  Anritsu Corp.
1853  SMSC Automotive Infotainment System Group
1854  LG Electronics, Inc.
185b  Compro Technology, Inc.
185f  Wistron NeWeb Corp.
1864  SilverBack
	2110  ISNAP 2110
1867  Topspin Communications
	5a44  MT23108 InfiniHost HCA
	5a45  MT23108 InfiniHost HCA flash recovery
	5a46  MT23108 InfiniHost HCA bridge
	6278  MT25208 InfiniHost III Ex (Tavor compatibility mode)
	6282  MT25208 InfiniHost III Ex
186c  Humusoft, s.r.o.
	0612  AD612 Data Acquisition Device
	0614  MF614 Multifunction I/O Card
	0622  AD622 Data Acquisition Device
	0624  MF624 Multifunction I/O Card
	0625  MF625 3-phase Motor Driver
186f  WiNRADiO Communications
1876  L-3 Communications
	a101  VigraWATCH PCI
	a102  VigraWATCH PMC
	a103  Vigra I/O
187e  ZyXEL Communication Corporation
	3403  ZyAir G-110 802.11g
	340e  M-302 802.11g XtremeMIMO
1885  Avvida Systems Inc.
1888  Varisys Ltd
	0301  VMFX1 FPGA PMC module
	0601  VSM2 dual PMC carrier
	0710  VS14x series PowerPC PCI board
	0720  VS24x series PowerPC PCI board
188a  Ample Communications, Inc
1890  Egenera, Inc.
1894  KNC One
1896  B&B Electronics Manufacturing Company, Inc.
	4202  MIport 3PCIU2 2-port Serial
	4204  MIport 3PCIU4 4-port Serial
	4208  MIport 3PCIU8 8-port Serial
	4211  MIport 3PCIOU1 1-port Isolated Serial
	4212  MIport 3PCIOU2 2-port Isolated Serial
	4214  MIport 3PCIOU4 4-port Isolated Serial
	bb10  3PCI2 2-Port Serial
	bb11  3PCIO1 1-Port Isolated Serial
1897  AMtek
18a1  Astute Networks Inc.
18a3  AT&T
18ac  DViCO Corporation
	d500  FusionHDTV 5
	d800  FusionHDTV 3 Gold
	d810  FusionHDTV 3 Gold-Q
	d820  FusionHDTV 3 Gold-T
	db30  FusionHDTV DVB-T Pro
	db40  FusionHDTV DVB-T Hybrid
	db78  FusionHDTV DVB-T Dual Express
18b8  Ammasso
	b001  AMSO 1100 iWARP/RDMA Gigabit Ethernet Coprocessor
18bc  Info-Tek Corp.
18c3  Micronas Semiconductor Holding AG
# Nee Octigabay System
18c8  Cray Inc
18c9  ARVOO Engineering BV
18ca  XGI Technology Inc. (eXtreme Graphics Innovation)
	0020  Z7/Z9 (XG20 core)
	0021  Z9s/Z9m (XG21 core)
# duh! Device name, not my name :)
	0027  Z11/Z11M
	0040  Volari V3XT/V5/V8
	0047  Volari 8300 (chip: XP10, codename: XG47)
18d2  Sitecom
# Sitecom HFC-S based ISDN controller card DC-105v2
	3069  DC-105v2 ISDN controller
18d8  Dialogue Technology Corp.
18dd  Artimi Inc
	4c6f  Artimi RTMI-100 UWB adapter
18e6  MPL AG
	0001  OSCI [Octal Serial Communication Interface]
18eb  Advance Multimedia Internet Technology, Inc.
18ec  Cesnet, z.s.p.o.
	6d05  ML555
		18ec 0100  NIC (ethernet interfaces)
		18ec 0200  NIC (szedata2) 4x1G
		18ec 0201  NIC (szedata2) 2x10G
		18ec 0300  NIFIC (szedata2) 4x1G
		18ec 0302  NIFIC (szedata2) 2x10G
		18ec 4200  Flexible FlowMon (szedata2) 1x10G
		18ec ff00  Testing design
		18ec ff01  Boot design
	c006  COMBO6
		18ec d001  COMBO-4MTX
		18ec d002  COMBO-4SFP
		18ec d003  COMBO-4SFPRO
		18ec d004  COMBO-2XFP
	c032  COMBO-LXT110
		18ec 0100  NIC (ethernet interfaces)
		18ec 0200  NIC (szedata2) 4x1G
		18ec 0201  NIC (szedata2) 2x10G
		18ec 0300  NIFIC (szedata2) 4x1G
		18ec 0302  NIFIC (szedata2) 2x10G
		18ec 4200  Flexible FlowMon (szedata2) 1x10G
		18ec ff00  Testing design
		18ec ff01  Boot design
	c045  COMBO6E
	c050  COMBO-PTM
	c058  COMBO6X
		18ec d001  COMBO-4MTX
		18ec d002  COMBO-4SFP
		18ec d003  COMBO-4SFPRO
		18ec d004  COMBO-2XFP
	c132  COMBO-LXT155
		18ec 0100  NIC (ethernet interfaces)
		18ec 0200  NIC (szedata2) 4x1G
		18ec 0201  NIC (szedata2) 2x10G
		18ec 0300  NIFIC (szedata2) 4x1G
		18ec 0302  NIFIC (szedata2) 2x10G
		18ec 4200  Flexible FlowMon (szedata2) 1x10G
		18ec ff00  Testing design
		18ec ff01  Boot design
	c232  COMBO-FXT100
		18ec 0100  NIC (ethernet interfaces)
		18ec 0200  NIC (szedata2) 4x1G
		18ec 0201  NIC (szedata2) 2x10G
		18ec 0300  NIFIC (szedata2) 4x1G
		18ec 0302  NIFIC (szedata2) 2x10G
		18ec 4200  Flexible FlowMon (szedata2) 1x10G
		18ec ff00  Testing design
		18ec ff01  Boot design
18ee  Chenming Mold Ind. Corp.
18f1  Spectrum GmbH
18f4  Napatech A/S
	0051  NT20-X Capture Card
	0061  NT20E Capture Card
	0064  NT20E Inline Card
	0071  NT4E Capture Card
	0074  NT4E Inline Card
	0081  NT4E 4-port Expansion Card
	0091  NT20X Capture Card [New Rev]
	00a1  NT4E-STD Capture Card
	00a4  NT4E-STD Inline Card
18f6  NextIO
	1000  [Nexsis] Switch Virtual P2P PCIe Bridge
	1050  [Nexsis] Switch Virtual P2P PCI Bridge
	2000  [Nexsis] Switch Integrated Mgmt. Endpoint
18f7  Commtech, Inc.
	0001  Fastcom ESCC-PCI-335
	0002  Fastcom 422/4-PCI-335
	0003  Fastcom 232/4-1M-PCI
	0004  Fastcom 422/2-PCI-335
	0005  Fastcom IGESCC-PCI-ISO/1
	000a  Fastcom 232/4-PCI-335
	000f  Fastcom FSCC
	0010  Fastcom GSCC
# Dual Serocco
	0011  Fastcom QSSB
	0014  SuperFSCC
	0015  SuperFSCC-104
	0016  Fastcom FSCC-232
	0017  SuperFSCC-104-NOUART
	0018  SuperFSCC/4
	0019  SuperFSCC with soft UARTs
	001a  SuperFSCC-104-LVDS
	001b  FSCC/4
	001c  SuperFSCC/4-LVDS
18fb  Resilience Corporation
1904  Hangzhou Silan Microelectronics Co., Ltd.
	2031  SC92031 PCI Fast Ethernet Adapter
	8139  RTL8139D [Realtek] PCI 10/100BaseTX ethernet adaptor
1905  Micronas USA, Inc.
1912  Renesas Technology Corp.
	0002  SH7780 PCI Controller (PCIC)
1919  Soltek Computer Inc.
1923  Sangoma Technologies Corp.
	0040  A200/Remora FXO/FXS Analog AFT card
	0100  A104d QUAD T1/E1 AFT card
	0300  A101 single-port T1/E1
	0400  A104u Quad T1/E1 AFT
1924  Solarflare Communications
	0703  SFC4000 rev A net [Solarstorm]
		10b8 0102  SMC10GPCIe-10BT (A2) [TigerCard]
		10b8 0103  SMC10GPCIe-10BT (A3) [TigerCard]
		10b8 0201  SMC10GPCIe-XFP (A1) [TigerCard]
		1924 0101  SFE4001-A1
		1924 0102  SFE4001-A2
		1924 0103  SFE4001-A3
		1924 0201  SFE4002-A1
		1924 0301  SFE4003-A1
		1924 0302  SFE4003-A2
		1924 0303  SFE4003-A3
		1924 0304  SFE4003-A4
		1924 0500  SFE4005-A0
	0710  SFC4000 rev B [Solarstorm]
		10b8 0103  SMC10GPCIe-10BT (A3) [TigerCard]
		10b8 0201  SMC10GPCIe-XFP (A1) [TigerCard]
		1924 0102  SFE4001-A2
		1924 0103  SFE4001-A3
		1924 0201  SFE4002-A1
		1924 0302  SFE4003-A2
		1924 0303  SFE4003-A3
		1924 0304  SFE4003-A4
		1924 0500  SFE4005-A0
		1924 5102  SFN4111T-A2
		1924 5103  SFN4111T-R3
		1924 5104  SFN4111T-R4
		1924 5105  SFN4111T-R5
		1924 5201  SFN4112F-R1
		1924 5202  SFN4112F-R2
	0803  SFC9020 [Solarstorm]
		1924 6200  SFN5122F-R0
		1924 6201  SFN5122F-R1
		1924 6202  SFN5122F-R2
		1924 6204  SFN5122F-R4
		1924 6205  SFN5122F-R5
		1924 6206  SFN5122F-R6
		1924 6a05  SFN5112F-R5
		1924 6a06  SFN5112F-R6
	0813  SFL9021 [Solarstorm]
		1924 6100  SFN5121T-R0
		1924 6102  SFN5121T-R2
		1924 6103  SFN5121T-R3
		1924 6104  SFN5121T-R4
		1924 6902  SFN5111T-R2
		1924 6904  SFN5111T-R4
	6703  SFC4000 rev A iSCSI/Onload [Solarstorm]
		10b8 0102  SMC10GPCIe-10BT (A2) [TigerCard]
		10b8 0103  SMC10GPCIe-10BT (A3) [TigerCard]
		10b8 0201  SMC10GPCIe-XFP (A1) [TigerCard]
		1924 0101  SFE4001-A1
		1924 0102  SFE4001-A2
		1924 0103  SFE4001-A3
		1924 0201  SFE4002-A1
		1924 0301  SFE4003-A1
		1924 0302  SFE4003-A2
		1924 0303  SFE4003-A3
		1924 0304  SFE4003-A4
		1924 0500  SFE4005-A0
	c101  EF1-21022T [EtherFabric]
192e  TransDimension
1931  Option N.V.
	000c  Qualcomm MSM6275 UMTS chip
1932  DiBcom
193c  MAXIM Integrated Products
193f  Comtech AHA Corp.
	0001  AHA36x-PCIX
	0360  AHA360-PCIe
	0363  AHA363-PCIe
	0364  AHA364-PCIe
	0367  AHA367-PCIe
1942  ClearSpeed Technology plc
	e511  Advance X620 accelerator card
	e521  Advance e620 accelerator card
1947  C-guys, Inc.
	4743  CG200 Dual SD/SDIO Host controller device
194a  DapTechnology B.V.
	1111  FireSpy3850
	1112  FireSpy450b
	1113  FireSpy450bT
	1114  FireSpy850
	1115  FireSpy850bT
1954  Curtis, Inc.
1957  Freescale Semiconductor Inc
	0012  MPC8548E
	0013  MPC8548
	0014  MPC8543E
	0015  MPC8543
	0018  MPC8547E
	0019  MPC8545E
	001a  MPC8545
	0020  MPC8568E
	0021  MPC8568
	0022  MPC8567E
	0023  MPC8567
	0030  MPC8533E
	0031  MPC8533
	0032  MPC8544E
	0033  MPC8544
	0040  MPC8572E
	0041  MPC8572
	0050  MPC8536E
	0051  MPC8536
	0052  MPC8535E
	0053  MPC8535
	0060  MPC8569
	0061  MPC8569E
	0070  P2020E
	0071  P2020
	0078  P2010E
	0079  P2010
	0080  MPC8349E
	0081  MPC8349
	0082  MPC8347E TBGA
	0083  MPC8347 TBGA
	0084  MPC8347E PBGA
	0085  MPC8347 PBGA
	0086  MPC8343E
	0087  MPC8343
	00b4  MPC8315E
	0100  P1020E
	0101  P1020
	0102  P1021E
	0103  P1021
	0108  P1011E
	0109  P1011
	010a  P1012E
	010b  P1012
	0110  P1022E
	0111  P1022
	0118  P1013E
	0119  P1013
	0400  P4080E
	0401  P4080
	0408  P4040E
	0409  P4040
	7010  MPC8641 PCI Host Bridge
	7011  MPC8641D PCI Host Bridge
	7018  MPC8610
1958  Faster Technology, LLC.
1959  PA Semi, Inc
	a000  PA6T Core
	a001  PWRficient Host Bridge
	a002  PWRficient PCI-Express Port