diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-06-15 01:02:43 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-06-15 01:02:43 +0000 |
commit | 06303d491a0f2982d6774156ea92ce9b41f9b12c (patch) | |
tree | b384d18397090617ec2f5b76c9e0ba67f45456c3 /sys/dev/usb/serial/ulpt.c | |
parent | 59f1f60cfaca26c7758f2642afca8d6500b9a06a (diff) | |
download | FreeBSD-src-06303d491a0f2982d6774156ea92ce9b41f9b12c.zip FreeBSD-src-06303d491a0f2982d6774156ea92ce9b41f9b12c.tar.gz |
s/usb2_/usb_|usbd_/ on all function names for the USB stack.
Diffstat (limited to 'sys/dev/usb/serial/ulpt.c')
-rw-r--r-- | sys/dev/usb/serial/ulpt.c | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/sys/dev/usb/serial/ulpt.c b/sys/dev/usb/serial/ulpt.c index 056b48a..b7b622d 100644 --- a/sys/dev/usb/serial/ulpt.c +++ b/sys/dev/usb/serial/ulpt.c @@ -177,10 +177,10 @@ ulpt_reset(struct ulpt_softc *sc) mtx_lock(&sc->sc_mtx); req.bmRequestType = UT_WRITE_CLASS_OTHER; - if (usb2_do_request_flags(sc->sc_udev, &sc->sc_mtx, + if (usbd_do_request_flags(sc->sc_udev, &sc->sc_mtx, &req, NULL, 0, NULL, 2 * USB_MS_HZ)) { /* 1.0 */ req.bmRequestType = UT_WRITE_CLASS_INTERFACE; - if (usb2_do_request_flags(sc->sc_udev, &sc->sc_mtx, + if (usbd_do_request_flags(sc->sc_udev, &sc->sc_mtx, &req, NULL, 0, NULL, 2 * USB_MS_HZ)) { /* 1.1 */ /* ignore error */ } @@ -207,10 +207,10 @@ ulpt_write_callback(struct usb_xfer *xfer) case USB_ST_TRANSFERRED: case USB_ST_SETUP: tr_setup: - if (usb2_fifo_get_data(f, xfer->frbuffers, + if (usb_fifo_get_data(f, xfer->frbuffers, 0, xfer->max_data_length, &actlen, 0)) { xfer->frlengths[0] = actlen; - usb2_start_hardware(xfer); + usbd_transfer_submit(xfer); } break; @@ -255,14 +255,14 @@ ulpt_read_callback(struct usb_xfer *xfer) sc->sc_zlps = 0; } - usb2_fifo_put_data(f, xfer->frbuffers, + usb_fifo_put_data(f, xfer->frbuffers, 0, xfer->actlen, 1); case USB_ST_SETUP: tr_setup: - if (usb2_fifo_put_bytes_max(f) != 0) { + if (usb_fifo_put_bytes_max(f) != 0) { xfer->frlengths[0] = xfer->max_data_length; - usb2_start_hardware(xfer); + usbd_transfer_submit(xfer); } break; @@ -291,7 +291,7 @@ ulpt_status_callback(struct usb_xfer *xfer) switch (USB_GET_STATE(xfer)) { case USB_ST_TRANSFERRED: - usb2_copy_out(xfer->frbuffers + 1, 0, &cur_status, 1); + usbd_copy_out(xfer->frbuffers + 1, 0, &cur_status, 1); cur_status = (cur_status ^ LPS_INVERT) & LPS_MASK; new_status = cur_status & ~sc->sc_last_status; @@ -316,16 +316,16 @@ ulpt_status_callback(struct usb_xfer *xfer) req.wIndex[1] = 0; USETW(req.wLength, 1); - usb2_copy_in(xfer->frbuffers, 0, &req, sizeof(req)); + usbd_copy_in(xfer->frbuffers, 0, &req, sizeof(req)); xfer->frlengths[0] = sizeof(req); xfer->frlengths[1] = 1; xfer->nframes = 2; - usb2_start_hardware(xfer); + usbd_transfer_submit(xfer); break; default: /* Error */ - DPRINTF("error=%s\n", usb2_errstr(xfer->error)); + DPRINTF("error=%s\n", usbd_errstr(xfer->error)); if (xfer->error != USB_ERR_CANCELLED) { /* wait for next watchdog timeout */ } @@ -367,7 +367,7 @@ ulpt_start_read(struct usb_fifo *fifo) { struct ulpt_softc *sc = fifo->priv_sc0; - usb2_transfer_start(sc->sc_xfer[ULPT_BULK_DT_RD]); + usbd_transfer_start(sc->sc_xfer[ULPT_BULK_DT_RD]); } static void @@ -375,7 +375,7 @@ ulpt_stop_read(struct usb_fifo *fifo) { struct ulpt_softc *sc = fifo->priv_sc0; - usb2_transfer_stop(sc->sc_xfer[ULPT_BULK_DT_RD]); + usbd_transfer_stop(sc->sc_xfer[ULPT_BULK_DT_RD]); } static void @@ -383,7 +383,7 @@ ulpt_start_write(struct usb_fifo *fifo) { struct ulpt_softc *sc = fifo->priv_sc0; - usb2_transfer_start(sc->sc_xfer[ULPT_BULK_DT_WR]); + usbd_transfer_start(sc->sc_xfer[ULPT_BULK_DT_WR]); } static void @@ -391,7 +391,7 @@ ulpt_stop_write(struct usb_fifo *fifo) { struct ulpt_softc *sc = fifo->priv_sc0; - usb2_transfer_stop(sc->sc_xfer[ULPT_BULK_DT_WR]); + usbd_transfer_stop(sc->sc_xfer[ULPT_BULK_DT_WR]); } static int @@ -418,9 +418,9 @@ unlpt_open(struct usb_fifo *fifo, int fflags) if (fflags & FREAD) { /* clear stall first */ mtx_lock(&sc->sc_mtx); - usb2_transfer_set_stall(sc->sc_xfer[ULPT_BULK_DT_RD]); + usbd_transfer_set_stall(sc->sc_xfer[ULPT_BULK_DT_RD]); mtx_unlock(&sc->sc_mtx); - if (usb2_fifo_alloc_buffer(fifo, + if (usb_fifo_alloc_buffer(fifo, sc->sc_xfer[ULPT_BULK_DT_RD]->max_data_length, ULPT_IFQ_MAXLEN)) { return (ENOMEM); @@ -431,9 +431,9 @@ unlpt_open(struct usb_fifo *fifo, int fflags) if (fflags & FWRITE) { /* clear stall first */ mtx_lock(&sc->sc_mtx); - usb2_transfer_set_stall(sc->sc_xfer[ULPT_BULK_DT_WR]); + usbd_transfer_set_stall(sc->sc_xfer[ULPT_BULK_DT_WR]); mtx_unlock(&sc->sc_mtx); - if (usb2_fifo_alloc_buffer(fifo, + if (usb_fifo_alloc_buffer(fifo, sc->sc_xfer[ULPT_BULK_DT_WR]->max_data_length, ULPT_IFQ_MAXLEN)) { return (ENOMEM); @@ -453,7 +453,7 @@ ulpt_close(struct usb_fifo *fifo, int fflags) sc->sc_fflags &= ~(fflags & (FREAD | FWRITE)); if (fflags & (FREAD | FWRITE)) { - usb2_fifo_free_buffer(fifo); + usb_fifo_free_buffer(fifo); } } @@ -500,15 +500,15 @@ ulpt_attach(device_t dev) sc->sc_dev = dev; sc->sc_udev = uaa->device; - device_set_usb2_desc(dev); + device_set_usb_desc(dev); mtx_init(&sc->sc_mtx, "ulpt lock", NULL, MTX_DEF | MTX_RECURSE); - usb2_callout_init_mtx(&sc->sc_watchdog, &sc->sc_mtx, 0); + usb_callout_init_mtx(&sc->sc_watchdog, &sc->sc_mtx, 0); /* search through all the descriptors looking for bidir mode */ - id = usb2_get_interface_descriptor(uaa->iface); + id = usbd_get_interface_descriptor(uaa->iface); alt_index = 0 - 1; while (1) { if (id == NULL) { @@ -527,8 +527,8 @@ ulpt_attach(device_t dev) } } } - id = (void *)usb2_desc_foreach( - usb2_get_config_descriptor(uaa->device), (void *)id); + id = (void *)usb_desc_foreach( + usbd_get_config_descriptor(uaa->device), (void *)id); } goto detach; @@ -539,22 +539,22 @@ found: if (alt_index) { - error = usb2_set_alt_interface_index + error = usbd_set_alt_interface_index (uaa->device, iface_index, alt_index); if (error) { DPRINTF("could not set alternate " - "config, error=%s\n", usb2_errstr(error)); + "config, error=%s\n", usbd_errstr(error)); goto detach; } } sc->sc_iface_no = id->bInterfaceNumber; - error = usb2_transfer_setup(uaa->device, &iface_index, + error = usbd_transfer_setup(uaa->device, &iface_index, sc->sc_xfer, ulpt_config, ULPT_N_TRANSFER, sc, &sc->sc_mtx); if (error) { - DPRINTF("error=%s\n", usb2_errstr(error)); + DPRINTF("error=%s\n", usbd_errstr(error)); goto detach; } device_printf(sc->sc_dev, "using bi-directional mode\n"); @@ -566,7 +566,7 @@ found: * UHCI and less often with OHCI. *sigh* */ { - struct usb_config_descriptor *cd = usb2_get_config_descriptor(dev); + struct usb_config_descriptor *cd = usbd_get_config_descriptor(dev); struct usb_device_request req; int len, alen; @@ -575,7 +575,7 @@ found: USETW(req.wValue, cd->bConfigurationValue); USETW2(req.wIndex, id->bInterfaceNumber, id->bAlternateSetting); USETW(req.wLength, sizeof devinfo - 1); - error = usb2_do_request_flags(dev, &req, devinfo, USB_SHORT_XFER_OK, + error = usbd_do_request_flags(dev, &req, devinfo, USB_SHORT_XFER_OK, &alen, USB_DEFAULT_TIMEOUT); if (error) { device_printf(sc->sc_dev, "cannot get device id\n"); @@ -595,14 +595,14 @@ found: } #endif - error = usb2_fifo_attach(uaa->device, sc, &sc->sc_mtx, + error = usb_fifo_attach(uaa->device, sc, &sc->sc_mtx, &ulpt_fifo_methods, &sc->sc_fifo, unit, 0 - 1, uaa->info.bIfaceIndex, UID_ROOT, GID_OPERATOR, 0644); if (error) { goto detach; } - error = usb2_fifo_attach(uaa->device, sc, &sc->sc_mtx, + error = usb_fifo_attach(uaa->device, sc, &sc->sc_mtx, &unlpt_fifo_methods, &sc->sc_fifo_noreset, unit, 0 - 1, uaa->info.bIfaceIndex, UID_ROOT, GID_OPERATOR, 0644); @@ -628,15 +628,15 @@ ulpt_detach(device_t dev) DPRINTF("sc=%p\n", sc); - usb2_fifo_detach(&sc->sc_fifo); - usb2_fifo_detach(&sc->sc_fifo_noreset); + usb_fifo_detach(&sc->sc_fifo); + usb_fifo_detach(&sc->sc_fifo_noreset); mtx_lock(&sc->sc_mtx); - usb2_callout_stop(&sc->sc_watchdog); + usb_callout_stop(&sc->sc_watchdog); mtx_unlock(&sc->sc_mtx); - usb2_transfer_unsetup(sc->sc_xfer, ULPT_N_TRANSFER); - usb2_callout_drain(&sc->sc_watchdog); + usbd_transfer_unsetup(sc->sc_xfer, ULPT_N_TRANSFER); + usb_callout_drain(&sc->sc_watchdog); mtx_destroy(&sc->sc_mtx); return (0); @@ -696,9 +696,9 @@ ulpt_watchdog(void *arg) mtx_assert(&sc->sc_mtx, MA_OWNED); - usb2_transfer_start(sc->sc_xfer[ULPT_INTR_DT_RD]); + usbd_transfer_start(sc->sc_xfer[ULPT_INTR_DT_RD]); - usb2_callout_reset(&sc->sc_watchdog, + usb_callout_reset(&sc->sc_watchdog, hz, &ulpt_watchdog, sc); } |