summaryrefslogtreecommitdiffstats
path: root/MDV/Lspciusb.pm
blob: f3a32278d43e9c8a50c3200514e0106964f406de (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
package MDV::Lspciusb;
#*****************************************************************************
#
#  Copyright (c) 2006-2007 Mandriva SA
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License version 2, as
#  published by the Free Software Foundation.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#*****************************************************************************
#
# $Id: Lspciusb.pm 44676 2007-02-26 16:56:43Z tv $

use lib qw(/usr/lib/libDrakX);
use modalias;
use MDK::Common;
use detect_devices;

my %bus_get_description = (
    usb => sub {
        my ($dev_path, $_values) = @_;
        my $full_path = dirname($dev_path) . "/" . readlink($dev_path);
        my $parent_path = dirname($full_path);
        chomp_(cat_("$parent_path/product"));
    },
);

sub list {
    my (@bus) = @_;
    @bus = qw(usb) if !@bus;
    map {
        my ($modalias_path, $desc);
        if (ref $_) {
            my $device = $_;
            $modalias_path = sprintf('/sys/bus/pci/devices/%04x:%02x:%02x.%x/modalias', $device->{pci_domain}, $device->{pci_bus}, $device->{pci_device}, $device->{pci_function});
            $desc = $device->{description};
        } else {
            $modalias_path = $_;
        }
        my $modalias = chomp_(cat_($modalias_path));
        my $dev_path = dirname($modalias_path);
        my ($bus, $values) = $modalias =~ /^([^:]+):(\S+)$/; # modalias::get_bus
        my @modules = modalias::get_modules($modalias);
        my $module = first(@modules) || "unknown";
        my $modules = @modules > 1 ? " (" . join(",", @modules) . ")" : "";
        if (my $get_desc = $bus_get_description{$bus} and !$desc) {
            $desc = $get_desc->($dev_path, $values);
        }
        $desc ||= "unknown";
        { module => $module, descr => $desc, modules => $modules };
    } detect_devices::pci_probe(), map { glob("/sys/bus/$_/devices/*/modalias") } @bus;
}

1;