Home | History | Annotate | Line # | Download | only in usb
ulpt.c revision 1.74.4.1
      1  1.74.4.1      yamt /*	$NetBSD: ulpt.c,v 1.74.4.1 2006/10/22 06:06:52 yamt Exp $	*/
      2      1.30  augustss /*	$FreeBSD: src/sys/dev/usb/ulpt.c,v 1.24 1999/11/17 22:33:44 n_hibma Exp $	*/
      3       1.1  augustss 
      4       1.1  augustss /*
      5      1.60  augustss  * Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
      6       1.1  augustss  * All rights reserved.
      7       1.1  augustss  *
      8       1.3  augustss  * This code is derived from software contributed to The NetBSD Foundation
      9      1.37  augustss  * by Lennart Augustsson (lennart (at) augustsson.net) at
     10       1.3  augustss  * Carlstedt Research & Technology.
     11       1.1  augustss  *
     12       1.1  augustss  * Redistribution and use in source and binary forms, with or without
     13       1.1  augustss  * modification, are permitted provided that the following conditions
     14       1.1  augustss  * are met:
     15       1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     16       1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     17       1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     19       1.1  augustss  *    documentation and/or other materials provided with the distribution.
     20       1.1  augustss  * 3. All advertising materials mentioning features or use of this software
     21       1.1  augustss  *    must display the following acknowledgement:
     22       1.1  augustss  *        This product includes software developed by the NetBSD
     23       1.1  augustss  *        Foundation, Inc. and its contributors.
     24       1.1  augustss  * 4. Neither the name of The NetBSD Foundation nor the names of its
     25       1.1  augustss  *    contributors may be used to endorse or promote products derived
     26       1.1  augustss  *    from this software without specific prior written permission.
     27       1.1  augustss  *
     28       1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     29       1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     30       1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     31       1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     32       1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     33       1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     34       1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     35       1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     36       1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     37       1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     38       1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     39      1.11  augustss  */
     40      1.11  augustss 
     41      1.11  augustss /*
     42      1.40  augustss  * Printer Class spec: http://www.usb.org/developers/data/devclass/usbprint109.PDF
     43       1.1  augustss  */
     44      1.44     lukem 
     45      1.44     lukem #include <sys/cdefs.h>
     46  1.74.4.1      yamt __KERNEL_RCSID(0, "$NetBSD: ulpt.c,v 1.74.4.1 2006/10/22 06:06:52 yamt Exp $");
     47      1.27  augustss 
     48       1.1  augustss #include <sys/param.h>
     49       1.1  augustss #include <sys/systm.h>
     50       1.1  augustss #include <sys/proc.h>
     51       1.1  augustss #include <sys/kernel.h>
     52      1.60  augustss #include <sys/fcntl.h>
     53      1.35  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
     54       1.8  augustss #include <sys/device.h>
     55       1.1  augustss #include <sys/ioctl.h>
     56       1.8  augustss #elif defined(__FreeBSD__)
     57       1.8  augustss #include <sys/ioccom.h>
     58       1.8  augustss #include <sys/module.h>
     59       1.8  augustss #include <sys/bus.h>
     60       1.8  augustss #endif
     61       1.1  augustss #include <sys/uio.h>
     62       1.1  augustss #include <sys/conf.h>
     63      1.12  augustss #include <sys/vnode.h>
     64       1.1  augustss #include <sys/syslog.h>
     65       1.1  augustss 
     66      1.60  augustss #include <machine/vmparam.h>	/* PAGE_SIZE */
     67      1.60  augustss 
     68       1.1  augustss #include <dev/usb/usb.h>
     69       1.1  augustss #include <dev/usb/usbdi.h>
     70       1.1  augustss #include <dev/usb/usbdi_util.h>
     71       1.1  augustss #include <dev/usb/usbdevs.h>
     72       1.1  augustss #include <dev/usb/usb_quirks.h>
     73       1.1  augustss 
     74       1.1  augustss #define	TIMEOUT		hz*16	/* wait up to 16 seconds for a ready */
     75       1.1  augustss #define	STEP		hz/4
     76       1.1  augustss 
     77       1.1  augustss #define	LPTPRI		(PZERO+8)
     78      1.60  augustss #define	ULPT_BSIZE	PAGE_SIZE
     79      1.60  augustss 
     80      1.60  augustss #define ULPT_READS_PER_SEC 5
     81      1.60  augustss #define ULPT_READ_TIMO 10
     82       1.1  augustss 
     83      1.27  augustss #ifdef ULPT_DEBUG
     84      1.14  augustss #define DPRINTF(x)	if (ulptdebug) logprintf x
     85      1.14  augustss #define DPRINTFN(n,x)	if (ulptdebug>(n)) logprintf x
     86       1.1  augustss int	ulptdebug = 0;
     87       1.1  augustss #else
     88       1.1  augustss #define DPRINTF(x)
     89       1.1  augustss #define DPRINTFN(n,x)
     90       1.1  augustss #endif
     91       1.1  augustss 
     92       1.1  augustss #define UR_GET_DEVICE_ID 0
     93       1.1  augustss #define UR_GET_PORT_STATUS 1
     94       1.1  augustss #define UR_SOFT_RESET 2
     95       1.1  augustss 
     96       1.1  augustss #define	LPS_NERR		0x08	/* printer no error */
     97       1.1  augustss #define	LPS_SELECT		0x10	/* printer selected */
     98       1.1  augustss #define	LPS_NOPAPER		0x20	/* printer out of paper */
     99       1.1  augustss #define LPS_INVERT      (LPS_SELECT|LPS_NERR)
    100       1.1  augustss #define LPS_MASK        (LPS_SELECT|LPS_NERR|LPS_NOPAPER)
    101       1.1  augustss 
    102       1.1  augustss struct ulpt_softc {
    103      1.20  augustss 	USBBASEDEVICE sc_dev;
    104       1.1  augustss 	usbd_device_handle sc_udev;	/* device */
    105       1.1  augustss 	usbd_interface_handle sc_iface;	/* interface */
    106       1.1  augustss 	int sc_ifaceno;
    107      1.42  augustss 
    108      1.42  augustss 	int sc_out;
    109      1.42  augustss 	usbd_pipe_handle sc_out_pipe;	/* bulk out pipe */
    110      1.60  augustss 	usbd_xfer_handle sc_out_xfer;
    111      1.60  augustss 	void *sc_out_buf;
    112      1.42  augustss 
    113      1.42  augustss 	int sc_in;
    114      1.42  augustss 	usbd_pipe_handle sc_in_pipe;	/* bulk in pipe */
    115      1.60  augustss 	usbd_xfer_handle sc_in_xfer;
    116      1.60  augustss 	void *sc_in_buf;
    117      1.60  augustss 
    118      1.60  augustss 	usb_callout_t sc_read_callout;
    119      1.60  augustss 	int sc_has_callout;
    120       1.1  augustss 
    121       1.1  augustss 	u_char sc_state;
    122       1.1  augustss #define	ULPT_OPEN	0x01	/* device is open */
    123       1.1  augustss #define	ULPT_OBUSY	0x02	/* printer is busy doing output */
    124       1.1  augustss #define	ULPT_INIT	0x04	/* waiting to initialize for open */
    125       1.1  augustss 	u_char sc_flags;
    126       1.1  augustss #define	ULPT_NOPRIME	0x40	/* don't prime on open */
    127       1.1  augustss 	u_char sc_laststatus;
    128      1.12  augustss 
    129      1.12  augustss 	int sc_refcnt;
    130      1.12  augustss 	u_char sc_dying;
    131      1.27  augustss 
    132      1.27  augustss #if defined(__FreeBSD__)
    133      1.27  augustss 	dev_t dev;
    134      1.27  augustss 	dev_t dev_noprime;
    135      1.27  augustss #endif
    136       1.1  augustss };
    137       1.1  augustss 
    138      1.52   gehenna #if defined(__NetBSD__)
    139      1.52   gehenna dev_type_open(ulptopen);
    140      1.52   gehenna dev_type_close(ulptclose);
    141      1.52   gehenna dev_type_write(ulptwrite);
    142      1.60  augustss dev_type_read(ulptread);
    143      1.52   gehenna dev_type_ioctl(ulptioctl);
    144      1.52   gehenna 
    145      1.52   gehenna const struct cdevsw ulpt_cdevsw = {
    146      1.60  augustss 	ulptopen, ulptclose, ulptread, ulptwrite, ulptioctl,
    147      1.74  christos 	nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
    148      1.52   gehenna };
    149      1.52   gehenna #elif defined(__OpenBSD__)
    150      1.28  augustss cdev_decl(ulpt);
    151      1.27  augustss #elif defined(__FreeBSD__)
    152      1.34  augustss Static d_open_t ulptopen;
    153      1.34  augustss Static d_close_t ulptclose;
    154      1.34  augustss Static d_write_t ulptwrite;
    155      1.34  augustss Static d_ioctl_t ulptioctl;
    156      1.27  augustss 
    157      1.27  augustss #define ULPT_CDEV_MAJOR 113
    158      1.27  augustss 
    159      1.34  augustss Static struct cdevsw ulpt_cdevsw = {
    160      1.27  augustss 	/* open */	ulptopen,
    161      1.27  augustss 	/* close */	ulptclose,
    162      1.27  augustss 	/* read */	noread,
    163      1.27  augustss 	/* write */	ulptwrite,
    164      1.27  augustss 	/* ioctl */	ulptioctl,
    165      1.27  augustss 	/* poll */	nopoll,
    166      1.27  augustss 	/* mmap */	nommap,
    167      1.27  augustss 	/* strategy */	nostrategy,
    168      1.27  augustss 	/* name */	"ulpt",
    169      1.27  augustss 	/* maj */	ULPT_CDEV_MAJOR,
    170      1.27  augustss 	/* dump */	nodump,
    171      1.27  augustss 	/* psize */	nopsize,
    172      1.27  augustss 	/* flags */	0,
    173      1.47  augustss #if !defined(__FreeBSD__) || (__FreeBSD__ < 5)
    174      1.27  augustss 	/* bmaj */	-1
    175      1.47  augustss #endif
    176      1.27  augustss };
    177      1.27  augustss #endif
    178      1.27  augustss 
    179      1.38  augustss void ulpt_disco(void *);
    180       1.1  augustss 
    181      1.38  augustss int ulpt_do_write(struct ulpt_softc *, struct uio *uio, int);
    182      1.60  augustss int ulpt_do_read(struct ulpt_softc *, struct uio *uio, int);
    183      1.38  augustss int ulpt_status(struct ulpt_softc *);
    184      1.38  augustss void ulpt_reset(struct ulpt_softc *);
    185      1.38  augustss int ulpt_statusmsg(u_char, struct ulpt_softc *);
    186      1.60  augustss void ulpt_read_cb(usbd_xfer_handle xfer, usbd_private_handle priv,
    187      1.60  augustss 		  usbd_status status);
    188      1.60  augustss void ulpt_tick(void *xsc);
    189       1.1  augustss 
    190      1.42  augustss #if 0
    191      1.38  augustss void ieee1284_print_id(char *);
    192      1.42  augustss #endif
    193      1.16  augustss 
    194       1.1  augustss #define	ULPTUNIT(s)	(minor(s) & 0x1f)
    195       1.1  augustss #define	ULPTFLAGS(s)	(minor(s) & 0xe0)
    196       1.1  augustss 
    197      1.27  augustss 
    198       1.8  augustss USB_DECLARE_DRIVER(ulpt);
    199       1.1  augustss 
    200       1.8  augustss USB_MATCH(ulpt)
    201       1.1  augustss {
    202       1.8  augustss 	USB_MATCH_START(ulpt, uaa);
    203       1.1  augustss 	usb_interface_descriptor_t *id;
    204      1.50  augustss 
    205       1.1  augustss 	DPRINTFN(10,("ulpt_match\n"));
    206      1.28  augustss 	if (uaa->iface == NULL)
    207       1.1  augustss 		return (UMATCH_NONE);
    208       1.1  augustss 	id = usbd_get_interface_descriptor(uaa->iface);
    209      1.28  augustss 	if (id != NULL &&
    210      1.32  augustss 	    id->bInterfaceClass == UICLASS_PRINTER &&
    211      1.32  augustss 	    id->bInterfaceSubClass == UISUBCLASS_PRINTER &&
    212      1.32  augustss 	    (id->bInterfaceProtocol == UIPROTO_PRINTER_UNI ||
    213      1.43   nathanw 	     id->bInterfaceProtocol == UIPROTO_PRINTER_BI ||
    214      1.43   nathanw 	     id->bInterfaceProtocol == UIPROTO_PRINTER_1284))
    215       1.1  augustss 		return (UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO);
    216       1.1  augustss 	return (UMATCH_NONE);
    217       1.1  augustss }
    218       1.1  augustss 
    219       1.8  augustss USB_ATTACH(ulpt)
    220       1.1  augustss {
    221       1.8  augustss 	USB_ATTACH_START(ulpt, sc, uaa);
    222       1.1  augustss 	usbd_device_handle dev = uaa->device;
    223       1.1  augustss 	usbd_interface_handle iface = uaa->iface;
    224      1.42  augustss 	usb_interface_descriptor_t *ifcd = usbd_get_interface_descriptor(iface);
    225      1.69  christos 	const usb_interface_descriptor_t *id;
    226      1.42  augustss 	usbd_status err;
    227      1.67  augustss 	char *devinfop;
    228       1.1  augustss 	usb_endpoint_descriptor_t *ed;
    229      1.42  augustss 	u_int8_t epcount;
    230      1.42  augustss 	int i, altno;
    231      1.65  augustss 	usbd_desc_iter_t iter;
    232      1.50  augustss 
    233       1.8  augustss 	DPRINTFN(10,("ulpt_attach: sc=%p\n", sc));
    234      1.67  augustss 
    235      1.67  augustss 	devinfop = usbd_devinfo_alloc(dev, 0);
    236       1.8  augustss 	USB_ATTACH_SETUP;
    237       1.8  augustss 	printf("%s: %s, iclass %d/%d\n", USBDEVNAME(sc->sc_dev),
    238      1.67  augustss 	       devinfop, ifcd->bInterfaceClass, ifcd->bInterfaceSubClass);
    239      1.67  augustss 	usbd_devinfo_free(devinfop);
    240       1.1  augustss 
    241      1.65  augustss 	/* Loop through descriptors looking for a bidir mode. */
    242      1.65  augustss 	usb_desc_iter_init(dev, &iter);
    243      1.65  augustss 	for (altno = 0;;) {
    244      1.69  christos 		id = (const usb_interface_descriptor_t *)usb_desc_iter_next(&iter);
    245      1.65  augustss 		if (!id)
    246      1.65  augustss 			break;
    247      1.42  augustss 		if (id->bDescriptorType == UDESC_INTERFACE &&
    248      1.42  augustss 		    id->bInterfaceNumber == ifcd->bInterfaceNumber) {
    249      1.42  augustss 			if (id->bInterfaceClass == UICLASS_PRINTER &&
    250      1.42  augustss 			    id->bInterfaceSubClass == UISUBCLASS_PRINTER &&
    251      1.56  augustss 			    (id->bInterfaceProtocol == UIPROTO_PRINTER_BI /*||
    252      1.56  augustss 			     id->bInterfaceProtocol == UIPROTO_PRINTER_1284*/))
    253      1.42  augustss 				goto found;
    254      1.42  augustss 			altno++;
    255      1.66     perry 		}
    256      1.42  augustss 	}
    257      1.42  augustss 	id = ifcd;		/* not found, use original */
    258      1.42  augustss  found:
    259      1.42  augustss 	if (id != ifcd) {
    260      1.42  augustss 		/* Found a new bidir setting */
    261      1.42  augustss 		DPRINTF(("ulpt_attach: set altno = %d\n", altno));
    262      1.42  augustss 		err = usbd_set_interface(iface, altno);
    263      1.42  augustss 		if (err) {
    264      1.42  augustss 			printf("%s: setting alternate interface failed\n",
    265      1.42  augustss 			       USBDEVNAME(sc->sc_dev));
    266      1.42  augustss 			sc->sc_dying = 1;
    267      1.42  augustss 			USB_ATTACH_ERROR_RETURN;
    268      1.42  augustss 		}
    269       1.1  augustss 	}
    270       1.1  augustss 
    271      1.42  augustss 	epcount = 0;
    272      1.42  augustss 	(void)usbd_endpoint_count(iface, &epcount);
    273      1.42  augustss 
    274      1.42  augustss 	sc->sc_in = -1;
    275      1.42  augustss 	sc->sc_out = -1;
    276      1.42  augustss 	for (i = 0; i < epcount; i++) {
    277      1.42  augustss 		ed = usbd_interface2endpoint_descriptor(iface, i);
    278      1.42  augustss 		if (ed == NULL) {
    279      1.42  augustss 			printf("%s: couldn't get ep %d\n",
    280      1.42  augustss 			    USBDEVNAME(sc->sc_dev), i);
    281      1.42  augustss 			USB_ATTACH_ERROR_RETURN;
    282      1.42  augustss 		}
    283      1.42  augustss 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    284      1.42  augustss 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    285      1.42  augustss 			sc->sc_in = ed->bEndpointAddress;
    286      1.42  augustss 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    287      1.42  augustss 			   UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    288      1.42  augustss 			sc->sc_out = ed->bEndpointAddress;
    289      1.42  augustss 		}
    290      1.42  augustss 	}
    291      1.42  augustss 	if (sc->sc_out == -1) {
    292      1.51  augustss 		printf("%s: could not find bulk out endpoint\n",
    293      1.42  augustss 		    USBDEVNAME(sc->sc_dev));
    294      1.12  augustss 		sc->sc_dying = 1;
    295       1.8  augustss 		USB_ATTACH_ERROR_RETURN;
    296      1.12  augustss 	}
    297      1.42  augustss 
    298      1.42  augustss 	if (usbd_get_quirks(dev)->uq_flags & UQ_BROKEN_BIDIR) {
    299      1.42  augustss 		/* This device doesn't handle reading properly. */
    300      1.42  augustss 		sc->sc_in = -1;
    301      1.42  augustss 	}
    302      1.51  augustss 
    303      1.51  augustss 	printf("%s: using %s-directional mode\n", USBDEVNAME(sc->sc_dev),
    304      1.51  augustss 	       sc->sc_in >= 0 ? "bi" : "uni");
    305      1.42  augustss 
    306      1.42  augustss 	DPRINTFN(10, ("ulpt_attach: bulk=%d\n", sc->sc_out));
    307      1.42  augustss 
    308      1.42  augustss 	sc->sc_iface = iface;
    309       1.1  augustss 	sc->sc_ifaceno = id->bInterfaceNumber;
    310      1.42  augustss 	sc->sc_udev = dev;
    311       1.1  augustss 
    312      1.22  augustss #if 0
    313      1.22  augustss /*
    314      1.36  augustss  * This code is disabled because for some mysterious reason it causes
    315      1.22  augustss  * printing not to work.  But only sometimes, and mostly with
    316      1.22  augustss  * UHCI and less often with OHCI.  *sigh*
    317      1.22  augustss  */
    318      1.22  augustss 	{
    319      1.22  augustss 	usb_config_descriptor_t *cd = usbd_get_config_descriptor(dev);
    320      1.22  augustss 	usb_device_request_t req;
    321      1.22  augustss 	int len, alen;
    322      1.22  augustss 
    323       1.1  augustss 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    324       1.1  augustss 	req.bRequest = UR_GET_DEVICE_ID;
    325       1.1  augustss 	USETW(req.wValue, cd->bConfigurationValue);
    326       1.1  augustss 	USETW2(req.wIndex, id->bInterfaceNumber, id->bAlternateSetting);
    327      1.68     soren 	USETW(req.wLength, DEVINFOSIZE - 1);
    328      1.68     soren 	err = usbd_do_request_flags(dev, &req, devinfop, USBD_SHORT_XFER_OK,
    329      1.48  augustss 		  &alen, USBD_DEFAULT_TIMEOUT);
    330      1.28  augustss 	if (err) {
    331      1.16  augustss 		printf("%s: cannot get device id\n", USBDEVNAME(sc->sc_dev));
    332      1.16  augustss 	} else if (alen <= 2) {
    333      1.16  augustss 		printf("%s: empty device id, no printer connected?\n",
    334      1.16  augustss 		       USBDEVNAME(sc->sc_dev));
    335      1.16  augustss 	} else {
    336      1.68     soren 		/* devinfop now contains an IEEE-1284 device ID */
    337      1.68     soren 		len = ((devinfop[0] & 0xff) << 8) | (devinfop[1] & 0xff);
    338      1.68     soren 		if (len > DEVINFOSIZE - 3)
    339      1.68     soren 			len = DEVINFOSIZE - 3;
    340      1.68     soren 		devinfop[len] = 0;
    341      1.16  augustss 		printf("%s: device id <", USBDEVNAME(sc->sc_dev));
    342      1.68     soren 		ieee1284_print_id(devinfop+2);
    343      1.16  augustss 		printf(">\n");
    344       1.1  augustss 	}
    345      1.22  augustss 	}
    346      1.22  augustss #endif
    347       1.1  augustss 
    348      1.27  augustss #if defined(__FreeBSD__)
    349      1.27  augustss 	sc->dev = make_dev(&ulpt_cdevsw, device_get_unit(self),
    350      1.27  augustss 		UID_ROOT, GID_OPERATOR, 0644, "ulpt%d", device_get_unit(self));
    351      1.27  augustss 	sc->dev_noprime = make_dev(&ulpt_cdevsw,
    352      1.27  augustss 		device_get_unit(self)|ULPT_NOPRIME,
    353      1.27  augustss 		UID_ROOT, GID_OPERATOR, 0644, "unlpt%d", device_get_unit(self));
    354      1.27  augustss #endif
    355      1.27  augustss 
    356      1.31  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
    357      1.31  augustss 			   USBDEV(sc->sc_dev));
    358      1.31  augustss 
    359       1.8  augustss 	USB_ATTACH_SUCCESS_RETURN;
    360       1.1  augustss }
    361       1.1  augustss 
    362      1.27  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
    363       1.1  augustss int
    364      1.38  augustss ulpt_activate(device_ptr_t self, enum devact act)
    365      1.12  augustss {
    366      1.17  augustss 	struct ulpt_softc *sc = (struct ulpt_softc *)self;
    367      1.17  augustss 
    368      1.17  augustss 	switch (act) {
    369      1.17  augustss 	case DVACT_ACTIVATE:
    370      1.17  augustss 		return (EOPNOTSUPP);
    371      1.17  augustss 
    372      1.17  augustss 	case DVACT_DEACTIVATE:
    373      1.17  augustss 		sc->sc_dying = 1;
    374      1.17  augustss 		break;
    375      1.17  augustss 	}
    376      1.12  augustss 	return (0);
    377      1.12  augustss }
    378      1.27  augustss #endif
    379      1.12  augustss 
    380      1.27  augustss USB_DETACH(ulpt)
    381      1.12  augustss {
    382      1.27  augustss 	USB_DETACH_START(ulpt, sc);
    383      1.27  augustss 	int s;
    384      1.27  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
    385      1.12  augustss 	int maj, mn;
    386      1.47  augustss #elif defined(__FreeBSD__)
    387      1.47  augustss 	struct vnode *vp;
    388      1.47  augustss #endif
    389      1.12  augustss 
    390      1.27  augustss 	DPRINTF(("ulpt_detach: sc=%p\n", sc));
    391      1.12  augustss 
    392      1.12  augustss 	sc->sc_dying = 1;
    393      1.42  augustss 	if (sc->sc_out_pipe != NULL)
    394      1.42  augustss 		usbd_abort_pipe(sc->sc_out_pipe);
    395      1.42  augustss 	if (sc->sc_in_pipe != NULL)
    396      1.42  augustss 		usbd_abort_pipe(sc->sc_in_pipe);
    397      1.12  augustss 
    398      1.12  augustss 	s = splusb();
    399      1.12  augustss 	if (--sc->sc_refcnt >= 0) {
    400      1.12  augustss 		/* There is noone to wake, aborting the pipe is enough */
    401      1.12  augustss 		/* Wait for processes to go away. */
    402      1.20  augustss 		usb_detach_wait(USBDEV(sc->sc_dev));
    403      1.12  augustss 	}
    404      1.12  augustss 	splx(s);
    405      1.12  augustss 
    406      1.27  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
    407      1.12  augustss 	/* locate the major number */
    408      1.52   gehenna #if defined(__NetBSD__)
    409      1.52   gehenna 	maj = cdevsw_lookup_major(&ulpt_cdevsw);
    410      1.52   gehenna #elif defined(__OpenBSD__)
    411      1.12  augustss 	for (maj = 0; maj < nchrdev; maj++)
    412      1.12  augustss 		if (cdevsw[maj].d_open == ulptopen)
    413      1.12  augustss 			break;
    414      1.52   gehenna #endif
    415      1.12  augustss 
    416      1.12  augustss 	/* Nuke the vnodes for any open instances (calls close). */
    417      1.72   thorpej 	mn = device_unit(self);
    418      1.12  augustss 	vdevgone(maj, mn, mn, VCHR);
    419      1.57       scw 	vdevgone(maj, mn | ULPT_NOPRIME , mn | ULPT_NOPRIME, VCHR);
    420      1.27  augustss #elif defined(__FreeBSD__)
    421      1.47  augustss 	vp = SLIST_FIRST(&sc->dev->si_hlist);
    422      1.47  augustss 	if (vp)
    423      1.47  augustss 		VOP_REVOKE(vp, REVOKEALL);
    424      1.47  augustss 	vp = SLIST_FIRST(&sc->dev_noprime->si_hlist);
    425      1.47  augustss 	if (vp)
    426      1.47  augustss 		VOP_REVOKE(vp, REVOKEALL);
    427      1.27  augustss 
    428      1.30  augustss 	destroy_dev(sc->dev);
    429      1.30  augustss 	destroy_dev(sc->dev_noprime);
    430      1.27  augustss #endif
    431      1.31  augustss 
    432      1.31  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
    433      1.31  augustss 			   USBDEV(sc->sc_dev));
    434      1.12  augustss 
    435      1.12  augustss 	return (0);
    436      1.12  augustss }
    437      1.12  augustss 
    438      1.12  augustss int
    439      1.38  augustss ulpt_status(struct ulpt_softc *sc)
    440       1.1  augustss {
    441       1.1  augustss 	usb_device_request_t req;
    442      1.28  augustss 	usbd_status err;
    443       1.1  augustss 	u_char status;
    444       1.1  augustss 
    445       1.1  augustss 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    446       1.1  augustss 	req.bRequest = UR_GET_PORT_STATUS;
    447       1.1  augustss 	USETW(req.wValue, 0);
    448       1.1  augustss 	USETW(req.wIndex, sc->sc_ifaceno);
    449       1.1  augustss 	USETW(req.wLength, 1);
    450      1.28  augustss 	err = usbd_do_request(sc->sc_udev, &req, &status);
    451      1.30  augustss 	DPRINTFN(1, ("ulpt_status: status=0x%02x err=%d\n", status, err));
    452      1.28  augustss 	if (!err)
    453       1.1  augustss 		return (status);
    454       1.1  augustss 	else
    455       1.1  augustss 		return (0);
    456       1.1  augustss }
    457       1.1  augustss 
    458       1.1  augustss void
    459      1.38  augustss ulpt_reset(struct ulpt_softc *sc)
    460       1.1  augustss {
    461       1.1  augustss 	usb_device_request_t req;
    462       1.1  augustss 
    463       1.1  augustss 	DPRINTFN(1, ("ulpt_reset\n"));
    464       1.1  augustss 	req.bRequest = UR_SOFT_RESET;
    465       1.1  augustss 	USETW(req.wValue, 0);
    466       1.1  augustss 	USETW(req.wIndex, sc->sc_ifaceno);
    467       1.1  augustss 	USETW(req.wLength, 0);
    468      1.41  augustss 
    469      1.41  augustss 	/*
    470      1.41  augustss 	 * There was a mistake in the USB printer 1.0 spec that gave the
    471      1.42  augustss 	 * request type as UT_WRITE_CLASS_OTHER; it should have been
    472      1.41  augustss 	 * UT_WRITE_CLASS_INTERFACE.  Many printers use the old one,
    473      1.41  augustss 	 * so we try both.
    474      1.41  augustss 	 */
    475      1.49  augustss 	req.bmRequestType = UT_WRITE_CLASS_OTHER;
    476      1.42  augustss 	if (usbd_do_request(sc->sc_udev, &req, 0)) {	/* 1.0 */
    477      1.41  augustss 		req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
    478      1.42  augustss 		(void)usbd_do_request(sc->sc_udev, &req, 0); /* 1.1 */
    479      1.41  augustss 	}
    480       1.1  augustss }
    481       1.1  augustss 
    482      1.60  augustss #if 0
    483      1.42  augustss static void
    484      1.42  augustss ulpt_input(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
    485      1.42  augustss {
    486      1.42  augustss 	struct ulpt_softc *sc = priv;
    487      1.42  augustss 
    488      1.42  augustss 	DPRINTFN(2,("ulpt_input: got some data\n"));
    489      1.42  augustss 	/* Do it again. */
    490      1.42  augustss 	if (xfer == sc->sc_in_xfer1)
    491      1.42  augustss 		usbd_transfer(sc->sc_in_xfer2);
    492      1.42  augustss 	else
    493      1.42  augustss 		usbd_transfer(sc->sc_in_xfer1);
    494      1.42  augustss }
    495      1.60  augustss #endif
    496      1.42  augustss 
    497      1.42  augustss int ulptusein = 1;
    498      1.42  augustss 
    499       1.1  augustss /*
    500       1.1  augustss  * Reset the printer, then wait until it's selected and not busy.
    501       1.1  augustss  */
    502       1.1  augustss int
    503  1.74.4.1      yamt ulptopen(dev_t dev, int flag, int mode __unused, struct lwp *l __unused)
    504       1.1  augustss {
    505       1.1  augustss 	u_char flags = ULPTFLAGS(dev);
    506      1.26  augustss 	struct ulpt_softc *sc;
    507      1.28  augustss 	usbd_status err;
    508       1.1  augustss 	int spin, error;
    509      1.26  augustss 
    510       1.8  augustss 	USB_GET_SC_OPEN(ulpt, ULPTUNIT(dev), sc);
    511       1.1  augustss 
    512      1.30  augustss 	if (sc == NULL || sc->sc_iface == NULL || sc->sc_dying)
    513      1.13  augustss 		return (ENXIO);
    514       1.1  augustss 
    515       1.1  augustss 	if (sc->sc_state)
    516      1.13  augustss 		return (EBUSY);
    517       1.1  augustss 
    518       1.1  augustss 	sc->sc_state = ULPT_INIT;
    519       1.1  augustss 	sc->sc_flags = flags;
    520       1.1  augustss 	DPRINTF(("ulptopen: flags=0x%x\n", (unsigned)flags));
    521       1.1  augustss 
    522      1.27  augustss #if defined(ULPT_DEBUG) && defined(__FreeBSD__)
    523      1.27  augustss 	/* Ignoring these flags might not be a good idea */
    524      1.27  augustss 	if ((flags & ~ULPT_NOPRIME) != 0)
    525      1.27  augustss 		printf("ulptopen: flags ignored: %b\n", flags,
    526      1.27  augustss 			"\20\3POS_INIT\4POS_ACK\6PRIME_OPEN\7AUTOLF\10BYPASS");
    527      1.27  augustss #endif
    528      1.27  augustss 
    529      1.27  augustss 
    530      1.39  augustss 	error = 0;
    531      1.39  augustss 	sc->sc_refcnt++;
    532      1.39  augustss 
    533      1.64   mycroft #if 0 /* XXX causes some printers to disconnect */
    534       1.1  augustss 	if ((flags & ULPT_NOPRIME) == 0)
    535       1.1  augustss 		ulpt_reset(sc);
    536      1.64   mycroft #endif
    537       1.1  augustss 
    538       1.1  augustss 	for (spin = 0; (ulpt_status(sc) & LPS_SELECT) == 0; spin += STEP) {
    539      1.42  augustss 		DPRINTF(("ulpt_open: waiting a while\n"));
    540       1.1  augustss 		if (spin >= TIMEOUT) {
    541      1.39  augustss 			error = EBUSY;
    542       1.1  augustss 			sc->sc_state = 0;
    543      1.39  augustss 			goto done;
    544       1.1  augustss 		}
    545       1.1  augustss 
    546       1.1  augustss 		/* wait 1/4 second, give up if we get a signal */
    547       1.1  augustss 		error = tsleep((caddr_t)sc, LPTPRI | PCATCH, "ulptop", STEP);
    548       1.1  augustss 		if (error != EWOULDBLOCK) {
    549       1.1  augustss 			sc->sc_state = 0;
    550      1.39  augustss 			goto done;
    551      1.39  augustss 		}
    552      1.39  augustss 
    553      1.39  augustss 		if (sc->sc_dying) {
    554      1.39  augustss 			error = ENXIO;
    555      1.39  augustss 			sc->sc_state = 0;
    556      1.39  augustss 			goto done;
    557       1.1  augustss 		}
    558       1.1  augustss 	}
    559       1.1  augustss 
    560      1.42  augustss 	err = usbd_open_pipe(sc->sc_iface, sc->sc_out, 0, &sc->sc_out_pipe);
    561      1.28  augustss 	if (err) {
    562      1.39  augustss 		error = EIO;
    563      1.60  augustss 		goto err0;
    564      1.60  augustss 	}
    565      1.60  augustss 	sc->sc_out_xfer = usbd_alloc_xfer(sc->sc_udev);
    566      1.60  augustss 	if (sc->sc_out_xfer == NULL) {
    567      1.60  augustss 		error = ENOMEM;
    568      1.60  augustss 		goto err1;
    569      1.60  augustss 	}
    570      1.60  augustss 	sc->sc_out_buf = usbd_alloc_buffer(sc->sc_out_xfer, ULPT_BSIZE);
    571      1.60  augustss 	if (sc->sc_out_buf == NULL) {
    572      1.60  augustss 		error = ENOMEM;
    573      1.60  augustss 		goto err2;
    574       1.1  augustss 	}
    575      1.60  augustss 
    576      1.42  augustss 	if (ulptusein && sc->sc_in != -1) {
    577      1.42  augustss 		DPRINTF(("ulpt_open: open input pipe\n"));
    578      1.42  augustss 		err = usbd_open_pipe(sc->sc_iface, sc->sc_in,0,&sc->sc_in_pipe);
    579      1.42  augustss 		if (err) {
    580      1.42  augustss 			error = EIO;
    581      1.60  augustss 			goto err2;
    582      1.60  augustss 		}
    583      1.60  augustss 		sc->sc_in_xfer = usbd_alloc_xfer(sc->sc_udev);
    584      1.60  augustss 		if (sc->sc_in_xfer == NULL) {
    585      1.60  augustss 			error = ENOMEM;
    586      1.60  augustss 			goto err3;
    587      1.42  augustss 		}
    588      1.60  augustss 		sc->sc_in_buf = usbd_alloc_buffer(sc->sc_in_xfer, ULPT_BSIZE);
    589      1.60  augustss 		if (sc->sc_in_buf == NULL) {
    590      1.42  augustss 			error = ENOMEM;
    591      1.60  augustss 			goto err4;
    592      1.60  augustss 		}
    593      1.60  augustss 
    594      1.68     soren 		/* If it's not opened for read then set up a reader. */
    595      1.70    rpaulo 		if (!(flag & FREAD)) {
    596      1.60  augustss 			DPRINTF(("ulpt_open: start read callout\n"));
    597      1.60  augustss 			usb_callout_init(sc->sc_read_callout);
    598      1.60  augustss 			usb_callout(sc->sc_read_callout, hz/5, ulpt_tick, sc);
    599      1.60  augustss 			sc->sc_has_callout = 1;
    600      1.42  augustss 		}
    601      1.42  augustss 	}
    602       1.1  augustss 
    603       1.1  augustss 	sc->sc_state = ULPT_OPEN;
    604      1.60  augustss 	goto done;
    605      1.60  augustss 
    606      1.60  augustss  err4:
    607      1.60  augustss 	usbd_free_xfer(sc->sc_in_xfer);
    608      1.60  augustss 	sc->sc_in_xfer = NULL;
    609      1.60  augustss  err3:
    610      1.60  augustss 	usbd_close_pipe(sc->sc_in_pipe);
    611      1.60  augustss 	sc->sc_in_pipe = NULL;
    612      1.60  augustss  err2:
    613      1.60  augustss 	usbd_free_xfer(sc->sc_out_xfer);
    614      1.60  augustss 	sc->sc_out_xfer = NULL;
    615      1.60  augustss  err1:
    616      1.60  augustss 	usbd_close_pipe(sc->sc_out_pipe);
    617      1.60  augustss 	sc->sc_out_pipe = NULL;
    618      1.60  augustss  err0:
    619      1.60  augustss 	sc->sc_state = 0;
    620       1.1  augustss 
    621      1.39  augustss  done:
    622      1.39  augustss 	if (--sc->sc_refcnt < 0)
    623      1.39  augustss 		usb_detach_wakeup(USBDEV(sc->sc_dev));
    624      1.39  augustss 
    625      1.39  augustss 	DPRINTF(("ulptopen: done, error=%d\n", error));
    626      1.39  augustss 	return (error);
    627       1.1  augustss }
    628       1.1  augustss 
    629       1.1  augustss int
    630      1.38  augustss ulpt_statusmsg(u_char status, struct ulpt_softc *sc)
    631       1.1  augustss {
    632       1.1  augustss 	u_char new;
    633       1.1  augustss 
    634       1.1  augustss 	status = (status ^ LPS_INVERT) & LPS_MASK;
    635       1.1  augustss 	new = status & ~sc->sc_laststatus;
    636       1.1  augustss 	sc->sc_laststatus = status;
    637       1.1  augustss 
    638       1.1  augustss 	if (new & LPS_SELECT)
    639       1.8  augustss 		log(LOG_NOTICE, "%s: offline\n", USBDEVNAME(sc->sc_dev));
    640       1.1  augustss 	else if (new & LPS_NOPAPER)
    641       1.8  augustss 		log(LOG_NOTICE, "%s: out of paper\n", USBDEVNAME(sc->sc_dev));
    642       1.1  augustss 	else if (new & LPS_NERR)
    643       1.8  augustss 		log(LOG_NOTICE, "%s: output error\n", USBDEVNAME(sc->sc_dev));
    644       1.1  augustss 
    645      1.13  augustss 	return (status);
    646       1.1  augustss }
    647       1.1  augustss 
    648       1.1  augustss int
    649  1.74.4.1      yamt ulptclose(dev_t dev, int flag __unused, int mode __unused,
    650  1.74.4.1      yamt     struct lwp *l __unused)
    651       1.1  augustss {
    652      1.26  augustss 	struct ulpt_softc *sc;
    653      1.26  augustss 
    654       1.8  augustss 	USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
    655      1.13  augustss 
    656      1.13  augustss 	if (sc->sc_state != ULPT_OPEN)
    657      1.13  augustss 		/* We are being forced to close before the open completed. */
    658      1.13  augustss 		return (0);
    659       1.1  augustss 
    660      1.60  augustss 	if (sc->sc_has_callout) {
    661      1.60  augustss 		usb_uncallout(sc->sc_read_callout, ulpt_tick, sc);
    662      1.60  augustss 		sc->sc_has_callout = 0;
    663      1.60  augustss 	}
    664      1.60  augustss 
    665      1.42  augustss 	if (sc->sc_out_pipe != NULL) {
    666      1.60  augustss 		usbd_abort_pipe(sc->sc_out_pipe);
    667      1.42  augustss 		usbd_close_pipe(sc->sc_out_pipe);
    668      1.42  augustss 		sc->sc_out_pipe = NULL;
    669      1.42  augustss 	}
    670      1.60  augustss 	if (sc->sc_out_xfer != NULL) {
    671      1.60  augustss 		usbd_free_xfer(sc->sc_out_xfer);
    672      1.60  augustss 		sc->sc_out_xfer = NULL;
    673      1.60  augustss 	}
    674      1.66     perry 
    675      1.42  augustss 	if (sc->sc_in_pipe != NULL) {
    676      1.42  augustss 		usbd_abort_pipe(sc->sc_in_pipe);
    677      1.42  augustss 		usbd_close_pipe(sc->sc_in_pipe);
    678      1.42  augustss 		sc->sc_in_pipe = NULL;
    679      1.60  augustss 	}
    680      1.60  augustss 	if (sc->sc_in_xfer != NULL) {
    681      1.60  augustss 		usbd_free_xfer(sc->sc_in_xfer);
    682      1.60  augustss 		sc->sc_in_xfer = NULL;
    683      1.42  augustss 	}
    684       1.1  augustss 
    685       1.1  augustss 	sc->sc_state = 0;
    686       1.1  augustss 
    687       1.1  augustss 	DPRINTF(("ulptclose: closed\n"));
    688       1.1  augustss 	return (0);
    689       1.1  augustss }
    690       1.1  augustss 
    691       1.1  augustss int
    692  1.74.4.1      yamt ulpt_do_write(struct ulpt_softc *sc, struct uio *uio, int flags __unused)
    693       1.1  augustss {
    694      1.15  augustss 	u_int32_t n;
    695       1.1  augustss 	int error = 0;
    696      1.23  augustss 	void *bufp;
    697      1.28  augustss 	usbd_xfer_handle xfer;
    698      1.28  augustss 	usbd_status err;
    699       1.1  augustss 
    700       1.1  augustss 	DPRINTF(("ulptwrite\n"));
    701      1.60  augustss 	xfer = sc->sc_out_xfer;
    702      1.60  augustss 	bufp = sc->sc_out_buf;
    703       1.1  augustss 	while ((n = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
    704       1.1  augustss 		ulpt_statusmsg(ulpt_status(sc), sc);
    705      1.23  augustss 		error = uiomove(bufp, n, uio);
    706       1.6  augustss 		if (error)
    707       1.6  augustss 			break;
    708       1.1  augustss 		DPRINTFN(1, ("ulptwrite: transfer %d bytes\n", n));
    709      1.50  augustss 		err = usbd_bulk_transfer(xfer, sc->sc_out_pipe, USBD_NO_COPY,
    710      1.28  augustss 			  USBD_NO_TIMEOUT, bufp, &n, "ulptwr");
    711      1.28  augustss 		if (err) {
    712      1.28  augustss 			DPRINTF(("ulptwrite: error=%d\n", err));
    713       1.1  augustss 			error = EIO;
    714       1.1  augustss 			break;
    715       1.1  augustss 		}
    716       1.1  augustss 	}
    717      1.12  augustss 
    718      1.12  augustss 	return (error);
    719      1.12  augustss }
    720      1.12  augustss 
    721      1.12  augustss int
    722      1.38  augustss ulptwrite(dev_t dev, struct uio *uio, int flags)
    723      1.12  augustss {
    724      1.26  augustss 	struct ulpt_softc *sc;
    725      1.26  augustss 	int error;
    726      1.26  augustss 
    727      1.12  augustss 	USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
    728      1.21  augustss 
    729      1.21  augustss 	if (sc->sc_dying)
    730      1.21  augustss 		return (EIO);
    731      1.12  augustss 
    732      1.12  augustss 	sc->sc_refcnt++;
    733      1.12  augustss 	error = ulpt_do_write(sc, uio, flags);
    734      1.12  augustss 	if (--sc->sc_refcnt < 0)
    735      1.20  augustss 		usb_detach_wakeup(USBDEV(sc->sc_dev));
    736       1.1  augustss 	return (error);
    737       1.1  augustss }
    738       1.1  augustss 
    739       1.1  augustss int
    740  1.74.4.1      yamt ulpt_do_read(struct ulpt_softc *sc, struct uio *uio, int flags __unused)
    741      1.60  augustss {
    742      1.60  augustss 	u_int32_t n, on;
    743      1.60  augustss 	int error = 0;
    744      1.60  augustss 	void *bufp;
    745      1.60  augustss 	usbd_xfer_handle xfer;
    746      1.60  augustss 	usbd_status err;
    747      1.60  augustss 
    748      1.60  augustss 	DPRINTF(("ulptread\n"));
    749      1.60  augustss 
    750      1.60  augustss 	if (sc->sc_in_pipe == NULL)
    751      1.60  augustss 		return 0;
    752      1.60  augustss 
    753      1.60  augustss 	xfer = sc->sc_in_xfer;
    754      1.60  augustss 	bufp = sc->sc_in_buf;
    755      1.60  augustss 	while ((n = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
    756      1.60  augustss 		DPRINTFN(1, ("ulptread: transfer %d bytes\n", n));
    757      1.60  augustss 		on = n;
    758      1.60  augustss 		err = usbd_bulk_transfer(xfer, sc->sc_in_pipe,
    759      1.60  augustss 			  USBD_NO_COPY | USBD_SHORT_XFER_OK,
    760      1.60  augustss 			  USBD_NO_TIMEOUT, bufp, &n, "ulptrd");
    761      1.60  augustss 		if (err) {
    762      1.60  augustss 			DPRINTF(("ulptread: error=%d\n", err));
    763      1.60  augustss 			error = EIO;
    764      1.60  augustss 			break;
    765      1.60  augustss 		}
    766      1.60  augustss 		error = uiomove(bufp, n, uio);
    767      1.60  augustss 		if (error)
    768      1.60  augustss 			break;
    769      1.60  augustss 		if (on != n)
    770      1.60  augustss 			break;
    771      1.60  augustss 	}
    772      1.60  augustss 
    773      1.60  augustss 	return (error);
    774      1.60  augustss }
    775      1.60  augustss 
    776      1.60  augustss int
    777      1.60  augustss ulptread(dev_t dev, struct uio *uio, int flags)
    778      1.60  augustss {
    779      1.60  augustss 	struct ulpt_softc *sc;
    780      1.60  augustss 	int error;
    781      1.60  augustss 
    782      1.60  augustss 	USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
    783      1.60  augustss 
    784      1.60  augustss 	if (sc->sc_dying)
    785      1.60  augustss 		return (EIO);
    786      1.60  augustss 
    787      1.60  augustss 	sc->sc_refcnt++;
    788      1.60  augustss 	error = ulpt_do_read(sc, uio, flags);
    789      1.60  augustss 	if (--sc->sc_refcnt < 0)
    790      1.60  augustss 		usb_detach_wakeup(USBDEV(sc->sc_dev));
    791      1.60  augustss 	return (error);
    792      1.60  augustss }
    793      1.60  augustss 
    794      1.60  augustss void
    795  1.74.4.1      yamt ulpt_read_cb(usbd_xfer_handle xfer, usbd_private_handle priv __unused,
    796  1.74.4.1      yamt 	     usbd_status status __unused)
    797      1.60  augustss {
    798      1.60  augustss 	usbd_status err;
    799      1.60  augustss 	u_int32_t n;
    800      1.60  augustss 	usbd_private_handle xsc;
    801      1.60  augustss 	struct ulpt_softc *sc;
    802      1.60  augustss 
    803      1.60  augustss 	usbd_get_xfer_status(xfer, &xsc, NULL, &n, &err);
    804      1.60  augustss 	sc = xsc;
    805      1.60  augustss 
    806      1.60  augustss 	DPRINTFN(1,("ulpt_read_cb: start sc=%p, err=%d n=%d\n", sc, err, n));
    807      1.60  augustss 
    808      1.60  augustss #ifdef ULPT_DEBUG
    809      1.60  augustss 	if (!err && n > 0)
    810      1.60  augustss 		DPRINTF(("ulpt_tick: discarding %d bytes\n", n));
    811      1.60  augustss #endif
    812      1.60  augustss 	if (!err || err == USBD_TIMEOUT)
    813      1.60  augustss 		usb_callout(sc->sc_read_callout, hz / ULPT_READS_PER_SEC,
    814      1.60  augustss 			    ulpt_tick, sc);
    815      1.60  augustss }
    816      1.60  augustss 
    817      1.60  augustss void
    818      1.60  augustss ulpt_tick(void *xsc)
    819      1.60  augustss {
    820      1.60  augustss 	struct ulpt_softc *sc = xsc;
    821      1.60  augustss 	usbd_status err;
    822      1.60  augustss 
    823      1.60  augustss 	if (sc == NULL || sc->sc_dying)
    824      1.60  augustss 		return;
    825      1.60  augustss 
    826      1.60  augustss 	DPRINTFN(1,("ulpt_tick: start sc=%p\n", sc));
    827      1.60  augustss 
    828      1.60  augustss 	usbd_setup_xfer(sc->sc_in_xfer, sc->sc_in_pipe, sc, sc->sc_in_buf,
    829      1.60  augustss 			ULPT_BSIZE, USBD_NO_COPY | USBD_SHORT_XFER_OK,
    830      1.60  augustss 			ULPT_READ_TIMO, ulpt_read_cb);
    831      1.60  augustss 	err = usbd_transfer(sc->sc_in_xfer);
    832      1.60  augustss 	DPRINTFN(1,("ulpt_tick: err=%d\n", err));
    833      1.60  augustss }
    834      1.60  augustss 
    835      1.60  augustss int
    836  1.74.4.1      yamt ulptioctl(dev_t dev __unused, u_long cmd __unused, caddr_t data __unused,
    837  1.74.4.1      yamt     int flag __unused, struct lwp *l __unused)
    838       1.1  augustss {
    839  1.74.4.1      yamt 	return ENODEV;
    840      1.16  augustss }
    841      1.16  augustss 
    842      1.22  augustss #if 0
    843      1.16  augustss /* XXX This does not belong here. */
    844      1.16  augustss /*
    845      1.17  augustss  * Print select parts of a IEEE 1284 device ID.
    846      1.16  augustss  */
    847      1.16  augustss void
    848      1.38  augustss ieee1284_print_id(char *str)
    849      1.16  augustss {
    850      1.16  augustss 	char *p, *q;
    851      1.16  augustss 
    852      1.16  augustss 	for (p = str-1; p; p = strchr(p, ';')) {
    853      1.16  augustss 		p++;		/* skip ';' */
    854      1.16  augustss 		if (strncmp(p, "MFG:", 4) == 0 ||
    855      1.16  augustss 		    strncmp(p, "MANUFACTURER:", 14) == 0 ||
    856      1.16  augustss 		    strncmp(p, "MDL:", 4) == 0 ||
    857      1.16  augustss 		    strncmp(p, "MODEL:", 6) == 0) {
    858      1.16  augustss 			q = strchr(p, ';');
    859      1.16  augustss 			if (q)
    860      1.16  augustss 				printf("%.*s", (int)(q - p + 1), p);
    861      1.16  augustss 		}
    862      1.16  augustss 	}
    863       1.1  augustss }
    864      1.22  augustss #endif
    865       1.8  augustss 
    866       1.8  augustss #if defined(__FreeBSD__)
    867      1.30  augustss DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass, usbd_driver_load, 0);
    868      1.60  augustss #endif
    869      1.60  augustss 
    870      1.60  augustss 
    871      1.60  augustss 
    872      1.60  augustss 
    873      1.60  augustss 
    874      1.60  augustss #if 0
    875      1.60  augustss 		usbd_setup_xfer(sc->sc_in_xfer1, sc->sc_in_pipe, sc,
    876      1.60  augustss 		    sc->sc_junk, sizeof sc->sc_junk, USBD_SHORT_XFER_OK,
    877      1.60  augustss 		    USBD_NO_TIMEOUT, ulpt_input);
    878      1.60  augustss 		usbd_setup_xfer(sc->sc_in_xfer2, sc->sc_in_pipe, sc,
    879      1.60  augustss 		    sc->sc_junk, sizeof sc->sc_junk, USBD_SHORT_XFER_OK,
    880      1.60  augustss 		    USBD_NO_TIMEOUT, ulpt_input);
    881      1.60  augustss 		usbd_transfer(sc->sc_in_xfer1); /* ignore failed start */
    882       1.8  augustss #endif
    883