Home | History | Annotate | Line # | Download | only in usb
ulpt.c revision 1.85
      1  1.85    dyoung /*	$NetBSD: ulpt.c,v 1.85 2010/11/03 22:34:24 dyoung 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  *
     21   1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     22   1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23   1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24   1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     25   1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26   1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27   1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28   1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29   1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30   1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31   1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     32  1.11  augustss  */
     33  1.11  augustss 
     34  1.11  augustss /*
     35  1.40  augustss  * Printer Class spec: http://www.usb.org/developers/data/devclass/usbprint109.PDF
     36   1.1  augustss  */
     37  1.44     lukem 
     38  1.44     lukem #include <sys/cdefs.h>
     39  1.85    dyoung __KERNEL_RCSID(0, "$NetBSD: ulpt.c,v 1.85 2010/11/03 22:34:24 dyoung Exp $");
     40  1.27  augustss 
     41   1.1  augustss #include <sys/param.h>
     42   1.1  augustss #include <sys/systm.h>
     43   1.1  augustss #include <sys/proc.h>
     44   1.1  augustss #include <sys/kernel.h>
     45  1.60  augustss #include <sys/fcntl.h>
     46  1.35  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
     47   1.8  augustss #include <sys/device.h>
     48   1.1  augustss #include <sys/ioctl.h>
     49   1.8  augustss #elif defined(__FreeBSD__)
     50   1.8  augustss #include <sys/ioccom.h>
     51   1.8  augustss #include <sys/module.h>
     52   1.8  augustss #include <sys/bus.h>
     53   1.8  augustss #endif
     54   1.1  augustss #include <sys/uio.h>
     55   1.1  augustss #include <sys/conf.h>
     56  1.12  augustss #include <sys/vnode.h>
     57   1.1  augustss #include <sys/syslog.h>
     58   1.1  augustss 
     59  1.60  augustss #include <machine/vmparam.h>	/* PAGE_SIZE */
     60  1.60  augustss 
     61   1.1  augustss #include <dev/usb/usb.h>
     62   1.1  augustss #include <dev/usb/usbdi.h>
     63   1.1  augustss #include <dev/usb/usbdi_util.h>
     64   1.1  augustss #include <dev/usb/usbdevs.h>
     65   1.1  augustss #include <dev/usb/usb_quirks.h>
     66   1.1  augustss 
     67   1.1  augustss #define	TIMEOUT		hz*16	/* wait up to 16 seconds for a ready */
     68   1.1  augustss #define	STEP		hz/4
     69   1.1  augustss 
     70   1.1  augustss #define	LPTPRI		(PZERO+8)
     71  1.60  augustss #define	ULPT_BSIZE	PAGE_SIZE
     72  1.60  augustss 
     73  1.60  augustss #define ULPT_READS_PER_SEC 5
     74  1.79       gdt /* XXX Why is 10 us a reasonable value? */
     75  1.60  augustss #define ULPT_READ_TIMO 10
     76   1.1  augustss 
     77  1.27  augustss #ifdef ULPT_DEBUG
     78  1.85    dyoung #define DPRINTFN(n,x)	if (ulptdebug>=(n)) printf x
     79   1.1  augustss int	ulptdebug = 0;
     80  1.79       gdt /*
     81  1.79       gdt  * The strategy for debug levels is:
     82  1.79       gdt  *   1: attach-time operations
     83  1.79       gdt  *   2: open/close/status/reset
     84  1.79       gdt  *   3: read/write basic
     85  1.79       gdt  *   4: read/write details
     86  1.79       gdt  *  10: left over from previous debug code
     87  1.79       gdt  */
     88   1.1  augustss #else
     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.85    dyoung 	device_t 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.85    dyoung 	struct callout sc_read_callout;	/* to drain input on write-only opens */
    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.85    dyoung int             ulpt_match(device_t, cfdata_t, void *);
    199  1.85    dyoung void            ulpt_attach(device_t, device_t, void *);
    200  1.85    dyoung int             ulpt_detach(device_t, int);
    201  1.85    dyoung int             ulpt_activate(device_t, enum devact);
    202   1.1  augustss 
    203  1.85    dyoung extern struct cfdriver ulpt_cd;
    204  1.85    dyoung 
    205  1.85    dyoung CFATTACH_DECL_NEW(ulpt, sizeof(struct ulpt_softc), ulpt_match, ulpt_attach,
    206  1.85    dyoung     ulpt_detach, ulpt_activate);
    207  1.85    dyoung 
    208  1.85    dyoung int
    209  1.85    dyoung ulpt_match(device_t parent, cfdata_t match, void *aux)
    210   1.1  augustss {
    211  1.85    dyoung 	struct usbif_attach_arg *uaa = aux;
    212  1.79       gdt 	/* XXX Print something useful, or don't. */
    213   1.1  augustss 	DPRINTFN(10,("ulpt_match\n"));
    214  1.78  drochner 
    215  1.78  drochner 	if (uaa->class == UICLASS_PRINTER &&
    216  1.78  drochner 	    uaa->subclass == UISUBCLASS_PRINTER &&
    217  1.78  drochner 	    (uaa->proto == UIPROTO_PRINTER_UNI ||
    218  1.78  drochner 	     uaa->proto == UIPROTO_PRINTER_BI ||
    219  1.78  drochner 	     uaa->proto == UIPROTO_PRINTER_1284))
    220   1.1  augustss 		return (UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO);
    221   1.1  augustss 	return (UMATCH_NONE);
    222   1.1  augustss }
    223   1.1  augustss 
    224  1.85    dyoung void
    225  1.85    dyoung ulpt_attach(device_t parent, device_t self, void *aux)
    226   1.1  augustss {
    227  1.85    dyoung 	struct ulpt_softc *sc = device_private(self);
    228  1.85    dyoung 	struct usbif_attach_arg *uaa = aux;
    229   1.1  augustss 	usbd_device_handle dev = uaa->device;
    230   1.1  augustss 	usbd_interface_handle iface = uaa->iface;
    231  1.42  augustss 	usb_interface_descriptor_t *ifcd = usbd_get_interface_descriptor(iface);
    232  1.69  christos 	const usb_interface_descriptor_t *id;
    233  1.42  augustss 	usbd_status err;
    234  1.67  augustss 	char *devinfop;
    235   1.1  augustss 	usb_endpoint_descriptor_t *ed;
    236  1.42  augustss 	u_int8_t epcount;
    237  1.42  augustss 	int i, altno;
    238  1.65  augustss 	usbd_desc_iter_t iter;
    239  1.50  augustss 
    240  1.81      cube 	sc->sc_dev = self;
    241  1.81      cube 
    242  1.83    plunky 	aprint_naive("\n");
    243  1.83    plunky 	aprint_normal("\n");
    244  1.83    plunky 
    245  1.67  augustss 	devinfop = usbd_devinfo_alloc(dev, 0);
    246  1.81      cube 	aprint_normal_dev(self, "%s, iclass %d/%d\n",
    247  1.67  augustss 	       devinfop, ifcd->bInterfaceClass, ifcd->bInterfaceSubClass);
    248  1.67  augustss 	usbd_devinfo_free(devinfop);
    249   1.1  augustss 
    250  1.65  augustss 	/* Loop through descriptors looking for a bidir mode. */
    251  1.65  augustss 	usb_desc_iter_init(dev, &iter);
    252  1.65  augustss 	for (altno = 0;;) {
    253  1.69  christos 		id = (const usb_interface_descriptor_t *)usb_desc_iter_next(&iter);
    254  1.65  augustss 		if (!id)
    255  1.65  augustss 			break;
    256  1.42  augustss 		if (id->bDescriptorType == UDESC_INTERFACE &&
    257  1.42  augustss 		    id->bInterfaceNumber == ifcd->bInterfaceNumber) {
    258  1.42  augustss 			if (id->bInterfaceClass == UICLASS_PRINTER &&
    259  1.42  augustss 			    id->bInterfaceSubClass == UISUBCLASS_PRINTER &&
    260  1.56  augustss 			    (id->bInterfaceProtocol == UIPROTO_PRINTER_BI /*||
    261  1.56  augustss 			     id->bInterfaceProtocol == UIPROTO_PRINTER_1284*/))
    262  1.42  augustss 				goto found;
    263  1.42  augustss 			altno++;
    264  1.66     perry 		}
    265  1.42  augustss 	}
    266  1.42  augustss 	id = ifcd;		/* not found, use original */
    267  1.42  augustss  found:
    268  1.42  augustss 	if (id != ifcd) {
    269  1.42  augustss 		/* Found a new bidir setting */
    270  1.79       gdt 		DPRINTFN(1, ("ulpt_attach: set altno = %d\n", altno));
    271  1.42  augustss 		err = usbd_set_interface(iface, altno);
    272  1.42  augustss 		if (err) {
    273  1.81      cube 			aprint_error_dev(self,
    274  1.81      cube 			    "setting alternate interface failed\n");
    275  1.42  augustss 			sc->sc_dying = 1;
    276  1.85    dyoung 			return;
    277  1.42  augustss 		}
    278   1.1  augustss 	}
    279   1.1  augustss 
    280  1.42  augustss 	epcount = 0;
    281  1.42  augustss 	(void)usbd_endpoint_count(iface, &epcount);
    282  1.42  augustss 
    283  1.42  augustss 	sc->sc_in = -1;
    284  1.42  augustss 	sc->sc_out = -1;
    285  1.42  augustss 	for (i = 0; i < epcount; i++) {
    286  1.42  augustss 		ed = usbd_interface2endpoint_descriptor(iface, i);
    287  1.42  augustss 		if (ed == NULL) {
    288  1.81      cube 			aprint_error_dev(self, "couldn't get ep %d\n", i);
    289  1.85    dyoung 			return;
    290  1.42  augustss 		}
    291  1.42  augustss 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    292  1.42  augustss 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    293  1.42  augustss 			sc->sc_in = ed->bEndpointAddress;
    294  1.42  augustss 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    295  1.42  augustss 			   UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    296  1.42  augustss 			sc->sc_out = ed->bEndpointAddress;
    297  1.42  augustss 		}
    298  1.42  augustss 	}
    299  1.42  augustss 	if (sc->sc_out == -1) {
    300  1.81      cube 		aprint_error_dev(self, "could not find bulk out endpoint\n");
    301  1.12  augustss 		sc->sc_dying = 1;
    302  1.85    dyoung 		return;
    303  1.12  augustss 	}
    304  1.42  augustss 
    305  1.42  augustss 	if (usbd_get_quirks(dev)->uq_flags & UQ_BROKEN_BIDIR) {
    306  1.42  augustss 		/* This device doesn't handle reading properly. */
    307  1.42  augustss 		sc->sc_in = -1;
    308  1.42  augustss 	}
    309  1.51  augustss 
    310  1.81      cube 	aprint_normal_dev(self, "using %s-directional mode\n",
    311  1.51  augustss 	       sc->sc_in >= 0 ? "bi" : "uni");
    312  1.42  augustss 
    313  1.42  augustss 	sc->sc_iface = iface;
    314   1.1  augustss 	sc->sc_ifaceno = id->bInterfaceNumber;
    315  1.42  augustss 	sc->sc_udev = dev;
    316   1.1  augustss 
    317  1.22  augustss #if 0
    318  1.22  augustss /*
    319  1.36  augustss  * This code is disabled because for some mysterious reason it causes
    320  1.22  augustss  * printing not to work.  But only sometimes, and mostly with
    321  1.22  augustss  * UHCI and less often with OHCI.  *sigh*
    322  1.22  augustss  */
    323  1.22  augustss 	{
    324  1.22  augustss 	usb_config_descriptor_t *cd = usbd_get_config_descriptor(dev);
    325  1.22  augustss 	usb_device_request_t req;
    326  1.22  augustss 	int len, alen;
    327  1.22  augustss 
    328   1.1  augustss 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    329   1.1  augustss 	req.bRequest = UR_GET_DEVICE_ID;
    330   1.1  augustss 	USETW(req.wValue, cd->bConfigurationValue);
    331   1.1  augustss 	USETW2(req.wIndex, id->bInterfaceNumber, id->bAlternateSetting);
    332  1.68     soren 	USETW(req.wLength, DEVINFOSIZE - 1);
    333  1.68     soren 	err = usbd_do_request_flags(dev, &req, devinfop, USBD_SHORT_XFER_OK,
    334  1.48  augustss 		  &alen, USBD_DEFAULT_TIMEOUT);
    335  1.28  augustss 	if (err) {
    336  1.85    dyoung 		printf("%s: cannot get device id\n", device_xname(sc->sc_dev));
    337  1.16  augustss 	} else if (alen <= 2) {
    338  1.16  augustss 		printf("%s: empty device id, no printer connected?\n",
    339  1.85    dyoung 		       device_xname(sc->sc_dev));
    340  1.16  augustss 	} else {
    341  1.68     soren 		/* devinfop now contains an IEEE-1284 device ID */
    342  1.68     soren 		len = ((devinfop[0] & 0xff) << 8) | (devinfop[1] & 0xff);
    343  1.68     soren 		if (len > DEVINFOSIZE - 3)
    344  1.68     soren 			len = DEVINFOSIZE - 3;
    345  1.68     soren 		devinfop[len] = 0;
    346  1.85    dyoung 		printf("%s: device id <", device_xname(sc->sc_dev));
    347  1.68     soren 		ieee1284_print_id(devinfop+2);
    348  1.16  augustss 		printf(">\n");
    349   1.1  augustss 	}
    350  1.22  augustss 	}
    351  1.22  augustss #endif
    352   1.1  augustss 
    353  1.27  augustss #if defined(__FreeBSD__)
    354  1.27  augustss 	sc->dev = make_dev(&ulpt_cdevsw, device_get_unit(self),
    355  1.27  augustss 		UID_ROOT, GID_OPERATOR, 0644, "ulpt%d", device_get_unit(self));
    356  1.27  augustss 	sc->dev_noprime = make_dev(&ulpt_cdevsw,
    357  1.27  augustss 		device_get_unit(self)|ULPT_NOPRIME,
    358  1.27  augustss 		UID_ROOT, GID_OPERATOR, 0644, "unlpt%d", device_get_unit(self));
    359  1.27  augustss #endif
    360  1.27  augustss 
    361  1.31  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
    362  1.85    dyoung 			   sc->sc_dev);
    363  1.31  augustss 
    364  1.79       gdt 	DPRINTFN(1, ("ulpt_attach: sc=%p in=%d out=%d\n",
    365  1.79       gdt 		     sc, sc->sc_out, sc->sc_in));
    366  1.79       gdt 
    367  1.85    dyoung 	return;
    368   1.1  augustss }
    369   1.1  augustss 
    370  1.27  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
    371   1.1  augustss int
    372  1.85    dyoung ulpt_activate(device_t self, enum devact act)
    373  1.12  augustss {
    374  1.81      cube 	struct ulpt_softc *sc = device_private(self);
    375  1.17  augustss 
    376  1.17  augustss 	switch (act) {
    377  1.17  augustss 	case DVACT_DEACTIVATE:
    378  1.17  augustss 		sc->sc_dying = 1;
    379  1.84    dyoung 		return 0;
    380  1.84    dyoung 	default:
    381  1.84    dyoung 		return EOPNOTSUPP;
    382  1.17  augustss 	}
    383  1.12  augustss }
    384  1.27  augustss #endif
    385  1.12  augustss 
    386  1.85    dyoung int
    387  1.85    dyoung ulpt_detach(device_t self, int flags)
    388  1.12  augustss {
    389  1.85    dyoung 	struct ulpt_softc *sc = device_private(self);
    390  1.27  augustss 	int s;
    391  1.27  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
    392  1.12  augustss 	int maj, mn;
    393  1.47  augustss #elif defined(__FreeBSD__)
    394  1.47  augustss 	struct vnode *vp;
    395  1.47  augustss #endif
    396  1.12  augustss 
    397  1.79       gdt 	DPRINTFN(1, ("ulpt_detach: sc=%p\n", sc));
    398  1.12  augustss 
    399  1.12  augustss 	sc->sc_dying = 1;
    400  1.42  augustss 	if (sc->sc_out_pipe != NULL)
    401  1.42  augustss 		usbd_abort_pipe(sc->sc_out_pipe);
    402  1.42  augustss 	if (sc->sc_in_pipe != NULL)
    403  1.42  augustss 		usbd_abort_pipe(sc->sc_in_pipe);
    404  1.12  augustss 
    405  1.12  augustss 	s = splusb();
    406  1.12  augustss 	if (--sc->sc_refcnt >= 0) {
    407  1.12  augustss 		/* There is noone to wake, aborting the pipe is enough */
    408  1.12  augustss 		/* Wait for processes to go away. */
    409  1.85    dyoung 		usb_detach_wait(sc->sc_dev);
    410  1.12  augustss 	}
    411  1.12  augustss 	splx(s);
    412  1.12  augustss 
    413  1.27  augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
    414  1.12  augustss 	/* locate the major number */
    415  1.52   gehenna #if defined(__NetBSD__)
    416  1.52   gehenna 	maj = cdevsw_lookup_major(&ulpt_cdevsw);
    417  1.52   gehenna #elif defined(__OpenBSD__)
    418  1.12  augustss 	for (maj = 0; maj < nchrdev; maj++)
    419  1.12  augustss 		if (cdevsw[maj].d_open == ulptopen)
    420  1.12  augustss 			break;
    421  1.52   gehenna #endif
    422  1.12  augustss 
    423  1.12  augustss 	/* Nuke the vnodes for any open instances (calls close). */
    424  1.72   thorpej 	mn = device_unit(self);
    425  1.12  augustss 	vdevgone(maj, mn, mn, VCHR);
    426  1.57       scw 	vdevgone(maj, mn | ULPT_NOPRIME , mn | ULPT_NOPRIME, VCHR);
    427  1.27  augustss #elif defined(__FreeBSD__)
    428  1.47  augustss 	vp = SLIST_FIRST(&sc->dev->si_hlist);
    429  1.47  augustss 	if (vp)
    430  1.47  augustss 		VOP_REVOKE(vp, REVOKEALL);
    431  1.47  augustss 	vp = SLIST_FIRST(&sc->dev_noprime->si_hlist);
    432  1.47  augustss 	if (vp)
    433  1.47  augustss 		VOP_REVOKE(vp, REVOKEALL);
    434  1.27  augustss 
    435  1.30  augustss 	destroy_dev(sc->dev);
    436  1.30  augustss 	destroy_dev(sc->dev_noprime);
    437  1.27  augustss #endif
    438  1.31  augustss 
    439  1.31  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
    440  1.85    dyoung 			   sc->sc_dev);
    441  1.12  augustss 
    442  1.12  augustss 	return (0);
    443  1.12  augustss }
    444  1.12  augustss 
    445  1.12  augustss int
    446  1.38  augustss ulpt_status(struct ulpt_softc *sc)
    447   1.1  augustss {
    448   1.1  augustss 	usb_device_request_t req;
    449  1.28  augustss 	usbd_status err;
    450   1.1  augustss 	u_char status;
    451   1.1  augustss 
    452   1.1  augustss 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    453   1.1  augustss 	req.bRequest = UR_GET_PORT_STATUS;
    454   1.1  augustss 	USETW(req.wValue, 0);
    455   1.1  augustss 	USETW(req.wIndex, sc->sc_ifaceno);
    456   1.1  augustss 	USETW(req.wLength, 1);
    457  1.28  augustss 	err = usbd_do_request(sc->sc_udev, &req, &status);
    458  1.79       gdt 	DPRINTFN(2, ("ulpt_status: status=0x%02x err=%d\n", status, err));
    459  1.28  augustss 	if (!err)
    460   1.1  augustss 		return (status);
    461   1.1  augustss 	else
    462   1.1  augustss 		return (0);
    463   1.1  augustss }
    464   1.1  augustss 
    465   1.1  augustss void
    466  1.38  augustss ulpt_reset(struct ulpt_softc *sc)
    467   1.1  augustss {
    468   1.1  augustss 	usb_device_request_t req;
    469   1.1  augustss 
    470  1.79       gdt 	DPRINTFN(2, ("ulpt_reset\n"));
    471   1.1  augustss 	req.bRequest = UR_SOFT_RESET;
    472   1.1  augustss 	USETW(req.wValue, 0);
    473   1.1  augustss 	USETW(req.wIndex, sc->sc_ifaceno);
    474   1.1  augustss 	USETW(req.wLength, 0);
    475  1.41  augustss 
    476  1.41  augustss 	/*
    477  1.41  augustss 	 * There was a mistake in the USB printer 1.0 spec that gave the
    478  1.42  augustss 	 * request type as UT_WRITE_CLASS_OTHER; it should have been
    479  1.41  augustss 	 * UT_WRITE_CLASS_INTERFACE.  Many printers use the old one,
    480  1.41  augustss 	 * so we try both.
    481  1.41  augustss 	 */
    482  1.49  augustss 	req.bmRequestType = UT_WRITE_CLASS_OTHER;
    483  1.42  augustss 	if (usbd_do_request(sc->sc_udev, &req, 0)) {	/* 1.0 */
    484  1.41  augustss 		req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
    485  1.42  augustss 		(void)usbd_do_request(sc->sc_udev, &req, 0); /* 1.1 */
    486  1.41  augustss 	}
    487   1.1  augustss }
    488   1.1  augustss 
    489  1.42  augustss int ulptusein = 1;
    490  1.42  augustss 
    491   1.1  augustss /*
    492   1.1  augustss  * Reset the printer, then wait until it's selected and not busy.
    493   1.1  augustss  */
    494   1.1  augustss int
    495  1.76  christos ulptopen(dev_t dev, int flag, int mode, struct lwp *l)
    496   1.1  augustss {
    497   1.1  augustss 	u_char flags = ULPTFLAGS(dev);
    498  1.26  augustss 	struct ulpt_softc *sc;
    499  1.28  augustss 	usbd_status err;
    500   1.1  augustss 	int spin, error;
    501  1.26  augustss 
    502  1.85    dyoung 	sc = device_lookup_private(&ulpt_cd, ULPTUNIT(dev));
    503  1.85    dyoung 	if (sc == NULL)
    504  1.85    dyoung 		return ENXIO;
    505   1.1  augustss 
    506  1.30  augustss 	if (sc == NULL || sc->sc_iface == NULL || sc->sc_dying)
    507  1.13  augustss 		return (ENXIO);
    508   1.1  augustss 
    509   1.1  augustss 	if (sc->sc_state)
    510  1.13  augustss 		return (EBUSY);
    511   1.1  augustss 
    512   1.1  augustss 	sc->sc_state = ULPT_INIT;
    513   1.1  augustss 	sc->sc_flags = flags;
    514  1.79       gdt 	DPRINTFN(2, ("ulptopen: flags=0x%x\n", (unsigned)flags));
    515   1.1  augustss 
    516  1.27  augustss #if defined(ULPT_DEBUG) && defined(__FreeBSD__)
    517  1.27  augustss 	/* Ignoring these flags might not be a good idea */
    518  1.27  augustss 	if ((flags & ~ULPT_NOPRIME) != 0)
    519  1.27  augustss 		printf("ulptopen: flags ignored: %b\n", flags,
    520  1.27  augustss 			"\20\3POS_INIT\4POS_ACK\6PRIME_OPEN\7AUTOLF\10BYPASS");
    521  1.27  augustss #endif
    522  1.27  augustss 
    523  1.27  augustss 
    524  1.39  augustss 	error = 0;
    525  1.39  augustss 	sc->sc_refcnt++;
    526  1.39  augustss 
    527  1.64   mycroft #if 0 /* XXX causes some printers to disconnect */
    528   1.1  augustss 	if ((flags & ULPT_NOPRIME) == 0)
    529   1.1  augustss 		ulpt_reset(sc);
    530  1.64   mycroft #endif
    531   1.1  augustss 
    532   1.1  augustss 	for (spin = 0; (ulpt_status(sc) & LPS_SELECT) == 0; spin += STEP) {
    533  1.79       gdt 		DPRINTFN(2, ("ulpt_open: waiting a while\n"));
    534   1.1  augustss 		if (spin >= TIMEOUT) {
    535  1.39  augustss 			error = EBUSY;
    536   1.1  augustss 			sc->sc_state = 0;
    537  1.39  augustss 			goto done;
    538   1.1  augustss 		}
    539   1.1  augustss 
    540   1.1  augustss 		/* wait 1/4 second, give up if we get a signal */
    541  1.77  christos 		error = tsleep((void *)sc, LPTPRI | PCATCH, "ulptop", STEP);
    542   1.1  augustss 		if (error != EWOULDBLOCK) {
    543   1.1  augustss 			sc->sc_state = 0;
    544  1.39  augustss 			goto done;
    545  1.39  augustss 		}
    546  1.39  augustss 
    547  1.39  augustss 		if (sc->sc_dying) {
    548  1.39  augustss 			error = ENXIO;
    549  1.39  augustss 			sc->sc_state = 0;
    550  1.39  augustss 			goto done;
    551   1.1  augustss 		}
    552   1.1  augustss 	}
    553   1.1  augustss 
    554  1.42  augustss 	err = usbd_open_pipe(sc->sc_iface, sc->sc_out, 0, &sc->sc_out_pipe);
    555  1.28  augustss 	if (err) {
    556  1.39  augustss 		error = EIO;
    557  1.60  augustss 		goto err0;
    558  1.60  augustss 	}
    559  1.60  augustss 	sc->sc_out_xfer = usbd_alloc_xfer(sc->sc_udev);
    560  1.60  augustss 	if (sc->sc_out_xfer == NULL) {
    561  1.60  augustss 		error = ENOMEM;
    562  1.60  augustss 		goto err1;
    563  1.60  augustss 	}
    564  1.60  augustss 	sc->sc_out_buf = usbd_alloc_buffer(sc->sc_out_xfer, ULPT_BSIZE);
    565  1.60  augustss 	if (sc->sc_out_buf == NULL) {
    566  1.60  augustss 		error = ENOMEM;
    567  1.60  augustss 		goto err2;
    568   1.1  augustss 	}
    569  1.60  augustss 
    570  1.42  augustss 	if (ulptusein && sc->sc_in != -1) {
    571  1.79       gdt 		DPRINTFN(2, ("ulpt_open: opening input pipe %d\n", sc->sc_in));
    572  1.42  augustss 		err = usbd_open_pipe(sc->sc_iface, sc->sc_in,0,&sc->sc_in_pipe);
    573  1.42  augustss 		if (err) {
    574  1.42  augustss 			error = EIO;
    575  1.60  augustss 			goto err2;
    576  1.60  augustss 		}
    577  1.60  augustss 		sc->sc_in_xfer = usbd_alloc_xfer(sc->sc_udev);
    578  1.60  augustss 		if (sc->sc_in_xfer == NULL) {
    579  1.60  augustss 			error = ENOMEM;
    580  1.60  augustss 			goto err3;
    581  1.42  augustss 		}
    582  1.60  augustss 		sc->sc_in_buf = usbd_alloc_buffer(sc->sc_in_xfer, ULPT_BSIZE);
    583  1.60  augustss 		if (sc->sc_in_buf == NULL) {
    584  1.42  augustss 			error = ENOMEM;
    585  1.60  augustss 			goto err4;
    586  1.60  augustss 		}
    587  1.60  augustss 
    588  1.68     soren 		/* If it's not opened for read then set up a reader. */
    589  1.70    rpaulo 		if (!(flag & FREAD)) {
    590  1.79       gdt 			DPRINTFN(2, ("ulpt_open: start read callout\n"));
    591  1.85    dyoung 			callout_init(&sc->sc_read_callout, 0);
    592  1.85    dyoung 			callout_reset(&sc->sc_read_callout, hz/5, ulpt_tick, sc);
    593  1.60  augustss 			sc->sc_has_callout = 1;
    594  1.42  augustss 		}
    595  1.42  augustss 	}
    596   1.1  augustss 
    597   1.1  augustss 	sc->sc_state = ULPT_OPEN;
    598  1.60  augustss 	goto done;
    599  1.60  augustss 
    600  1.60  augustss  err4:
    601  1.60  augustss 	usbd_free_xfer(sc->sc_in_xfer);
    602  1.60  augustss 	sc->sc_in_xfer = NULL;
    603  1.60  augustss  err3:
    604  1.60  augustss 	usbd_close_pipe(sc->sc_in_pipe);
    605  1.60  augustss 	sc->sc_in_pipe = NULL;
    606  1.60  augustss  err2:
    607  1.60  augustss 	usbd_free_xfer(sc->sc_out_xfer);
    608  1.60  augustss 	sc->sc_out_xfer = NULL;
    609  1.60  augustss  err1:
    610  1.60  augustss 	usbd_close_pipe(sc->sc_out_pipe);
    611  1.60  augustss 	sc->sc_out_pipe = NULL;
    612  1.60  augustss  err0:
    613  1.60  augustss 	sc->sc_state = 0;
    614   1.1  augustss 
    615  1.39  augustss  done:
    616  1.39  augustss 	if (--sc->sc_refcnt < 0)
    617  1.85    dyoung 		usb_detach_wakeup(sc->sc_dev);
    618  1.39  augustss 
    619  1.79       gdt 	DPRINTFN(2, ("ulptopen: done, error=%d\n", error));
    620  1.39  augustss 	return (error);
    621   1.1  augustss }
    622   1.1  augustss 
    623  1.79       gdt /*
    624  1.79       gdt  * XXX Document return value semantics.
    625  1.79       gdt  */
    626   1.1  augustss int
    627  1.38  augustss ulpt_statusmsg(u_char status, struct ulpt_softc *sc)
    628   1.1  augustss {
    629   1.1  augustss 	u_char new;
    630   1.1  augustss 
    631   1.1  augustss 	status = (status ^ LPS_INVERT) & LPS_MASK;
    632   1.1  augustss 	new = status & ~sc->sc_laststatus;
    633   1.1  augustss 	sc->sc_laststatus = status;
    634   1.1  augustss 
    635   1.1  augustss 	if (new & LPS_SELECT)
    636  1.85    dyoung 		log(LOG_NOTICE, "%s: offline\n", device_xname(sc->sc_dev));
    637  1.79       gdt 	if (new & LPS_NOPAPER)
    638  1.85    dyoung 		log(LOG_NOTICE, "%s: out of paper\n", device_xname(sc->sc_dev));
    639  1.79       gdt 	if (new & LPS_NERR)
    640  1.85    dyoung 		log(LOG_NOTICE, "%s: output error\n", device_xname(sc->sc_dev));
    641   1.1  augustss 
    642  1.13  augustss 	return (status);
    643   1.1  augustss }
    644   1.1  augustss 
    645   1.1  augustss int
    646  1.76  christos ulptclose(dev_t dev, int flag, int mode,
    647  1.76  christos     struct lwp *l)
    648   1.1  augustss {
    649  1.26  augustss 	struct ulpt_softc *sc;
    650  1.26  augustss 
    651  1.85    dyoung 	sc = device_lookup_private(&ulpt_cd, ULPTUNIT(dev));
    652  1.13  augustss 
    653  1.13  augustss 	if (sc->sc_state != ULPT_OPEN)
    654  1.13  augustss 		/* We are being forced to close before the open completed. */
    655  1.13  augustss 		return (0);
    656   1.1  augustss 
    657  1.60  augustss 	if (sc->sc_has_callout) {
    658  1.79       gdt 		DPRINTFN(2, ("ulptclose: stopping read callout\n"));
    659  1.85    dyoung 		callout_stop(&sc->sc_read_callout);
    660  1.60  augustss 		sc->sc_has_callout = 0;
    661  1.60  augustss 	}
    662  1.60  augustss 
    663  1.42  augustss 	if (sc->sc_out_pipe != NULL) {
    664  1.60  augustss 		usbd_abort_pipe(sc->sc_out_pipe);
    665  1.42  augustss 		usbd_close_pipe(sc->sc_out_pipe);
    666  1.42  augustss 		sc->sc_out_pipe = NULL;
    667  1.42  augustss 	}
    668  1.60  augustss 	if (sc->sc_out_xfer != NULL) {
    669  1.60  augustss 		usbd_free_xfer(sc->sc_out_xfer);
    670  1.60  augustss 		sc->sc_out_xfer = NULL;
    671  1.60  augustss 	}
    672  1.66     perry 
    673  1.42  augustss 	if (sc->sc_in_pipe != NULL) {
    674  1.42  augustss 		usbd_abort_pipe(sc->sc_in_pipe);
    675  1.42  augustss 		usbd_close_pipe(sc->sc_in_pipe);
    676  1.42  augustss 		sc->sc_in_pipe = NULL;
    677  1.60  augustss 	}
    678  1.60  augustss 	if (sc->sc_in_xfer != NULL) {
    679  1.60  augustss 		usbd_free_xfer(sc->sc_in_xfer);
    680  1.60  augustss 		sc->sc_in_xfer = NULL;
    681  1.42  augustss 	}
    682   1.1  augustss 
    683   1.1  augustss 	sc->sc_state = 0;
    684   1.1  augustss 
    685  1.79       gdt 	DPRINTFN(2, ("ulptclose: closed\n"));
    686   1.1  augustss 	return (0);
    687   1.1  augustss }
    688   1.1  augustss 
    689   1.1  augustss int
    690  1.76  christos ulpt_do_write(struct ulpt_softc *sc, struct uio *uio, int flags)
    691   1.1  augustss {
    692  1.15  augustss 	u_int32_t n;
    693   1.1  augustss 	int error = 0;
    694  1.23  augustss 	void *bufp;
    695  1.28  augustss 	usbd_xfer_handle xfer;
    696  1.28  augustss 	usbd_status err;
    697   1.1  augustss 
    698  1.79       gdt 	DPRINTFN(3, ("ulptwrite\n"));
    699  1.60  augustss 	xfer = sc->sc_out_xfer;
    700  1.60  augustss 	bufp = sc->sc_out_buf;
    701   1.1  augustss 	while ((n = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
    702   1.1  augustss 		ulpt_statusmsg(ulpt_status(sc), sc);
    703  1.23  augustss 		error = uiomove(bufp, n, uio);
    704   1.6  augustss 		if (error)
    705   1.6  augustss 			break;
    706  1.79       gdt 		DPRINTFN(4, ("ulptwrite: transfer %d bytes\n", n));
    707  1.50  augustss 		err = usbd_bulk_transfer(xfer, sc->sc_out_pipe, USBD_NO_COPY,
    708  1.28  augustss 			  USBD_NO_TIMEOUT, bufp, &n, "ulptwr");
    709  1.28  augustss 		if (err) {
    710  1.79       gdt 			DPRINTFN(3, ("ulptwrite: error=%d\n", err));
    711   1.1  augustss 			error = EIO;
    712   1.1  augustss 			break;
    713   1.1  augustss 		}
    714   1.1  augustss 	}
    715  1.12  augustss 
    716  1.12  augustss 	return (error);
    717  1.12  augustss }
    718  1.12  augustss 
    719  1.12  augustss int
    720  1.38  augustss ulptwrite(dev_t dev, struct uio *uio, int flags)
    721  1.12  augustss {
    722  1.26  augustss 	struct ulpt_softc *sc;
    723  1.26  augustss 	int error;
    724  1.26  augustss 
    725  1.85    dyoung 	sc = device_lookup_private(&ulpt_cd, ULPTUNIT(dev));
    726  1.21  augustss 
    727  1.21  augustss 	if (sc->sc_dying)
    728  1.21  augustss 		return (EIO);
    729  1.12  augustss 
    730  1.12  augustss 	sc->sc_refcnt++;
    731  1.12  augustss 	error = ulpt_do_write(sc, uio, flags);
    732  1.12  augustss 	if (--sc->sc_refcnt < 0)
    733  1.85    dyoung 		usb_detach_wakeup(sc->sc_dev);
    734   1.1  augustss 	return (error);
    735   1.1  augustss }
    736   1.1  augustss 
    737  1.79       gdt /*
    738  1.79       gdt  * Perform a read operation according to the given uio.
    739  1.79       gdt  * This should respect nonblocking I/O status.
    740  1.79       gdt  *
    741  1.79       gdt  * XXX Doing a short read when more data is available seems to be
    742  1.79       gdt  * problematic.  See
    743  1.79       gdt  * http://www.freebsd.org/cgi/query-pr.cgi?pr=91538&cat= for a fix.
    744  1.79       gdt  * However, this will be unnecessary given a proper fix for the next
    745  1.79       gdt  * problem, and most actual callers read a lot.
    746  1.79       gdt  *
    747  1.79       gdt  * XXX This code should interact properly with select/poll, and that
    748  1.79       gdt  * requires the USB transactions to be queued and function before the
    749  1.79       gdt  * user does a read.  Read will then consume data from a buffer, and
    750  1.79       gdt  * not interact with the device. See ucom.c for an example of how to
    751  1.79       gdt  * do this.
    752  1.79       gdt  */
    753   1.1  augustss int
    754  1.76  christos ulpt_do_read(struct ulpt_softc *sc, struct uio *uio, int flags)
    755  1.60  augustss {
    756  1.79       gdt 	u_int32_t n, nread, nreq;
    757  1.79       gdt 	int error = 0, nonblocking, timeout;
    758  1.60  augustss 	void *bufp;
    759  1.60  augustss 	usbd_xfer_handle xfer;
    760  1.79       gdt 	usbd_status err = USBD_NORMAL_COMPLETION;
    761  1.60  augustss 
    762  1.79       gdt 	/* XXX Resolve with background reader process.  KASSERT? */
    763  1.79       gdt 	if (sc->sc_in_pipe == NULL)
    764  1.79       gdt 		return EIO;
    765  1.60  augustss 
    766  1.79       gdt 	if (flags & IO_NDELAY)
    767  1.79       gdt 		nonblocking = 1;
    768  1.79       gdt 	else
    769  1.79       gdt 		nonblocking = 0;
    770  1.79       gdt 
    771  1.79       gdt 	if (nonblocking)
    772  1.79       gdt 		timeout = USBD_DEFAULT_TIMEOUT; /* 5 ms */
    773  1.79       gdt 	else
    774  1.79       gdt 		timeout = USBD_NO_TIMEOUT;
    775  1.79       gdt 
    776  1.82    bouyer 	DPRINTFN(3, ("ulptread nonblocking=%d uio_reside=%ld timeout=%d\n",
    777  1.82    bouyer 		     nonblocking, (u_long)uio->uio_resid, timeout));
    778  1.60  augustss 
    779  1.60  augustss 	xfer = sc->sc_in_xfer;
    780  1.60  augustss 	bufp = sc->sc_in_buf;
    781  1.79       gdt 	nread = 0;
    782  1.79       gdt 	while ((nreq = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
    783  1.79       gdt 		KASSERT(error == 0);
    784  1.79       gdt 		if (error != 0) {
    785  1.79       gdt 			printf("ulptread: pre-switch error %d != 0", error);
    786  1.79       gdt 			goto done;
    787  1.79       gdt 		}
    788  1.79       gdt 
    789  1.79       gdt 		/*
    790  1.79       gdt 		 * XXX Even with the short timeout, this will tsleep,
    791  1.79       gdt 		 * but it should be adequately prompt in practice.
    792  1.79       gdt 		 */
    793  1.79       gdt 		n = nreq;
    794  1.79       gdt 		DPRINTFN(4, ("ulptread: transfer %d bytes, nonblocking=%d timeout=%d\n",
    795  1.79       gdt 			     n, nonblocking, timeout));
    796  1.60  augustss 		err = usbd_bulk_transfer(xfer, sc->sc_in_pipe,
    797  1.60  augustss 			  USBD_NO_COPY | USBD_SHORT_XFER_OK,
    798  1.79       gdt 			  timeout, bufp, &n, "ulptrd");
    799  1.79       gdt 
    800  1.79       gdt 		DPRINTFN(4, ("ulptread: transfer complete nreq %d n %d nread %d err %d\n",
    801  1.79       gdt 			     nreq, n, nread, err));
    802  1.79       gdt 		/*
    803  1.79       gdt 		 * Process "err" return, jumping to done if we set "error".
    804  1.79       gdt 		 */
    805  1.79       gdt 		switch (err) {
    806  1.79       gdt 		case USBD_NORMAL_COMPLETION:
    807  1.79       gdt 			if (n == 0) {
    808  1.79       gdt 				DPRINTFN(3, ("ulptread: NORMAL n==0\n"));
    809  1.79       gdt 			}
    810  1.79       gdt 			break;
    811  1.79       gdt 
    812  1.79       gdt 		case USBD_SHORT_XFER:
    813  1.79       gdt 			/* We said SHORT_XFER_OK, so shouldn't happen. */
    814  1.79       gdt 			DPRINTFN(3, ("ulptread: SHORT n=%d\n", n));
    815  1.79       gdt 			break;
    816  1.79       gdt 
    817  1.79       gdt 		case USBD_TIMEOUT:
    818  1.79       gdt 			if (nonblocking == 0) {
    819  1.79       gdt 				/* XXX Cannot happen; perhaps KASSERT. */
    820  1.79       gdt 				printf("ulptread: timeout in blocking mode\n");
    821  1.79       gdt 				error = EIO;
    822  1.79       gdt 				goto done;
    823  1.79       gdt 			}
    824  1.79       gdt 
    825  1.79       gdt 			DPRINTFN(3, ("ulptread: TIMEOUT n %d nread %d error %d\n",
    826  1.79       gdt 				     n, nread, error));
    827  1.79       gdt 			/*
    828  1.79       gdt 			 * Don't set error until we understand why
    829  1.79       gdt 			 * this happens.
    830  1.79       gdt 			 */
    831  1.79       gdt 			break;
    832  1.79       gdt 
    833  1.79       gdt 		case USBD_INTERRUPTED:
    834  1.79       gdt 			/*
    835  1.79       gdt 			 * The tsleep in usbd_bulk_transfer was
    836  1.79       gdt 			 * interrupted.  Reflect it to the caller so
    837  1.79       gdt 			 * that reading can be interrupted.
    838  1.79       gdt 			 */
    839  1.79       gdt 			error = EINTR;
    840  1.79       gdt 			DPRINTFN(3, ("ulptread: EINTR error %d\n", error));
    841  1.79       gdt 			goto done;
    842  1.79       gdt 			break;
    843  1.79       gdt 
    844  1.79       gdt 		default:
    845  1.79       gdt 			/* Assume all other return codes are really errors. */
    846  1.60  augustss 			error = EIO;
    847  1.79       gdt 			DPRINTFN(3, ("ulptread: n %d err %d error %d\n",
    848  1.79       gdt 				     n, err, error));
    849  1.79       gdt 			goto done;
    850  1.60  augustss 			break;
    851  1.60  augustss 		}
    852  1.79       gdt 		/* XXX KASSERT */
    853  1.79       gdt 		if (error != 0) {
    854  1.79       gdt 			printf("ulptread: post-switch error %d != 0", error);
    855  1.79       gdt 			goto done;
    856  1.79       gdt 		}
    857  1.79       gdt 
    858  1.79       gdt 		if (n > 0) {
    859  1.79       gdt 			/*
    860  1.79       gdt 			 * Record progress to enable later choosing
    861  1.79       gdt 			 * between short reads and EWOULDBLOCK.
    862  1.79       gdt 			 */
    863  1.79       gdt 			nread += n;
    864  1.79       gdt 
    865  1.79       gdt 			/* Copy to userspace, giving up on any error. */
    866  1.79       gdt 			error = uiomove(bufp, n, uio);
    867  1.79       gdt 			if (error != 0)
    868  1.79       gdt 				break;
    869  1.79       gdt 		} else {
    870  1.79       gdt 			/*
    871  1.79       gdt 			 * We read 0 bytes, and therefore are done,
    872  1.79       gdt 			 * even if we aren't in nonblocking mode.
    873  1.79       gdt 			 */
    874  1.79       gdt 			if (error == 0 && nread == 0)
    875  1.79       gdt 				error = EWOULDBLOCK;
    876  1.79       gdt 			DPRINTFN(3, ("ulptread: read 0=>done error %d\n",
    877  1.79       gdt 				     error));
    878  1.79       gdt 			goto done;
    879  1.79       gdt 		}
    880  1.79       gdt 
    881  1.79       gdt 		/*
    882  1.79       gdt 		 * A short transfer indicates no more data will be
    883  1.79       gdt 		 * forthcoming.  Terminate this read regardless of
    884  1.79       gdt 		 * whether we are in nonblocking mode.  XXX Reconsider
    885  1.79       gdt 		 * for blocking mode; maybe we should continue to
    886  1.79       gdt 		 * block, but maybe it just doesn't make senes to do
    887  1.79       gdt 		 * blocking reads from devices like this.
    888  1.79       gdt 		 */
    889  1.79       gdt 		if (err == USBD_SHORT_XFER) {
    890  1.79       gdt 			DPRINTFN(3, ("ulptread: SHORT=>done n %d nread %d err %d error %d\n",
    891  1.79       gdt 				     n, nread, err, error));
    892  1.60  augustss 			break;
    893  1.79       gdt 		}
    894  1.60  augustss 	}
    895  1.60  augustss 
    896  1.79       gdt done:
    897  1.79       gdt 	DPRINTFN(3, ("ulptread: finished n %d nread %d err %d error %d\n",
    898  1.79       gdt 			     n, nread, err, error));
    899  1.60  augustss 	return (error);
    900  1.60  augustss }
    901  1.60  augustss 
    902  1.60  augustss int
    903  1.60  augustss ulptread(dev_t dev, struct uio *uio, int flags)
    904  1.60  augustss {
    905  1.60  augustss 	struct ulpt_softc *sc;
    906  1.60  augustss 	int error;
    907  1.60  augustss 
    908  1.85    dyoung 	sc = device_lookup_private(&ulpt_cd, ULPTUNIT(dev));
    909  1.60  augustss 
    910  1.60  augustss 	if (sc->sc_dying)
    911  1.60  augustss 		return (EIO);
    912  1.60  augustss 
    913  1.60  augustss 	sc->sc_refcnt++;
    914  1.60  augustss 	error = ulpt_do_read(sc, uio, flags);
    915  1.60  augustss 	if (--sc->sc_refcnt < 0)
    916  1.85    dyoung 		usb_detach_wakeup(sc->sc_dev);
    917  1.60  augustss 	return (error);
    918  1.60  augustss }
    919  1.60  augustss 
    920  1.60  augustss void
    921  1.76  christos ulpt_read_cb(usbd_xfer_handle xfer, usbd_private_handle priv,
    922  1.76  christos 	     usbd_status status)
    923  1.60  augustss {
    924  1.60  augustss 	usbd_status err;
    925  1.60  augustss 	u_int32_t n;
    926  1.60  augustss 	usbd_private_handle xsc;
    927  1.60  augustss 	struct ulpt_softc *sc;
    928  1.60  augustss 
    929  1.60  augustss 	usbd_get_xfer_status(xfer, &xsc, NULL, &n, &err);
    930  1.60  augustss 	sc = xsc;
    931  1.60  augustss 
    932  1.79       gdt 	DPRINTFN(4, ("ulpt_read_cb: start sc=%p, err=%d n=%d\n", sc, err, n));
    933  1.60  augustss 
    934  1.60  augustss #ifdef ULPT_DEBUG
    935  1.60  augustss 	if (!err && n > 0)
    936  1.79       gdt 		DPRINTFN(3, ("ulpt_tick: discarding %d bytes\n", n));
    937  1.60  augustss #endif
    938  1.60  augustss 	if (!err || err == USBD_TIMEOUT)
    939  1.85    dyoung 		callout_reset(&sc->sc_read_callout, hz / ULPT_READS_PER_SEC,
    940  1.60  augustss 			    ulpt_tick, sc);
    941  1.60  augustss }
    942  1.60  augustss 
    943  1.79       gdt /*
    944  1.79       gdt  * For devices which are not opened for reading, this function is
    945  1.79       gdt  * called continuously to start read bulk transfers to avoid the
    946  1.79       gdt  * printer overflowing its output buffer.
    947  1.79       gdt  *
    948  1.79       gdt  * XXX This should be adapted for continuous reads to allow select to
    949  1.79       gdt  * work; see do_ulpt_read().
    950  1.79       gdt  */
    951  1.60  augustss void
    952  1.60  augustss ulpt_tick(void *xsc)
    953  1.60  augustss {
    954  1.60  augustss 	struct ulpt_softc *sc = xsc;
    955  1.60  augustss 	usbd_status err;
    956  1.60  augustss 
    957  1.60  augustss 	if (sc == NULL || sc->sc_dying)
    958  1.60  augustss 		return;
    959  1.60  augustss 
    960  1.60  augustss 	usbd_setup_xfer(sc->sc_in_xfer, sc->sc_in_pipe, sc, sc->sc_in_buf,
    961  1.60  augustss 			ULPT_BSIZE, USBD_NO_COPY | USBD_SHORT_XFER_OK,
    962  1.60  augustss 			ULPT_READ_TIMO, ulpt_read_cb);
    963  1.60  augustss 	err = usbd_transfer(sc->sc_in_xfer);
    964  1.79       gdt 	DPRINTFN(3, ("ulpt_tick: sc=%p err=%d\n", sc, err));
    965  1.60  augustss }
    966  1.60  augustss 
    967  1.60  augustss int
    968  1.77  christos ulptioctl(dev_t dev, u_long cmd, void *data,
    969  1.76  christos     int flag, struct lwp *l)
    970   1.1  augustss {
    971  1.79       gdt 	struct ulpt_softc *sc;
    972  1.79       gdt 
    973  1.85    dyoung 	sc = device_lookup_private(&ulpt_cd, ULPTUNIT(dev));
    974  1.79       gdt 
    975  1.79       gdt 	switch (cmd) {
    976  1.79       gdt 	case FIONBIO:
    977  1.79       gdt 		return 0;
    978  1.79       gdt 	}
    979  1.79       gdt 
    980  1.75  christos 	return ENODEV;
    981  1.16  augustss }
    982  1.16  augustss 
    983  1.22  augustss #if 0
    984  1.16  augustss /* XXX This does not belong here. */
    985  1.16  augustss /*
    986  1.17  augustss  * Print select parts of a IEEE 1284 device ID.
    987  1.16  augustss  */
    988  1.16  augustss void
    989  1.38  augustss ieee1284_print_id(char *str)
    990  1.16  augustss {
    991  1.16  augustss 	char *p, *q;
    992  1.16  augustss 
    993  1.16  augustss 	for (p = str-1; p; p = strchr(p, ';')) {
    994  1.16  augustss 		p++;		/* skip ';' */
    995  1.16  augustss 		if (strncmp(p, "MFG:", 4) == 0 ||
    996  1.16  augustss 		    strncmp(p, "MANUFACTURER:", 14) == 0 ||
    997  1.16  augustss 		    strncmp(p, "MDL:", 4) == 0 ||
    998  1.16  augustss 		    strncmp(p, "MODEL:", 6) == 0) {
    999  1.16  augustss 			q = strchr(p, ';');
   1000  1.16  augustss 			if (q)
   1001  1.16  augustss 				printf("%.*s", (int)(q - p + 1), p);
   1002  1.16  augustss 		}
   1003  1.16  augustss 	}
   1004   1.1  augustss }
   1005  1.22  augustss #endif
   1006   1.8  augustss 
   1007   1.8  augustss #if defined(__FreeBSD__)
   1008  1.30  augustss DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass, usbd_driver_load, 0);
   1009  1.60  augustss #endif
   1010