2008-05-24 20:40:58 +04:00
|
|
|
/* $NetBSD: ulpt.c,v 1.81 2008/05/24 16:40:58 cube Exp $ */
|
1999-11-19 02:32:25 +03:00
|
|
|
/* $FreeBSD: src/sys/dev/usb/ulpt.c,v 1.24 1999/11/17 22:33:44 n_hibma Exp $ */
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
/*
|
2003-10-05 01:19:50 +04:00
|
|
|
* Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
|
1998-07-12 23:51:55 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
1998-11-26 01:32:04 +03:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2000-04-27 19:26:44 +04:00
|
|
|
* by Lennart Augustsson (lennart@augustsson.net) at
|
1998-11-26 01:32:04 +03:00
|
|
|
* Carlstedt Research & Technology.
|
1998-07-12 23:51:55 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1999-01-10 14:13:36 +03:00
|
|
|
/*
|
2000-12-29 04:24:55 +03:00
|
|
|
* Printer Class spec: http://www.usb.org/developers/data/devclass/usbprint109.PDF
|
1999-01-10 14:13:36 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-13 09:24:53 +03:00
|
|
|
#include <sys/cdefs.h>
|
2008-05-24 20:40:58 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: ulpt.c,v 1.81 2008/05/24 16:40:58 cube Exp $");
|
2001-11-13 09:24:53 +03:00
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/kernel.h>
|
2003-10-05 01:19:50 +04:00
|
|
|
#include <sys/fcntl.h>
|
2000-03-29 22:24:52 +04:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1998-12-26 15:53:00 +03:00
|
|
|
#include <sys/device.h>
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <sys/ioctl.h>
|
1998-12-26 15:53:00 +03:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
#include <sys/ioccom.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#endif
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/conf.h>
|
1999-06-30 10:44:22 +04:00
|
|
|
#include <sys/vnode.h>
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
2003-10-05 01:19:50 +04:00
|
|
|
#include <machine/vmparam.h> /* PAGE_SIZE */
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <dev/usb/usb.h>
|
|
|
|
#include <dev/usb/usbdi.h>
|
|
|
|
#include <dev/usb/usbdi_util.h>
|
|
|
|
#include <dev/usb/usbdevs.h>
|
|
|
|
#include <dev/usb/usb_quirks.h>
|
|
|
|
|
|
|
|
#define TIMEOUT hz*16 /* wait up to 16 seconds for a ready */
|
|
|
|
#define STEP hz/4
|
|
|
|
|
|
|
|
#define LPTPRI (PZERO+8)
|
2003-10-05 01:19:50 +04:00
|
|
|
#define ULPT_BSIZE PAGE_SIZE
|
|
|
|
|
|
|
|
#define ULPT_READS_PER_SEC 5
|
2008-01-08 03:58:09 +03:00
|
|
|
/* XXX Why is 10 us a reasonable value? */
|
2003-10-05 01:19:50 +04:00
|
|
|
#define ULPT_READ_TIMO 10
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1999-10-13 12:10:55 +04:00
|
|
|
#ifdef ULPT_DEBUG
|
2008-01-08 03:58:09 +03:00
|
|
|
#define DPRINTFN(n,x) if (ulptdebug>=(n)) logprintf x
|
1998-07-12 23:51:55 +04:00
|
|
|
int ulptdebug = 0;
|
2008-01-08 03:58:09 +03:00
|
|
|
/*
|
|
|
|
* The strategy for debug levels is:
|
|
|
|
* 1: attach-time operations
|
|
|
|
* 2: open/close/status/reset
|
|
|
|
* 3: read/write basic
|
|
|
|
* 4: read/write details
|
|
|
|
* 10: left over from previous debug code
|
|
|
|
*/
|
1998-07-12 23:51:55 +04:00
|
|
|
#else
|
|
|
|
#define DPRINTFN(n,x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define UR_GET_DEVICE_ID 0
|
|
|
|
#define UR_GET_PORT_STATUS 1
|
|
|
|
#define UR_SOFT_RESET 2
|
|
|
|
|
|
|
|
#define LPS_NERR 0x08 /* printer no error */
|
|
|
|
#define LPS_SELECT 0x10 /* printer selected */
|
|
|
|
#define LPS_NOPAPER 0x20 /* printer out of paper */
|
|
|
|
#define LPS_INVERT (LPS_SELECT|LPS_NERR)
|
|
|
|
#define LPS_MASK (LPS_SELECT|LPS_NERR|LPS_NOPAPER)
|
|
|
|
|
|
|
|
struct ulpt_softc {
|
1999-09-05 23:32:18 +04:00
|
|
|
USBBASEDEVICE sc_dev;
|
1998-07-12 23:51:55 +04:00
|
|
|
usbd_device_handle sc_udev; /* device */
|
|
|
|
usbd_interface_handle sc_iface; /* interface */
|
|
|
|
int sc_ifaceno;
|
2001-04-16 04:18:06 +04:00
|
|
|
|
|
|
|
int sc_out;
|
|
|
|
usbd_pipe_handle sc_out_pipe; /* bulk out pipe */
|
2003-10-05 01:19:50 +04:00
|
|
|
usbd_xfer_handle sc_out_xfer;
|
|
|
|
void *sc_out_buf;
|
2001-04-16 04:18:06 +04:00
|
|
|
|
|
|
|
int sc_in;
|
|
|
|
usbd_pipe_handle sc_in_pipe; /* bulk in pipe */
|
2003-10-05 01:19:50 +04:00
|
|
|
usbd_xfer_handle sc_in_xfer;
|
|
|
|
void *sc_in_buf;
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
usb_callout_t sc_read_callout; /* to drain input on write-only opens */
|
2003-10-05 01:19:50 +04:00
|
|
|
int sc_has_callout;
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
u_char sc_state;
|
|
|
|
#define ULPT_OPEN 0x01 /* device is open */
|
|
|
|
#define ULPT_OBUSY 0x02 /* printer is busy doing output */
|
|
|
|
#define ULPT_INIT 0x04 /* waiting to initialize for open */
|
|
|
|
u_char sc_flags;
|
|
|
|
#define ULPT_NOPRIME 0x40 /* don't prime on open */
|
|
|
|
u_char sc_laststatus;
|
1999-06-30 10:44:22 +04:00
|
|
|
|
|
|
|
int sc_refcnt;
|
|
|
|
u_char sc_dying;
|
1999-10-13 12:10:55 +04:00
|
|
|
|
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
dev_t dev;
|
|
|
|
dev_t dev_noprime;
|
|
|
|
#endif
|
1998-07-12 23:51:55 +04:00
|
|
|
};
|
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
#if defined(__NetBSD__)
|
|
|
|
dev_type_open(ulptopen);
|
|
|
|
dev_type_close(ulptclose);
|
|
|
|
dev_type_write(ulptwrite);
|
2003-10-05 01:19:50 +04:00
|
|
|
dev_type_read(ulptread);
|
2002-09-06 17:18:43 +04:00
|
|
|
dev_type_ioctl(ulptioctl);
|
|
|
|
|
|
|
|
const struct cdevsw ulpt_cdevsw = {
|
2003-10-05 01:19:50 +04:00
|
|
|
ulptopen, ulptclose, ulptread, ulptwrite, ulptioctl,
|
2006-09-04 01:16:09 +04:00
|
|
|
nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
#elif defined(__OpenBSD__)
|
1999-11-12 03:34:57 +03:00
|
|
|
cdev_decl(ulpt);
|
1999-10-13 12:10:55 +04:00
|
|
|
#elif defined(__FreeBSD__)
|
2000-03-27 16:33:53 +04:00
|
|
|
Static d_open_t ulptopen;
|
|
|
|
Static d_close_t ulptclose;
|
|
|
|
Static d_write_t ulptwrite;
|
|
|
|
Static d_ioctl_t ulptioctl;
|
1999-10-13 12:10:55 +04:00
|
|
|
|
|
|
|
#define ULPT_CDEV_MAJOR 113
|
|
|
|
|
2000-03-27 16:33:53 +04:00
|
|
|
Static struct cdevsw ulpt_cdevsw = {
|
1999-10-13 12:10:55 +04:00
|
|
|
/* open */ ulptopen,
|
|
|
|
/* close */ ulptclose,
|
|
|
|
/* read */ noread,
|
|
|
|
/* write */ ulptwrite,
|
|
|
|
/* ioctl */ ulptioctl,
|
|
|
|
/* poll */ nopoll,
|
|
|
|
/* mmap */ nommap,
|
|
|
|
/* strategy */ nostrategy,
|
|
|
|
/* name */ "ulpt",
|
|
|
|
/* maj */ ULPT_CDEV_MAJOR,
|
|
|
|
/* dump */ nodump,
|
|
|
|
/* psize */ nopsize,
|
|
|
|
/* flags */ 0,
|
2002-02-11 13:04:28 +03:00
|
|
|
#if !defined(__FreeBSD__) || (__FreeBSD__ < 5)
|
1999-10-13 12:10:55 +04:00
|
|
|
/* bmaj */ -1
|
2002-02-11 13:04:28 +03:00
|
|
|
#endif
|
1999-10-13 12:10:55 +04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2000-06-01 18:28:57 +04:00
|
|
|
void ulpt_disco(void *);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
2000-06-01 18:28:57 +04:00
|
|
|
int ulpt_do_write(struct ulpt_softc *, struct uio *uio, int);
|
2003-10-05 01:19:50 +04:00
|
|
|
int ulpt_do_read(struct ulpt_softc *, struct uio *uio, int);
|
2000-06-01 18:28:57 +04:00
|
|
|
int ulpt_status(struct ulpt_softc *);
|
|
|
|
void ulpt_reset(struct ulpt_softc *);
|
|
|
|
int ulpt_statusmsg(u_char, struct ulpt_softc *);
|
2003-10-05 01:19:50 +04:00
|
|
|
void ulpt_read_cb(usbd_xfer_handle xfer, usbd_private_handle priv,
|
|
|
|
usbd_status status);
|
|
|
|
void ulpt_tick(void *xsc);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
#if 0
|
2000-06-01 18:28:57 +04:00
|
|
|
void ieee1284_print_id(char *);
|
2001-04-16 04:18:06 +04:00
|
|
|
#endif
|
1999-08-24 02:35:19 +04:00
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
#define ULPTUNIT(s) (minor(s) & 0x1f)
|
|
|
|
#define ULPTFLAGS(s) (minor(s) & 0xe0)
|
|
|
|
|
1999-10-13 12:10:55 +04:00
|
|
|
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_DECLARE_DRIVER(ulpt);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_MATCH(ulpt)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
Introduce different autoconf interface attributes for USB drivers
matching (and handling) a whole device and those which match an
interface only. This will allow to enforce some rules, eg that
the former don't use interface information for matching or that the
latter don't modify global device state.
The previous way left too much freedom do the drivers which led to
inconsistencies and abuse.
For now, I've not changed locators and submatch rules, this will
happen later.
There should not be any change in behaviour, except in the case of
some drivers which did behave inconsistently:
if_atu, if_axe, uep: matched the configured device in the interface
stage, but did configuration again. I've converted them to match
in the device stage.
ustir, utoppy: matched in the interface stage, but only against
vendor/device information, and used any configuration/interface
without checking. Changed to match in device stage, and added
some simple code to configure and use the first interface.
If you have one of those devices, please test!
2007-03-13 16:51:53 +03:00
|
|
|
USB_IFMATCH_START(ulpt, uaa);
|
2002-07-12 01:14:24 +04:00
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
/* XXX Print something useful, or don't. */
|
1998-07-12 23:51:55 +04:00
|
|
|
DPRINTFN(10,("ulpt_match\n"));
|
Introduce different autoconf interface attributes for USB drivers
matching (and handling) a whole device and those which match an
interface only. This will allow to enforce some rules, eg that
the former don't use interface information for matching or that the
latter don't modify global device state.
The previous way left too much freedom do the drivers which led to
inconsistencies and abuse.
For now, I've not changed locators and submatch rules, this will
happen later.
There should not be any change in behaviour, except in the case of
some drivers which did behave inconsistently:
if_atu, if_axe, uep: matched the configured device in the interface
stage, but did configuration again. I've converted them to match
in the device stage.
ustir, utoppy: matched in the interface stage, but only against
vendor/device information, and used any configuration/interface
without checking. Changed to match in device stage, and added
some simple code to configure and use the first interface.
If you have one of those devices, please test!
2007-03-13 16:51:53 +03:00
|
|
|
|
|
|
|
if (uaa->class == UICLASS_PRINTER &&
|
|
|
|
uaa->subclass == UISUBCLASS_PRINTER &&
|
|
|
|
(uaa->proto == UIPROTO_PRINTER_UNI ||
|
|
|
|
uaa->proto == UIPROTO_PRINTER_BI ||
|
|
|
|
uaa->proto == UIPROTO_PRINTER_1284))
|
1998-07-12 23:51:55 +04:00
|
|
|
return (UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO);
|
|
|
|
return (UMATCH_NONE);
|
|
|
|
}
|
|
|
|
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_ATTACH(ulpt)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
Introduce different autoconf interface attributes for USB drivers
matching (and handling) a whole device and those which match an
interface only. This will allow to enforce some rules, eg that
the former don't use interface information for matching or that the
latter don't modify global device state.
The previous way left too much freedom do the drivers which led to
inconsistencies and abuse.
For now, I've not changed locators and submatch rules, this will
happen later.
There should not be any change in behaviour, except in the case of
some drivers which did behave inconsistently:
if_atu, if_axe, uep: matched the configured device in the interface
stage, but did configuration again. I've converted them to match
in the device stage.
ustir, utoppy: matched in the interface stage, but only against
vendor/device information, and used any configuration/interface
without checking. Changed to match in device stage, and added
some simple code to configure and use the first interface.
If you have one of those devices, please test!
2007-03-13 16:51:53 +03:00
|
|
|
USB_IFATTACH_START(ulpt, sc, uaa);
|
1998-07-12 23:51:55 +04:00
|
|
|
usbd_device_handle dev = uaa->device;
|
|
|
|
usbd_interface_handle iface = uaa->iface;
|
2001-04-16 04:18:06 +04:00
|
|
|
usb_interface_descriptor_t *ifcd = usbd_get_interface_descriptor(iface);
|
2005-05-30 08:21:39 +04:00
|
|
|
const usb_interface_descriptor_t *id;
|
2001-04-16 04:18:06 +04:00
|
|
|
usbd_status err;
|
2005-05-11 14:02:28 +04:00
|
|
|
char *devinfop;
|
1998-07-12 23:51:55 +04:00
|
|
|
usb_endpoint_descriptor_t *ed;
|
2001-04-16 04:18:06 +04:00
|
|
|
u_int8_t epcount;
|
|
|
|
int i, altno;
|
2004-10-23 17:28:26 +04:00
|
|
|
usbd_desc_iter_t iter;
|
2002-07-12 01:14:24 +04:00
|
|
|
|
2008-05-24 20:40:58 +04:00
|
|
|
sc->sc_dev = self;
|
|
|
|
|
2005-05-11 14:02:28 +04:00
|
|
|
devinfop = usbd_devinfo_alloc(dev, 0);
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_ATTACH_SETUP;
|
2008-05-24 20:40:58 +04:00
|
|
|
aprint_normal_dev(self, "%s, iclass %d/%d\n",
|
2005-05-11 14:02:28 +04:00
|
|
|
devinfop, ifcd->bInterfaceClass, ifcd->bInterfaceSubClass);
|
|
|
|
usbd_devinfo_free(devinfop);
|
2001-04-16 04:18:06 +04:00
|
|
|
|
2004-10-23 17:28:26 +04:00
|
|
|
/* Loop through descriptors looking for a bidir mode. */
|
|
|
|
usb_desc_iter_init(dev, &iter);
|
|
|
|
for (altno = 0;;) {
|
2005-05-30 08:21:39 +04:00
|
|
|
id = (const usb_interface_descriptor_t *)usb_desc_iter_next(&iter);
|
2004-10-23 17:28:26 +04:00
|
|
|
if (!id)
|
|
|
|
break;
|
2001-04-16 04:18:06 +04:00
|
|
|
if (id->bDescriptorType == UDESC_INTERFACE &&
|
|
|
|
id->bInterfaceNumber == ifcd->bInterfaceNumber) {
|
|
|
|
if (id->bInterfaceClass == UICLASS_PRINTER &&
|
|
|
|
id->bInterfaceSubClass == UISUBCLASS_PRINTER &&
|
2003-01-01 19:32:58 +03:00
|
|
|
(id->bInterfaceProtocol == UIPROTO_PRINTER_BI /*||
|
|
|
|
id->bInterfaceProtocol == UIPROTO_PRINTER_1284*/))
|
2001-04-16 04:18:06 +04:00
|
|
|
goto found;
|
|
|
|
altno++;
|
2005-02-27 03:26:58 +03:00
|
|
|
}
|
2001-04-16 04:18:06 +04:00
|
|
|
}
|
|
|
|
id = ifcd; /* not found, use original */
|
|
|
|
found:
|
|
|
|
if (id != ifcd) {
|
|
|
|
/* Found a new bidir setting */
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(1, ("ulpt_attach: set altno = %d\n", altno));
|
2001-04-16 04:18:06 +04:00
|
|
|
err = usbd_set_interface(iface, altno);
|
|
|
|
if (err) {
|
2008-05-24 20:40:58 +04:00
|
|
|
aprint_error_dev(self,
|
|
|
|
"setting alternate interface failed\n");
|
2001-04-16 04:18:06 +04:00
|
|
|
sc->sc_dying = 1;
|
|
|
|
USB_ATTACH_ERROR_RETURN;
|
|
|
|
}
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
epcount = 0;
|
|
|
|
(void)usbd_endpoint_count(iface, &epcount);
|
|
|
|
|
|
|
|
sc->sc_in = -1;
|
|
|
|
sc->sc_out = -1;
|
|
|
|
for (i = 0; i < epcount; i++) {
|
|
|
|
ed = usbd_interface2endpoint_descriptor(iface, i);
|
|
|
|
if (ed == NULL) {
|
2008-05-24 20:40:58 +04:00
|
|
|
aprint_error_dev(self, "couldn't get ep %d\n", i);
|
2001-04-16 04:18:06 +04:00
|
|
|
USB_ATTACH_ERROR_RETURN;
|
|
|
|
}
|
|
|
|
if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
|
|
|
|
UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
|
|
|
|
sc->sc_in = ed->bEndpointAddress;
|
|
|
|
} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
|
|
|
|
UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
|
|
|
|
sc->sc_out = ed->bEndpointAddress;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sc->sc_out == -1) {
|
2008-05-24 20:40:58 +04:00
|
|
|
aprint_error_dev(self, "could not find bulk out endpoint\n");
|
1999-06-30 10:44:22 +04:00
|
|
|
sc->sc_dying = 1;
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1999-06-30 10:44:22 +04:00
|
|
|
}
|
2001-04-16 04:18:06 +04:00
|
|
|
|
|
|
|
if (usbd_get_quirks(dev)->uq_flags & UQ_BROKEN_BIDIR) {
|
|
|
|
/* This device doesn't handle reading properly. */
|
|
|
|
sc->sc_in = -1;
|
|
|
|
}
|
|
|
|
|
2008-05-24 20:40:58 +04:00
|
|
|
aprint_normal_dev(self, "using %s-directional mode\n",
|
2002-08-15 13:32:50 +04:00
|
|
|
sc->sc_in >= 0 ? "bi" : "uni");
|
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
sc->sc_iface = iface;
|
1998-07-12 23:51:55 +04:00
|
|
|
sc->sc_ifaceno = id->bInterfaceNumber;
|
2001-04-16 04:18:06 +04:00
|
|
|
sc->sc_udev = dev;
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1999-09-10 23:28:26 +04:00
|
|
|
#if 0
|
|
|
|
/*
|
2000-04-14 18:12:11 +04:00
|
|
|
* This code is disabled because for some mysterious reason it causes
|
1999-09-10 23:28:26 +04:00
|
|
|
* printing not to work. But only sometimes, and mostly with
|
|
|
|
* UHCI and less often with OHCI. *sigh*
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
usb_config_descriptor_t *cd = usbd_get_config_descriptor(dev);
|
|
|
|
usb_device_request_t req;
|
|
|
|
int len, alen;
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
req.bmRequestType = UT_READ_CLASS_INTERFACE;
|
|
|
|
req.bRequest = UR_GET_DEVICE_ID;
|
|
|
|
USETW(req.wValue, cd->bConfigurationValue);
|
|
|
|
USETW2(req.wIndex, id->bInterfaceNumber, id->bAlternateSetting);
|
2005-05-23 20:35:26 +04:00
|
|
|
USETW(req.wLength, DEVINFOSIZE - 1);
|
|
|
|
err = usbd_do_request_flags(dev, &req, devinfop, USBD_SHORT_XFER_OK,
|
2002-02-11 18:11:49 +03:00
|
|
|
&alen, USBD_DEFAULT_TIMEOUT);
|
1999-11-12 03:34:57 +03:00
|
|
|
if (err) {
|
1998-12-26 15:53:00 +03:00
|
|
|
printf("%s: cannot get device id\n", USBDEVNAME(sc->sc_dev));
|
1999-08-24 02:35:19 +04:00
|
|
|
} else if (alen <= 2) {
|
|
|
|
printf("%s: empty device id, no printer connected?\n",
|
|
|
|
USBDEVNAME(sc->sc_dev));
|
|
|
|
} else {
|
2005-05-23 20:35:26 +04:00
|
|
|
/* devinfop now contains an IEEE-1284 device ID */
|
|
|
|
len = ((devinfop[0] & 0xff) << 8) | (devinfop[1] & 0xff);
|
|
|
|
if (len > DEVINFOSIZE - 3)
|
|
|
|
len = DEVINFOSIZE - 3;
|
|
|
|
devinfop[len] = 0;
|
1999-08-24 02:35:19 +04:00
|
|
|
printf("%s: device id <", USBDEVNAME(sc->sc_dev));
|
2005-05-23 20:35:26 +04:00
|
|
|
ieee1284_print_id(devinfop+2);
|
1999-08-24 02:35:19 +04:00
|
|
|
printf(">\n");
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
1999-09-10 23:28:26 +04:00
|
|
|
}
|
|
|
|
#endif
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1999-10-13 12:10:55 +04:00
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
sc->dev = make_dev(&ulpt_cdevsw, device_get_unit(self),
|
|
|
|
UID_ROOT, GID_OPERATOR, 0644, "ulpt%d", device_get_unit(self));
|
|
|
|
sc->dev_noprime = make_dev(&ulpt_cdevsw,
|
|
|
|
device_get_unit(self)|ULPT_NOPRIME,
|
|
|
|
UID_ROOT, GID_OPERATOR, 0644, "unlpt%d", device_get_unit(self));
|
|
|
|
#endif
|
|
|
|
|
2000-02-02 16:18:45 +03:00
|
|
|
usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
|
|
|
|
USBDEV(sc->sc_dev));
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(1, ("ulpt_attach: sc=%p in=%d out=%d\n",
|
|
|
|
sc, sc->sc_out, sc->sc_in));
|
|
|
|
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_ATTACH_SUCCESS_RETURN;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
1999-10-13 12:10:55 +04:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1999-06-30 10:44:22 +04:00
|
|
|
int
|
2000-06-01 18:28:57 +04:00
|
|
|
ulpt_activate(device_ptr_t self, enum devact act)
|
1999-06-30 10:44:22 +04:00
|
|
|
{
|
2008-05-24 20:40:58 +04:00
|
|
|
struct ulpt_softc *sc = device_private(self);
|
1999-08-24 02:55:14 +04:00
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
|
|
|
|
case DVACT_DEACTIVATE:
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
break;
|
|
|
|
}
|
1999-06-30 10:44:22 +04:00
|
|
|
return (0);
|
|
|
|
}
|
1999-10-13 12:10:55 +04:00
|
|
|
#endif
|
1999-06-30 10:44:22 +04:00
|
|
|
|
1999-10-13 12:10:55 +04:00
|
|
|
USB_DETACH(ulpt)
|
1999-06-30 10:44:22 +04:00
|
|
|
{
|
1999-10-13 12:10:55 +04:00
|
|
|
USB_DETACH_START(ulpt, sc);
|
1999-06-30 10:44:22 +04:00
|
|
|
int s;
|
1999-10-13 12:10:55 +04:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
|
|
|
int maj, mn;
|
|
|
|
#elif defined(__FreeBSD__)
|
2002-02-11 13:04:28 +03:00
|
|
|
struct vnode *vp;
|
1999-10-13 12:10:55 +04:00
|
|
|
#endif
|
1999-06-30 10:44:22 +04:00
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(1, ("ulpt_detach: sc=%p\n", sc));
|
2002-02-11 13:04:28 +03:00
|
|
|
|
1999-06-30 10:44:22 +04:00
|
|
|
sc->sc_dying = 1;
|
2001-04-16 04:18:06 +04:00
|
|
|
if (sc->sc_out_pipe != NULL)
|
|
|
|
usbd_abort_pipe(sc->sc_out_pipe);
|
|
|
|
if (sc->sc_in_pipe != NULL)
|
|
|
|
usbd_abort_pipe(sc->sc_in_pipe);
|
1999-06-30 10:44:22 +04:00
|
|
|
|
|
|
|
s = splusb();
|
|
|
|
if (--sc->sc_refcnt >= 0) {
|
|
|
|
/* There is noone to wake, aborting the pipe is enough */
|
|
|
|
/* Wait for processes to go away. */
|
1999-09-05 23:32:18 +04:00
|
|
|
usb_detach_wait(USBDEV(sc->sc_dev));
|
1999-06-30 10:44:22 +04:00
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
|
1999-10-13 12:10:55 +04:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1999-06-30 10:44:22 +04:00
|
|
|
/* locate the major number */
|
2002-09-06 17:18:43 +04:00
|
|
|
#if defined(__NetBSD__)
|
|
|
|
maj = cdevsw_lookup_major(&ulpt_cdevsw);
|
|
|
|
#elif defined(__OpenBSD__)
|
1999-06-30 10:44:22 +04:00
|
|
|
for (maj = 0; maj < nchrdev; maj++)
|
|
|
|
if (cdevsw[maj].d_open == ulptopen)
|
|
|
|
break;
|
2002-09-06 17:18:43 +04:00
|
|
|
#endif
|
1999-06-30 10:44:22 +04:00
|
|
|
|
|
|
|
/* Nuke the vnodes for any open instances (calls close). */
|
2006-03-28 21:38:24 +04:00
|
|
|
mn = device_unit(self);
|
1999-06-30 10:44:22 +04:00
|
|
|
vdevgone(maj, mn, mn, VCHR);
|
2003-01-05 13:19:42 +03:00
|
|
|
vdevgone(maj, mn | ULPT_NOPRIME , mn | ULPT_NOPRIME, VCHR);
|
1999-10-13 12:10:55 +04:00
|
|
|
#elif defined(__FreeBSD__)
|
2002-02-11 13:04:28 +03:00
|
|
|
vp = SLIST_FIRST(&sc->dev->si_hlist);
|
|
|
|
if (vp)
|
|
|
|
VOP_REVOKE(vp, REVOKEALL);
|
|
|
|
vp = SLIST_FIRST(&sc->dev_noprime->si_hlist);
|
|
|
|
if (vp)
|
|
|
|
VOP_REVOKE(vp, REVOKEALL);
|
1999-10-13 12:10:55 +04:00
|
|
|
|
1999-11-19 02:32:25 +03:00
|
|
|
destroy_dev(sc->dev);
|
|
|
|
destroy_dev(sc->dev_noprime);
|
1999-10-13 12:10:55 +04:00
|
|
|
#endif
|
1999-06-30 10:44:22 +04:00
|
|
|
|
2000-02-02 16:18:45 +03:00
|
|
|
usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
|
|
|
|
USBDEV(sc->sc_dev));
|
|
|
|
|
1999-06-30 10:44:22 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
int
|
2000-06-01 18:28:57 +04:00
|
|
|
ulpt_status(struct ulpt_softc *sc)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
|
|
|
usb_device_request_t req;
|
1999-11-12 03:34:57 +03:00
|
|
|
usbd_status err;
|
1998-07-12 23:51:55 +04:00
|
|
|
u_char status;
|
|
|
|
|
|
|
|
req.bmRequestType = UT_READ_CLASS_INTERFACE;
|
|
|
|
req.bRequest = UR_GET_PORT_STATUS;
|
|
|
|
USETW(req.wValue, 0);
|
|
|
|
USETW(req.wIndex, sc->sc_ifaceno);
|
|
|
|
USETW(req.wLength, 1);
|
1999-11-12 03:34:57 +03:00
|
|
|
err = usbd_do_request(sc->sc_udev, &req, &status);
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulpt_status: status=0x%02x err=%d\n", status, err));
|
1999-11-12 03:34:57 +03:00
|
|
|
if (!err)
|
1998-07-12 23:51:55 +04:00
|
|
|
return (status);
|
|
|
|
else
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-06-01 18:28:57 +04:00
|
|
|
ulpt_reset(struct ulpt_softc *sc)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
|
|
|
usb_device_request_t req;
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulpt_reset\n"));
|
1998-07-12 23:51:55 +04:00
|
|
|
req.bRequest = UR_SOFT_RESET;
|
|
|
|
USETW(req.wValue, 0);
|
|
|
|
USETW(req.wIndex, sc->sc_ifaceno);
|
|
|
|
USETW(req.wLength, 0);
|
2001-01-07 17:26:19 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There was a mistake in the USB printer 1.0 spec that gave the
|
2001-04-16 04:18:06 +04:00
|
|
|
* request type as UT_WRITE_CLASS_OTHER; it should have been
|
2001-01-07 17:26:19 +03:00
|
|
|
* UT_WRITE_CLASS_INTERFACE. Many printers use the old one,
|
|
|
|
* so we try both.
|
|
|
|
*/
|
2002-02-26 01:39:01 +03:00
|
|
|
req.bmRequestType = UT_WRITE_CLASS_OTHER;
|
2001-04-16 04:18:06 +04:00
|
|
|
if (usbd_do_request(sc->sc_udev, &req, 0)) { /* 1.0 */
|
2001-01-07 17:26:19 +03:00
|
|
|
req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
|
2001-04-16 04:18:06 +04:00
|
|
|
(void)usbd_do_request(sc->sc_udev, &req, 0); /* 1.1 */
|
2001-01-07 17:26:19 +03:00
|
|
|
}
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
int ulptusein = 1;
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
/*
|
|
|
|
* Reset the printer, then wait until it's selected and not busy.
|
|
|
|
*/
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
ulptopen(dev_t dev, int flag, int mode, struct lwp *l)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
|
|
|
u_char flags = ULPTFLAGS(dev);
|
1999-10-12 15:54:56 +04:00
|
|
|
struct ulpt_softc *sc;
|
1999-11-12 03:34:57 +03:00
|
|
|
usbd_status err;
|
1998-07-12 23:51:55 +04:00
|
|
|
int spin, error;
|
1999-10-12 15:54:56 +04:00
|
|
|
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_GET_SC_OPEN(ulpt, ULPTUNIT(dev), sc);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1999-11-19 02:32:25 +03:00
|
|
|
if (sc == NULL || sc->sc_iface == NULL || sc->sc_dying)
|
1999-07-14 23:12:07 +04:00
|
|
|
return (ENXIO);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
if (sc->sc_state)
|
1999-07-14 23:12:07 +04:00
|
|
|
return (EBUSY);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
sc->sc_state = ULPT_INIT;
|
|
|
|
sc->sc_flags = flags;
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulptopen: flags=0x%x\n", (unsigned)flags));
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1999-10-13 12:10:55 +04:00
|
|
|
#if defined(ULPT_DEBUG) && defined(__FreeBSD__)
|
|
|
|
/* Ignoring these flags might not be a good idea */
|
|
|
|
if ((flags & ~ULPT_NOPRIME) != 0)
|
|
|
|
printf("ulptopen: flags ignored: %b\n", flags,
|
|
|
|
"\20\3POS_INIT\4POS_ACK\6PRIME_OPEN\7AUTOLF\10BYPASS");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2000-12-05 17:01:33 +03:00
|
|
|
error = 0;
|
|
|
|
sc->sc_refcnt++;
|
|
|
|
|
2004-07-03 23:33:15 +04:00
|
|
|
#if 0 /* XXX causes some printers to disconnect */
|
1998-07-12 23:51:55 +04:00
|
|
|
if ((flags & ULPT_NOPRIME) == 0)
|
|
|
|
ulpt_reset(sc);
|
2004-07-03 23:33:15 +04:00
|
|
|
#endif
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
for (spin = 0; (ulpt_status(sc) & LPS_SELECT) == 0; spin += STEP) {
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulpt_open: waiting a while\n"));
|
1998-07-12 23:51:55 +04:00
|
|
|
if (spin >= TIMEOUT) {
|
2000-12-05 17:01:33 +03:00
|
|
|
error = EBUSY;
|
1998-07-12 23:51:55 +04:00
|
|
|
sc->sc_state = 0;
|
2000-12-05 17:01:33 +03:00
|
|
|
goto done;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* wait 1/4 second, give up if we get a signal */
|
2007-03-04 08:59:00 +03:00
|
|
|
error = tsleep((void *)sc, LPTPRI | PCATCH, "ulptop", STEP);
|
1998-07-12 23:51:55 +04:00
|
|
|
if (error != EWOULDBLOCK) {
|
|
|
|
sc->sc_state = 0;
|
2000-12-05 17:01:33 +03:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->sc_dying) {
|
|
|
|
error = ENXIO;
|
|
|
|
sc->sc_state = 0;
|
|
|
|
goto done;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
err = usbd_open_pipe(sc->sc_iface, sc->sc_out, 0, &sc->sc_out_pipe);
|
1999-11-12 03:34:57 +03:00
|
|
|
if (err) {
|
2000-12-05 17:01:33 +03:00
|
|
|
error = EIO;
|
2003-10-05 01:19:50 +04:00
|
|
|
goto err0;
|
|
|
|
}
|
|
|
|
sc->sc_out_xfer = usbd_alloc_xfer(sc->sc_udev);
|
|
|
|
if (sc->sc_out_xfer == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
sc->sc_out_buf = usbd_alloc_buffer(sc->sc_out_xfer, ULPT_BSIZE);
|
|
|
|
if (sc->sc_out_buf == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto err2;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
2003-10-05 01:19:50 +04:00
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
if (ulptusein && sc->sc_in != -1) {
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulpt_open: opening input pipe %d\n", sc->sc_in));
|
2001-04-16 04:18:06 +04:00
|
|
|
err = usbd_open_pipe(sc->sc_iface, sc->sc_in,0,&sc->sc_in_pipe);
|
|
|
|
if (err) {
|
|
|
|
error = EIO;
|
2003-10-05 01:19:50 +04:00
|
|
|
goto err2;
|
2001-04-16 04:18:06 +04:00
|
|
|
}
|
2003-10-05 01:19:50 +04:00
|
|
|
sc->sc_in_xfer = usbd_alloc_xfer(sc->sc_udev);
|
|
|
|
if (sc->sc_in_xfer == NULL) {
|
2001-04-16 04:18:06 +04:00
|
|
|
error = ENOMEM;
|
2003-10-05 01:19:50 +04:00
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
sc->sc_in_buf = usbd_alloc_buffer(sc->sc_in_xfer, ULPT_BSIZE);
|
|
|
|
if (sc->sc_in_buf == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto err4;
|
|
|
|
}
|
|
|
|
|
2005-05-23 20:35:26 +04:00
|
|
|
/* If it's not opened for read then set up a reader. */
|
2005-11-13 13:47:39 +03:00
|
|
|
if (!(flag & FREAD)) {
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulpt_open: start read callout\n"));
|
2003-10-05 01:19:50 +04:00
|
|
|
usb_callout_init(sc->sc_read_callout);
|
|
|
|
usb_callout(sc->sc_read_callout, hz/5, ulpt_tick, sc);
|
|
|
|
sc->sc_has_callout = 1;
|
2001-04-16 04:18:06 +04:00
|
|
|
}
|
|
|
|
}
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
sc->sc_state = ULPT_OPEN;
|
2003-10-05 01:19:50 +04:00
|
|
|
goto done;
|
|
|
|
|
|
|
|
err4:
|
|
|
|
usbd_free_xfer(sc->sc_in_xfer);
|
|
|
|
sc->sc_in_xfer = NULL;
|
|
|
|
err3:
|
|
|
|
usbd_close_pipe(sc->sc_in_pipe);
|
|
|
|
sc->sc_in_pipe = NULL;
|
|
|
|
err2:
|
|
|
|
usbd_free_xfer(sc->sc_out_xfer);
|
|
|
|
sc->sc_out_xfer = NULL;
|
|
|
|
err1:
|
|
|
|
usbd_close_pipe(sc->sc_out_pipe);
|
|
|
|
sc->sc_out_pipe = NULL;
|
|
|
|
err0:
|
|
|
|
sc->sc_state = 0;
|
1998-07-12 23:51:55 +04:00
|
|
|
|
2000-12-05 17:01:33 +03:00
|
|
|
done:
|
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
usb_detach_wakeup(USBDEV(sc->sc_dev));
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulptopen: done, error=%d\n", error));
|
2000-12-05 17:01:33 +03:00
|
|
|
return (error);
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
/*
|
|
|
|
* XXX Document return value semantics.
|
|
|
|
*/
|
1998-07-12 23:51:55 +04:00
|
|
|
int
|
2000-06-01 18:28:57 +04:00
|
|
|
ulpt_statusmsg(u_char status, struct ulpt_softc *sc)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
|
|
|
u_char new;
|
|
|
|
|
|
|
|
status = (status ^ LPS_INVERT) & LPS_MASK;
|
|
|
|
new = status & ~sc->sc_laststatus;
|
|
|
|
sc->sc_laststatus = status;
|
|
|
|
|
|
|
|
if (new & LPS_SELECT)
|
1998-12-26 15:53:00 +03:00
|
|
|
log(LOG_NOTICE, "%s: offline\n", USBDEVNAME(sc->sc_dev));
|
2008-01-08 03:58:09 +03:00
|
|
|
if (new & LPS_NOPAPER)
|
1998-12-26 15:53:00 +03:00
|
|
|
log(LOG_NOTICE, "%s: out of paper\n", USBDEVNAME(sc->sc_dev));
|
2008-01-08 03:58:09 +03:00
|
|
|
if (new & LPS_NERR)
|
1998-12-26 15:53:00 +03:00
|
|
|
log(LOG_NOTICE, "%s: output error\n", USBDEVNAME(sc->sc_dev));
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1999-07-14 23:12:07 +04:00
|
|
|
return (status);
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
ulptclose(dev_t dev, int flag, int mode,
|
|
|
|
struct lwp *l)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
1999-10-12 15:54:56 +04:00
|
|
|
struct ulpt_softc *sc;
|
|
|
|
|
1998-12-26 15:53:00 +03:00
|
|
|
USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1999-07-14 23:12:07 +04:00
|
|
|
if (sc->sc_state != ULPT_OPEN)
|
|
|
|
/* We are being forced to close before the open completed. */
|
|
|
|
return (0);
|
|
|
|
|
2003-10-05 01:19:50 +04:00
|
|
|
if (sc->sc_has_callout) {
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulptclose: stopping read callout\n"));
|
2003-10-05 01:19:50 +04:00
|
|
|
usb_uncallout(sc->sc_read_callout, ulpt_tick, sc);
|
|
|
|
sc->sc_has_callout = 0;
|
|
|
|
}
|
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
if (sc->sc_out_pipe != NULL) {
|
2003-10-05 01:19:50 +04:00
|
|
|
usbd_abort_pipe(sc->sc_out_pipe);
|
2001-04-16 04:18:06 +04:00
|
|
|
usbd_close_pipe(sc->sc_out_pipe);
|
|
|
|
sc->sc_out_pipe = NULL;
|
|
|
|
}
|
2003-10-05 01:19:50 +04:00
|
|
|
if (sc->sc_out_xfer != NULL) {
|
|
|
|
usbd_free_xfer(sc->sc_out_xfer);
|
|
|
|
sc->sc_out_xfer = NULL;
|
|
|
|
}
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2001-04-16 04:18:06 +04:00
|
|
|
if (sc->sc_in_pipe != NULL) {
|
|
|
|
usbd_abort_pipe(sc->sc_in_pipe);
|
|
|
|
usbd_close_pipe(sc->sc_in_pipe);
|
|
|
|
sc->sc_in_pipe = NULL;
|
2003-10-05 01:19:50 +04:00
|
|
|
}
|
|
|
|
if (sc->sc_in_xfer != NULL) {
|
|
|
|
usbd_free_xfer(sc->sc_in_xfer);
|
|
|
|
sc->sc_in_xfer = NULL;
|
2001-04-16 04:18:06 +04:00
|
|
|
}
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
sc->sc_state = 0;
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(2, ("ulptclose: closed\n"));
|
1998-07-12 23:51:55 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
ulpt_do_write(struct ulpt_softc *sc, struct uio *uio, int flags)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
1999-08-23 02:22:43 +04:00
|
|
|
u_int32_t n;
|
1998-07-12 23:51:55 +04:00
|
|
|
int error = 0;
|
1999-09-11 14:40:07 +04:00
|
|
|
void *bufp;
|
1999-11-12 03:34:57 +03:00
|
|
|
usbd_xfer_handle xfer;
|
|
|
|
usbd_status err;
|
1998-07-12 23:51:55 +04:00
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(3, ("ulptwrite\n"));
|
2003-10-05 01:19:50 +04:00
|
|
|
xfer = sc->sc_out_xfer;
|
|
|
|
bufp = sc->sc_out_buf;
|
1998-07-12 23:51:55 +04:00
|
|
|
while ((n = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
|
|
|
|
ulpt_statusmsg(ulpt_status(sc), sc);
|
1999-09-11 14:40:07 +04:00
|
|
|
error = uiomove(bufp, n, uio);
|
1998-12-08 18:12:24 +03:00
|
|
|
if (error)
|
|
|
|
break;
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(4, ("ulptwrite: transfer %d bytes\n", n));
|
2002-07-12 01:14:24 +04:00
|
|
|
err = usbd_bulk_transfer(xfer, sc->sc_out_pipe, USBD_NO_COPY,
|
1999-11-12 03:34:57 +03:00
|
|
|
USBD_NO_TIMEOUT, bufp, &n, "ulptwr");
|
|
|
|
if (err) {
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(3, ("ulptwrite: error=%d\n", err));
|
1998-07-12 23:51:55 +04:00
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-06-30 10:44:22 +04:00
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-01 18:28:57 +04:00
|
|
|
ulptwrite(dev_t dev, struct uio *uio, int flags)
|
1999-06-30 10:44:22 +04:00
|
|
|
{
|
1999-10-12 15:54:56 +04:00
|
|
|
struct ulpt_softc *sc;
|
1999-06-30 10:44:22 +04:00
|
|
|
int error;
|
|
|
|
|
1999-10-12 15:54:56 +04:00
|
|
|
USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
|
|
|
|
|
1999-09-09 16:26:43 +04:00
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
|
|
|
|
1999-06-30 10:44:22 +04:00
|
|
|
sc->sc_refcnt++;
|
|
|
|
error = ulpt_do_write(sc, uio, flags);
|
|
|
|
if (--sc->sc_refcnt < 0)
|
1999-09-05 23:32:18 +04:00
|
|
|
usb_detach_wakeup(USBDEV(sc->sc_dev));
|
1998-07-12 23:51:55 +04:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
/*
|
|
|
|
* Perform a read operation according to the given uio.
|
|
|
|
* This should respect nonblocking I/O status.
|
|
|
|
*
|
|
|
|
* XXX Doing a short read when more data is available seems to be
|
|
|
|
* problematic. See
|
|
|
|
* http://www.freebsd.org/cgi/query-pr.cgi?pr=91538&cat= for a fix.
|
|
|
|
* However, this will be unnecessary given a proper fix for the next
|
|
|
|
* problem, and most actual callers read a lot.
|
|
|
|
*
|
|
|
|
* XXX This code should interact properly with select/poll, and that
|
|
|
|
* requires the USB transactions to be queued and function before the
|
|
|
|
* user does a read. Read will then consume data from a buffer, and
|
|
|
|
* not interact with the device. See ucom.c for an example of how to
|
|
|
|
* do this.
|
|
|
|
*/
|
2003-10-05 01:19:50 +04:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
ulpt_do_read(struct ulpt_softc *sc, struct uio *uio, int flags)
|
2003-10-05 01:19:50 +04:00
|
|
|
{
|
2008-01-08 03:58:09 +03:00
|
|
|
u_int32_t n, nread, nreq;
|
|
|
|
int error = 0, nonblocking, timeout;
|
2003-10-05 01:19:50 +04:00
|
|
|
void *bufp;
|
|
|
|
usbd_xfer_handle xfer;
|
2008-01-08 03:58:09 +03:00
|
|
|
usbd_status err = USBD_NORMAL_COMPLETION;
|
2003-10-05 01:19:50 +04:00
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
/* XXX Resolve with background reader process. KASSERT? */
|
2003-10-05 01:19:50 +04:00
|
|
|
if (sc->sc_in_pipe == NULL)
|
2008-01-08 03:58:09 +03:00
|
|
|
return EIO;
|
|
|
|
|
|
|
|
if (flags & IO_NDELAY)
|
|
|
|
nonblocking = 1;
|
|
|
|
else
|
|
|
|
nonblocking = 0;
|
|
|
|
|
|
|
|
if (nonblocking)
|
|
|
|
timeout = USBD_DEFAULT_TIMEOUT; /* 5 ms */
|
|
|
|
else
|
|
|
|
timeout = USBD_NO_TIMEOUT;
|
|
|
|
|
|
|
|
DPRINTFN(3, ("ulptread nonblocking=%d uio_reside=%d timeout=%d\n",
|
|
|
|
nonblocking, uio->uio_resid, timeout));
|
2003-10-05 01:19:50 +04:00
|
|
|
|
|
|
|
xfer = sc->sc_in_xfer;
|
|
|
|
bufp = sc->sc_in_buf;
|
2008-01-08 03:58:09 +03:00
|
|
|
nread = 0;
|
|
|
|
while ((nreq = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
|
|
|
|
KASSERT(error == 0);
|
|
|
|
if (error != 0) {
|
|
|
|
printf("ulptread: pre-switch error %d != 0", error);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX Even with the short timeout, this will tsleep,
|
|
|
|
* but it should be adequately prompt in practice.
|
|
|
|
*/
|
|
|
|
n = nreq;
|
|
|
|
DPRINTFN(4, ("ulptread: transfer %d bytes, nonblocking=%d timeout=%d\n",
|
|
|
|
n, nonblocking, timeout));
|
2003-10-05 01:19:50 +04:00
|
|
|
err = usbd_bulk_transfer(xfer, sc->sc_in_pipe,
|
|
|
|
USBD_NO_COPY | USBD_SHORT_XFER_OK,
|
2008-01-08 03:58:09 +03:00
|
|
|
timeout, bufp, &n, "ulptrd");
|
|
|
|
|
|
|
|
DPRINTFN(4, ("ulptread: transfer complete nreq %d n %d nread %d err %d\n",
|
|
|
|
nreq, n, nread, err));
|
|
|
|
/*
|
|
|
|
* Process "err" return, jumping to done if we set "error".
|
|
|
|
*/
|
|
|
|
switch (err) {
|
|
|
|
case USBD_NORMAL_COMPLETION:
|
|
|
|
if (n == 0) {
|
|
|
|
DPRINTFN(3, ("ulptread: NORMAL n==0\n"));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBD_SHORT_XFER:
|
|
|
|
/* We said SHORT_XFER_OK, so shouldn't happen. */
|
|
|
|
DPRINTFN(3, ("ulptread: SHORT n=%d\n", n));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBD_TIMEOUT:
|
|
|
|
if (nonblocking == 0) {
|
|
|
|
/* XXX Cannot happen; perhaps KASSERT. */
|
|
|
|
printf("ulptread: timeout in blocking mode\n");
|
|
|
|
error = EIO;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTFN(3, ("ulptread: TIMEOUT n %d nread %d error %d\n",
|
|
|
|
n, nread, error));
|
|
|
|
/*
|
|
|
|
* Don't set error until we understand why
|
|
|
|
* this happens.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USBD_INTERRUPTED:
|
|
|
|
/*
|
|
|
|
* The tsleep in usbd_bulk_transfer was
|
|
|
|
* interrupted. Reflect it to the caller so
|
|
|
|
* that reading can be interrupted.
|
|
|
|
*/
|
|
|
|
error = EINTR;
|
|
|
|
DPRINTFN(3, ("ulptread: EINTR error %d\n", error));
|
|
|
|
goto done;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* Assume all other return codes are really errors. */
|
2003-10-05 01:19:50 +04:00
|
|
|
error = EIO;
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(3, ("ulptread: n %d err %d error %d\n",
|
|
|
|
n, err, error));
|
|
|
|
goto done;
|
2003-10-05 01:19:50 +04:00
|
|
|
break;
|
|
|
|
}
|
2008-01-08 03:58:09 +03:00
|
|
|
/* XXX KASSERT */
|
|
|
|
if (error != 0) {
|
|
|
|
printf("ulptread: post-switch error %d != 0", error);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n > 0) {
|
|
|
|
/*
|
|
|
|
* Record progress to enable later choosing
|
|
|
|
* between short reads and EWOULDBLOCK.
|
|
|
|
*/
|
|
|
|
nread += n;
|
|
|
|
|
|
|
|
/* Copy to userspace, giving up on any error. */
|
|
|
|
error = uiomove(bufp, n, uio);
|
|
|
|
if (error != 0)
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* We read 0 bytes, and therefore are done,
|
|
|
|
* even if we aren't in nonblocking mode.
|
|
|
|
*/
|
|
|
|
if (error == 0 && nread == 0)
|
|
|
|
error = EWOULDBLOCK;
|
|
|
|
DPRINTFN(3, ("ulptread: read 0=>done error %d\n",
|
|
|
|
error));
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A short transfer indicates no more data will be
|
|
|
|
* forthcoming. Terminate this read regardless of
|
|
|
|
* whether we are in nonblocking mode. XXX Reconsider
|
|
|
|
* for blocking mode; maybe we should continue to
|
|
|
|
* block, but maybe it just doesn't make senes to do
|
|
|
|
* blocking reads from devices like this.
|
|
|
|
*/
|
|
|
|
if (err == USBD_SHORT_XFER) {
|
|
|
|
DPRINTFN(3, ("ulptread: SHORT=>done n %d nread %d err %d error %d\n",
|
|
|
|
n, nread, err, error));
|
2003-10-05 01:19:50 +04:00
|
|
|
break;
|
2008-01-08 03:58:09 +03:00
|
|
|
}
|
2003-10-05 01:19:50 +04:00
|
|
|
}
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
done:
|
|
|
|
DPRINTFN(3, ("ulptread: finished n %d nread %d err %d error %d\n",
|
|
|
|
n, nread, err, error));
|
2003-10-05 01:19:50 +04:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ulptread(dev_t dev, struct uio *uio, int flags)
|
|
|
|
{
|
|
|
|
struct ulpt_softc *sc;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
|
|
|
|
|
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
sc->sc_refcnt++;
|
|
|
|
error = ulpt_do_read(sc, uio, flags);
|
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
usb_detach_wakeup(USBDEV(sc->sc_dev));
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-11-16 04:32:37 +03:00
|
|
|
ulpt_read_cb(usbd_xfer_handle xfer, usbd_private_handle priv,
|
|
|
|
usbd_status status)
|
2003-10-05 01:19:50 +04:00
|
|
|
{
|
|
|
|
usbd_status err;
|
|
|
|
u_int32_t n;
|
|
|
|
usbd_private_handle xsc;
|
|
|
|
struct ulpt_softc *sc;
|
|
|
|
|
|
|
|
usbd_get_xfer_status(xfer, &xsc, NULL, &n, &err);
|
|
|
|
sc = xsc;
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(4, ("ulpt_read_cb: start sc=%p, err=%d n=%d\n", sc, err, n));
|
2003-10-05 01:19:50 +04:00
|
|
|
|
|
|
|
#ifdef ULPT_DEBUG
|
|
|
|
if (!err && n > 0)
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(3, ("ulpt_tick: discarding %d bytes\n", n));
|
2003-10-05 01:19:50 +04:00
|
|
|
#endif
|
|
|
|
if (!err || err == USBD_TIMEOUT)
|
|
|
|
usb_callout(sc->sc_read_callout, hz / ULPT_READS_PER_SEC,
|
|
|
|
ulpt_tick, sc);
|
|
|
|
}
|
|
|
|
|
2008-01-08 03:58:09 +03:00
|
|
|
/*
|
|
|
|
* For devices which are not opened for reading, this function is
|
|
|
|
* called continuously to start read bulk transfers to avoid the
|
|
|
|
* printer overflowing its output buffer.
|
|
|
|
*
|
|
|
|
* XXX This should be adapted for continuous reads to allow select to
|
|
|
|
* work; see do_ulpt_read().
|
|
|
|
*/
|
2003-10-05 01:19:50 +04:00
|
|
|
void
|
|
|
|
ulpt_tick(void *xsc)
|
|
|
|
{
|
|
|
|
struct ulpt_softc *sc = xsc;
|
|
|
|
usbd_status err;
|
|
|
|
|
|
|
|
if (sc == NULL || sc->sc_dying)
|
|
|
|
return;
|
|
|
|
|
|
|
|
usbd_setup_xfer(sc->sc_in_xfer, sc->sc_in_pipe, sc, sc->sc_in_buf,
|
|
|
|
ULPT_BSIZE, USBD_NO_COPY | USBD_SHORT_XFER_OK,
|
|
|
|
ULPT_READ_TIMO, ulpt_read_cb);
|
|
|
|
err = usbd_transfer(sc->sc_in_xfer);
|
2008-01-08 03:58:09 +03:00
|
|
|
DPRINTFN(3, ("ulpt_tick: sc=%p err=%d\n", sc, err));
|
2003-10-05 01:19:50 +04:00
|
|
|
}
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
int
|
2007-03-04 08:59:00 +03:00
|
|
|
ulptioctl(dev_t dev, u_long cmd, void *data,
|
2006-11-16 04:32:37 +03:00
|
|
|
int flag, struct lwp *l)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
2008-01-08 03:58:09 +03:00
|
|
|
struct ulpt_softc *sc;
|
|
|
|
|
|
|
|
USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case FIONBIO:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-12 05:30:41 +04:00
|
|
|
return ENODEV;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
1998-12-26 15:53:00 +03:00
|
|
|
|
1999-09-10 23:28:26 +04:00
|
|
|
#if 0
|
1999-08-24 02:35:19 +04:00
|
|
|
/* XXX This does not belong here. */
|
|
|
|
/*
|
1999-08-24 02:55:14 +04:00
|
|
|
* Print select parts of a IEEE 1284 device ID.
|
1999-08-24 02:35:19 +04:00
|
|
|
*/
|
|
|
|
void
|
2000-06-01 18:28:57 +04:00
|
|
|
ieee1284_print_id(char *str)
|
1999-08-24 02:35:19 +04:00
|
|
|
{
|
|
|
|
char *p, *q;
|
|
|
|
|
|
|
|
for (p = str-1; p; p = strchr(p, ';')) {
|
|
|
|
p++; /* skip ';' */
|
|
|
|
if (strncmp(p, "MFG:", 4) == 0 ||
|
|
|
|
strncmp(p, "MANUFACTURER:", 14) == 0 ||
|
|
|
|
strncmp(p, "MDL:", 4) == 0 ||
|
|
|
|
strncmp(p, "MODEL:", 6) == 0) {
|
|
|
|
q = strchr(p, ';');
|
|
|
|
if (q)
|
|
|
|
printf("%.*s", (int)(q - p + 1), p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-09-10 23:28:26 +04:00
|
|
|
#endif
|
1999-08-24 02:35:19 +04:00
|
|
|
|
1998-12-26 15:53:00 +03:00
|
|
|
#if defined(__FreeBSD__)
|
1999-11-19 02:32:25 +03:00
|
|
|
DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass, usbd_driver_load, 0);
|
1998-12-26 15:53:00 +03:00
|
|
|
#endif
|