1999-11-28 21:01:06 +00:00
|
|
|
/* $NetBSD: ulpt.c,v 1.29 1999/11/17 23:00:50 augustss Exp $ */
|
1999-01-12 01:18:38 +00:00
|
|
|
/* $FreeBSD$ */
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
1999-01-07 23:07:57 +00:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Lennart Augustsson (augustss@carlstedt.se) at
|
|
|
|
* Carlstedt Research & Technology.
|
1998-11-26 23:13:13 +00: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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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-05-30 13:03:00 +00:00
|
|
|
/*
|
|
|
|
* Printer Class spec: http://www.usb.org/developers/data/usbprn10.pdf
|
|
|
|
*/
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
/* XXX Note in the manpage the ULPT_NOPRIME version of the printer */
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#if defined(__NetBSD__)
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
#include <sys/ioccom.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/conf.h>
|
1999-10-07 19:26:38 +00:00
|
|
|
#include <sys/vnode.h>
|
1998-11-26 23:13:13 +00:00
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
|
|
|
#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)
|
1999-11-17 22:33:51 +00:00
|
|
|
#define ULPT_BSIZE 16384
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-04-11 20:50:33 +00:00
|
|
|
#ifdef ULPT_DEBUG
|
|
|
|
#define DPRINTF(x) if (ulptdebug) logprintf x
|
|
|
|
#define DPRINTFN(n,x) if (ulptdebug>(n)) logprintf x
|
1999-10-07 19:26:38 +00:00
|
|
|
int ulptdebug = 0;
|
1998-11-26 23:13:13 +00:00
|
|
|
#else
|
|
|
|
#define DPRINTF(x)
|
|
|
|
#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-10-07 19:26:38 +00:00
|
|
|
USBBASEDEVICE sc_dev;
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_device_handle sc_udev; /* device */
|
|
|
|
usbd_interface_handle sc_iface; /* interface */
|
|
|
|
int sc_ifaceno;
|
|
|
|
usbd_pipe_handle sc_bulkpipe; /* bulk pipe */
|
|
|
|
int sc_bulk;
|
|
|
|
|
|
|
|
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-10-07 19:26:38 +00:00
|
|
|
|
|
|
|
int sc_refcnt;
|
|
|
|
u_char sc_dying;
|
|
|
|
|
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
dev_t dev;
|
|
|
|
dev_t dev_noprime;
|
|
|
|
#endif
|
1998-11-26 23:13:13 +00:00
|
|
|
};
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1999-11-17 22:33:51 +00:00
|
|
|
cdev_decl(ulpt);
|
1999-01-11 00:03:59 +00:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
static d_open_t ulptopen;
|
|
|
|
static d_close_t ulptclose;
|
|
|
|
static d_write_t ulptwrite;
|
|
|
|
static d_ioctl_t ulptioctl;
|
|
|
|
|
|
|
|
#define ULPT_CDEV_MAJOR 113
|
|
|
|
|
1999-05-30 16:53:49 +00:00
|
|
|
static struct cdevsw ulpt_cdevsw = {
|
|
|
|
/* 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,
|
|
|
|
/* bmaj */ -1
|
1999-01-11 00:03:59 +00:00
|
|
|
};
|
|
|
|
#endif
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
void ulpt_disco __P((void *));
|
|
|
|
|
|
|
|
int ulpt_do_write __P((struct ulpt_softc *, struct uio *uio, int));
|
1998-11-26 23:13:13 +00:00
|
|
|
int ulpt_status __P((struct ulpt_softc *));
|
|
|
|
void ulpt_reset __P((struct ulpt_softc *));
|
|
|
|
int ulpt_statusmsg __P((u_char, struct ulpt_softc *));
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
void ieee1284_print_id __P((char *));
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
#define ULPTUNIT(s) (minor(s) & 0x1f)
|
|
|
|
#define ULPTFLAGS(s) (minor(s) & 0xe0)
|
1999-10-07 19:26:38 +00:00
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_DECLARE_DRIVER(ulpt);
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_MATCH(ulpt)
|
1998-11-26 23:13:13 +00:00
|
|
|
{
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_MATCH_START(ulpt, uaa);
|
1998-11-26 23:13:13 +00:00
|
|
|
usb_interface_descriptor_t *id;
|
|
|
|
|
|
|
|
DPRINTFN(10,("ulpt_match\n"));
|
1999-11-17 22:33:51 +00:00
|
|
|
if (uaa->iface == NULL)
|
1998-11-26 23:13:13 +00:00
|
|
|
return (UMATCH_NONE);
|
|
|
|
id = usbd_get_interface_descriptor(uaa->iface);
|
1999-11-17 22:33:51 +00:00
|
|
|
if (id != NULL &&
|
1999-01-07 23:07:57 +00:00
|
|
|
id->bInterfaceClass == UCLASS_PRINTER &&
|
1998-11-26 23:13:13 +00:00
|
|
|
id->bInterfaceSubClass == USUBCLASS_PRINTER &&
|
|
|
|
(id->bInterfaceProtocol == UPROTO_PRINTER_UNI ||
|
|
|
|
id->bInterfaceProtocol == UPROTO_PRINTER_BI))
|
|
|
|
return (UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO);
|
|
|
|
return (UMATCH_NONE);
|
|
|
|
}
|
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH(ulpt)
|
1998-11-26 23:13:13 +00:00
|
|
|
{
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_START(ulpt, sc, uaa);
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_device_handle dev = uaa->device;
|
|
|
|
usbd_interface_handle iface = uaa->iface;
|
|
|
|
usb_interface_descriptor_t *id = usbd_get_interface_descriptor(iface);
|
|
|
|
char devinfo[1024];
|
|
|
|
usb_endpoint_descriptor_t *ed;
|
1999-11-17 22:33:51 +00:00
|
|
|
usbd_status err;
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
DPRINTFN(10,("ulpt_attach: sc=%p\n", sc));
|
|
|
|
usbd_devinfo(dev, 0, devinfo);
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_SETUP;
|
|
|
|
printf("%s: %s, iclass %d/%d\n", USBDEVNAME(sc->sc_dev),
|
|
|
|
devinfo, id->bInterfaceClass, id->bInterfaceSubClass);
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
/* Figure out which endpoint is the bulk out endpoint. */
|
|
|
|
ed = usbd_interface2endpoint_descriptor(iface, 0);
|
1999-11-17 22:33:51 +00:00
|
|
|
if (ed == NULL)
|
1998-11-26 23:13:13 +00:00
|
|
|
goto nobulk;
|
1999-10-07 19:26:38 +00:00
|
|
|
if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_OUT ||
|
1998-11-26 23:13:13 +00:00
|
|
|
(ed->bmAttributes & UE_XFERTYPE) != UE_BULK) {
|
|
|
|
/* In case we are using a bidir protocol... */
|
|
|
|
ed = usbd_interface2endpoint_descriptor(iface, 1);
|
1999-11-17 22:33:51 +00:00
|
|
|
if (ed == NULL)
|
1998-11-26 23:13:13 +00:00
|
|
|
goto nobulk;
|
1999-10-07 19:26:38 +00:00
|
|
|
if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_OUT ||
|
1998-11-26 23:13:13 +00:00
|
|
|
(ed->bmAttributes & UE_XFERTYPE) != UE_BULK)
|
|
|
|
goto nobulk;
|
|
|
|
}
|
|
|
|
sc->sc_bulk = ed->bEndpointAddress;
|
|
|
|
DPRINTFN(10, ("ulpt_attach: bulk=%d\n", sc->sc_bulk));
|
|
|
|
|
|
|
|
sc->sc_iface = iface;
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_interface2device_handle(iface, &sc->sc_udev);
|
|
|
|
if (err) {
|
1999-10-07 19:26:38 +00:00
|
|
|
sc->sc_dying = 1;
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1999-10-07 19:26:38 +00:00
|
|
|
}
|
1998-11-26 23:13:13 +00:00
|
|
|
sc->sc_ifaceno = id->bInterfaceNumber;
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* This code is disabled because for some mysterious it causes
|
|
|
|
* 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-11-26 23:13:13 +00: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);
|
|
|
|
USETW(req.wLength, sizeof devinfo - 1);
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_do_request_flags(dev, &req, devinfo, USBD_SHORT_XFER_OK,
|
|
|
|
&alen);
|
|
|
|
if (err) {
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: cannot get device id\n", USBDEVNAME(sc->sc_dev));
|
1999-10-07 19:26:38 +00:00
|
|
|
} else if (alen <= 2) {
|
|
|
|
printf("%s: empty device id, no printer connected?\n",
|
|
|
|
USBDEVNAME(sc->sc_dev));
|
|
|
|
} else {
|
|
|
|
/* devinfo now contains an IEEE-1284 device ID */
|
|
|
|
len = ((devinfo[0] & 0xff) << 8) | (devinfo[1] & 0xff);
|
|
|
|
if (len > sizeof devinfo - 3)
|
|
|
|
len = sizeof devinfo - 3;
|
|
|
|
devinfo[len] = 0;
|
|
|
|
printf("%s: device id <", USBDEVNAME(sc->sc_dev));
|
|
|
|
ieee1284_print_id(devinfo+2);
|
|
|
|
printf(">\n");
|
|
|
|
}
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
1999-10-07 19:26:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_SUCCESS_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
nobulk:
|
1999-01-07 23:07:57 +00:00
|
|
|
printf("%s: could not find bulk endpoint\n", USBDEVNAME(sc->sc_dev));
|
1999-10-07 19:26:38 +00:00
|
|
|
sc->sc_dying = 1;
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_ATTACH_ERROR_RETURN;
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
|
|
|
int
|
|
|
|
ulpt_activate(self, act)
|
|
|
|
device_ptr_t self;
|
|
|
|
enum devact act;
|
|
|
|
{
|
|
|
|
struct ulpt_softc *sc = (struct ulpt_softc *)self;
|
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DVACT_DEACTIVATE:
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
USB_DETACH(ulpt)
|
|
|
|
{
|
|
|
|
USB_DETACH_START(ulpt, sc);
|
|
|
|
int s;
|
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
|
|
|
int maj, mn;
|
1999-11-21 17:25:30 +00:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
struct vnode *vp;
|
|
|
|
#endif
|
1999-10-07 19:26:38 +00:00
|
|
|
|
1999-11-21 17:25:30 +00:00
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTF(("ulpt_detach: sc=%p flags=%d\n", sc, flags));
|
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
DPRINTF(("ulpt_detach: sc=%p\n", sc));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sc->sc_dying = 1;
|
1999-11-17 22:33:51 +00:00
|
|
|
if (sc->sc_bulkpipe != NULL)
|
1999-10-07 19:26:38 +00:00
|
|
|
usbd_abort_pipe(sc->sc_bulkpipe);
|
|
|
|
|
|
|
|
s = splusb();
|
|
|
|
if (--sc->sc_refcnt >= 0) {
|
|
|
|
/* There is noone to wake, aborting the pipe is enough */
|
|
|
|
/* Wait for processes to go away. */
|
|
|
|
usb_detach_wait(USBDEV(sc->sc_dev));
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
|
|
|
/* locate the major number */
|
|
|
|
for (maj = 0; maj < nchrdev; maj++)
|
|
|
|
if (cdevsw[maj].d_open == ulptopen)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Nuke the vnodes for any open instances (calls close). */
|
|
|
|
mn = self->dv_unit;
|
|
|
|
vdevgone(maj, mn, mn, VCHR);
|
|
|
|
#elif defined(__FreeBSD__)
|
1999-11-21 17:25:30 +00: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-07 19:26:38 +00:00
|
|
|
|
1999-11-08 07:44:01 +00:00
|
|
|
destroy_dev(sc->dev);
|
|
|
|
destroy_dev(sc->dev_noprime);
|
1999-10-07 19:26:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
int
|
|
|
|
ulpt_status(sc)
|
|
|
|
struct ulpt_softc *sc;
|
|
|
|
{
|
|
|
|
usb_device_request_t req;
|
1999-11-17 22:33:51 +00:00
|
|
|
usbd_status err;
|
1998-11-26 23:13:13 +00: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-17 22:33:51 +00:00
|
|
|
err = usbd_do_request(sc->sc_udev, &req, &status);
|
|
|
|
DPRINTFN(1, ("ulpt_status: status=0x%02x err=%d\n", status, err));
|
|
|
|
if (!err)
|
1998-11-26 23:13:13 +00:00
|
|
|
return (status);
|
|
|
|
else
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ulpt_reset(sc)
|
|
|
|
struct ulpt_softc *sc;
|
|
|
|
{
|
|
|
|
usb_device_request_t req;
|
|
|
|
|
|
|
|
DPRINTFN(1, ("ulpt_reset\n"));
|
|
|
|
req.bmRequestType = UT_WRITE_CLASS_OTHER;
|
|
|
|
req.bRequest = UR_SOFT_RESET;
|
|
|
|
USETW(req.wValue, 0);
|
|
|
|
USETW(req.wIndex, sc->sc_ifaceno);
|
|
|
|
USETW(req.wLength, 0);
|
|
|
|
(void)usbd_do_request(sc->sc_udev, &req, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reset the printer, then wait until it's selected and not busy.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ulptopen(dev, flag, mode, p)
|
|
|
|
dev_t dev;
|
|
|
|
int flag;
|
|
|
|
int mode;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
u_char flags = ULPTFLAGS(dev);
|
1999-11-17 22:33:51 +00:00
|
|
|
struct ulpt_softc *sc;
|
|
|
|
usbd_status err;
|
1998-11-26 23:13:13 +00:00
|
|
|
int spin, error;
|
1999-11-17 22:33:51 +00:00
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_GET_SC_OPEN(ulpt, ULPTUNIT(dev), sc);
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
if (sc == NULL || sc->sc_iface == NULL || sc->sc_dying)
|
1999-10-07 19:26:38 +00:00
|
|
|
return (ENXIO);
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
if (sc->sc_state)
|
1999-10-07 19:26:38 +00:00
|
|
|
return (EBUSY);
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
sc->sc_state = ULPT_INIT;
|
|
|
|
sc->sc_flags = flags;
|
|
|
|
DPRINTF(("ulptopen: flags=0x%x\n", (unsigned)flags));
|
|
|
|
|
1999-04-11 20:50:33 +00:00
|
|
|
#if defined(ULPT_DEBUG) && defined(__FreeBSD__)
|
1999-01-11 00:03:59 +00:00
|
|
|
/* Ignoring these flags might not be a good idea */
|
1999-03-22 19:58:59 +00:00
|
|
|
if ((flags & ~ULPT_NOPRIME) != 0)
|
|
|
|
printf("ulptopen: flags ignored: %b\n", flags,
|
|
|
|
"\20\3POS_INIT\4POS_ACK\6PRIME_OPEN\7AUTOLF\10BYPASS");
|
1999-01-11 00:03:59 +00:00
|
|
|
#endif
|
1999-10-07 19:26:38 +00:00
|
|
|
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
if ((flags & ULPT_NOPRIME) == 0)
|
|
|
|
ulpt_reset(sc);
|
|
|
|
|
|
|
|
for (spin = 0; (ulpt_status(sc) & LPS_SELECT) == 0; spin += STEP) {
|
|
|
|
if (spin >= TIMEOUT) {
|
|
|
|
sc->sc_state = 0;
|
1999-10-07 19:26:38 +00:00
|
|
|
return (EBUSY);
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* wait 1/4 second, give up if we get a signal */
|
|
|
|
error = tsleep((caddr_t)sc, LPTPRI | PCATCH, "ulptop", STEP);
|
|
|
|
if (error != EWOULDBLOCK) {
|
|
|
|
sc->sc_state = 0;
|
1999-10-07 19:26:38 +00:00
|
|
|
return (error);
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_open_pipe(sc->sc_iface, sc->sc_bulk, 0, &sc->sc_bulkpipe);
|
|
|
|
if (err) {
|
1998-11-26 23:13:13 +00:00
|
|
|
sc->sc_state = 0;
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->sc_state = ULPT_OPEN;
|
|
|
|
|
|
|
|
DPRINTF(("ulptopen: done\n"));
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ulpt_statusmsg(status, sc)
|
|
|
|
u_char status;
|
|
|
|
struct ulpt_softc *sc;
|
|
|
|
{
|
|
|
|
u_char new;
|
|
|
|
|
|
|
|
status = (status ^ LPS_INVERT) & LPS_MASK;
|
|
|
|
new = status & ~sc->sc_laststatus;
|
|
|
|
sc->sc_laststatus = status;
|
|
|
|
|
|
|
|
if (new & LPS_SELECT)
|
1999-01-07 23:07:57 +00:00
|
|
|
log(LOG_NOTICE, "%s: offline\n", USBDEVNAME(sc->sc_dev));
|
1998-11-26 23:13:13 +00:00
|
|
|
else if (new & LPS_NOPAPER)
|
1999-01-07 23:07:57 +00:00
|
|
|
log(LOG_NOTICE, "%s: out of paper\n", USBDEVNAME(sc->sc_dev));
|
1998-11-26 23:13:13 +00:00
|
|
|
else if (new & LPS_NERR)
|
1999-01-07 23:07:57 +00:00
|
|
|
log(LOG_NOTICE, "%s: output error\n", USBDEVNAME(sc->sc_dev));
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
return (status);
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ulptclose(dev, flag, mode, p)
|
|
|
|
dev_t dev;
|
|
|
|
int flag;
|
|
|
|
int mode;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
1999-11-17 22:33:51 +00:00
|
|
|
struct ulpt_softc *sc;
|
|
|
|
|
1999-01-07 23:07:57 +00:00
|
|
|
USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
if (sc->sc_state != ULPT_OPEN)
|
|
|
|
/* We are being forced to close before the open completed. */
|
|
|
|
return (0);
|
|
|
|
|
1998-11-26 23:13:13 +00:00
|
|
|
usbd_close_pipe(sc->sc_bulkpipe);
|
1999-10-07 19:26:38 +00:00
|
|
|
sc->sc_bulkpipe = 0;
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
sc->sc_state = 0;
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTF(("ulptclose: closed\n"));
|
1998-11-26 23:13:13 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1999-10-07 19:26:38 +00:00
|
|
|
ulpt_do_write(sc, uio, flags)
|
|
|
|
struct ulpt_softc *sc;
|
1998-11-26 23:13:13 +00:00
|
|
|
struct uio *uio;
|
|
|
|
int flags;
|
|
|
|
{
|
1999-10-07 19:26:38 +00:00
|
|
|
u_int32_t n;
|
1998-11-26 23:13:13 +00:00
|
|
|
int error = 0;
|
1999-10-07 19:26:38 +00:00
|
|
|
void *bufp;
|
1999-11-17 22:33:51 +00:00
|
|
|
usbd_xfer_handle xfer;
|
|
|
|
usbd_status err;
|
1998-11-26 23:13:13 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
DPRINTF(("ulptwrite\n"));
|
1999-11-28 21:01:06 +00:00
|
|
|
xfer = usbd_alloc_xfer(sc->sc_udev);
|
1999-11-17 22:33:51 +00:00
|
|
|
if (xfer == NULL)
|
1999-01-07 23:07:57 +00:00
|
|
|
return (ENOMEM);
|
1999-11-17 22:33:51 +00:00
|
|
|
bufp = usbd_alloc_buffer(xfer, ULPT_BSIZE);
|
|
|
|
if (bufp == NULL) {
|
1999-11-28 21:01:06 +00:00
|
|
|
usbd_free_xfer(xfer);
|
1999-10-07 19:26:38 +00:00
|
|
|
return (ENOMEM);
|
|
|
|
}
|
1998-11-26 23:13:13 +00:00
|
|
|
while ((n = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
|
|
|
|
ulpt_statusmsg(ulpt_status(sc), sc);
|
1999-10-07 19:26:38 +00:00
|
|
|
error = uiomove(bufp, n, uio);
|
1999-01-07 23:07:57 +00:00
|
|
|
if (error)
|
|
|
|
break;
|
1998-11-26 23:13:13 +00:00
|
|
|
DPRINTFN(1, ("ulptwrite: transfer %d bytes\n", n));
|
1999-11-17 22:33:51 +00:00
|
|
|
err = usbd_bulk_transfer(xfer, sc->sc_bulkpipe, USBD_NO_COPY,
|
|
|
|
USBD_NO_TIMEOUT, bufp, &n, "ulptwr");
|
|
|
|
if (err) {
|
|
|
|
DPRINTF(("ulptwrite: error=%d\n", err));
|
1998-11-26 23:13:13 +00:00
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-11-28 21:01:06 +00:00
|
|
|
usbd_free_xfer(xfer);
|
1999-10-07 19:26:38 +00:00
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ulptwrite(dev, uio, flags)
|
|
|
|
dev_t dev;
|
|
|
|
struct uio *uio;
|
|
|
|
int flags;
|
|
|
|
{
|
1999-11-17 22:33:51 +00:00
|
|
|
struct ulpt_softc *sc;
|
1999-10-07 19:26:38 +00:00
|
|
|
int error;
|
|
|
|
|
1999-11-17 22:33:51 +00:00
|
|
|
USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
if (sc->sc_dying)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
sc->sc_refcnt++;
|
|
|
|
error = ulpt_do_write(sc, uio, flags);
|
|
|
|
if (--sc->sc_refcnt < 0)
|
|
|
|
usb_detach_wakeup(USBDEV(sc->sc_dev));
|
1998-11-26 23:13:13 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ulptioctl(dev, cmd, data, flag, p)
|
|
|
|
dev_t dev;
|
|
|
|
u_long cmd;
|
|
|
|
caddr_t data;
|
|
|
|
int flag;
|
|
|
|
struct proc *p;
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
default:
|
|
|
|
error = ENODEV;
|
|
|
|
}
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
return (error);
|
1998-11-26 23:13:13 +00:00
|
|
|
}
|
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if 0
|
|
|
|
/* XXX This does not belong here. */
|
|
|
|
/*
|
|
|
|
* Print select parts of a IEEE 1284 device ID.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ieee1284_print_id(str)
|
|
|
|
char *str;
|
|
|
|
{
|
|
|
|
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-01-07 23:07:57 +00:00
|
|
|
}
|
1999-10-07 19:26:38 +00:00
|
|
|
#endif
|
1999-01-07 23:07:57 +00:00
|
|
|
|
1999-10-07 19:26:38 +00:00
|
|
|
#if defined(__FreeBSD__)
|
1999-11-08 07:10:48 +00:00
|
|
|
DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass, usbd_driver_load, 0);
|
1998-11-26 23:13:13 +00:00
|
|
|
#endif
|