Home | History | Annotate | Line # | Download | only in usb
ulpt.c revision 1.31
      1 /*	$NetBSD: ulpt.c,v 1.31 2000/02/02 13:18:47 augustss 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 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 (augustss (at) carlstedt.se) 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  * 3. All advertising materials mentioning features or use of this software
     21  *    must display the following acknowledgement:
     22  *        This product includes software developed by the NetBSD
     23  *        Foundation, Inc. and its contributors.
     24  * 4. Neither the name of The NetBSD Foundation nor the names of its
     25  *    contributors may be used to endorse or promote products derived
     26  *    from this software without specific prior written permission.
     27  *
     28  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     29  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     31  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     32  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     38  * POSSIBILITY OF SUCH DAMAGE.
     39  */
     40 
     41 /*
     42  * Printer Class spec: http://www.usb.org/developers/data/usbprn10.pdf
     43  */
     44 
     45 /* XXX Note in the manpage the ULPT_NOPRIME version of the printer */
     46 
     47 #include <sys/param.h>
     48 #include <sys/systm.h>
     49 #include <sys/proc.h>
     50 #include <sys/kernel.h>
     51 #if defined(__NetBSD__)
     52 #include <sys/device.h>
     53 #include <sys/ioctl.h>
     54 #elif defined(__FreeBSD__)
     55 #include <sys/ioccom.h>
     56 #include <sys/module.h>
     57 #include <sys/bus.h>
     58 #endif
     59 #include <sys/uio.h>
     60 #include <sys/conf.h>
     61 #include <sys/vnode.h>
     62 #include <sys/syslog.h>
     63 
     64 #include <dev/usb/usb.h>
     65 #include <dev/usb/usbdi.h>
     66 #include <dev/usb/usbdi_util.h>
     67 #include <dev/usb/usbdevs.h>
     68 #include <dev/usb/usb_quirks.h>
     69 
     70 #define	TIMEOUT		hz*16	/* wait up to 16 seconds for a ready */
     71 #define	STEP		hz/4
     72 
     73 #define	LPTPRI		(PZERO+8)
     74 #define	ULPT_BSIZE	16384
     75 
     76 #ifdef ULPT_DEBUG
     77 #define DPRINTF(x)	if (ulptdebug) logprintf x
     78 #define DPRINTFN(n,x)	if (ulptdebug>(n)) logprintf x
     79 int	ulptdebug = 0;
     80 #else
     81 #define DPRINTF(x)
     82 #define DPRINTFN(n,x)
     83 #endif
     84 
     85 #define UR_GET_DEVICE_ID 0
     86 #define UR_GET_PORT_STATUS 1
     87 #define UR_SOFT_RESET 2
     88 
     89 #define	LPS_NERR		0x08	/* printer no error */
     90 #define	LPS_SELECT		0x10	/* printer selected */
     91 #define	LPS_NOPAPER		0x20	/* printer out of paper */
     92 #define LPS_INVERT      (LPS_SELECT|LPS_NERR)
     93 #define LPS_MASK        (LPS_SELECT|LPS_NERR|LPS_NOPAPER)
     94 
     95 struct ulpt_softc {
     96 	USBBASEDEVICE sc_dev;
     97 	usbd_device_handle sc_udev;	/* device */
     98 	usbd_interface_handle sc_iface;	/* interface */
     99 	int sc_ifaceno;
    100 	usbd_pipe_handle sc_bulkpipe;	/* bulk pipe */
    101 	int sc_bulk;
    102 
    103 	u_char sc_state;
    104 #define	ULPT_OPEN	0x01	/* device is open */
    105 #define	ULPT_OBUSY	0x02	/* printer is busy doing output */
    106 #define	ULPT_INIT	0x04	/* waiting to initialize for open */
    107 	u_char sc_flags;
    108 #define	ULPT_NOPRIME	0x40	/* don't prime on open */
    109 	u_char sc_laststatus;
    110 
    111 	int sc_refcnt;
    112 	u_char sc_dying;
    113 
    114 #if defined(__FreeBSD__)
    115 	dev_t dev;
    116 	dev_t dev_noprime;
    117 #endif
    118 };
    119 
    120 #if defined(__NetBSD__) || defined(__OpenBSD__)
    121 cdev_decl(ulpt);
    122 #elif defined(__FreeBSD__)
    123 static d_open_t ulptopen;
    124 static d_close_t ulptclose;
    125 static d_write_t ulptwrite;
    126 static d_ioctl_t ulptioctl;
    127 
    128 #define ULPT_CDEV_MAJOR 113
    129 
    130 static struct cdevsw ulpt_cdevsw = {
    131 	/* open */	ulptopen,
    132 	/* close */	ulptclose,
    133 	/* read */	noread,
    134 	/* write */	ulptwrite,
    135 	/* ioctl */	ulptioctl,
    136 	/* poll */	nopoll,
    137 	/* mmap */	nommap,
    138 	/* strategy */	nostrategy,
    139 	/* name */	"ulpt",
    140 	/* maj */	ULPT_CDEV_MAJOR,
    141 	/* dump */	nodump,
    142 	/* psize */	nopsize,
    143 	/* flags */	0,
    144 	/* bmaj */	-1
    145 };
    146 #endif
    147 
    148 void ulpt_disco __P((void *));
    149 
    150 int ulpt_do_write __P((struct ulpt_softc *, struct uio *uio, int));
    151 int ulpt_status __P((struct ulpt_softc *));
    152 void ulpt_reset __P((struct ulpt_softc *));
    153 int ulpt_statusmsg __P((u_char, struct ulpt_softc *));
    154 
    155 void ieee1284_print_id __P((char *));
    156 
    157 #define	ULPTUNIT(s)	(minor(s) & 0x1f)
    158 #define	ULPTFLAGS(s)	(minor(s) & 0xe0)
    159 
    160 
    161 USB_DECLARE_DRIVER(ulpt);
    162 
    163 USB_MATCH(ulpt)
    164 {
    165 	USB_MATCH_START(ulpt, uaa);
    166 	usb_interface_descriptor_t *id;
    167 
    168 	DPRINTFN(10,("ulpt_match\n"));
    169 	if (uaa->iface == NULL)
    170 		return (UMATCH_NONE);
    171 	id = usbd_get_interface_descriptor(uaa->iface);
    172 	if (id != NULL &&
    173 	    id->bInterfaceClass == UCLASS_PRINTER &&
    174 	    id->bInterfaceSubClass == USUBCLASS_PRINTER &&
    175 	    (id->bInterfaceProtocol == UPROTO_PRINTER_UNI ||
    176 	     id->bInterfaceProtocol == UPROTO_PRINTER_BI))
    177 		return (UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO);
    178 	return (UMATCH_NONE);
    179 }
    180 
    181 USB_ATTACH(ulpt)
    182 {
    183 	USB_ATTACH_START(ulpt, sc, uaa);
    184 	usbd_device_handle dev = uaa->device;
    185 	usbd_interface_handle iface = uaa->iface;
    186 	usb_interface_descriptor_t *id = usbd_get_interface_descriptor(iface);
    187 	char devinfo[1024];
    188 	usb_endpoint_descriptor_t *ed;
    189 	usbd_status err;
    190 
    191 	DPRINTFN(10,("ulpt_attach: sc=%p\n", sc));
    192 	usbd_devinfo(dev, 0, devinfo);
    193 	USB_ATTACH_SETUP;
    194 	printf("%s: %s, iclass %d/%d\n", USBDEVNAME(sc->sc_dev),
    195 	       devinfo, id->bInterfaceClass, id->bInterfaceSubClass);
    196 
    197 	/* Figure out which endpoint is the bulk out endpoint. */
    198 	ed = usbd_interface2endpoint_descriptor(iface, 0);
    199 	if (ed == NULL)
    200 		goto nobulk;
    201 	if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_OUT ||
    202 	    (ed->bmAttributes & UE_XFERTYPE) != UE_BULK) {
    203 		/* In case we are using a bidir protocol... */
    204 		ed = usbd_interface2endpoint_descriptor(iface, 1);
    205 		if (ed == NULL)
    206 			goto nobulk;
    207 		if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_OUT ||
    208 		    (ed->bmAttributes & UE_XFERTYPE) != UE_BULK)
    209 			goto nobulk;
    210 	}
    211 	sc->sc_bulk = ed->bEndpointAddress;
    212 	DPRINTFN(10, ("ulpt_attach: bulk=%d\n", sc->sc_bulk));
    213 
    214 	sc->sc_iface = iface;
    215 	err = usbd_interface2device_handle(iface, &sc->sc_udev);
    216 	if (err) {
    217 		sc->sc_dying = 1;
    218 		USB_ATTACH_ERROR_RETURN;
    219 	}
    220 	sc->sc_ifaceno = id->bInterfaceNumber;
    221 
    222 #if 0
    223 /*
    224  * This code is disabled because for some mysterious it causes
    225  * printing not to work.  But only sometimes, and mostly with
    226  * UHCI and less often with OHCI.  *sigh*
    227  */
    228 	{
    229 	usb_config_descriptor_t *cd = usbd_get_config_descriptor(dev);
    230 	usb_device_request_t req;
    231 	int len, alen;
    232 
    233 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    234 	req.bRequest = UR_GET_DEVICE_ID;
    235 	USETW(req.wValue, cd->bConfigurationValue);
    236 	USETW2(req.wIndex, id->bInterfaceNumber, id->bAlternateSetting);
    237 	USETW(req.wLength, sizeof devinfo - 1);
    238 	err = usbd_do_request_flags(dev, &req, devinfo,USBD_SHORT_XFER_OK,
    239 		  &alen);
    240 	if (err) {
    241 		printf("%s: cannot get device id\n", USBDEVNAME(sc->sc_dev));
    242 	} else if (alen <= 2) {
    243 		printf("%s: empty device id, no printer connected?\n",
    244 		       USBDEVNAME(sc->sc_dev));
    245 	} else {
    246 		/* devinfo now contains an IEEE-1284 device ID */
    247 		len = ((devinfo[0] & 0xff) << 8) | (devinfo[1] & 0xff);
    248 		if (len > sizeof devinfo - 3)
    249 			len = sizeof devinfo - 3;
    250 		devinfo[len] = 0;
    251 		printf("%s: device id <", USBDEVNAME(sc->sc_dev));
    252 		ieee1284_print_id(devinfo+2);
    253 		printf(">\n");
    254 	}
    255 	}
    256 #endif
    257 
    258 #if defined(__FreeBSD__)
    259 	sc->dev = make_dev(&ulpt_cdevsw, device_get_unit(self),
    260 		UID_ROOT, GID_OPERATOR, 0644, "ulpt%d", device_get_unit(self));
    261 	sc->dev_noprime = make_dev(&ulpt_cdevsw,
    262 		device_get_unit(self)|ULPT_NOPRIME,
    263 		UID_ROOT, GID_OPERATOR, 0644, "unlpt%d", device_get_unit(self));
    264 #endif
    265 
    266 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
    267 			   USBDEV(sc->sc_dev));
    268 
    269 	USB_ATTACH_SUCCESS_RETURN;
    270 
    271  nobulk:
    272 	printf("%s: could not find bulk endpoint\n", USBDEVNAME(sc->sc_dev));
    273 	sc->sc_dying = 1;
    274 	USB_ATTACH_ERROR_RETURN;
    275 }
    276 
    277 #if defined(__NetBSD__) || defined(__OpenBSD__)
    278 int
    279 ulpt_activate(self, act)
    280 	device_ptr_t self;
    281 	enum devact act;
    282 {
    283 	struct ulpt_softc *sc = (struct ulpt_softc *)self;
    284 
    285 	switch (act) {
    286 	case DVACT_ACTIVATE:
    287 		return (EOPNOTSUPP);
    288 		break;
    289 
    290 	case DVACT_DEACTIVATE:
    291 		sc->sc_dying = 1;
    292 		break;
    293 	}
    294 	return (0);
    295 }
    296 #endif
    297 
    298 USB_DETACH(ulpt)
    299 {
    300 	USB_DETACH_START(ulpt, sc);
    301 	int s;
    302 #if defined(__NetBSD__) || defined(__OpenBSD__)
    303 	int maj, mn;
    304 
    305 	DPRINTF(("ulpt_detach: sc=%p flags=%d\n", sc, flags));
    306 #elif defined(__FreeBSD__)
    307 	DPRINTF(("ulpt_detach: sc=%p\n", sc));
    308 #endif
    309 
    310 	sc->sc_dying = 1;
    311 	if (sc->sc_bulkpipe != NULL)
    312 		usbd_abort_pipe(sc->sc_bulkpipe);
    313 
    314 	s = splusb();
    315 	if (--sc->sc_refcnt >= 0) {
    316 		/* There is noone to wake, aborting the pipe is enough */
    317 		/* Wait for processes to go away. */
    318 		usb_detach_wait(USBDEV(sc->sc_dev));
    319 	}
    320 	splx(s);
    321 
    322 #if defined(__NetBSD__) || defined(__OpenBSD__)
    323 	/* locate the major number */
    324 	for (maj = 0; maj < nchrdev; maj++)
    325 		if (cdevsw[maj].d_open == ulptopen)
    326 			break;
    327 
    328 	/* Nuke the vnodes for any open instances (calls close). */
    329 	mn = self->dv_unit;
    330 	vdevgone(maj, mn, mn, VCHR);
    331 #elif defined(__FreeBSD__)
    332 	/* XXX not implemented yet */
    333 
    334 	destroy_dev(sc->dev);
    335 	destroy_dev(sc->dev_noprime);
    336 #endif
    337 
    338 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
    339 			   USBDEV(sc->sc_dev));
    340 
    341 	return (0);
    342 }
    343 
    344 int
    345 ulpt_status(sc)
    346 	struct ulpt_softc *sc;
    347 {
    348 	usb_device_request_t req;
    349 	usbd_status err;
    350 	u_char status;
    351 
    352 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    353 	req.bRequest = UR_GET_PORT_STATUS;
    354 	USETW(req.wValue, 0);
    355 	USETW(req.wIndex, sc->sc_ifaceno);
    356 	USETW(req.wLength, 1);
    357 	err = usbd_do_request(sc->sc_udev, &req, &status);
    358 	DPRINTFN(1, ("ulpt_status: status=0x%02x err=%d\n", status, err));
    359 	if (!err)
    360 		return (status);
    361 	else
    362 		return (0);
    363 }
    364 
    365 void
    366 ulpt_reset(sc)
    367 	struct ulpt_softc *sc;
    368 {
    369 	usb_device_request_t req;
    370 
    371 	DPRINTFN(1, ("ulpt_reset\n"));
    372 	req.bmRequestType = UT_WRITE_CLASS_OTHER;
    373 	req.bRequest = UR_SOFT_RESET;
    374 	USETW(req.wValue, 0);
    375 	USETW(req.wIndex, sc->sc_ifaceno);
    376 	USETW(req.wLength, 0);
    377 	(void)usbd_do_request(sc->sc_udev, &req, 0);
    378 }
    379 
    380 /*
    381  * Reset the printer, then wait until it's selected and not busy.
    382  */
    383 int
    384 ulptopen(dev, flag, mode, p)
    385 	dev_t dev;
    386 	int flag;
    387 	int mode;
    388 	struct proc *p;
    389 {
    390 	u_char flags = ULPTFLAGS(dev);
    391 	struct ulpt_softc *sc;
    392 	usbd_status err;
    393 	int spin, error;
    394 
    395 	USB_GET_SC_OPEN(ulpt, ULPTUNIT(dev), sc);
    396 
    397 	if (sc == NULL || sc->sc_iface == NULL || sc->sc_dying)
    398 		return (ENXIO);
    399 
    400 	if (sc->sc_state)
    401 		return (EBUSY);
    402 
    403 	sc->sc_state = ULPT_INIT;
    404 	sc->sc_flags = flags;
    405 	DPRINTF(("ulptopen: flags=0x%x\n", (unsigned)flags));
    406 
    407 #if defined(ULPT_DEBUG) && defined(__FreeBSD__)
    408 	/* Ignoring these flags might not be a good idea */
    409 	if ((flags & ~ULPT_NOPRIME) != 0)
    410 		printf("ulptopen: flags ignored: %b\n", flags,
    411 			"\20\3POS_INIT\4POS_ACK\6PRIME_OPEN\7AUTOLF\10BYPASS");
    412 #endif
    413 
    414 
    415 	if ((flags & ULPT_NOPRIME) == 0)
    416 		ulpt_reset(sc);
    417 
    418 	for (spin = 0; (ulpt_status(sc) & LPS_SELECT) == 0; spin += STEP) {
    419 		if (spin >= TIMEOUT) {
    420 			sc->sc_state = 0;
    421 			return (EBUSY);
    422 		}
    423 
    424 		/* wait 1/4 second, give up if we get a signal */
    425 		error = tsleep((caddr_t)sc, LPTPRI | PCATCH, "ulptop", STEP);
    426 		if (error != EWOULDBLOCK) {
    427 			sc->sc_state = 0;
    428 			return (error);
    429 		}
    430 	}
    431 
    432 	err = usbd_open_pipe(sc->sc_iface, sc->sc_bulk, 0, &sc->sc_bulkpipe);
    433 	if (err) {
    434 		sc->sc_state = 0;
    435 		return (EIO);
    436 	}
    437 
    438 	sc->sc_state = ULPT_OPEN;
    439 
    440 	DPRINTF(("ulptopen: done\n"));
    441 	return (0);
    442 }
    443 
    444 int
    445 ulpt_statusmsg(status, sc)
    446 	u_char status;
    447 	struct ulpt_softc *sc;
    448 {
    449 	u_char new;
    450 
    451 	status = (status ^ LPS_INVERT) & LPS_MASK;
    452 	new = status & ~sc->sc_laststatus;
    453 	sc->sc_laststatus = status;
    454 
    455 	if (new & LPS_SELECT)
    456 		log(LOG_NOTICE, "%s: offline\n", USBDEVNAME(sc->sc_dev));
    457 	else if (new & LPS_NOPAPER)
    458 		log(LOG_NOTICE, "%s: out of paper\n", USBDEVNAME(sc->sc_dev));
    459 	else if (new & LPS_NERR)
    460 		log(LOG_NOTICE, "%s: output error\n", USBDEVNAME(sc->sc_dev));
    461 
    462 	return (status);
    463 }
    464 
    465 int
    466 ulptclose(dev, flag, mode, p)
    467 	dev_t dev;
    468 	int flag;
    469 	int mode;
    470 	struct proc *p;
    471 {
    472 	struct ulpt_softc *sc;
    473 
    474 	USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
    475 
    476 	if (sc->sc_state != ULPT_OPEN)
    477 		/* We are being forced to close before the open completed. */
    478 		return (0);
    479 
    480 	usbd_close_pipe(sc->sc_bulkpipe);
    481 	sc->sc_bulkpipe = 0;
    482 
    483 	sc->sc_state = 0;
    484 
    485 	DPRINTF(("ulptclose: closed\n"));
    486 	return (0);
    487 }
    488 
    489 int
    490 ulpt_do_write(sc, uio, flags)
    491 	struct ulpt_softc *sc;
    492 	struct uio *uio;
    493 	int flags;
    494 {
    495 	u_int32_t n;
    496 	int error = 0;
    497 	void *bufp;
    498 	usbd_xfer_handle xfer;
    499 	usbd_status err;
    500 
    501 	DPRINTF(("ulptwrite\n"));
    502 	xfer = usbd_alloc_xfer(sc->sc_udev);
    503 	if (xfer == NULL)
    504 		return (ENOMEM);
    505 	bufp = usbd_alloc_buffer(xfer, ULPT_BSIZE);
    506 	if (bufp == NULL) {
    507 		usbd_free_xfer(xfer);
    508 		return (ENOMEM);
    509 	}
    510 	while ((n = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
    511 		ulpt_statusmsg(ulpt_status(sc), sc);
    512 		error = uiomove(bufp, n, uio);
    513 		if (error)
    514 			break;
    515 		DPRINTFN(1, ("ulptwrite: transfer %d bytes\n", n));
    516 		err = usbd_bulk_transfer(xfer, sc->sc_bulkpipe, USBD_NO_COPY,
    517 			  USBD_NO_TIMEOUT, bufp, &n, "ulptwr");
    518 		if (err) {
    519 			DPRINTF(("ulptwrite: error=%d\n", err));
    520 			error = EIO;
    521 			break;
    522 		}
    523 	}
    524 	usbd_free_xfer(xfer);
    525 
    526 	return (error);
    527 }
    528 
    529 int
    530 ulptwrite(dev, uio, flags)
    531 	dev_t dev;
    532 	struct uio *uio;
    533 	int flags;
    534 {
    535 	struct ulpt_softc *sc;
    536 	int error;
    537 
    538 	USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
    539 
    540 	if (sc->sc_dying)
    541 		return (EIO);
    542 
    543 	sc->sc_refcnt++;
    544 	error = ulpt_do_write(sc, uio, flags);
    545 	if (--sc->sc_refcnt < 0)
    546 		usb_detach_wakeup(USBDEV(sc->sc_dev));
    547 	return (error);
    548 }
    549 
    550 int
    551 ulptioctl(dev, cmd, data, flag, p)
    552 	dev_t dev;
    553 	u_long cmd;
    554 	caddr_t data;
    555 	int flag;
    556 	struct proc *p;
    557 {
    558 	int error = 0;
    559 
    560 	switch (cmd) {
    561 	default:
    562 		error = ENODEV;
    563 	}
    564 
    565 	return (error);
    566 }
    567 
    568 #if 0
    569 /* XXX This does not belong here. */
    570 /*
    571  * Print select parts of a IEEE 1284 device ID.
    572  */
    573 void
    574 ieee1284_print_id(str)
    575 	char *str;
    576 {
    577 	char *p, *q;
    578 
    579 	for (p = str-1; p; p = strchr(p, ';')) {
    580 		p++;		/* skip ';' */
    581 		if (strncmp(p, "MFG:", 4) == 0 ||
    582 		    strncmp(p, "MANUFACTURER:", 14) == 0 ||
    583 		    strncmp(p, "MDL:", 4) == 0 ||
    584 		    strncmp(p, "MODEL:", 6) == 0) {
    585 			q = strchr(p, ';');
    586 			if (q)
    587 				printf("%.*s", (int)(q - p + 1), p);
    588 		}
    589 	}
    590 }
    591 #endif
    592 
    593 #if defined(__FreeBSD__)
    594 DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass, usbd_driver_load, 0);
    595 #endif
    596