1 | /*
|
---|
2 | * Copyright (c) 2011 Jan Vesely
|
---|
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 libusbhost
|
---|
29 | * @{
|
---|
30 | */
|
---|
31 | /** @file
|
---|
32 | * Device manager structure and functions.
|
---|
33 | *
|
---|
34 | * Typical USB host controller needs to keep track of various settings for
|
---|
35 | * each device that is connected to it.
|
---|
36 | * State of toggle bit, device speed etc. etc.
|
---|
37 | * This structure shall simplify the management.
|
---|
38 | */
|
---|
39 | #ifndef LIBUSBHOST_HOST_USB_DEVICE_MANAGER_H
|
---|
40 | #define LIBUSBHOST_HOST_USB_DEVICE_MANAGER_H
|
---|
41 |
|
---|
42 | #include <adt/list.h>
|
---|
43 | #include <devman.h>
|
---|
44 | #include <fibril_synch.h>
|
---|
45 | #include <usb/usb.h>
|
---|
46 | #include <usb/host/endpoint.h>
|
---|
47 |
|
---|
48 | /** Number of USB address for array dimensions. */
|
---|
49 | #define USB_ADDRESS_COUNT (USB11_ADDRESS_MAX + 1)
|
---|
50 |
|
---|
51 | /** Information about attached USB device. */
|
---|
52 | struct usb_device_info {
|
---|
53 | usb_speed_t speed;
|
---|
54 | bool occupied;
|
---|
55 | devman_handle_t handle;
|
---|
56 | };
|
---|
57 |
|
---|
58 | /** Host controller device manager.
|
---|
59 | * You shall not access members directly but only using functions below.
|
---|
60 | */
|
---|
61 | typedef struct {
|
---|
62 | struct usb_device_info devices[USB_ADDRESS_COUNT];
|
---|
63 | fibril_mutex_t guard;
|
---|
64 | usb_address_t last_address;
|
---|
65 | } usb_device_manager_t;
|
---|
66 |
|
---|
67 | void usb_device_manager_init(usb_device_manager_t *instance);
|
---|
68 |
|
---|
69 | usb_address_t usb_device_manager_get_free_address(
|
---|
70 | usb_device_manager_t *instance, usb_speed_t speed);
|
---|
71 |
|
---|
72 | void usb_device_manager_bind(usb_device_manager_t *instance,
|
---|
73 | usb_address_t address, devman_handle_t handle);
|
---|
74 |
|
---|
75 | void usb_device_manager_release(usb_device_manager_t *instance,
|
---|
76 | usb_address_t address);
|
---|
77 |
|
---|
78 | usb_address_t usb_device_manager_find(usb_device_manager_t *instance,
|
---|
79 | devman_handle_t handle);
|
---|
80 |
|
---|
81 | bool usb_device_manager_find_by_address(usb_device_manager_t *instance,
|
---|
82 | usb_address_t address, devman_handle_t *handle);
|
---|
83 |
|
---|
84 | usb_speed_t usb_device_manager_get_speed(usb_device_manager_t *instance,
|
---|
85 | usb_address_t address);
|
---|
86 | #endif
|
---|
87 | /**
|
---|
88 | * @}
|
---|
89 | */
|
---|