source: mainline/uspace/drv/usbhub/usbhub.c@ b2387c2

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b2387c2 was b2387c2, checked in by Matus Dekanek <smekideki@…>, 14 years ago

removed todos

  • Property mode set to 100644
File size: 15.3 KB
Line 
1/*
2 * Copyright (c) 2010 Matus Dekanek
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/** @addtogroup drvusbhub
29 * @{
30 */
31/** @file
32 * @brief usb hub main functionality
33 */
34
35#include <ddf/driver.h>
36#include <bool.h>
37#include <errno.h>
38#include <str_error.h>
39#include <inttypes.h>
40
41#include <usb_iface.h>
42#include <usb/ddfiface.h>
43#include <usb/descriptor.h>
44#include <usb/dev/recognise.h>
45#include <usb/dev/request.h>
46#include <usb/classes/hub.h>
47#include <usb/dev/poll.h>
48#include <stdio.h>
49
50#include "usbhub.h"
51#include "usbhub_private.h"
52#include "port_status.h"
53#include <usb/usb.h>
54#include <usb/dev/pipes.h>
55#include <usb/classes/classes.h>
56
57
58static usb_hub_info_t * usb_hub_info_create(usb_device_t *usb_dev);
59
60static int usb_hub_process_hub_specific_info(usb_hub_info_t *hub_info);
61
62static int usb_hub_set_configuration(usb_hub_info_t *hub_info);
63
64static int usb_hub_start_hub_fibril(usb_hub_info_t *hub_info);
65
66static int usb_process_hub_over_current(usb_hub_info_t *hub_info,
67 usb_hub_status_t status);
68
69static int usb_process_hub_local_power_change(usb_hub_info_t *hub_info,
70 usb_hub_status_t status);
71
72static void usb_hub_process_global_interrupt(usb_hub_info_t *hub_info);
73
74static void usb_hub_polling_terminated_callback(usb_device_t *device,
75 bool was_error, void *data);
76
77
78//*********************************************
79//
80// hub driver code, initialization
81//
82//*********************************************
83
84/**
85 * Initialize hub device driver fibril
86 *
87 * Creates hub representation and fibril that periodically checks hub`s status.
88 * Hub representation is passed to the fibril.
89 * @param usb_dev generic usb device information
90 * @return error code
91 */
92int usb_hub_add_device(usb_device_t *usb_dev) {
93 if (!usb_dev) return EINVAL;
94 usb_hub_info_t *hub_info = usb_hub_info_create(usb_dev);
95 //create hc connection
96 usb_log_debug("Initializing USB wire abstraction.\n");
97 int opResult = usb_hc_connection_initialize_from_device(
98 &hub_info->connection,
99 hub_info->usb_device->ddf_dev);
100 if (opResult != EOK) {
101 usb_log_error("Could not initialize connection to device, "
102 " %s\n",
103 str_error(opResult));
104 free(hub_info);
105 return opResult;
106 }
107
108 //set hub configuration
109 opResult = usb_hub_set_configuration(hub_info);
110 if (opResult != EOK) {
111 usb_log_error("Could not set hub configuration, %s\n",
112 str_error(opResult));
113 free(hub_info);
114 return opResult;
115 }
116 //get port count and create attached_devs
117 opResult = usb_hub_process_hub_specific_info(hub_info);
118 if (opResult != EOK) {
119 usb_log_error("Could process hub specific info, %s\n",
120 str_error(opResult));
121 free(hub_info);
122 return opResult;
123 }
124
125 usb_log_debug("Creating 'hub' function in DDF.\n");
126 ddf_fun_t *hub_fun = ddf_fun_create(hub_info->usb_device->ddf_dev,
127 fun_exposed, "hub");
128 assert(hub_fun != NULL);
129 hub_fun->ops = NULL;
130
131 opResult = ddf_fun_bind(hub_fun);
132 assert(opResult == EOK);
133 opResult = ddf_fun_add_to_class(hub_fun, "hub");
134 assert(opResult == EOK);
135
136 opResult = usb_hub_start_hub_fibril(hub_info);
137 if (opResult != EOK)
138 free(hub_info);
139 return opResult;
140}
141
142/** Callback for polling hub for changes.
143 *
144 * @param dev Device where the change occured.
145 * @param change_bitmap Bitmap of changed ports.
146 * @param change_bitmap_size Size of the bitmap in bytes.
147 * @param arg Custom argument, points to @c usb_hub_info_t.
148 * @return Whether to continue polling.
149 */
150bool hub_port_changes_callback(usb_device_t *dev,
151 uint8_t *change_bitmap, size_t change_bitmap_size, void *arg) {
152 usb_log_debug("hub_port_changes_callback\n");
153 usb_hub_info_t *hub = (usb_hub_info_t *) arg;
154
155 /* FIXME: check that we received enough bytes. */
156 if (change_bitmap_size == 0) {
157 goto leave;
158 }
159
160 bool change;
161 change = ((uint8_t*) change_bitmap)[0] & 1;
162 if (change) {
163 usb_hub_process_global_interrupt(hub);
164 }
165
166 size_t port;
167 for (port = 1; port < hub->port_count + 1; port++) {
168 bool change = (change_bitmap[port / 8] >> (port % 8)) % 2;
169 if (change) {
170 usb_hub_process_interrupt(hub, port);
171 }
172 }
173leave:
174 /* FIXME: proper interval. */
175 async_usleep(1000 * 250);
176
177 return true;
178}
179
180
181//*********************************************
182//
183// support functions
184//
185//*********************************************
186
187/**
188 * create usb_hub_info_t structure
189 *
190 * Does only basic copying of known information into new structure.
191 * @param usb_dev usb device structure
192 * @return basic usb_hub_info_t structure
193 */
194static usb_hub_info_t * usb_hub_info_create(usb_device_t *usb_dev) {
195 usb_hub_info_t * result = malloc(sizeof (usb_hub_info_t));
196 if (!result) return NULL;
197 result->usb_device = usb_dev;
198 result->status_change_pipe = usb_dev->pipes[0].pipe;
199 result->control_pipe = &usb_dev->ctrl_pipe;
200 result->is_default_address_used = false;
201
202 result->ports = NULL;
203 result->port_count = (size_t) - 1;
204 fibril_mutex_initialize(&result->port_mutex);
205
206 fibril_mutex_initialize(&result->pending_ops_mutex);
207 fibril_condvar_initialize(&result->pending_ops_cv);
208 result->pending_ops_count = 0;
209 return result;
210}
211
212/**
213 * Load hub-specific information into hub_info structure and process if needed
214 *
215 * Particularly read port count and initialize structure holding port
216 * information. If there are non-removable devices, start initializing them.
217 * This function is hub-specific and should be run only after the hub is
218 * configured using usb_hub_set_configuration function.
219 * @param hub_info hub representation
220 * @return error code
221 */
222static int usb_hub_process_hub_specific_info(usb_hub_info_t *hub_info) {
223 // get hub descriptor
224 usb_log_debug("Creating serialized descriptor\n");
225 uint8_t serialized_descriptor[USB_HUB_MAX_DESCRIPTOR_SIZE];
226 usb_hub_descriptor_t * descriptor;
227 int opResult;
228
229 size_t received_size;
230 opResult = usb_request_get_descriptor(hub_info->control_pipe,
231 USB_REQUEST_TYPE_CLASS, USB_REQUEST_RECIPIENT_DEVICE,
232 USB_DESCTYPE_HUB, 0, 0, serialized_descriptor,
233 USB_HUB_MAX_DESCRIPTOR_SIZE, &received_size);
234
235 if (opResult != EOK) {
236 usb_log_error("Failed when receiving hub descriptor, "
237 "%s\n",
238 str_error(opResult));
239 free(serialized_descriptor);
240 return opResult;
241 }
242 usb_log_debug2("Deserializing descriptor\n");
243 descriptor = usb_create_deserialized_hub_desriptor(
244 serialized_descriptor);
245 if (descriptor == NULL) {
246 usb_log_warning("could not deserialize descriptor \n");
247 return ENOMEM;
248 }
249 usb_log_debug("setting port count to %d\n", descriptor->ports_count);
250 hub_info->port_count = descriptor->ports_count;
251 bool is_power_switched =
252 ((descriptor->hub_characteristics & 1) == 0);
253 bool has_individual_port_powering =
254 ((descriptor->hub_characteristics & 1) != 0);
255 hub_info->ports = malloc(
256 sizeof (usb_hub_port_t) * (hub_info->port_count + 1));
257 if (!hub_info->ports) {
258 return ENOMEM;
259 }
260 size_t port;
261 for (port = 0; port < hub_info->port_count + 1; ++port) {
262 usb_hub_port_init(&hub_info->ports[port]);
263 }
264 if (is_power_switched) {
265 usb_log_debug("Hub power switched\n");
266
267 if (!has_individual_port_powering) {
268 usb_log_debug("Has_global powering\n");
269 opResult = usb_hub_set_feature(hub_info->control_pipe,
270 USB_HUB_FEATURE_C_HUB_LOCAL_POWER);
271 if (opResult != EOK) {
272 usb_log_error("Cannot power hub: %s\n",
273 str_error(opResult));
274 }
275 }
276
277 for (port = 1; port <= hub_info->port_count; ++port) {
278 usb_log_debug("Powering port %zu.\n", port);
279 opResult = usb_hub_set_port_feature(hub_info->control_pipe,
280 port, USB_HUB_FEATURE_PORT_POWER);
281 if (opResult != EOK) {
282 usb_log_error("cannot power on port %zu: %s.\n",
283 port, str_error(opResult));
284 }
285 }
286
287 } else {
288 usb_log_debug("Power not switched, not going to be powered\n");
289 }
290 usb_log_debug2("Freeing data\n");
291 free(descriptor);
292 return EOK;
293}
294
295/**
296 * Set configuration of hub
297 *
298 * Check whether there is at least one configuration and sets the first one.
299 * This function should be run prior to running any hub-specific action.
300 * @param hub_info hub representation
301 * @return error code
302 */
303static int usb_hub_set_configuration(usb_hub_info_t *hub_info) {
304 //device descriptor
305 usb_standard_device_descriptor_t *std_descriptor
306 = &hub_info->usb_device->descriptors.device;
307 usb_log_debug("Hub has %d configurations\n",
308 std_descriptor->configuration_count);
309 if (std_descriptor->configuration_count < 1) {
310 usb_log_error("There are no configurations available\n");
311 return EINVAL;
312 }
313
314 usb_standard_configuration_descriptor_t *config_descriptor
315 = (usb_standard_configuration_descriptor_t *)
316 hub_info->usb_device->descriptors.configuration;
317
318 /* Set configuration. */
319 int opResult = usb_request_set_configuration(
320 &hub_info->usb_device->ctrl_pipe,
321 config_descriptor->configuration_number);
322
323 if (opResult != EOK) {
324 usb_log_error("Failed to set hub configuration: %s.\n",
325 str_error(opResult));
326 return opResult;
327 }
328 usb_log_debug("\tUsed configuration %d\n",
329 config_descriptor->configuration_number);
330
331 return EOK;
332}
333
334/**
335 * create and start fibril with hub control loop
336 *
337 * Before the fibril is started, the control pipe and host controller
338 * connection of the hub is open.
339 *
340 * @param hub_info hub representing structure
341 * @return error code
342 */
343static int usb_hub_start_hub_fibril(usb_hub_info_t *hub_info) {
344 int rc;
345
346 rc = usb_device_auto_poll(hub_info->usb_device, 0,
347 hub_port_changes_callback, ((hub_info->port_count + 1) / 8) + 1,
348 usb_hub_polling_terminated_callback, hub_info);
349 if (rc != EOK) {
350 usb_log_error("Failed to create polling fibril: %s.\n",
351 str_error(rc));
352 free(hub_info);
353 return rc;
354 }
355
356 usb_log_info("Controlling hub `%s' (%zu ports).\n",
357 hub_info->usb_device->ddf_dev->name, hub_info->port_count);
358 return EOK;
359}
360
361//*********************************************
362//
363// change handling functions
364//
365//*********************************************
366
367/**
368 * process hub over current change
369 *
370 * This means either to power off the hub or power it on.
371 * @param hub_info hub instance
372 * @param status hub status bitmask
373 * @return error code
374 */
375static int usb_process_hub_over_current(usb_hub_info_t *hub_info,
376 usb_hub_status_t status) {
377 int opResult;
378 if (usb_hub_is_status(status, USB_HUB_FEATURE_HUB_OVER_CURRENT)) {
379 //poweroff all ports
380 unsigned int port;
381 for (port = 1; port <= hub_info->port_count; ++port) {
382 opResult = usb_hub_clear_port_feature(
383 hub_info->control_pipe, port,
384 USB_HUB_FEATURE_PORT_POWER);
385 if (opResult != EOK) {
386 usb_log_warning(
387 "Cannot power off port %d; %s\n",
388 port, str_error(opResult));
389 }
390 }
391 } else {
392 //power all ports
393 unsigned int port;
394 for (port = 1; port <= hub_info->port_count; ++port) {
395 opResult = usb_hub_set_port_feature(
396 hub_info->control_pipe, port,
397 USB_HUB_FEATURE_PORT_POWER);
398 if (opResult != EOK) {
399 usb_log_warning(
400 "Cannot power off port %d; %s\n",
401 port, str_error(opResult));
402 }
403 }
404 }
405 return opResult;
406}
407
408/**
409 * process hub local power change
410 *
411 * This change is ignored.
412 * @param hub_info hub instance
413 * @param status hub status bitmask
414 * @return error code
415 */
416static int usb_process_hub_local_power_change(usb_hub_info_t *hub_info,
417 usb_hub_status_t status) {
418 int opResult = EOK;
419 opResult = usb_hub_clear_feature(hub_info->control_pipe,
420 USB_HUB_FEATURE_C_HUB_LOCAL_POWER);
421 if (opResult != EOK) {
422 usb_log_error("Cannnot clear hub power change flag: "
423 "%s\n",
424 str_error(opResult));
425 }
426 return opResult;
427}
428
429/**
430 * process hub interrupts
431 *
432 * The change can be either in the over-current condition or
433 * local-power change.
434 * @param hub_info hub instance
435 */
436static void usb_hub_process_global_interrupt(usb_hub_info_t *hub_info) {
437 usb_log_debug("Global interrupt on a hub\n");
438 usb_pipe_t *pipe = hub_info->control_pipe;
439 int opResult;
440
441 usb_port_status_t status;
442 size_t rcvd_size;
443 usb_device_request_setup_packet_t request;
444 //int opResult;
445 usb_hub_set_hub_status_request(&request);
446 //endpoint 0
447
448 opResult = usb_pipe_control_read(
449 pipe,
450 &request, sizeof (usb_device_request_setup_packet_t),
451 &status, 4, &rcvd_size
452 );
453 if (opResult != EOK) {
454 usb_log_error("Could not get hub status: %s\n",
455 str_error(opResult));
456 return;
457 }
458 if (rcvd_size != sizeof (usb_port_status_t)) {
459 usb_log_error("Received status has incorrect size\n");
460 return;
461 }
462 //port reset
463 if (
464 usb_hub_is_status(status, 16 + USB_HUB_FEATURE_C_HUB_OVER_CURRENT)) {
465 usb_process_hub_over_current(hub_info, status);
466 }
467 if (
468 usb_hub_is_status(status, 16 + USB_HUB_FEATURE_C_HUB_LOCAL_POWER)) {
469 usb_process_hub_local_power_change(hub_info, status);
470 }
471}
472
473/**
474 * callback called from hub polling fibril when the fibril terminates
475 *
476 * Should perform a cleanup - deletes hub_info.
477 * @param device usb device afected
478 * @param was_error indicates that the fibril is stoped due to an error
479 * @param data pointer to usb_hub_info_t structure
480 */
481static void usb_hub_polling_terminated_callback(usb_device_t *device,
482 bool was_error, void *data) {
483 usb_hub_info_t * hub = data;
484 assert(hub);
485
486 fibril_mutex_lock(&hub->pending_ops_mutex);
487
488 /* The device is dead. However there might be some pending operations
489 * that we need to wait for.
490 * One of them is device adding in progress.
491 * The respective fibril is probably waiting for status change
492 * in port reset (port enable) callback.
493 * Such change would never come (otherwise we would not be here).
494 * Thus, we would flush all pending port resets.
495 */
496 if (hub->pending_ops_count > 0) {
497 fibril_mutex_lock(&hub->port_mutex);
498 size_t port;
499 for (port = 0; port < hub->port_count; port++) {
500 usb_hub_port_t *the_port = hub->ports + port;
501 fibril_mutex_lock(&the_port->reset_mutex);
502 the_port->reset_completed = true;
503 the_port->reset_okay = false;
504 fibril_condvar_broadcast(&the_port->reset_cv);
505 fibril_mutex_unlock(&the_port->reset_mutex);
506 }
507 fibril_mutex_unlock(&hub->port_mutex);
508 }
509 /* And now wait for them. */
510 while (hub->pending_ops_count > 0) {
511 fibril_condvar_wait(&hub->pending_ops_cv,
512 &hub->pending_ops_mutex);
513 }
514 fibril_mutex_unlock(&hub->pending_ops_mutex);
515
516 usb_device_destroy(hub->usb_device);
517
518 free(hub->ports);
519 free(hub);
520}
521
522
523
524
525/**
526 * @}
527 */
Note: See TracBrowser for help on using the repository browser.