aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb_device.h
blob: 647757111c160157b1dbd8ba77df196c20a5994d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* $FreeBSD$ */
/*-
 * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#ifndef _USB2_DEVICE_H_
#define	_USB2_DEVICE_H_

struct usb2_symlink;		/* UGEN */
struct usb_device;		/* linux compat */

#define	USB_DEFAULT_XFER_MAX 2

/* "usb2_parse_config()" commands */

#define	USB_CFG_ALLOC 0
#define	USB_CFG_FREE 1
#define	USB_CFG_INIT 2

/* "usb2_unconfigure()" flags */

#define	USB_UNCFG_FLAG_NONE 0x00
#define	USB_UNCFG_FLAG_FREE_SUBDEV 0x01		/* subdevices are freed */
#define	USB_UNCFG_FLAG_FREE_EP0	0x02		/* endpoint zero is freed */

struct usb2_clear_stall_msg {
	struct usb2_proc_msg hdr;
	struct usb2_device *udev;
};

/*
 * The following structure defines an USB pipe which is equal to an
 * USB endpoint.
 */
struct usb2_pipe {
	struct usb2_xfer_queue pipe_q;	/* queue of USB transfers */

	struct usb2_endpoint_descriptor *edesc;
	struct usb2_pipe_methods *methods;	/* set by HC driver */

	uint16_t isoc_next;
	uint16_t refcount;

	uint8_t	toggle_next:1;		/* next data toggle value */
	uint8_t	is_stalled:1;		/* set if pipe is stalled */
	uint8_t	is_synced:1;		/* set if we a synchronised */
	uint8_t	unused:5;
	uint8_t	iface_index;		/* not used by "default pipe" */
};

/*
 * The following structure defines an USB interface.
 */
struct usb2_interface {
	struct usb2_interface_descriptor *idesc;
	device_t subdev;
	uint8_t	alt_index;
	uint8_t	parent_iface_index;
};

/*
 * The following structure defines the USB device flags.
 */
struct usb2_device_flags {
	enum usb_hc_mode usb_mode;	/* host or device mode */
	uint8_t	self_powered:1;		/* set if USB device is self powered */
	uint8_t	no_strings:1;		/* set if USB device does not support
					 * strings */
	uint8_t	remote_wakeup:1;	/* set if remote wakeup is enabled */
	uint8_t	uq_bus_powered:1;	/* set if BUS powered quirk is present */

	/*
	 * NOTE: Although the flags below will reach the same value
	 * over time, but the instant values may differ, and
	 * consequently the flags cannot be merged into one!
	 */
	uint8_t peer_suspended:1;	/* set if peer is suspended */
	uint8_t self_suspended:1;	/* set if self is suspended */
};

/*
 * The following structure is used for power-save purposes. The data
 * in this structure is protected by the USB BUS lock.
 */
struct usb2_power_save {
	usb2_ticks_t last_xfer_time;	/* copy of "ticks" */
	usb2_size_t type_refs[4];	/* transfer reference count */
	usb2_size_t read_refs;		/* data read references */
	usb2_size_t write_refs;		/* data write references */
};

/*
 * The following structure defines an USB device. There exists one of
 * these structures for every USB device.
 */
struct usb2_device {
	struct usb2_clear_stall_msg cs_msg[2];	/* generic clear stall
						 * messages */
	struct sx default_sx[2];
	struct mtx default_mtx[1];
	struct cv default_cv[2];
	struct usb2_interface *ifaces;
	struct usb2_pipe default_pipe;	/* Control Endpoint 0 */
	struct usb2_pipe *pipes;
	struct usb2_power_save pwr_save;/* power save data */
	struct usb2_bus *bus;		/* our USB BUS */
	device_t parent_dev;		/* parent device */
	struct usb2_device *parent_hub;
	struct usb2_device *parent_hs_hub;	/* high-speed parent HUB */
	struct usb2_config_descriptor *cdesc;	/* full config descr */
	struct usb2_hub *hub;		/* only if this is a hub */
#if USB_HAVE_COMPAT_LINUX
	struct usb_device *linux_dev;
#endif
	struct usb2_xfer *default_xfer[USB_DEFAULT_XFER_MAX];
	struct usb2_temp_data *usb2_template_ptr;
	struct usb2_pipe *pipe_curr;	/* current clear stall pipe */
#if USB_HAVE_UGEN
	struct usb2_fifo *fifo[USB_FIFO_MAX];
	struct usb2_symlink *ugen_symlink;	/* our generic symlink */
	struct cdev *default_dev;	/* Control Endpoint 0 device node */
	LIST_HEAD(,usb2_fs_privdata) pd_list;
	char	ugen_name[20];		/* name of ugenX.X device */
#endif
	usb2_ticks_t plugtime;		/* copy of "ticks" */

