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