summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/dev/usb/usb_transfer.h
blob: da632a738262d27e3dce00f8b2f59f60a7e06328 (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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/* $FreeBSD$ */
/*-
 * SPDX-License-Identifier: BSD-2-Clause-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 _USB_TRANSFER_H_
#define	_USB_TRANSFER_H_

/*
 * Definition of internal USB transfer states:
 * ===========================================
 *
 * The main reason there are many USB states is that we are allowed to
 * cancel USB transfers, then start the USB transfer again and that
 * this state transaction cannot always be done in a single atomic
 * operation without blocking the calling thread. One reason for this
 * is that the USB hardware sometimes needs to wait for DMA
 * controllers to finish which is done asynchronously and grows the
 * statemachine.
 *
 * When extending the following statemachine there are basically two
 * things you should think about: Which states should be executed or
 * modified in case of USB transfer stop and which states should be
 * executed or modified in case of USB transfer start. Also respect
 * the "can_cancel_immed" flag which basically tells if you can go
 * directly from a wait state to the cancelling states.
 */

enum {
	/* XFER start execute state */

	/* USB_ST_SETUP = 0 (already defined) */

	/* XFER transferred execute state */

	/* USB_ST_TRANSFERRED = 1 (already defined) */

	/* XFER error execute state */

	/* USB_ST_ERROR = 2 (already defined) */

	/* XFER restart after error execute state */

	USB_ST_RESTART = 8,

	/* XFER transfer idle state */

	USB_ST_WAIT_SETUP,

	/* Other XFER execute states */

	USB_ST_PIPE_OPEN = 16,
	USB_ST_PIPE_OPEN_ERROR,
	USB_ST_PIPE_OPEN_RESTART,

	USB_ST_BDMA_LOAD,
	USB_ST_BDMA_LOAD_ERROR,
	USB_ST_BDMA_LOAD_RESTART,

	USB_ST_IVAL_DLY,
	USB_ST_IVAL_DLY_ERROR,
	USB_ST_IVAL_DLY_RESTART,

	USB_ST_PIPE_STALL,
	USB_ST_PIPE_STALL_ERROR,
	USB_ST_PIPE_STALL_RESTART,

	USB_ST_ENTER,
	USB_ST_ENTER_ERROR,
	USB_ST_ENTER_RESTART,

	USB_ST_START,
	USB_ST_START_ERROR,
	USB_ST_START_RESTART,

	USB_ST_PIPE_CLOSE,
	USB_ST_PIPE_CLOSE_ERROR,
	USB_ST_PIPE_CLOSE_RESTART,

	USB_ST_BDMA_DLY,
	USB_ST_BDMA_DLY_ERROR,
	USB_ST_BDMA_DLY_RESTART,

	/* XFER transfer wait states */

	USB_ST_WAIT_PIPE_OPEN = 64,
	USB_ST_WAIT_PIPE_OPEN_ERROR,
	USB_ST_WAIT_PIPE_OPEN_RESTART,

	USB_ST_WAIT_BDMA_LOAD,
	USB_ST_WAIT_BDMA_LOAD_ERROR,
	USB_ST_WAIT_BDMA_LOAD_RESTART,

	USB_ST_WAIT_IVAL_DLY,
	USB_ST_WAIT_IVAL_DLY_ERROR,
	USB_ST_WAIT_IVAL_DLY_RESTART,

	USB_ST_WAIT_PIPE_STALL,
	USB_ST_WAIT_PIPE_STALL_ERROR,
	USB_ST_WAIT_PIPE_STALL_RESTART,

	USB_ST_WAIT_ENTER,
	USB_ST_WAIT_ENTER_ERROR,
	USB_ST_WAIT_ENTER_RESTART,

	USB_ST_WAIT_START,
	USB_ST_WAIT_START_ERROR,
	USB_ST_WAIT_START_RESTART,

	USB_ST_WAIT_PIPE_CLOSE,
	USB_ST_WAIT_PIPE_CLOSE_ERROR,
	USB_ST_WAIT_PIPE_CLOSE_RESTART,

	USB_ST_WAIT_BDMA_DLY,
	USB_ST_WAIT_BDMA_DLY_ERROR,
	USB_ST_WAIT_BDMA_DLY_RESTART,

	USB_ST_WAIT_TRANSFERRED,
	USB_ST_WAIT_TRANSFERRED_ERROR,
	USB_ST_WAIT_TRANSFERRED_RESTART,
};

/*
 * The following structure defines the messages that is used to signal
 * the "done_p" USB process.
 */
struct usb_done_msg {
	struct usb_proc_msg hdr;
	struct usb_xfer_root *xroot;
};

#define	USB_DMATAG_TO_XROOT(dpt)				\
  ((struct usb_xfer_root *)(					\
   ((uint8_t *)(dpt)) -						\
   ((uint8_t *)&((struct usb_xfer_root *)0)->dma_parent_tag)))

/*
 * The following structure is used to keep information about memory
 * that should be automatically freed at the moment all USB transfers
 * have been freed.
 */
struct usb_xfer_root {
	struct usb_dma_parent_tag dma_parent_tag;
#if USB_HAVE_BUSDMA
	struct usb_xfer_queue dma_q;
#endif
	struct usb_xfer_queue done_q;
	struct usb_done_msg done_m[2];
	struct cv cv_drain;

	struct usb_process *done_p;	/* pointer to callback process */
	void   *memory_base;
	struct mtx *xfer_mtx;	/* cannot be changed during operation */
#if USB_HAVE_BUSDMA
	struct usb_page_cache *dma_page_cache_start;
	struct usb_page_cache *dma_page_cache_end;
#endif
	struct usb_page_cache *xfer_page_cache_start;
	struct usb_page_cache *xfer_page_cache_end;
	struct usb_bus *bus;		/* pointer to USB bus (cached) */
	struct usb_device *udev;	/* pointer to USB device */

	usb_size_t memory_size;
	usb_size_t setup_refcount;
#if USB_HAVE_BUSDMA
	usb_frcount_t dma_nframes;	/* number of page caches to load */
	usb_frcount_t dma_currframe;	/* currect page cache number */
	usb_frlength_t dma_frlength_0;	/* length of page cache zero */
	uint8_t	dma_error;		/* set if virtual memory could not be
					 * loaded */
#endif
	uint8_t	done_sleep;		/* set if done thread is sleeping */
};

/*
 * The following structure is used when setting up an array of USB
 * transfers.
 */
struct usb_setup_params {
	struct usb_dma_tag *dma_tag_p;
	struct usb_page *dma_page_ptr;
	struct usb_page_cache *dma_page_cache_ptr;	/* these will be
							 * auto-freed */
	struct usb_page_cache *xfer_page_cache_ptr;	/* these will not be
							 * auto-freed */
	struct usb_device *udev;
	struct usb_xfer *curr_xfer;
	const struct usb_config *curr_setup;
	const struct usb_pipe_methods *methods;
	void   *buf;
	usb_frlength_t *xfer_length_ptr;

	usb_size_t size[7];
	usb_frlength_t bufsize;
	usb_frlength_t bufsize_max;

	uint32_t hc_max_frame_size;
	uint16_t hc_max_packet_size;
	uint8_t	hc_max_packet_count;
	enum usb_dev_speed speed;
	uint8_t	dma_tag_max;
	usb_error_t err;
};

/* function prototypes */

uint8_t	usbd_transfer_setup_sub_malloc(struct usb_setup_params *parm,
	    struct usb_page_cache **ppc, usb_size_t size, usb_size_t align,
	    usb_size_t count);
void	usb_dma_delay_done_cb(struct usb_xfer *);
void	usb_command_wrapper(struct usb_xfer_queue *pq,
	    struct usb_xfer *xfer);
void	usbd_pipe_enter(struct usb_xfer *xfer);
void	usbd_pipe_start(struct usb_xfer_queue *pq);
void	usbd_transfer_dequeue(struct usb_xfer *xfer);
void	usbd_transfer_done(struct usb_xfer *xfer, usb_error_t error);
void	usbd_transfer_enqueue(struct usb_xfer_queue *pq,
	    struct usb_xfer *xfer);
void	usbd_transfer_setup_sub(struct usb_setup_params *parm);
void	usbd_ctrl_transfer_setup(struct usb_device *udev);
void	usbd_clear_stall_locked(struct usb_device *udev,
	    struct usb_endpoint *ep);
void	usbd_clear_data_toggle(struct usb_device *udev,
	    struct usb_endpoint *ep);
usb_callback_t usbd_do_request_callback;
usb_callback_t usb_handle_request_callback;
usb_callback_t usb_do_clear_stall_callback;
void	usbd_transfer_timeout_ms(struct usb_xfer *xfer,
	    void (*cb) (void *arg), usb_timeout_t ms);
usb_timeout_t usbd_get_dma_delay(struct usb_device *udev);
void	usbd_transfer_power_ref(struct usb_xfer *xfer, int val);

#endif					/* _USB_TRANSFER_H_ */