1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51#include <linux/kernel.h>
52#include <linux/errno.h>
53#include <linux/init.h>
54#include <linux/slab.h>
55#include <linux/tty.h>
56#include <linux/tty_driver.h>
57#include <linux/tty_flip.h>
58#include <linux/module.h>
59#include <linux/moduleparam.h>
60#include <linux/spinlock.h>
61#include <linux/usb.h>
62#include <linux/usb/serial.h>
63#include <linux/serial.h>
64#include <linux/delay.h>
65#include <asm/uaccess.h>
66
67#include "cypress_m8.h"
68
69
70#ifdef CONFIG_USB_SERIAL_DEBUG
71 static int debug = 1;
72#else
73 static int debug;
74#endif
75static int stats;
76static int interval;
77
78
79
80
81#define DRIVER_VERSION "v1.09"
82#define DRIVER_AUTHOR "Lonnie Mendez <dignome@gmail.com>, Neil Whelchel <koyama@firstlight.net>"
83#define DRIVER_DESC "Cypress USB to Serial Driver"
84
85
86#define CYPRESS_BUF_SIZE 1024
87#define CYPRESS_CLOSING_WAIT (30*HZ)
88
89static struct usb_device_id id_table_earthmate [] = {
90 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
91 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
92 { }
93};
94
95static struct usb_device_id id_table_cyphidcomrs232 [] = {
96 { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
97 { }
98};
99
100static struct usb_device_id id_table_nokiaca42v2 [] = {
101 { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
102 { }
103};
104
105static struct usb_device_id id_table_combined [] = {
106 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB) },
107 { USB_DEVICE(VENDOR_ID_DELORME, PRODUCT_ID_EARTHMATEUSB_LT20) },
108 { USB_DEVICE(VENDOR_ID_CYPRESS, PRODUCT_ID_CYPHIDCOM) },
109 { USB_DEVICE(VENDOR_ID_DAZZLE, PRODUCT_ID_CA42) },
110 { }
111};
112
113MODULE_DEVICE_TABLE (usb, id_table_combined);
114
115static struct usb_driver cypress_driver = {
116 .name = "cypress",
117 .probe = usb_serial_probe,
118 .disconnect = usb_serial_disconnect,
119 .id_table = id_table_combined,
120 .no_dynamic_id = 1,
121};
122
123struct cypress_private {
124 spinlock_t lock;
125 int chiptype;
126 int bytes_in;
127 int bytes_out;
128 int cmd_count;
129 int cmd_ctrl;
130 struct cypress_buf *buf;
131 int write_urb_in_use;
132 int write_urb_interval;
133 int read_urb_interval;
134 int comm_is_ok;
135 int termios_initialized;
136 __u8 line_control;
137 __u8 current_status;
138 __u8 current_config;
139 __u8 rx_flags;
140 int baud_rate;
141 int cbr_mask;
142 int isthrottled;
143 wait_queue_head_t delta_msr_wait;
144 char prev_status, diff_status;
145
146 struct ktermios tmp_termios;
147};
148
149
150struct cypress_buf {
151 unsigned int buf_size;
152 char *buf_buf;
153 char *buf_get;
154 char *buf_put;
155};
156
157
158static int cypress_earthmate_startup (struct usb_serial *serial);
159static int cypress_hidcom_startup (struct usb_serial *serial);
160static int cypress_ca42v2_startup (struct usb_serial *serial);
161static void cypress_shutdown (struct usb_serial *serial);
162static int cypress_open (struct usb_serial_port *port, struct file *filp);
163static void cypress_close (struct usb_serial_port *port, struct file *filp);
164static int cypress_write (struct usb_serial_port *port, const unsigned char *buf, int count);
165static void cypress_send (struct usb_serial_port *port);
166static int cypress_write_room (struct usb_serial_port *port);
167static int cypress_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
168static void cypress_set_termios (struct usb_serial_port *port, struct ktermios * old);
169static int cypress_tiocmget (struct usb_serial_port *port, struct file *file);
170static int cypress_tiocmset (struct usb_serial_port *port, struct file *file, unsigned int set, unsigned int clear);
171static int cypress_chars_in_buffer (struct usb_serial_port *port);
172static void cypress_throttle (struct usb_serial_port *port);
173static void cypress_unthrottle (struct usb_serial_port *port);
174static void cypress_set_dead (struct usb_serial_port *port);
175static void cypress_read_int_callback (struct urb *urb);
176static void cypress_write_int_callback (struct urb *urb);
177
178static int mask_to_rate (unsigned mask);
179static unsigned rate_to_mask (int rate);
180
181static struct cypress_buf *cypress_buf_alloc(unsigned int size);
182static void cypress_buf_free(struct cypress_buf *cb);
183static void cypress_buf_clear(struct cypress_buf *cb);
184static unsigned int cypress_buf_data_avail(struct cypress_buf *cb);
185static unsigned int cypress_buf_space_avail(struct cypress_buf *cb);
186static unsigned int cypress_buf_put(struct cypress_buf *cb, const char *buf, unsigned int count);
187static unsigned int cypress_buf_get(struct cypress_buf *cb, char *buf, unsigned int count);
188
189
190static struct usb_serial_driver cypress_earthmate_device = {
191 .driver = {
192 .owner = THIS_MODULE,
193 .name = "earthmate",
194 },
195 .description = "DeLorme Earthmate USB",
196 .id_table = id_table_earthmate,
197 .num_interrupt_in = 1,
198 .num_interrupt_out = 1,
199 .num_bulk_in = NUM_DONT_CARE,
200 .num_bulk_out = NUM_DONT_CARE,
201 .num_ports = 1,
202 .attach = cypress_earthmate_startup,
203 .shutdown = cypress_shutdown,
204 .open = cypress_open,
205 .close = cypress_close,
206 .write = cypress_write,
207 .write_room = cypress_write_room,
208 .ioctl = cypress_ioctl,
209 .set_termios = cypress_set_termios,
210 .tiocmget = cypress_tiocmget,
211 .tiocmset = cypress_tiocmset,
212 .chars_in_buffer = cypress_chars_in_buffer,
213 .throttle = cypress_throttle,
214 .unthrottle = cypress_unthrottle,
215 .read_int_callback = cypress_read_int_callback,
216 .write_int_callback = cypress_write_int_callback,
217};
218
219static struct usb_serial_driver cypress_hidcom_device = {
220 .driver = {
221 .owner = THIS_MODULE,
222 .name = "cyphidcom",
223 },
224 .description = "HID->COM RS232 Adapter",
225 .id_table = id_table_cyphidcomrs232,
226 .num_interrupt_in = 1,
227 .num_interrupt_out = 1,
228 .num_bulk_in = NUM_DONT_CARE,
229 .num_bulk_out = NUM_DONT_CARE,
230 .num_ports = 1,
231 .attach = cypress_hidcom_startup,
232 .shutdown = cypress_shutdown,
233 .open = cypress_open,
234 .close = cypress_close,
235 .write = cypress_write,
236 .write_room = cypress_write_room,
237 .ioctl = cypress_ioctl,
238 .set_termios = cypress_set_termios,
239 .tiocmget = cypress_tiocmget,
240 .tiocmset = cypress_tiocmset,
241 .chars_in_buffer = cypress_chars_in_buffer,
242 .throttle = cypress_throttle,
243 .unthrottle = cypress_unthrottle,
244 .read_int_callback = cypress_read_int_callback,
245 .write_int_callback = cypress_write_int_callback,
246};
247
248static struct usb_serial_driver cypress_ca42v2_device = {
249 .driver = {
250 .owner = THIS_MODULE,
251 .name = "nokiaca42v2",
252 },
253 .description = "Nokia CA-42 V2 Adapter",
254 .id_table = id_table_nokiaca42v2,
255 .num_interrupt_in = 1,
256 .num_interrupt_out = 1,
257 .num_bulk_in = NUM_DONT_CARE,
258 .num_bulk_out = NUM_DONT_CARE,
259 .num_ports = 1,
260 .attach = cypress_ca42v2_startup,
261 .shutdown = cypress_shutdown,
262 .open = cypress_open,
263 .close = cypress_close,
264 .write = cypress_write,
265 .write_room = cypress_write_room,
266 .ioctl = cypress_ioctl,
267 .set_termios = cypress_set_termios,
268 .tiocmget = cypress_tiocmget,
269 .tiocmset = cypress_tiocmset,
270 .chars_in_buffer = cypress_chars_in_buffer,
271 .throttle = cypress_throttle,
272 .unthrottle = cypress_unthrottle,
273 .read_int_callback = cypress_read_int_callback,
274 .write_int_callback = cypress_write_int_callback,
275};
276
277
278
279
280
281
282
283static int cypress_serial_control (struct usb_serial_port *port, unsigned baud_mask, int data_bits, int stop_bits,
284 int parity_enable, int parity_type, int reset, int cypress_request_type)
285{
286 int new_baudrate = 0, retval = 0, tries = 0;
287 struct cypress_private *priv;
288 __u8 feature_buffer[8];
289 unsigned long flags;
290
291 dbg("%s", __FUNCTION__);
292
293 priv = usb_get_serial_port_data(port);
294
295 if (!priv->comm_is_ok)
296 return -ENODEV;
297
298 switch(cypress_request_type) {
299 case CYPRESS_SET_CONFIG:
300
301
302
303
304
305
306
307
308
309 if (baud_mask != priv->cbr_mask) {
310 dbg("%s - baud rate is changing", __FUNCTION__);
311 if ( priv->chiptype == CT_EARTHMATE ) {
312
313
314
315 if ( (baud_mask == B300) || (baud_mask == B600) ) {
316 err("%s - failed setting baud rate, unsupported speed",
317 __FUNCTION__);
318 new_baudrate = priv->baud_rate;
319 } else if ( (new_baudrate = mask_to_rate(baud_mask)) == -1) {
320 err("%s - failed setting baud rate, unsupported speed",
321 __FUNCTION__);
322 new_baudrate = priv->baud_rate;
323 }
324 } else if (priv->chiptype == CT_CYPHIDCOM) {
325 if ( (new_baudrate = mask_to_rate(baud_mask)) == -1) {
326 err("%s - failed setting baud rate, unsupported speed",
327 __FUNCTION__);
328 new_baudrate = priv->baud_rate;
329 }
330 } else if (priv->chiptype == CT_CA42V2) {
331 if ( (new_baudrate = mask_to_rate(baud_mask)) == -1) {
332 err("%s - failed setting baud rate, unsupported speed",
333 __FUNCTION__);
334 new_baudrate = priv->baud_rate;
335 }
336 } else if (priv->chiptype == CT_GENERIC) {
337 if ( (new_baudrate = mask_to_rate(baud_mask)) == -1) {
338 err("%s - failed setting baud rate, unsupported speed",
339 __FUNCTION__);
340 new_baudrate = priv->baud_rate;
341 }
342 } else {
343 info("%s - please define your chiptype", __FUNCTION__);
344 new_baudrate = priv->baud_rate;
345 }
346 } else {
347 new_baudrate = priv->baud_rate;
348 }
349 dbg("%s - baud rate is being sent as %d", __FUNCTION__, new_baudrate);
350
351 memset(feature_buffer, 0, 8);
352
353 *((u_int32_t *)feature_buffer) = new_baudrate;
354
355 feature_buffer[4] |= data_bits;
356
357 feature_buffer[4] |= (stop_bits << 3);
358 feature_buffer[4] |= (parity_enable << 4);
359 feature_buffer[4] |= (parity_type << 5);
360
361 feature_buffer[4] |= (reset << 7);
362
363 dbg("%s - device is being sent this feature report:", __FUNCTION__);
364 dbg("%s - %02X - %02X - %02X - %02X - %02X", __FUNCTION__, feature_buffer[0], feature_buffer[1],
365 feature_buffer[2], feature_buffer[3], feature_buffer[4]);
366
367 do {
368 retval = usb_control_msg (port->serial->dev, usb_sndctrlpipe(port->serial->dev, 0),
369 HID_REQ_SET_REPORT, USB_DIR_OUT | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
370 0x0300, 0, feature_buffer, 8, 500);
371
372 if (tries++ >= 3)
373 break;
374
375 } while (retval != 8 && retval != -ENODEV);
376
377 if (retval != 8) {
378 err("%s - failed sending serial line settings - %d", __FUNCTION__, retval);
379 cypress_set_dead(port);
380 } else {
381 spin_lock_irqsave(&priv->lock, flags);
382 priv->baud_rate = new_baudrate;
383 priv->cbr_mask = baud_mask;
384 priv->current_config = feature_buffer[4];
385 spin_unlock_irqrestore(&priv->lock, flags);
386 }
387 break;
388 case CYPRESS_GET_CONFIG:
389 dbg("%s - retreiving serial line settings", __FUNCTION__);
390
391 memset(feature_buffer, 0, 8);
392
393 do {
394 retval = usb_control_msg (port->serial->dev, usb_rcvctrlpipe(port->serial->dev, 0),
395 HID_REQ_GET_REPORT, USB_DIR_IN | USB_RECIP_INTERFACE | USB_TYPE_CLASS,
396 0x0300, 0, feature_buffer, 8, 500);
397
398 if (tries++ >= 3)
399 break;
400
401 } while (retval != 5 && retval != -ENODEV);
402
403 if (retval != 5) {
404 err("%s - failed to retrieve serial line settings - %d", __FUNCTION__, retval);
405 cypress_set_dead(port);
406 return retval;
407 } else {
408 spin_lock_irqsave(&priv->lock, flags);
409
410
411 priv->current_config = feature_buffer[4];
412 priv->baud_rate = *((u_int32_t *)feature_buffer);
413
414 if ( (priv->cbr_mask = rate_to_mask(priv->baud_rate)) == 0x40)
415 dbg("%s - failed setting the baud mask (not defined)", __FUNCTION__);
416 spin_unlock_irqrestore(&priv->lock, flags);
417 }
418 }
419 spin_lock_irqsave(&priv->lock, flags);
420 ++priv->cmd_count;
421 spin_unlock_irqrestore(&priv->lock, flags);
422
423 return retval;
424}
425
426
427static void cypress_set_dead(struct usb_serial_port *port)
428{
429 struct cypress_private *priv = usb_get_serial_port_data(port);
430 unsigned long flags;
431
432 spin_lock_irqsave(&priv->lock, flags);
433 if (!priv->comm_is_ok) {
434 spin_unlock_irqrestore(&priv->lock, flags);
435 return;
436 }
437 priv->comm_is_ok = 0;
438 spin_unlock_irqrestore(&priv->lock, flags);
439
440 err("cypress_m8 suspending failing port %d - interval might be too short",
441 port->number);
442}
443
444
445
446static int mask_to_rate (unsigned mask)
447{
448 int rate;
449
450 switch (mask) {
451 case B0: rate = 0; break;
452 case B300: rate = 300; break;
453 case B600: rate = 600; break;
454 case B1200: rate = 1200; break;
455 case B2400: rate = 2400; break;
456 case B4800: rate = 4800; break;
457 case B9600: rate = 9600; break;
458 case B19200: rate = 19200; break;
459 case B38400: rate = 38400; break;
460 case B57600: rate = 57600; break;
461 case B115200: rate = 115200; break;
462 default: rate = -1;
463 }
464
465 return rate;
466}
467
468
469static unsigned rate_to_mask (int rate)
470{
471 unsigned mask;
472
473 switch (rate) {
474 case 0: mask = B0; break;
475 case 300: mask = B300; break;
476 case 600: mask = B600; break;
477 case 1200: mask = B1200; break;
478 case 2400: mask = B2400; break;
479 case 4800: mask = B4800; break;
480 case 9600: mask = B9600; break;
481 case 19200: mask = B19200; break;
482 case 38400: mask = B38400; break;
483 case 57600: mask = B57600; break;
484 case 115200: mask = B115200; break;
485 default: mask = 0x40;
486 }
487
488 return mask;
489}
490
491
492
493
494
495static int generic_startup (struct usb_serial *serial)
496{
497 struct cypress_private *priv;
498 struct usb_serial_port *port = serial->port[0];
499
500 dbg("%s - port %d", __FUNCTION__, port->number);
501
502 priv = kzalloc(sizeof (struct cypress_private), GFP_KERNEL);
503 if (!priv)
504 return -ENOMEM;
505
506 priv->comm_is_ok = !0;
507 spin_lock_init(&priv->lock);
508 priv->buf = cypress_buf_alloc(CYPRESS_BUF_SIZE);
509 if (priv->buf == NULL) {
510 kfree(priv);
511 return -ENOMEM;
512 }
513 init_waitqueue_head(&priv->delta_msr_wait);
514
515 usb_reset_configuration (serial->dev);
516
517 priv->cmd_ctrl = 0;
518 priv->line_control = 0;
519 priv->termios_initialized = 0;
520 priv->rx_flags = 0;
521 priv->cbr_mask = B300;
522 if (interval > 0) {
523 priv->write_urb_interval = interval;
524 priv->read_urb_interval = interval;
525 dbg("%s - port %d read & write intervals forced to %d",
526 __FUNCTION__,port->number,interval);
527 } else {
528 priv->write_urb_interval = port->interrupt_out_urb->interval;
529 priv->read_urb_interval = port->interrupt_in_urb->interval;
530 dbg("%s - port %d intervals: read=%d write=%d",
531 __FUNCTION__,port->number,
532 priv->read_urb_interval,priv->write_urb_interval);
533 }
534 usb_set_serial_port_data(port, priv);
535
536 return 0;
537}
538
539
540static int cypress_earthmate_startup (struct usb_serial *serial)
541{
542 struct cypress_private *priv;
543
544 dbg("%s", __FUNCTION__);
545
546 if (generic_startup(serial)) {
547 dbg("%s - Failed setting up port %d", __FUNCTION__,
548 serial->port[0]->number);
549 return 1;
550 }
551
552 priv = usb_get_serial_port_data(serial->port[0]);
553 priv->chiptype = CT_EARTHMATE;
554
555 return 0;
556}
557
558
559static int cypress_hidcom_startup (struct usb_serial *serial)
560{
561 struct cypress_private *priv;
562
563 dbg("%s", __FUNCTION__);
564
565 if (generic_startup(serial)) {
566 dbg("%s - Failed setting up port %d", __FUNCTION__,
567 serial->port[0]->number);
568 return 1;
569 }
570
571 priv = usb_get_serial_port_data(serial->port[0]);
572 priv->chiptype = CT_CYPHIDCOM;
573
574 return 0;
575}
576
577
578static int cypress_ca42v2_startup (struct usb_serial *serial)
579{
580 struct cypress_private *priv;
581
582 dbg("%s", __FUNCTION__);
583
584 if (generic_startup(serial)) {
585 dbg("%s - Failed setting up port %d", __FUNCTION__,
586 serial->port[0]->number);
587 return 1;
588 }
589
590 priv = usb_get_serial_port_data(serial->port[0]);
591 priv->chiptype = CT_CA42V2;
592
593 return 0;
594}
595
596
597static void cypress_shutdown (struct usb_serial *serial)
598{
599 struct cypress_private *priv;
600
601 dbg ("%s - port %d", __FUNCTION__, serial->port[0]->number);
602
603
604
605 priv = usb_get_serial_port_data(serial->port[0]);
606
607 if (priv) {
608 cypress_buf_free(priv->buf);
609 kfree(priv);
610 usb_set_serial_port_data(serial->port[0], NULL);
611 }
612}
613
614
615static int cypress_open (struct usb_serial_port *port, struct file *filp)
616{
617 struct cypress_private *priv = usb_get_serial_port_data(port);
618 struct usb_serial *serial = port->serial;
619 unsigned long flags;
620 int result = 0;
621
622 dbg("%s - port %d", __FUNCTION__, port->number);
623
624 if (!priv->comm_is_ok)
625 return -EIO;
626
627
628 usb_clear_halt(serial->dev, 0x81);
629 usb_clear_halt(serial->dev, 0x02);
630
631 spin_lock_irqsave(&priv->lock, flags);
632
633 priv->bytes_in = 0;
634 priv->bytes_out = 0;
635 priv->cmd_count = 0;
636 priv->rx_flags = 0;
637 spin_unlock_irqrestore(&priv->lock, flags);
638
639
640 port->tty->low_latency = 1;
641
642
643 spin_lock_irqsave(&priv->lock, flags);
644 priv->line_control = CONTROL_DTR | CONTROL_RTS;
645 priv->cmd_ctrl = 1;
646 spin_unlock_irqrestore(&priv->lock, flags);
647 result = cypress_write(port, NULL, 0);
648
649 if (result) {
650 dev_err(&port->dev, "%s - failed setting the control lines - error %d\n", __FUNCTION__, result);
651 return result;
652 } else
653 dbg("%s - success setting the control lines", __FUNCTION__);
654
655 cypress_set_termios(port, &priv->tmp_termios);
656
657
658 if(!port->interrupt_in_urb){
659 err("%s - interrupt_in_urb is empty!", __FUNCTION__);
660 return(-1);
661 }
662
663 usb_fill_int_urb(port->interrupt_in_urb, serial->dev,
664 usb_rcvintpipe(serial->dev, port->interrupt_in_endpointAddress),
665 port->interrupt_in_urb->transfer_buffer, port->interrupt_in_urb->transfer_buffer_length,
666 cypress_read_int_callback, port, priv->read_urb_interval);
667 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
668
669 if (result){
670 dev_err(&port->dev, "%s - failed submitting read urb, error %d\n", __FUNCTION__, result);
671 cypress_set_dead(port);
672 }
673
674 return result;
675}
676
677
678static void cypress_close(struct usb_serial_port *port, struct file * filp)
679{
680 struct cypress_private *priv = usb_get_serial_port_data(port);
681 unsigned int c_cflag;
682 unsigned long flags;
683 int bps;
684 long timeout;
685 wait_queue_t wait;
686
687 dbg("%s - port %d", __FUNCTION__, port->number);
688
689
690 spin_lock_irqsave(&priv->lock, flags);
691 timeout = CYPRESS_CLOSING_WAIT;
692 init_waitqueue_entry(&wait, current);
693 add_wait_queue(&port->tty->write_wait, &wait);
694 for (;;) {
695 set_current_state(TASK_INTERRUPTIBLE);
696 if (cypress_buf_data_avail(priv->buf) == 0
697 || timeout == 0 || signal_pending(current)
698 || !usb_get_intfdata(port->serial->interface))
699 break;
700 spin_unlock_irqrestore(&priv->lock, flags);
701 timeout = schedule_timeout(timeout);
702 spin_lock_irqsave(&priv->lock, flags);
703 }
704 set_current_state(TASK_RUNNING);
705 remove_wait_queue(&port->tty->write_wait, &wait);
706
707 cypress_buf_clear(priv->buf);
708 spin_unlock_irqrestore(&priv->lock, flags);
709
710
711 bps = tty_get_baud_rate(port->tty);
712 if (bps > 1200)
713 timeout = max((HZ*2560)/bps,HZ/10);
714 else
715 timeout = 2*HZ;
716 schedule_timeout_interruptible(timeout);
717
718 dbg("%s - stopping urbs", __FUNCTION__);
719 usb_kill_urb (port->interrupt_in_urb);
720 usb_kill_urb (port->interrupt_out_urb);
721
722 if (port->tty) {
723 c_cflag = port->tty->termios->c_cflag;
724 if (c_cflag & HUPCL) {
725
726 priv = usb_get_serial_port_data(port);
727 spin_lock_irqsave(&priv->lock, flags);
728 priv->line_control = 0;
729 priv->cmd_ctrl = 1;
730 spin_unlock_irqrestore(&priv->lock, flags);
731 cypress_write(port, NULL, 0);
732 }
733 }
734
735 if (stats)
736 dev_info (&port->dev, "Statistics: %d Bytes In | %d Bytes Out | %d Commands Issued\n",
737 priv->bytes_in, priv->bytes_out, priv->cmd_count);
738}
739
740
741static int cypress_write(struct usb_serial_port *port, const unsigned char *buf, int count)
742{
743 struct cypress_private *priv = usb_get_serial_port_data(port);
744 unsigned long flags;
745
746 dbg("%s - port %d, %d bytes", __FUNCTION__, port->number, count);
747
748
749
750
751 if (priv->cmd_ctrl) {
752 count = 0;
753 goto finish;
754 }
755
756 if (!count)
757 return count;
758
759 spin_lock_irqsave(&priv->lock, flags);
760 count = cypress_buf_put(priv->buf, buf, count);
761 spin_unlock_irqrestore(&priv->lock, flags);
762
763finish:
764 cypress_send(port);
765
766 return count;
767}
768
769
770static void cypress_send(struct usb_serial_port *port)
771{
772 int count = 0, result, offset, actual_size;
773 struct cypress_private *priv = usb_get_serial_port_data(port);
774 unsigned long flags;
775
776 if (!priv->comm_is_ok)
777 return;
778
779 dbg("%s - port %d", __FUNCTION__, port->number);
780 dbg("%s - interrupt out size is %d", __FUNCTION__, port->interrupt_out_size);
781
782 spin_lock_irqsave(&priv->lock, flags);
783 if (priv->write_urb_in_use) {
784 dbg("%s - can't write, urb in use", __FUNCTION__);
785 spin_unlock_irqrestore(&priv->lock, flags);
786 return;
787 }
788 spin_unlock_irqrestore(&priv->lock, flags);
789
790
791 memset(port->interrupt_out_urb->transfer_buffer, 0, port->interrupt_out_size);
792
793 spin_lock_irqsave(&priv->lock, flags);
794 switch (port->interrupt_out_size) {
795 case 32:
796
797 offset = 2;
798 port->interrupt_out_buffer[0] = priv->line_control;
799 break;
800 case 8:
801
802 offset = 1;
803 port->interrupt_out_buffer[0] = priv->line_control;
804 break;
805 default:
806 dbg("%s - wrong packet size", __FUNCTION__);
807 spin_unlock_irqrestore(&priv->lock, flags);
808 return;
809 }
810
811 if (priv->line_control & CONTROL_RESET)
812 priv->line_control &= ~CONTROL_RESET;
813
814 if (priv->cmd_ctrl) {
815 priv->cmd_count++;
816 dbg("%s - line control command being issued", __FUNCTION__);
817 spin_unlock_irqrestore(&priv->lock, flags);
818 goto send;
819 } else
820 spin_unlock_irqrestore(&priv->lock, flags);
821
822 count = cypress_buf_get(priv->buf, &port->interrupt_out_buffer[offset],
823 port->interrupt_out_size-offset);
824
825 if (count == 0) {
826 return;
827 }
828
829 switch (port->interrupt_out_size) {
830 case 32:
831 port->interrupt_out_buffer[1] = count;
832 break;
833 case 8:
834 port->interrupt_out_buffer[0] |= count;
835 }
836
837 dbg("%s - count is %d", __FUNCTION__, count);
838
839send:
840 spin_lock_irqsave(&priv->lock, flags);
841 priv->write_urb_in_use = 1;
842 spin_unlock_irqrestore(&priv->lock, flags);
843
844 if (priv->cmd_ctrl)
845 actual_size = 1;
846 else
847 actual_size = count + (port->interrupt_out_size == 32 ? 2 : 1);
848
849 usb_serial_debug_data(debug, &port->dev, __FUNCTION__, port->interrupt_out_size,
850 port->interrupt_out_urb->transfer_buffer);
851
852 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev,
853 usb_sndintpipe(port->serial->dev, port->interrupt_out_endpointAddress),
854 port->interrupt_out_buffer, port->interrupt_out_size,
855 cypress_write_int_callback, port, priv->write_urb_interval);
856 result = usb_submit_urb (port->interrupt_out_urb, GFP_ATOMIC);
857 if (result) {
858 dev_err(&port->dev, "%s - failed submitting write urb, error %d\n", __FUNCTION__,
859 result);
860 priv->write_urb_in_use = 0;
861 cypress_set_dead(port);
862 }
863
864 spin_lock_irqsave(&priv->lock, flags);
865 if (priv->cmd_ctrl) {
866 priv->cmd_ctrl = 0;
867 }
868 priv->bytes_out += count;
869 spin_unlock_irqrestore(&priv->lock, flags);
870
871 usb_serial_port_softint(port);
872}
873
874
875
876static int cypress_write_room(struct usb_serial_port *port)
877{
878 struct cypress_private *priv = usb_get_serial_port_data(port);
879 int room = 0;
880 unsigned long flags;
881
882 dbg("%s - port %d", __FUNCTION__, port->number);
883
884 spin_lock_irqsave(&priv->lock, flags);
885 room = cypress_buf_space_avail(priv->buf);
886 spin_unlock_irqrestore(&priv->lock, flags);
887
888 dbg("%s - returns %d", __FUNCTION__, room);
889 return room;
890}
891
892
893static int cypress_tiocmget (struct usb_serial_port *port, struct file *file)
894{
895 struct cypress_private *priv = usb_get_serial_port_data(port);
896 __u8 status, control;
897 unsigned int result = 0;
898 unsigned long flags;
899
900 dbg("%s - port %d", __FUNCTION__, port->number);
901
902 spin_lock_irqsave(&priv->lock, flags);
903 control = priv->line_control;
904 status = priv->current_status;
905 spin_unlock_irqrestore(&priv->lock, flags);
906
907 result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
908 | ((control & CONTROL_RTS) ? TIOCM_RTS : 0)
909 | ((status & UART_CTS) ? TIOCM_CTS : 0)
910 | ((status & UART_DSR) ? TIOCM_DSR : 0)
911 | ((status & UART_RI) ? TIOCM_RI : 0)
912 | ((status & UART_CD) ? TIOCM_CD : 0);
913
914 dbg("%s - result = %x", __FUNCTION__, result);
915
916 return result;
917}
918
919
920static int cypress_tiocmset (struct usb_serial_port *port, struct file *file,
921 unsigned int set, unsigned int clear)
922{
923 struct cypress_private *priv = usb_get_serial_port_data(port);
924 unsigned long flags;
925
926 dbg("%s - port %d", __FUNCTION__, port->number);
927
928 spin_lock_irqsave(&priv->lock, flags);
929 if (set & TIOCM_RTS)
930 priv->line_control |= CONTROL_RTS;
931 if (set & TIOCM_DTR)
932 priv->line_control |= CONTROL_DTR;
933 if (clear & TIOCM_RTS)
934 priv->line_control &= ~CONTROL_RTS;
935 if (clear & TIOCM_DTR)
936 priv->line_control &= ~CONTROL_DTR;
937 spin_unlock_irqrestore(&priv->lock, flags);
938
939 priv->cmd_ctrl = 1;
940 return cypress_write(port, NULL, 0);
941}
942
943
944static int cypress_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
945{
946 struct cypress_private *priv = usb_get_serial_port_data(port);
947
948 dbg("%s - port %d, cmd 0x%.4x", __FUNCTION__, port->number, cmd);
949
950 switch (cmd) {
951 case TIOCGSERIAL:
952 if (copy_to_user((void __user *)arg, port->tty->termios, sizeof(struct ktermios))) {
953 return -EFAULT;
954 }
955 return (0);
956 break;
957 case TIOCSSERIAL:
958 if (copy_from_user(port->tty->termios, (void __user *)arg, sizeof(struct ktermios))) {
959 return -EFAULT;
960 }
961
962 cypress_set_termios(port, &priv->tmp_termios);
963 return (0);
964 break;
965
966 case TIOCMIWAIT:
967 while (priv != NULL) {
968 interruptible_sleep_on(&priv->delta_msr_wait);
969
970 if (signal_pending(current))
971 return -ERESTARTSYS;
972 else {
973 char diff = priv->diff_status;
974
975 if (diff == 0) {
976 return -EIO;
977 }
978
979
980 priv->diff_status = 0;
981
982
983 if ( ((arg & TIOCM_RNG) && (diff & UART_RI)) ||
984 ((arg & TIOCM_DSR) && (diff & UART_DSR)) ||
985 ((arg & TIOCM_CD) && (diff & UART_CD)) ||
986 ((arg & TIOCM_CTS) && (diff & UART_CTS)) ) {
987 return 0;
988 }
989
990
991
992 }
993 }
994 return 0;
995 break;
996 default:
997 break;
998 }
999
1000 dbg("%s - arg not supported - it was 0x%04x - check include/asm/ioctls.h", __FUNCTION__, cmd);
1001
1002 return -ENOIOCTLCMD;
1003}
1004
1005
1006static void cypress_set_termios (struct usb_serial_port *port,
1007 struct ktermios *old_termios)
1008{
1009 struct cypress_private *priv = usb_get_serial_port_data(port);
1010 struct tty_struct *tty;
1011 int data_bits, stop_bits, parity_type, parity_enable;
1012 unsigned cflag, iflag, baud_mask;
1013 unsigned long flags;
1014 __u8 oldlines;
1015 int linechange = 0;
1016
1017 dbg("%s - port %d", __FUNCTION__, port->number);
1018
1019 tty = port->tty;
1020 if ((!tty) || (!tty->termios)) {
1021 dbg("%s - no tty structures", __FUNCTION__);
1022 return;
1023 }
1024
1025 spin_lock_irqsave(&priv->lock, flags);
1026 if (!priv->termios_initialized) {
1027 if (priv->chiptype == CT_EARTHMATE) {
1028 *(tty->termios) = tty_std_termios;
1029 tty->termios->c_cflag = B4800 | CS8 | CREAD | HUPCL |
1030 CLOCAL;
1031 } else if (priv->chiptype == CT_CYPHIDCOM) {
1032 *(tty->termios) = tty_std_termios;
1033 tty->termios->c_cflag = B9600 | CS8 | CREAD | HUPCL |
1034 CLOCAL;
1035 } else if (priv->chiptype == CT_CA42V2) {
1036 *(tty->termios) = tty_std_termios;
1037 tty->termios->c_cflag = B9600 | CS8 | CREAD | HUPCL |
1038 CLOCAL;
1039 }
1040 priv->termios_initialized = 1;
1041 }
1042 spin_unlock_irqrestore(&priv->lock, flags);
1043
1044 cflag = tty->termios->c_cflag;
1045 iflag = tty->termios->c_iflag;
1046
1047
1048 if (old_termios) {
1049 if ((cflag != old_termios->c_cflag) ||
1050 (RELEVANT_IFLAG(iflag) !=
1051 RELEVANT_IFLAG(old_termios->c_iflag))) {
1052 dbg("%s - attempting to set new termios settings",
1053 __FUNCTION__);
1054
1055
1056 spin_lock_irqsave(&priv->lock, flags);
1057 priv->tmp_termios = *(tty->termios);
1058 spin_unlock_irqrestore(&priv->lock, flags);
1059 } else {
1060 dbg("%s - nothing to do, exiting", __FUNCTION__);
1061 return;
1062 }
1063 } else
1064 return;
1065
1066
1067
1068
1069
1070 stop_bits = cflag & CSTOPB ? 1 : 0;
1071
1072 if (cflag & PARENB) {
1073 parity_enable = 1;
1074
1075 parity_type = cflag & PARODD ? 1 : 0;
1076 } else
1077 parity_enable = parity_type = 0;
1078
1079 if (cflag & CSIZE) {
1080 switch (cflag & CSIZE) {
1081 case CS5:
1082 data_bits = 0;
1083 break;
1084 case CS6:
1085 data_bits = 1;
1086 break;
1087 case CS7:
1088 data_bits = 2;
1089 break;
1090 case CS8:
1091 data_bits = 3;
1092 break;
1093 default:
1094 err("%s - CSIZE was set, but not CS5-CS8",
1095 __FUNCTION__);
1096 data_bits = 3;
1097 }
1098 } else
1099 data_bits = 3;
1100
1101 spin_lock_irqsave(&priv->lock, flags);
1102 oldlines = priv->line_control;
1103 if ((cflag & CBAUD) == B0) {
1104
1105 dbg("%s - dropping the lines, baud rate 0bps", __FUNCTION__);
1106 baud_mask = B0;
1107 priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS);
1108 } else {
1109 baud_mask = (cflag & CBAUD);
1110 switch(baud_mask) {
1111 case B300:
1112 dbg("%s - setting baud 300bps", __FUNCTION__);
1113 break;
1114 case B600:
1115 dbg("%s - setting baud 600bps", __FUNCTION__);
1116 break;
1117 case B1200:
1118 dbg("%s - setting baud 1200bps", __FUNCTION__);
1119 break;
1120 case B2400:
1121 dbg("%s - setting baud 2400bps", __FUNCTION__);
1122 break;
1123 case B4800:
1124 dbg("%s - setting baud 4800bps", __FUNCTION__);
1125 break;
1126 case B9600:
1127 dbg("%s - setting baud 9600bps", __FUNCTION__);
1128 break;
1129 case B19200:
1130 dbg("%s - setting baud 19200bps", __FUNCTION__);
1131 break;
1132 case B38400:
1133 dbg("%s - setting baud 38400bps", __FUNCTION__);
1134 break;
1135 case B57600:
1136 dbg("%s - setting baud 57600bps", __FUNCTION__);
1137 break;
1138 case B115200:
1139 dbg("%s - setting baud 115200bps", __FUNCTION__);
1140 break;
1141 default:
1142 dbg("%s - unknown masked baud rate", __FUNCTION__);
1143 }
1144 priv->line_control = (CONTROL_DTR | CONTROL_RTS);
1145 }
1146 spin_unlock_irqrestore(&priv->lock, flags);
1147
1148 dbg("%s - sending %d stop_bits, %d parity_enable, %d parity_type, "
1149 "%d data_bits (+5)", __FUNCTION__, stop_bits,
1150 parity_enable, parity_type, data_bits);
1151
1152 cypress_serial_control(port, baud_mask, data_bits, stop_bits,
1153 parity_enable, parity_type, 0, CYPRESS_SET_CONFIG);
1154
1155
1156
1157
1158 cypress_serial_control(port, 0, 0, 0, 0, 0, 0, CYPRESS_GET_CONFIG);
1159
1160
1161
1162
1163 spin_lock_irqsave(&priv->lock, flags);
1164 if ( (priv->chiptype == CT_EARTHMATE) && (priv->baud_rate == 4800) ) {
1165 dbg("Using custom termios settings for a baud rate of "
1166 "4800bps.");
1167
1168
1169 tty->termios->c_iflag
1170 &= ~(IGNBRK
1171 | BRKINT
1172 | PARMRK
1173 | ISTRIP
1174 | INLCR
1175 | IGNCR
1176 | ICRNL
1177 | IXON);
1178
1179 tty->termios->c_oflag
1180 &= ~OPOST;
1181
1182 tty->termios->c_lflag
1183 &= ~(ECHO
1184 | ECHONL
1185 | ICANON
1186
1187 | ISIG
1188
1189 | IEXTEN);
1190 }
1191
1192 linechange = (priv->line_control != oldlines);
1193 spin_unlock_irqrestore(&priv->lock, flags);
1194
1195
1196 if (linechange) {
1197 priv->cmd_ctrl = 1;
1198 cypress_write(port, NULL, 0);
1199 }
1200}
1201
1202
1203
1204static int cypress_chars_in_buffer(struct usb_serial_port *port)
1205{
1206 struct cypress_private *priv = usb_get_serial_port_data(port);
1207 int chars = 0;
1208 unsigned long flags;
1209
1210 dbg("%s - port %d", __FUNCTION__, port->number);
1211
1212 spin_lock_irqsave(&priv->lock, flags);
1213 chars = cypress_buf_data_avail(priv->buf);
1214 spin_unlock_irqrestore(&priv->lock, flags);
1215
1216 dbg("%s - returns %d", __FUNCTION__, chars);
1217 return chars;
1218}
1219
1220
1221static void cypress_throttle (struct usb_serial_port *port)
1222{
1223 struct cypress_private *priv = usb_get_serial_port_data(port);
1224 unsigned long flags;
1225
1226 dbg("%s - port %d", __FUNCTION__, port->number);
1227
1228 spin_lock_irqsave(&priv->lock, flags);
1229 priv->rx_flags = THROTTLED;
1230 spin_unlock_irqrestore(&priv->lock, flags);
1231}
1232
1233
1234static void cypress_unthrottle (struct usb_serial_port *port)
1235{
1236 struct cypress_private *priv = usb_get_serial_port_data(port);
1237 int actually_throttled, result;
1238 unsigned long flags;
1239
1240 dbg("%s - port %d", __FUNCTION__, port->number);
1241
1242 spin_lock_irqsave(&priv->lock, flags);
1243 actually_throttled = priv->rx_flags & ACTUALLY_THROTTLED;
1244 priv->rx_flags = 0;
1245 spin_unlock_irqrestore(&priv->lock, flags);
1246
1247 if (!priv->comm_is_ok)
1248 return;
1249
1250 if (actually_throttled) {
1251 port->interrupt_in_urb->dev = port->serial->dev;
1252
1253 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
1254 if (result) {
1255 dev_err(&port->dev, "%s - failed submitting read urb, "
1256 "error %d\n", __FUNCTION__, result);
1257 cypress_set_dead(port);
1258 }
1259 }
1260}
1261
1262
1263static void cypress_read_int_callback(struct urb *urb)
1264{
1265 struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
1266 struct cypress_private *priv = usb_get_serial_port_data(port);
1267 struct tty_struct *tty;
1268 unsigned char *data = urb->transfer_buffer;
1269 unsigned long flags;
1270 char tty_flag = TTY_NORMAL;
1271 int havedata = 0;
1272 int bytes = 0;
1273 int result;
1274 int i = 0;
1275
1276 dbg("%s - port %d", __FUNCTION__, port->number);
1277
1278 switch (urb->status) {
1279 case 0:
1280 break;
1281 case -ECONNRESET:
1282 case -ENOENT:
1283 case -ESHUTDOWN:
1284
1285 return;
1286 case -EPIPE:
1287 usb_clear_halt(port->serial->dev,0x81);
1288 break;
1289 default:
1290
1291 dev_err(&urb->dev->dev,"%s - unexpected nonzero read status received: %d\n",
1292 __FUNCTION__,urb->status);
1293 cypress_set_dead(port);
1294 return;
1295 }
1296
1297 spin_lock_irqsave(&priv->lock, flags);
1298 if (priv->rx_flags & THROTTLED) {
1299 dbg("%s - now throttling", __FUNCTION__);
1300 priv->rx_flags |= ACTUALLY_THROTTLED;
1301 spin_unlock_irqrestore(&priv->lock, flags);
1302 return;
1303 }
1304 spin_unlock_irqrestore(&priv->lock, flags);
1305
1306 tty = port->tty;
1307 if (!tty) {
1308 dbg("%s - bad tty pointer - exiting", __FUNCTION__);
1309 return;
1310 }
1311
1312 spin_lock_irqsave(&priv->lock, flags);
1313 switch(urb->actual_length) {
1314 case 32:
1315
1316 priv->current_status = data[0] & 0xF8;
1317 bytes = data[1] + 2;
1318 i = 2;
1319 if (bytes > 2)
1320 havedata = 1;
1321 break;
1322 case 8:
1323
1324 priv->current_status = data[0] & 0xF8;
1325 bytes = (data[0] & 0x07) + 1;
1326 i = 1;
1327 if (bytes > 1)
1328 havedata = 1;
1329 break;
1330 default:
1331 dbg("%s - wrong packet size - received %d bytes",
1332 __FUNCTION__, urb->actual_length);
1333 spin_unlock_irqrestore(&priv->lock, flags);
1334 goto continue_read;
1335 }
1336 spin_unlock_irqrestore(&priv->lock, flags);
1337
1338 usb_serial_debug_data (debug, &port->dev, __FUNCTION__,
1339 urb->actual_length, data);
1340
1341 spin_lock_irqsave(&priv->lock, flags);
1342
1343 if (priv != NULL) {
1344 if (priv->current_status != priv->prev_status) {
1345 priv->diff_status |= priv->current_status ^
1346 priv->prev_status;
1347 wake_up_interruptible(&priv->delta_msr_wait);
1348 priv->prev_status = priv->current_status;
1349 }
1350 }
1351 spin_unlock_irqrestore(&priv->lock, flags);
1352
1353
1354
1355 if (tty && !(tty->termios->c_cflag & CLOCAL) &&
1356 !(priv->current_status & UART_CD)) {
1357 dbg("%s - calling hangup", __FUNCTION__);
1358 tty_hangup(tty);
1359 goto continue_read;
1360 }
1361
1362
1363
1364
1365
1366 spin_lock_irqsave(&priv->lock, flags);
1367 if (priv->current_status & CYP_ERROR) {
1368 spin_unlock_irqrestore(&priv->lock, flags);
1369 tty_flag = TTY_PARITY;
1370 dbg("%s - Parity Error detected", __FUNCTION__);
1371 } else
1372 spin_unlock_irqrestore(&priv->lock, flags);
1373
1374
1375 if (tty && (bytes > i)) {
1376 bytes = tty_buffer_request_room(tty, bytes);
1377 for (; i < bytes ; ++i) {
1378 dbg("pushing byte number %d - %d - %c", i, data[i],
1379 data[i]);
1380 tty_insert_flip_char(tty, data[i], tty_flag);
1381 }
1382 tty_flip_buffer_push(port->tty);
1383 }
1384
1385 spin_lock_irqsave(&priv->lock, flags);
1386
1387 priv->bytes_in += bytes;
1388 spin_unlock_irqrestore(&priv->lock, flags);
1389
1390continue_read:
1391
1392
1393
1394 if (port->open_count > 0 && priv->comm_is_ok) {
1395 usb_fill_int_urb(port->interrupt_in_urb, port->serial->dev,
1396 usb_rcvintpipe(port->serial->dev,
1397 port->interrupt_in_endpointAddress),
1398 port->interrupt_in_urb->transfer_buffer,
1399 port->interrupt_in_urb->transfer_buffer_length,
1400 cypress_read_int_callback, port, priv->read_urb_interval);
1401 result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
1402 if (result) {
1403 dev_err(&urb->dev->dev, "%s - failed resubmitting "
1404 "read urb, error %d\n", __FUNCTION__,
1405 result);
1406 cypress_set_dead(port);
1407 }
1408 }
1409
1410 return;
1411}
1412
1413
1414static void cypress_write_int_callback(struct urb *urb)
1415{
1416 struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
1417 struct cypress_private *priv = usb_get_serial_port_data(port);
1418 int result;
1419
1420 dbg("%s - port %d", __FUNCTION__, port->number);
1421
1422 switch (urb->status) {
1423 case 0:
1424
1425 break;
1426 case -ECONNRESET:
1427 case -ENOENT:
1428 case -ESHUTDOWN:
1429
1430 dbg("%s - urb shutting down with status: %d", __FUNCTION__, urb->status);
1431 priv->write_urb_in_use = 0;
1432 return;
1433 case -EPIPE:
1434 if (!priv->comm_is_ok)
1435 break;
1436 usb_clear_halt(port->serial->dev, 0x02);
1437
1438 dbg("%s - nonzero write bulk status received: %d", __FUNCTION__, urb->status);
1439 port->interrupt_out_urb->transfer_buffer_length = 1;
1440 port->interrupt_out_urb->dev = port->serial->dev;
1441 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC);
1442 if (!result)
1443 return;
1444 dev_err(&urb->dev->dev, "%s - failed resubmitting write urb, error %d\n",
1445 __FUNCTION__, result);
1446 cypress_set_dead(port);
1447 break;
1448 default:
1449 dev_err(&urb->dev->dev,"%s - unexpected nonzero write status received: %d\n",
1450 __FUNCTION__,urb->status);
1451 cypress_set_dead(port);
1452 break;
1453 }
1454
1455 priv->write_urb_in_use = 0;
1456
1457
1458 cypress_send(port);
1459}
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472static struct cypress_buf *cypress_buf_alloc(unsigned int size)
1473{
1474
1475 struct cypress_buf *cb;
1476
1477
1478 if (size == 0)
1479 return NULL;
1480
1481 cb = kmalloc(sizeof(struct cypress_buf), GFP_KERNEL);
1482 if (cb == NULL)
1483 return NULL;
1484
1485 cb->buf_buf = kmalloc(size, GFP_KERNEL);
1486 if (cb->buf_buf == NULL) {
1487 kfree(cb);
1488 return NULL;
1489 }
1490
1491 cb->buf_size = size;
1492 cb->buf_get = cb->buf_put = cb->buf_buf;
1493
1494 return cb;
1495
1496}
1497
1498
1499
1500
1501
1502
1503
1504
1505static void cypress_buf_free(struct cypress_buf *cb)
1506{
1507 if (cb) {
1508 kfree(cb->buf_buf);
1509 kfree(cb);
1510 }
1511}
1512
1513
1514
1515
1516
1517
1518
1519
1520static void cypress_buf_clear(struct cypress_buf *cb)
1521{
1522 if (cb != NULL)
1523 cb->buf_get = cb->buf_put;
1524
1525}
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535static unsigned int cypress_buf_data_avail(struct cypress_buf *cb)
1536{
1537 if (cb != NULL)
1538 return ((cb->buf_size + cb->buf_put - cb->buf_get) % cb->buf_size);
1539 else
1540 return 0;
1541}
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551static unsigned int cypress_buf_space_avail(struct cypress_buf *cb)
1552{
1553 if (cb != NULL)
1554 return ((cb->buf_size + cb->buf_get - cb->buf_put - 1) % cb->buf_size);
1555 else
1556 return 0;
1557}
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569static unsigned int cypress_buf_put(struct cypress_buf *cb, const char *buf,
1570 unsigned int count)
1571{
1572
1573 unsigned int len;
1574
1575
1576 if (cb == NULL)
1577 return 0;
1578
1579 len = cypress_buf_space_avail(cb);
1580 if (count > len)
1581 count = len;
1582
1583 if (count == 0)
1584 return 0;
1585
1586 len = cb->buf_buf + cb->buf_size - cb->buf_put;
1587 if (count > len) {
1588 memcpy(cb->buf_put, buf, len);
1589 memcpy(cb->buf_buf, buf+len, count - len);
1590 cb->buf_put = cb->buf_buf + count - len;
1591 } else {
1592 memcpy(cb->buf_put, buf, count);
1593 if (count < len)
1594 cb->buf_put += count;
1595 else
1596 cb->buf_put = cb->buf_buf;
1597 }
1598
1599 return count;
1600
1601}
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613static unsigned int cypress_buf_get(struct cypress_buf *cb, char *buf,
1614 unsigned int count)
1615{
1616
1617 unsigned int len;
1618
1619
1620 if (cb == NULL)
1621 return 0;
1622
1623 len = cypress_buf_data_avail(cb);
1624 if (count > len)
1625 count = len;
1626
1627 if (count == 0)
1628 return 0;
1629
1630 len = cb->buf_buf + cb->buf_size - cb->buf_get;
1631 if (count > len) {
1632 memcpy(buf, cb->buf_get, len);
1633 memcpy(buf+len, cb->buf_buf, count - len);
1634 cb->buf_get = cb->buf_buf + count - len;
1635 } else {
1636 memcpy(buf, cb->buf_get, count);
1637 if (count < len)
1638 cb->buf_get += count;
1639 else
1640 cb->buf_get = cb->buf_buf;
1641 }
1642
1643 return count;
1644
1645}
1646
1647
1648
1649
1650
1651static int __init cypress_init(void)
1652{
1653 int retval;
1654
1655 dbg("%s", __FUNCTION__);
1656
1657 retval = usb_serial_register(&cypress_earthmate_device);
1658 if (retval)
1659 goto failed_em_register;
1660 retval = usb_serial_register(&cypress_hidcom_device);
1661 if (retval)
1662 goto failed_hidcom_register;
1663 retval = usb_serial_register(&cypress_ca42v2_device);
1664 if (retval)
1665 goto failed_ca42v2_register;
1666 retval = usb_register(&cypress_driver);
1667 if (retval)
1668 goto failed_usb_register;
1669
1670 info(DRIVER_DESC " " DRIVER_VERSION);
1671 return 0;
1672
1673failed_usb_register:
1674 usb_serial_deregister(&cypress_ca42v2_device);
1675failed_ca42v2_register:
1676 usb_serial_deregister(&cypress_hidcom_device);
1677failed_hidcom_register:
1678 usb_serial_deregister(&cypress_earthmate_device);
1679failed_em_register:
1680 return retval;
1681}
1682
1683
1684static void __exit cypress_exit (void)
1685{
1686 dbg("%s", __FUNCTION__);
1687
1688 usb_deregister (&cypress_driver);
1689 usb_serial_deregister (&cypress_earthmate_device);
1690 usb_serial_deregister (&cypress_hidcom_device);
1691 usb_serial_deregister (&cypress_ca42v2_device);
1692}
1693
1694
1695module_init(cypress_init);
1696module_exit(cypress_exit);
1697
1698MODULE_AUTHOR( DRIVER_AUTHOR );
1699MODULE_DESCRIPTION( DRIVER_DESC );
1700MODULE_VERSION( DRIVER_VERSION );
1701MODULE_LICENSE("GPL");
1702
1703module_param(debug, bool, S_IRUGO | S_IWUSR);
1704MODULE_PARM_DESC(debug, "Debug enabled or not");
1705module_param(stats, bool, S_IRUGO | S_IWUSR);
1706MODULE_PARM_DESC(stats, "Enable statistics or not");
1707module_param(interval, int, S_IRUGO | S_IWUSR);
1708MODULE_PARM_DESC(interval, "Overrides interrupt interval");
1709