xref: /netbsd-src/sys/dev/usb/uhcivar.h (revision 8b0f9554ff8762542c4defc4f70e1eb76fb508fa)
1 /*	$NetBSD: uhcivar.h,v 1.41 2007/12/09 20:28:24 jmcneill Exp $	*/
2 /*	$FreeBSD: src/sys/dev/usb/uhcivar.h,v 1.14 1999/11/17 22:33:42 n_hibma Exp $	*/
3 
4 /*
5  * Copyright (c) 1998 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Lennart Augustsson (lennart@augustsson.net) at
10  * Carlstedt Research & Technology.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *        This product includes software developed by the NetBSD
23  *        Foundation, Inc. and its contributors.
24  * 4. Neither the name of The NetBSD Foundation nor the names of its
25  *    contributors may be used to endorse or promote products derived
26  *    from this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
29  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
32  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38  * POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 /*
42  * To avoid having 1024 TDs for each isochronous transfer we introduce
43  * a virtual frame list.  Every UHCI_VFRAMELIST_COUNT entries in the real
44  * frame list points to a non-active TD.  These, in turn, form the
45  * starts of the virtual frame list.  This also has the advantage that it
46  * simplifies linking in/out of TDs/QHs in the schedule.
47  * Furthermore, initially each of the inactive TDs point to an inactive
48  * QH that forms the start of the interrupt traffic for that slot.
49  * Each of these QHs point to the same QH that is the start of control
50  * traffic.  This QH points at another QH which is the start of the
51  * bulk traffic.
52  *
53  * UHCI_VFRAMELIST_COUNT should be a power of 2 and <= UHCI_FRAMELIST_COUNT.
54  */
55 #define UHCI_VFRAMELIST_COUNT 128
56 
57 typedef struct uhci_soft_qh uhci_soft_qh_t;
58 typedef struct uhci_soft_td uhci_soft_td_t;
59 
60 typedef union {
61 	struct uhci_soft_qh *sqh;
62 	struct uhci_soft_td *std;
63 } uhci_soft_td_qh_t;
64 
65 /*
66  * An interrupt info struct contains the information needed to
67  * execute a requested routine when the controller generates an
68  * interrupt.  Since we cannot know which transfer generated
69  * the interrupt all structs are linked together so they can be
70  * searched at interrupt time.
71  */
72 typedef struct uhci_intr_info {
73 	struct uhci_softc *sc;
74 	usbd_xfer_handle xfer;
75 	uhci_soft_td_t *stdstart;
76 	uhci_soft_td_t *stdend;
77 	LIST_ENTRY(uhci_intr_info) list;
78 	int isdone;	/* used only when DIAGNOSTIC is defined */
79 } uhci_intr_info_t;
80 
81 struct uhci_xfer {
82 	struct usbd_xfer xfer;
83 	uhci_intr_info_t iinfo;
84 	struct usb_task	abort_task;
85 	int curframe;
86 };
87 
88 #define UXFER(xfer) ((struct uhci_xfer *)(xfer))
89 
90 /*
91  * Extra information that we need for a TD.
92  */
93 struct uhci_soft_td {
94 	uhci_td_t td;			/* The real TD, must be first */
95 	uhci_soft_td_qh_t link; 	/* soft version of the td_link field */
96 	uhci_physaddr_t physaddr;	/* TD's physical address. */
97 };
98 /*
99  * Make the size such that it is a multiple of UHCI_TD_ALIGN.  This way
100  * we can pack a number of soft TD together and have the real TD well
101  * aligned.
102  * NOTE: Minimum size is 32 bytes.
103  */
104 #define UHCI_STD_SIZE ((sizeof (struct uhci_soft_td) + UHCI_TD_ALIGN - 1) / UHCI_TD_ALIGN * UHCI_TD_ALIGN)
105 #define UHCI_STD_CHUNK 128 /*(PAGE_SIZE / UHCI_TD_SIZE)*/
106 
107 /*
108  * Extra information that we need for a QH.
109  */
110 struct uhci_soft_qh {
111 	uhci_qh_t qh;			/* The real QH, must be first */
112 	uhci_soft_qh_t *hlink;		/* soft version of qh_hlink */
113 	uhci_soft_td_t *elink;		/* soft version of qh_elink */
114 	uhci_physaddr_t physaddr;	/* QH's physical address. */
115 	int pos;			/* Timeslot position */
116 };
117 /* See comment about UHCI_STD_SIZE. */
118 #define UHCI_SQH_SIZE ((sizeof (struct uhci_soft_qh) + UHCI_QH_ALIGN - 1) / UHCI_QH_ALIGN * UHCI_QH_ALIGN)
119 #define UHCI_SQH_CHUNK 128 /*(PAGE_SIZE / UHCI_QH_SIZE)*/
120 
121 /*
122  * Information about an entry in the virtual frame list.
123  */
124 struct uhci_vframe {
125 	uhci_soft_td_t *htd;		/* pointer to dummy TD */
126 	uhci_soft_td_t *etd;		/* pointer to last TD */
127 	uhci_soft_qh_t *hqh;		/* pointer to dummy QH */
128 	uhci_soft_qh_t *eqh;		/* pointer to last QH */
129 	u_int bandwidth;		/* max bandwidth used by this frame */
130 };
131 
132 typedef struct uhci_softc {
133 	struct usbd_bus sc_bus;		/* base device */
134 	bus_space_tag_t iot;
135 	bus_space_handle_t ioh;
136 	bus_size_t sc_size;
137 
138 	uhci_physaddr_t *sc_pframes;
139 	usb_dma_t sc_dma;
140 	struct uhci_vframe sc_vframes[UHCI_VFRAMELIST_COUNT];
141 
142 	uhci_soft_qh_t *sc_lctl_start;	/* dummy QH for low speed control */
143 	uhci_soft_qh_t *sc_lctl_end;	/* last control QH */
144 	uhci_soft_qh_t *sc_hctl_start;	/* dummy QH for high speed control */
145 	uhci_soft_qh_t *sc_hctl_end;	/* last control QH */
146 	uhci_soft_qh_t *sc_bulk_start;	/* dummy QH for bulk */
147 	uhci_soft_qh_t *sc_bulk_end;	/* last bulk transfer */
148 	uhci_soft_qh_t *sc_last_qh;	/* dummy QH at the end */
149 	u_int32_t sc_loops;		/* number of QHs that wants looping */
150 
151 	uhci_soft_td_t *sc_freetds;	/* TD free list */
152 	uhci_soft_qh_t *sc_freeqhs;	/* QH free list */
153 
154 	SIMPLEQ_HEAD(, usbd_xfer) sc_free_xfers; /* free xfers */
155 
156 	u_int8_t sc_addr;		/* device address */
157 	u_int8_t sc_conf;		/* device configuration */
158 
159 	u_int8_t sc_saved_sof;
160 	u_int16_t sc_saved_frnum;
161 
162 #ifdef USB_USE_SOFTINTR
163 	char sc_softwake;
164 #endif /* USB_USE_SOFTINTR */
165 
166 	char sc_isreset;
167 	char sc_suspend;
168 	char sc_dying;
169 
170 	LIST_HEAD(, uhci_intr_info) sc_intrhead;
171 
172 	/* Info for the root hub interrupt "pipe". */
173 	int sc_ival;			/* time between root hub intrs */
174 	usbd_xfer_handle sc_intr_xfer;	/* root hub interrupt transfer */
175 	usb_callout_t sc_poll_handle;
176 
177 	char sc_vendor[32];		/* vendor string for root hub */
178 	int sc_id_vendor;		/* vendor ID for root hub */
179 
180 #if defined(__NetBSD__) || defined(__OpenBSD__)
181 	device_ptr_t sc_child;		/* /dev/usb# device */
182 #endif
183 #ifdef __NetBSD__
184 	struct usb_dma_reserve sc_dma_reserve;
185 #endif
186 } uhci_softc_t;
187 
188 usbd_status	uhci_init(uhci_softc_t *);
189 int		uhci_intr(void *);
190 #if defined(__NetBSD__) || defined(__OpenBSD__)
191 int		uhci_detach(uhci_softc_t *, int);
192 int		uhci_activate(device_ptr_t, enum devact);
193 bool		uhci_resume(device_t);
194 bool		uhci_suspend(device_t);
195 #endif
196 
197