| 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 | /** Host controller device manager.
|
|---|
| 52 | * You shall not access members directly.
|
|---|
| 53 | */
|
|---|
| 54 | typedef struct {
|
|---|
| 55 | /** Information about attached USB devices. */
|
|---|
| 56 | struct {
|
|---|
| 57 | usb_speed_t speed; /**< Device speed */
|
|---|
| 58 | bool occupied; /**< The address is in use. */
|
|---|
| 59 | devman_handle_t handle; /**< Devman handle of the device. */
|
|---|
| 60 | } devices[USB_ADDRESS_COUNT];
|
|---|
| 61 | /** Maximum speed allowed. */
|
|---|
| 62 | usb_speed_t max_speed;
|
|---|
| 63 | /** Protect access to members. */
|
|---|
| 64 | fibril_mutex_t guard;
|
|---|
| 65 | /** The last reserved address */
|
|---|
| 66 | usb_address_t last_address;
|
|---|
| 67 | } usb_device_manager_t;
|
|---|
| 68 |
|
|---|
| 69 | void usb_device_manager_init(
|
|---|
| 70 | usb_device_manager_t *instance, usb_speed_t max_speed);
|
|---|
| 71 |
|
|---|
| 72 | int usb_device_manager_request_address(usb_device_manager_t *instance,
|
|---|
| 73 | usb_address_t *address, bool strict, usb_speed_t speed);
|
|---|
| 74 |
|
|---|
| 75 | int usb_device_manager_bind_address(usb_device_manager_t *instance,
|
|---|
| 76 | usb_address_t address, devman_handle_t handle);
|
|---|
| 77 |
|
|---|
| 78 | int usb_device_manager_release_address(usb_device_manager_t *instance,
|
|---|
| 79 | usb_address_t address);
|
|---|
| 80 |
|
|---|
| 81 | usb_address_t usb_device_manager_find_address(usb_device_manager_t *instance,
|
|---|
| 82 | devman_handle_t handle);
|
|---|
| 83 |
|
|---|
| 84 | int usb_device_manager_get_info_by_address(usb_device_manager_t *instance,
|
|---|
| 85 | usb_address_t address, devman_handle_t *handle, usb_speed_t *speed);
|
|---|
| 86 | #endif
|
|---|
| 87 | /**
|
|---|
| 88 | * @}
|
|---|
| 89 | */
|
|---|