source: mainline/uspace/app/usbinfo/info.c@ eb48f61

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since eb48f61 was 0f21c0c, checked in by Vojtech Horky <vojtechhorky@…>, 15 years ago

Removal of API that use phones directly

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[c377bc50]1/*
2 * Copyright (c) 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
[632ed68]29/** @addtogroup usbinfo
[c377bc50]30 * @{
31 */
32/**
33 * @file
[632ed68]34 * Dumping of generic device properties.
[c377bc50]35 */
36#include <stdio.h>
37#include <str_error.h>
38#include <errno.h>
[a12917e]39#include <usb/pipes.h>
[4e8e1f5]40#include <usb/recognise.h>
[a12917e]41#include <usb/request.h>
[c377bc50]42#include "usbinfo.h"
43
[a12917e]44int dump_device(devman_handle_t hc_handle, usb_address_t address)
[c377bc50]45{
[a12917e]46 int rc;
47 usb_device_connection_t wire;
48 usb_endpoint_pipe_t ctrl_pipe;
[c377bc50]49
[a12917e]50 /*
51 * Initialize pipes.
52 */
53 rc = usb_device_connection_initialize(&wire, hc_handle, address);
54 if (rc != EOK) {
55 fprintf(stderr,
56 NAME ": failed to create connection to the device: %s.\n",
57 str_error(rc));
58 goto leave;
59 }
60 rc = usb_endpoint_pipe_initialize_default_control(&ctrl_pipe, &wire);
61 if (rc != EOK) {
62 fprintf(stderr,
63 NAME ": failed to create default control pipe: %s.\n",
64 str_error(rc));
65 goto leave;
66 }
67 rc = usb_endpoint_pipe_start_session(&ctrl_pipe);
68 if (rc != EOK) {
69 fprintf(stderr,
70 NAME ": failed to start session on control pipe: %s.\n",
71 str_error(rc));
72 goto leave;
73 }
74
[4e8e1f5]75 /*
76 * Dump information about possible match ids.
77 */
78 match_id_list_t match_id_list;
79 init_match_ids(&match_id_list);
80 rc = usb_device_create_match_ids(&ctrl_pipe, &match_id_list);
81 if (rc != EOK) {
82 fprintf(stderr,
83 NAME ": failed to fetch match ids of the device: %s.\n",
84 str_error(rc));
85 goto leave;
86 }
87 dump_match_ids(&match_id_list);
88
[c377bc50]89 /*
90 * Get device descriptor and dump it.
91 */
92 usb_standard_device_descriptor_t device_descriptor;
[a12917e]93 rc = usb_request_get_device_descriptor(&ctrl_pipe, &device_descriptor);
[c377bc50]94 if (rc != EOK) {
95 fprintf(stderr,
96 NAME ": failed to fetch standard device descriptor: %s.\n",
97 str_error(rc));
[a12917e]98 goto leave;
[c377bc50]99 }
[5f635ca]100 dump_usb_descriptor((uint8_t *)&device_descriptor, sizeof(device_descriptor));
[c377bc50]101
102 /*
103 * Get first configuration descriptor and dump it.
104 */
105 usb_standard_configuration_descriptor_t config_descriptor;
106 int config_index = 0;
[a12917e]107 rc = usb_request_get_bare_configuration_descriptor(&ctrl_pipe,
108 config_index, &config_descriptor);
[c377bc50]109 if (rc != EOK) {
110 fprintf(stderr,
111 NAME ": failed to fetch standard configuration descriptor: %s.\n",
112 str_error(rc));
[a12917e]113 goto leave;
[c377bc50]114 }
[5f635ca]115 //dump_standard_configuration_descriptor(config_index, &config_descriptor);
[c377bc50]116
117 void *full_config_descriptor = malloc(config_descriptor.total_length);
[a12917e]118 rc = usb_request_get_full_configuration_descriptor(&ctrl_pipe,
[c377bc50]119 config_index,
120 full_config_descriptor, config_descriptor.total_length, NULL);
121 if (rc != EOK) {
122 fprintf(stderr,
123 NAME ": failed to fetch full configuration descriptor: %s.\n",
124 str_error(rc));
[a12917e]125 goto leave;
[c377bc50]126 }
127
[5ccb15c]128 dump_descriptor_tree(full_config_descriptor,
129 config_descriptor.total_length);
130
[a12917e]131 rc = EOK;
132leave:
133 /* Ignoring errors here. */
134 usb_endpoint_pipe_end_session(&ctrl_pipe);
135
136 return rc;
[c377bc50]137}
138
139/** @}
140 */
Note: See TracBrowser for help on using the repository browser.