xref: /openbsd-src/sys/dev/usb/usbdivar.h (revision d13be5d47e4149db2549a9828e244d59dbc43f15)
1 /*	$OpenBSD: usbdivar.h,v 1.42 2011/01/16 22:35:29 jakemsr Exp $ */
2 /*	$NetBSD: usbdivar.h,v 1.70 2002/07/11 21:14:36 augustss Exp $	*/
3 /*	$FreeBSD: src/sys/dev/usb/usbdivar.h,v 1.11 1999/11/17 22:33:51 n_hibma Exp $	*/
4 
5 /*
6  * Copyright (c) 1998 The NetBSD Foundation, Inc.
7  * All rights reserved.
8  *
9  * This code is derived from software contributed to The NetBSD Foundation
10  * by Lennart Augustsson (lennart@augustsson.net) at
11  * Carlstedt Research & Technology.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
26  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 /* From usb_mem.h */
36 struct usb_dma_block;
37 typedef struct {
38 	struct usb_dma_block	*block;
39 	u_int			 offs;
40 } usb_dma_t;
41 
42 struct usbd_xfer;
43 struct usbd_pipe;
44 
45 struct usbd_endpoint {
46 	usb_endpoint_descriptor_t *edesc;
47 	int			refcnt;
48 	int			savedtoggle;
49 };
50 
51 struct usbd_bus_methods {
52 	usbd_status	      (*open_pipe)(struct usbd_pipe *pipe);
53 	void		      (*soft_intr)(void *);
54 	void		      (*do_poll)(struct usbd_bus *);
55 	usbd_status	      (*allocm)(struct usbd_bus *, usb_dma_t *,
56 					u_int32_t bufsize);
57 	void		      (*freem)(struct usbd_bus *, usb_dma_t *);
58 	struct usbd_xfer *    (*allocx)(struct usbd_bus *);
59 	void		      (*freex)(struct usbd_bus *, struct usbd_xfer *);
60 };
61 
62 struct usbd_pipe_methods {
63 	usbd_status	      (*transfer)(usbd_xfer_handle xfer);
64 	usbd_status	      (*start)(usbd_xfer_handle xfer);
65 	void		      (*abort)(usbd_xfer_handle xfer);
66 	void		      (*close)(usbd_pipe_handle pipe);
67 	void		      (*cleartoggle)(usbd_pipe_handle pipe);
68 	void		      (*done)(usbd_xfer_handle xfer);
69 };
70 
71 struct usbd_tt {
72 	struct usbd_hub	       *hub;
73 };
74 
75 struct usbd_port {
76 	usb_port_status_t	status;
77 	u_int16_t		power;	/* mA of current on port */
78 	u_int8_t		portno;
79 	u_int8_t		restartcnt;
80 #define USBD_RESTART_MAX 5
81 	u_int8_t		reattach;
82 	struct usbd_device     *device;	/* Connected device */
83 	struct usbd_device     *parent;	/* The ports hub */
84 	struct usbd_tt	       *tt; /* Transaction translator (if any) */
85 };
86 
87 struct usbd_hub {
88 	usbd_status	      (*explore)(usbd_device_handle hub);
89 	void		       *hubsoftc;
90 	usb_hub_descriptor_t	hubdesc;
91 	struct usbd_port        *ports;
92 };
93 
94 struct usb_softc;
95 
96 /*****/
97 
98 struct usbd_bus {
99 	/* Filled by HC driver */
100 	struct device		bdev; /* base device, host adapter */
101 	struct usbd_bus_methods	*methods;
102 	u_int32_t		pipe_size; /* size of a pipe struct */
103 	/* Filled by usb driver */
104 	struct usbd_device     *root_hub;
105 	usbd_device_handle	devices[USB_MAX_DEVICES];
106 	char			use_polling;
107 	char			dying;
108 	int			flags;
109 #define USB_BUS_CONFIG_PENDING	0x01
110 	struct usb_softc       *usbctl;
111 	struct usb_device_stats	stats;
112 	int 			intr_context;
113 	u_int			no_intrs;
114 	int			usbrev;	/* USB revision */
115 #define USBREV_UNKNOWN	0
116 #define USBREV_PRE_1_0	1
117 #define USBREV_1_0	2
118 #define USBREV_1_1	3
119 #define USBREV_2_0	4
120 #define USBREV_STR { "unknown", "pre 1.0", "1.0", "1.1", "2.0" }
121 	void		       *soft; /* soft interrupt cookie */
122 	bus_dma_tag_t		dmatag;	/* DMA tag */
123 };
124 
125 struct usbd_device {
126 	struct usbd_bus	       *bus;           /* our controller */
127 	struct usbd_pipe       *default_pipe;  /* pipe 0 */
128 	u_int8_t		dying;	       /* hardware removed */
129 	u_int8_t		ref_cnt;       /* # of procs using device */
130 	u_int8_t		address;       /* device address */
131 	u_int8_t		config;	       /* current configuration # */
132 	u_int8_t		depth;         /* distance from root hub */
133 	u_int8_t		speed;         /* low/full/high speed */
134 	u_int8_t		self_powered;  /* flag for self powered */
135 	u_int16_t		power;         /* mA the device uses */
136 	int16_t			langid;	       /* language for strings */
137 #define USBD_NOLANG (-1)
138 	usb_event_cookie_t	cookie;	       /* unique connection id */
139 	struct usbd_port       *powersrc;      /* upstream hub port, or 0 */
140 	struct usbd_device     *myhub; 	       /* upstream hub */
141 	struct usbd_port       *myhsport;      /* closest high speed port */
142 	struct usbd_endpoint	def_ep;	       /* for pipe 0 */
143 	usb_endpoint_descriptor_t def_ep_desc; /* for pipe 0 */
144 	struct usbd_interface  *ifaces;        /* array of all interfaces */
145 	usb_device_descriptor_t ddesc;         /* device descriptor */
146 	usb_config_descriptor_t *cdesc;	       /* full config descr */
147 	const struct usbd_quirks     *quirks;  /* device quirks, always set */
148 	struct usbd_hub	       *hub;           /* only if this is a hub */
149 	struct device         **subdevs;       /* sub-devices, 0 terminated */
150 	int			ndevs;	       /* # of subdevs */
151 };
152 
153 struct usbd_interface {
154 	struct usbd_device     *device;
155 	usb_interface_descriptor_t *idesc;
156 	int			index;
157 	int			altindex;
158 	struct usbd_endpoint   *endpoints;
159 	void		       *priv;
160 	LIST_HEAD(, usbd_pipe)	pipes;
161 	u_int8_t		claimed;
162 };
163 
164 struct usbd_pipe {
165 	struct usbd_interface  *iface;
166 	struct usbd_device     *device;
167 	struct usbd_endpoint   *endpoint;
168 	int			refcnt;
169 	char			running;
170 	char			aborting;
171 	SIMPLEQ_HEAD(, usbd_xfer) queue;
172 	LIST_ENTRY(usbd_pipe)	next;
173 
174 	usbd_xfer_handle	intrxfer; /* used for repeating requests */
175 	char			repeat;
176 	int			interval;
177 
178 	/* Filled by HC driver. */
179 	struct usbd_pipe_methods *methods;
180 };
181 
182 struct usbd_xfer {
183 	struct usbd_pipe       *pipe;
184 	void		       *priv;
185 	void		       *buffer;
186 	u_int32_t		length;
187 	u_int32_t		actlen;
188 	u_int16_t		flags;
189 	u_int32_t		timeout;
190 	usbd_status		status;
191 	usbd_callback		callback;
192 	__volatile char		done;
193 #ifdef DIAGNOSTIC
194 	u_int32_t		busy_free;
195 #define XFER_FREE 0x46524545
196 #define XFER_BUSY 0x42555359
197 #define XFER_ONQU 0x4f4e5155
198 #endif
199 
200 	/* For control pipe */
201 	usb_device_request_t	request;
202 
203 	/* For isoc */
204 	u_int16_t		*frlengths;
205 	int			nframes;
206 
207 	/* For memory allocation */
208 	struct usbd_device     *device;
209 	usb_dma_t		dmabuf;
210 
211 	int			rqflags;
212 #define URQ_REQUEST	0x01
213 #define URQ_AUTO_DMABUF	0x10
214 #define URQ_DEV_DMABUF	0x20
215 
216 	SIMPLEQ_ENTRY(usbd_xfer) next;
217 
218 	void		       *hcpriv; /* private use by the HC driver */
219 
220 	struct timeout		timeout_handle;
221 };
222 
223 void usbd_init(void);
224 void usbd_finish(void);
225 void usb_begin_tasks(void);
226 void usb_end_tasks(void);
227 
228 #ifdef USB_DEBUG
229 void usbd_dump_iface(struct usbd_interface *iface);
230 void usbd_dump_device(struct usbd_device *dev);
231 void usbd_dump_endpoint(struct usbd_endpoint *endp);
232 void usbd_dump_queue(usbd_pipe_handle pipe);
233 void usbd_dump_pipe(usbd_pipe_handle pipe);
234 #endif
235 
236 /* Routines from usb_subr.c */
237 int		usbctlprint(void *, const char *);
238 void		usb_delay_ms(usbd_bus_handle, u_int);
239 usbd_status	usbd_port_disown_to_1_1(usbd_device_handle dev,
240 		    int port, usb_port_status_t *ps);
241 usbd_status	usbd_reset_port(usbd_device_handle dev,
242 		    int port, usb_port_status_t *ps);
243 usbd_status	usbd_setup_pipe(usbd_device_handle dev,
244 		    usbd_interface_handle iface, struct usbd_endpoint *, int,
245 		    usbd_pipe_handle *pipe);
246 usbd_status	usbd_new_device(struct device *parent, usbd_bus_handle bus,
247 		    int depth, int lowspeed, int port, struct usbd_port *);
248 void		usbd_remove_device(usbd_device_handle, struct usbd_port *);
249 int		usbd_printBCD(char *cp, size_t len, int bcd);
250 usbd_status	usbd_fill_iface_data(usbd_device_handle dev, int i, int a);
251 void		usb_free_device(usbd_device_handle);
252 
253 usbd_status	usb_insert_transfer(usbd_xfer_handle xfer);
254 void		usb_transfer_complete(usbd_xfer_handle xfer);
255 void		usb_disconnect_port(struct usbd_port *up, struct device *);
256 
257 /* Routines from usb.c */
258 void		usb_needs_explore(usbd_device_handle, int);
259 void		usb_needs_reattach(usbd_device_handle);
260 void		usb_schedsoftintr(struct usbd_bus *);
261 
262 /* Locator stuff. */
263 
264 /* XXX these values are used to statically bind some elements in the USB tree
265  * to specific driver instances. This should be somehow emulated in FreeBSD
266  * but can be done later on.
267  * The values are copied from the files.usb file in the NetBSD sources.
268  */
269 #define UHUBCF_PORT_DEFAULT -1
270 #define UHUBCF_CONFIGURATION_DEFAULT -1
271 #define UHUBCF_INTERFACE_DEFAULT -1
272 #define UHUBCF_VENDOR_DEFAULT -1
273 #define UHUBCF_PRODUCT_DEFAULT -1
274 #define UHUBCF_RELEASE_DEFAULT -1
275 
276 #define	UHUBCF_PORT		0
277 #define	UHUBCF_CONFIGURATION	1
278 #define	UHUBCF_INTERFACE	2
279 #define	UHUBCF_VENDOR		3
280 #define	UHUBCF_PRODUCT		4
281 #define	UHUBCF_RELEASE		5
282 
283 #define	uhubcf_port		cf_loc[UHUBCF_PORT]
284 #define	uhubcf_configuration	cf_loc[UHUBCF_CONFIGURATION]
285 #define	uhubcf_interface	cf_loc[UHUBCF_INTERFACE]
286 #define	uhubcf_vendor		cf_loc[UHUBCF_VENDOR]
287 #define	uhubcf_product		cf_loc[UHUBCF_PRODUCT]
288 #define	uhubcf_release		cf_loc[UHUBCF_RELEASE]
289 #define	UHUB_UNK_PORT		UHUBCF_PORT_DEFAULT /* wildcarded 'port' */
290 #define	UHUB_UNK_CONFIGURATION	UHUBCF_CONFIGURATION_DEFAULT /* wildcarded 'configuration' */
291 #define	UHUB_UNK_INTERFACE	UHUBCF_INTERFACE_DEFAULT /* wildcarded 'interface' */
292 #define	UHUB_UNK_VENDOR		UHUBCF_VENDOR_DEFAULT /* wildcarded 'vendor' */
293 #define	UHUB_UNK_PRODUCT	UHUBCF_PRODUCT_DEFAULT /* wildcarded 'product' */
294 #define	UHUB_UNK_RELEASE	UHUBCF_RELEASE_DEFAULT /* wildcarded 'release' */
295