blob: b5d6616442635b8bf4c814bfd629a9ec18e927a3 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*****************************************************************************/
3
4/*
5 * uss720.c -- USS720 USB Parport Cable.
6 *
Thomas Sailerecc16242010-12-14 16:04:05 +01007 * Copyright (C) 1999, 2005, 2010
Thomas Sailer0f361632005-09-09 10:43:50 +02008 * Thomas Sailer (t.sailer@alumni.ethz.ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Based on parport_pc.c
11 *
12 * History:
Thomas Sailer0f361632005-09-09 10:43:50 +020013 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 *
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>
Thomas Sailer0f361632005-09-09 10:43:50 +020037#include <linux/completion.h>
38#include <linux/kref.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010040#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Thomas Sailer0f361632005-09-09 10:43:50 +020042#define DRIVER_AUTHOR "Thomas M. Sailer, t.sailer@alumni.ethz.ch"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#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;
Thomas Sailer0f361632005-09-09 10:43:50 +020049 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;
Johan Hovold9821aa92013-08-13 13:27:40 +020062 struct usb_ctrlrequest *dr;
Thomas Sailer0f361632005-09-09 10:43:50 +020063 __u8 reg[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66/* --------------------------------------------------------------------- */
67
Thomas Sailer0f361632005-09-09 10:43:50 +020068static void destroy_priv(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Thomas Sailer0f361632005-09-09 10:43:50 +020070 struct parport_uss720_private *priv = container_of(kref, struct parport_uss720_private, ref_count);
71
Greg Kroah-Hartman7a2d2812012-05-01 21:34:07 -070072 dev_dbg(&priv->usbdev->dev, "destroying priv datastructure\n");
Thomas Sailer0f361632005-09-09 10:43:50 +020073 usb_put_dev(priv->usbdev);
74 kfree(priv);
Thomas Sailer0f361632005-09-09 10:43:50 +020075}
76
77static void destroy_async(struct kref *kref)
78{
79 struct uss720_async_request *rq = container_of(kref, struct uss720_async_request, ref_count);
80 struct parport_uss720_private *priv = rq->priv;
81 unsigned long flags;
82
83 if (likely(rq->urb))
84 usb_free_urb(rq->urb);
Johan Hovold9821aa92013-08-13 13:27:40 +020085 kfree(rq->dr);
Thomas Sailer0f361632005-09-09 10:43:50 +020086 spin_lock_irqsave(&priv->asynclock, flags);
87 list_del_init(&rq->asynclist);
88 spin_unlock_irqrestore(&priv->asynclock, flags);
89 kfree(rq);
90 kref_put(&priv->ref_count, destroy_priv);
91}
92
93/* --------------------------------------------------------------------- */
94
David Howells7d12e782006-10-05 14:55:46 +010095static void async_complete(struct urb *urb)
Thomas Sailer0f361632005-09-09 10:43:50 +020096{
97 struct uss720_async_request *rq;
98 struct parport *pp;
99 struct parport_uss720_private *priv;
Greg Kroah-Hartman82210d32007-07-18 10:58:02 -0700100 int status = urb->status;
Thomas Sailer0f361632005-09-09 10:43:50 +0200101
102 rq = urb->context;
103 priv = rq->priv;
104 pp = priv->pp;
Greg Kroah-Hartman82210d32007-07-18 10:58:02 -0700105 if (status) {
Greg Kroah-Hartmand2b1ff72012-04-20 16:53:53 -0700106 dev_err(&urb->dev->dev, "async_complete: urb error %d\n",
107 status);
Johan Hovold9821aa92013-08-13 13:27:40 +0200108 } else if (rq->dr->bRequest == 3) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200109 memcpy(priv->reg, rq->reg, sizeof(priv->reg));
110#if 0
Andy Shevchenko5d31a6d2014-12-29 14:35:29 +0200111 dev_dbg(&priv->usbdev->dev, "async_complete regs %7ph\n",
112 priv->reg);
Thomas Sailer0f361632005-09-09 10:43:50 +0200113#endif
114 /* if nAck interrupts are enabled and we have an interrupt, call the interrupt procedure */
115 if (rq->reg[2] & rq->reg[1] & 0x10 && pp)
Jeff Garzikf230d102007-10-19 01:56:02 -0400116 parport_generic_irq(pp);
Thomas Sailer0f361632005-09-09 10:43:50 +0200117 }
118 complete(&rq->compl);
119 kref_put(&rq->ref_count, destroy_async);
120}
121
122static struct uss720_async_request *submit_async_request(struct parport_uss720_private *priv,
123 __u8 request, __u8 requesttype, __u16 value, __u16 index,
Al Viro55016f12005-10-21 03:21:58 -0400124 gfp_t mem_flags)
Thomas Sailer0f361632005-09-09 10:43:50 +0200125{
126 struct usb_device *usbdev;
127 struct uss720_async_request *rq;
128 unsigned long flags;
129 int ret;
130
131 if (!priv)
132 return NULL;
133 usbdev = priv->usbdev;
134 if (!usbdev)
135 return NULL;
Johan Hovold9821aa92013-08-13 13:27:40 +0200136 rq = kzalloc(sizeof(struct uss720_async_request), mem_flags);
Wolfram Sangc9220ba2016-08-25 19:39:24 +0200137 if (!rq)
Thomas Sailer0f361632005-09-09 10:43:50 +0200138 return NULL;
Thomas Sailer0f361632005-09-09 10:43:50 +0200139 kref_init(&rq->ref_count);
140 INIT_LIST_HEAD(&rq->asynclist);
141 init_completion(&rq->compl);
142 kref_get(&priv->ref_count);
143 rq->priv = priv;
144 rq->urb = usb_alloc_urb(0, mem_flags);
145 if (!rq->urb) {
146 kref_put(&rq->ref_count, destroy_async);
Thomas Sailer0f361632005-09-09 10:43:50 +0200147 return NULL;
148 }
Johan Hovold9821aa92013-08-13 13:27:40 +0200149 rq->dr = kmalloc(sizeof(*rq->dr), mem_flags);
150 if (!rq->dr) {
151 kref_put(&rq->ref_count, destroy_async);
152 return NULL;
153 }
154 rq->dr->bRequestType = requesttype;
155 rq->dr->bRequest = request;
156 rq->dr->wValue = cpu_to_le16(value);
157 rq->dr->wIndex = cpu_to_le16(index);
158 rq->dr->wLength = cpu_to_le16((request == 3) ? sizeof(rq->reg) : 0);
Thomas Sailer0f361632005-09-09 10:43:50 +0200159 usb_fill_control_urb(rq->urb, usbdev, (requesttype & 0x80) ? usb_rcvctrlpipe(usbdev, 0) : usb_sndctrlpipe(usbdev, 0),
Johan Hovold9821aa92013-08-13 13:27:40 +0200160 (unsigned char *)rq->dr,
Thomas Sailer0f361632005-09-09 10:43:50 +0200161 (request == 3) ? rq->reg : NULL, (request == 3) ? sizeof(rq->reg) : 0, async_complete, rq);
162 /* rq->urb->transfer_flags |= URB_ASYNC_UNLINK; */
163 spin_lock_irqsave(&priv->asynclock, flags);
164 list_add_tail(&rq->asynclist, &priv->asynclist);
165 spin_unlock_irqrestore(&priv->asynclock, flags);
Peter Holikadaa3c62011-03-18 18:47:44 +0100166 kref_get(&rq->ref_count);
Thomas Sailer0f361632005-09-09 10:43:50 +0200167 ret = usb_submit_urb(rq->urb, mem_flags);
Peter Holikadaa3c62011-03-18 18:47:44 +0100168 if (!ret)
Thomas Sailer0f361632005-09-09 10:43:50 +0200169 return rq;
Peter Holikadaa3c62011-03-18 18:47:44 +0100170 destroy_async(&rq->ref_count);
Greg Kroah-Hartmand2b1ff72012-04-20 16:53:53 -0700171 dev_err(&usbdev->dev, "submit_async_request submit_urb failed with %d\n", ret);
Thomas Sailer0f361632005-09-09 10:43:50 +0200172 return NULL;
173}
174
175static unsigned int kill_all_async_requests_priv(struct parport_uss720_private *priv)
176{
177 struct uss720_async_request *rq;
178 unsigned long flags;
179 unsigned int ret = 0;
180
181 spin_lock_irqsave(&priv->asynclock, flags);
182 list_for_each_entry(rq, &priv->asynclist, asynclist) {
183 usb_unlink_urb(rq->urb);
184 ret++;
185 }
186 spin_unlock_irqrestore(&priv->asynclock, flags);
187 return ret;
188}
189
190/* --------------------------------------------------------------------- */
191
Al Viro55016f12005-10-21 03:21:58 -0400192static int get_1284_register(struct parport *pp, unsigned char reg, unsigned char *val, gfp_t mem_flags)
Thomas Sailer0f361632005-09-09 10:43:50 +0200193{
194 struct parport_uss720_private *priv;
195 struct uss720_async_request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 static const unsigned char regindex[9] = {
197 4, 0, 1, 5, 5, 0, 2, 3, 6
198 };
199 int ret;
200
Thomas Sailer0f361632005-09-09 10:43:50 +0200201 if (!pp)
202 return -EIO;
203 priv = pp->private_data;
204 rq = submit_async_request(priv, 3, 0xc0, ((unsigned int)reg) << 8, 0, mem_flags);
205 if (!rq) {
Greg Kroah-Hartmand2b1ff72012-04-20 16:53:53 -0700206 dev_err(&priv->usbdev->dev, "get_1284_register(%u) failed",
207 (unsigned int)reg);
Thomas Sailer0f361632005-09-09 10:43:50 +0200208 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Thomas Sailer0f361632005-09-09 10:43:50 +0200210 if (!val) {
211 kref_put(&rq->ref_count, destroy_async);
212 return 0;
213 }
214 if (wait_for_completion_timeout(&rq->compl, HZ)) {
215 ret = rq->urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *val = priv->reg[(reg >= 9) ? 0 : regindex[reg]];
Thomas Sailer0f361632005-09-09 10:43:50 +0200217 if (ret)
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700218 printk(KERN_WARNING "get_1284_register: "
219 "usb error %d\n", ret);
Thomas Sailer0f361632005-09-09 10:43:50 +0200220 kref_put(&rq->ref_count, destroy_async);
221 return ret;
222 }
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700223 printk(KERN_WARNING "get_1284_register timeout\n");
Thomas Sailer0f361632005-09-09 10:43:50 +0200224 kill_all_async_requests_priv(priv);
225 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Al Viro55016f12005-10-21 03:21:58 -0400228static int set_1284_register(struct parport *pp, unsigned char reg, unsigned char val, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Thomas Sailer0f361632005-09-09 10:43:50 +0200230 struct parport_uss720_private *priv;
231 struct uss720_async_request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Thomas Sailer0f361632005-09-09 10:43:50 +0200233 if (!pp)
234 return -EIO;
235 priv = pp->private_data;
236 rq = submit_async_request(priv, 4, 0x40, (((unsigned int)reg) << 8) | val, 0, mem_flags);
237 if (!rq) {
Greg Kroah-Hartmand2b1ff72012-04-20 16:53:53 -0700238 dev_err(&priv->usbdev->dev, "set_1284_register(%u,%u) failed",
239 (unsigned int)reg, (unsigned int)val);
Thomas Sailer0f361632005-09-09 10:43:50 +0200240 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Thomas Sailer0f361632005-09-09 10:43:50 +0200242 kref_put(&rq->ref_count, destroy_async);
243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
246/* --------------------------------------------------------------------- */
247
248/* ECR modes */
249#define ECR_SPP 00
250#define ECR_PS2 01
251#define ECR_PPF 02
252#define ECR_ECP 03
253#define ECR_EPP 04
254
255/* Safely change the mode bits in the ECR */
256static int change_mode(struct parport *pp, int m)
257{
258 struct parport_uss720_private *priv = pp->private_data;
259 int mode;
Thomas Sailer0f361632005-09-09 10:43:50 +0200260 __u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Thomas Sailer0f361632005-09-09 10:43:50 +0200262 if (get_1284_register(pp, 6, &reg, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return -EIO;
264 /* Bits <7:5> contain the mode. */
265 mode = (priv->reg[2] >> 5) & 0x7;
266 if (mode == m)
267 return 0;
268 /* We have to go through mode 000 or 001 */
269 if (mode > ECR_PS2 && m > ECR_PS2)
270 if (change_mode(pp, ECR_PS2))
271 return -EIO;
272
273 if (m <= ECR_PS2 && !(priv->reg[1] & 0x20)) {
274 /* This mode resets the FIFO, so we may
275 * have to wait for it to drain first. */
276 unsigned long expire = jiffies + pp->physport->cad->timeout;
277 switch (mode) {
278 case ECR_PPF: /* Parallel Port FIFO mode */
279 case ECR_ECP: /* ECP Parallel Port mode */
280 /* Poll slowly. */
281 for (;;) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200282 if (get_1284_register(pp, 6, &reg, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -EIO;
284 if (priv->reg[2] & 0x01)
285 break;
286 if (time_after_eq (jiffies, expire))
287 /* The FIFO is stuck. */
288 return -EBUSY;
289 msleep_interruptible(10);
290 if (signal_pending (current))
291 break;
292 }
293 }
294 }
295 /* Set the mode. */
Thomas Sailer0f361632005-09-09 10:43:50 +0200296 if (set_1284_register(pp, 6, m << 5, GFP_KERNEL))
297 return -EIO;
298 if (get_1284_register(pp, 6, &reg, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return -EIO;
300 return 0;
301}
302
303/*
304 * Clear TIMEOUT BIT in EPP MODE
305 */
306static int clear_epp_timeout(struct parport *pp)
307{
308 unsigned char stat;
309
Thomas Sailer0f361632005-09-09 10:43:50 +0200310 if (get_1284_register(pp, 1, &stat, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 1;
312 return stat & 1;
313}
314
315/*
316 * Access functions.
317 */
318#if 0
319static int uss720_irq(int usbstatus, void *buffer, int len, void *dev_id)
320{
321 struct parport *pp = (struct parport *)dev_id;
322 struct parport_uss720_private *priv = pp->private_data;
323
324 if (usbstatus != 0 || len < 4 || !buffer)
325 return 1;
326 memcpy(priv->reg, buffer, 4);
327 /* if nAck interrupts are enabled and we have an interrupt, call the interrupt procedure */
328 if (priv->reg[2] & priv->reg[1] & 0x10)
Jeff Garzikf230d102007-10-19 01:56:02 -0400329 parport_generic_irq(pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 1;
331}
332#endif
333
334static void parport_uss720_write_data(struct parport *pp, unsigned char d)
335{
Thomas Sailer0f361632005-09-09 10:43:50 +0200336 set_1284_register(pp, 0, d, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339static unsigned char parport_uss720_read_data(struct parport *pp)
340{
341 unsigned char ret;
342
Thomas Sailer0f361632005-09-09 10:43:50 +0200343 if (get_1284_register(pp, 0, &ret, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return 0;
345 return ret;
346}
347
348static void parport_uss720_write_control(struct parport *pp, unsigned char d)
349{
350 struct parport_uss720_private *priv = pp->private_data;
351
352 d = (d & 0xf) | (priv->reg[1] & 0xf0);
Thomas Sailer0f361632005-09-09 10:43:50 +0200353 if (set_1284_register(pp, 2, d, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return;
355 priv->reg[1] = d;
356}
357
358static unsigned char parport_uss720_read_control(struct parport *pp)
359{
360 struct parport_uss720_private *priv = pp->private_data;
361 return priv->reg[1] & 0xf; /* Use soft copy */
362}
363
364static unsigned char parport_uss720_frob_control(struct parport *pp, unsigned char mask, unsigned char val)
365{
366 struct parport_uss720_private *priv = pp->private_data;
367 unsigned char d;
368
369 mask &= 0x0f;
370 val &= 0x0f;
371 d = (priv->reg[1] & (~mask)) ^ val;
Jia-Ju Baibc8acc22018-09-01 16:25:08 +0800372 if (set_1284_register(pp, 2, d, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374 priv->reg[1] = d;
375 return d & 0xf;
376}
377
378static unsigned char parport_uss720_read_status(struct parport *pp)
379{
380 unsigned char ret;
381
Jia-Ju Baibc8acc22018-09-01 16:25:08 +0800382 if (get_1284_register(pp, 1, &ret, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 0;
384 return ret & 0xf8;
385}
386
387static void parport_uss720_disable_irq(struct parport *pp)
388{
389 struct parport_uss720_private *priv = pp->private_data;
390 unsigned char d;
391
392 d = priv->reg[1] & ~0x10;
Thomas Sailer0f361632005-09-09 10:43:50 +0200393 if (set_1284_register(pp, 2, d, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return;
395 priv->reg[1] = d;
396}
397
398static void parport_uss720_enable_irq(struct parport *pp)
399{
400 struct parport_uss720_private *priv = pp->private_data;
401 unsigned char d;
402
403 d = priv->reg[1] | 0x10;
Thomas Sailer0f361632005-09-09 10:43:50 +0200404 if (set_1284_register(pp, 2, d, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return;
406 priv->reg[1] = d;
407}
408
409static void parport_uss720_data_forward (struct parport *pp)
410{
411 struct parport_uss720_private *priv = pp->private_data;
412 unsigned char d;
413
414 d = priv->reg[1] & ~0x20;
Thomas Sailer0f361632005-09-09 10:43:50 +0200415 if (set_1284_register(pp, 2, d, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return;
417 priv->reg[1] = d;
418}
419
420static void parport_uss720_data_reverse (struct parport *pp)
421{
422 struct parport_uss720_private *priv = pp->private_data;
423 unsigned char d;
424
425 d = priv->reg[1] | 0x20;
Thomas Sailer0f361632005-09-09 10:43:50 +0200426 if (set_1284_register(pp, 2, d, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return;
428 priv->reg[1] = d;
429}
430
431static void parport_uss720_init_state(struct pardevice *dev, struct parport_state *s)
432{
433 s->u.pc.ctr = 0xc | (dev->irq_func ? 0x10 : 0x0);
434 s->u.pc.ecr = 0x24;
435}
436
437static void parport_uss720_save_state(struct parport *pp, struct parport_state *s)
438{
439 struct parport_uss720_private *priv = pp->private_data;
440
Thomas Sailer0f361632005-09-09 10:43:50 +0200441#if 0
442 if (get_1284_register(pp, 2, NULL, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return;
Thomas Sailer0f361632005-09-09 10:43:50 +0200444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 s->u.pc.ctr = priv->reg[1];
446 s->u.pc.ecr = priv->reg[2];
447}
448
449static void parport_uss720_restore_state(struct parport *pp, struct parport_state *s)
450{
Thomas Sailer0f361632005-09-09 10:43:50 +0200451 struct parport_uss720_private *priv = pp->private_data;
452
453 set_1284_register(pp, 2, s->u.pc.ctr, GFP_ATOMIC);
454 set_1284_register(pp, 6, s->u.pc.ecr, GFP_ATOMIC);
455 get_1284_register(pp, 2, NULL, GFP_ATOMIC);
456 priv->reg[1] = s->u.pc.ctr;
457 priv->reg[2] = s->u.pc.ecr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460static size_t parport_uss720_epp_read_data(struct parport *pp, void *buf, size_t length, int flags)
461{
462 struct parport_uss720_private *priv = pp->private_data;
463 size_t got = 0;
464
465 if (change_mode(pp, ECR_EPP))
466 return 0;
467 for (; got < length; got++) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200468 if (get_1284_register(pp, 4, (char *)buf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 buf++;
471 if (priv->reg[0] & 0x01) {
472 clear_epp_timeout(pp);
473 break;
474 }
475 }
476 change_mode(pp, ECR_PS2);
477 return got;
478}
479
480static size_t parport_uss720_epp_write_data(struct parport *pp, const void *buf, size_t length, int flags)
481{
482#if 0
483 struct parport_uss720_private *priv = pp->private_data;
484 size_t written = 0;
485
486 if (change_mode(pp, ECR_EPP))
487 return 0;
488 for (; written < length; written++) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200489 if (set_1284_register(pp, 4, (char *)buf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491 ((char*)buf)++;
Thomas Sailer0f361632005-09-09 10:43:50 +0200492 if (get_1284_register(pp, 1, NULL, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494 if (priv->reg[0] & 0x01) {
495 clear_epp_timeout(pp);
496 break;
497 }
498 }
499 change_mode(pp, ECR_PS2);
500 return written;
501#else
502 struct parport_uss720_private *priv = pp->private_data;
503 struct usb_device *usbdev = priv->usbdev;
504 int rlen;
505 int i;
506
507 if (!usbdev)
508 return 0;
509 if (change_mode(pp, ECR_EPP))
510 return 0;
511 i = usb_bulk_msg(usbdev, usb_sndbulkpipe(usbdev, 1), (void *)buf, length, &rlen, 20000);
512 if (i)
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800513 printk(KERN_ERR "uss720: sendbulk ep 1 buf %p len %zu rlen %u\n", buf, length, rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 change_mode(pp, ECR_PS2);
515 return rlen;
516#endif
517}
518
519static size_t parport_uss720_epp_read_addr(struct parport *pp, void *buf, size_t length, int flags)
520{
521 struct parport_uss720_private *priv = pp->private_data;
522 size_t got = 0;
523
524 if (change_mode(pp, ECR_EPP))
525 return 0;
526 for (; got < length; got++) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200527 if (get_1284_register(pp, 3, (char *)buf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
529 buf++;
530 if (priv->reg[0] & 0x01) {
531 clear_epp_timeout(pp);
532 break;
533 }
534 }
535 change_mode(pp, ECR_PS2);
536 return got;
537}
538
539static size_t parport_uss720_epp_write_addr(struct parport *pp, const void *buf, size_t length, int flags)
540{
541 struct parport_uss720_private *priv = pp->private_data;
542 size_t written = 0;
543
544 if (change_mode(pp, ECR_EPP))
545 return 0;
546 for (; written < length; written++) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200547 if (set_1284_register(pp, 3, *(char *)buf, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 break;
549 buf++;
Thomas Sailer0f361632005-09-09 10:43:50 +0200550 if (get_1284_register(pp, 1, NULL, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 break;
552 if (priv->reg[0] & 0x01) {
553 clear_epp_timeout(pp);
554 break;
555 }
556 }
557 change_mode(pp, ECR_PS2);
558 return written;
559}
560
561static size_t parport_uss720_ecp_write_data(struct parport *pp, const void *buffer, size_t len, int flags)
562{
563 struct parport_uss720_private *priv = pp->private_data;
564 struct usb_device *usbdev = priv->usbdev;
565 int rlen;
566 int i;
567
568 if (!usbdev)
569 return 0;
570 if (change_mode(pp, ECR_ECP))
571 return 0;
572 i = usb_bulk_msg(usbdev, usb_sndbulkpipe(usbdev, 1), (void *)buffer, len, &rlen, 20000);
573 if (i)
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800574 printk(KERN_ERR "uss720: sendbulk ep 1 buf %p len %zu rlen %u\n", buffer, len, rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 change_mode(pp, ECR_PS2);
576 return rlen;
577}
578
579static size_t parport_uss720_ecp_read_data(struct parport *pp, void *buffer, size_t len, int flags)
580{
581 struct parport_uss720_private *priv = pp->private_data;
582 struct usb_device *usbdev = priv->usbdev;
583 int rlen;
584 int i;
585
586 if (!usbdev)
587 return 0;
588 if (change_mode(pp, ECR_ECP))
589 return 0;
590 i = usb_bulk_msg(usbdev, usb_rcvbulkpipe(usbdev, 2), buffer, len, &rlen, 20000);
591 if (i)
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800592 printk(KERN_ERR "uss720: recvbulk ep 2 buf %p len %zu rlen %u\n", buffer, len, rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 change_mode(pp, ECR_PS2);
594 return rlen;
595}
596
597static size_t parport_uss720_ecp_write_addr(struct parport *pp, const void *buffer, size_t len, int flags)
598{
599 size_t written = 0;
600
601 if (change_mode(pp, ECR_ECP))
602 return 0;
603 for (; written < len; written++) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200604 if (set_1284_register(pp, 5, *(char *)buffer, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 break;
606 buffer++;
607 }
608 change_mode(pp, ECR_PS2);
609 return written;
610}
611
612static size_t parport_uss720_write_compat(struct parport *pp, const void *buffer, size_t len, int flags)
613{
614 struct parport_uss720_private *priv = pp->private_data;
615 struct usb_device *usbdev = priv->usbdev;
616 int rlen;
617 int i;
618
619 if (!usbdev)
620 return 0;
621 if (change_mode(pp, ECR_PPF))
622 return 0;
623 i = usb_bulk_msg(usbdev, usb_sndbulkpipe(usbdev, 1), (void *)buffer, len, &rlen, 20000);
624 if (i)
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800625 printk(KERN_ERR "uss720: sendbulk ep 1 buf %p len %zu rlen %u\n", buffer, len, rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 change_mode(pp, ECR_PS2);
627 return rlen;
628}
629
630/* --------------------------------------------------------------------- */
631
632static struct parport_operations parport_uss720_ops =
633{
634 .owner = THIS_MODULE,
635 .write_data = parport_uss720_write_data,
636 .read_data = parport_uss720_read_data,
637
638 .write_control = parport_uss720_write_control,
639 .read_control = parport_uss720_read_control,
640 .frob_control = parport_uss720_frob_control,
641
642 .read_status = parport_uss720_read_status,
643
644 .enable_irq = parport_uss720_enable_irq,
645 .disable_irq = parport_uss720_disable_irq,
646
647 .data_forward = parport_uss720_data_forward,
648 .data_reverse = parport_uss720_data_reverse,
649
650 .init_state = parport_uss720_init_state,
651 .save_state = parport_uss720_save_state,
652 .restore_state = parport_uss720_restore_state,
653
654 .epp_write_data = parport_uss720_epp_write_data,
655 .epp_read_data = parport_uss720_epp_read_data,
656 .epp_write_addr = parport_uss720_epp_write_addr,
657 .epp_read_addr = parport_uss720_epp_read_addr,
658
659 .ecp_write_data = parport_uss720_ecp_write_data,
660 .ecp_read_data = parport_uss720_ecp_read_data,
661 .ecp_write_addr = parport_uss720_ecp_write_addr,
662
663 .compat_write_data = parport_uss720_write_compat,
664 .nibble_read_data = parport_ieee1284_read_nibble,
665 .byte_read_data = parport_ieee1284_read_byte,
666};
667
668/* --------------------------------------------------------------------- */
669
670static int uss720_probe(struct usb_interface *intf,
671 const struct usb_device_id *id)
672{
Thomas Sailer0f361632005-09-09 10:43:50 +0200673 struct usb_device *usbdev = usb_get_dev(interface_to_usbdev(intf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 struct usb_host_interface *interface;
Johan Hovold9fdc1c62017-03-17 11:35:44 +0100675 struct usb_endpoint_descriptor *epd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct parport_uss720_private *priv;
677 struct parport *pp;
Thomas Sailer0f361632005-09-09 10:43:50 +0200678 unsigned char reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 int i;
680
Greg Kroah-Hartman7a2d2812012-05-01 21:34:07 -0700681 dev_dbg(&intf->dev, "probe: vendor id 0x%x, device id 0x%x\n",
682 le16_to_cpu(usbdev->descriptor.idVendor),
683 le16_to_cpu(usbdev->descriptor.idProduct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /* our known interfaces have 3 alternate settings */
Thomas Sailer0f361632005-09-09 10:43:50 +0200686 if (intf->num_altsetting != 3) {
687 usb_put_dev(usbdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return -ENODEV;
Thomas Sailer0f361632005-09-09 10:43:50 +0200689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 i = usb_set_interface(usbdev, intf->altsetting->desc.bInterfaceNumber, 2);
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900691 dev_dbg(&intf->dev, "set interface result %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 interface = intf->cur_altsetting;
694
Johan Hovoldf259ca32017-03-13 13:47:50 +0100695 if (interface->desc.bNumEndpoints < 3) {
696 usb_put_dev(usbdev);
697 return -ENODEV;
698 }
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /*
701 * Allocate parport interface
702 */
Greg Kroah-Hartmanadde04c2015-04-30 11:33:07 +0200703 priv = kzalloc(sizeof(struct parport_uss720_private), GFP_KERNEL);
704 if (!priv) {
Thomas Sailer0f361632005-09-09 10:43:50 +0200705 usb_put_dev(usbdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return -ENOMEM;
Thomas Sailer0f361632005-09-09 10:43:50 +0200707 }
708 priv->pp = NULL;
709 priv->usbdev = usbdev;
710 kref_init(&priv->ref_count);
711 spin_lock_init(&priv->asynclock);
712 INIT_LIST_HEAD(&priv->asynclist);
Greg Kroah-Hartmanadde04c2015-04-30 11:33:07 +0200713 pp = parport_register_port(0, PARPORT_IRQ_NONE, PARPORT_DMA_NONE, &parport_uss720_ops);
714 if (!pp) {
Greg Kroah-Hartman3b6004f2008-08-14 09:37:34 -0700715 printk(KERN_WARNING "uss720: could not register parport\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 goto probe_abort;
717 }
718
Thomas Sailer0f361632005-09-09 10:43:50 +0200719 priv->pp = pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 pp->private_data = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 pp->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_TRISTATE | PARPORT_MODE_EPP | PARPORT_MODE_ECP | PARPORT_MODE_COMPAT;
722
723 /* set the USS720 control register to manual mode, no ECP compression, enable all ints */
Thomas Sailer0f361632005-09-09 10:43:50 +0200724 set_1284_register(pp, 7, 0x00, GFP_KERNEL);
725 set_1284_register(pp, 6, 0x30, GFP_KERNEL); /* PS/2 mode */
726 set_1284_register(pp, 2, 0x0c, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* debugging */
Thomas Sailer0f361632005-09-09 10:43:50 +0200728 get_1284_register(pp, 0, &reg, GFP_KERNEL);
Andy Shevchenko5d31a6d2014-12-29 14:35:29 +0200729 dev_dbg(&intf->dev, "reg: %7ph\n", priv->reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Johan Hovold9fdc1c62017-03-17 11:35:44 +0100731 i = usb_find_last_int_in_endpoint(interface, &epd);
732 if (!i) {
733 dev_dbg(&intf->dev, "epaddr %d interval %d\n",
734 epd->bEndpointAddress, epd->bInterval);
735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 parport_announce_port(pp);
737
Thomas Sailer0f361632005-09-09 10:43:50 +0200738 usb_set_intfdata(intf, pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return 0;
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741probe_abort:
Thomas Sailer0f361632005-09-09 10:43:50 +0200742 kill_all_async_requests_priv(priv);
743 kref_put(&priv->ref_count, destroy_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return -ENODEV;
745}
746
747static void uss720_disconnect(struct usb_interface *intf)
748{
Thomas Sailer0f361632005-09-09 10:43:50 +0200749 struct parport *pp = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 struct parport_uss720_private *priv;
751
Greg Kroah-Hartman7a2d2812012-05-01 21:34:07 -0700752 dev_dbg(&intf->dev, "disconnect\n");
Thomas Sailer0f361632005-09-09 10:43:50 +0200753 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (pp) {
755 priv = pp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 priv->usbdev = NULL;
Thomas Sailer0f361632005-09-09 10:43:50 +0200757 priv->pp = NULL;
Greg Kroah-Hartman7a2d2812012-05-01 21:34:07 -0700758 dev_dbg(&intf->dev, "parport_remove_port\n");
Thomas Sailer0f361632005-09-09 10:43:50 +0200759 parport_remove_port(pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 parport_put_port(pp);
Thomas Sailer0f361632005-09-09 10:43:50 +0200761 kill_all_async_requests_priv(priv);
762 kref_put(&priv->ref_count, destroy_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
Greg Kroah-Hartman7a2d2812012-05-01 21:34:07 -0700764 dev_dbg(&intf->dev, "disconnect done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767/* table of cables that work through this driver */
Németh Márton33b9e162010-01-10 15:34:45 +0100768static const struct usb_device_id uss720_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 { USB_DEVICE(0x047e, 0x1001) },
Daniel Gimpeleviche3cb7bde2018-03-20 03:58:47 -0700770 { USB_DEVICE(0x04b8, 0x0002) },
771 { USB_DEVICE(0x04b8, 0x0003) },
772 { USB_DEVICE(0x050d, 0x0002) },
773 { USB_DEVICE(0x050d, 0x1202) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 { USB_DEVICE(0x0557, 0x2001) },
Daniel Gimpeleviche3cb7bde2018-03-20 03:58:47 -0700775 { USB_DEVICE(0x05ab, 0x0002) },
776 { USB_DEVICE(0x06c6, 0x0100) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 { USB_DEVICE(0x0729, 0x1284) },
778 { USB_DEVICE(0x1293, 0x0002) },
779 { } /* Terminating entry */
780};
781
782MODULE_DEVICE_TABLE (usb, uss720_table);
783
784
785static struct usb_driver uss720_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .name = "uss720",
787 .probe = uss720_probe,
788 .disconnect = uss720_disconnect,
789 .id_table = uss720_table,
790};
791
792/* --------------------------------------------------------------------- */
793
Thomas Sailer0f361632005-09-09 10:43:50 +0200794MODULE_AUTHOR(DRIVER_AUTHOR);
795MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796MODULE_LICENSE("GPL");
797
798static int __init uss720_init(void)
799{
800 int retval;
801 retval = usb_register(&uss720_driver);
802 if (retval)
803 goto out;
804
Greg Kroah-Hartmanc35c3762017-07-19 14:17:41 +0200805 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700806 printk(KERN_INFO KBUILD_MODNAME ": NOTE: this is a special purpose "
807 "driver to allow nonstandard\n");
808 printk(KERN_INFO KBUILD_MODNAME ": protocols (eg. bitbang) over "
809 "USS720 usb to parallel cables\n");
810 printk(KERN_INFO KBUILD_MODNAME ": If you just want to connect to a "
811 "printer, use usblp instead\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812out:
813 return retval;
814}
815
816static void __exit uss720_cleanup(void)
817{
818 usb_deregister(&uss720_driver);
819}
820
821module_init(uss720_init);
822module_exit(uss720_cleanup);
823
824/* --------------------------------------------------------------------- */