summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/usb_transfer.h
blob: a15e8a3c0c9613f12bb65260af4ba23a0e53da24 (plain)
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
/* $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_TRANSFER_H_
#define	_USB2_TRANSFER_H_

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

#define	USB_DMATAG_TO_XROOT(dpt)				\
  ((struct usb2_xfer_root *)(					\
   ((uint8_t *)(dpt)) -						\
   ((uint8_t *)&((struct usb2_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 usb2_xfer_root {
	struct usb2_dma_parent_tag dma_parent_tag;
#if USB_HAVE_BUSDMA
	struct usb2_xfer_queue dma_q;
#endif
	struct usb2_xfer_queue done_q;
	struct usb2_done_msg done_m[2];
	struct cv cv_drain;

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

	usb2_size_t memory_size;
	usb2_size_t setup_refcount;
#if USB_HAVE_BUSDMA
	usb2_frcount_t dma_nframes;	/* number of page caches to load */
	usb2_frcount_t dma_currframe;	/* currect page cache number */
	usb2_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 usb2_setup_params {
	struct usb2_dma_tag *dma_tag_p;
	struct usb2_page *dma_page_ptr;
	struct usb2_page_cache *dma_page_cache_ptr;	/* these will be
							 * auto-freed */
	struct usb2_page_cache *xfer_page_cache_ptr;	/* these will not be
							 * auto-freed */
	struct usb2_device *udev;
	struct usb2_xfer *curr_xfer;
	const struct usb2_config *curr_setup;
	const struct usb2_pipe_methods *methods;
	void   *buf;
	usb2_frlength_t *xfer_length_ptr;

	usb2_size_t size[7];
	usb2_frlength_t bufsize;
	usb2_frlength_t bufsize_max;

	uint16_t hc_max_frame_size;
	uint16_t hc_max_packet_size;
	uint8_t	hc_max_packet_count;
	uint8_t	speed;
	uint8_t	dma_tag_max;
	usb2_error_t err;
};

/* function prototypes */

uint8_t	usb2_transfer_setup_sub_malloc(struct usb2_setup_params *parm,
	    struct usb2_page_cache **ppc, usb2_size_t size, usb2_size_t align,
	    usb2_size_t count);
void	usb2_command_wrapper(struct usb2_xfer_queue *pq,
	    struct usb2_xfer *xfer);
void	usb2_pipe_enter(struct usb2_xfer *xfer);
void	usb2_pipe_start(struct usb2_xfer_queue *pq);
void	usb2_transfer_dequeue(struct usb2_xfer *xfer);
void	usb2_transfer_done(struct usb2_xfer *xfer, usb2_error_t error);
void	usb2_transfer_enqueue(struct usb2_xfer_queue *pq,
	    struct usb2_xfer *xfer);
void	usb2_transfer_setup_sub(struct usb2_setup_params *parm);
void	usb2_default_transfer_setup(struct usb2_device *udev);
void	usb2_clear_data_toggle(struct usb2_device *udev,
	    struct usb2_pipe *pipe);
void	usb2_do_poll(struct usb2_xfer **ppxfer, uint16_t max);
usb2_callback_t usb2_do_request_callback;
usb2_callback_t usb2_handle_request_callback;
usb2_callback_t usb2_do_clear_stall_callback;
void	usb2_transfer_timeout_ms(struct usb2_xfer *xfer,
	    void (*cb) (void *arg), usb2_timeout_t ms);
usb2_timeout_t usb2_get_dma_delay(struct usb2_bus *bus);
void	usb2_transfer_power_ref(struct usb2_xfer *xfer, int val);

#endif					/* _USB2_TRANSFER_H_ */
OpenPOWER on IntegriCloud