blob: c6a443c113674495be9d28ff247e01df7dbca674 [file] [log] [blame]
Mike Lockwood30ff2c72010-05-09 16:23:47 -04001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef __USB_HOST_H
18#define __USB_HOST_H
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#include <stdint.h>
25
Mike Lockwood7a96ba42010-07-01 11:33:41 -040026struct usb_host_context;
Mike Lockwood30ff2c72010-05-09 16:23:47 -040027struct usb_endpoint_descriptor;
28
29struct usb_descriptor_iter {
30 unsigned char* config;
31 unsigned char* config_end;
32 unsigned char* curr_desc;
33};
34
Mike Lockwood7a96ba42010-07-01 11:33:41 -040035/* Callback for notification when new USB devices are attached.
36 * Return true to exit from usb_host_run.
37 */
38typedef int (* usb_device_added_cb)(const char *dev_name, void *client_data);
Mike Lockwood30ff2c72010-05-09 16:23:47 -040039
Mike Lockwood7a96ba42010-07-01 11:33:41 -040040/* Callback for notification when USB devices are removed.
41 * Return true to exit from usb_host_run.
42 */
43typedef int (* usb_device_removed_cb)(const char *dev_name, void *client_data);
Mike Lockwood30ff2c72010-05-09 16:23:47 -040044
Mike Lockwood7a96ba42010-07-01 11:33:41 -040045/* Call this to initialize the USB host library. */
46struct usb_host_context *usb_host_init(void);
47
48/* Call this to cleanup the USB host library. */
49void usb_host_cleanup(struct usb_host_context *context);
50
51/* Call this to monitor the USB bus for new and removed devices.
52 * This is intended to be called from a dedicated thread,
53 * as it will not return until one of the callbacks returns true.
Mike Lockwood30ff2c72010-05-09 16:23:47 -040054 * added_cb will be called immediately for each existing USB device,
55 * and subsequently each time a new device is added.
56 * removed_cb is called when USB devices are removed from the bus.
57 */
Mike Lockwood7a96ba42010-07-01 11:33:41 -040058void usb_host_run(struct usb_host_context *context,
59 usb_device_added_cb added_cb,
Mike Lockwood6ac3aa12010-05-25 08:10:02 -040060 usb_device_removed_cb removed_cb,
61 void *client_data);
Mike Lockwood30ff2c72010-05-09 16:23:47 -040062
63/* Creates a usb_device object for a USB device */
64struct usb_device *usb_device_open(const char *dev_name);
65
66/* Releases all resources associated with the USB device */
67void usb_device_close(struct usb_device *device);
68
69/* Returns the name for the USB device, which is the same as
70 * the dev_name passed to usb_device_open()
71 */
72const char* usb_device_get_name(struct usb_device *device);
73
Mike Lockwood203f1022010-05-27 10:12:03 -040074/* Returns a unique ID for the device. Currently this is generated from the
75 * dev_name path.
76 */
77int usb_device_get_unique_id(struct usb_device *device);
78
Mike Lockwood30ff2c72010-05-09 16:23:47 -040079/* Returns the USB vendor ID from the device descriptor for the USB device */
80uint16_t usb_device_get_vendor_id(struct usb_device *device);
81
82/* Returns the USB product ID from the device descriptor for the USB device */
83uint16_t usb_device_get_product_id(struct usb_device *device);
84
85/* Returns a USB descriptor string for the given string ID.
86 * Used to implement usb_device_get_manufacturer_name,
87 * usb_device_get_product_name and usb_device_get_serial.
88 * Call free() to free the result when you are done with it.
89 */
90char* usb_device_get_string(struct usb_device *device, int id);
91
92/* Returns the manufacturer name for the USB device.
93 * Call free() to free the result when you are done with it.
94 */
95char* usb_device_get_manufacturer_name(struct usb_device *device);
96
97/* Returns the product name for the USB device.
98 * Call free() to free the result when you are done with it.
99 */
100char* usb_device_get_product_name(struct usb_device *device);
101
102/* Returns the USB serial number for the USB device.
103 * Call free() to free the result when you are done with it.
104 */
105char* usb_device_get_serial(struct usb_device *device);
106
107/* Returns true if we have write access to the USB device,
108 * and false if we only have access to the USB device configuration.
109 */
110int usb_device_is_writeable(struct usb_device *device);
111
112/* Initializes a usb_descriptor_iter, which can be used to iterate through all
113 * the USB descriptors for a USB device.
114 */
115void usb_descriptor_iter_init(struct usb_device *device, struct usb_descriptor_iter *iter);
116
117/* Returns the next USB descriptor for a device, or NULL if we have reached the
118 * end of the list.
119 */
120struct usb_descriptor_header *usb_descriptor_iter_next(struct usb_descriptor_iter *iter);
121
122/* Claims the specified interface of a USB device */
123int usb_device_claim_interface(struct usb_device *device, unsigned int interface);
124
125/* Releases the specified interface of a USB device */
126int usb_device_release_interface(struct usb_device *device, unsigned int interface);
127
128
129/* Creates a new usb_endpoint for the specified endpoint of a USB device.
130 * This can be used to read or write data across the endpoint.
131 */
132struct usb_endpoint *usb_endpoint_open(struct usb_device *dev,
133 const struct usb_endpoint_descriptor *desc);
134
135/* Releases all resources associated with the endpoint */
136void usb_endpoint_close(struct usb_endpoint *ep);
137
138/* Begins a read or write operation on the specified endpoint */
139int usb_endpoint_queue(struct usb_endpoint *ep, void *data, int len);
140
141 /* Waits for the results of a previous usb_endpoint_queue operation on the
142 * specified endpoint. Returns number of bytes transferred, or a negative
143 * value for error.
144 */
145int usb_endpoint_wait(struct usb_device *device, int *out_ep_num);
146
147/* Cancels a pending usb_endpoint_queue() operation on an endpoint. */
148int usb_endpoint_cancel(struct usb_endpoint *ep);
149
Mike Lockwood5e567cb2010-05-12 08:53:49 -0400150/* Returns the usb_device for the given endpoint */
151struct usb_device *usb_endpoint_get_device(struct usb_endpoint *ep);
152
Mike Lockwood30ff2c72010-05-09 16:23:47 -0400153/* Returns the endpoint address for the given endpoint */
154int usb_endpoint_number(struct usb_endpoint *ep);
155
156/* Returns the maximum packet size for the given endpoint.
157 * For bulk endpoints this should be 512 for highspeed or 64 for fullspeed.
158 */
159int usb_endpoint_max_packet(struct usb_endpoint *ep);
160
161#ifdef __cplusplus
162}
163#endif
164#endif /* __USB_HOST_H */