ulpt.c revision 1.30 1 /* $NetBSD: ulpt.c,v 1.30 1999/11/18 23:32:30 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 USB_ATTACH_SUCCESS_RETURN;
267
268 nobulk:
269 printf("%s: could not find bulk endpoint\n", USBDEVNAME(sc->sc_dev));
270 sc->sc_dying = 1;
271 USB_ATTACH_ERROR_RETURN;
272 }
273
274 #if defined(__NetBSD__) || defined(__OpenBSD__)
275 int
276 ulpt_activate(self, act)
277 device_ptr_t self;
278 enum devact act;
279 {
280 struct ulpt_softc *sc = (struct ulpt_softc *)self;
281
282 switch (act) {
283 case DVACT_ACTIVATE:
284 return (EOPNOTSUPP);
285 break;
286
287 case DVACT_DEACTIVATE:
288 sc->sc_dying = 1;
289 break;
290 }
291 return (0);
292 }
293 #endif
294
295 USB_DETACH(ulpt)
296 {
297 USB_DETACH_START(ulpt, sc);
298 int s;
299 #if defined(__NetBSD__) || defined(__OpenBSD__)
300 int maj, mn;
301
302 DPRINTF(("ulpt_detach: sc=%p flags=%d\n", sc, flags));
303 #elif defined(__FreeBSD__)
304 DPRINTF(("ulpt_detach: sc=%p\n", sc));
305 #endif
306
307 sc->sc_dying = 1;
308 if (sc->sc_bulkpipe != NULL)
309 usbd_abort_pipe(sc->sc_bulkpipe);
310
311 s = splusb();
312 if (--sc->sc_refcnt >= 0) {
313 /* There is noone to wake, aborting the pipe is enough */
314 /* Wait for processes to go away. */
315 usb_detach_wait(USBDEV(sc->sc_dev));
316 }
317 splx(s);
318
319 #if defined(__NetBSD__) || defined(__OpenBSD__)
320 /* locate the major number */
321 for (maj = 0; maj < nchrdev; maj++)
322 if (cdevsw[maj].d_open == ulptopen)
323 break;
324
325 /* Nuke the vnodes for any open instances (calls close). */
326 mn = self->dv_unit;
327 vdevgone(maj, mn, mn, VCHR);
328 #elif defined(__FreeBSD__)
329 /* XXX not implemented yet */
330
331 destroy_dev(sc->dev);
332 destroy_dev(sc->dev_noprime);
333 #endif
334
335 return (0);
336 }
337
338 int
339 ulpt_status(sc)
340 struct ulpt_softc *sc;
341 {
342 usb_device_request_t req;
343 usbd_status err;
344 u_char status;
345
346 req.bmRequestType = UT_READ_CLASS_INTERFACE;
347 req.bRequest = UR_GET_PORT_STATUS;
348 USETW(req.wValue, 0);
349 USETW(req.wIndex, sc->sc_ifaceno);
350 USETW(req.wLength, 1);
351 err = usbd_do_request(sc->sc_udev, &req, &status);
352 DPRINTFN(1, ("ulpt_status: status=0x%02x err=%d\n", status, err));
353 if (!err)
354 return (status);
355 else
356 return (0);
357 }
358
359 void
360 ulpt_reset(sc)
361 struct ulpt_softc *sc;
362 {
363 usb_device_request_t req;
364
365 DPRINTFN(1, ("ulpt_reset\n"));
366 req.bmRequestType = UT_WRITE_CLASS_OTHER;
367 req.bRequest = UR_SOFT_RESET;
368 USETW(req.wValue, 0);
369 USETW(req.wIndex, sc->sc_ifaceno);
370 USETW(req.wLength, 0);
371 (void)usbd_do_request(sc->sc_udev, &req, 0);
372 }
373
374 /*
375 * Reset the printer, then wait until it's selected and not busy.
376 */
377 int
378 ulptopen(dev, flag, mode, p)
379 dev_t dev;
380 int flag;
381 int mode;
382 struct proc *p;
383 {
384 u_char flags = ULPTFLAGS(dev);
385 struct ulpt_softc *sc;
386 usbd_status err;
387 int spin, error;
388
389 USB_GET_SC_OPEN(ulpt, ULPTUNIT(dev), sc);
390
391 if (sc == NULL || sc->sc_iface == NULL || sc->sc_dying)
392 return (ENXIO);
393
394 if (sc->sc_state)
395 return (EBUSY);
396
397 sc->sc_state = ULPT_INIT;
398 sc->sc_flags = flags;
399 DPRINTF(("ulptopen: flags=0x%x\n", (unsigned)flags));
400
401 #if defined(ULPT_DEBUG) && defined(__FreeBSD__)
402 /* Ignoring these flags might not be a good idea */
403 if ((flags & ~ULPT_NOPRIME) != 0)
404 printf("ulptopen: flags ignored: %b\n", flags,
405 "\20\3POS_INIT\4POS_ACK\6PRIME_OPEN\7AUTOLF\10BYPASS");
406 #endif
407
408
409 if ((flags & ULPT_NOPRIME) == 0)
410 ulpt_reset(sc);
411
412 for (spin = 0; (ulpt_status(sc) & LPS_SELECT) == 0; spin += STEP) {
413 if (spin >= TIMEOUT) {
414 sc->sc_state = 0;
415 return (EBUSY);
416 }
417
418 /* wait 1/4 second, give up if we get a signal */
419 error = tsleep((caddr_t)sc, LPTPRI | PCATCH, "ulptop", STEP);
420 if (error != EWOULDBLOCK) {
421 sc->sc_state = 0;
422 return (error);
423 }
424 }
425
426 err = usbd_open_pipe(sc->sc_iface, sc->sc_bulk, 0, &sc->sc_bulkpipe);
427 if (err) {
428 sc->sc_state = 0;
429 return (EIO);
430 }
431
432 sc->sc_state = ULPT_OPEN;
433
434 DPRINTF(("ulptopen: done\n"));
435 return (0);
436 }
437
438 int
439 ulpt_statusmsg(status, sc)
440 u_char status;
441 struct ulpt_softc *sc;
442 {
443 u_char new;
444
445 status = (status ^ LPS_INVERT) & LPS_MASK;
446 new = status & ~sc->sc_laststatus;
447 sc->sc_laststatus = status;
448
449 if (new & LPS_SELECT)
450 log(LOG_NOTICE, "%s: offline\n", USBDEVNAME(sc->sc_dev));
451 else if (new & LPS_NOPAPER)
452 log(LOG_NOTICE, "%s: out of paper\n", USBDEVNAME(sc->sc_dev));
453 else if (new & LPS_NERR)
454 log(LOG_NOTICE, "%s: output error\n", USBDEVNAME(sc->sc_dev));
455
456 return (status);
457 }
458
459 int
460 ulptclose(dev, flag, mode, p)
461 dev_t dev;
462 int flag;
463 int mode;
464 struct proc *p;
465 {
466 struct ulpt_softc *sc;
467
468 USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
469
470 if (sc->sc_state != ULPT_OPEN)
471 /* We are being forced to close before the open completed. */
472 return (0);
473
474 usbd_close_pipe(sc->sc_bulkpipe);
475 sc->sc_bulkpipe = 0;
476
477 sc->sc_state = 0;
478
479 DPRINTF(("ulptclose: closed\n"));
480 return (0);
481 }
482
483 int
484 ulpt_do_write(sc, uio, flags)
485 struct ulpt_softc *sc;
486 struct uio *uio;
487 int flags;
488 {
489 u_int32_t n;
490 int error = 0;
491 void *bufp;
492 usbd_xfer_handle xfer;
493 usbd_status err;
494
495 DPRINTF(("ulptwrite\n"));
496 xfer = usbd_alloc_xfer(sc->sc_udev);
497 if (xfer == NULL)
498 return (ENOMEM);
499 bufp = usbd_alloc_buffer(xfer, ULPT_BSIZE);
500 if (bufp == NULL) {
501 usbd_free_xfer(xfer);
502 return (ENOMEM);
503 }
504 while ((n = min(ULPT_BSIZE, uio->uio_resid)) != 0) {
505 ulpt_statusmsg(ulpt_status(sc), sc);
506 error = uiomove(bufp, n, uio);
507 if (error)
508 break;
509 DPRINTFN(1, ("ulptwrite: transfer %d bytes\n", n));
510 err = usbd_bulk_transfer(xfer, sc->sc_bulkpipe, USBD_NO_COPY,
511 USBD_NO_TIMEOUT, bufp, &n, "ulptwr");
512 if (err) {
513 DPRINTF(("ulptwrite: error=%d\n", err));
514 error = EIO;
515 break;
516 }
517 }
518 usbd_free_xfer(xfer);
519
520 return (error);
521 }
522
523 int
524 ulptwrite(dev, uio, flags)
525 dev_t dev;
526 struct uio *uio;
527 int flags;
528 {
529 struct ulpt_softc *sc;
530 int error;
531
532 USB_GET_SC(ulpt, ULPTUNIT(dev), sc);
533
534 if (sc->sc_dying)
535 return (EIO);
536
537 sc->sc_refcnt++;
538 error = ulpt_do_write(sc, uio, flags);
539 if (--sc->sc_refcnt < 0)
540 usb_detach_wakeup(USBDEV(sc->sc_dev));
541 return (error);
542 }
543
544 int
545 ulptioctl(dev, cmd, data, flag, p)
546 dev_t dev;
547 u_long cmd;
548 caddr_t data;
549 int flag;
550 struct proc *p;
551 {
552 int error = 0;
553
554 switch (cmd) {
555 default:
556 error = ENODEV;
557 }
558
559 return (error);
560 }
561
562 #if 0
563 /* XXX This does not belong here. */
564 /*
565 * Print select parts of a IEEE 1284 device ID.
566 */
567 void
568 ieee1284_print_id(str)
569 char *str;
570 {
571 char *p, *q;
572
573 for (p = str-1; p; p = strchr(p, ';')) {
574 p++; /* skip ';' */
575 if (strncmp(p, "MFG:", 4) == 0 ||
576 strncmp(p, "MANUFACTURER:", 14) == 0 ||
577 strncmp(p, "MDL:", 4) == 0 ||
578 strncmp(p, "MODEL:", 6) == 0) {
579 q = strchr(p, ';');
580 if (q)
581 printf("%.*s", (int)(q - p + 1), p);
582 }
583 }
584 }
585 #endif
586
587 #if defined(__FreeBSD__)
588 DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass, usbd_driver_load, 0);
589 #endif
590