]> Git Repo - linux.git/blame - drivers/usb/misc/uss720.c
Merge patch "Enable SPCR table for console output on RISC-V"
[linux.git] / drivers / usb / misc / uss720.c
CommitLineData
5fd54ace 1// SPDX-License-Identifier: GPL-2.0+
1da177e4
LT
2/*****************************************************************************/
3
4/*
5 * uss720.c -- USS720 USB Parport Cable.
6 *
ecc1624a 7 * Copyright (C) 1999, 2005, 2010
0f36163d 8 * Thomas Sailer ([email protected])
1da177e4 9 *
1da177e4
LT
10 * Based on parport_pc.c
11 *
12 * History:
0f36163d
TS
13 * 0.1 04.08.1999 Created
14 * 0.2 07.08.1999 Some fixes mainly suggested by Tim Waugh
15 * Interrupt handling currently disabled because
16 * usb_request_irq crashes somewhere within ohci.c
17 * for no apparent reason (that is for me, anyway)
18 * ECP currently untested
19 * 0.3 10.08.1999 fixing merge errors
20 * 0.4 13.08.1999 Added Vendor/Product ID of Brad Hard's cable
21 * 0.5 20.09.1999 usb_control_msg wrapper used
22 * Nov01.2000 usb_device_table support by Adam J. Richter
23 * 08.04.2001 Identify version on module load. gb
24 * 0.6 02.09.2005 Fix "scheduling in interrupt" problem by making save/restore
25 * context asynchronous
1da177e4
LT
26 *
27 */
28
29/*****************************************************************************/
30
31#include <linux/module.h>
32#include <linux/socket.h>
33#include <linux/parport.h>
34#include <linux/init.h>
35#include <linux/usb.h>
36#include <linux/delay.h>
0f36163d
TS
37#include <linux/completion.h>
38#include <linux/kref.h>
5a0e3ad6 39#include <linux/slab.h>
174cd4b1 40#include <linux/sched/signal.h>
1da177e4 41
0f36163d 42#define DRIVER_AUTHOR "Thomas M. Sailer, [email protected]"
1da177e4
LT
43#define DRIVER_DESC "USB Parport Cable driver for Cables using the Lucent Technologies USS720 Chip"
44
45/* --------------------------------------------------------------------- */
46
47struct parport_uss720_private {
48 struct usb_device *usbdev;
0f36163d
TS
49 struct parport *pp;
50 struct kref ref_count;
51 __u8 reg[7]; /* USB registers */
52 struct list_head asynclist;
53 spinlock_t asynclock;
54};
55
56struct uss720_async_request {
57 struct parport_uss720_private *priv;
58 struct kref ref_count;
59 struct list_head asynclist;
60 struct completion compl;
61 struct urb *urb;
9821aa9d 62 struct usb_ctrlrequest *dr;
0f36163d 63 __u8 reg[7];
1da177e4
LT
64};
65
66/* --------------------------------------------------------------------- */
67
0f36163d 68static void destroy_priv(struct kref *kref)
1da177e4 69{
0f36163d 70 struct parport_uss720_private *priv = container_of(kref, struct parport_uss720_private, ref_count);
1da177e4 71
7a2d2810 72 dev_dbg(&priv->usbdev->dev, "destroying priv datastructure\n");
0f36163d 73 usb_put_dev(priv->usbdev);
0a96fa64 74 priv->usbdev = NULL;
0f36163d 75 kfree(priv);
0f36163d
TS
76}
77
78static void destroy_async(struct kref *kref)
79{
80 struct uss720_async_request *rq = container_of(kref, struct uss720_async_request, ref_count);
81 struct parport_uss720_private *priv = rq->priv;
82 unsigned long flags;
83
84 if (likely(rq->urb))
85 usb_free_urb(rq->urb);
9821aa9d 86 kfree(rq->dr);
0f36163d
TS
87 spin_lock_irqsave(&priv->asynclock, flags);
88 list_del_init(&rq->asynclist);
89 spin_unlock_irqrestore(&priv->asynclock, flags);
90 kfree(rq);
91 kref_put(&priv->ref_count, destroy_priv);
92}
93
94/* --------------------------------------------------------------------- */
95
7d12e780 96static void async_complete(struct urb *urb)
0f36163d
TS
97{
98 struct uss720_async_request *rq;
99 struct parport *pp;
100 struct parport_uss720_private *priv;
82210d37 101 int status = urb->status;
0f36163d
TS
102
103 rq = urb->context;
104 priv = rq->priv;
105 pp = priv->pp;
82210d37 106 if (status) {
d2b1ff71
GKH
107 dev_err(&urb->dev->dev, "async_complete: urb error %d\n",
108 status);
9821aa9d 109 } else if (rq->dr->bRequest == 3) {
0f36163d 110 memcpy(priv->reg, rq->reg, sizeof(priv->reg));
1da177e4 111#if 0
5d31a6dc
AS
112 dev_dbg(&priv->usbdev->dev, "async_complete regs %7ph\n",
113 priv->reg);
1da177e4
LT
114#endif
115 /* if nAck interrupts are enabled and we have an interrupt, call the interrupt procedure */
0f36163d 116 if (rq->reg[2] & rq->reg[1] & 0x10 && pp)
f230d101 117 parport_generic_irq(pp);
1da177e4 118 }
0f36163d
TS
119 complete(&rq->compl);
120 kref_put(&rq->ref_count, destroy_async);
1da177e4
LT
121}
122
0f36163d
TS
123static struct uss720_async_request *submit_async_request(struct parport_uss720_private *priv,
124 __u8 request, __u8 requesttype, __u16 value, __u16 index,
55016f10 125 gfp_t mem_flags)
1da177e4 126{
0f36163d
TS
127 struct usb_device *usbdev;
128 struct uss720_async_request *rq;
129 unsigned long flags;
1da177e4
LT
130 int ret;
131
0f36163d
TS
132 if (!priv)
133 return NULL;
134 usbdev = priv->usbdev;
1da177e4 135 if (!usbdev)
0f36163d 136 return NULL;
9821aa9d 137 rq = kzalloc(sizeof(struct uss720_async_request), mem_flags);
c9220ba5 138 if (!rq)
0f36163d 139 return NULL;
0f36163d
TS
140 kref_init(&rq->ref_count);
141 INIT_LIST_HEAD(&rq->asynclist);
142 init_completion(&rq->compl);
143 kref_get(&priv->ref_count);
144 rq->priv = priv;
145 rq->urb = usb_alloc_urb(0, mem_flags);
146 if (!rq->urb) {
147 kref_put(&rq->ref_count, destroy_async);
0f36163d
TS
148 return NULL;
149 }
9821aa9d
JH
150 rq->dr = kmalloc(sizeof(*rq->dr), mem_flags);
151 if (!rq->dr) {
152 kref_put(&rq->ref_count, destroy_async);
153 return NULL;
154 }
155 rq->dr->bRequestType = requesttype;
156 rq->dr->bRequest = request;
157 rq->dr->wValue = cpu_to_le16(value);
158 rq->dr->wIndex = cpu_to_le16(index);
159 rq->dr->wLength = cpu_to_le16((request == 3) ? sizeof(rq->reg) : 0);
0f36163d 160 usb_fill_control_urb(rq->urb, usbdev, (requesttype & 0x80) ? usb_rcvctrlpipe(usbdev, 0) : usb_sndctrlpipe(usbdev, 0),
9821aa9d 161 (unsigned char *)rq->dr,
0f36163d
TS
162 (request == 3) ? rq->reg : NULL, (request == 3) ? sizeof(rq->reg) : 0, async_complete, rq);
163 /* rq->urb->transfer_flags |= URB_ASYNC_UNLINK; */
164 spin_lock_irqsave(&priv->asynclock, flags);
165 list_add_tail(&rq->asynclist, &priv->asynclist);
166 spin_unlock_irqrestore(&priv->asynclock, flags);
adaa3c63 167 kref_get(&rq->ref_count);
0f36163d 168 ret = usb_submit_urb(rq->urb, mem_flags);
adaa3c63 169 if (!ret)
0f36163d 170 return rq;
adaa3c63 171 destroy_async(&rq->ref_count);
d2b1ff71 172 dev_err(&usbdev->dev, "submit_async_request submit_urb failed with %d\n", ret);
0f36163d
TS
173 return NULL;
174}
175
176static unsigned int kill_all_async_requests_priv(struct parport_uss720_private *priv)
177{
178 struct uss720_async_request *rq;
179 unsigned long flags;
180 unsigned int ret = 0;
181
182 spin_lock_irqsave(&priv->asynclock, flags);
183 list_for_each_entry(rq, &priv->asynclist, asynclist) {
184 usb_unlink_urb(rq->urb);
185 ret++;
186 }
187 spin_unlock_irqrestore(&priv->asynclock, flags);
1da177e4
LT
188 return ret;
189}
190
191/* --------------------------------------------------------------------- */
192
55016f10 193static int get_1284_register(struct parport *pp, unsigned char reg, unsigned char *val, gfp_t mem_flags)
0f36163d
TS
194{
195 struct parport_uss720_private *priv;
196 struct uss720_async_request *rq;
197 static const unsigned char regindex[9] = {
198 4, 0, 1, 5, 5, 0, 2, 3, 6
199 };
200 int ret;
201
202 if (!pp)
203 return -EIO;
204 priv = pp->private_data;
205 rq = submit_async_request(priv, 3, 0xc0, ((unsigned int)reg) << 8, 0, mem_flags);
206 if (!rq) {
d2b1ff71
GKH
207 dev_err(&priv->usbdev->dev, "get_1284_register(%u) failed",
208 (unsigned int)reg);
0f36163d
TS
209 return -EIO;
210 }
211 if (!val) {
212 kref_put(&rq->ref_count, destroy_async);
213 return 0;
214 }
215 if (wait_for_completion_timeout(&rq->compl, HZ)) {
216 ret = rq->urb->status;
217 *val = priv->reg[(reg >= 9) ? 0 : regindex[reg]];
218 if (ret)
3b6004f3
GKH
219 printk(KERN_WARNING "get_1284_register: "
220 "usb error %d\n", ret);
0f36163d
TS
221 kref_put(&rq->ref_count, destroy_async);
222 return ret;
223 }
3b6004f3 224 printk(KERN_WARNING "get_1284_register timeout\n");
0f36163d
TS
225 kill_all_async_requests_priv(priv);
226 return -EIO;
227}
228
55016f10 229static int set_1284_register(struct parport *pp, unsigned char reg, unsigned char val, gfp_t mem_flags)
0f36163d
TS
230{
231 struct parport_uss720_private *priv;
232 struct uss720_async_request *rq;
233
234 if (!pp)
235 return -EIO;
236 priv = pp->private_data;
237 rq = submit_async_request(priv, 4, 0x40, (((unsigned int)reg) << 8) | val, 0, mem_flags);
238 if (!rq) {
d2b1ff71
GKH
239 dev_err(&priv->usbdev->dev, "set_1284_register(%u,%u) failed",
240 (unsigned int)reg, (unsigned int)val);
0f36163d
TS
241 return -EIO;
242 }
243 kref_put(&rq->ref_count, destroy_async);
244 return 0;
245}
246
247/* --------------------------------------------------------------------- */
248
1da177e4
LT
249/* ECR modes */
250#define ECR_SPP 00
251#define ECR_PS2 01
252#define ECR_PPF 02
253#define ECR_ECP 03
254#define ECR_EPP 04
255
256/* Safely change the mode bits in the ECR */
257static int change_mode(struct parport *pp, int m)
258{
259 struct parport_uss720_private *priv = pp->private_data;
260 int mode;
0f36163d 261 __u8 reg;
1da177e4 262
0f36163d 263 if (get_1284_register(pp, 6, &reg, GFP_KERNEL))
1da177e4
LT
264 return -EIO;
265 /* Bits <7:5> contain the mode. */
266 mode = (priv->reg[2] >> 5) & 0x7;
267 if (mode == m)
268 return 0;
269 /* We have to go through mode 000 or 001 */
270 if (mode > ECR_PS2 && m > ECR_PS2)
271 if (change_mode(pp, ECR_PS2))
272 return -EIO;
273
274 if (m <= ECR_PS2 && !(priv->reg[1] & 0x20)) {
275 /* This mode resets the FIFO, so we may
276 * have to wait for it to drain first. */
277 unsigned long expire = jiffies + pp->physport->cad->timeout;
278 switch (mode) {
279 case ECR_PPF: /* Parallel Port FIFO mode */
280 case ECR_ECP: /* ECP Parallel Port mode */
281 /* Poll slowly. */
282 for (;;) {
0f36163d 283 if (get_1284_register(pp, 6, &reg, GFP_KERNEL))
1da177e4
LT
284 return -EIO;
285 if (priv->reg[2] & 0x01)
286 break;
287 if (time_after_eq (jiffies, expire))
288 /* The FIFO is stuck. */
289 return -EBUSY;
290 msleep_interruptible(10);
291 if (signal_pending (current))
292 break;
293 }
294 }
295 }
296 /* Set the mode. */
0f36163d
TS
297 if (set_1284_register(pp, 6, m << 5, GFP_KERNEL))
298 return -EIO;
299 if (get_1284_register(pp, 6, &reg, GFP_KERNEL))
1da177e4
LT
300 return -EIO;
301 return 0;
302}
303
304/*
305 * Clear TIMEOUT BIT in EPP MODE
306 */
307static int clear_epp_timeout(struct parport *pp)
308{
309 unsigned char stat;
310
0f36163d 311 if (get_1284_register(pp, 1, &stat, GFP_KERNEL))
1da177e4
LT
312 return 1;
313 return stat & 1;
314}
315
316/*
317 * Access functions.
318 */
319#if 0
320static int uss720_irq(int usbstatus, void *buffer, int len, void *dev_id)
321{
322 struct parport *pp = (struct parport *)dev_id;
323 struct parport_uss720_private *priv = pp->private_data;
324
325 if (usbstatus != 0 || len < 4 || !buffer)
326 return 1;
327 memcpy(priv->reg, buffer, 4);
328 /* if nAck interrupts are enabled and we have an interrupt, call the interrupt procedure */
329 if (priv->reg[2] & priv->reg[1] & 0x10)
f230d101 330 parport_generic_irq(pp);
1da177e4
LT
331 return 1;
332}
333#endif
334
335static void parport_uss720_write_data(struct parport *pp, unsigned char d)
336{
0f36163d 337 set_1284_register(pp, 0, d, GFP_KERNEL);
1da177e4
LT
338}
339
340static unsigned char parport_uss720_read_data(struct parport *pp)
341{
342 unsigned char ret;
343
0f36163d 344 if (get_1284_register(pp, 0, &ret, GFP_KERNEL))
1da177e4
LT
345 return 0;
346 return ret;
347}
348
349static void parport_uss720_write_control(struct parport *pp, unsigned char d)
350{
351 struct parport_uss720_private *priv = pp->private_data;
352
353 d = (d & 0xf) | (priv->reg[1] & 0xf0);
0f36163d 354 if (set_1284_register(pp, 2, d, GFP_KERNEL))
1da177e4
LT
355 return;
356 priv->reg[1] = d;
357}
358
359static unsigned char parport_uss720_read_control(struct parport *pp)
360{
361 struct parport_uss720_private *priv = pp->private_data;
362 return priv->reg[1] & 0xf; /* Use soft copy */
363}
364
365static unsigned char parport_uss720_frob_control(struct parport *pp, unsigned char mask, unsigned char val)
366{
367 struct parport_uss720_private *priv = pp->private_data;
368 unsigned char d;
369
370 mask &= 0x0f;
371 val &= 0x0f;
372 d = (priv->reg[1] & (~mask)) ^ val;
bc8acc21 373 if (set_1284_register(pp, 2, d, GFP_ATOMIC))
1da177e4
LT
374 return 0;
375 priv->reg[1] = d;
376 return d & 0xf;
377}
378
379static unsigned char parport_uss720_read_status(struct parport *pp)
380{
381 unsigned char ret;
382
bc8acc21 383 if (get_1284_register(pp, 1, &ret, GFP_ATOMIC))
1da177e4
LT
384 return 0;
385 return ret & 0xf8;
386}
387
388static void parport_uss720_disable_irq(struct parport *pp)
389{
390 struct parport_uss720_private *priv = pp->private_data;
391 unsigned char d;
392
393 d = priv->reg[1] & ~0x10;
0f36163d 394 if (set_1284_register(pp, 2, d, GFP_KERNEL))
1da177e4
LT
395 return;
396 priv->reg[1] = d;
397}
398
399static void parport_uss720_enable_irq(struct parport *pp)
400{
401 struct parport_uss720_private *priv = pp->private_data;
402 unsigned char d;
403
404 d = priv->reg[1] | 0x10;
0f36163d 405 if (set_1284_register(pp, 2, d, GFP_KERNEL))
1da177e4
LT
406 return;
407 priv->reg[1] = d;
408}
409
410static void parport_uss720_data_forward (struct parport *pp)
411{
412 struct parport_uss720_private *priv = pp->private_data;
413 unsigned char d;
414
415 d = priv->reg[1] & ~0x20;
0f36163d 416 if (set_1284_register(pp, 2, d, GFP_KERNEL))
1da177e4
LT
417 return;
418 priv->reg[1] = d;
419}
420
421static void parport_uss720_data_reverse (struct parport *pp)
422{
423 struct parport_uss720_private *priv = pp->private_data;
424 unsigned char d;
425
426 d = priv->reg[1] | 0x20;
0f36163d 427 if (set_1284_register(pp, 2, d, GFP_KERNEL))
1da177e4
LT
428 return;
429 priv->reg[1] = d;
430}
431
432static void parport_uss720_init_state(struct pardevice *dev, struct parport_state *s)
433{
434 s->u.pc.ctr = 0xc | (dev->irq_func ? 0x10 : 0x0);
435 s->u.pc.ecr = 0x24;
436}
437
438static void parport_uss720_save_state(struct parport *pp, struct parport_state *s)
439{
440 struct parport_uss720_private *priv = pp->private_data;
441
0f36163d
TS
442#if 0
443 if (get_1284_register(pp, 2, NULL, GFP_ATOMIC))
1da177e4 444 return;
0f36163d 445#endif
1da177e4
LT
446 s->u.pc.ctr = priv->reg[1];
447 s->u.pc.ecr = priv->reg[2];
448}
449
450static void parport_uss720_restore_state(struct parport *pp, struct parport_state *s)
451{
0f36163d
TS
452 struct parport_uss720_private *priv = pp->private_data;
453
454 set_1284_register(pp, 2, s->u.pc.ctr, GFP_ATOMIC);
455 set_1284_register(pp, 6, s->u.pc.ecr, GFP_ATOMIC);
456 get_1284_register(pp, 2, NULL, GFP_ATOMIC);
457 priv->reg[1] = s->u.pc.ctr;
458 priv->reg[2] = s->u.pc.ecr;
1da177e4
LT
459}
460
461static size_t parport_uss720_epp_read_data(struct parport *pp, void *buf, size_t length, int flags)
462{
463 struct parport_uss720_private *priv = pp->private_data;
464 size_t got = 0;
465
466 if (change_mode(pp, ECR_EPP))
467 return 0;
468 for (; got < length; got++) {
0f36163d 469 if (get_1284_register(pp, 4, (char *)buf, GFP_KERNEL))
1da177e4
LT
470 break;
471 buf++;
472 if (priv->reg[0] & 0x01) {
473 clear_epp_timeout(pp);
474 break;
475 }
476 }
477 change_mode(pp, ECR_PS2);
478 return got;
479}
480
481static size_t parport_uss720_epp_write_data(struct parport *pp, const void *buf, size_t length, int flags)
482{
483#if 0
484 struct parport_uss720_private *priv = pp->private_data;
485 size_t written = 0;
486
487 if (change_mode(pp, ECR_EPP))
488 return 0;
489 for (; written < length; written++) {
0f36163d 490 if (set_1284_register(pp, 4, (char *)buf, GFP_KERNEL))
1da177e4
LT
491 break;
492 ((char*)buf)++;
0f36163d 493 if (get_1284_register(pp, 1, NULL, GFP_KERNEL))
1da177e4
LT
494 break;
495 if (priv->reg[0] & 0x01) {
496 clear_epp_timeout(pp);
497 break;
498 }
499 }
500 change_mode(pp, ECR_PS2);
501 return written;
502#else
503 struct parport_uss720_private *priv = pp->private_data;
504 struct usb_device *usbdev = priv->usbdev;
a8113da5 505 int rlen = 0;
1da177e4
LT
506 int i;
507
508 if (!usbdev)
509 return 0;
510 if (change_mode(pp, ECR_EPP))
511 return 0;
512 i = usb_bulk_msg(usbdev, usb_sndbulkpipe(usbdev, 1), (void *)buf, length, &rlen, 20000);
513 if (i)
5b5e0928 514 printk(KERN_ERR "uss720: sendbulk ep 1 buf %p len %zu rlen %u\n", buf, length, rlen);
1da177e4
LT
515 change_mode(pp, ECR_PS2);
516 return rlen;
517#endif
518}
519
520static size_t parport_uss720_epp_read_addr(struct parport *pp, void *buf, size_t length, int flags)
521{
522 struct parport_uss720_private *priv = pp->private_data;
523 size_t got = 0;
524
525 if (change_mode(pp, ECR_EPP))
526 return 0;
527 for (; got < length; got++) {
0f36163d 528 if (get_1284_register(pp, 3, (char *)buf, GFP_KERNEL))
1da177e4
LT
529 break;
530 buf++;
531 if (priv->reg[0] & 0x01) {
532 clear_epp_timeout(pp);
533 break;
534 }
535 }
536 change_mode(pp, ECR_PS2);
537 return got;
538}
539
540static size_t parport_uss720_epp_write_addr(struct parport *pp, const void *buf, size_t length, int flags)
541{
542 struct parport_uss720_private *priv = pp->private_data;
543 size_t written = 0;
544
545 if (change_mode(pp, ECR_EPP))
546 return 0;
547 for (; written < length; written++) {
0f36163d 548 if (set_1284_register(pp, 3, *(char *)buf, GFP_KERNEL))
1da177e4
LT
549 break;
550 buf++;
0f36163d 551 if (get_1284_register(pp, 1, NULL, GFP_KERNEL))
1da177e4
LT
552 break;
553 if (priv->reg[0] & 0x01) {
554 clear_epp_timeout(pp);
555 break;
556 }
557 }
558 change_mode(pp, ECR_PS2);
559 return written;
560}
561
562static size_t parport_uss720_ecp_write_data(struct parport *pp, const void *buffer, size_t len, int flags)
563{
564 struct parport_uss720_private *priv = pp->private_data;
565 struct usb_device *usbdev = priv->usbdev;
a8113da5 566 int rlen = 0;
1da177e4
LT
567 int i;
568
569 if (!usbdev)
570 return 0;
571 if (change_mode(pp, ECR_ECP))
572 return 0;
573 i = usb_bulk_msg(usbdev, usb_sndbulkpipe(usbdev, 1), (void *)buffer, len, &rlen, 20000);
574 if (i)
5b5e0928 575 printk(KERN_ERR "uss720: sendbulk ep 1 buf %p len %zu rlen %u\n", buffer, len, rlen);
1da177e4
LT
576 change_mode(pp, ECR_PS2);
577 return rlen;
578}
579
580static size_t parport_uss720_ecp_read_data(struct parport *pp, void *buffer, size_t len, int flags)
581{
582 struct parport_uss720_private *priv = pp->private_data;
583 struct usb_device *usbdev = priv->usbdev;
a8113da5 584 int rlen = 0;
1da177e4
LT
585 int i;
586
587 if (!usbdev)
588 return 0;
589 if (change_mode(pp, ECR_ECP))
590 return 0;
591 i = usb_bulk_msg(usbdev, usb_rcvbulkpipe(usbdev, 2), buffer, len, &rlen, 20000);
592 if (i)
5b5e0928 593 printk(KERN_ERR "uss720: recvbulk ep 2 buf %p len %zu rlen %u\n", buffer, len, rlen);
1da177e4
LT
594 change_mode(pp, ECR_PS2);
595 return rlen;
596}
597
598static size_t parport_uss720_ecp_write_addr(struct parport *pp, const void *buffer, size_t len, int flags)
599{
600 size_t written = 0;
601
602 if (change_mode(pp, ECR_ECP))
603 return 0;
604 for (; written < len; written++) {
0f36163d 605 if (set_1284_register(pp, 5, *(char *)buffer, GFP_KERNEL))
1da177e4
LT
606 break;
607 buffer++;
608 }
609 change_mode(pp, ECR_PS2);
610 return written;
611}
612
613static size_t parport_uss720_write_compat(struct parport *pp, const void *buffer, size_t len, int flags)
614{
615 struct parport_uss720_private *priv = pp->private_data;
616 struct usb_device *usbdev = priv->usbdev;
a8113da5 617 int rlen = 0;
1da177e4
LT
618 int i;
619
620 if (!usbdev)
621 return 0;
622 if (change_mode(pp, ECR_PPF))
623 return 0;
624 i = usb_bulk_msg(usbdev, usb_sndbulkpipe(usbdev, 1), (void *)buffer, len, &rlen, 20000);
625 if (i)
5b5e0928 626 printk(KERN_ERR "uss720: sendbulk ep 1 buf %p len %zu rlen %u\n", buffer, len, rlen);
1da177e4
LT
627 change_mode(pp, ECR_PS2);
628 return rlen;
629}
630
631/* --------------------------------------------------------------------- */
632
633static struct parport_operations parport_uss720_ops =
634{
635 .owner = THIS_MODULE,
636 .write_data = parport_uss720_write_data,
637 .read_data = parport_uss720_read_data,
638
639 .write_control = parport_uss720_write_control,
640 .read_control = parport_uss720_read_control,
641 .frob_control = parport_uss720_frob_control,
642
643 .read_status = parport_uss720_read_status,
644
645 .enable_irq = parport_uss720_enable_irq,
646 .disable_irq = parport_uss720_disable_irq,
647
648 .data_forward = parport_uss720_data_forward,
649 .data_reverse = parport_uss720_data_reverse,
650
651 .init_state = parport_uss720_init_state,
652 .save_state = parport_uss720_save_state,
653 .restore_state = parport_uss720_restore_state,
654
655 .epp_write_data = parport_uss720_epp_write_data,
656 .epp_read_data = parport_uss720_epp_read_data,
657 .epp_write_addr = parport_uss720_epp_write_addr,
658 .epp_read_addr = parport_uss720_epp_read_addr,
659
660 .ecp_write_data = parport_uss720_ecp_write_data,
661 .ecp_read_data = parport_uss720_ecp_read_data,
662 .ecp_write_addr = parport_uss720_ecp_write_addr,
663
664 .compat_write_data = parport_uss720_write_compat,
665 .nibble_read_data = parport_ieee1284_read_nibble,
666 .byte_read_data = parport_ieee1284_read_byte,
667};
668
669/* --------------------------------------------------------------------- */
670
671static int uss720_probe(struct usb_interface *intf,
672 const struct usb_device_id *id)
673{
0f36163d 674 struct usb_device *usbdev = usb_get_dev(interface_to_usbdev(intf));
1da177e4 675 struct usb_host_interface *interface;
9fdc1c6f 676 struct usb_endpoint_descriptor *epd;
1da177e4
LT
677 struct parport_uss720_private *priv;
678 struct parport *pp;
0f36163d 679 unsigned char reg;
3295f1b8 680 int ret;
1da177e4 681
7a2d2810
GKH
682 dev_dbg(&intf->dev, "probe: vendor id 0x%x, device id 0x%x\n",
683 le16_to_cpu(usbdev->descriptor.idVendor),
684 le16_to_cpu(usbdev->descriptor.idProduct));
1da177e4
LT
685
686 /* our known interfaces have 3 alternate settings */
0f36163d
TS
687 if (intf->num_altsetting != 3) {
688 usb_put_dev(usbdev);
1da177e4 689 return -ENODEV;
0f36163d 690 }
3295f1b8
AH
691 ret = usb_set_interface(usbdev, intf->altsetting->desc.bInterfaceNumber, 2);
692 dev_dbg(&intf->dev, "set interface result %d\n", ret);
1da177e4
LT
693
694 interface = intf->cur_altsetting;
695
d24f0596 696 if (interface->desc.bNumEndpoints < 2) {
f259ca3e
JH
697 usb_put_dev(usbdev);
698 return -ENODEV;
699 }
700
1da177e4
LT
701 /*
702 * Allocate parport interface
703 */
adde04c6
GKH
704 priv = kzalloc(sizeof(struct parport_uss720_private), GFP_KERNEL);
705 if (!priv) {
0f36163d 706 usb_put_dev(usbdev);
1da177e4 707 return -ENOMEM;
0f36163d
TS
708 }
709 priv->pp = NULL;
710 priv->usbdev = usbdev;
711 kref_init(&priv->ref_count);
712 spin_lock_init(&priv->asynclock);
713 INIT_LIST_HEAD(&priv->asynclist);
adde04c6
GKH
714 pp = parport_register_port(0, PARPORT_IRQ_NONE, PARPORT_DMA_NONE, &parport_uss720_ops);
715 if (!pp) {
3b6004f3 716 printk(KERN_WARNING "uss720: could not register parport\n");
1da177e4
LT
717 goto probe_abort;
718 }
719
0f36163d 720 priv->pp = pp;
1da177e4 721 pp->private_data = priv;
d24f0596
AH
722 pp->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_TRISTATE | PARPORT_MODE_EPP | PARPORT_MODE_COMPAT;
723 if (interface->desc.bNumEndpoints >= 3)
724 pp->modes |= PARPORT_MODE_ECP;
51fcd7ec 725 pp->dev = &usbdev->dev;
1da177e4
LT
726
727 /* set the USS720 control register to manual mode, no ECP compression, enable all ints */
0f36163d
TS
728 set_1284_register(pp, 7, 0x00, GFP_KERNEL);
729 set_1284_register(pp, 6, 0x30, GFP_KERNEL); /* PS/2 mode */
730 set_1284_register(pp, 2, 0x0c, GFP_KERNEL);
3295f1b8
AH
731
732 /* The Belkin F5U002 Rev 2 P80453-B USB parallel port adapter shares the
733 * device ID 050d:0002 with some other device that works with this
734 * driver, but it itself does not. Detect and handle the bad cable
735 * here. */
736 ret = get_1284_register(pp, 0, &reg, GFP_KERNEL);
5d31a6dc 737 dev_dbg(&intf->dev, "reg: %7ph\n", priv->reg);
3295f1b8
AH
738 if (ret < 0)
739 return ret;
1da177e4 740
3295f1b8
AH
741 ret = usb_find_last_int_in_endpoint(interface, &epd);
742 if (!ret) {
9fdc1c6f
JH
743 dev_dbg(&intf->dev, "epaddr %d interval %d\n",
744 epd->bEndpointAddress, epd->bInterval);
745 }
1da177e4
LT
746 parport_announce_port(pp);
747
0f36163d 748 usb_set_intfdata(intf, pp);
1da177e4
LT
749 return 0;
750
1da177e4 751probe_abort:
0f36163d
TS
752 kill_all_async_requests_priv(priv);
753 kref_put(&priv->ref_count, destroy_priv);
1da177e4
LT
754 return -ENODEV;
755}
756
757static void uss720_disconnect(struct usb_interface *intf)
758{
0f36163d 759 struct parport *pp = usb_get_intfdata(intf);
1da177e4
LT
760 struct parport_uss720_private *priv;
761
7a2d2810 762 dev_dbg(&intf->dev, "disconnect\n");
0f36163d 763 usb_set_intfdata(intf, NULL);
1da177e4
LT
764 if (pp) {
765 priv = pp->private_data;
0f36163d 766 priv->pp = NULL;
7a2d2810 767 dev_dbg(&intf->dev, "parport_remove_port\n");
0f36163d 768 parport_remove_port(pp);
1da177e4 769 parport_put_port(pp);
0f36163d
TS
770 kill_all_async_requests_priv(priv);
771 kref_put(&priv->ref_count, destroy_priv);
1da177e4 772 }
7a2d2810 773 dev_dbg(&intf->dev, "disconnect done\n");
1da177e4
LT
774}
775
776/* table of cables that work through this driver */
33b9e162 777static const struct usb_device_id uss720_table[] = {
fabce53c
AH
778 { USB_DEVICE(0x047e, 0x1001) }, /* Infowave 901-0030 */
779 { USB_DEVICE(0x04b8, 0x0002) }, /* Epson CAEUL0002 ISD-103 */
780 { USB_DEVICE(0x04b8, 0x0003) }, /* Epson ISD-101 */
e3cb7bde 781 { USB_DEVICE(0x050d, 0x0002) },
fabce53c 782 { USB_DEVICE(0x050d, 0x1202) }, /* Belkin F5U120-PC */
1da177e4 783 { USB_DEVICE(0x0557, 0x2001) },
fabce53c 784 { USB_DEVICE(0x05ab, 0x0002) }, /* Belkin F5U002 ISD-101 */
d24f0596 785 { USB_DEVICE(0x05ab, 0x1001) }, /* Belkin F5U002 P80453-A */
fabce53c 786 { USB_DEVICE(0x06c6, 0x0100) }, /* Infowave ISD-103 */
1da177e4
LT
787 { USB_DEVICE(0x0729, 0x1284) },
788 { USB_DEVICE(0x1293, 0x0002) },
789 { } /* Terminating entry */
790};
791
792MODULE_DEVICE_TABLE (usb, uss720_table);
793
794
795static struct usb_driver uss720_driver = {
1da177e4
LT
796 .name = "uss720",
797 .probe = uss720_probe,
798 .disconnect = uss720_disconnect,
799 .id_table = uss720_table,
800};
801
802/* --------------------------------------------------------------------- */
803
0f36163d
TS
804MODULE_AUTHOR(DRIVER_AUTHOR);
805MODULE_DESCRIPTION(DRIVER_DESC);
1da177e4
LT
806MODULE_LICENSE("GPL");
807
808static int __init uss720_init(void)
809{
810 int retval;
811 retval = usb_register(&uss720_driver);
812 if (retval)
813 goto out;
814
c35c376f 815 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
1b29a375
GKH
816 printk(KERN_INFO KBUILD_MODNAME ": NOTE: this is a special purpose "
817 "driver to allow nonstandard\n");
818 printk(KERN_INFO KBUILD_MODNAME ": protocols (eg. bitbang) over "
819 "USS720 usb to parallel cables\n");
820 printk(KERN_INFO KBUILD_MODNAME ": If you just want to connect to a "
821 "printer, use usblp instead\n");
1da177e4
LT
822out:
823 return retval;
824}
825
826static void __exit uss720_cleanup(void)
827{
828 usb_deregister(&uss720_driver);
829}
830
831module_init(uss720_init);
832module_exit(uss720_cleanup);
833
834/* --------------------------------------------------------------------- */
This page took 1.727001 seconds and 4 git commands to generate.