summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/usb-resource/update-usb-ids.pl
blob: 187c7f5c0e0417639bf3fb348cea8b7eb379c64c (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
#!/usr/bin/perl

use strict;
use MDK::Common;

require '/usr/bin/merge2pcitable.pl';
my $pci = read_pcitable("/usr/share/ldetect-lst/pcitable");
my $usb = read_pcitable("/usr/share/ldetect-lst/usbtable");

print '


struct usb_module_map {
	unsigned short	vendor;     /* vendor */
	unsigned short	id;         /* device */
	const char      *name;      /* human readable name */
	const char      *module;    /* module to load */
};

';

print "struct pci_module_map usb_pci_ids[] = {

";

while (my ($k, $v) = each %$pci) {
    $v->[0] =~ /^usb-|^ehci-hcd|^ohci1394/ or next;
    $k =~ /^(....)(....)/;
    printf qq|\t{ 0x%s, 0x%s, "", "%s" },\n|,
      $1, $2, $v->[0];
}

print "};
int usb_num_ids=sizeof(usb_pci_ids)/sizeof(struct pci_module_map);
";

print "struct usb_module_map usb_usb_ids[] = {
";

my @modules = chomp_(`perl ../../kernel/modules.pl pci_modules4stage1:"network/usb disk/usb"`);

    foreach my $k (sort keys %$usb) {
	my $v = $usb->{$k};
	member($v->[0], @modules) or next;
	$k =~ /^(....)(....)/;
	printf qq|\t{ 0x%s, 0x%s, "%s", "%s" },\n|,
	  $1, $2, $v->[1], $v->[0];
    }

    print "};
int usb_usb_num_ids=sizeof(usb_usb_ids)/sizeof(struct usb_module_map);
";