[bc9a629] | 1 | /*
|
---|
| 2 | * Copyright (c) 2010 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 |
|
---|
[b8100da] | 29 | /** @addtogroup libusbvirt usb
|
---|
[bc9a629] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | * @brief Virtual USB device.
|
---|
| 34 | */
|
---|
[b8100da] | 35 | #ifndef LIBUSBVIRT_DEVICE_H_
|
---|
| 36 | #define LIBUSBVIRT_DEVICE_H_
|
---|
[bc9a629] | 37 |
|
---|
[b8100da] | 38 | #include <usb/hcd.h>
|
---|
[2193471] | 39 | #include <usb/descriptor.h>
|
---|
[b8100da] | 40 | #include <usb/devreq.h>
|
---|
[bc9a629] | 41 |
|
---|
[b8100da] | 42 | struct usbvirt_device;
|
---|
[bc9a629] | 43 |
|
---|
[d97d209] | 44 | typedef int (*usbvirt_on_device_request_t)(struct usbvirt_device *dev,
|
---|
| 45 | usb_device_request_setup_packet_t *request,
|
---|
| 46 | uint8_t *data);
|
---|
[bc9a629] | 47 |
|
---|
[73301a0] | 48 | /** Callbacks for standard device requests.
|
---|
| 49 | * When these functions are NULL or return EFORWARD, this
|
---|
| 50 | * framework will try to satisfy the request by itself.
|
---|
| 51 | */
|
---|
| 52 | typedef struct {
|
---|
| 53 | usbvirt_on_device_request_t on_get_status;
|
---|
| 54 | usbvirt_on_device_request_t on_clear_feature;
|
---|
| 55 | usbvirt_on_device_request_t on_set_feature;
|
---|
| 56 | usbvirt_on_device_request_t on_set_address;
|
---|
| 57 | usbvirt_on_device_request_t on_get_descriptor;
|
---|
| 58 | usbvirt_on_device_request_t on_set_descriptor;
|
---|
| 59 | usbvirt_on_device_request_t on_get_configuration;
|
---|
| 60 | usbvirt_on_device_request_t on_set_configuration;
|
---|
| 61 | usbvirt_on_device_request_t on_get_interface;
|
---|
| 62 | usbvirt_on_device_request_t on_set_interface;
|
---|
| 63 | usbvirt_on_device_request_t on_synch_frame;
|
---|
| 64 | } usbvirt_standard_device_request_ops_t;
|
---|
| 65 |
|
---|
[2c381250] | 66 | /** Device operations. */
|
---|
[b8100da] | 67 | typedef struct {
|
---|
[73301a0] | 68 | /** Callbacks for standard deivce requests. */
|
---|
| 69 | usbvirt_standard_device_request_ops_t *standard_request_ops;
|
---|
[2c381250] | 70 | /** Callback for class-specific USB request. */
|
---|
[73301a0] | 71 | usbvirt_on_device_request_t on_class_device_request;
|
---|
[2c381250] | 72 | /** Callback for all other incoming data. */
|
---|
[b8100da] | 73 | int (*on_data)(struct usbvirt_device *dev,
|
---|
| 74 | usb_endpoint_t endpoint, void *buffer, size_t size);
|
---|
| 75 | } usbvirt_device_ops_t;
|
---|
[bc9a629] | 76 |
|
---|
[2c381250] | 77 | /** Extra configuration data for GET_CONFIGURATION request. */
|
---|
| 78 | typedef struct {
|
---|
| 79 | /** Actual data. */
|
---|
| 80 | uint8_t *data;
|
---|
| 81 | /** Data length. */
|
---|
| 82 | size_t length;
|
---|
| 83 | } usbvirt_device_configuration_extras_t;
|
---|
| 84 |
|
---|
| 85 | /** Single device configuration. */
|
---|
| 86 | typedef struct {
|
---|
| 87 | /** Standard configuration descriptor. */
|
---|
| 88 | usb_standard_configuration_descriptor_t *descriptor;
|
---|
| 89 | /** Array of extra data. */
|
---|
| 90 | usbvirt_device_configuration_extras_t *extra;
|
---|
| 91 | /** Length of @c extra array. */
|
---|
| 92 | size_t extra_count;
|
---|
| 93 | } usbvirt_device_configuration_t;
|
---|
| 94 |
|
---|
| 95 | /** Standard USB descriptors. */
|
---|
| 96 | typedef struct {
|
---|
| 97 | /** Standard device descriptor.
|
---|
| 98 | * There is always only one such descriptor for the device.
|
---|
| 99 | */
|
---|
| 100 | usb_standard_device_descriptor_t *device;
|
---|
| 101 |
|
---|
| 102 | /** Configurations. */
|
---|
| 103 | usbvirt_device_configuration_t *configuration;
|
---|
| 104 | /** Number of configurations. */
|
---|
| 105 | size_t configuration_count;
|
---|
[08af5a6] | 106 | /** Index of currently selected configuration. */
|
---|
| 107 | uint8_t current_configuration;
|
---|
[2c381250] | 108 | } usbvirt_descriptors_t;
|
---|
| 109 |
|
---|
[47e3a8e] | 110 | /** Possible states of virtual USB device.
|
---|
| 111 | * Notice that these are not 1:1 mappings to those in USB specification.
|
---|
| 112 | */
|
---|
| 113 | typedef enum {
|
---|
| 114 | USBVIRT_STATE_DEFAULT,
|
---|
| 115 | USBVIRT_STATE_ADDRESS,
|
---|
| 116 | USBVIRT_STATE_CONFIGURED
|
---|
| 117 | } usbvirt_device_state_t;
|
---|
[2c381250] | 118 |
|
---|
[47e3a8e] | 119 | /** Virtual USB device. */
|
---|
[b8100da] | 120 | typedef struct usbvirt_device {
|
---|
| 121 | /** Callback device operations. */
|
---|
| 122 | usbvirt_device_ops_t *ops;
|
---|
| 123 |
|
---|
| 124 | /** Send data to HC.
|
---|
| 125 | * @warning Do not change after initializing with
|
---|
| 126 | * usbvirt_device_init().
|
---|
| 127 | * This function is here merely to make the interface more OOP.
|
---|
| 128 | */
|
---|
| 129 | int (*send_data)(struct usbvirt_device *dev,
|
---|
| 130 | usb_endpoint_t endpoint, void *buffer, size_t size);
|
---|
| 131 |
|
---|
[4971812] | 132 | /* Device attributes. */
|
---|
| 133 |
|
---|
[2c381250] | 134 | /** Standard descriptors. */
|
---|
| 135 | usbvirt_descriptors_t *descriptors;
|
---|
[4971812] | 136 |
|
---|
[47e3a8e] | 137 | /** Current device state. */
|
---|
| 138 | usbvirt_device_state_t state;
|
---|
| 139 | /** Device address. */
|
---|
| 140 | usb_address_t address;
|
---|
[4971812] | 141 |
|
---|
| 142 | /* Private attributes. */
|
---|
| 143 |
|
---|
[b8100da] | 144 | /** Phone to HC.
|
---|
| 145 | * @warning Do not change, this is private variable.
|
---|
| 146 | */
|
---|
| 147 | int vhcd_phone_;
|
---|
| 148 |
|
---|
| 149 | /** Device id.
|
---|
| 150 | * This item will be removed when device enumeration and
|
---|
| 151 | * recognition is implemented.
|
---|
| 152 | */
|
---|
| 153 | int device_id_;
|
---|
[186d630] | 154 |
|
---|
| 155 | /** Main routine called when data is received from HC.
|
---|
| 156 | * @warning Do not change after initializing with
|
---|
| 157 | * usbvirt_device_init().
|
---|
| 158 | * This function is here merely to make the interface more OOP.
|
---|
| 159 | */
|
---|
| 160 | int (*receive_data)(struct usbvirt_device *dev,
|
---|
| 161 | usb_endpoint_t endpoint, void *buffer, size_t size);
|
---|
| 162 |
|
---|
[b8100da] | 163 | } usbvirt_device_t;
|
---|
[bc9a629] | 164 |
|
---|
| 165 | #endif
|
---|
| 166 | /**
|
---|
| 167 | * @}
|
---|
| 168 | */
|
---|