ehci_cardbus.c revision 1.20.4.1 1 /* $NetBSD: ehci_cardbus.c,v 1.20.4.1 2008/05/16 02:23:53 yamt Exp $ */
2
3 /*
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Lennart Augustsson (lennart (at) augustsson.net) at
9 * Carlstedt Research & Technology.
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 #include <sys/cdefs.h>
34 __KERNEL_RCSID(0, "$NetBSD: ehci_cardbus.c,v 1.20.4.1 2008/05/16 02:23:53 yamt Exp $");
35
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/kernel.h>
39 #include <sys/device.h>
40 #include <sys/proc.h>
41
42 #include <sys/bus.h>
43
44 #if defined pciinc
45 #include <dev/pci/pcidevs.h>
46 #endif
47
48 #include <dev/cardbus/cardbusvar.h>
49 #include <dev/pci/pcidevs.h>
50
51 #include <dev/cardbus/usb_cardbus.h>
52
53 #include <dev/usb/usb.h>
54 #include <dev/usb/usbdi.h>
55 #include <dev/usb/usbdivar.h>
56 #include <dev/usb/usb_mem.h>
57
58 #include <dev/usb/ehcireg.h>
59 #include <dev/usb/ehcivar.h>
60
61 #ifdef EHCI_DEBUG
62 #define DPRINTF(x) if (ehcidebug) printf x
63 extern int ehcidebug;
64 #else
65 #define DPRINTF(x)
66 #endif
67
68 int ehci_cardbus_match(device_t, struct cfdata *, void *);
69 void ehci_cardbus_attach(device_t, device_t, void *);
70 int ehci_cardbus_detach(device_t, int);
71
72 struct ehci_cardbus_softc {
73 ehci_softc_t sc;
74 cardbus_chipset_tag_t sc_cc;
75 cardbus_function_tag_t sc_cf;
76 cardbus_devfunc_t sc_ct;
77 void *sc_ih; /* interrupt vectoring */
78 };
79
80 CFATTACH_DECL_NEW(ehci_cardbus, sizeof(struct ehci_cardbus_softc),
81 ehci_cardbus_match, ehci_cardbus_attach, ehci_cardbus_detach, ehci_activate);
82
83 #define CARDBUS_INTERFACE_EHCI PCI_INTERFACE_EHCI
84 #define CARDBUS_CBMEM PCI_CBMEM
85 #define cardbus_findvendor pci_findvendor
86 #define cardbus_devinfo pci_devinfo
87
88 static TAILQ_HEAD(, usb_cardbus) ehci_cardbus_alldevs =
89 TAILQ_HEAD_INITIALIZER(ehci_cardbus_alldevs);
90
91 int
92 ehci_cardbus_match(device_t parent, struct cfdata *match, void *aux)
93 {
94 struct cardbus_attach_args *ca = (struct cardbus_attach_args *)aux;
95
96 if (CARDBUS_CLASS(ca->ca_class) == CARDBUS_CLASS_SERIALBUS &&
97 CARDBUS_SUBCLASS(ca->ca_class) == CARDBUS_SUBCLASS_SERIALBUS_USB &&
98 CARDBUS_INTERFACE(ca->ca_class) == CARDBUS_INTERFACE_EHCI)
99 return (1);
100
101 return (0);
102 }
103
104 static bool
105 ehci_cardbus_suspend(device_t dv PMF_FN_ARGS)
106 {
107 ehci_suspend(dv PMF_FN_CALL);
108 #if 0
109 struct ehci_cardbus_softc *sc = device_private(dv);
110 ehci_release_ownership(&sc->sc, sc->sc_pc, sc->sc_tag);
111 #endif
112
113 return true;
114 }
115
116 static bool
117 ehci_cardbus_resume(device_t dv PMF_FN_ARGS)
118 {
119 #if 0
120 struct ehci_cardbus_softc *sc = device_private(dv);
121 ehci_get_ownership(&sc->sc, sc->sc_pc, sc->sc_tag);
122 #endif
123 return ehci_resume(dv PMF_FN_CALL);
124 }
125
126 void
127 ehci_cardbus_attach(device_t parent, device_t self, void *aux)
128 {
129 struct ehci_cardbus_softc *sc = device_private(self);
130 struct cardbus_attach_args *ca = aux;
131 cardbus_devfunc_t ct = ca->ca_ct;
132 cardbus_chipset_tag_t cc = ct->ct_cc;
133 cardbus_function_tag_t cf = ct->ct_cf;
134 cardbusreg_t csr;
135 char devinfo[256];
136 usbd_status r;
137 const char *vendor;
138 u_int ncomp;
139 const char *devname = device_xname(self);
140 struct usb_cardbus *up;
141
142 sc->sc.sc_dev = self;
143 sc->sc.sc_bus.hci_private = sc;
144
145 cardbus_devinfo(ca->ca_id, ca->ca_class, 0, devinfo, sizeof(devinfo));
146 printf(": %s (rev. 0x%02x)\n", devinfo,
147 CARDBUS_REVISION(ca->ca_class));
148
149 /* Map I/O registers */
150 if (Cardbus_mapreg_map(ct, CARDBUS_CBMEM, CARDBUS_MAPREG_TYPE_MEM, 0,
151 &sc->sc.iot, &sc->sc.ioh, NULL, &sc->sc.sc_size)) {
152 printf("%s: can't map mem space\n", devname);
153 return;
154 }
155
156 sc->sc_cc = cc;
157 sc->sc_cf = cf;
158 sc->sc_ct = ct;
159 sc->sc.sc_bus.dmatag = ca->ca_dmat;
160
161 #if rbus
162 #else
163 XXX (ct->ct_cf->cardbus_mem_open)(cc, 0, iob, iob + 0x40);
164 #endif
165 (ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_MEM_ENABLE);
166 (ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
167
168 /* Enable the device. */
169 csr = cardbus_conf_read(cc, cf, ca->ca_tag,
170 CARDBUS_COMMAND_STATUS_REG);
171 cardbus_conf_write(cc, cf, ca->ca_tag, CARDBUS_COMMAND_STATUS_REG,
172 csr | CARDBUS_COMMAND_MASTER_ENABLE
173 | CARDBUS_COMMAND_MEM_ENABLE);
174
175 /* Disable interrupts, so we don't get any spurious ones. */
176 sc->sc.sc_offs = EREAD1(&sc->sc, EHCI_CAPLENGTH);
177 DPRINTF(("%s: offs=%d\n", devname, sc->sc.sc_offs));
178 EOWRITE2(&sc->sc, EHCI_USBINTR, 0);
179
180 sc->sc_ih = cardbus_intr_establish(cc, cf, ca->ca_intrline,
181 IPL_USB, ehci_intr, sc);
182 if (sc->sc_ih == NULL) {
183 printf("%s: couldn't establish interrupt\n", devname);
184 return;
185 }
186 printf("%s: interrupting at %d\n", devname, ca->ca_intrline);
187
188 /* Figure out vendor for root hub descriptor. */
189 vendor = cardbus_findvendor(ca->ca_id);
190 sc->sc.sc_id_vendor = CARDBUS_VENDOR(ca->ca_id);
191 if (vendor)
192 strlcpy(sc->sc.sc_vendor, vendor, sizeof(sc->sc.sc_vendor));
193 else
194 snprintf(sc->sc.sc_vendor, sizeof(sc->sc.sc_vendor),
195 "vendor 0x%04x", CARDBUS_VENDOR(ca->ca_id));
196
197 /*
198 * Find companion controllers. According to the spec they always
199 * have lower function numbers so they should be enumerated already.
200 */
201 ncomp = 0;
202 TAILQ_FOREACH(up, &ehci_cardbus_alldevs, next) {
203 if (up->bus == ca->ca_bus) {
204 DPRINTF(("ehci_cardbus_attach: companion %s\n",
205 device_xname(up->usb)));
206 sc->sc.sc_comps[ncomp++] = up->usb;
207 if (ncomp >= EHCI_COMPANION_MAX)
208 break;
209 }
210 }
211 sc->sc.sc_ncomp = ncomp;
212
213 r = ehci_init(&sc->sc);
214 if (r != USBD_NORMAL_COMPLETION) {
215 printf("%s: init failed, error=%d\n", devname, r);
216
217 /* Avoid spurious interrupts. */
218 cardbus_intr_disestablish(sc->sc_cc, sc->sc_cf, sc->sc_ih);
219 sc->sc_ih = NULL;
220
221 return;
222 }
223
224 if (!pmf_device_register1(self, ehci_cardbus_suspend,
225 ehci_cardbus_resume, ehci_shutdown))
226 aprint_error_dev(self, "couldn't establish power handler\n");
227
228 /* Attach usb device. */
229 sc->sc.sc_child = config_found(self, &sc->sc.sc_bus, usbctlprint);
230 }
231
232 int
233 ehci_cardbus_detach(device_t self, int flags)
234 {
235 struct ehci_cardbus_softc *sc = device_private(self);
236 struct cardbus_devfunc *ct = sc->sc_ct;
237 int rv;
238
239 rv = ehci_detach(&sc->sc, flags);
240 if (rv)
241 return (rv);
242 if (sc->sc_ih != NULL) {
243 cardbus_intr_disestablish(sc->sc_cc, sc->sc_cf, sc->sc_ih);
244 sc->sc_ih = NULL;
245 }
246 if (sc->sc.sc_size) {
247 Cardbus_mapreg_unmap(ct, CARDBUS_CBMEM, sc->sc.iot,
248 sc->sc.ioh, sc->sc.sc_size);
249 sc->sc.sc_size = 0;
250 }
251 return (0);
252 }
253
254 void
255 usb_cardbus_add(struct usb_cardbus *up, struct cardbus_attach_args *ca, device_t bu)
256 {
257 TAILQ_INSERT_TAIL(&ehci_cardbus_alldevs, up, next);
258 up->bus = ca->ca_bus;
259 up->function = ca->ca_function;
260 up->usb = bu;
261 }
262
263 void
264 usb_cardbus_rem(struct usb_cardbus *up)
265 {
266 TAILQ_REMOVE(&ehci_cardbus_alldevs, up, next);
267 }
268