1 /* $NetBSD: ehci.c,v 1.285 2021/01/05 18:00:21 skrll Exp $ */ 2 3 /* 4 * Copyright (c) 2004-2012,2016,2020 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@augustsson.net), Charles M. Hannum, 9 * Jeremy Morse (jeremy.morse@gmail.com), Jared D. McNeill 10 * (jmcneill@invisible.ca). Matthew R. Green (mrg@eterna.com.au), and 11 * Nick Hudson . 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 1. Redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 23 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 24 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 25 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 26 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32 * POSSIBILITY OF SUCH DAMAGE. 33 */ 34 35 /* 36 * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller. 37 * 38 * The EHCI 1.0 spec can be found at 39 * http://www.intel.com/technology/usb/spec.htm 40 * and the USB 2.0 spec at 41 * http://www.usb.org/developers/docs/ 42 * 43 */ 44 45 /* 46 * TODO: 47 * 1) hold off explorations by companion controllers until ehci has started. 48 * 49 * 2) The hub driver needs to handle and schedule the transaction translator, 50 * to assign place in frame where different devices get to go. See chapter 51 * on hubs in USB 2.0 for details. 52 * 53 * 3) Command failures are not recovered correctly. 54 */ 55 56 #include <sys/cdefs.h> 57 __KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.285 2021/01/05 18:00:21 skrll Exp $"); 58 59 #include "ohci.h" 60 #include "uhci.h" 61 62 #ifdef _KERNEL_OPT 63 #include "opt_usb.h" 64 #endif 65 66 #include <sys/param.h> 67 68 #include <sys/bus.h> 69 #include <sys/cpu.h> 70 #include <sys/device.h> 71 #include <sys/kernel.h> 72 #include <sys/kmem.h> 73 #include <sys/mutex.h> 74 #include <sys/proc.h> 75 #include <sys/queue.h> 76 #include <sys/select.h> 77 #include <sys/sysctl.h> 78 #include <sys/systm.h> 79 #include <sys/reboot.h> 80 81 #include <machine/endian.h> 82 83 #include <dev/usb/usb.h> 84 #include <dev/usb/usbdi.h> 85 #include <dev/usb/usbdivar.h> 86 #include <dev/usb/usbhist.h> 87 #include <dev/usb/usb_mem.h> 88 #include <dev/usb/usb_quirks.h> 89 90 #include <dev/usb/ehcireg.h> 91 #include <dev/usb/ehcivar.h> 92 #include <dev/usb/usbroothub.h> 93 94 #ifdef USB_DEBUG 95 #ifndef EHCI_DEBUG 96 #define ehcidebug 0 97 #else 98 static int ehcidebug = 0; 99 100 SYSCTL_SETUP(sysctl_hw_ehci_setup, "sysctl hw.ehci setup") 101 { 102 int err; 103 const struct sysctlnode *rnode; 104 const struct sysctlnode *cnode; 105 106 err = sysctl_createv(clog, 0, NULL, &rnode, 107 CTLFLAG_PERMANENT, CTLTYPE_NODE, "ehci", 108 SYSCTL_DESCR("ehci global controls"), 109 NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL); 110 111 if (err) 112 goto fail; 113 114 /* control debugging printfs */ 115 err = sysctl_createv(clog, 0, &rnode, &cnode, 116 CTLFLAG_PERMANENT|CTLFLAG_READWRITE, CTLTYPE_INT, 117 "debug", SYSCTL_DESCR("Enable debugging output"), 118 NULL, 0, &ehcidebug, sizeof(ehcidebug), CTL_CREATE, CTL_EOL); 119 if (err) 120 goto fail; 121 122 return; 123 fail: 124 aprint_error("%s: sysctl_createv failed (err = %d)\n", __func__, err); 125 } 126 127 #endif /* EHCI_DEBUG */ 128 #endif /* USB_DEBUG */ 129 130 #define DPRINTF(FMT,A,B,C,D) USBHIST_LOG(ehcidebug,FMT,A,B,C,D) 131 #define DPRINTFN(N,FMT,A,B,C,D) USBHIST_LOGN(ehcidebug,N,FMT,A,B,C,D) 132 #define EHCIHIST_FUNC() USBHIST_FUNC() 133 #define EHCIHIST_CALLED() USBHIST_CALLED(ehcidebug) 134 135 struct ehci_pipe { 136 struct usbd_pipe pipe; 137 int nexttoggle; 138 139 ehci_soft_qh_t *sqh; 140 union { 141 /* Control pipe */ 142 struct { 143 usb_dma_t reqdma; 144 } ctrl; 145 /* Interrupt pipe */ 146 struct { 147 u_int length; 148 } intr; 149 /* Iso pipe */ 150 struct { 151 u_int next_frame; 152 u_int cur_xfers; 153 } isoc; 154 }; 155 }; 156 157 typedef TAILQ_HEAD(ex_completeq, ehci_xfer) ex_completeq_t; 158 159 Static usbd_status ehci_open(struct usbd_pipe *); 160 Static void ehci_poll(struct usbd_bus *); 161 Static void ehci_softintr(void *); 162 Static int ehci_intr1(ehci_softc_t *); 163 Static void ehci_check_qh_intr(ehci_softc_t *, struct ehci_xfer *, 164 ex_completeq_t *); 165 Static void ehci_check_itd_intr(ehci_softc_t *, struct ehci_xfer *, 166 ex_completeq_t *); 167 Static void ehci_check_sitd_intr(ehci_softc_t *, struct ehci_xfer *, 168 ex_completeq_t *); 169 Static void ehci_idone(struct ehci_xfer *, ex_completeq_t *); 170 Static void ehci_intrlist_timeout(void *); 171 Static void ehci_doorbell(void *); 172 Static void ehci_pcd(void *); 173 174 Static struct usbd_xfer * 175 ehci_allocx(struct usbd_bus *, unsigned int); 176 Static void ehci_freex(struct usbd_bus *, struct usbd_xfer *); 177 178 Static void ehci_get_lock(struct usbd_bus *, kmutex_t **); 179 Static bool ehci_dying(struct usbd_bus *); 180 Static int ehci_roothub_ctrl(struct usbd_bus *, 181 usb_device_request_t *, void *, int); 182 183 Static usbd_status ehci_root_intr_transfer(struct usbd_xfer *); 184 Static usbd_status ehci_root_intr_start(struct usbd_xfer *); 185 Static void ehci_root_intr_abort(struct usbd_xfer *); 186 Static void ehci_root_intr_close(struct usbd_pipe *); 187 Static void ehci_root_intr_done(struct usbd_xfer *); 188 189 Static int ehci_device_ctrl_init(struct usbd_xfer *); 190 Static void ehci_device_ctrl_fini(struct usbd_xfer *); 191 Static usbd_status ehci_device_ctrl_transfer(struct usbd_xfer *); 192 Static usbd_status ehci_device_ctrl_start(struct usbd_xfer *); 193 Static void ehci_device_ctrl_abort(struct usbd_xfer *); 194 Static void ehci_device_ctrl_close(struct usbd_pipe *); 195 Static void ehci_device_ctrl_done(struct usbd_xfer *); 196 197 Static int ehci_device_bulk_init(struct usbd_xfer *); 198 Static void ehci_device_bulk_fini(struct usbd_xfer *); 199 Static usbd_status ehci_device_bulk_transfer(struct usbd_xfer *); 200 Static usbd_status ehci_device_bulk_start(struct usbd_xfer *); 201 Static void ehci_device_bulk_abort(struct usbd_xfer *); 202 Static void ehci_device_bulk_close(struct usbd_pipe *); 203 Static void ehci_device_bulk_done(struct usbd_xfer *); 204 205 Static int ehci_device_intr_init(struct usbd_xfer *); 206 Static void ehci_device_intr_fini(struct usbd_xfer *); 207 Static usbd_status ehci_device_intr_transfer(struct usbd_xfer *); 208 Static usbd_status ehci_device_intr_start(struct usbd_xfer *); 209 Static void ehci_device_intr_abort(struct usbd_xfer *); 210 Static void ehci_device_intr_close(struct usbd_pipe *); 211 Static void ehci_device_intr_done(struct usbd_xfer *); 212 213 Static int ehci_device_isoc_init(struct usbd_xfer *); 214 Static void ehci_device_isoc_fini(struct usbd_xfer *); 215 Static usbd_status ehci_device_isoc_transfer(struct usbd_xfer *); 216 Static void ehci_device_isoc_abort(struct usbd_xfer *); 217 Static void ehci_device_isoc_close(struct usbd_pipe *); 218 Static void ehci_device_isoc_done(struct usbd_xfer *); 219 220 Static int ehci_device_fs_isoc_init(struct usbd_xfer *); 221 Static void ehci_device_fs_isoc_fini(struct usbd_xfer *); 222 Static usbd_status ehci_device_fs_isoc_transfer(struct usbd_xfer *); 223 Static void ehci_device_fs_isoc_abort(struct usbd_xfer *); 224 Static void ehci_device_fs_isoc_close(struct usbd_pipe *); 225 Static void ehci_device_fs_isoc_done(struct usbd_xfer *); 226 227 Static void ehci_device_clear_toggle(struct usbd_pipe *); 228 Static void ehci_noop(struct usbd_pipe *); 229 230 Static void ehci_disown(ehci_softc_t *, int, int); 231 232 Static ehci_soft_qh_t * ehci_alloc_sqh(ehci_softc_t *); 233 Static void ehci_free_sqh(ehci_softc_t *, ehci_soft_qh_t *); 234 235 Static ehci_soft_qtd_t *ehci_alloc_sqtd(ehci_softc_t *); 236 Static void ehci_free_sqtd(ehci_softc_t *, ehci_soft_qtd_t *); 237 Static int ehci_alloc_sqtd_chain(ehci_softc_t *, 238 struct usbd_xfer *, int, int, ehci_soft_qtd_t **); 239 Static void ehci_free_sqtds(ehci_softc_t *, struct ehci_xfer *); 240 241 Static void ehci_reset_sqtd_chain(ehci_softc_t *, struct usbd_xfer *, 242 int, int, int *, ehci_soft_qtd_t **); 243 Static void ehci_append_sqtd(ehci_soft_qtd_t *, ehci_soft_qtd_t *); 244 245 Static ehci_soft_itd_t *ehci_alloc_itd(ehci_softc_t *); 246 Static ehci_soft_sitd_t * 247 ehci_alloc_sitd(ehci_softc_t *); 248 249 Static void ehci_remove_itd_chain(ehci_softc_t *, ehci_soft_itd_t *); 250 Static void ehci_remove_sitd_chain(ehci_softc_t *, ehci_soft_sitd_t *); 251 Static void ehci_free_itd_chain(ehci_softc_t *, ehci_soft_itd_t *); 252 Static void ehci_free_sitd_chain(ehci_softc_t *, ehci_soft_sitd_t *); 253 254 static inline void 255 ehci_free_itd_locked(ehci_softc_t *sc, ehci_soft_itd_t *itd) 256 { 257 258 LIST_INSERT_HEAD(&sc->sc_freeitds, itd, free_list); 259 } 260 261 static inline void 262 ehci_free_sitd_locked(ehci_softc_t *sc, ehci_soft_sitd_t *sitd) 263 { 264 265 LIST_INSERT_HEAD(&sc->sc_freesitds, sitd, free_list); 266 } 267 268 Static void ehci_abort_isoc_xfer(struct usbd_xfer *, usbd_status); 269 270 Static usbd_status ehci_device_setintr(ehci_softc_t *, ehci_soft_qh_t *, 271 int); 272 273 Static void ehci_add_qh(ehci_softc_t *, ehci_soft_qh_t *, 274 ehci_soft_qh_t *); 275 Static void ehci_rem_qh(ehci_softc_t *, ehci_soft_qh_t *, 276 ehci_soft_qh_t *); 277 Static void ehci_set_qh_qtd(ehci_soft_qh_t *, ehci_soft_qtd_t *); 278 Static void ehci_sync_hc(ehci_softc_t *); 279 280 Static void ehci_close_pipe(struct usbd_pipe *, ehci_soft_qh_t *); 281 Static void ehci_abortx(struct usbd_xfer *); 282 283 #ifdef EHCI_DEBUG 284 Static ehci_softc_t *theehci; 285 void ehci_dump(void); 286 #endif 287 288 #ifdef EHCI_DEBUG 289 Static void ehci_dump_regs(ehci_softc_t *); 290 Static void ehci_dump_sqtds(ehci_soft_qtd_t *); 291 Static void ehci_dump_sqtd(ehci_soft_qtd_t *); 292 Static void ehci_dump_qtd(ehci_qtd_t *); 293 Static void ehci_dump_sqh(ehci_soft_qh_t *); 294 Static void ehci_dump_sitd(struct ehci_soft_itd *); 295 Static void ehci_dump_itds(ehci_soft_itd_t *); 296 Static void ehci_dump_itd(struct ehci_soft_itd *); 297 Static void ehci_dump_exfer(struct ehci_xfer *); 298 #endif 299 300 #define EHCI_NULL htole32(EHCI_LINK_TERMINATE) 301 302 static inline void 303 ehci_add_intr_list(ehci_softc_t *sc, struct ehci_xfer *ex) 304 { 305 306 TAILQ_INSERT_TAIL(&sc->sc_intrhead, ex, ex_next); 307 } 308 309 static inline void 310 ehci_del_intr_list(ehci_softc_t *sc, struct ehci_xfer *ex) 311 { 312 313 TAILQ_REMOVE(&sc->sc_intrhead, ex, ex_next); 314 } 315 316 Static const struct usbd_bus_methods ehci_bus_methods = { 317 .ubm_open = ehci_open, 318 .ubm_softint = ehci_softintr, 319 .ubm_dopoll = ehci_poll, 320 .ubm_allocx = ehci_allocx, 321 .ubm_freex = ehci_freex, 322 .ubm_abortx = ehci_abortx, 323 .ubm_dying = ehci_dying, 324 .ubm_getlock = ehci_get_lock, 325 .ubm_rhctrl = ehci_roothub_ctrl, 326 }; 327 328 Static const struct usbd_pipe_methods ehci_root_intr_methods = { 329 .upm_transfer = ehci_root_intr_transfer, 330 .upm_start = ehci_root_intr_start, 331 .upm_abort = ehci_root_intr_abort, 332 .upm_close = ehci_root_intr_close, 333 .upm_cleartoggle = ehci_noop, 334 .upm_done = ehci_root_intr_done, 335 }; 336 337 Static const struct usbd_pipe_methods ehci_device_ctrl_methods = { 338 .upm_init = ehci_device_ctrl_init, 339 .upm_fini = ehci_device_ctrl_fini, 340 .upm_transfer = ehci_device_ctrl_transfer, 341 .upm_start = ehci_device_ctrl_start, 342 .upm_abort = ehci_device_ctrl_abort, 343 .upm_close = ehci_device_ctrl_close, 344 .upm_cleartoggle = ehci_noop, 345 .upm_done = ehci_device_ctrl_done, 346 }; 347 348 Static const struct usbd_pipe_methods ehci_device_intr_methods = { 349 .upm_init = ehci_device_intr_init, 350 .upm_fini = ehci_device_intr_fini, 351 .upm_transfer = ehci_device_intr_transfer, 352 .upm_start = ehci_device_intr_start, 353 .upm_abort = ehci_device_intr_abort, 354 .upm_close = ehci_device_intr_close, 355 .upm_cleartoggle = ehci_device_clear_toggle, 356 .upm_done = ehci_device_intr_done, 357 }; 358 359 Static const struct usbd_pipe_methods ehci_device_bulk_methods = { 360 .upm_init = ehci_device_bulk_init, 361 .upm_fini = ehci_device_bulk_fini, 362 .upm_transfer = ehci_device_bulk_transfer, 363 .upm_start = ehci_device_bulk_start, 364 .upm_abort = ehci_device_bulk_abort, 365 .upm_close = ehci_device_bulk_close, 366 .upm_cleartoggle = ehci_device_clear_toggle, 367 .upm_done = ehci_device_bulk_done, 368 }; 369 370 Static const struct usbd_pipe_methods ehci_device_isoc_methods = { 371 .upm_init = ehci_device_isoc_init, 372 .upm_fini = ehci_device_isoc_fini, 373 .upm_transfer = ehci_device_isoc_transfer, 374 .upm_abort = ehci_device_isoc_abort, 375 .upm_close = ehci_device_isoc_close, 376 .upm_cleartoggle = ehci_noop, 377 .upm_done = ehci_device_isoc_done, 378 }; 379 380 Static const struct usbd_pipe_methods ehci_device_fs_isoc_methods = { 381 .upm_init = ehci_device_fs_isoc_init, 382 .upm_fini = ehci_device_fs_isoc_fini, 383 .upm_transfer = ehci_device_fs_isoc_transfer, 384 .upm_abort = ehci_device_fs_isoc_abort, 385 .upm_close = ehci_device_fs_isoc_close, 386 .upm_cleartoggle = ehci_noop, 387 .upm_done = ehci_device_fs_isoc_done, 388 }; 389 390 static const uint8_t revbits[EHCI_MAX_POLLRATE] = { 391 0x00,0x40,0x20,0x60,0x10,0x50,0x30,0x70,0x08,0x48,0x28,0x68,0x18,0x58,0x38,0x78, 392 0x04,0x44,0x24,0x64,0x14,0x54,0x34,0x74,0x0c,0x4c,0x2c,0x6c,0x1c,0x5c,0x3c,0x7c, 393 0x02,0x42,0x22,0x62,0x12,0x52,0x32,0x72,0x0a,0x4a,0x2a,0x6a,0x1a,0x5a,0x3a,0x7a, 394 0x06,0x46,0x26,0x66,0x16,0x56,0x36,0x76,0x0e,0x4e,0x2e,0x6e,0x1e,0x5e,0x3e,0x7e, 395 0x01,0x41,0x21,0x61,0x11,0x51,0x31,0x71,0x09,0x49,0x29,0x69,0x19,0x59,0x39,0x79, 396 0x05,0x45,0x25,0x65,0x15,0x55,0x35,0x75,0x0d,0x4d,0x2d,0x6d,0x1d,0x5d,0x3d,0x7d, 397 0x03,0x43,0x23,0x63,0x13,0x53,0x33,0x73,0x0b,0x4b,0x2b,0x6b,0x1b,0x5b,0x3b,0x7b, 398 0x07,0x47,0x27,0x67,0x17,0x57,0x37,0x77,0x0f,0x4f,0x2f,0x6f,0x1f,0x5f,0x3f,0x7f, 399 }; 400 401 int 402 ehci_init(ehci_softc_t *sc) 403 { 404 uint32_t vers, sparams, cparams, hcr; 405 u_int i; 406 usbd_status err; 407 ehci_soft_qh_t *sqh; 408 u_int ncomp; 409 410 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 411 #ifdef EHCI_DEBUG 412 theehci = sc; 413 #endif 414 415 mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_SOFTUSB); 416 mutex_init(&sc->sc_intr_lock, MUTEX_DEFAULT, IPL_USB); 417 cv_init(&sc->sc_doorbell, "ehcidb"); 418 419 sc->sc_xferpool = pool_cache_init(sizeof(struct ehci_xfer), 0, 0, 0, 420 "ehcixfer", NULL, IPL_USB, NULL, NULL, NULL); 421 422 sc->sc_doorbell_si = softint_establish(SOFTINT_USB | SOFTINT_MPSAFE, 423 ehci_doorbell, sc); 424 KASSERT(sc->sc_doorbell_si != NULL); 425 sc->sc_pcd_si = softint_establish(SOFTINT_USB | SOFTINT_MPSAFE, 426 ehci_pcd, sc); 427 KASSERT(sc->sc_pcd_si != NULL); 428 429 sc->sc_offs = EREAD1(sc, EHCI_CAPLENGTH); 430 431 vers = EREAD2(sc, EHCI_HCIVERSION); 432 aprint_verbose("%s: EHCI version %x.%x\n", device_xname(sc->sc_dev), 433 vers >> 8, vers & 0xff); 434 435 sparams = EREAD4(sc, EHCI_HCSPARAMS); 436 DPRINTF("sparams=%#jx", sparams, 0, 0, 0); 437 sc->sc_npcomp = EHCI_HCS_N_PCC(sparams); 438 ncomp = EHCI_HCS_N_CC(sparams); 439 if (ncomp != sc->sc_ncomp) { 440 aprint_verbose("%s: wrong number of companions (%d != %d)\n", 441 device_xname(sc->sc_dev), ncomp, sc->sc_ncomp); 442 #if NOHCI == 0 || NUHCI == 0 443 aprint_error("%s: ohci or uhci probably not configured\n", 444 device_xname(sc->sc_dev)); 445 #endif 446 if (ncomp < sc->sc_ncomp) 447 sc->sc_ncomp = ncomp; 448 } 449 if (sc->sc_ncomp > 0) { 450 KASSERT(!(sc->sc_flags & EHCIF_ETTF)); 451 aprint_normal_dev(sc->sc_dev, 452 "%d companion controller%s, %d port%s%s", 453 sc->sc_ncomp, 454 sc->sc_ncomp!=1 ? "s" : "", 455 EHCI_HCS_N_PCC(sparams), 456 EHCI_HCS_N_PCC(sparams)!=1 ? "s" : "", 457 sc->sc_ncomp!=1 ? " each" : ""); 458 if (sc->sc_comps[0]) { 459 aprint_normal(":"); 460 for (i = 0; i < sc->sc_ncomp; i++) 461 aprint_normal(" %s", 462 device_xname(sc->sc_comps[i])); 463 } 464 aprint_normal("\n"); 465 466 mutex_init(&sc->sc_complock, MUTEX_DEFAULT, IPL_USB); 467 callout_init(&sc->sc_compcallout, CALLOUT_MPSAFE); 468 cv_init(&sc->sc_compcv, "ehciccv"); 469 sc->sc_comp_state = CO_EARLY; 470 } 471 sc->sc_noport = EHCI_HCS_N_PORTS(sparams); 472 sc->sc_hasppc = EHCI_HCS_PPC(sparams); 473 474 cparams = EREAD4(sc, EHCI_HCCPARAMS); 475 DPRINTF("cparams=%#jx", cparams, 0, 0, 0); 476 477 if (EHCI_HCC_64BIT(cparams)) { 478 /* MUST clear segment register if 64 bit capable. */ 479 EOWRITE4(sc, EHCI_CTRLDSSEGMENT, 0); 480 } 481 482 if (cparams & EHCI_HCC_IST_FULLFRAME) { 483 sc->sc_istthreshold = 0; 484 } else { 485 sc->sc_istthreshold = EHCI_HCC_GET_IST_THRESHOLD(cparams); 486 } 487 488 sc->sc_bus.ub_revision = USBREV_2_0; 489 sc->sc_bus.ub_usedma = true; 490 sc->sc_bus.ub_dmaflags = USBMALLOC_MULTISEG; 491 492 /* Reset the controller */ 493 DPRINTF("resetting", 0, 0, 0, 0); 494 EOWRITE4(sc, EHCI_USBCMD, 0); /* Halt controller */ 495 usb_delay_ms(&sc->sc_bus, 1); 496 EOWRITE4(sc, EHCI_USBCMD, EHCI_CMD_HCRESET); 497 for (i = 0; i < 100; i++) { 498 usb_delay_ms(&sc->sc_bus, 1); 499 hcr = EOREAD4(sc, EHCI_USBCMD) & EHCI_CMD_HCRESET; 500 if (!hcr) 501 break; 502 } 503 if (hcr) { 504 aprint_error("%s: reset timeout\n", device_xname(sc->sc_dev)); 505 return EIO; 506 } 507 if (sc->sc_vendor_init) 508 sc->sc_vendor_init(sc); 509 510 /* XXX need proper intr scheduling */ 511 sc->sc_rand = 96; 512 513 /* frame list size at default, read back what we got and use that */ 514 switch (EHCI_CMD_FLS(EOREAD4(sc, EHCI_USBCMD))) { 515 case 0: sc->sc_flsize = 1024; break; 516 case 1: sc->sc_flsize = 512; break; 517 case 2: sc->sc_flsize = 256; break; 518 case 3: return EIO; 519 } 520 err = usb_allocmem(&sc->sc_bus, sc->sc_flsize * sizeof(ehci_link_t), 521 EHCI_FLALIGN_ALIGN, USBMALLOC_COHERENT, &sc->sc_fldma); 522 if (err) 523 return err; 524 DPRINTF("flsize=%jd", sc->sc_flsize, 0, 0, 0); 525 sc->sc_flist = KERNADDR(&sc->sc_fldma, 0); 526 527 for (i = 0; i < sc->sc_flsize; i++) { 528 sc->sc_flist[i] = EHCI_NULL; 529 } 530 531 EOWRITE4(sc, EHCI_PERIODICLISTBASE, DMAADDR(&sc->sc_fldma, 0)); 532 533 sc->sc_softitds = kmem_zalloc(sc->sc_flsize * sizeof(ehci_soft_itd_t *), 534 KM_SLEEP); 535 LIST_INIT(&sc->sc_freeitds); 536 LIST_INIT(&sc->sc_freesitds); 537 TAILQ_INIT(&sc->sc_intrhead); 538 539 /* Set up the bus struct. */ 540 sc->sc_bus.ub_methods = &ehci_bus_methods; 541 sc->sc_bus.ub_pipesize = sizeof(struct ehci_pipe); 542 543 sc->sc_eintrs = EHCI_NORMAL_INTRS; 544 545 /* 546 * Allocate the interrupt dummy QHs. These are arranged to give poll 547 * intervals that are powers of 2 times 1ms. 548 */ 549 for (i = 0; i < EHCI_INTRQHS; i++) { 550 sqh = ehci_alloc_sqh(sc); 551 if (sqh == NULL) { 552 err = ENOMEM; 553 goto bad1; 554 } 555 sc->sc_islots[i].sqh = sqh; 556 } 557 for (i = 0; i < EHCI_INTRQHS; i++) { 558 sqh = sc->sc_islots[i].sqh; 559 if (i == 0) { 560 /* The last (1ms) QH terminates. */ 561 sqh->qh.qh_link = EHCI_NULL; 562 sqh->next = NULL; 563 } else { 564 /* Otherwise the next QH has half the poll interval */ 565 sqh->next = sc->sc_islots[(i + 1) / 2 - 1].sqh; 566 sqh->qh.qh_link = htole32(sqh->next->physaddr | 567 EHCI_LINK_QH); 568 } 569 sqh->qh.qh_endp = htole32(EHCI_QH_SET_EPS(EHCI_QH_SPEED_HIGH)); 570 sqh->qh.qh_endphub = htole32(EHCI_QH_SET_MULT(1)); 571 sqh->qh.qh_curqtd = EHCI_NULL; 572 sqh->qh.qh_qtd.qtd_next = EHCI_NULL; 573 sqh->qh.qh_qtd.qtd_altnext = EHCI_NULL; 574 sqh->qh.qh_qtd.qtd_status = htole32(EHCI_QTD_HALTED); 575 sqh->sqtd = NULL; 576 usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), 577 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 578 } 579 /* Point the frame list at the last level (128ms). */ 580 for (i = 0; i < sc->sc_flsize; i++) { 581 int j; 582 583 j = (i & ~(EHCI_MAX_POLLRATE-1)) | 584 revbits[i & (EHCI_MAX_POLLRATE-1)]; 585 sc->sc_flist[j] = htole32(EHCI_LINK_QH | 586 sc->sc_islots[EHCI_IQHIDX(EHCI_IPOLLRATES - 1, 587 i)].sqh->physaddr); 588 } 589 usb_syncmem(&sc->sc_fldma, 0, sc->sc_flsize * sizeof(ehci_link_t), 590 BUS_DMASYNC_PREWRITE); 591 592 /* Allocate dummy QH that starts the async list. */ 593 sqh = ehci_alloc_sqh(sc); 594 if (sqh == NULL) { 595 err = ENOMEM; 596 goto bad1; 597 } 598 /* Fill the QH */ 599 sqh->qh.qh_endp = 600 htole32(EHCI_QH_SET_EPS(EHCI_QH_SPEED_HIGH) | EHCI_QH_HRECL); 601 sqh->qh.qh_link = 602 htole32(sqh->physaddr | EHCI_LINK_QH); 603 sqh->qh.qh_curqtd = EHCI_NULL; 604 sqh->next = NULL; 605 /* Fill the overlay qTD */ 606 sqh->qh.qh_qtd.qtd_next = EHCI_NULL; 607 sqh->qh.qh_qtd.qtd_altnext = EHCI_NULL; 608 sqh->qh.qh_qtd.qtd_status = htole32(EHCI_QTD_HALTED); 609 sqh->sqtd = NULL; 610 usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), 611 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 612 #ifdef EHCI_DEBUG 613 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 614 ehci_dump_sqh(sqh); 615 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 616 #endif 617 618 /* Point to async list */ 619 sc->sc_async_head = sqh; 620 EOWRITE4(sc, EHCI_ASYNCLISTADDR, sqh->physaddr | EHCI_LINK_QH); 621 622 callout_init(&sc->sc_tmo_intrlist, CALLOUT_MPSAFE); 623 624 /* Turn on controller */ 625 EOWRITE4(sc, EHCI_USBCMD, 626 EHCI_CMD_ITC_2 | /* 2 microframes interrupt delay */ 627 (EOREAD4(sc, EHCI_USBCMD) & EHCI_CMD_FLS_M) | 628 EHCI_CMD_ASE | 629 EHCI_CMD_PSE | 630 EHCI_CMD_RS); 631 632 /* Take over port ownership */ 633 EOWRITE4(sc, EHCI_CONFIGFLAG, EHCI_CONF_CF); 634 635 for (i = 0; i < 100; i++) { 636 usb_delay_ms(&sc->sc_bus, 1); 637 hcr = EOREAD4(sc, EHCI_USBSTS) & EHCI_STS_HCH; 638 if (!hcr) 639 break; 640 } 641 if (hcr) { 642 aprint_error("%s: run timeout\n", device_xname(sc->sc_dev)); 643 return EIO; 644 } 645 646 /* Enable interrupts */ 647 DPRINTF("enabling interrupts", 0, 0, 0, 0); 648 EOWRITE4(sc, EHCI_USBINTR, sc->sc_eintrs); 649 650 return 0; 651 652 #if 0 653 bad2: 654 ehci_free_sqh(sc, sc->sc_async_head); 655 #endif 656 bad1: 657 usb_freemem(&sc->sc_bus, &sc->sc_fldma); 658 return err; 659 } 660 661 int 662 ehci_intr(void *v) 663 { 664 ehci_softc_t *sc = v; 665 int ret = 0; 666 667 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 668 669 if (sc == NULL) 670 return 0; 671 672 mutex_spin_enter(&sc->sc_intr_lock); 673 674 if (sc->sc_dying || !device_has_power(sc->sc_dev)) 675 goto done; 676 677 /* If we get an interrupt while polling, then just ignore it. */ 678 if (sc->sc_bus.ub_usepolling) { 679 uint32_t intrs = EHCI_STS_INTRS(EOREAD4(sc, EHCI_USBSTS)); 680 681 if (intrs) 682 EOWRITE4(sc, EHCI_USBSTS, intrs); /* Acknowledge */ 683 DPRINTFN(16, "ignored interrupt while polling", 0, 0, 0, 0); 684 goto done; 685 } 686 687 ret = ehci_intr1(sc); 688 689 done: 690 mutex_spin_exit(&sc->sc_intr_lock); 691 return ret; 692 } 693 694 Static int 695 ehci_intr1(ehci_softc_t *sc) 696 { 697 uint32_t intrs, eintrs; 698 699 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 700 701 /* In case the interrupt occurs before initialization has completed. */ 702 if (sc == NULL) { 703 #ifdef DIAGNOSTIC 704 printf("ehci_intr1: sc == NULL\n"); 705 #endif 706 return 0; 707 } 708 709 KASSERT(mutex_owned(&sc->sc_intr_lock)); 710 711 intrs = EHCI_STS_INTRS(EOREAD4(sc, EHCI_USBSTS)); 712 if (!intrs) 713 return 0; 714 715 eintrs = intrs & sc->sc_eintrs; 716 DPRINTF("sc=%#jx intrs=%#jx(%#jx) eintrs=%#jx", (uintptr_t)sc, intrs, 717 EOREAD4(sc, EHCI_USBSTS), eintrs); 718 if (!eintrs) 719 return 0; 720 721 EOWRITE4(sc, EHCI_USBSTS, intrs); /* Acknowledge */ 722 if (eintrs & EHCI_STS_IAA) { 723 DPRINTF("door bell", 0, 0, 0, 0); 724 kpreempt_disable(); 725 KASSERT(sc->sc_doorbell_si != NULL); 726 softint_schedule(sc->sc_doorbell_si); 727 kpreempt_enable(); 728 eintrs &= ~EHCI_STS_IAA; 729 } 730 if (eintrs & (EHCI_STS_INT | EHCI_STS_ERRINT)) { 731 DPRINTF("INT=%jd ERRINT=%jd", 732 eintrs & EHCI_STS_INT ? 1 : 0, 733 eintrs & EHCI_STS_ERRINT ? 1 : 0, 0, 0); 734 usb_schedsoftintr(&sc->sc_bus); 735 eintrs &= ~(EHCI_STS_INT | EHCI_STS_ERRINT); 736 } 737 if (eintrs & EHCI_STS_HSE) { 738 printf("%s: unrecoverable error, controller halted\n", 739 device_xname(sc->sc_dev)); 740 /* XXX what else */ 741 } 742 if (eintrs & EHCI_STS_PCD) { 743 kpreempt_disable(); 744 KASSERT(sc->sc_pcd_si != NULL); 745 softint_schedule(sc->sc_pcd_si); 746 kpreempt_enable(); 747 eintrs &= ~EHCI_STS_PCD; 748 } 749 750 if (eintrs != 0) { 751 /* Block unprocessed interrupts. */ 752 sc->sc_eintrs &= ~eintrs; 753 EOWRITE4(sc, EHCI_USBINTR, sc->sc_eintrs); 754 printf("%s: blocking intrs %#x\n", 755 device_xname(sc->sc_dev), eintrs); 756 } 757 758 return 1; 759 } 760 761 Static void 762 ehci_doorbell(void *addr) 763 { 764 ehci_softc_t *sc = addr; 765 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 766 767 mutex_enter(&sc->sc_lock); 768 cv_broadcast(&sc->sc_doorbell); 769 mutex_exit(&sc->sc_lock); 770 } 771 772 Static void 773 ehci_pcd(void *addr) 774 { 775 ehci_softc_t *sc = addr; 776 struct usbd_xfer *xfer; 777 u_char *p; 778 int i, m; 779 780 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 781 782 mutex_enter(&sc->sc_lock); 783 xfer = sc->sc_intrxfer; 784 785 if (xfer == NULL) { 786 /* Just ignore the change. */ 787 goto done; 788 } 789 KASSERT(xfer->ux_status == USBD_IN_PROGRESS); 790 791 p = xfer->ux_buf; 792 m = uimin(sc->sc_noport, xfer->ux_length * 8 - 1); 793 memset(p, 0, xfer->ux_length); 794 for (i = 1; i <= m; i++) { 795 /* Pick out CHANGE bits from the status reg. */ 796 if (EOREAD4(sc, EHCI_PORTSC(i)) & EHCI_PS_CLEAR) 797 p[i/8] |= 1 << (i%8); 798 if (i % 8 == 7) 799 DPRINTF("change(%jd)=0x%02jx", i / 8, p[i/8], 0, 0); 800 } 801 xfer->ux_actlen = xfer->ux_length; 802 xfer->ux_status = USBD_NORMAL_COMPLETION; 803 804 usb_transfer_complete(xfer); 805 806 done: 807 mutex_exit(&sc->sc_lock); 808 } 809 810 Static void 811 ehci_softintr(void *v) 812 { 813 struct usbd_bus *bus = v; 814 ehci_softc_t *sc = EHCI_BUS2SC(bus); 815 struct ehci_xfer *ex, *nextex; 816 817 KASSERT(sc->sc_bus.ub_usepolling || mutex_owned(&sc->sc_lock)); 818 819 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 820 821 ex_completeq_t cq; 822 TAILQ_INIT(&cq); 823 824 /* 825 * The only explanation I can think of for why EHCI is as brain dead 826 * as UHCI interrupt-wise is that Intel was involved in both. 827 * An interrupt just tells us that something is done, we have no 828 * clue what, so we need to scan through all active transfers. :-( 829 */ 830 831 /* 832 * ehci_idone will remove transfer from sc->sc_intrhead if it's 833 * complete and add to our cq list 834 * 835 */ 836 TAILQ_FOREACH_SAFE(ex, &sc->sc_intrhead, ex_next, nextex) { 837 switch (ex->ex_type) { 838 case EX_CTRL: 839 case EX_BULK: 840 case EX_INTR: 841 ehci_check_qh_intr(sc, ex, &cq); 842 break; 843 case EX_ISOC: 844 ehci_check_itd_intr(sc, ex, &cq); 845 break; 846 case EX_FS_ISOC: 847 ehci_check_sitd_intr(sc, ex, &cq); 848 break; 849 default: 850 KASSERT(false); 851 } 852 853 } 854 855 /* 856 * We abuse ex_next for the interrupt and complete lists and 857 * interrupt transfers will get re-added here so use 858 * the _SAFE version of TAILQ_FOREACH. 859 */ 860 TAILQ_FOREACH_SAFE(ex, &cq, ex_next, nextex) { 861 usb_transfer_complete(&ex->ex_xfer); 862 } 863 864 /* Schedule a callout to catch any dropped transactions. */ 865 if ((sc->sc_flags & EHCIF_DROPPED_INTR_WORKAROUND) && 866 !TAILQ_EMPTY(&sc->sc_intrhead)) 867 callout_reset(&sc->sc_tmo_intrlist, 868 hz, ehci_intrlist_timeout, sc); 869 } 870 871 Static void 872 ehci_check_qh_intr(ehci_softc_t *sc, struct ehci_xfer *ex, ex_completeq_t *cq) 873 { 874 ehci_soft_qtd_t *sqtd, *fsqtd, *lsqtd; 875 uint32_t status; 876 877 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 878 879 KASSERT(sc->sc_bus.ub_usepolling || mutex_owned(&sc->sc_lock)); 880 881 if (ex->ex_type == EX_CTRL) { 882 fsqtd = ex->ex_setup; 883 lsqtd = ex->ex_status; 884 } else { 885 fsqtd = ex->ex_sqtdstart; 886 lsqtd = ex->ex_sqtdend; 887 } 888 KASSERTMSG(fsqtd != NULL && lsqtd != NULL, 889 "xfer %p xt %d fsqtd %p lsqtd %p", ex, ex->ex_type, fsqtd, lsqtd); 890 891 /* 892 * If the last TD is still active we need to check whether there 893 * is an error somewhere in the middle, or whether there was a 894 * short packet (SPD and not ACTIVE). 895 */ 896 usb_syncmem(&lsqtd->dma, 897 lsqtd->offs + offsetof(ehci_qtd_t, qtd_status), 898 sizeof(lsqtd->qtd.qtd_status), 899 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 900 status = le32toh(lsqtd->qtd.qtd_status); 901 usb_syncmem(&lsqtd->dma, 902 lsqtd->offs + offsetof(ehci_qtd_t, qtd_status), 903 sizeof(lsqtd->qtd.qtd_status), BUS_DMASYNC_PREREAD); 904 if (status & EHCI_QTD_ACTIVE) { 905 DPRINTFN(10, "active ex=%#jx", (uintptr_t)ex, 0, 0, 0); 906 907 /* last qTD has already been checked */ 908 for (sqtd = fsqtd; sqtd != lsqtd; sqtd = sqtd->nextqtd) { 909 usb_syncmem(&sqtd->dma, 910 sqtd->offs + offsetof(ehci_qtd_t, qtd_status), 911 sizeof(sqtd->qtd.qtd_status), 912 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 913 status = le32toh(sqtd->qtd.qtd_status); 914 usb_syncmem(&sqtd->dma, 915 sqtd->offs + offsetof(ehci_qtd_t, qtd_status), 916 sizeof(sqtd->qtd.qtd_status), BUS_DMASYNC_PREREAD); 917 /* If there's an active QTD the xfer isn't done. */ 918 if (status & EHCI_QTD_ACTIVE) 919 break; 920 /* Any kind of error makes the xfer done. */ 921 if (status & EHCI_QTD_HALTED) 922 goto done; 923 /* Handle short packets */ 924 if (EHCI_QTD_GET_BYTES(status) != 0) { 925 /* 926 * If we get here for a control transfer then 927 * we need to let the hardware complete the 928 * status phase. That is, we're not done 929 * quite yet. 930 * 931 * Otherwise, we're done. 932 */ 933 if (ex->ex_type == EX_CTRL) { 934 break; 935 } 936 goto done; 937 } 938 } 939 DPRINTFN(10, "ex=%#jx std=%#jx still active", 940 (uintptr_t)ex, (uintptr_t)ex->ex_sqtdstart, 0, 0); 941 #ifdef EHCI_DEBUG 942 DPRINTFN(5, "--- still active start ---", 0, 0, 0, 0); 943 ehci_dump_sqtds(ex->ex_sqtdstart); 944 DPRINTFN(5, "--- still active end ---", 0, 0, 0, 0); 945 #endif 946 return; 947 } 948 done: 949 DPRINTFN(10, "ex=%#jx done", (uintptr_t)ex, 0, 0, 0); 950 ehci_idone(ex, cq); 951 } 952 953 Static void 954 ehci_check_itd_intr(ehci_softc_t *sc, struct ehci_xfer *ex, ex_completeq_t *cq) 955 { 956 ehci_soft_itd_t *itd; 957 int i; 958 959 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 960 961 KASSERT(mutex_owned(&sc->sc_lock)); 962 963 if (&ex->ex_xfer != SIMPLEQ_FIRST(&ex->ex_xfer.ux_pipe->up_queue)) 964 return; 965 966 KASSERTMSG(ex->ex_itdstart != NULL && ex->ex_itdend != NULL, 967 "xfer %p fitd %p litd %p", ex, ex->ex_itdstart, ex->ex_itdend); 968 969 itd = ex->ex_itdend; 970 971 /* 972 * check no active transfers in last itd, meaning we're finished 973 */ 974 975 usb_syncmem(&itd->dma, itd->offs + offsetof(ehci_itd_t, itd_ctl), 976 sizeof(itd->itd.itd_ctl), 977 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 978 979 for (i = 0; i < EHCI_ITD_NUFRAMES; i++) { 980 if (le32toh(itd->itd.itd_ctl[i]) & EHCI_ITD_ACTIVE) 981 break; 982 } 983 984 if (i == EHCI_ITD_NUFRAMES) { 985 goto done; /* All 8 descriptors inactive, it's done */ 986 } 987 988 usb_syncmem(&itd->dma, itd->offs + offsetof(ehci_itd_t, itd_ctl), 989 sizeof(itd->itd.itd_ctl), BUS_DMASYNC_PREREAD); 990 991 DPRINTFN(10, "ex %#jx itd %#jx still active", 992 (uintptr_t)ex, (uintptr_t)ex->ex_itdstart, 0, 0); 993 return; 994 done: 995 DPRINTF("ex %#jx done", (uintptr_t)ex, 0, 0, 0); 996 ehci_idone(ex, cq); 997 } 998 999 void 1000 ehci_check_sitd_intr(ehci_softc_t *sc, struct ehci_xfer *ex, ex_completeq_t *cq) 1001 { 1002 ehci_soft_sitd_t *sitd; 1003 1004 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1005 1006 KASSERT(mutex_owned(&sc->sc_lock)); 1007 1008 if (&ex->ex_xfer != SIMPLEQ_FIRST(&ex->ex_xfer.ux_pipe->up_queue)) 1009 return; 1010 1011 KASSERTMSG(ex->ex_sitdstart != NULL && ex->ex_sitdend != NULL, 1012 "xfer %p fsitd %p lsitd %p", ex, ex->ex_sitdstart, ex->ex_sitdend); 1013 1014 sitd = ex->ex_sitdend; 1015 1016 /* 1017 * check no active transfers in last sitd, meaning we're finished 1018 */ 1019 1020 usb_syncmem(&sitd->dma, sitd->offs + offsetof(ehci_sitd_t, sitd_trans), 1021 sizeof(sitd->sitd.sitd_trans), 1022 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1023 1024 bool active = ((le32toh(sitd->sitd.sitd_trans) & EHCI_SITD_ACTIVE) != 0); 1025 1026 usb_syncmem(&sitd->dma, sitd->offs + offsetof(ehci_sitd_t, sitd_trans), 1027 sizeof(sitd->sitd.sitd_trans), BUS_DMASYNC_PREREAD); 1028 1029 if (active) 1030 return; 1031 1032 DPRINTFN(10, "ex=%#jx done", (uintptr_t)ex, 0, 0, 0); 1033 ehci_idone(ex, cq); 1034 } 1035 1036 Static void 1037 ehci_idone(struct ehci_xfer *ex, ex_completeq_t *cq) 1038 { 1039 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1040 struct usbd_xfer *xfer = &ex->ex_xfer; 1041 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 1042 struct ehci_softc *sc = EHCI_XFER2SC(xfer); 1043 ehci_soft_qtd_t *sqtd, *fsqtd, *lsqtd; 1044 uint32_t status = 0, nstatus = 0; 1045 int actlen = 0; 1046 1047 KASSERT(sc->sc_bus.ub_usepolling || mutex_owned(&sc->sc_lock)); 1048 1049 DPRINTF("ex=%#jx", (uintptr_t)ex, 0, 0, 0); 1050 1051 /* 1052 * Try to claim this xfer for completion. If it has already 1053 * completed or aborted, drop it on the floor. 1054 */ 1055 if (!usbd_xfer_trycomplete(xfer)) 1056 return; 1057 1058 #ifdef DIAGNOSTIC 1059 #ifdef EHCI_DEBUG 1060 if (ex->ex_isdone) { 1061 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 1062 ehci_dump_exfer(ex); 1063 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 1064 } 1065 #endif 1066 KASSERTMSG(!ex->ex_isdone, "xfer %p type %d status %d", xfer, 1067 ex->ex_type, xfer->ux_status); 1068 ex->ex_isdone = true; 1069 #endif 1070 1071 DPRINTF("xfer=%#jx, pipe=%#jx ready", (uintptr_t)xfer, 1072 (uintptr_t)epipe, 0, 0); 1073 1074 /* The transfer is done, compute actual length and status. */ 1075 if (ex->ex_type == EX_ISOC) { 1076 /* HS isoc transfer */ 1077 1078 struct ehci_soft_itd *itd; 1079 int i, nframes, len, uframes; 1080 1081 nframes = 0; 1082 1083 #ifdef EHCI_DEBUG 1084 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 1085 ehci_dump_itds(ex->ex_itdstart); 1086 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 1087 #endif 1088 1089 i = xfer->ux_pipe->up_endpoint->ue_edesc->bInterval; 1090 uframes = uimin(1 << (i - 1), USB_UFRAMES_PER_FRAME); 1091 1092 for (itd = ex->ex_itdstart; itd != NULL; itd = itd->xfer_next) { 1093 usb_syncmem(&itd->dma, 1094 itd->offs + offsetof(ehci_itd_t,itd_ctl), 1095 sizeof(itd->itd.itd_ctl), 1096 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1097 1098 for (i = 0; i < EHCI_ITD_NUFRAMES; i += uframes) { 1099 /* 1100 * XXX - driver didn't fill in the frame full 1101 * of uframes. This leads to scheduling 1102 * inefficiencies, but working around 1103 * this doubles complexity of tracking 1104 * an xfer. 1105 */ 1106 if (nframes >= xfer->ux_nframes) 1107 break; 1108 1109 status = le32toh(itd->itd.itd_ctl[i]); 1110 len = EHCI_ITD_GET_LEN(status); 1111 if (EHCI_ITD_GET_STATUS(status) != 0) 1112 len = 0; /*No valid data on error*/ 1113 1114 xfer->ux_frlengths[nframes++] = len; 1115 actlen += len; 1116 } 1117 usb_syncmem(&itd->dma, 1118 itd->offs + offsetof(ehci_itd_t,itd_ctl), 1119 sizeof(itd->itd.itd_ctl), BUS_DMASYNC_PREREAD); 1120 1121 if (nframes >= xfer->ux_nframes) 1122 break; 1123 } 1124 1125 xfer->ux_actlen = actlen; 1126 xfer->ux_status = USBD_NORMAL_COMPLETION; 1127 goto end; 1128 } else if (ex->ex_type == EX_FS_ISOC) { 1129 /* FS isoc transfer */ 1130 struct ehci_soft_sitd *sitd; 1131 int nframes, len; 1132 1133 nframes = 0; 1134 1135 for (sitd = ex->ex_sitdstart; sitd != NULL; 1136 sitd = sitd->xfer_next) { 1137 usb_syncmem(&sitd->dma, 1138 sitd->offs + offsetof(ehci_sitd_t, sitd_trans), 1139 sizeof(sitd->sitd.sitd_trans), 1140 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1141 1142 /* 1143 * XXX - driver didn't fill in the frame full 1144 * of uframes. This leads to scheduling 1145 * inefficiencies, but working around 1146 * this doubles complexity of tracking 1147 * an xfer. 1148 */ 1149 if (nframes >= xfer->ux_nframes) 1150 break; 1151 1152 status = le32toh(sitd->sitd.sitd_trans); 1153 usb_syncmem(&sitd->dma, 1154 sitd->offs + offsetof(ehci_sitd_t, sitd_trans), 1155 sizeof(sitd->sitd.sitd_trans), BUS_DMASYNC_PREREAD); 1156 1157 len = EHCI_SITD_GET_LEN(status); 1158 if (status & (EHCI_SITD_ERR|EHCI_SITD_BUFERR| 1159 EHCI_SITD_BABBLE|EHCI_SITD_XACTERR|EHCI_SITD_MISS)) { 1160 /* No valid data on error */ 1161 len = xfer->ux_frlengths[nframes]; 1162 } 1163 1164 /* 1165 * frlengths[i]: # of bytes to send 1166 * len: # of bytes host didn't send 1167 */ 1168 xfer->ux_frlengths[nframes] -= len; 1169 /* frlengths[i]: # of bytes host sent */ 1170 actlen += xfer->ux_frlengths[nframes++]; 1171 1172 if (nframes >= xfer->ux_nframes) 1173 break; 1174 } 1175 1176 xfer->ux_actlen = actlen; 1177 xfer->ux_status = USBD_NORMAL_COMPLETION; 1178 goto end; 1179 } 1180 KASSERT(ex->ex_type == EX_CTRL || ex->ex_type == EX_INTR || 1181 ex->ex_type == EX_BULK); 1182 1183 /* Continue processing xfers using queue heads */ 1184 if (ex->ex_type == EX_CTRL) { 1185 fsqtd = ex->ex_setup; 1186 lsqtd = ex->ex_status; 1187 } else { 1188 fsqtd = ex->ex_sqtdstart; 1189 lsqtd = ex->ex_sqtdend; 1190 } 1191 #ifdef EHCI_DEBUG 1192 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 1193 ehci_dump_sqtds(fsqtd); 1194 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 1195 #endif 1196 1197 for (sqtd = fsqtd; sqtd != lsqtd->nextqtd; sqtd = sqtd->nextqtd) { 1198 usb_syncmem(&sqtd->dma, sqtd->offs, sizeof(sqtd->qtd), 1199 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1200 nstatus = le32toh(sqtd->qtd.qtd_status); 1201 usb_syncmem(&sqtd->dma, sqtd->offs, sizeof(sqtd->qtd), 1202 BUS_DMASYNC_PREREAD); 1203 if (nstatus & EHCI_QTD_ACTIVE) 1204 break; 1205 1206 status = nstatus; 1207 if (EHCI_QTD_GET_PID(status) != EHCI_QTD_PID_SETUP) 1208 actlen += sqtd->len - EHCI_QTD_GET_BYTES(status); 1209 } 1210 1211 /* 1212 * If there are left over TDs we need to update the toggle. 1213 * The default pipe doesn't need it since control transfers 1214 * start the toggle at 0 every time. 1215 * For a short transfer we need to update the toggle for the missing 1216 * packets within the qTD. 1217 */ 1218 if ((sqtd != lsqtd->nextqtd || EHCI_QTD_GET_BYTES(status)) && 1219 xfer->ux_pipe->up_dev->ud_pipe0 != xfer->ux_pipe) { 1220 DPRINTF("toggle update status=0x%08jx nstatus=0x%08jx", 1221 status, nstatus, 0, 0); 1222 #if 0 1223 ehci_dump_sqh(epipe->sqh); 1224 ehci_dump_sqtds(ex->ex_sqtdstart); 1225 #endif 1226 epipe->nexttoggle = EHCI_QTD_GET_TOGGLE(nstatus); 1227 } 1228 1229 DPRINTF("len=%jd actlen=%jd status=0x%08jx", xfer->ux_length, actlen, 1230 status, 0); 1231 xfer->ux_actlen = actlen; 1232 if (status & EHCI_QTD_HALTED) { 1233 #ifdef EHCI_DEBUG 1234 DPRINTF("halted addr=%jd endpt=0x%02jx", 1235 xfer->ux_pipe->up_dev->ud_addr, 1236 xfer->ux_pipe->up_endpoint->ue_edesc->bEndpointAddress, 1237 0, 0); 1238 DPRINTF("cerr=%jd pid=%jd", 1239 EHCI_QTD_GET_CERR(status), EHCI_QTD_GET_PID(status), 1240 0, 0); 1241 DPRINTF("active =%jd halted=%jd buferr=%jd babble=%jd", 1242 status & EHCI_QTD_ACTIVE ? 1 : 0, 1243 status & EHCI_QTD_HALTED ? 1 : 0, 1244 status & EHCI_QTD_BUFERR ? 1 : 0, 1245 status & EHCI_QTD_BABBLE ? 1 : 0); 1246 1247 DPRINTF("xacterr=%jd missed=%jd split =%jd ping =%jd", 1248 status & EHCI_QTD_XACTERR ? 1 : 0, 1249 status & EHCI_QTD_MISSEDMICRO ? 1 : 0, 1250 status & EHCI_QTD_SPLITXSTATE ? 1 : 0, 1251 status & EHCI_QTD_PINGSTATE ? 1 : 0); 1252 1253 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 1254 ehci_dump_sqh(epipe->sqh); 1255 ehci_dump_sqtds(ex->ex_sqtdstart); 1256 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 1257 #endif 1258 /* low&full speed has an extra error flag */ 1259 if (EHCI_QH_GET_EPS(epipe->sqh->qh.qh_endp) != 1260 EHCI_QH_SPEED_HIGH) 1261 status &= EHCI_QTD_STATERRS | EHCI_QTD_PINGSTATE; 1262 else 1263 status &= EHCI_QTD_STATERRS; 1264 if (status == 0) /* no other errors means a stall */ { 1265 xfer->ux_status = USBD_STALLED; 1266 } else { 1267 xfer->ux_status = USBD_IOERROR; /* more info XXX */ 1268 } 1269 /* XXX need to reset TT on missed microframe */ 1270 if (status & EHCI_QTD_MISSEDMICRO) { 1271 printf("%s: missed microframe, TT reset not " 1272 "implemented, hub might be inoperational\n", 1273 device_xname(sc->sc_dev)); 1274 } 1275 } else { 1276 xfer->ux_status = USBD_NORMAL_COMPLETION; 1277 } 1278 1279 end: 1280 1281 ehci_del_intr_list(sc, ex); 1282 TAILQ_INSERT_TAIL(cq, ex, ex_next); 1283 1284 DPRINTF("ex=%#jx done", (uintptr_t)ex, 0, 0, 0); 1285 } 1286 1287 Static void 1288 ehci_poll(struct usbd_bus *bus) 1289 { 1290 ehci_softc_t *sc = EHCI_BUS2SC(bus); 1291 1292 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1293 1294 #ifdef EHCI_DEBUG 1295 static int last; 1296 int new; 1297 new = EHCI_STS_INTRS(EOREAD4(sc, EHCI_USBSTS)); 1298 if (new != last) { 1299 DPRINTF("intrs=0x%04jx", new, 0, 0, 0); 1300 last = new; 1301 } 1302 #endif 1303 1304 if (EOREAD4(sc, EHCI_USBSTS) & sc->sc_eintrs) { 1305 mutex_spin_enter(&sc->sc_intr_lock); 1306 ehci_intr1(sc); 1307 mutex_spin_exit(&sc->sc_intr_lock); 1308 } 1309 } 1310 1311 void 1312 ehci_childdet(device_t self, device_t child) 1313 { 1314 struct ehci_softc *sc = device_private(self); 1315 1316 KASSERT(sc->sc_child == child); 1317 sc->sc_child = NULL; 1318 } 1319 1320 int 1321 ehci_detach(struct ehci_softc *sc, int flags) 1322 { 1323 int rv = 0; 1324 1325 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1326 1327 if (sc->sc_child != NULL) { 1328 rv = config_detach(sc->sc_child, flags); 1329 if (rv != 0) 1330 return rv; 1331 } 1332 1333 if (sc->sc_ncomp > 0) { 1334 mutex_enter(&sc->sc_complock); 1335 /* XXX try to halt callout instead of waiting */ 1336 while (sc->sc_comp_state == CO_SCHED) 1337 cv_wait(&sc->sc_compcv, &sc->sc_complock); 1338 mutex_exit(&sc->sc_complock); 1339 1340 callout_halt(&sc->sc_compcallout, NULL); 1341 callout_destroy(&sc->sc_compcallout); 1342 cv_destroy(&sc->sc_compcv); 1343 mutex_destroy(&sc->sc_complock); 1344 } 1345 1346 callout_halt(&sc->sc_tmo_intrlist, NULL); 1347 callout_destroy(&sc->sc_tmo_intrlist); 1348 1349 /* XXX free other data structures */ 1350 if (sc->sc_softitds) { 1351 kmem_free(sc->sc_softitds, 1352 sc->sc_flsize * sizeof(ehci_soft_itd_t *)); 1353 } 1354 cv_destroy(&sc->sc_doorbell); 1355 1356 #if 0 1357 /* XXX destroyed in ehci_pci.c as it controls ehci_intr access */ 1358 softint_disestablish(sc->sc_doorbell_si); 1359 softint_disestablish(sc->sc_pcd_si); 1360 mutex_destroy(&sc->sc_lock); 1361 mutex_destroy(&sc->sc_intr_lock); 1362 #endif 1363 1364 pool_cache_destroy(sc->sc_xferpool); 1365 1366 EOWRITE4(sc, EHCI_CONFIGFLAG, 0); 1367 1368 return rv; 1369 } 1370 1371 int 1372 ehci_activate(device_t self, enum devact act) 1373 { 1374 struct ehci_softc *sc = device_private(self); 1375 1376 switch (act) { 1377 case DVACT_DEACTIVATE: 1378 sc->sc_dying = 1; 1379 return 0; 1380 default: 1381 return EOPNOTSUPP; 1382 } 1383 } 1384 1385 /* 1386 * Handle suspend/resume. 1387 * 1388 * We need to switch to polling mode here, because this routine is 1389 * called from an interrupt context. This is all right since we 1390 * are almost suspended anyway. 1391 * 1392 * Note that this power handler isn't to be registered directly; the 1393 * bus glue needs to call out to it. 1394 */ 1395 bool 1396 ehci_suspend(device_t dv, const pmf_qual_t *qual) 1397 { 1398 ehci_softc_t *sc = device_private(dv); 1399 int i; 1400 uint32_t cmd, hcr; 1401 1402 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1403 1404 mutex_spin_enter(&sc->sc_intr_lock); 1405 sc->sc_bus.ub_usepolling++; 1406 mutex_spin_exit(&sc->sc_intr_lock); 1407 1408 for (i = 1; i <= sc->sc_noport; i++) { 1409 cmd = EOREAD4(sc, EHCI_PORTSC(i)) & ~EHCI_PS_CLEAR; 1410 if ((cmd & EHCI_PS_PO) == 0 && (cmd & EHCI_PS_PE) == EHCI_PS_PE) 1411 EOWRITE4(sc, EHCI_PORTSC(i), cmd | EHCI_PS_SUSP); 1412 } 1413 1414 sc->sc_cmd = EOREAD4(sc, EHCI_USBCMD); 1415 1416 cmd = sc->sc_cmd & ~(EHCI_CMD_ASE | EHCI_CMD_PSE); 1417 EOWRITE4(sc, EHCI_USBCMD, cmd); 1418 1419 for (i = 0; i < 100; i++) { 1420 hcr = EOREAD4(sc, EHCI_USBSTS) & (EHCI_STS_ASS | EHCI_STS_PSS); 1421 if (hcr == 0) 1422 break; 1423 1424 usb_delay_ms(&sc->sc_bus, 1); 1425 } 1426 if (hcr != 0) 1427 printf("%s: reset timeout\n", device_xname(dv)); 1428 1429 cmd &= ~EHCI_CMD_RS; 1430 EOWRITE4(sc, EHCI_USBCMD, cmd); 1431 1432 for (i = 0; i < 100; i++) { 1433 hcr = EOREAD4(sc, EHCI_USBSTS) & EHCI_STS_HCH; 1434 if (hcr == EHCI_STS_HCH) 1435 break; 1436 1437 usb_delay_ms(&sc->sc_bus, 1); 1438 } 1439 if (hcr != EHCI_STS_HCH) 1440 printf("%s: config timeout\n", device_xname(dv)); 1441 1442 mutex_spin_enter(&sc->sc_intr_lock); 1443 sc->sc_bus.ub_usepolling--; 1444 mutex_spin_exit(&sc->sc_intr_lock); 1445 1446 return true; 1447 } 1448 1449 bool 1450 ehci_resume(device_t dv, const pmf_qual_t *qual) 1451 { 1452 ehci_softc_t *sc = device_private(dv); 1453 int i; 1454 uint32_t cmd, hcr; 1455 1456 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1457 1458 /* restore things in case the bios sucks */ 1459 EOWRITE4(sc, EHCI_CTRLDSSEGMENT, 0); 1460 EOWRITE4(sc, EHCI_PERIODICLISTBASE, DMAADDR(&sc->sc_fldma, 0)); 1461 EOWRITE4(sc, EHCI_ASYNCLISTADDR, 1462 sc->sc_async_head->physaddr | EHCI_LINK_QH); 1463 1464 EOWRITE4(sc, EHCI_USBINTR, sc->sc_eintrs & ~EHCI_INTR_PCIE); 1465 1466 EOWRITE4(sc, EHCI_USBCMD, sc->sc_cmd); 1467 1468 hcr = 0; 1469 for (i = 1; i <= sc->sc_noport; i++) { 1470 cmd = EOREAD4(sc, EHCI_PORTSC(i)) & ~EHCI_PS_CLEAR; 1471 if ((cmd & EHCI_PS_PO) == 0 && 1472 (cmd & EHCI_PS_SUSP) == EHCI_PS_SUSP) { 1473 EOWRITE4(sc, EHCI_PORTSC(i), cmd | EHCI_PS_FPR); 1474 hcr = 1; 1475 } 1476 } 1477 1478 if (hcr) { 1479 usb_delay_ms(&sc->sc_bus, USB_RESUME_WAIT); 1480 1481 for (i = 1; i <= sc->sc_noport; i++) { 1482 cmd = EOREAD4(sc, EHCI_PORTSC(i)) & ~EHCI_PS_CLEAR; 1483 if ((cmd & EHCI_PS_PO) == 0 && 1484 (cmd & EHCI_PS_SUSP) == EHCI_PS_SUSP) 1485 EOWRITE4(sc, EHCI_PORTSC(i), 1486 cmd & ~EHCI_PS_FPR); 1487 } 1488 } 1489 1490 EOWRITE4(sc, EHCI_USBCMD, sc->sc_cmd); 1491 EOWRITE4(sc, EHCI_USBINTR, sc->sc_eintrs); 1492 1493 for (i = 0; i < 100; i++) { 1494 hcr = EOREAD4(sc, EHCI_USBSTS) & EHCI_STS_HCH; 1495 if (hcr != EHCI_STS_HCH) 1496 break; 1497 1498 usb_delay_ms(&sc->sc_bus, 1); 1499 } 1500 if (hcr == EHCI_STS_HCH) 1501 printf("%s: config timeout\n", device_xname(dv)); 1502 1503 return true; 1504 } 1505 1506 /* 1507 * Shut down the controller when the system is going down. 1508 */ 1509 bool 1510 ehci_shutdown(device_t self, int flags) 1511 { 1512 ehci_softc_t *sc = device_private(self); 1513 1514 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1515 1516 EOWRITE4(sc, EHCI_USBCMD, 0); /* Halt controller */ 1517 EOWRITE4(sc, EHCI_USBCMD, EHCI_CMD_HCRESET); 1518 return true; 1519 } 1520 1521 Static struct usbd_xfer * 1522 ehci_allocx(struct usbd_bus *bus, unsigned int nframes) 1523 { 1524 struct ehci_softc *sc = EHCI_BUS2SC(bus); 1525 struct usbd_xfer *xfer; 1526 1527 xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK); 1528 if (xfer != NULL) { 1529 memset(xfer, 0, sizeof(struct ehci_xfer)); 1530 1531 #ifdef DIAGNOSTIC 1532 struct ehci_xfer *ex = EHCI_XFER2EXFER(xfer); 1533 ex->ex_isdone = true; 1534 xfer->ux_state = XFER_BUSY; 1535 #endif 1536 } 1537 return xfer; 1538 } 1539 1540 Static void 1541 ehci_freex(struct usbd_bus *bus, struct usbd_xfer *xfer) 1542 { 1543 struct ehci_softc *sc = EHCI_BUS2SC(bus); 1544 struct ehci_xfer *ex __diagused = EHCI_XFER2EXFER(xfer); 1545 1546 KASSERTMSG(xfer->ux_state == XFER_BUSY || 1547 xfer->ux_status == USBD_NOT_STARTED, 1548 "xfer %p state %d\n", xfer, xfer->ux_state); 1549 KASSERT(ex->ex_isdone || xfer->ux_status == USBD_NOT_STARTED); 1550 1551 #ifdef DIAGNOSTIC 1552 xfer->ux_state = XFER_FREE; 1553 #endif 1554 1555 pool_cache_put(sc->sc_xferpool, xfer); 1556 } 1557 1558 Static bool 1559 ehci_dying(struct usbd_bus *bus) 1560 { 1561 struct ehci_softc *sc = EHCI_BUS2SC(bus); 1562 1563 return sc->sc_dying; 1564 } 1565 1566 Static void 1567 ehci_get_lock(struct usbd_bus *bus, kmutex_t **lock) 1568 { 1569 struct ehci_softc *sc = EHCI_BUS2SC(bus); 1570 1571 *lock = &sc->sc_lock; 1572 } 1573 1574 Static void 1575 ehci_device_clear_toggle(struct usbd_pipe *pipe) 1576 { 1577 struct ehci_pipe *epipe = EHCI_PIPE2EPIPE(pipe); 1578 1579 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1580 1581 DPRINTF("epipe=%#jx status=0x%08jx", (uintptr_t)epipe, 1582 epipe->sqh->qh.qh_qtd.qtd_status, 0, 0); 1583 #ifdef EHCI_DEBUG 1584 if (ehcidebug) 1585 usbd_dump_pipe(pipe); 1586 #endif 1587 epipe->nexttoggle = 0; 1588 } 1589 1590 Static void 1591 ehci_noop(struct usbd_pipe *pipe) 1592 { 1593 } 1594 1595 #ifdef EHCI_DEBUG 1596 /* 1597 * Unused function - this is meant to be called from a kernel 1598 * debugger. 1599 */ 1600 void 1601 ehci_dump(void) 1602 { 1603 ehci_softc_t *sc = theehci; 1604 int i; 1605 printf("cmd=0x%08x, sts=0x%08x, ien=0x%08x\n", 1606 EOREAD4(sc, EHCI_USBCMD), 1607 EOREAD4(sc, EHCI_USBSTS), 1608 EOREAD4(sc, EHCI_USBINTR)); 1609 printf("frindex=0x%08x ctrdsegm=0x%08x periodic=0x%08x async=0x%08x\n", 1610 EOREAD4(sc, EHCI_FRINDEX), 1611 EOREAD4(sc, EHCI_CTRLDSSEGMENT), 1612 EOREAD4(sc, EHCI_PERIODICLISTBASE), 1613 EOREAD4(sc, EHCI_ASYNCLISTADDR)); 1614 for (i = 1; i <= sc->sc_noport; i++) 1615 printf("port %d status=0x%08x\n", i, 1616 EOREAD4(sc, EHCI_PORTSC(i))); 1617 } 1618 1619 Static void 1620 ehci_dump_regs(ehci_softc_t *sc) 1621 { 1622 int i; 1623 1624 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1625 1626 DPRINTF("cmd = 0x%08jx sts = 0x%08jx ien = 0x%08jx", 1627 EOREAD4(sc, EHCI_USBCMD), EOREAD4(sc, EHCI_USBSTS), 1628 EOREAD4(sc, EHCI_USBINTR), 0); 1629 DPRINTF("frindex = 0x%08jx ctrdsegm = 0x%08jx periodic = 0x%08jx " 1630 "async = 0x%08jx", 1631 EOREAD4(sc, EHCI_FRINDEX), EOREAD4(sc, EHCI_CTRLDSSEGMENT), 1632 EOREAD4(sc, EHCI_PERIODICLISTBASE), 1633 EOREAD4(sc, EHCI_ASYNCLISTADDR)); 1634 for (i = 1; i <= sc->sc_noport; i += 2) { 1635 if (i == sc->sc_noport) { 1636 DPRINTF("port %jd status = 0x%08jx", i, 1637 EOREAD4(sc, EHCI_PORTSC(i)), 0, 0); 1638 } else { 1639 DPRINTF("port %jd status = 0x%08jx port %jd " 1640 "status = 0x%08jx", 1641 i, EOREAD4(sc, EHCI_PORTSC(i)), 1642 i+1, EOREAD4(sc, EHCI_PORTSC(i+1))); 1643 } 1644 } 1645 } 1646 1647 #define ehci_dump_link(link, type) do { \ 1648 DPRINTF(" link 0x%08jx (T = %jd):", \ 1649 link, \ 1650 link & EHCI_LINK_TERMINATE ? 1 : 0, 0, 0); \ 1651 if (type) { \ 1652 DPRINTF( \ 1653 " ITD = %jd QH = %jd SITD = %jd FSTN = %jd",\ 1654 EHCI_LINK_TYPE(link) == EHCI_LINK_ITD ? 1 : 0, \ 1655 EHCI_LINK_TYPE(link) == EHCI_LINK_QH ? 1 : 0, \ 1656 EHCI_LINK_TYPE(link) == EHCI_LINK_SITD ? 1 : 0, \ 1657 EHCI_LINK_TYPE(link) == EHCI_LINK_FSTN ? 1 : 0); \ 1658 } \ 1659 } while(0) 1660 1661 Static void 1662 ehci_dump_sqtds(ehci_soft_qtd_t *sqtd) 1663 { 1664 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1665 int i; 1666 uint32_t stop = 0; 1667 1668 for (i = 0; sqtd && i < 20 && !stop; sqtd = sqtd->nextqtd, i++) { 1669 ehci_dump_sqtd(sqtd); 1670 usb_syncmem(&sqtd->dma, 1671 sqtd->offs + offsetof(ehci_qtd_t, qtd_next), 1672 sizeof(sqtd->qtd), 1673 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1674 stop = sqtd->qtd.qtd_next & htole32(EHCI_LINK_TERMINATE); 1675 usb_syncmem(&sqtd->dma, 1676 sqtd->offs + offsetof(ehci_qtd_t, qtd_next), 1677 sizeof(sqtd->qtd), BUS_DMASYNC_PREREAD); 1678 } 1679 if (!stop) 1680 DPRINTF("dump aborted, too many TDs", 0, 0, 0, 0); 1681 } 1682 1683 Static void 1684 ehci_dump_sqtd(ehci_soft_qtd_t *sqtd) 1685 { 1686 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1687 1688 usb_syncmem(&sqtd->dma, sqtd->offs, 1689 sizeof(sqtd->qtd), BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1690 1691 DPRINTFN(10, "QTD(%#jx) at 0x%08jx:", (uintptr_t)sqtd, sqtd->physaddr, 1692 0, 0); 1693 ehci_dump_qtd(&sqtd->qtd); 1694 1695 usb_syncmem(&sqtd->dma, sqtd->offs, 1696 sizeof(sqtd->qtd), BUS_DMASYNC_PREREAD); 1697 } 1698 1699 Static void 1700 ehci_dump_qtd(ehci_qtd_t *qtd) 1701 { 1702 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1703 uint32_t s = le32toh(qtd->qtd_status); 1704 1705 DPRINTFN(10, 1706 " next = 0x%08jx altnext = 0x%08jx status = 0x%08jx", 1707 qtd->qtd_next, qtd->qtd_altnext, s, 0); 1708 DPRINTFN(10, 1709 " toggle = %jd ioc = %jd bytes = %#jx c_page = %#jx", 1710 EHCI_QTD_GET_TOGGLE(s), EHCI_QTD_GET_IOC(s), 1711 EHCI_QTD_GET_BYTES(s), EHCI_QTD_GET_C_PAGE(s)); 1712 DPRINTFN(10, 1713 " cerr = %jd pid = %jd stat = %jx", 1714 EHCI_QTD_GET_CERR(s), EHCI_QTD_GET_PID(s), EHCI_QTD_GET_STATUS(s), 1715 0); 1716 DPRINTFN(10, 1717 "active =%jd halted=%jd buferr=%jd babble=%jd", 1718 s & EHCI_QTD_ACTIVE ? 1 : 0, 1719 s & EHCI_QTD_HALTED ? 1 : 0, 1720 s & EHCI_QTD_BUFERR ? 1 : 0, 1721 s & EHCI_QTD_BABBLE ? 1 : 0); 1722 DPRINTFN(10, 1723 "xacterr=%jd missed=%jd split =%jd ping =%jd", 1724 s & EHCI_QTD_XACTERR ? 1 : 0, 1725 s & EHCI_QTD_MISSEDMICRO ? 1 : 0, 1726 s & EHCI_QTD_SPLITXSTATE ? 1 : 0, 1727 s & EHCI_QTD_PINGSTATE ? 1 : 0); 1728 DPRINTFN(10, 1729 "buffer[0] = %#jx buffer[1] = %#jx " 1730 "buffer[2] = %#jx buffer[3] = %#jx", 1731 le32toh(qtd->qtd_buffer[0]), le32toh(qtd->qtd_buffer[1]), 1732 le32toh(qtd->qtd_buffer[2]), le32toh(qtd->qtd_buffer[3])); 1733 DPRINTFN(10, 1734 "buffer[4] = %#jx", le32toh(qtd->qtd_buffer[4]), 0, 0, 0); 1735 } 1736 1737 Static void 1738 ehci_dump_sqh(ehci_soft_qh_t *sqh) 1739 { 1740 ehci_qh_t *qh = &sqh->qh; 1741 ehci_link_t link; 1742 uint32_t endp, endphub; 1743 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1744 1745 usb_syncmem(&sqh->dma, sqh->offs, 1746 sizeof(sqh->qh), BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1747 1748 DPRINTFN(10, "QH(%#jx) at %#jx:", (uintptr_t)sqh, sqh->physaddr, 0, 0); 1749 link = le32toh(qh->qh_link); 1750 ehci_dump_link(link, true); 1751 1752 endp = le32toh(qh->qh_endp); 1753 DPRINTFN(10, " endp = %#jx", endp, 0, 0, 0); 1754 DPRINTFN(10, " addr = 0x%02jx inact = %jd endpt = %jd " 1755 "eps = %jd", 1756 EHCI_QH_GET_ADDR(endp), EHCI_QH_GET_INACT(endp), 1757 EHCI_QH_GET_ENDPT(endp), EHCI_QH_GET_EPS(endp)); 1758 DPRINTFN(10, " dtc = %jd hrecl = %jd", 1759 EHCI_QH_GET_DTC(endp), EHCI_QH_GET_HRECL(endp), 0, 0); 1760 DPRINTFN(10, " ctl = %jd nrl = %jd mpl = %#jx(%jd)", 1761 EHCI_QH_GET_CTL(endp),EHCI_QH_GET_NRL(endp), 1762 EHCI_QH_GET_MPL(endp), EHCI_QH_GET_MPL(endp)); 1763 1764 endphub = le32toh(qh->qh_endphub); 1765 DPRINTFN(10, " endphub = %#jx", endphub, 0, 0, 0); 1766 DPRINTFN(10, " smask = 0x%02jx cmask = 0x%02jx one %jx", 1767 EHCI_QH_GET_SMASK(endphub), EHCI_QH_GET_CMASK(endphub), 1, 0); 1768 DPRINTFN(10, " huba = 0x%02jx port = %jd mult = %jd", 1769 EHCI_QH_GET_HUBA(endphub), EHCI_QH_GET_PORT(endphub), 1770 EHCI_QH_GET_MULT(endphub), 0); 1771 1772 link = le32toh(qh->qh_curqtd); 1773 ehci_dump_link(link, false); 1774 DPRINTFN(10, "Overlay qTD:", 0, 0, 0, 0); 1775 ehci_dump_qtd(&qh->qh_qtd); 1776 1777 usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), 1778 BUS_DMASYNC_PREREAD); 1779 } 1780 1781 Static void 1782 ehci_dump_itds(ehci_soft_itd_t *itd) 1783 { 1784 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1785 int i; 1786 uint32_t stop = 0; 1787 1788 for (i = 0; itd && i < 20 && !stop; itd = itd->xfer_next, i++) { 1789 ehci_dump_itd(itd); 1790 usb_syncmem(&itd->dma, 1791 itd->offs + offsetof(ehci_itd_t, itd_next), 1792 sizeof(itd->itd), 1793 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 1794 stop = itd->itd.itd_next & htole32(EHCI_LINK_TERMINATE); 1795 usb_syncmem(&itd->dma, 1796 itd->offs + offsetof(ehci_itd_t, itd_next), 1797 sizeof(itd->itd), BUS_DMASYNC_PREREAD); 1798 } 1799 if (!stop) 1800 DPRINTF("dump aborted, too many TDs", 0, 0, 0, 0); 1801 } 1802 1803 Static void 1804 ehci_dump_itd(struct ehci_soft_itd *itd) 1805 { 1806 ehci_isoc_trans_t t; 1807 ehci_isoc_bufr_ptr_t b, b2, b3; 1808 int i; 1809 1810 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1811 1812 DPRINTF("ITD: next phys = %#jx", itd->itd.itd_next, 0, 0, 0); 1813 1814 for (i = 0; i < EHCI_ITD_NUFRAMES; i++) { 1815 t = le32toh(itd->itd.itd_ctl[i]); 1816 DPRINTF("ITDctl %jd: stat = %jx len = %jx", 1817 i, EHCI_ITD_GET_STATUS(t), EHCI_ITD_GET_LEN(t), 0); 1818 DPRINTF(" ioc = %jx pg = %jx offs = %jx", 1819 EHCI_ITD_GET_IOC(t), EHCI_ITD_GET_PG(t), 1820 EHCI_ITD_GET_OFFS(t), 0); 1821 } 1822 DPRINTF("ITDbufr: ", 0, 0, 0, 0); 1823 for (i = 0; i < EHCI_ITD_NBUFFERS; i++) 1824 DPRINTF(" %jx", 1825 EHCI_ITD_GET_BPTR(le32toh(itd->itd.itd_bufr[i])), 0, 0, 0); 1826 1827 b = le32toh(itd->itd.itd_bufr[0]); 1828 b2 = le32toh(itd->itd.itd_bufr[1]); 1829 b3 = le32toh(itd->itd.itd_bufr[2]); 1830 DPRINTF(" ep = %jx daddr = %jx dir = %jd", 1831 EHCI_ITD_GET_EP(b), EHCI_ITD_GET_DADDR(b), EHCI_ITD_GET_DIR(b2), 0); 1832 DPRINTF(" maxpkt = %jx multi = %jx", 1833 EHCI_ITD_GET_MAXPKT(b2), EHCI_ITD_GET_MULTI(b3), 0, 0); 1834 } 1835 1836 Static void 1837 ehci_dump_sitd(struct ehci_soft_itd *itd) 1838 { 1839 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1840 1841 DPRINTF("SITD %#jx next = %p prev = %#jx", 1842 (uintptr_t)itd, (uintptr_t)itd->frame_list.next, 1843 (uintptr_t)itd->frame_list.prev, 0); 1844 DPRINTF(" xfernext=%#jx physaddr=%jX slot=%jd", 1845 (uintptr_t)itd->xfer_next, itd->physaddr, itd->slot, 0); 1846 } 1847 1848 Static void 1849 ehci_dump_exfer(struct ehci_xfer *ex) 1850 { 1851 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1852 1853 DPRINTF("ex = %#jx type %jd isdone %jd", (uintptr_t)ex, ex->ex_type, 1854 ex->ex_isdone, 0); 1855 1856 switch (ex->ex_type) { 1857 case EX_CTRL: 1858 DPRINTF(" setup = %#jx data = %#jx status = %#jx", 1859 (uintptr_t)ex->ex_setup, (uintptr_t)ex->ex_data, 1860 (uintptr_t)ex->ex_status, 0); 1861 break; 1862 case EX_BULK: 1863 case EX_INTR: 1864 DPRINTF(" qtdstart = %#jx qtdend = %#jx", 1865 (uintptr_t)ex->ex_sqtdstart, (uintptr_t)ex->ex_sqtdend, 1866 0, 0); 1867 break; 1868 case EX_ISOC: 1869 DPRINTF(" itdstart = %#jx itdend = %#jx", 1870 (uintptr_t)ex->ex_itdstart, (uintptr_t)ex->ex_itdend, 0, 0); 1871 break; 1872 case EX_FS_ISOC: 1873 DPRINTF(" sitdstart = %#jx sitdend = %#jx", 1874 (uintptr_t)ex->ex_sitdstart, (uintptr_t)ex->ex_sitdend, 1875 0, 0); 1876 break; 1877 default: 1878 DPRINTF(" unknown type", 0, 0, 0, 0); 1879 } 1880 } 1881 #endif 1882 1883 Static usbd_status 1884 ehci_open(struct usbd_pipe *pipe) 1885 { 1886 struct usbd_device *dev = pipe->up_dev; 1887 ehci_softc_t *sc = EHCI_PIPE2SC(pipe); 1888 usb_endpoint_descriptor_t *ed = pipe->up_endpoint->ue_edesc; 1889 uint8_t rhaddr = dev->ud_bus->ub_rhaddr; 1890 uint8_t addr = dev->ud_addr; 1891 uint8_t xfertype = UE_GET_XFERTYPE(ed->bmAttributes); 1892 struct ehci_pipe *epipe = EHCI_PIPE2EPIPE(pipe); 1893 ehci_soft_qh_t *sqh; 1894 usbd_status err; 1895 int ival, speed, naks; 1896 int hshubaddr, hshubport; 1897 1898 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 1899 1900 DPRINTF("pipe=%#jx, addr=%jd, endpt=%jd (%jd)", (uintptr_t)pipe, addr, 1901 ed->bEndpointAddress, rhaddr); 1902 1903 if (dev->ud_myhsport) { 1904 /* 1905 * When directly attached FS/LS device while doing embedded 1906 * transaction translations and we are the hub, set the hub 1907 * address to 0 (us). 1908 */ 1909 if (!(sc->sc_flags & EHCIF_ETTF) 1910 || (dev->ud_myhsport->up_parent->ud_addr != rhaddr)) { 1911 hshubaddr = dev->ud_myhsport->up_parent->ud_addr; 1912 } else { 1913 hshubaddr = 0; 1914 } 1915 hshubport = dev->ud_myhsport->up_portno; 1916 } else { 1917 hshubaddr = 0; 1918 hshubport = 0; 1919 } 1920 1921 if (sc->sc_dying) 1922 return USBD_IOERROR; 1923 1924 /* toggle state needed for bulk endpoints */ 1925 epipe->nexttoggle = pipe->up_endpoint->ue_toggle; 1926 1927 if (addr == rhaddr) { 1928 switch (ed->bEndpointAddress) { 1929 case USB_CONTROL_ENDPOINT: 1930 pipe->up_methods = &roothub_ctrl_methods; 1931 break; 1932 case UE_DIR_IN | USBROOTHUB_INTR_ENDPT: 1933 pipe->up_methods = &ehci_root_intr_methods; 1934 break; 1935 default: 1936 DPRINTF("bad bEndpointAddress 0x%02jx", 1937 ed->bEndpointAddress, 0, 0, 0); 1938 return USBD_INVAL; 1939 } 1940 return USBD_NORMAL_COMPLETION; 1941 } 1942 1943 /* XXX All this stuff is only valid for async. */ 1944 switch (dev->ud_speed) { 1945 case USB_SPEED_LOW: speed = EHCI_QH_SPEED_LOW; break; 1946 case USB_SPEED_FULL: speed = EHCI_QH_SPEED_FULL; break; 1947 case USB_SPEED_HIGH: speed = EHCI_QH_SPEED_HIGH; break; 1948 default: panic("ehci_open: bad device speed %d", dev->ud_speed); 1949 } 1950 if (speed == EHCI_QH_SPEED_LOW && xfertype == UE_ISOCHRONOUS) { 1951 DPRINTF("hshubaddr=%jd hshubport=%jd", hshubaddr, hshubport, 0, 1952 0); 1953 return USBD_INVAL; 1954 } 1955 1956 /* 1957 * For interrupt transfer, nak throttling must be disabled, but for 1958 * the other transfer type, nak throttling should be enabled from the 1959 * viewpoint that avoids the memory thrashing. 1960 */ 1961 naks = (xfertype == UE_INTERRUPT) ? 0 1962 : ((speed == EHCI_QH_SPEED_HIGH) ? 4 : 0); 1963 1964 /* Allocate sqh for everything, save isoc xfers */ 1965 if (xfertype != UE_ISOCHRONOUS) { 1966 sqh = ehci_alloc_sqh(sc); 1967 if (sqh == NULL) 1968 return USBD_NOMEM; 1969 /* qh_link filled when the QH is added */ 1970 sqh->qh.qh_endp = htole32( 1971 EHCI_QH_SET_ADDR(addr) | 1972 EHCI_QH_SET_ENDPT(UE_GET_ADDR(ed->bEndpointAddress)) | 1973 EHCI_QH_SET_EPS(speed) | 1974 EHCI_QH_DTC | 1975 EHCI_QH_SET_MPL(UGETW(ed->wMaxPacketSize)) | 1976 (speed != EHCI_QH_SPEED_HIGH && xfertype == UE_CONTROL ? 1977 EHCI_QH_CTL : 0) | 1978 EHCI_QH_SET_NRL(naks) 1979 ); 1980 sqh->qh.qh_endphub = htole32( 1981 EHCI_QH_SET_MULT(1) | 1982 EHCI_QH_SET_SMASK(xfertype == UE_INTERRUPT ? 0x02 : 0) 1983 ); 1984 if (speed != EHCI_QH_SPEED_HIGH) 1985 sqh->qh.qh_endphub |= htole32( 1986 EHCI_QH_SET_PORT(hshubport) | 1987 EHCI_QH_SET_HUBA(hshubaddr) | 1988 (xfertype == UE_INTERRUPT ? 1989 EHCI_QH_SET_CMASK(0x08) : 0) 1990 ); 1991 sqh->qh.qh_curqtd = EHCI_NULL; 1992 /* Fill the overlay qTD */ 1993 sqh->qh.qh_qtd.qtd_next = EHCI_NULL; 1994 sqh->qh.qh_qtd.qtd_altnext = EHCI_NULL; 1995 sqh->qh.qh_qtd.qtd_status = htole32(0); 1996 1997 usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), 1998 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 1999 epipe->sqh = sqh; 2000 } else { 2001 sqh = NULL; 2002 } /*xfertype == UE_ISOC*/ 2003 2004 switch (xfertype) { 2005 case UE_CONTROL: 2006 err = usb_allocmem(&sc->sc_bus, sizeof(usb_device_request_t), 2007 0, USBMALLOC_COHERENT, &epipe->ctrl.reqdma); 2008 #ifdef EHCI_DEBUG 2009 if (err) 2010 printf("ehci_open: usb_allocmem()=%d\n", err); 2011 #endif 2012 if (err) 2013 goto bad; 2014 pipe->up_methods = &ehci_device_ctrl_methods; 2015 mutex_enter(&sc->sc_lock); 2016 ehci_add_qh(sc, sqh, sc->sc_async_head); 2017 mutex_exit(&sc->sc_lock); 2018 break; 2019 case UE_BULK: 2020 pipe->up_methods = &ehci_device_bulk_methods; 2021 mutex_enter(&sc->sc_lock); 2022 ehci_add_qh(sc, sqh, sc->sc_async_head); 2023 mutex_exit(&sc->sc_lock); 2024 break; 2025 case UE_INTERRUPT: 2026 pipe->up_methods = &ehci_device_intr_methods; 2027 ival = pipe->up_interval; 2028 if (ival == USBD_DEFAULT_INTERVAL) { 2029 if (speed == EHCI_QH_SPEED_HIGH) { 2030 if (ed->bInterval > 16) { 2031 /* 2032 * illegal with high-speed, but there 2033 * were documentation bugs in the spec, 2034 * so be generous 2035 */ 2036 ival = 256; 2037 } else 2038 ival = (1 << (ed->bInterval - 1)) / 8; 2039 } else 2040 ival = ed->bInterval; 2041 } 2042 err = ehci_device_setintr(sc, sqh, ival); 2043 if (err) 2044 goto bad; 2045 break; 2046 case UE_ISOCHRONOUS: 2047 pipe->up_serialise = false; 2048 if (speed == EHCI_QH_SPEED_HIGH) 2049 pipe->up_methods = &ehci_device_isoc_methods; 2050 else 2051 pipe->up_methods = &ehci_device_fs_isoc_methods; 2052 if (ed->bInterval == 0 || ed->bInterval > 16) { 2053 printf("ehci: opening pipe with invalid bInterval\n"); 2054 err = USBD_INVAL; 2055 goto bad; 2056 } 2057 if (UGETW(ed->wMaxPacketSize) == 0) { 2058 printf("ehci: zero length endpoint open request\n"); 2059 err = USBD_INVAL; 2060 goto bad; 2061 } 2062 epipe->isoc.next_frame = 0; 2063 epipe->isoc.cur_xfers = 0; 2064 break; 2065 default: 2066 DPRINTF("bad xfer type %jd", xfertype, 0, 0, 0); 2067 err = USBD_INVAL; 2068 goto bad; 2069 } 2070 return USBD_NORMAL_COMPLETION; 2071 2072 bad: 2073 if (sqh != NULL) { 2074 mutex_enter(&sc->sc_lock); 2075 ehci_free_sqh(sc, sqh); 2076 mutex_exit(&sc->sc_lock); 2077 } 2078 return err; 2079 } 2080 2081 /* 2082 * Add an ED to the schedule. Called with USB lock held. 2083 */ 2084 Static void 2085 ehci_add_qh(ehci_softc_t *sc, ehci_soft_qh_t *sqh, ehci_soft_qh_t *head) 2086 { 2087 2088 KASSERT(mutex_owned(&sc->sc_lock)); 2089 2090 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2091 2092 usb_syncmem(&head->dma, head->offs + offsetof(ehci_qh_t, qh_link), 2093 sizeof(head->qh.qh_link), BUS_DMASYNC_POSTWRITE); 2094 2095 sqh->next = head->next; 2096 sqh->qh.qh_link = head->qh.qh_link; 2097 2098 usb_syncmem(&sqh->dma, sqh->offs + offsetof(ehci_qh_t, qh_link), 2099 sizeof(sqh->qh.qh_link), BUS_DMASYNC_PREWRITE); 2100 2101 head->next = sqh; 2102 head->qh.qh_link = htole32(sqh->physaddr | EHCI_LINK_QH); 2103 2104 usb_syncmem(&head->dma, head->offs + offsetof(ehci_qh_t, qh_link), 2105 sizeof(head->qh.qh_link), BUS_DMASYNC_PREWRITE); 2106 2107 #ifdef EHCI_DEBUG 2108 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 2109 ehci_dump_sqh(sqh); 2110 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 2111 #endif 2112 } 2113 2114 /* 2115 * Remove an ED from the schedule. Called with USB lock held. 2116 */ 2117 Static void 2118 ehci_rem_qh(ehci_softc_t *sc, ehci_soft_qh_t *sqh, ehci_soft_qh_t *head) 2119 { 2120 ehci_soft_qh_t *p; 2121 2122 KASSERT(mutex_owned(&sc->sc_lock)); 2123 2124 /* XXX */ 2125 for (p = head; p != NULL && p->next != sqh; p = p->next) 2126 ; 2127 if (p == NULL) 2128 panic("ehci_rem_qh: ED not found"); 2129 usb_syncmem(&sqh->dma, sqh->offs + offsetof(ehci_qh_t, qh_link), 2130 sizeof(sqh->qh.qh_link), BUS_DMASYNC_POSTWRITE); 2131 p->next = sqh->next; 2132 p->qh.qh_link = sqh->qh.qh_link; 2133 usb_syncmem(&p->dma, p->offs + offsetof(ehci_qh_t, qh_link), 2134 sizeof(p->qh.qh_link), BUS_DMASYNC_PREWRITE); 2135 2136 ehci_sync_hc(sc); 2137 } 2138 2139 Static void 2140 ehci_set_qh_qtd(ehci_soft_qh_t *sqh, ehci_soft_qtd_t *sqtd) 2141 { 2142 int i; 2143 uint32_t status; 2144 2145 /* Save toggle bit and ping status. */ 2146 usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), 2147 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 2148 status = sqh->qh.qh_qtd.qtd_status & 2149 htole32(EHCI_QTD_TOGGLE_MASK | 2150 EHCI_QTD_SET_STATUS(EHCI_QTD_PINGSTATE)); 2151 /* Set HALTED to make hw leave it alone. */ 2152 sqh->qh.qh_qtd.qtd_status = 2153 htole32(EHCI_QTD_SET_STATUS(EHCI_QTD_HALTED)); 2154 usb_syncmem(&sqh->dma, 2155 sqh->offs + offsetof(ehci_qh_t, qh_qtd.qtd_status), 2156 sizeof(sqh->qh.qh_qtd.qtd_status), 2157 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 2158 sqh->qh.qh_curqtd = 0; 2159 sqh->qh.qh_qtd.qtd_next = htole32(sqtd->physaddr); 2160 sqh->qh.qh_qtd.qtd_altnext = EHCI_NULL; 2161 for (i = 0; i < EHCI_QTD_NBUFFERS; i++) 2162 sqh->qh.qh_qtd.qtd_buffer[i] = 0; 2163 sqh->sqtd = sqtd; 2164 usb_syncmem(&sqh->dma, sqh->offs, sizeof(sqh->qh), 2165 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 2166 /* Set !HALTED && !ACTIVE to start execution, preserve some fields */ 2167 sqh->qh.qh_qtd.qtd_status = status; 2168 usb_syncmem(&sqh->dma, 2169 sqh->offs + offsetof(ehci_qh_t, qh_qtd.qtd_status), 2170 sizeof(sqh->qh.qh_qtd.qtd_status), 2171 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 2172 } 2173 2174 /* 2175 * Ensure that the HC has released all references to the QH. We do this 2176 * by asking for a Async Advance Doorbell interrupt and then we wait for 2177 * the interrupt. 2178 * To make this easier we first obtain exclusive use of the doorbell. 2179 */ 2180 Static void 2181 ehci_sync_hc(ehci_softc_t *sc) 2182 { 2183 int error __diagused; 2184 2185 KASSERT(mutex_owned(&sc->sc_lock)); 2186 2187 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2188 2189 if (sc->sc_dying) { 2190 DPRINTF("dying", 0, 0, 0, 0); 2191 return; 2192 } 2193 2194 /* ask for doorbell */ 2195 EOWRITE4(sc, EHCI_USBCMD, EOREAD4(sc, EHCI_USBCMD) | EHCI_CMD_IAAD); 2196 DPRINTF("cmd = 0x%08jx sts = 0x%08jx", 2197 EOREAD4(sc, EHCI_USBCMD), EOREAD4(sc, EHCI_USBSTS), 0, 0); 2198 2199 error = cv_timedwait(&sc->sc_doorbell, &sc->sc_lock, hz); /* bell wait */ 2200 2201 DPRINTF("cmd = 0x%08jx sts = 0x%08jx ... done", 2202 EOREAD4(sc, EHCI_USBCMD), EOREAD4(sc, EHCI_USBSTS), 0, 0); 2203 #ifdef DIAGNOSTIC 2204 if (error == EWOULDBLOCK) { 2205 printf("ehci_sync_hc: timed out\n"); 2206 } else if (error) { 2207 printf("ehci_sync_hc: cv_timedwait: error %d\n", error); 2208 } 2209 #endif 2210 } 2211 2212 Static void 2213 ehci_remove_itd_chain(ehci_softc_t *sc, struct ehci_soft_itd *itd) 2214 { 2215 2216 KASSERT(mutex_owned(&sc->sc_lock)); 2217 2218 for (; itd != NULL; itd = itd->xfer_next) { 2219 struct ehci_soft_itd *prev = itd->frame_list.prev; 2220 2221 /* Unlink itd from hardware chain, or frame array */ 2222 if (prev == NULL) { /* We're at the table head */ 2223 sc->sc_softitds[itd->slot] = itd->frame_list.next; 2224 sc->sc_flist[itd->slot] = itd->itd.itd_next; 2225 usb_syncmem(&sc->sc_fldma, 2226 sizeof(ehci_link_t) * itd->slot, 2227 sizeof(ehci_link_t), 2228 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 2229 2230 if (itd->frame_list.next != NULL) 2231 itd->frame_list.next->frame_list.prev = NULL; 2232 } else { 2233 /* XXX this part is untested... */ 2234 prev->itd.itd_next = itd->itd.itd_next; 2235 usb_syncmem(&itd->dma, 2236 itd->offs + offsetof(ehci_itd_t, itd_next), 2237 sizeof(itd->itd.itd_next), BUS_DMASYNC_PREWRITE); 2238 2239 prev->frame_list.next = itd->frame_list.next; 2240 if (itd->frame_list.next != NULL) 2241 itd->frame_list.next->frame_list.prev = prev; 2242 } 2243 } 2244 } 2245 2246 Static void 2247 ehci_free_itd_chain(ehci_softc_t *sc, struct ehci_soft_itd *itd) 2248 { 2249 struct ehci_soft_itd *next; 2250 2251 mutex_enter(&sc->sc_lock); 2252 next = NULL; 2253 for (; itd != NULL; itd = next) { 2254 next = itd->xfer_next; 2255 ehci_free_itd_locked(sc, itd); 2256 } 2257 mutex_exit(&sc->sc_lock); 2258 } 2259 2260 Static void 2261 ehci_remove_sitd_chain(ehci_softc_t *sc, struct ehci_soft_sitd *sitd) 2262 { 2263 2264 KASSERT(mutex_owned(&sc->sc_lock)); 2265 2266 for (; sitd != NULL; sitd = sitd->xfer_next) { 2267 struct ehci_soft_sitd *prev = sitd->frame_list.prev; 2268 2269 /* Unlink sitd from hardware chain, or frame array */ 2270 if (prev == NULL) { /* We're at the table head */ 2271 sc->sc_softsitds[sitd->slot] = sitd->frame_list.next; 2272 sc->sc_flist[sitd->slot] = sitd->sitd.sitd_next; 2273 usb_syncmem(&sc->sc_fldma, 2274 sizeof(ehci_link_t) * sitd->slot, 2275 sizeof(ehci_link_t), 2276 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 2277 2278 if (sitd->frame_list.next != NULL) 2279 sitd->frame_list.next->frame_list.prev = NULL; 2280 } else { 2281 /* XXX this part is untested... */ 2282 prev->sitd.sitd_next = sitd->sitd.sitd_next; 2283 usb_syncmem(&sitd->dma, 2284 sitd->offs + offsetof(ehci_sitd_t, sitd_next), 2285 sizeof(sitd->sitd.sitd_next), BUS_DMASYNC_PREWRITE); 2286 2287 prev->frame_list.next = sitd->frame_list.next; 2288 if (sitd->frame_list.next != NULL) 2289 sitd->frame_list.next->frame_list.prev = prev; 2290 } 2291 } 2292 } 2293 2294 Static void 2295 ehci_free_sitd_chain(ehci_softc_t *sc, struct ehci_soft_sitd *sitd) 2296 { 2297 2298 mutex_enter(&sc->sc_lock); 2299 struct ehci_soft_sitd *next = NULL; 2300 for (; sitd != NULL; sitd = next) { 2301 next = sitd->xfer_next; 2302 ehci_free_sitd_locked(sc, sitd); 2303 } 2304 mutex_exit(&sc->sc_lock); 2305 } 2306 2307 /***********/ 2308 2309 Static int 2310 ehci_roothub_ctrl(struct usbd_bus *bus, usb_device_request_t *req, 2311 void *buf, int buflen) 2312 { 2313 ehci_softc_t *sc = EHCI_BUS2SC(bus); 2314 usb_hub_descriptor_t hubd; 2315 usb_port_status_t ps; 2316 uint16_t len, value, index; 2317 int l, totlen = 0; 2318 int port, i; 2319 uint32_t v; 2320 2321 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2322 2323 if (sc->sc_dying) 2324 return -1; 2325 2326 DPRINTF("type=0x%02jx request=%02jx", req->bmRequestType, req->bRequest, 2327 0, 0); 2328 2329 len = UGETW(req->wLength); 2330 value = UGETW(req->wValue); 2331 index = UGETW(req->wIndex); 2332 2333 #define C(x,y) ((x) | ((y) << 8)) 2334 switch (C(req->bRequest, req->bmRequestType)) { 2335 case C(UR_GET_DESCRIPTOR, UT_READ_DEVICE): 2336 if (len == 0) 2337 break; 2338 switch (value) { 2339 #define sd ((usb_string_descriptor_t *)buf) 2340 case C(2, UDESC_STRING): 2341 /* Product */ 2342 totlen = usb_makestrdesc(sd, len, "EHCI root hub"); 2343 break; 2344 #undef sd 2345 default: 2346 /* default from usbroothub */ 2347 return buflen; 2348 } 2349 break; 2350 2351 /* Hub requests */ 2352 case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_DEVICE): 2353 break; 2354 case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_OTHER): 2355 DPRINTF("UR_CLEAR_PORT_FEATURE port=%jd feature=%jd", index, 2356 value, 0, 0); 2357 if (index < 1 || index > sc->sc_noport) { 2358 return -1; 2359 } 2360 port = EHCI_PORTSC(index); 2361 v = EOREAD4(sc, port); 2362 DPRINTF("portsc=0x%08jx", v, 0, 0, 0); 2363 v &= ~EHCI_PS_CLEAR; 2364 switch (value) { 2365 case UHF_PORT_ENABLE: 2366 EOWRITE4(sc, port, v &~ EHCI_PS_PE); 2367 break; 2368 case UHF_PORT_SUSPEND: 2369 if (!(v & EHCI_PS_SUSP)) /* not suspended */ 2370 break; 2371 v &= ~EHCI_PS_SUSP; 2372 EOWRITE4(sc, port, v | EHCI_PS_FPR); 2373 /* see USB2 spec ch. 7.1.7.7 */ 2374 usb_delay_ms(&sc->sc_bus, 20); 2375 EOWRITE4(sc, port, v); 2376 usb_delay_ms(&sc->sc_bus, 2); 2377 #ifdef DEBUG 2378 v = EOREAD4(sc, port); 2379 if (v & (EHCI_PS_FPR | EHCI_PS_SUSP)) 2380 printf("ehci: resume failed: %x\n", v); 2381 #endif 2382 break; 2383 case UHF_PORT_POWER: 2384 if (sc->sc_hasppc) 2385 EOWRITE4(sc, port, v &~ EHCI_PS_PP); 2386 break; 2387 case UHF_PORT_TEST: 2388 DPRINTF("clear port test %jd", index, 0, 0, 0); 2389 break; 2390 case UHF_PORT_INDICATOR: 2391 DPRINTF("clear port ind %jd", index, 0, 0, 0); 2392 EOWRITE4(sc, port, v &~ EHCI_PS_PIC); 2393 break; 2394 case UHF_C_PORT_CONNECTION: 2395 EOWRITE4(sc, port, v | EHCI_PS_CSC); 2396 break; 2397 case UHF_C_PORT_ENABLE: 2398 EOWRITE4(sc, port, v | EHCI_PS_PEC); 2399 break; 2400 case UHF_C_PORT_SUSPEND: 2401 /* how? */ 2402 break; 2403 case UHF_C_PORT_OVER_CURRENT: 2404 EOWRITE4(sc, port, v | EHCI_PS_OCC); 2405 break; 2406 case UHF_C_PORT_RESET: 2407 sc->sc_isreset[index] = 0; 2408 break; 2409 default: 2410 return -1; 2411 } 2412 #if 0 2413 switch(value) { 2414 case UHF_C_PORT_CONNECTION: 2415 case UHF_C_PORT_ENABLE: 2416 case UHF_C_PORT_SUSPEND: 2417 case UHF_C_PORT_OVER_CURRENT: 2418 case UHF_C_PORT_RESET: 2419 default: 2420 break; 2421 } 2422 #endif 2423 break; 2424 case C(UR_GET_DESCRIPTOR, UT_READ_CLASS_DEVICE): 2425 if (len == 0) 2426 break; 2427 if ((value & 0xff) != 0) { 2428 return -1; 2429 } 2430 totlen = uimin(buflen, sizeof(hubd)); 2431 memcpy(&hubd, buf, totlen); 2432 hubd.bNbrPorts = sc->sc_noport; 2433 v = EOREAD4(sc, EHCI_HCSPARAMS); 2434 USETW(hubd.wHubCharacteristics, 2435 EHCI_HCS_PPC(v) ? UHD_PWR_INDIVIDUAL : UHD_PWR_NO_SWITCH | 2436 EHCI_HCS_P_INDICATOR(EREAD4(sc, EHCI_HCSPARAMS)) 2437 ? UHD_PORT_IND : 0); 2438 hubd.bPwrOn2PwrGood = 200; /* XXX can't find out? */ 2439 for (i = 0, l = sc->sc_noport; l > 0; i++, l -= 8, v >>= 8) 2440 hubd.DeviceRemovable[i++] = 0; /* XXX can't find out? */ 2441 hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE + i; 2442 totlen = uimin(totlen, hubd.bDescLength); 2443 memcpy(buf, &hubd, totlen); 2444 break; 2445 case C(UR_GET_STATUS, UT_READ_CLASS_DEVICE): 2446 if (len != 4) { 2447 return -1; 2448 } 2449 memset(buf, 0, len); /* ? XXX */ 2450 totlen = len; 2451 break; 2452 case C(UR_GET_STATUS, UT_READ_CLASS_OTHER): 2453 DPRINTF("get port status i=%jd", index, 0, 0, 0); 2454 if (index < 1 || index > sc->sc_noport) { 2455 return -1; 2456 } 2457 if (len != 4) { 2458 return -1; 2459 } 2460 v = EOREAD4(sc, EHCI_PORTSC(index)); 2461 DPRINTF("port status=0x%04jx", v, 0, 0, 0); 2462 2463 i = UPS_HIGH_SPEED; 2464 if (sc->sc_flags & EHCIF_ETTF) { 2465 /* 2466 * If we are doing embedded transaction translation, 2467 * then directly attached LS/FS devices are reset by 2468 * the EHCI controller itself. PSPD is encoded 2469 * the same way as in USBSTATUS. 2470 */ 2471 i = __SHIFTOUT(v, EHCI_PS_PSPD) * UPS_LOW_SPEED; 2472 } 2473 if (v & EHCI_PS_CS) i |= UPS_CURRENT_CONNECT_STATUS; 2474 if (v & EHCI_PS_PE) i |= UPS_PORT_ENABLED; 2475 if (v & EHCI_PS_SUSP) i |= UPS_SUSPEND; 2476 if (v & EHCI_PS_OCA) i |= UPS_OVERCURRENT_INDICATOR; 2477 if (v & EHCI_PS_PR) i |= UPS_RESET; 2478 if (v & EHCI_PS_PP) i |= UPS_PORT_POWER; 2479 if (sc->sc_vendor_port_status) 2480 i = sc->sc_vendor_port_status(sc, v, i); 2481 USETW(ps.wPortStatus, i); 2482 i = 0; 2483 if (v & EHCI_PS_CSC) i |= UPS_C_CONNECT_STATUS; 2484 if (v & EHCI_PS_PEC) i |= UPS_C_PORT_ENABLED; 2485 if (v & EHCI_PS_OCC) i |= UPS_C_OVERCURRENT_INDICATOR; 2486 if (sc->sc_isreset[index]) i |= UPS_C_PORT_RESET; 2487 USETW(ps.wPortChange, i); 2488 totlen = uimin(len, sizeof(ps)); 2489 memcpy(buf, &ps, totlen); 2490 break; 2491 case C(UR_SET_DESCRIPTOR, UT_WRITE_CLASS_DEVICE): 2492 return -1; 2493 case C(UR_SET_FEATURE, UT_WRITE_CLASS_DEVICE): 2494 break; 2495 case C(UR_SET_FEATURE, UT_WRITE_CLASS_OTHER): 2496 if (index < 1 || index > sc->sc_noport) { 2497 return -1; 2498 } 2499 port = EHCI_PORTSC(index); 2500 v = EOREAD4(sc, port); 2501 DPRINTF("portsc=0x%08jx", v, 0, 0, 0); 2502 v &= ~EHCI_PS_CLEAR; 2503 switch(value) { 2504 case UHF_PORT_ENABLE: 2505 EOWRITE4(sc, port, v | EHCI_PS_PE); 2506 break; 2507 case UHF_PORT_SUSPEND: 2508 EOWRITE4(sc, port, v | EHCI_PS_SUSP); 2509 break; 2510 case UHF_PORT_RESET: 2511 DPRINTF("reset port %jd", index, 0, 0, 0); 2512 if (EHCI_PS_IS_LOWSPEED(v) 2513 && sc->sc_ncomp > 0 2514 && !(sc->sc_flags & EHCIF_ETTF)) { 2515 /* 2516 * Low speed device on non-ETTF controller or 2517 * unaccompanied controller, give up ownership. 2518 */ 2519 ehci_disown(sc, index, 1); 2520 break; 2521 } 2522 /* Start reset sequence. */ 2523 v &= ~ (EHCI_PS_PE | EHCI_PS_PR); 2524 EOWRITE4(sc, port, v | EHCI_PS_PR); 2525 /* Wait for reset to complete. */ 2526 usb_delay_ms(&sc->sc_bus, USB_PORT_ROOT_RESET_DELAY); 2527 if (sc->sc_dying) { 2528 return -1; 2529 } 2530 /* 2531 * An embedded transaction translator will automatically 2532 * terminate the reset sequence so there's no need to 2533 * it. 2534 */ 2535 v = EOREAD4(sc, port); 2536 if (v & EHCI_PS_PR) { 2537 /* Terminate reset sequence. */ 2538 EOWRITE4(sc, port, v & ~EHCI_PS_PR); 2539 /* Wait for HC to complete reset. */ 2540 usb_delay_ms(&sc->sc_bus, 2541 EHCI_PORT_RESET_COMPLETE); 2542 if (sc->sc_dying) { 2543 return -1; 2544 } 2545 } 2546 2547 v = EOREAD4(sc, port); 2548 DPRINTF("ehci after reset, status=0x%08jx", v, 0, 0, 0); 2549 if (v & EHCI_PS_PR) { 2550 printf("%s: port reset timeout\n", 2551 device_xname(sc->sc_dev)); 2552 return USBD_TIMEOUT; 2553 } 2554 if (!(v & EHCI_PS_PE)) { 2555 /* Not a high speed device, give up ownership.*/ 2556 ehci_disown(sc, index, 0); 2557 break; 2558 } 2559 sc->sc_isreset[index] = 1; 2560 DPRINTF("ehci port %jd reset, status = 0x%08jx", index, 2561 v, 0, 0); 2562 break; 2563 case UHF_PORT_POWER: 2564 DPRINTF("set port power %jd (has PPC = %jd)", index, 2565 sc->sc_hasppc, 0, 0); 2566 if (sc->sc_hasppc) 2567 EOWRITE4(sc, port, v | EHCI_PS_PP); 2568 break; 2569 case UHF_PORT_TEST: 2570 DPRINTF("set port test %jd", index, 0, 0, 0); 2571 break; 2572 case UHF_PORT_INDICATOR: 2573 DPRINTF("set port ind %jd", index, 0, 0, 0); 2574 EOWRITE4(sc, port, v | EHCI_PS_PIC); 2575 break; 2576 default: 2577 return -1; 2578 } 2579 break; 2580 case C(UR_CLEAR_TT_BUFFER, UT_WRITE_CLASS_OTHER): 2581 case C(UR_RESET_TT, UT_WRITE_CLASS_OTHER): 2582 case C(UR_GET_TT_STATE, UT_READ_CLASS_OTHER): 2583 case C(UR_STOP_TT, UT_WRITE_CLASS_OTHER): 2584 break; 2585 default: 2586 /* default from usbroothub */ 2587 DPRINTF("returning %jd (usbroothub default)", buflen, 0, 0, 0); 2588 2589 return buflen; 2590 } 2591 2592 DPRINTF("returning %jd", totlen, 0, 0, 0); 2593 2594 return totlen; 2595 } 2596 2597 /* 2598 * Handle ehci hand-off in early boot vs RB_ASKNAME/RB_SINGLE. 2599 * 2600 * This pile of garbage below works around the following problem without 2601 * holding boots with no hand-over devices present, while penalising 2602 * boots where the first ehci probe hands off devices with a 5 second 2603 * delay, if RB_ASKNAME/RB_SINGLE is set. This is typically not a problem 2604 * for RB_SINGLE, but the same basic issue exists. 2605 * 2606 * The way ehci hand-off works, the companion controller does not get the 2607 * device until after its initial bus explore, so the reference dropped 2608 * after the first explore is not enough. 5 seconds should be enough, 2609 * and EHCI_DISOWN_DELAY_SECONDS can be set to another value. 2610 * 2611 * There are 3 states. CO_EARLY is set during attach. CO_SCHED is set 2612 * if the callback is scheduled. CO_DONE is set when the callout has 2613 * called config_pending_decr(). 2614 * 2615 * There's a mutex, a cv and a callout here, and we delay detach if the 2616 * callout has been set. 2617 */ 2618 #ifndef EHCI_DISOWN_DELAY_SECONDS 2619 #define EHCI_DISOWN_DELAY_SECONDS 5 2620 #endif 2621 static int ehci_disown_delay_seconds = EHCI_DISOWN_DELAY_SECONDS; 2622 2623 static void 2624 ehci_disown_callback(void *arg) 2625 { 2626 ehci_softc_t *sc = arg; 2627 2628 config_pending_decr(sc->sc_dev); 2629 2630 mutex_enter(&sc->sc_complock); 2631 KASSERT(sc->sc_comp_state == CO_SCHED); 2632 sc->sc_comp_state = CO_DONE; 2633 cv_signal(&sc->sc_compcv); 2634 mutex_exit(&sc->sc_complock); 2635 } 2636 2637 static void 2638 ehci_disown_sched_callback(ehci_softc_t *sc) 2639 { 2640 extern bool root_is_mounted; 2641 2642 mutex_enter(&sc->sc_complock); 2643 2644 if (root_is_mounted || 2645 (boothowto & (RB_ASKNAME|RB_SINGLE)) == 0 || 2646 sc->sc_comp_state != CO_EARLY) { 2647 mutex_exit(&sc->sc_complock); 2648 return; 2649 } 2650 2651 callout_reset(&sc->sc_compcallout, ehci_disown_delay_seconds * hz, 2652 ehci_disown_callback, &sc->sc_dev); 2653 sc->sc_comp_state = CO_SCHED; 2654 2655 mutex_exit(&sc->sc_complock); 2656 2657 config_pending_incr(sc->sc_dev); 2658 aprint_normal("delaying %s by %u seconds due to USB owner change.", 2659 (boothowto & RB_ASKNAME) == 0 ? "ask root" : "single user", 2660 ehci_disown_delay_seconds); 2661 } 2662 2663 Static void 2664 ehci_disown(ehci_softc_t *sc, int index, int lowspeed) 2665 { 2666 int port; 2667 uint32_t v; 2668 2669 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2670 2671 DPRINTF("index=%jd lowspeed=%jd", index, lowspeed, 0, 0); 2672 if (sc->sc_npcomp != 0) { 2673 int i = (index-1) / sc->sc_npcomp; 2674 if (i < sc->sc_ncomp) { 2675 ehci_disown_sched_callback(sc); 2676 #ifdef DIAGNOSTIC 2677 printf("%s: handing over %s speed device on " 2678 "port %d to %s\n", 2679 device_xname(sc->sc_dev), 2680 lowspeed ? "low" : "full", 2681 index, sc->sc_comps[i] ? 2682 device_xname(sc->sc_comps[i]) : 2683 "companion controller"); 2684 } else { 2685 printf("%s: strange port\n", 2686 device_xname(sc->sc_dev)); 2687 #endif 2688 } 2689 } else { 2690 #ifdef DIAGNOSTIC 2691 printf("%s: npcomp == 0\n", device_xname(sc->sc_dev)); 2692 #endif 2693 } 2694 port = EHCI_PORTSC(index); 2695 v = EOREAD4(sc, port) &~ EHCI_PS_CLEAR; 2696 EOWRITE4(sc, port, v | EHCI_PS_PO); 2697 } 2698 2699 Static usbd_status 2700 ehci_root_intr_transfer(struct usbd_xfer *xfer) 2701 { 2702 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 2703 usbd_status err; 2704 2705 /* Insert last in queue. */ 2706 mutex_enter(&sc->sc_lock); 2707 err = usb_insert_transfer(xfer); 2708 mutex_exit(&sc->sc_lock); 2709 if (err) 2710 return err; 2711 2712 /* Pipe isn't running, start first */ 2713 return ehci_root_intr_start(SIMPLEQ_FIRST(&xfer->ux_pipe->up_queue)); 2714 } 2715 2716 Static usbd_status 2717 ehci_root_intr_start(struct usbd_xfer *xfer) 2718 { 2719 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 2720 const bool polling = sc->sc_bus.ub_usepolling; 2721 2722 if (sc->sc_dying) 2723 return USBD_IOERROR; 2724 2725 if (!polling) 2726 mutex_enter(&sc->sc_lock); 2727 KASSERT(sc->sc_intrxfer == NULL); 2728 sc->sc_intrxfer = xfer; 2729 xfer->ux_status = USBD_IN_PROGRESS; 2730 if (!polling) 2731 mutex_exit(&sc->sc_lock); 2732 2733 return USBD_IN_PROGRESS; 2734 } 2735 2736 /* Abort a root interrupt request. */ 2737 Static void 2738 ehci_root_intr_abort(struct usbd_xfer *xfer) 2739 { 2740 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 2741 2742 KASSERT(mutex_owned(&sc->sc_lock)); 2743 KASSERT(xfer->ux_pipe->up_intrxfer == xfer); 2744 2745 /* If xfer has already completed, nothing to do here. */ 2746 if (sc->sc_intrxfer == NULL) 2747 return; 2748 2749 /* 2750 * Otherwise, sc->sc_intrxfer had better be this transfer. 2751 * Cancel it. 2752 */ 2753 KASSERT(sc->sc_intrxfer == xfer); 2754 KASSERT(xfer->ux_status == USBD_IN_PROGRESS); 2755 xfer->ux_status = USBD_CANCELLED; 2756 usb_transfer_complete(xfer); 2757 } 2758 2759 /* Close the root pipe. */ 2760 Static void 2761 ehci_root_intr_close(struct usbd_pipe *pipe) 2762 { 2763 ehci_softc_t *sc __diagused = EHCI_PIPE2SC(pipe); 2764 2765 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2766 2767 KASSERT(mutex_owned(&sc->sc_lock)); 2768 2769 /* 2770 * Caller must guarantee the xfer has completed first, by 2771 * closing the pipe only after normal completion or an abort. 2772 */ 2773 KASSERT(sc->sc_intrxfer == NULL); 2774 } 2775 2776 Static void 2777 ehci_root_intr_done(struct usbd_xfer *xfer) 2778 { 2779 struct ehci_softc *sc = EHCI_XFER2SC(xfer); 2780 2781 KASSERT(mutex_owned(&sc->sc_lock)); 2782 2783 /* Claim the xfer so it doesn't get completed again. */ 2784 KASSERT(sc->sc_intrxfer == xfer); 2785 KASSERT(xfer->ux_status != USBD_IN_PROGRESS); 2786 sc->sc_intrxfer = NULL; 2787 } 2788 2789 /************************/ 2790 2791 Static ehci_soft_qh_t * 2792 ehci_alloc_sqh(ehci_softc_t *sc) 2793 { 2794 ehci_soft_qh_t *sqh; 2795 usbd_status err; 2796 int i, offs; 2797 usb_dma_t dma; 2798 2799 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2800 2801 mutex_enter(&sc->sc_lock); 2802 if (sc->sc_freeqhs == NULL) { 2803 DPRINTF("allocating chunk", 0, 0, 0, 0); 2804 mutex_exit(&sc->sc_lock); 2805 2806 err = usb_allocmem(&sc->sc_bus, EHCI_SQH_SIZE * EHCI_SQH_CHUNK, 2807 EHCI_PAGE_SIZE, USBMALLOC_COHERENT, &dma); 2808 #ifdef EHCI_DEBUG 2809 if (err) 2810 printf("ehci_alloc_sqh: usb_allocmem()=%d\n", err); 2811 #endif 2812 if (err) 2813 return NULL; 2814 2815 mutex_enter(&sc->sc_lock); 2816 for (i = 0; i < EHCI_SQH_CHUNK; i++) { 2817 offs = i * EHCI_SQH_SIZE; 2818 sqh = KERNADDR(&dma, offs); 2819 sqh->physaddr = DMAADDR(&dma, offs); 2820 sqh->dma = dma; 2821 sqh->offs = offs; 2822 sqh->next = sc->sc_freeqhs; 2823 sc->sc_freeqhs = sqh; 2824 } 2825 } 2826 sqh = sc->sc_freeqhs; 2827 sc->sc_freeqhs = sqh->next; 2828 mutex_exit(&sc->sc_lock); 2829 2830 memset(&sqh->qh, 0, sizeof(ehci_qh_t)); 2831 sqh->next = NULL; 2832 return sqh; 2833 } 2834 2835 Static void 2836 ehci_free_sqh(ehci_softc_t *sc, ehci_soft_qh_t *sqh) 2837 { 2838 KASSERT(mutex_owned(&sc->sc_lock)); 2839 2840 sqh->next = sc->sc_freeqhs; 2841 sc->sc_freeqhs = sqh; 2842 } 2843 2844 Static ehci_soft_qtd_t * 2845 ehci_alloc_sqtd(ehci_softc_t *sc) 2846 { 2847 ehci_soft_qtd_t *sqtd = NULL; 2848 int i, offs; 2849 usb_dma_t dma; 2850 2851 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2852 2853 mutex_enter(&sc->sc_lock); 2854 if (sc->sc_freeqtds == NULL) { 2855 DPRINTF("allocating chunk", 0, 0, 0, 0); 2856 mutex_exit(&sc->sc_lock); 2857 2858 int err = usb_allocmem(&sc->sc_bus, 2859 EHCI_SQTD_SIZE*EHCI_SQTD_CHUNK, 2860 EHCI_PAGE_SIZE, USBMALLOC_COHERENT, 2861 &dma); 2862 #ifdef EHCI_DEBUG 2863 if (err) 2864 printf("ehci_alloc_sqtd: usb_allocmem()=%d\n", err); 2865 #endif 2866 if (err) 2867 goto done; 2868 2869 mutex_enter(&sc->sc_lock); 2870 for (i = 0; i < EHCI_SQTD_CHUNK; i++) { 2871 offs = i * EHCI_SQTD_SIZE; 2872 sqtd = KERNADDR(&dma, offs); 2873 sqtd->physaddr = DMAADDR(&dma, offs); 2874 sqtd->dma = dma; 2875 sqtd->offs = offs; 2876 2877 sqtd->nextqtd = sc->sc_freeqtds; 2878 sc->sc_freeqtds = sqtd; 2879 } 2880 } 2881 2882 sqtd = sc->sc_freeqtds; 2883 sc->sc_freeqtds = sqtd->nextqtd; 2884 mutex_exit(&sc->sc_lock); 2885 2886 memset(&sqtd->qtd, 0, sizeof(ehci_qtd_t)); 2887 sqtd->nextqtd = NULL; 2888 sqtd->xfer = NULL; 2889 2890 done: 2891 return sqtd; 2892 } 2893 2894 Static void 2895 ehci_free_sqtd(ehci_softc_t *sc, ehci_soft_qtd_t *sqtd) 2896 { 2897 2898 mutex_enter(&sc->sc_lock); 2899 sqtd->nextqtd = sc->sc_freeqtds; 2900 sc->sc_freeqtds = sqtd; 2901 mutex_exit(&sc->sc_lock); 2902 } 2903 2904 Static int 2905 ehci_alloc_sqtd_chain(ehci_softc_t *sc, struct usbd_xfer *xfer, 2906 int alen, int rd, ehci_soft_qtd_t **sp) 2907 { 2908 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 2909 uint16_t flags = xfer->ux_flags; 2910 2911 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2912 2913 ASSERT_SLEEPABLE(); 2914 KASSERT(sp); 2915 KASSERT(alen != 0 || (!rd && (flags & USBD_FORCE_SHORT_XFER))); 2916 2917 size_t nsqtd = (!rd && (flags & USBD_FORCE_SHORT_XFER)) ? 1 : 0; 2918 nsqtd += howmany(alen, EHCI_PAGE_SIZE); 2919 exfer->ex_sqtds = kmem_zalloc(sizeof(ehci_soft_qtd_t *) * nsqtd, 2920 KM_SLEEP); 2921 exfer->ex_nsqtd = nsqtd; 2922 2923 DPRINTF("xfer %#jx len %jd nsqtd %jd flags %jx", (uintptr_t)xfer, 2924 alen, nsqtd, flags); 2925 2926 for (size_t j = 0; j < exfer->ex_nsqtd;) { 2927 ehci_soft_qtd_t *cur = ehci_alloc_sqtd(sc); 2928 if (cur == NULL) 2929 goto nomem; 2930 exfer->ex_sqtds[j++] = cur; 2931 2932 cur->xfer = xfer; 2933 cur->len = 0; 2934 2935 } 2936 2937 *sp = exfer->ex_sqtds[0]; 2938 DPRINTF("return sqtd=%#jx", (uintptr_t)*sp, 0, 0, 0); 2939 2940 return 0; 2941 2942 nomem: 2943 ehci_free_sqtds(sc, exfer); 2944 kmem_free(exfer->ex_sqtds, sizeof(ehci_soft_qtd_t *) * nsqtd); 2945 DPRINTF("no memory", 0, 0, 0, 0); 2946 return ENOMEM; 2947 } 2948 2949 Static void 2950 ehci_free_sqtds(ehci_softc_t *sc, struct ehci_xfer *exfer) 2951 { 2952 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2953 DPRINTF("exfer=%#jx", (uintptr_t)exfer, 0, 0, 0); 2954 2955 mutex_enter(&sc->sc_lock); 2956 for (size_t i = 0; i < exfer->ex_nsqtd; i++) { 2957 ehci_soft_qtd_t *sqtd = exfer->ex_sqtds[i]; 2958 2959 if (sqtd == NULL) 2960 break; 2961 2962 sqtd->nextqtd = sc->sc_freeqtds; 2963 sc->sc_freeqtds = sqtd; 2964 } 2965 mutex_exit(&sc->sc_lock); 2966 } 2967 2968 Static void 2969 ehci_append_sqtd(ehci_soft_qtd_t *sqtd, ehci_soft_qtd_t *prev) 2970 { 2971 if (prev) { 2972 prev->nextqtd = sqtd; 2973 prev->qtd.qtd_next = htole32(sqtd->physaddr); 2974 prev->qtd.qtd_altnext = prev->qtd.qtd_next; 2975 usb_syncmem(&prev->dma, prev->offs, sizeof(prev->qtd), 2976 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 2977 } 2978 } 2979 2980 Static void 2981 ehci_reset_sqtd_chain(ehci_softc_t *sc, struct usbd_xfer *xfer, 2982 int length, int isread, int *toggle, ehci_soft_qtd_t **lsqtd) 2983 { 2984 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 2985 usb_dma_t *dma = &xfer->ux_dmabuf; 2986 uint16_t flags = xfer->ux_flags; 2987 ehci_soft_qtd_t *sqtd, *prev; 2988 int tog = *toggle; 2989 int mps = UGETW(xfer->ux_pipe->up_endpoint->ue_edesc->wMaxPacketSize); 2990 int len = length; 2991 2992 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 2993 DPRINTF("xfer=%#jx len %jd isread %jd toggle %jd", (uintptr_t)xfer, 2994 len, isread, tog); 2995 DPRINTF(" VA %#jx", (uintptr_t)KERNADDR(&xfer->ux_dmabuf, 0), 2996 0, 0, 0); 2997 2998 KASSERT(length != 0 || (!isread && (flags & USBD_FORCE_SHORT_XFER))); 2999 3000 const uint32_t qtdstatus = EHCI_QTD_ACTIVE | 3001 EHCI_QTD_SET_PID(isread ? EHCI_QTD_PID_IN : EHCI_QTD_PID_OUT) | 3002 EHCI_QTD_SET_CERR(3) 3003 ; 3004 3005 sqtd = prev = NULL; 3006 size_t curoffs = 0; 3007 size_t j = 0; 3008 for (; len != 0 && j < exfer->ex_nsqtd; prev = sqtd) { 3009 sqtd = exfer->ex_sqtds[j++]; 3010 DPRINTF("sqtd[%jd]=%#jx prev %#jx", j, (uintptr_t)sqtd, 3011 (uintptr_t)prev, 0); 3012 3013 /* 3014 * The EHCI hardware can handle at most 5 pages and they do 3015 * not have to be contiguous 3016 */ 3017 vaddr_t va = (vaddr_t)KERNADDR(dma, curoffs); 3018 vaddr_t va_offs = EHCI_PAGE_OFFSET(va); 3019 size_t curlen = len; 3020 if (curlen >= EHCI_QTD_MAXTRANSFER - va_offs) { 3021 /* must use multiple TDs, fill as much as possible. */ 3022 curlen = EHCI_QTD_MAXTRANSFER - va_offs; 3023 3024 /* the length must be a multiple of the max size */ 3025 curlen -= curlen % mps; 3026 } 3027 KASSERT(curlen != 0); 3028 DPRINTF(" len=%jd curlen=%jd curoffs=%ju", len, curlen, 3029 curoffs, 0); 3030 3031 /* Fill the qTD */ 3032 sqtd->qtd.qtd_next = sqtd->qtd.qtd_altnext = EHCI_NULL; 3033 sqtd->qtd.qtd_status = htole32( 3034 qtdstatus | 3035 EHCI_QTD_SET_BYTES(curlen) | 3036 EHCI_QTD_SET_TOGGLE(tog)); 3037 3038 /* Find number of pages we'll be using, insert dma addresses */ 3039 size_t pages = EHCI_NPAGES(curlen); 3040 KASSERT(pages <= EHCI_QTD_NBUFFERS); 3041 size_t pageoffs = EHCI_PAGE(curoffs); 3042 for (size_t i = 0; i < pages; i++) { 3043 paddr_t a = EHCI_PAGE(DMAADDR(dma, 3044 pageoffs + i * EHCI_PAGE_SIZE)); 3045 sqtd->qtd.qtd_buffer[i] = htole32(BUS_ADDR_LO32(a)); 3046 sqtd->qtd.qtd_buffer_hi[i] = htole32(BUS_ADDR_HI32(a)); 3047 DPRINTF(" buffer[%jd/%jd] 0x%08jx 0x%08jx", 3048 i, pages, 3049 le32toh(sqtd->qtd.qtd_buffer_hi[i]), 3050 le32toh(sqtd->qtd.qtd_buffer[i])); 3051 } 3052 /* First buffer pointer requires a page offset to start at */ 3053 sqtd->qtd.qtd_buffer[0] |= htole32(va_offs); 3054 3055 usb_syncmem(&sqtd->dma, sqtd->offs, sizeof(sqtd->qtd), 3056 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3057 3058 sqtd->len = curlen; 3059 3060 DPRINTF(" va %#jx pa %#jx len %jd", (uintptr_t)va, 3061 (uintptr_t)DMAADDR(&xfer->ux_dmabuf, curoffs), curlen, 0); 3062 3063 ehci_append_sqtd(sqtd, prev); 3064 3065 if (howmany(curlen, mps) & 1) { 3066 tog ^= 1; 3067 } 3068 3069 curoffs += curlen; 3070 len -= curlen; 3071 } 3072 KASSERTMSG(len == 0, "xfer %p olen %d len %d mps %d ex_nsqtd %zu j %zu", 3073 xfer, length, len, mps, exfer->ex_nsqtd, j); 3074 3075 if (!isread && 3076 (flags & USBD_FORCE_SHORT_XFER) && 3077 length % mps == 0) { 3078 /* Force a 0 length transfer at the end. */ 3079 3080 KASSERTMSG(j < exfer->ex_nsqtd, "j=%zu nsqtd=%zu", j, 3081 exfer->ex_nsqtd); 3082 prev = sqtd; 3083 sqtd = exfer->ex_sqtds[j++]; 3084 memset(&sqtd->qtd, 0, sizeof(sqtd->qtd)); 3085 sqtd->qtd.qtd_next = sqtd->qtd.qtd_altnext = EHCI_NULL; 3086 sqtd->qtd.qtd_status = htole32( 3087 qtdstatus | 3088 EHCI_QTD_SET_BYTES(0) | 3089 EHCI_QTD_SET_TOGGLE(tog)); 3090 3091 usb_syncmem(&sqtd->dma, sqtd->offs, sizeof(sqtd->qtd), 3092 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3093 3094 ehci_append_sqtd(sqtd, prev); 3095 tog ^= 1; 3096 } 3097 3098 *lsqtd = sqtd; 3099 *toggle = tog; 3100 } 3101 3102 Static ehci_soft_itd_t * 3103 ehci_alloc_itd(ehci_softc_t *sc) 3104 { 3105 struct ehci_soft_itd *itd, *freeitd; 3106 usb_dma_t dma; 3107 3108 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3109 3110 mutex_enter(&sc->sc_lock); 3111 3112 freeitd = LIST_FIRST(&sc->sc_freeitds); 3113 if (freeitd == NULL) { 3114 DPRINTF("allocating chunk", 0, 0, 0, 0); 3115 mutex_exit(&sc->sc_lock); 3116 int err = usb_allocmem(&sc->sc_bus, EHCI_ITD_SIZE * EHCI_ITD_CHUNK, 3117 EHCI_PAGE_SIZE, USBMALLOC_COHERENT, &dma); 3118 3119 if (err) { 3120 DPRINTF("alloc returned %jd", err, 0, 0, 0); 3121 return NULL; 3122 } 3123 mutex_enter(&sc->sc_lock); 3124 3125 for (int i = 0; i < EHCI_ITD_CHUNK; i++) { 3126 int offs = i * EHCI_ITD_SIZE; 3127 itd = KERNADDR(&dma, offs); 3128 itd->physaddr = DMAADDR(&dma, offs); 3129 itd->dma = dma; 3130 itd->offs = offs; 3131 LIST_INSERT_HEAD(&sc->sc_freeitds, itd, free_list); 3132 } 3133 freeitd = LIST_FIRST(&sc->sc_freeitds); 3134 } 3135 3136 itd = freeitd; 3137 LIST_REMOVE(itd, free_list); 3138 mutex_exit(&sc->sc_lock); 3139 memset(&itd->itd, 0, sizeof(ehci_itd_t)); 3140 3141 itd->frame_list.next = NULL; 3142 itd->frame_list.prev = NULL; 3143 itd->xfer_next = NULL; 3144 itd->slot = 0; 3145 3146 return itd; 3147 } 3148 3149 Static ehci_soft_sitd_t * 3150 ehci_alloc_sitd(ehci_softc_t *sc) 3151 { 3152 struct ehci_soft_sitd *sitd, *freesitd; 3153 int i, offs; 3154 usb_dma_t dma; 3155 3156 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3157 3158 mutex_enter(&sc->sc_lock); 3159 freesitd = LIST_FIRST(&sc->sc_freesitds); 3160 if (freesitd == NULL) { 3161 DPRINTF("allocating chunk", 0, 0, 0, 0); 3162 mutex_exit(&sc->sc_lock); 3163 int err = usb_allocmem(&sc->sc_bus, EHCI_SITD_SIZE * EHCI_SITD_CHUNK, 3164 EHCI_PAGE_SIZE, USBMALLOC_COHERENT, &dma); 3165 3166 if (err) { 3167 DPRINTF("alloc returned %jd", err, 0, 0, 3168 0); 3169 return NULL; 3170 } 3171 3172 mutex_enter(&sc->sc_lock); 3173 for (i = 0; i < EHCI_SITD_CHUNK; i++) { 3174 offs = i * EHCI_SITD_SIZE; 3175 sitd = KERNADDR(&dma, offs); 3176 sitd->physaddr = DMAADDR(&dma, offs); 3177 sitd->dma = dma; 3178 sitd->offs = offs; 3179 LIST_INSERT_HEAD(&sc->sc_freesitds, sitd, free_list); 3180 } 3181 freesitd = LIST_FIRST(&sc->sc_freesitds); 3182 } 3183 3184 sitd = freesitd; 3185 LIST_REMOVE(sitd, free_list); 3186 mutex_exit(&sc->sc_lock); 3187 3188 memset(&sitd->sitd, 0, sizeof(ehci_sitd_t)); 3189 3190 sitd->frame_list.next = NULL; 3191 sitd->frame_list.prev = NULL; 3192 sitd->xfer_next = NULL; 3193 sitd->slot = 0; 3194 3195 return sitd; 3196 } 3197 3198 /****************/ 3199 3200 /* 3201 * Close a reqular pipe. 3202 * Assumes that there are no pending transactions. 3203 */ 3204 Static void 3205 ehci_close_pipe(struct usbd_pipe *pipe, ehci_soft_qh_t *head) 3206 { 3207 struct ehci_pipe *epipe = EHCI_PIPE2EPIPE(pipe); 3208 ehci_softc_t *sc = EHCI_PIPE2SC(pipe); 3209 ehci_soft_qh_t *sqh = epipe->sqh; 3210 3211 KASSERT(mutex_owned(&sc->sc_lock)); 3212 3213 ehci_rem_qh(sc, sqh, head); 3214 ehci_free_sqh(sc, epipe->sqh); 3215 } 3216 3217 /* 3218 * Arrange for the hardware to tells us that it is not still 3219 * processing the TDs by setting the QH halted bit and wait for the ehci 3220 * door bell 3221 */ 3222 Static void 3223 ehci_abortx(struct usbd_xfer *xfer) 3224 { 3225 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3226 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 3227 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 3228 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3229 ehci_soft_qh_t *sqh = epipe->sqh; 3230 ehci_soft_qtd_t *sqtd, *fsqtd, *lsqtd; 3231 ehci_physaddr_t cur; 3232 uint32_t qhstatus; 3233 int hit; 3234 3235 DPRINTF("xfer=%#jx pipe=%#jx", (uintptr_t)xfer, (uintptr_t)epipe, 0, 0); 3236 3237 KASSERT(mutex_owned(&sc->sc_lock)); 3238 ASSERT_SLEEPABLE(); 3239 3240 KASSERTMSG((xfer->ux_status == USBD_CANCELLED || 3241 xfer->ux_status == USBD_TIMEOUT), 3242 "bad abort status: %d", xfer->ux_status); 3243 3244 /* 3245 * If we're dying, skip the hardware action and just notify the 3246 * software that we're done. 3247 */ 3248 if (sc->sc_dying) { 3249 goto dying; 3250 } 3251 3252 /* 3253 * HC Step 1: Make interrupt routine and hardware ignore xfer. 3254 */ 3255 ehci_del_intr_list(sc, exfer); 3256 3257 usb_syncmem(&sqh->dma, 3258 sqh->offs + offsetof(ehci_qh_t, qh_qtd.qtd_status), 3259 sizeof(sqh->qh.qh_qtd.qtd_status), 3260 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 3261 qhstatus = sqh->qh.qh_qtd.qtd_status; 3262 sqh->qh.qh_qtd.qtd_status = qhstatus | htole32(EHCI_QTD_HALTED); 3263 usb_syncmem(&sqh->dma, 3264 sqh->offs + offsetof(ehci_qh_t, qh_qtd.qtd_status), 3265 sizeof(sqh->qh.qh_qtd.qtd_status), 3266 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3267 3268 if (exfer->ex_type == EX_CTRL) { 3269 fsqtd = exfer->ex_setup; 3270 lsqtd = exfer->ex_status; 3271 } else { 3272 fsqtd = exfer->ex_sqtdstart; 3273 lsqtd = exfer->ex_sqtdend; 3274 } 3275 for (sqtd = fsqtd; ; sqtd = sqtd->nextqtd) { 3276 usb_syncmem(&sqtd->dma, 3277 sqtd->offs + offsetof(ehci_qtd_t, qtd_status), 3278 sizeof(sqtd->qtd.qtd_status), 3279 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 3280 sqtd->qtd.qtd_status |= htole32(EHCI_QTD_HALTED); 3281 usb_syncmem(&sqtd->dma, 3282 sqtd->offs + offsetof(ehci_qtd_t, qtd_status), 3283 sizeof(sqtd->qtd.qtd_status), 3284 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3285 if (sqtd == lsqtd) 3286 break; 3287 } 3288 3289 /* 3290 * HC Step 2: Wait until we know hardware has finished any possible 3291 * use of the xfer. 3292 */ 3293 ehci_sync_hc(sc); 3294 3295 /* 3296 * HC Step 3: Remove any vestiges of the xfer from the hardware. 3297 * The complication here is that the hardware may have executed 3298 * beyond the xfer we're trying to abort. So as we're scanning 3299 * the TDs of this xfer we check if the hardware points to 3300 * any of them. 3301 */ 3302 3303 usb_syncmem(&sqh->dma, 3304 sqh->offs + offsetof(ehci_qh_t, qh_curqtd), 3305 sizeof(sqh->qh.qh_curqtd), 3306 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 3307 cur = EHCI_LINK_ADDR(le32toh(sqh->qh.qh_curqtd)); 3308 hit = 0; 3309 for (sqtd = fsqtd; ; sqtd = sqtd->nextqtd) { 3310 hit |= cur == sqtd->physaddr; 3311 if (sqtd == lsqtd) 3312 break; 3313 } 3314 sqtd = sqtd->nextqtd; 3315 /* Zap curqtd register if hardware pointed inside the xfer. */ 3316 if (hit && sqtd != NULL) { 3317 DPRINTF("cur=0x%08jx", sqtd->physaddr, 0, 0, 0); 3318 sqh->qh.qh_curqtd = htole32(sqtd->physaddr); /* unlink qTDs */ 3319 usb_syncmem(&sqh->dma, 3320 sqh->offs + offsetof(ehci_qh_t, qh_curqtd), 3321 sizeof(sqh->qh.qh_curqtd), 3322 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3323 sqh->qh.qh_qtd.qtd_status = qhstatus; 3324 usb_syncmem(&sqh->dma, 3325 sqh->offs + offsetof(ehci_qh_t, qh_qtd.qtd_status), 3326 sizeof(sqh->qh.qh_qtd.qtd_status), 3327 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3328 } else { 3329 DPRINTF("no hit", 0, 0, 0, 0); 3330 usb_syncmem(&sqh->dma, 3331 sqh->offs + offsetof(ehci_qh_t, qh_curqtd), 3332 sizeof(sqh->qh.qh_curqtd), 3333 BUS_DMASYNC_PREREAD); 3334 } 3335 3336 /* 3337 * Final step: Notify completion to waiting xfers. 3338 */ 3339 dying: 3340 #ifdef DIAGNOSTIC 3341 exfer->ex_isdone = true; 3342 #endif 3343 usb_transfer_complete(xfer); 3344 DPRINTFN(14, "end", 0, 0, 0, 0); 3345 3346 KASSERT(mutex_owned(&sc->sc_lock)); 3347 } 3348 3349 Static void 3350 ehci_abort_isoc_xfer(struct usbd_xfer *xfer, usbd_status status) 3351 { 3352 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3353 ehci_isoc_trans_t trans_status; 3354 struct ehci_xfer *exfer; 3355 ehci_softc_t *sc; 3356 struct ehci_soft_itd *itd; 3357 struct ehci_soft_sitd *sitd; 3358 int i; 3359 3360 KASSERTMSG(status == USBD_CANCELLED, 3361 "invalid status for abort: %d", (int)status); 3362 3363 exfer = EHCI_XFER2EXFER(xfer); 3364 sc = EHCI_XFER2SC(xfer); 3365 3366 DPRINTF("xfer %#jx pipe %#jx", (uintptr_t)xfer, 3367 (uintptr_t)xfer->ux_pipe, 0, 0); 3368 3369 KASSERT(mutex_owned(&sc->sc_lock)); 3370 ASSERT_SLEEPABLE(); 3371 3372 /* No timeout or task here. */ 3373 3374 /* 3375 * The xfer cannot have been cancelled already. It is the 3376 * responsibility of the caller of usbd_abort_pipe not to try 3377 * to abort a pipe multiple times, whether concurrently or 3378 * sequentially. 3379 */ 3380 KASSERT(xfer->ux_status != USBD_CANCELLED); 3381 3382 /* If anyone else beat us, we're done. */ 3383 if (xfer->ux_status != USBD_IN_PROGRESS) 3384 return; 3385 3386 /* We beat everyone else. Claim the status. */ 3387 xfer->ux_status = status; 3388 3389 /* 3390 * If we're dying, skip the hardware action and just notify the 3391 * software that we're done. 3392 */ 3393 if (sc->sc_dying) { 3394 goto dying; 3395 } 3396 3397 /* 3398 * HC Step 1: Make interrupt routine and hardware ignore xfer. 3399 */ 3400 ehci_del_intr_list(sc, exfer); 3401 3402 if (xfer->ux_pipe->up_dev->ud_speed == USB_SPEED_HIGH) { 3403 for (itd = exfer->ex_itdstart; itd != NULL; 3404 itd = itd->xfer_next) { 3405 usb_syncmem(&itd->dma, 3406 itd->offs + offsetof(ehci_itd_t, itd_ctl), 3407 sizeof(itd->itd.itd_ctl), 3408 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 3409 3410 for (i = 0; i < 8; i++) { 3411 trans_status = le32toh(itd->itd.itd_ctl[i]); 3412 trans_status &= ~EHCI_ITD_ACTIVE; 3413 itd->itd.itd_ctl[i] = htole32(trans_status); 3414 } 3415 3416 usb_syncmem(&itd->dma, 3417 itd->offs + offsetof(ehci_itd_t, itd_ctl), 3418 sizeof(itd->itd.itd_ctl), 3419 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3420 } 3421 } else { 3422 for (sitd = exfer->ex_sitdstart; sitd != NULL; 3423 sitd = sitd->xfer_next) { 3424 usb_syncmem(&sitd->dma, 3425 sitd->offs + offsetof(ehci_sitd_t, sitd_buffer), 3426 sizeof(sitd->sitd.sitd_buffer), 3427 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 3428 3429 trans_status = le32toh(sitd->sitd.sitd_trans); 3430 trans_status &= ~EHCI_SITD_ACTIVE; 3431 sitd->sitd.sitd_trans = htole32(trans_status); 3432 3433 usb_syncmem(&sitd->dma, 3434 sitd->offs + offsetof(ehci_sitd_t, sitd_buffer), 3435 sizeof(sitd->sitd.sitd_buffer), 3436 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3437 } 3438 } 3439 3440 dying: 3441 #ifdef DIAGNOSTIC 3442 exfer->ex_isdone = true; 3443 #endif 3444 usb_transfer_complete(xfer); 3445 DPRINTFN(14, "end", 0, 0, 0, 0); 3446 3447 KASSERT(mutex_owned(&sc->sc_lock)); 3448 } 3449 3450 /************************/ 3451 3452 Static int 3453 ehci_device_ctrl_init(struct usbd_xfer *xfer) 3454 { 3455 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 3456 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 3457 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3458 usb_device_request_t *req = &xfer->ux_request; 3459 ehci_soft_qtd_t *setup, *status, *next; 3460 int isread = req->bmRequestType & UT_READ; 3461 int len = xfer->ux_bufsize; 3462 int err; 3463 3464 exfer->ex_type = EX_CTRL; 3465 exfer->ex_status = NULL; 3466 exfer->ex_data = NULL; 3467 exfer->ex_setup = ehci_alloc_sqtd(sc); 3468 if (exfer->ex_setup == NULL) { 3469 err = ENOMEM; 3470 goto bad1; 3471 } 3472 exfer->ex_status = ehci_alloc_sqtd(sc); 3473 if (exfer->ex_status == NULL) { 3474 err = ENOMEM; 3475 goto bad2; 3476 } 3477 setup = exfer->ex_setup; 3478 status = exfer->ex_status; 3479 exfer->ex_nsqtd = 0; 3480 next = status; 3481 /* Set up data transaction */ 3482 if (len != 0) { 3483 err = ehci_alloc_sqtd_chain(sc, xfer, len, isread, 3484 &exfer->ex_data); 3485 if (err) 3486 goto bad3; 3487 next = exfer->ex_data; 3488 } 3489 3490 /* Clear toggle */ 3491 setup->qtd.qtd_status = htole32( 3492 EHCI_QTD_SET_PID(EHCI_QTD_PID_SETUP) | 3493 EHCI_QTD_SET_TOGGLE(0) | 3494 EHCI_QTD_SET_BYTES(sizeof(*req)) 3495 ); 3496 3497 const bus_addr_t ba = DMAADDR(&epipe->ctrl.reqdma, 0); 3498 setup->qtd.qtd_buffer[0] = htole32(BUS_ADDR_LO32(ba)); 3499 setup->qtd.qtd_buffer_hi[0] = htole32(BUS_ADDR_HI32(ba)); 3500 setup->qtd.qtd_next = setup->qtd.qtd_altnext = htole32(next->physaddr); 3501 setup->nextqtd = next; 3502 setup->xfer = xfer; 3503 setup->len = sizeof(*req); 3504 3505 status->qtd.qtd_status = htole32( 3506 EHCI_QTD_SET_PID(isread ? EHCI_QTD_PID_OUT : EHCI_QTD_PID_IN) | 3507 EHCI_QTD_SET_TOGGLE(1) | 3508 EHCI_QTD_IOC 3509 ); 3510 status->qtd.qtd_buffer[0] = 0; 3511 status->qtd.qtd_buffer_hi[0] = 0; 3512 status->qtd.qtd_next = status->qtd.qtd_altnext = EHCI_NULL; 3513 status->nextqtd = NULL; 3514 status->xfer = xfer; 3515 status->len = 0; 3516 3517 return 0; 3518 bad3: 3519 ehci_free_sqtd(sc, exfer->ex_status); 3520 bad2: 3521 ehci_free_sqtd(sc, exfer->ex_setup); 3522 bad1: 3523 return err; 3524 } 3525 3526 Static void 3527 ehci_device_ctrl_fini(struct usbd_xfer *xfer) 3528 { 3529 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3530 struct ehci_xfer *ex = EHCI_XFER2EXFER(xfer); 3531 3532 KASSERT(ex->ex_type == EX_CTRL); 3533 3534 ehci_free_sqtd(sc, ex->ex_setup); 3535 ehci_free_sqtd(sc, ex->ex_status); 3536 ehci_free_sqtds(sc, ex); 3537 if (ex->ex_nsqtd) 3538 kmem_free(ex->ex_sqtds, 3539 sizeof(ehci_soft_qtd_t *) * ex->ex_nsqtd); 3540 } 3541 3542 Static usbd_status 3543 ehci_device_ctrl_transfer(struct usbd_xfer *xfer) 3544 { 3545 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3546 usbd_status err; 3547 3548 /* Insert last in queue. */ 3549 mutex_enter(&sc->sc_lock); 3550 err = usb_insert_transfer(xfer); 3551 mutex_exit(&sc->sc_lock); 3552 if (err) 3553 return err; 3554 3555 /* Pipe isn't running, start first */ 3556 return ehci_device_ctrl_start(SIMPLEQ_FIRST(&xfer->ux_pipe->up_queue)); 3557 } 3558 3559 Static usbd_status 3560 ehci_device_ctrl_start(struct usbd_xfer *xfer) 3561 { 3562 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 3563 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 3564 usb_device_request_t *req = &xfer->ux_request; 3565 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3566 ehci_soft_qtd_t *setup, *status, *next; 3567 ehci_soft_qh_t *sqh; 3568 const bool polling = sc->sc_bus.ub_usepolling; 3569 3570 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3571 3572 KASSERT(xfer->ux_rqflags & URQ_REQUEST); 3573 3574 if (sc->sc_dying) 3575 return USBD_IOERROR; 3576 3577 const int isread = req->bmRequestType & UT_READ; 3578 const int len = UGETW(req->wLength); 3579 3580 DPRINTF("type=0x%02jx, request=0x%02jx, wValue=0x%04jx, wIndex=0x%04jx", 3581 req->bmRequestType, req->bRequest, UGETW(req->wValue), 3582 UGETW(req->wIndex)); 3583 DPRINTF("len=%jd, addr=%jd, endpt=%jd", 3584 len, epipe->pipe.up_dev->ud_addr, 3585 epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress, 0); 3586 3587 sqh = epipe->sqh; 3588 3589 KASSERTMSG(EHCI_QH_GET_ADDR(le32toh(sqh->qh.qh_endp)) == epipe->pipe.up_dev->ud_addr, 3590 "address QH %" __PRIuBIT " pipe %d\n", 3591 EHCI_QH_GET_ADDR(le32toh(sqh->qh.qh_endp)), 3592 epipe->pipe.up_dev->ud_addr); 3593 KASSERTMSG(EHCI_QH_GET_MPL(le32toh(sqh->qh.qh_endp)) == 3594 UGETW(epipe->pipe.up_endpoint->ue_edesc->wMaxPacketSize), 3595 "MPS QH %" __PRIuBIT " pipe %d\n", 3596 EHCI_QH_GET_MPL(le32toh(sqh->qh.qh_endp)), 3597 UGETW(epipe->pipe.up_endpoint->ue_edesc->wMaxPacketSize)); 3598 3599 setup = exfer->ex_setup; 3600 status = exfer->ex_status; 3601 3602 DPRINTF("setup %#jx status %#jx data %#jx", 3603 (uintptr_t)setup, (uintptr_t)status, (uintptr_t)exfer->ex_data, 0); 3604 KASSERTMSG(setup != NULL && status != NULL, 3605 "Failed memory allocation, setup %p status %p", 3606 setup, status); 3607 3608 memcpy(KERNADDR(&epipe->ctrl.reqdma, 0), req, sizeof(*req)); 3609 usb_syncmem(&epipe->ctrl.reqdma, 0, sizeof(*req), BUS_DMASYNC_PREWRITE); 3610 3611 /* Clear toggle */ 3612 setup->qtd.qtd_status &= ~htole32( 3613 EHCI_QTD_STATUS_MASK | 3614 EHCI_QTD_BYTES_MASK | 3615 EHCI_QTD_TOGGLE_MASK | 3616 EHCI_QTD_CERR_MASK 3617 ); 3618 setup->qtd.qtd_status |= htole32( 3619 EHCI_QTD_ACTIVE | 3620 EHCI_QTD_SET_CERR(3) | 3621 EHCI_QTD_SET_TOGGLE(0) | 3622 EHCI_QTD_SET_BYTES(sizeof(*req)) 3623 ); 3624 3625 const bus_addr_t ba = DMAADDR(&epipe->ctrl.reqdma, 0); 3626 setup->qtd.qtd_buffer[0] = htole32(BUS_ADDR_LO32(ba)); 3627 setup->qtd.qtd_buffer_hi[0] = htole32(BUS_ADDR_HI32(ba)); 3628 3629 next = status; 3630 status->qtd.qtd_status &= ~htole32( 3631 EHCI_QTD_STATUS_MASK | 3632 EHCI_QTD_PID_MASK | 3633 EHCI_QTD_BYTES_MASK | 3634 EHCI_QTD_TOGGLE_MASK | 3635 EHCI_QTD_CERR_MASK 3636 ); 3637 status->qtd.qtd_status |= htole32( 3638 EHCI_QTD_ACTIVE | 3639 EHCI_QTD_SET_PID(isread ? EHCI_QTD_PID_OUT : EHCI_QTD_PID_IN) | 3640 EHCI_QTD_SET_CERR(3) | 3641 EHCI_QTD_SET_TOGGLE(1) | 3642 EHCI_QTD_SET_BYTES(0) | 3643 EHCI_QTD_IOC 3644 ); 3645 KASSERT(status->qtd.qtd_status & htole32(EHCI_QTD_TOGGLE_MASK)); 3646 3647 KASSERT(exfer->ex_isdone); 3648 #ifdef DIAGNOSTIC 3649 exfer->ex_isdone = false; 3650 #endif 3651 3652 /* Set up data transaction */ 3653 if (len != 0) { 3654 ehci_soft_qtd_t *end; 3655 3656 /* Start toggle at 1. */ 3657 int toggle = 1; 3658 next = exfer->ex_data; 3659 KASSERTMSG(next != NULL, "Failed memory allocation"); 3660 ehci_reset_sqtd_chain(sc, xfer, len, isread, &toggle, &end); 3661 end->nextqtd = status; 3662 end->qtd.qtd_next = end->qtd.qtd_altnext = 3663 htole32(status->physaddr); 3664 3665 usb_syncmem(&end->dma, end->offs, sizeof(end->qtd), 3666 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3667 3668 usb_syncmem(&xfer->ux_dmabuf, 0, len, 3669 isread ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE); 3670 } 3671 3672 setup->nextqtd = next; 3673 setup->qtd.qtd_next = setup->qtd.qtd_altnext = htole32(next->physaddr); 3674 3675 usb_syncmem(&setup->dma, setup->offs, sizeof(setup->qtd), 3676 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3677 3678 usb_syncmem(&status->dma, status->offs, sizeof(status->qtd), 3679 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3680 3681 KASSERT(status->qtd.qtd_status & htole32(EHCI_QTD_TOGGLE_MASK)); 3682 3683 #ifdef EHCI_DEBUG 3684 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 3685 ehci_dump_sqh(sqh); 3686 ehci_dump_sqtds(setup); 3687 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 3688 #endif 3689 3690 if (!polling) 3691 mutex_enter(&sc->sc_lock); 3692 3693 /* Insert qTD in QH list - also does usb_syncmem(sqh) */ 3694 ehci_set_qh_qtd(sqh, setup); 3695 usbd_xfer_schedule_timeout(xfer); 3696 ehci_add_intr_list(sc, exfer); 3697 xfer->ux_status = USBD_IN_PROGRESS; 3698 if (!polling) 3699 mutex_exit(&sc->sc_lock); 3700 3701 #if 0 3702 #ifdef EHCI_DEBUG 3703 DPRINTFN(10, "status=%jx, dump:", EOREAD4(sc, EHCI_USBSTS), 0, 0, 0); 3704 // delay(10000); 3705 ehci_dump_regs(sc); 3706 ehci_dump_sqh(sc->sc_async_head); 3707 ehci_dump_sqh(sqh); 3708 ehci_dump_sqtds(setup); 3709 #endif 3710 #endif 3711 3712 return USBD_IN_PROGRESS; 3713 } 3714 3715 Static void 3716 ehci_device_ctrl_done(struct usbd_xfer *xfer) 3717 { 3718 ehci_softc_t *sc __diagused = EHCI_XFER2SC(xfer); 3719 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 3720 usb_device_request_t *req = &xfer->ux_request; 3721 int len = UGETW(req->wLength); 3722 int rd = req->bmRequestType & UT_READ; 3723 3724 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3725 DPRINTF("xfer=%#jx", (uintptr_t)xfer, 0, 0, 0); 3726 3727 KASSERT(sc->sc_bus.ub_usepolling || mutex_owned(&sc->sc_lock)); 3728 KASSERT(xfer->ux_rqflags & URQ_REQUEST); 3729 3730 usb_syncmem(&epipe->ctrl.reqdma, 0, sizeof(*req), 3731 BUS_DMASYNC_POSTWRITE); 3732 if (len) 3733 usb_syncmem(&xfer->ux_dmabuf, 0, len, 3734 rd ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE); 3735 3736 DPRINTF("length=%jd", xfer->ux_actlen, 0, 0, 0); 3737 } 3738 3739 /* Abort a device control request. */ 3740 Static void 3741 ehci_device_ctrl_abort(struct usbd_xfer *xfer) 3742 { 3743 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3744 3745 DPRINTF("xfer=%#jx", (uintptr_t)xfer, 0, 0, 0); 3746 usbd_xfer_abort(xfer); 3747 } 3748 3749 /* Close a device control pipe. */ 3750 Static void 3751 ehci_device_ctrl_close(struct usbd_pipe *pipe) 3752 { 3753 ehci_softc_t *sc = EHCI_PIPE2SC(pipe); 3754 struct ehci_pipe * const epipe = EHCI_PIPE2EPIPE(pipe); 3755 3756 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3757 3758 KASSERT(mutex_owned(&sc->sc_lock)); 3759 3760 DPRINTF("pipe=%#jx", (uintptr_t)pipe, 0, 0, 0); 3761 3762 ehci_close_pipe(pipe, sc->sc_async_head); 3763 3764 usb_freemem(&sc->sc_bus, &epipe->ctrl.reqdma); 3765 } 3766 3767 /* 3768 * Some EHCI chips from VIA seem to trigger interrupts before writing back the 3769 * qTD status, or miss signalling occasionally under heavy load. If the host 3770 * machine is too fast, we can miss transaction completion - when we scan 3771 * the active list the transaction still seems to be active. This generally 3772 * exhibits itself as a umass stall that never recovers. 3773 * 3774 * We work around this behaviour by setting up this callback after any softintr 3775 * that completes with transactions still pending, giving us another chance to 3776 * check for completion after the writeback has taken place. 3777 */ 3778 Static void 3779 ehci_intrlist_timeout(void *arg) 3780 { 3781 ehci_softc_t *sc = arg; 3782 3783 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3784 3785 usb_schedsoftintr(&sc->sc_bus); 3786 } 3787 3788 /************************/ 3789 3790 Static int 3791 ehci_device_bulk_init(struct usbd_xfer *xfer) 3792 { 3793 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3794 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 3795 usb_endpoint_descriptor_t *ed = xfer->ux_pipe->up_endpoint->ue_edesc; 3796 int endpt = ed->bEndpointAddress; 3797 int isread = UE_GET_DIR(endpt) == UE_DIR_IN; 3798 int len = xfer->ux_bufsize; 3799 int err = 0; 3800 3801 exfer->ex_type = EX_BULK; 3802 exfer->ex_nsqtd = 0; 3803 err = ehci_alloc_sqtd_chain(sc, xfer, len, isread, 3804 &exfer->ex_sqtdstart); 3805 3806 return err; 3807 } 3808 3809 Static void 3810 ehci_device_bulk_fini(struct usbd_xfer *xfer) 3811 { 3812 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3813 struct ehci_xfer *ex = EHCI_XFER2EXFER(xfer); 3814 3815 KASSERT(ex->ex_type == EX_BULK); 3816 3817 ehci_free_sqtds(sc, ex); 3818 if (ex->ex_nsqtd) 3819 kmem_free(ex->ex_sqtds, sizeof(ehci_soft_qtd_t *) * ex->ex_nsqtd); 3820 } 3821 3822 Static usbd_status 3823 ehci_device_bulk_transfer(struct usbd_xfer *xfer) 3824 { 3825 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3826 usbd_status err; 3827 3828 /* Insert last in queue. */ 3829 mutex_enter(&sc->sc_lock); 3830 err = usb_insert_transfer(xfer); 3831 mutex_exit(&sc->sc_lock); 3832 if (err) 3833 return err; 3834 3835 /* Pipe isn't running, start first */ 3836 return ehci_device_bulk_start(SIMPLEQ_FIRST(&xfer->ux_pipe->up_queue)); 3837 } 3838 3839 Static usbd_status 3840 ehci_device_bulk_start(struct usbd_xfer *xfer) 3841 { 3842 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 3843 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 3844 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 3845 ehci_soft_qh_t *sqh; 3846 ehci_soft_qtd_t *end; 3847 int len, isread, endpt; 3848 const bool polling = sc->sc_bus.ub_usepolling; 3849 3850 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3851 3852 DPRINTF("xfer=%#jx len=%jd flags=%jd", (uintptr_t)xfer, xfer->ux_length, 3853 xfer->ux_flags, 0); 3854 3855 if (sc->sc_dying) 3856 return USBD_IOERROR; 3857 3858 KASSERT(!(xfer->ux_rqflags & URQ_REQUEST)); 3859 KASSERT(xfer->ux_length <= xfer->ux_bufsize); 3860 3861 len = xfer->ux_length; 3862 endpt = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 3863 isread = UE_GET_DIR(endpt) == UE_DIR_IN; 3864 sqh = epipe->sqh; 3865 3866 KASSERT(exfer->ex_isdone); 3867 #ifdef DIAGNOSTIC 3868 exfer->ex_isdone = false; 3869 #endif 3870 3871 /* Take lock here to protect nexttoggle */ 3872 if (!polling) 3873 mutex_enter(&sc->sc_lock); 3874 3875 ehci_reset_sqtd_chain(sc, xfer, len, isread, &epipe->nexttoggle, &end); 3876 3877 exfer->ex_sqtdend = end; 3878 end->qtd.qtd_status |= htole32(EHCI_QTD_IOC); 3879 usb_syncmem(&end->dma, end->offs, sizeof(end->qtd), 3880 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 3881 3882 #ifdef EHCI_DEBUG 3883 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 3884 ehci_dump_sqh(sqh); 3885 ehci_dump_sqtds(exfer->ex_sqtdstart); 3886 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 3887 #endif 3888 3889 if (xfer->ux_length) 3890 usb_syncmem(&xfer->ux_dmabuf, 0, xfer->ux_length, 3891 isread ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE); 3892 3893 /* also does usb_syncmem(sqh) */ 3894 ehci_set_qh_qtd(sqh, exfer->ex_sqtdstart); 3895 usbd_xfer_schedule_timeout(xfer); 3896 ehci_add_intr_list(sc, exfer); 3897 xfer->ux_status = USBD_IN_PROGRESS; 3898 if (!polling) 3899 mutex_exit(&sc->sc_lock); 3900 3901 #if 0 3902 #ifdef EHCI_DEBUG 3903 DPRINTFN(5, "data(2)", 0, 0, 0, 0); 3904 // delay(10000); 3905 DPRINTFN(5, "data(3)", 0, 0, 0, 0); 3906 ehci_dump_regs(sc); 3907 #if 0 3908 printf("async_head:\n"); 3909 ehci_dump_sqh(sc->sc_async_head); 3910 #endif 3911 DPRINTF("sqh:", 0, 0, 0, 0); 3912 ehci_dump_sqh(sqh); 3913 ehci_dump_sqtds(exfer->ex_sqtdstart); 3914 #endif 3915 #endif 3916 3917 return USBD_IN_PROGRESS; 3918 } 3919 3920 Static void 3921 ehci_device_bulk_abort(struct usbd_xfer *xfer) 3922 { 3923 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3924 3925 DPRINTF("xfer %#jx", (uintptr_t)xfer, 0, 0, 0); 3926 usbd_xfer_abort(xfer); 3927 } 3928 3929 /* 3930 * Close a device bulk pipe. 3931 */ 3932 Static void 3933 ehci_device_bulk_close(struct usbd_pipe *pipe) 3934 { 3935 ehci_softc_t *sc = EHCI_PIPE2SC(pipe); 3936 struct ehci_pipe *epipe = EHCI_PIPE2EPIPE(pipe); 3937 3938 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3939 3940 KASSERT(mutex_owned(&sc->sc_lock)); 3941 3942 DPRINTF("pipe=%#jx", (uintptr_t)pipe, 0, 0, 0); 3943 pipe->up_endpoint->ue_toggle = epipe->nexttoggle; 3944 ehci_close_pipe(pipe, sc->sc_async_head); 3945 } 3946 3947 Static void 3948 ehci_device_bulk_done(struct usbd_xfer *xfer) 3949 { 3950 ehci_softc_t *sc __diagused = EHCI_XFER2SC(xfer); 3951 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 3952 int endpt = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 3953 int rd = UE_GET_DIR(endpt) == UE_DIR_IN; 3954 3955 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 3956 3957 DPRINTF("xfer=%#jx, actlen=%jd", (uintptr_t)xfer, xfer->ux_actlen, 0, 0); 3958 3959 KASSERT(sc->sc_bus.ub_usepolling || mutex_owned(&sc->sc_lock)); 3960 3961 if (xfer->ux_length) 3962 usb_syncmem(&xfer->ux_dmabuf, 0, xfer->ux_length, 3963 rd ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE); 3964 3965 DPRINTF("length=%jd", xfer->ux_actlen, 0, 0, 0); 3966 } 3967 3968 /************************/ 3969 3970 Static usbd_status 3971 ehci_device_setintr(ehci_softc_t *sc, ehci_soft_qh_t *sqh, int ival) 3972 { 3973 struct ehci_soft_islot *isp; 3974 int islot, lev; 3975 3976 /* Find a poll rate that is large enough. */ 3977 for (lev = EHCI_IPOLLRATES - 1; lev > 0; lev--) 3978 if (EHCI_ILEV_IVAL(lev) <= ival) 3979 break; 3980 3981 /* Pick an interrupt slot at the right level. */ 3982 /* XXX could do better than picking at random */ 3983 sc->sc_rand = (sc->sc_rand + 191) % sc->sc_flsize; 3984 islot = EHCI_IQHIDX(lev, sc->sc_rand); 3985 3986 sqh->islot = islot; 3987 isp = &sc->sc_islots[islot]; 3988 mutex_enter(&sc->sc_lock); 3989 ehci_add_qh(sc, sqh, isp->sqh); 3990 mutex_exit(&sc->sc_lock); 3991 3992 return USBD_NORMAL_COMPLETION; 3993 } 3994 3995 Static int 3996 ehci_device_intr_init(struct usbd_xfer *xfer) 3997 { 3998 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 3999 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4000 usb_endpoint_descriptor_t *ed = xfer->ux_pipe->up_endpoint->ue_edesc; 4001 int endpt = ed->bEndpointAddress; 4002 int isread = UE_GET_DIR(endpt) == UE_DIR_IN; 4003 int len = xfer->ux_bufsize; 4004 int err; 4005 4006 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4007 4008 DPRINTF("xfer=%#jx len=%jd flags=%jd", (uintptr_t)xfer, xfer->ux_length, 4009 xfer->ux_flags, 0); 4010 4011 KASSERT(!(xfer->ux_rqflags & URQ_REQUEST)); 4012 KASSERT(len != 0); 4013 4014 exfer->ex_type = EX_INTR; 4015 exfer->ex_nsqtd = 0; 4016 err = ehci_alloc_sqtd_chain(sc, xfer, len, isread, 4017 &exfer->ex_sqtdstart); 4018 4019 return err; 4020 } 4021 4022 Static void 4023 ehci_device_intr_fini(struct usbd_xfer *xfer) 4024 { 4025 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4026 struct ehci_xfer *ex = EHCI_XFER2EXFER(xfer); 4027 4028 KASSERT(ex->ex_type == EX_INTR); 4029 4030 ehci_free_sqtds(sc, ex); 4031 if (ex->ex_nsqtd) 4032 kmem_free(ex->ex_sqtds, sizeof(ehci_soft_qtd_t *) * ex->ex_nsqtd); 4033 } 4034 4035 Static usbd_status 4036 ehci_device_intr_transfer(struct usbd_xfer *xfer) 4037 { 4038 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4039 usbd_status err; 4040 4041 /* Insert last in queue. */ 4042 mutex_enter(&sc->sc_lock); 4043 err = usb_insert_transfer(xfer); 4044 mutex_exit(&sc->sc_lock); 4045 if (err) 4046 return err; 4047 4048 /* 4049 * Pipe isn't running (otherwise err would be USBD_INPROG), 4050 * so start it first. 4051 */ 4052 return ehci_device_intr_start(SIMPLEQ_FIRST(&xfer->ux_pipe->up_queue)); 4053 } 4054 4055 Static usbd_status 4056 ehci_device_intr_start(struct usbd_xfer *xfer) 4057 { 4058 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 4059 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 4060 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4061 ehci_soft_qtd_t *end; 4062 ehci_soft_qh_t *sqh; 4063 int len, isread, endpt; 4064 const bool polling = sc->sc_bus.ub_usepolling; 4065 4066 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4067 4068 DPRINTF("xfer=%#jx len=%jd flags=%jd", (uintptr_t)xfer, xfer->ux_length, 4069 xfer->ux_flags, 0); 4070 4071 if (sc->sc_dying) 4072 return USBD_IOERROR; 4073 4074 KASSERT(!(xfer->ux_rqflags & URQ_REQUEST)); 4075 KASSERT(xfer->ux_length <= xfer->ux_bufsize); 4076 4077 len = xfer->ux_length; 4078 endpt = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 4079 isread = UE_GET_DIR(endpt) == UE_DIR_IN; 4080 sqh = epipe->sqh; 4081 4082 KASSERT(exfer->ex_isdone); 4083 #ifdef DIAGNOSTIC 4084 exfer->ex_isdone = false; 4085 #endif 4086 4087 /* Take lock to protect nexttoggle */ 4088 if (!polling) 4089 mutex_enter(&sc->sc_lock); 4090 4091 ehci_reset_sqtd_chain(sc, xfer, len, isread, &epipe->nexttoggle, &end); 4092 4093 end->qtd.qtd_status |= htole32(EHCI_QTD_IOC); 4094 usb_syncmem(&end->dma, end->offs, sizeof(end->qtd), 4095 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4096 exfer->ex_sqtdend = end; 4097 4098 #ifdef EHCI_DEBUG 4099 DPRINTFN(5, "--- dump start ---", 0, 0, 0, 0); 4100 ehci_dump_sqh(sqh); 4101 ehci_dump_sqtds(exfer->ex_sqtdstart); 4102 DPRINTFN(5, "--- dump end ---", 0, 0, 0, 0); 4103 #endif 4104 4105 if (xfer->ux_length) 4106 usb_syncmem(&xfer->ux_dmabuf, 0, xfer->ux_length, 4107 isread ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE); 4108 4109 /* also does usb_syncmem(sqh) */ 4110 ehci_set_qh_qtd(sqh, exfer->ex_sqtdstart); 4111 usbd_xfer_schedule_timeout(xfer); 4112 ehci_add_intr_list(sc, exfer); 4113 xfer->ux_status = USBD_IN_PROGRESS; 4114 if (!polling) 4115 mutex_exit(&sc->sc_lock); 4116 4117 #if 0 4118 #ifdef EHCI_DEBUG 4119 DPRINTFN(5, "data(2)", 0, 0, 0, 0); 4120 // delay(10000); 4121 DPRINTFN(5, "data(3)", 0, 0, 0, 0); 4122 ehci_dump_regs(sc); 4123 DPRINTFN(5, "sqh:", 0, 0, 0, 0); 4124 ehci_dump_sqh(sqh); 4125 ehci_dump_sqtds(exfer->ex_sqtdstart); 4126 #endif 4127 #endif 4128 4129 return USBD_IN_PROGRESS; 4130 } 4131 4132 Static void 4133 ehci_device_intr_abort(struct usbd_xfer *xfer) 4134 { 4135 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4136 4137 DPRINTF("xfer=%#jx", (uintptr_t)xfer, 0, 0, 0); 4138 4139 /* 4140 * XXX - abort_xfer uses ehci_sync_hc, which syncs via the advance 4141 * async doorbell. That's dependent on the async list, wheras 4142 * intr xfers are periodic, should not use this? 4143 */ 4144 usbd_xfer_abort(xfer); 4145 } 4146 4147 Static void 4148 ehci_device_intr_close(struct usbd_pipe *pipe) 4149 { 4150 ehci_softc_t *sc = EHCI_PIPE2SC(pipe); 4151 struct ehci_pipe *epipe = EHCI_PIPE2EPIPE(pipe); 4152 struct ehci_soft_islot *isp; 4153 4154 KASSERT(mutex_owned(&sc->sc_lock)); 4155 4156 isp = &sc->sc_islots[epipe->sqh->islot]; 4157 ehci_close_pipe(pipe, isp->sqh); 4158 } 4159 4160 Static void 4161 ehci_device_intr_done(struct usbd_xfer *xfer) 4162 { 4163 ehci_softc_t *sc __diagused = EHCI_XFER2SC(xfer); 4164 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 4165 4166 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4167 4168 DPRINTF("xfer=%#jx, actlen=%jd", (uintptr_t)xfer, xfer->ux_actlen, 0, 0); 4169 4170 KASSERT(sc->sc_bus.ub_usepolling || mutex_owned(&sc->sc_lock)); 4171 4172 if (xfer->ux_length) { 4173 int isread, endpt; 4174 4175 endpt = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 4176 isread = UE_GET_DIR(endpt) == UE_DIR_IN; 4177 usb_syncmem(&xfer->ux_dmabuf, 0, xfer->ux_length, 4178 isread ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE); 4179 } 4180 } 4181 4182 /************************/ 4183 Static int 4184 ehci_device_fs_isoc_init(struct usbd_xfer *xfer) 4185 { 4186 struct ehci_pipe *epipe = EHCI_PIPE2EPIPE(xfer->ux_pipe); 4187 struct usbd_device *dev = xfer->ux_pipe->up_dev; 4188 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4189 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 4190 ehci_soft_sitd_t *sitd, *prev, *start, *stop; 4191 int i, k, frames; 4192 u_int huba, dir; 4193 int err; 4194 4195 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4196 4197 start = NULL; 4198 sitd = NULL; 4199 4200 DPRINTF("xfer %#jx len %jd flags %jd", (uintptr_t)xfer, xfer->ux_length, 4201 xfer->ux_flags, 0); 4202 4203 KASSERT(!(xfer->ux_rqflags & URQ_REQUEST)); 4204 KASSERT(xfer->ux_nframes != 0); 4205 KASSERT(exfer->ex_isdone); 4206 4207 exfer->ex_type = EX_FS_ISOC; 4208 /* 4209 * Step 1: Allocate and initialize sitds. 4210 */ 4211 i = epipe->pipe.up_endpoint->ue_edesc->bInterval; 4212 if (i > 16 || i == 0) { 4213 /* Spec page 271 says intervals > 16 are invalid */ 4214 DPRINTF("bInterval %jd invalid", i, 0, 0, 0); 4215 4216 return EINVAL; 4217 } 4218 4219 frames = xfer->ux_nframes; 4220 for (i = 0, prev = NULL; i < frames; i++, prev = sitd) { 4221 sitd = ehci_alloc_sitd(sc); 4222 if (sitd == NULL) { 4223 err = ENOMEM; 4224 goto fail; 4225 } 4226 4227 if (prev) 4228 prev->xfer_next = sitd; 4229 else 4230 start = sitd; 4231 4232 huba = dev->ud_myhsport->up_parent->ud_addr; 4233 4234 #if 0 4235 if (sc->sc_flags & EHCIF_FREESCALE) { 4236 // Set hub address to 0 if embedded TT is used. 4237 if (huba == sc->sc_addr) 4238 huba = 0; 4239 } 4240 #endif 4241 4242 k = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 4243 dir = UE_GET_DIR(k) ? 1 : 0; 4244 sitd->sitd.sitd_endp = 4245 htole32(EHCI_SITD_SET_ENDPT(UE_GET_ADDR(k)) | 4246 EHCI_SITD_SET_DADDR(dev->ud_addr) | 4247 EHCI_SITD_SET_PORT(dev->ud_myhsport->up_portno) | 4248 EHCI_SITD_SET_HUBA(huba) | 4249 EHCI_SITD_SET_DIR(dir)); 4250 4251 sitd->sitd.sitd_back = htole32(EHCI_LINK_TERMINATE); 4252 } /* End of frame */ 4253 4254 sitd->sitd.sitd_trans |= htole32(EHCI_SITD_IOC); 4255 4256 stop = sitd; 4257 stop->xfer_next = NULL; 4258 exfer->ex_sitdstart = start; 4259 exfer->ex_sitdend = stop; 4260 4261 return 0; 4262 4263 fail: 4264 mutex_enter(&sc->sc_lock); 4265 ehci_soft_sitd_t *next; 4266 for (sitd = start; sitd; sitd = next) { 4267 next = sitd->xfer_next; 4268 ehci_free_sitd_locked(sc, sitd); 4269 } 4270 mutex_exit(&sc->sc_lock); 4271 4272 return err; 4273 } 4274 4275 Static void 4276 ehci_device_fs_isoc_fini(struct usbd_xfer *xfer) 4277 { 4278 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4279 struct ehci_xfer *ex = EHCI_XFER2EXFER(xfer); 4280 4281 KASSERT(ex->ex_type == EX_FS_ISOC); 4282 4283 ehci_free_sitd_chain(sc, ex->ex_sitdstart); 4284 } 4285 4286 Static usbd_status 4287 ehci_device_fs_isoc_transfer(struct usbd_xfer *xfer) 4288 { 4289 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4290 usbd_status __diagused err; 4291 4292 mutex_enter(&sc->sc_lock); 4293 err = usb_insert_transfer(xfer); 4294 mutex_exit(&sc->sc_lock); 4295 4296 KASSERT(err == USBD_NORMAL_COMPLETION); 4297 4298 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 4299 struct usbd_device *dev = xfer->ux_pipe->up_dev; 4300 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 4301 ehci_soft_sitd_t *sitd; 4302 usb_dma_t *dma_buf; 4303 int i, j, k, frames; 4304 int offs; 4305 int frindex; 4306 u_int dir; 4307 4308 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4309 4310 sitd = NULL; 4311 4312 DPRINTF("xfer %#jx len %jd flags %jd", (uintptr_t)xfer, xfer->ux_length, 4313 xfer->ux_flags, 0); 4314 4315 if (sc->sc_dying) 4316 return USBD_IOERROR; 4317 4318 /* 4319 * To avoid complication, don't allow a request right now that'll span 4320 * the entire frame table. To within 4 frames, to allow some leeway 4321 * on either side of where the hc currently is. 4322 */ 4323 if (epipe->pipe.up_endpoint->ue_edesc->bInterval * 4324 xfer->ux_nframes >= sc->sc_flsize - 4) { 4325 printf("ehci: isoc descriptor requested that spans the entire" 4326 "frametable, too many frames\n"); 4327 return USBD_INVAL; 4328 } 4329 4330 KASSERT(xfer->ux_nframes != 0 && xfer->ux_frlengths); 4331 KASSERT(!(xfer->ux_rqflags & URQ_REQUEST)); 4332 KASSERT(exfer->ex_isdone); 4333 #ifdef DIAGNOSTIC 4334 exfer->ex_isdone = false; 4335 #endif 4336 4337 /* 4338 * Step 1: Initialize sitds. 4339 */ 4340 4341 frames = xfer->ux_nframes; 4342 dma_buf = &xfer->ux_dmabuf; 4343 offs = 0; 4344 4345 for (sitd = exfer->ex_sitdstart, i = 0; i < frames; 4346 i++, sitd = sitd->xfer_next) { 4347 KASSERT(sitd != NULL); 4348 KASSERT(xfer->ux_frlengths[i] <= 0x3ff); 4349 4350 sitd->sitd.sitd_trans = htole32(EHCI_SITD_ACTIVE | 4351 EHCI_SITD_SET_LEN(xfer->ux_frlengths[i])); 4352 4353 /* Set page0 index and offset - TP and T-offset are set below */ 4354 sitd->sitd.sitd_buffer[0] = htole32(DMAADDR(dma_buf, offs)); 4355 4356 offs += xfer->ux_frlengths[i]; 4357 4358 sitd->sitd.sitd_buffer[1] = 4359 htole32(EHCI_SITD_SET_BPTR(DMAADDR(dma_buf, offs - 1))); 4360 4361 u_int huba __diagused = dev->ud_myhsport->up_parent->ud_addr; 4362 4363 #if 0 4364 if (sc->sc_flags & EHCIF_FREESCALE) { 4365 // Set hub address to 0 if embedded TT is used. 4366 if (huba == sc->sc_addr) 4367 huba = 0; 4368 } 4369 #endif 4370 4371 k = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 4372 dir = UE_GET_DIR(k) ? 1 : 0; 4373 KASSERT(sitd->sitd.sitd_endp == htole32( 4374 EHCI_SITD_SET_ENDPT(UE_GET_ADDR(k)) | 4375 EHCI_SITD_SET_DADDR(dev->ud_addr) | 4376 EHCI_SITD_SET_PORT(dev->ud_myhsport->up_portno) | 4377 EHCI_SITD_SET_HUBA(huba) | 4378 EHCI_SITD_SET_DIR(dir))); 4379 KASSERT(sitd->sitd.sitd_back == htole32(EHCI_LINK_TERMINATE)); 4380 4381 uint8_t sa = 0; 4382 uint8_t sb = 0; 4383 u_int temp, tlen; 4384 4385 if (dir == 0) { /* OUT */ 4386 temp = 0; 4387 tlen = xfer->ux_frlengths[i]; 4388 if (tlen <= 188) { 4389 temp |= 1; /* T-count = 1, TP = ALL */ 4390 tlen = 1; 4391 } else { 4392 tlen += 187; 4393 tlen /= 188; 4394 temp |= tlen; /* T-count = [1..6] */ 4395 temp |= 8; /* TP = Begin */ 4396 } 4397 sitd->sitd.sitd_buffer[1] |= htole32(temp); 4398 4399 tlen += sa; 4400 4401 if (tlen >= 8) { 4402 sb = 0; 4403 } else { 4404 sb = (1 << tlen); 4405 } 4406 4407 sa = (1 << sa); 4408 sa = (sb - sa) & 0x3F; 4409 sb = 0; 4410 } else { 4411 sb = (-(4 << sa)) & 0xFE; 4412 sa = (1 << sa) & 0x3F; 4413 sa = 0x01; 4414 sb = 0xfc; 4415 } 4416 4417 sitd->sitd.sitd_sched = htole32( 4418 EHCI_SITD_SET_SMASK(sa) | 4419 EHCI_SITD_SET_CMASK(sb) 4420 ); 4421 4422 usb_syncmem(&sitd->dma, sitd->offs, sizeof(ehci_sitd_t), 4423 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4424 } /* End of frame */ 4425 4426 sitd = exfer->ex_sitdend; 4427 sitd->sitd.sitd_trans |= htole32(EHCI_SITD_IOC); 4428 4429 usb_syncmem(&sitd->dma, sitd->offs + offsetof(ehci_sitd_t, sitd_trans), 4430 sizeof(sitd->sitd.sitd_trans), 4431 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4432 4433 if (xfer->ux_length) 4434 usb_syncmem(&exfer->ex_xfer.ux_dmabuf, 0, xfer->ux_length, 4435 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); 4436 4437 /* 4438 * Part 2: Transfer descriptors have now been set up, now they must 4439 * be scheduled into the periodic frame list. Erk. Not wanting to 4440 * complicate matters, transfer is denied if the transfer spans 4441 * more than the period frame list. 4442 */ 4443 4444 mutex_enter(&sc->sc_lock); 4445 4446 /* Start inserting frames */ 4447 if (epipe->isoc.cur_xfers > 0) { 4448 frindex = epipe->isoc.next_frame; 4449 } else { 4450 frindex = EOREAD4(sc, EHCI_FRINDEX); 4451 frindex = frindex >> 3; /* Erase microframe index */ 4452 frindex += 2; 4453 } 4454 4455 if (frindex >= sc->sc_flsize) 4456 frindex &= (sc->sc_flsize - 1); 4457 4458 /* Whats the frame interval? */ 4459 i = epipe->pipe.up_endpoint->ue_edesc->bInterval; 4460 4461 for (sitd = exfer->ex_sitdstart, j = 0; j < frames; 4462 j++, sitd = sitd->xfer_next) { 4463 KASSERT(sitd); 4464 4465 usb_syncmem(&sc->sc_fldma, 4466 sizeof(ehci_link_t) * frindex, 4467 sizeof(ehci_link_t), 4468 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 4469 4470 sitd->sitd.sitd_next = sc->sc_flist[frindex]; 4471 if (sitd->sitd.sitd_next == 0) 4472 /* 4473 * FIXME: frindex table gets initialized to NULL 4474 * or EHCI_NULL? 4475 */ 4476 sitd->sitd.sitd_next = EHCI_NULL; 4477 4478 usb_syncmem(&sitd->dma, 4479 sitd->offs + offsetof(ehci_sitd_t, sitd_next), 4480 sizeof(ehci_sitd_t), 4481 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4482 4483 sc->sc_flist[frindex] = 4484 htole32(EHCI_LINK_SITD | sitd->physaddr); 4485 4486 usb_syncmem(&sc->sc_fldma, 4487 sizeof(ehci_link_t) * frindex, 4488 sizeof(ehci_link_t), 4489 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4490 4491 sitd->frame_list.next = sc->sc_softsitds[frindex]; 4492 sc->sc_softsitds[frindex] = sitd; 4493 if (sitd->frame_list.next != NULL) 4494 sitd->frame_list.next->frame_list.prev = sitd; 4495 sitd->slot = frindex; 4496 sitd->frame_list.prev = NULL; 4497 4498 frindex += i; 4499 if (frindex >= sc->sc_flsize) 4500 frindex -= sc->sc_flsize; 4501 } 4502 4503 epipe->isoc.cur_xfers++; 4504 epipe->isoc.next_frame = frindex; 4505 4506 ehci_add_intr_list(sc, exfer); 4507 xfer->ux_status = USBD_IN_PROGRESS; 4508 mutex_exit(&sc->sc_lock); 4509 4510 return USBD_IN_PROGRESS; 4511 } 4512 4513 Static void 4514 ehci_device_fs_isoc_abort(struct usbd_xfer *xfer) 4515 { 4516 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4517 4518 DPRINTF("xfer = %#jx", (uintptr_t)xfer, 0, 0, 0); 4519 ehci_abort_isoc_xfer(xfer, USBD_CANCELLED); 4520 } 4521 4522 Static void 4523 ehci_device_fs_isoc_close(struct usbd_pipe *pipe) 4524 { 4525 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4526 4527 DPRINTF("nothing in the pipe to free?", 0, 0, 0, 0); 4528 } 4529 4530 Static void 4531 ehci_device_fs_isoc_done(struct usbd_xfer *xfer) 4532 { 4533 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 4534 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4535 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 4536 4537 KASSERT(mutex_owned(&sc->sc_lock)); 4538 4539 epipe->isoc.cur_xfers--; 4540 ehci_remove_sitd_chain(sc, exfer->ex_itdstart); 4541 4542 if (xfer->ux_length) 4543 usb_syncmem(&xfer->ux_dmabuf, 0, xfer->ux_length, 4544 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 4545 } 4546 4547 /* -------------------------------------------------------------------------- */ 4548 4549 Static int 4550 ehci_device_isoc_init(struct usbd_xfer *xfer) 4551 { 4552 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4553 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 4554 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 4555 ehci_soft_itd_t *itd, *prev, *start, *stop; 4556 int i, j, k; 4557 int frames, ufrperframe; 4558 int err; 4559 4560 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4561 4562 start = NULL; 4563 prev = NULL; 4564 itd = NULL; 4565 4566 KASSERT(xfer->ux_nframes != 0); 4567 KASSERT(!(xfer->ux_rqflags & URQ_REQUEST)); 4568 KASSERT(exfer->ex_isdone); 4569 4570 exfer->ex_type = EX_ISOC; 4571 4572 /* 4573 * Step 1: Allocate and initialize itds, how many do we need? 4574 * One per transfer if interval >= 8 microframes, less if we use 4575 * multiple microframes per frame. 4576 */ 4577 i = epipe->pipe.up_endpoint->ue_edesc->bInterval; 4578 if (i > 16 || i == 0) { 4579 /* Spec page 271 says intervals > 16 are invalid */ 4580 DPRINTF("bInterval %jd invalid", i, 0, 0, 0); 4581 return USBD_INVAL; 4582 } 4583 4584 ufrperframe = uimax(1, USB_UFRAMES_PER_FRAME / (1 << (i - 1))); 4585 frames = howmany(xfer->ux_nframes, ufrperframe); 4586 4587 for (i = 0, prev = NULL; i < frames; i++, prev = itd) { 4588 itd = ehci_alloc_itd(sc); 4589 if (itd == NULL) { 4590 err = ENOMEM; 4591 goto fail; 4592 } 4593 4594 if (prev != NULL) { 4595 /* Maybe not as it's updated by the scheduling? */ 4596 prev->itd.itd_next = 4597 htole32(itd->physaddr | EHCI_LINK_ITD); 4598 4599 prev->xfer_next = itd; 4600 } else { 4601 start = itd; 4602 } 4603 4604 /* 4605 * Other special values 4606 */ 4607 k = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 4608 itd->itd.itd_bufr[0] = htole32( 4609 EHCI_ITD_SET_EP(UE_GET_ADDR(k)) | 4610 EHCI_ITD_SET_DADDR(epipe->pipe.up_dev->ud_addr)); 4611 4612 k = (UE_GET_DIR(epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress)) 4613 ? 1 : 0; 4614 j = UGETW(epipe->pipe.up_endpoint->ue_edesc->wMaxPacketSize); 4615 itd->itd.itd_bufr[1] |= htole32( 4616 EHCI_ITD_SET_DIR(k) | 4617 EHCI_ITD_SET_MAXPKT(UE_GET_SIZE(j))); 4618 4619 /* FIXME: handle invalid trans - should be done in openpipe */ 4620 itd->itd.itd_bufr[2] |= 4621 htole32(EHCI_ITD_SET_MULTI(UE_GET_TRANS(j)+1)); 4622 } /* End of frame */ 4623 4624 stop = itd; 4625 stop->xfer_next = NULL; 4626 4627 exfer->ex_itdstart = start; 4628 exfer->ex_itdend = stop; 4629 4630 return 0; 4631 fail: 4632 mutex_enter(&sc->sc_lock); 4633 ehci_soft_itd_t *next; 4634 for (itd = start; itd; itd = next) { 4635 next = itd->xfer_next; 4636 ehci_free_itd_locked(sc, itd); 4637 } 4638 mutex_exit(&sc->sc_lock); 4639 4640 return err; 4641 4642 } 4643 4644 Static void 4645 ehci_device_isoc_fini(struct usbd_xfer *xfer) 4646 { 4647 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4648 struct ehci_xfer *ex = EHCI_XFER2EXFER(xfer); 4649 4650 KASSERT(ex->ex_type == EX_ISOC); 4651 4652 ehci_free_itd_chain(sc, ex->ex_itdstart); 4653 } 4654 4655 Static usbd_status 4656 ehci_device_isoc_transfer(struct usbd_xfer *xfer) 4657 { 4658 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4659 usbd_status __diagused err; 4660 4661 mutex_enter(&sc->sc_lock); 4662 err = usb_insert_transfer(xfer); 4663 mutex_exit(&sc->sc_lock); 4664 4665 KASSERT(err == USBD_NORMAL_COMPLETION); 4666 4667 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 4668 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 4669 ehci_soft_itd_t *itd, *prev; 4670 usb_dma_t *dma_buf; 4671 int i, j; 4672 int frames, uframes, ufrperframe; 4673 int trans_count, offs; 4674 int frindex; 4675 4676 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4677 4678 prev = NULL; 4679 itd = NULL; 4680 trans_count = 0; 4681 4682 DPRINTF("xfer %#jx flags %jd", (uintptr_t)xfer, xfer->ux_flags, 0, 0); 4683 4684 if (sc->sc_dying) 4685 return USBD_IOERROR; 4686 4687 /* 4688 * To avoid complication, don't allow a request right now that'll span 4689 * the entire frame table. To within 4 frames, to allow some leeway 4690 * on either side of where the hc currently is. 4691 */ 4692 if ((1 << (epipe->pipe.up_endpoint->ue_edesc->bInterval)) * 4693 xfer->ux_nframes >= (sc->sc_flsize - 4) * 8) { 4694 DPRINTF( 4695 "isoc descriptor spans entire frametable", 0, 0, 0, 0); 4696 printf("ehci: isoc descriptor requested that spans the entire frametable, too many frames\n"); 4697 return USBD_INVAL; 4698 } 4699 4700 KASSERT(xfer->ux_nframes != 0 && xfer->ux_frlengths); 4701 KASSERT(!(xfer->ux_rqflags & URQ_REQUEST)); 4702 KASSERT(exfer->ex_isdone); 4703 #ifdef DIAGNOSTIC 4704 exfer->ex_isdone = false; 4705 #endif 4706 4707 /* 4708 * Step 1: Re-Initialize itds 4709 */ 4710 4711 i = epipe->pipe.up_endpoint->ue_edesc->bInterval; 4712 if (i > 16 || i == 0) { 4713 /* Spec page 271 says intervals > 16 are invalid */ 4714 DPRINTF("bInterval %jd invalid", i, 0, 0, 0); 4715 return USBD_INVAL; 4716 } 4717 4718 ufrperframe = uimax(1, USB_UFRAMES_PER_FRAME / (1 << (i - 1))); 4719 frames = howmany(xfer->ux_nframes, ufrperframe); 4720 uframes = USB_UFRAMES_PER_FRAME / ufrperframe; 4721 4722 if (frames == 0) { 4723 DPRINTF("frames == 0", 0, 0, 0, 0); 4724 return USBD_INVAL; 4725 } 4726 4727 dma_buf = &xfer->ux_dmabuf; 4728 offs = 0; 4729 4730 itd = exfer->ex_itdstart; 4731 for (i = 0; i < frames; i++, itd = itd->xfer_next) { 4732 int froffs = offs; 4733 4734 if (prev != NULL) { 4735 prev->itd.itd_next = 4736 htole32(itd->physaddr | EHCI_LINK_ITD); 4737 usb_syncmem(&prev->dma, 4738 prev->offs + offsetof(ehci_itd_t, itd_next), 4739 sizeof(prev->itd.itd_next), BUS_DMASYNC_POSTWRITE); 4740 prev->xfer_next = itd; 4741 } 4742 4743 /* 4744 * Step 1.5, initialize uframes 4745 */ 4746 for (j = 0; j < EHCI_ITD_NUFRAMES; j += uframes) { 4747 /* Calculate which page in the list this starts in */ 4748 int addr = DMAADDR(dma_buf, froffs); 4749 addr = EHCI_PAGE_OFFSET(addr); 4750 addr += (offs - froffs); 4751 addr = EHCI_PAGE(addr); 4752 addr /= EHCI_PAGE_SIZE; 4753 4754 /* 4755 * This gets the initial offset into the first page, 4756 * looks how far further along the current uframe 4757 * offset is. Works out how many pages that is. 4758 */ 4759 4760 itd->itd.itd_ctl[j] = htole32 ( EHCI_ITD_ACTIVE | 4761 EHCI_ITD_SET_LEN(xfer->ux_frlengths[trans_count]) | 4762 EHCI_ITD_SET_PG(addr) | 4763 EHCI_ITD_SET_OFFS(EHCI_PAGE_OFFSET(DMAADDR(dma_buf,offs)))); 4764 4765 offs += xfer->ux_frlengths[trans_count]; 4766 trans_count++; 4767 4768 if (trans_count >= xfer->ux_nframes) { /*Set IOC*/ 4769 itd->itd.itd_ctl[j] |= htole32(EHCI_ITD_IOC); 4770 break; 4771 } 4772 } 4773 4774 /* 4775 * Step 1.75, set buffer pointers. To simplify matters, all 4776 * pointers are filled out for the next 7 hardware pages in 4777 * the dma block, so no need to worry what pages to cover 4778 * and what to not. 4779 */ 4780 4781 for (j = 0; j < EHCI_ITD_NBUFFERS; j++) { 4782 /* 4783 * Don't try to lookup a page that's past the end 4784 * of buffer 4785 */ 4786 int page_offs = EHCI_PAGE(froffs + (EHCI_PAGE_SIZE * j)); 4787 if (page_offs >= dma_buf->udma_block->size) 4788 break; 4789 4790 uint64_t page = DMAADDR(dma_buf, page_offs); 4791 page = EHCI_PAGE(page); 4792 itd->itd.itd_bufr[j] = htole32(EHCI_ITD_SET_BPTR(page)); 4793 itd->itd.itd_bufr_hi[j] = htole32(page >> 32); 4794 } 4795 /* 4796 * Other special values 4797 */ 4798 4799 int k = epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress; 4800 itd->itd.itd_bufr[0] |= htole32(EHCI_ITD_SET_EP(UE_GET_ADDR(k)) | 4801 EHCI_ITD_SET_DADDR(epipe->pipe.up_dev->ud_addr)); 4802 4803 k = (UE_GET_DIR(epipe->pipe.up_endpoint->ue_edesc->bEndpointAddress)) 4804 ? 1 : 0; 4805 j = UGETW(epipe->pipe.up_endpoint->ue_edesc->wMaxPacketSize); 4806 itd->itd.itd_bufr[1] |= htole32(EHCI_ITD_SET_DIR(k) | 4807 EHCI_ITD_SET_MAXPKT(UE_GET_SIZE(j))); 4808 4809 /* FIXME: handle invalid trans */ 4810 itd->itd.itd_bufr[2] |= 4811 htole32(EHCI_ITD_SET_MULTI(UE_GET_TRANS(j)+1)); 4812 4813 usb_syncmem(&itd->dma, itd->offs, sizeof(ehci_itd_t), 4814 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4815 4816 prev = itd; 4817 } /* End of frame */ 4818 4819 if (xfer->ux_length) 4820 usb_syncmem(&exfer->ex_xfer.ux_dmabuf, 0, xfer->ux_length, 4821 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); 4822 4823 /* 4824 * Part 2: Transfer descriptors have now been set up, now they must 4825 * be scheduled into the period frame list. Erk. Not wanting to 4826 * complicate matters, transfer is denied if the transfer spans 4827 * more than the period frame list. 4828 */ 4829 4830 mutex_enter(&sc->sc_lock); 4831 4832 /* Start inserting frames */ 4833 if (epipe->isoc.cur_xfers > 0) { 4834 frindex = epipe->isoc.next_frame; 4835 } else { 4836 frindex = EOREAD4(sc, EHCI_FRINDEX); 4837 frindex = frindex >> 3; /* Erase microframe index */ 4838 frindex += 2; 4839 } 4840 4841 if (frindex >= sc->sc_flsize) 4842 frindex &= (sc->sc_flsize - 1); 4843 4844 /* What's the frame interval? */ 4845 i = (1 << (epipe->pipe.up_endpoint->ue_edesc->bInterval - 1)); 4846 if (i / USB_UFRAMES_PER_FRAME == 0) 4847 i = 1; 4848 else 4849 i /= USB_UFRAMES_PER_FRAME; 4850 4851 itd = exfer->ex_itdstart; 4852 for (j = 0; j < frames; j++) { 4853 KASSERTMSG(itd != NULL, "frame %d\n", j); 4854 4855 usb_syncmem(&sc->sc_fldma, 4856 sizeof(ehci_link_t) * frindex, 4857 sizeof(ehci_link_t), 4858 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 4859 4860 itd->itd.itd_next = sc->sc_flist[frindex]; 4861 if (itd->itd.itd_next == 0) 4862 /* 4863 * FIXME: frindex table gets initialized to NULL 4864 * or EHCI_NULL? 4865 */ 4866 itd->itd.itd_next = EHCI_NULL; 4867 4868 usb_syncmem(&itd->dma, 4869 itd->offs + offsetof(ehci_itd_t, itd_next), 4870 sizeof(itd->itd.itd_next), 4871 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4872 4873 sc->sc_flist[frindex] = htole32(EHCI_LINK_ITD | itd->physaddr); 4874 4875 usb_syncmem(&sc->sc_fldma, 4876 sizeof(ehci_link_t) * frindex, 4877 sizeof(ehci_link_t), 4878 BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD); 4879 4880 itd->frame_list.next = sc->sc_softitds[frindex]; 4881 sc->sc_softitds[frindex] = itd; 4882 if (itd->frame_list.next != NULL) 4883 itd->frame_list.next->frame_list.prev = itd; 4884 itd->slot = frindex; 4885 itd->frame_list.prev = NULL; 4886 4887 frindex += i; 4888 if (frindex >= sc->sc_flsize) 4889 frindex -= sc->sc_flsize; 4890 4891 itd = itd->xfer_next; 4892 } 4893 4894 epipe->isoc.cur_xfers++; 4895 epipe->isoc.next_frame = frindex; 4896 4897 ehci_add_intr_list(sc, exfer); 4898 xfer->ux_status = USBD_IN_PROGRESS; 4899 mutex_exit(&sc->sc_lock); 4900 4901 return USBD_IN_PROGRESS; 4902 } 4903 4904 Static void 4905 ehci_device_isoc_abort(struct usbd_xfer *xfer) 4906 { 4907 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4908 4909 DPRINTF("xfer = %#jx", (uintptr_t)xfer, 0, 0, 0); 4910 ehci_abort_isoc_xfer(xfer, USBD_CANCELLED); 4911 } 4912 4913 Static void 4914 ehci_device_isoc_close(struct usbd_pipe *pipe) 4915 { 4916 EHCIHIST_FUNC(); EHCIHIST_CALLED(); 4917 4918 DPRINTF("nothing in the pipe to free?", 0, 0, 0, 0); 4919 } 4920 4921 Static void 4922 ehci_device_isoc_done(struct usbd_xfer *xfer) 4923 { 4924 struct ehci_xfer *exfer = EHCI_XFER2EXFER(xfer); 4925 ehci_softc_t *sc = EHCI_XFER2SC(xfer); 4926 struct ehci_pipe *epipe = EHCI_XFER2EPIPE(xfer); 4927 4928 KASSERT(mutex_owned(&sc->sc_lock)); 4929 4930 epipe->isoc.cur_xfers--; 4931 ehci_remove_itd_chain(sc, exfer->ex_sitdstart); 4932 if (xfer->ux_length) 4933 usb_syncmem(&xfer->ux_dmabuf, 0, xfer->ux_length, 4934 BUS_DMASYNC_POSTWRITE | BUS_DMASYNC_POSTREAD); 4935 } 4936