xref: /openbsd/sys/dev/usb/ehcivar.h (revision 8932bfb7)
1 /*	$OpenBSD: ehcivar.h,v 1.21 2010/12/14 16:13:16 jakemsr Exp $ */
2 /*	$NetBSD: ehcivar.h,v 1.19 2005/04/29 15:04:29 augustss Exp $	*/
3 
4 /*
5  * Copyright (c) 2001 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).
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 typedef struct ehci_soft_qtd {
34 	ehci_qtd_t qtd;
35 	struct ehci_soft_qtd *nextqtd; /* mirrors nextqtd in TD */
36 	ehci_physaddr_t physaddr;
37 	usb_dma_t dma;                  /* qTD's DMA infos */
38 	int offs;                       /* qTD's offset in usb_dma_t */
39 	usbd_xfer_handle xfer;
40 	LIST_ENTRY(ehci_soft_qtd) hnext;
41 	u_int16_t len;
42 } ehci_soft_qtd_t;
43 #define EHCI_SQTD_SIZE ((sizeof (struct ehci_soft_qtd) + EHCI_QTD_ALIGN - 1) / EHCI_QTD_ALIGN * EHCI_QTD_ALIGN)
44 #define EHCI_SQTD_CHUNK (EHCI_PAGE_SIZE / EHCI_SQTD_SIZE)
45 
46 typedef struct ehci_soft_qh {
47 	ehci_qh_t qh;
48 	struct ehci_soft_qh *next;
49 	struct ehci_soft_qh *prev;
50 	struct ehci_soft_qtd *sqtd;
51 	ehci_physaddr_t physaddr;
52 	usb_dma_t dma;                  /* QH's DMA infos */
53 	int offs;                       /* QH's offset in usb_dma_t */
54 	int islot;
55 } ehci_soft_qh_t;
56 #define EHCI_SQH_SIZE ((sizeof (struct ehci_soft_qh) + EHCI_QH_ALIGN - 1) / EHCI_QH_ALIGN * EHCI_QH_ALIGN)
57 #define EHCI_SQH_CHUNK (EHCI_PAGE_SIZE / EHCI_SQH_SIZE)
58 
59 typedef struct ehci_soft_itd {
60 	ehci_itd_t itd;
61 	union {
62 		struct {
63 			/* soft_itds links in a periodic frame*/
64 			struct ehci_soft_itd *next;
65 			struct ehci_soft_itd *prev;
66 		} frame_list;
67 		/* circular list of free itds */
68 		LIST_ENTRY(ehci_soft_itd) free_list;
69 	} u;
70 	struct ehci_soft_itd *xfer_next; /* Next soft_itd in xfer */
71 	ehci_physaddr_t physaddr;
72 	usb_dma_t dma;
73 	int offs;
74 	int slot;
75 	struct timeval t; /* store free time */
76 } ehci_soft_itd_t;
77 #define EHCI_ITD_SIZE ((sizeof(struct ehci_soft_itd) + EHCI_QH_ALIGN - 1) / EHCI_ITD_ALIGN * EHCI_ITD_ALIGN)
78 #define EHCI_ITD_CHUNK (EHCI_PAGE_SIZE / EHCI_ITD_SIZE)
79 
80 struct ehci_xfer {
81 	struct usbd_xfer xfer;
82 	struct usb_task	abort_task;
83 	TAILQ_ENTRY(ehci_xfer) inext; /* list of active xfers */
84 	ehci_soft_qtd_t *sqtdstart;
85 	ehci_soft_qtd_t *sqtdend;
86 	ehci_soft_itd_t *itdstart;
87 	ehci_soft_itd_t *itdend;
88 	u_int isoc_len;
89 	u_int32_t ehci_xfer_flags;
90 #ifdef DIAGNOSTIC
91 	int isdone;
92 #endif
93 };
94 #define EHCI_XFER_ABORTING	0x0001	/* xfer is aborting. */
95 #define EHCI_XFER_ABORTWAIT	0x0002	/* abort completion is being awaited. */
96 
97 #define EXFER(xfer) ((struct ehci_xfer *)(xfer))
98 
99 /* Information about an entry in the interrupt list. */
100 struct ehci_soft_islot {
101 	ehci_soft_qh_t *sqh;	/* Queue Head. */
102 };
103 
104 #define EHCI_FRAMELIST_MAXCOUNT	1024
105 #define EHCI_IPOLLRATES		8 /* Poll rates (1ms, 2, 4, 8 .. 128) */
106 #define EHCI_INTRQHS		((1 << EHCI_IPOLLRATES) - 1)
107 #define EHCI_IQHIDX(lev, pos) \
108 	((((pos) & ((1 << (lev)) - 1)) | (1 << (lev))) - 1)
109 #define EHCI_ILEV_IVAL(lev)	(1 << (lev))
110 
111 
112 #define EHCI_HASH_SIZE 128
113 #define EHCI_COMPANION_MAX 8
114 
115 #define EHCI_FREE_LIST_INTERVAL 100
116 
117 typedef struct ehci_softc {
118 	struct usbd_bus sc_bus;		/* base device */
119 	bus_space_tag_t iot;
120 	bus_space_handle_t ioh;
121 	bus_size_t sc_size;
122 	u_int sc_offs;			/* offset to operational regs */
123 	int sc_flags;			/* misc flags */
124 #define EHCIF_DROPPED_INTR_WORKAROUND	0x01
125 
126 	char sc_vendor[16];		/* vendor string for root hub */
127 	int sc_id_vendor;		/* vendor ID for root hub */
128 
129 	u_int32_t sc_cmd;		/* shadow of cmd reg during suspend */
130 	void *sc_shutdownhook;		/* cookie from shutdown hook */
131 
132 	usb_dma_t sc_fldma;
133 	ehci_link_t *sc_flist;
134 	u_int sc_flsize;
135 	u_int sc_rand;			/* XXX need proper intr scheduling */
136 
137 	struct ehci_soft_islot sc_islots[EHCI_INTRQHS];
138 
139 	/* jcmm - an array matching sc_flist, but with software pointers,
140 	 * not hardware address pointers
141 	 */
142 	struct ehci_soft_itd **sc_softitds;
143 
144 	TAILQ_HEAD(, ehci_xfer) sc_intrhead;
145 
146 	ehci_soft_qh_t *sc_freeqhs;
147 	ehci_soft_qtd_t *sc_freeqtds;
148 	LIST_HEAD(sc_freeitds, ehci_soft_itd) sc_freeitds;
149 
150 	int sc_noport;
151 	u_int8_t sc_addr;		/* device address */
152 	u_int8_t sc_conf;		/* device configuration */
153 	usbd_xfer_handle sc_intrxfer;
154 	char sc_isreset;
155 	char sc_softwake;
156 
157 	u_int32_t sc_eintrs;
158 	ehci_soft_qh_t *sc_async_head;
159 
160 	SIMPLEQ_HEAD(, usbd_xfer) sc_free_xfers; /* free xfers */
161 
162 	struct rwlock sc_doorbell_lock;
163 
164 	struct timeout sc_tmo_intrlist;
165 
166 	struct device *sc_child;		/* /dev/usb# device */
167 } ehci_softc_t;
168 
169 #define EREAD1(sc, a) bus_space_read_1((sc)->iot, (sc)->ioh, (a))
170 #define EREAD2(sc, a) bus_space_read_2((sc)->iot, (sc)->ioh, (a))
171 #define EREAD4(sc, a) bus_space_read_4((sc)->iot, (sc)->ioh, (a))
172 #define EWRITE1(sc, a, x) bus_space_write_1((sc)->iot, (sc)->ioh, (a), (x))
173 #define EWRITE2(sc, a, x) bus_space_write_2((sc)->iot, (sc)->ioh, (a), (x))
174 #define EWRITE4(sc, a, x) bus_space_write_4((sc)->iot, (sc)->ioh, (a), (x))
175 #define EOREAD1(sc, a) bus_space_read_1((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a))
176 #define EOREAD2(sc, a) bus_space_read_2((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a))
177 #define EOREAD4(sc, a) bus_space_read_4((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a))
178 #define EOWRITE1(sc, a, x) bus_space_write_1((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a), (x))
179 #define EOWRITE2(sc, a, x) bus_space_write_2((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a), (x))
180 #define EOWRITE4(sc, a, x) bus_space_write_4((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a), (x))
181 
182 usbd_status	ehci_init(ehci_softc_t *);
183 int		ehci_intr(void *);
184 int		ehci_detach(ehci_softc_t *, int);
185 int		ehci_activate(struct device *, int);
186 void		ehci_shutdown(void *);
187