Lines Matching refs:sc_bus
93 device_printf(ehci_softc->sc_bus.bdev, "set host controller mode\n"); in tegra_ehci_post_reset()
139 usb_bus_mem_free_all(&esc->sc_bus, &ehci_iterate_hw_softc); in tegra_ehci_detach()
225 esc->sc_bus.parent = dev; in tegra_ehci_attach()
226 esc->sc_bus.devices = esc->sc_devices; in tegra_ehci_attach()
227 esc->sc_bus.devices_max = EHCI_MAX_DEVICES; in tegra_ehci_attach()
228 esc->sc_bus.dma_bits = 32; in tegra_ehci_attach()
231 rv = usb_bus_mem_alloc_all(&esc->sc_bus, USB_GET_DMA_TAG(dev), in tegra_ehci_attach()
262 esc->sc_bus.bdev = device_add_child(dev, "usbus", DEVICE_UNIT_ANY); in tegra_ehci_attach()
263 if (esc->sc_bus.bdev == NULL) { in tegra_ehci_attach()
267 device_set_ivars(esc->sc_bus.bdev, &esc->sc_bus); in tegra_ehci_attach()
284 rv = device_probe_and_attach(esc->sc_bus.bdev); in tegra_ehci_attach()