	enum usb_dev_state state;
	enum usb_dev_speed speed;
	uint16_t refcount;
#define	USB_DEV_REF_MAX 0xffff

	uint16_t power;			/* mA the device uses */
	uint16_t langid;		/* language for strings */

	uint8_t	address;		/* device addess */
	uint8_t	device_index;		/* device index in "bus->devices" */
	uint8_t	curr_config_index;	/* current configuration index */
	uint8_t	curr_config_no;		/* current configuration number */
	uint8_t	depth;			/* distance from root HUB */
	uint8_t	port_index;		/* parent HUB port index */
	uint8_t	port_no;		/* parent HUB port number */
	uint8_t	hs_hub_addr;		/* high-speed HUB address */
	uint8_t	hs_port_no;		/* high-speed HUB port number */
	uint8_t	driver_added_refcount;	/* our driver added generation count */
	uint8_t	power_mode;		/* see USB_POWER_XXX */
	uint8_t ifaces_max;		/* number of interfaces present */
	uint8_t pipes_max;		/* number of pipes present */

	/* the "flags" field is write-protected by "bus->mtx" */

	struct usb2_device_flags flags;

	struct usb2_endpoint_descriptor default_ep_desc;	/* for pipe 0 */
	struct usb2_device_descriptor ddesc;	/* device descriptor */

	char	*serial;		/* serial number */
	char	*manufacturer;		/* manufacturer string */
	char	*product;		/* product string */
};

/* globals */

extern int usb2_template;

/* function prototypes */

struct usb2_device *usb2_alloc_device(device_t parent_dev, struct usb2_bus *bus,
		    struct usb2_device *parent_hub, uint8_t depth,
		    uint8_t port_index, uint8_t port_no,
		    enum usb_dev_speed speed, enum usb_hc_mode mode);
struct usb2_pipe *usb2_get_pipe(struct usb2_device *udev, uint8_t iface_index,
		    const struct usb2_config *setup);
struct usb2_pipe *usb2_get_pipe_by_addr(struct usb2_device *udev, uint8_t ea_val);
usb2_error_t	usb2_interface_count(struct usb2_device *udev, uint8_t *count);
usb2_error_t	usb2_probe_and_attach(struct usb2_device *udev,
		    uint8_t iface_index);
usb2_error_t	usb2_reset_iface_endpoints(struct usb2_device *udev,
		    uint8_t iface_index);
usb2_error_t	usb2_set_config_index(struct usb2_device *udev, uint8_t index);
usb2_error_t	usb2_set_endpoint_stall(struct usb2_device *udev,
		    struct usb2_pipe *pipe, uint8_t do_stall);
usb2_error_t	usb2_suspend_resume(struct usb2_device *udev,
		    uint8_t do_suspend);
void	usb2_devinfo(struct usb2_device *udev, char *dst_ptr, uint16_t dst_len);
void	usb2_free_device(struct usb2_device *, uint8_t);
void	*usb2_find_descriptor(struct usb2_device *udev, void *id,
	    uint8_t iface_index, uint8_t type, uint8_t type_mask,
	    uint8_t subtype, uint8_t subtype_mask);
void	usb_linux_free_device(struct usb_device *dev);
uint8_t	usb2_peer_can_wakeup(struct usb2_device *udev);
struct usb2_pipe *usb2_pipe_foreach(struct usb2_device *udev, struct usb2_pipe *pipe);
void	usb2_set_device_state(struct usb2_device *udev,
	    enum usb_dev_state state);

#endif					/* _USB2_DEVICE_H_ */