1 | /*
|
---|
2 | * Copyright (c) 2010-2011 Vojtech Horky
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup lsusb
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /**
|
---|
33 | * @file
|
---|
34 | * Listing of USB host controllers.
|
---|
35 | */
|
---|
36 |
|
---|
37 | #include <inttypes.h>
|
---|
38 | #include <stdio.h>
|
---|
39 | #include <stdlib.h>
|
---|
40 | #include <errno.h>
|
---|
41 | #include <str_error.h>
|
---|
42 | #include <bool.h>
|
---|
43 | #include <getopt.h>
|
---|
44 | #include <devman.h>
|
---|
45 | #include <devmap.h>
|
---|
46 | #include <usb/dev/hub.h>
|
---|
47 | #include <usb/hc.h>
|
---|
48 |
|
---|
49 | #define NAME "lsusb"
|
---|
50 |
|
---|
51 | #define MAX_USB_ADDRESS USB11_ADDRESS_MAX
|
---|
52 | #define MAX_FAILED_ATTEMPTS 10
|
---|
53 | #define MAX_PATH_LENGTH 1024
|
---|
54 |
|
---|
55 | static void print_found_hc(size_t class_index, const char *path)
|
---|
56 | {
|
---|
57 | // printf(NAME ": host controller %zu is `%s'.\n", class_index, path);
|
---|
58 | printf("Bus %02zu: %s\n", class_index, path);
|
---|
59 | }
|
---|
60 | static void print_found_dev(usb_address_t addr, const char *path)
|
---|
61 | {
|
---|
62 | // printf(NAME ": device with address %d is `%s'.\n", addr, path);
|
---|
63 | printf(" Device %02d: %s\n", addr, path);
|
---|
64 | }
|
---|
65 |
|
---|
66 | static void print_hc_devices(devman_handle_t hc_handle)
|
---|
67 | {
|
---|
68 | int rc;
|
---|
69 | usb_hc_connection_t conn;
|
---|
70 |
|
---|
71 | usb_hc_connection_initialize(&conn, hc_handle);
|
---|
72 | rc = usb_hc_connection_open(&conn);
|
---|
73 | if (rc != EOK) {
|
---|
74 | printf(NAME ": failed to connect to HC: %s.\n",
|
---|
75 | str_error(rc));
|
---|
76 | return;
|
---|
77 | }
|
---|
78 | usb_address_t addr;
|
---|
79 | for (addr = 1; addr < MAX_USB_ADDRESS; addr++) {
|
---|
80 | devman_handle_t dev_handle;
|
---|
81 | rc = usb_hc_get_handle_by_address(&conn, addr, &dev_handle);
|
---|
82 | if (rc != EOK) {
|
---|
83 | continue;
|
---|
84 | }
|
---|
85 | char path[MAX_PATH_LENGTH];
|
---|
86 | rc = devman_get_device_path(dev_handle, path, MAX_PATH_LENGTH);
|
---|
87 | if (rc != EOK) {
|
---|
88 | continue;
|
---|
89 | }
|
---|
90 | print_found_dev(addr, path);
|
---|
91 | }
|
---|
92 | usb_hc_connection_close(&conn);
|
---|
93 | }
|
---|
94 |
|
---|
95 | int main(int argc, char *argv[])
|
---|
96 | {
|
---|
97 | size_t class_index = 0;
|
---|
98 | size_t failed_attempts = 0;
|
---|
99 |
|
---|
100 | while (failed_attempts < MAX_FAILED_ATTEMPTS) {
|
---|
101 | class_index++;
|
---|
102 | devman_handle_t hc_handle = 0;
|
---|
103 | int rc = usb_ddf_get_hc_handle_by_class(class_index, &hc_handle);
|
---|
104 | if (rc != EOK) {
|
---|
105 | failed_attempts++;
|
---|
106 | continue;
|
---|
107 | }
|
---|
108 | char path[MAX_PATH_LENGTH];
|
---|
109 | rc = devman_get_device_path(hc_handle, path, MAX_PATH_LENGTH);
|
---|
110 | if (rc != EOK) {
|
---|
111 | continue;
|
---|
112 | }
|
---|
113 | print_found_hc(class_index, path);
|
---|
114 | print_hc_devices(hc_handle);
|
---|
115 | }
|
---|
116 |
|
---|
117 | return 0;
|
---|
118 | }
|
---|
119 |
|
---|
120 |
|
---|
121 | /** @}
|
---|
122 | */
|
---|