2 * Infinity Unlimited USB Phoenix driver
4 * Copyright (C) 2010 James Courtier-Dutton (James@superbug.co.uk)
6 * Copyright (C) 2007 Alain Degreffe (eczema@ecze.com)
8 * Original code taken from iuutool (Copyright (C) 2006 Juan Carlos Borrás)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * And tested with help of WB Electronics
18 #include <linux/kernel.h>
19 #include <linux/errno.h>
20 #include <linux/init.h>
21 #include <linux/slab.h>
22 #include <linux/tty.h>
23 #include <linux/tty_driver.h>
24 #include <linux/tty_flip.h>
25 #include <linux/serial.h>
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/spinlock.h>
29 #include <linux/uaccess.h>
30 #include <linux/usb.h>
31 #include <linux/usb/serial.h>
32 #include "iuu_phoenix.h"
33 #include <linux/random.h>
35 #define DRIVER_DESC "Infinity USB Unlimited Phoenix driver"
37 static const struct usb_device_id id_table
[] = {
38 {USB_DEVICE(IUU_USB_VENDOR_ID
, IUU_USB_PRODUCT_ID
)},
39 {} /* Terminating entry */
41 MODULE_DEVICE_TABLE(usb
, id_table
);
44 static int boost
= 100;
45 static int clockmode
= 1;
46 static int cdmode
= 1;
47 static int iuu_cardin
;
48 static int iuu_cardout
;
50 static int vcc_default
= 5;
52 static int iuu_create_sysfs_attrs(struct usb_serial_port
*port
);
53 static int iuu_remove_sysfs_attrs(struct usb_serial_port
*port
);
54 static void read_rxcmd_callback(struct urb
*urb
);
57 spinlock_t lock
; /* store irq state */
59 int tiostatus
; /* store IUART SIGNAL for tiocmget call */
60 u8 reset
; /* if 1 reset is needed */
61 int poll
; /* number of poll */
62 u8
*writebuf
; /* buffer for writing to device */
63 int writelen
; /* num of byte to write to device */
64 u8
*buf
; /* used for initialize speed */
66 int vcc
; /* vcc (either 3 or 5 V) */
72 static int iuu_port_probe(struct usb_serial_port
*port
)
74 struct iuu_private
*priv
;
77 priv
= kzalloc(sizeof(struct iuu_private
), GFP_KERNEL
);
81 priv
->buf
= kzalloc(256, GFP_KERNEL
);
87 priv
->writebuf
= kzalloc(256, GFP_KERNEL
);
88 if (!priv
->writebuf
) {
94 priv
->vcc
= vcc_default
;
95 spin_lock_init(&priv
->lock
);
97 usb_set_serial_port_data(port
, priv
);
99 ret
= iuu_create_sysfs_attrs(port
);
101 kfree(priv
->writebuf
);
110 static int iuu_port_remove(struct usb_serial_port
*port
)
112 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
114 iuu_remove_sysfs_attrs(port
);
115 kfree(priv
->writebuf
);
122 static int iuu_tiocmset(struct tty_struct
*tty
,
123 unsigned int set
, unsigned int clear
)
125 struct usb_serial_port
*port
= tty
->driver_data
;
126 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
129 /* FIXME: locking on tiomstatus */
130 dev_dbg(&port
->dev
, "%s msg : SET = 0x%04x, CLEAR = 0x%04x\n",
131 __func__
, set
, clear
);
133 spin_lock_irqsave(&priv
->lock
, flags
);
135 if ((set
& TIOCM_RTS
) && !(priv
->tiostatus
== TIOCM_RTS
)) {
136 dev_dbg(&port
->dev
, "%s TIOCMSET RESET called !!!\n", __func__
);
140 priv
->tiostatus
= TIOCM_RTS
;
142 spin_unlock_irqrestore(&priv
->lock
, flags
);
146 /* This is used to provide a carrier detect mechanism
147 * When a card is present, the response is 0x00
148 * When no card , the reader respond with TIOCM_CD
149 * This is known as CD autodetect mechanism
151 static int iuu_tiocmget(struct tty_struct
*tty
)
153 struct usb_serial_port
*port
= tty
->driver_data
;
154 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
158 spin_lock_irqsave(&priv
->lock
, flags
);
159 rc
= priv
->tiostatus
;
160 spin_unlock_irqrestore(&priv
->lock
, flags
);
165 static void iuu_rxcmd(struct urb
*urb
)
167 struct usb_serial_port
*port
= urb
->context
;
169 int status
= urb
->status
;
172 dev_dbg(&port
->dev
, "%s - status = %d\n", __func__
, status
);
178 memset(port
->write_urb
->transfer_buffer
, IUU_UART_RX
, 1);
179 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
180 usb_sndbulkpipe(port
->serial
->dev
,
181 port
->bulk_out_endpointAddress
),
182 port
->write_urb
->transfer_buffer
, 1,
183 read_rxcmd_callback
, port
);
184 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
187 static int iuu_reset(struct usb_serial_port
*port
, u8 wt
)
189 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
191 char *buf_ptr
= port
->write_urb
->transfer_buffer
;
193 /* Prepare the reset sequence */
195 *buf_ptr
++ = IUU_RST_SET
;
196 *buf_ptr
++ = IUU_DELAY_MS
;
198 *buf_ptr
= IUU_RST_CLEAR
;
200 /* send the sequence */
202 usb_fill_bulk_urb(port
->write_urb
,
204 usb_sndbulkpipe(port
->serial
->dev
,
205 port
->bulk_out_endpointAddress
),
206 port
->write_urb
->transfer_buffer
, 4, iuu_rxcmd
, port
);
207 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
218 static void iuu_update_status_callback(struct urb
*urb
)
220 struct usb_serial_port
*port
= urb
->context
;
221 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
223 int status
= urb
->status
;
226 dev_dbg(&port
->dev
, "%s - status = %d\n", __func__
, status
);
231 st
= urb
->transfer_buffer
;
232 dev_dbg(&port
->dev
, "%s - enter\n", __func__
);
233 if (urb
->actual_length
== 1) {
236 priv
->tiostatus
= iuu_cardout
;
239 priv
->tiostatus
= iuu_cardin
;
242 priv
->tiostatus
= iuu_cardin
;
248 static void iuu_status_callback(struct urb
*urb
)
250 struct usb_serial_port
*port
= urb
->context
;
252 int status
= urb
->status
;
254 dev_dbg(&port
->dev
, "%s - status = %d\n", __func__
, status
);
255 usb_fill_bulk_urb(port
->read_urb
, port
->serial
->dev
,
256 usb_rcvbulkpipe(port
->serial
->dev
,
257 port
->bulk_in_endpointAddress
),
258 port
->read_urb
->transfer_buffer
, 256,
259 iuu_update_status_callback
, port
);
260 result
= usb_submit_urb(port
->read_urb
, GFP_ATOMIC
);
263 static int iuu_status(struct usb_serial_port
*port
)
267 memset(port
->write_urb
->transfer_buffer
, IUU_GET_STATE_REGISTER
, 1);
268 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
269 usb_sndbulkpipe(port
->serial
->dev
,
270 port
->bulk_out_endpointAddress
),
271 port
->write_urb
->transfer_buffer
, 1,
272 iuu_status_callback
, port
);
273 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
278 static int bulk_immediate(struct usb_serial_port
*port
, u8
*buf
, u8 count
)
281 struct usb_serial
*serial
= port
->serial
;
284 /* send the data out the bulk port */
287 usb_bulk_msg(serial
->dev
,
288 usb_sndbulkpipe(serial
->dev
,
289 port
->bulk_out_endpointAddress
), buf
,
290 count
, &actual
, 1000);
292 if (status
!= IUU_OPERATION_OK
)
293 dev_dbg(&port
->dev
, "%s - error = %2x\n", __func__
, status
);
295 dev_dbg(&port
->dev
, "%s - write OK !\n", __func__
);
299 static int read_immediate(struct usb_serial_port
*port
, u8
*buf
, u8 count
)
302 struct usb_serial
*serial
= port
->serial
;
305 /* send the data out the bulk port */
307 usb_bulk_msg(serial
->dev
,
308 usb_rcvbulkpipe(serial
->dev
,
309 port
->bulk_in_endpointAddress
), buf
,
310 count
, &actual
, 1000);
312 if (status
!= IUU_OPERATION_OK
)
313 dev_dbg(&port
->dev
, "%s - error = %2x\n", __func__
, status
);
315 dev_dbg(&port
->dev
, "%s - read OK !\n", __func__
);
319 static int iuu_led(struct usb_serial_port
*port
, unsigned int R
,
320 unsigned int G
, unsigned int B
, u8 f
)
324 buf
= kmalloc(8, GFP_KERNEL
);
328 buf
[0] = IUU_SET_LED
;
330 buf
[2] = (R
>> 8) & 0xFF;
332 buf
[4] = (G
>> 8) & 0xFF;
334 buf
[6] = (B
>> 8) & 0xFF;
336 status
= bulk_immediate(port
, buf
, 8);
338 if (status
!= IUU_OPERATION_OK
)
339 dev_dbg(&port
->dev
, "%s - led error status = %2x\n", __func__
, status
);
341 dev_dbg(&port
->dev
, "%s - led OK !\n", __func__
);
342 return IUU_OPERATION_OK
;
345 static void iuu_rgbf_fill_buffer(u8
*buf
, u8 r1
, u8 r2
, u8 g1
, u8 g2
, u8 b1
,
348 *buf
++ = IUU_SET_LED
;
358 static void iuu_led_activity_on(struct urb
*urb
)
360 struct usb_serial_port
*port
= urb
->context
;
362 char *buf_ptr
= port
->write_urb
->transfer_buffer
;
363 *buf_ptr
++ = IUU_SET_LED
;
365 get_random_bytes(buf_ptr
, 6);
368 iuu_rgbf_fill_buffer(buf_ptr
, 255, 255, 0, 0, 0, 0, 255);
371 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
372 usb_sndbulkpipe(port
->serial
->dev
,
373 port
->bulk_out_endpointAddress
),
374 port
->write_urb
->transfer_buffer
, 8 ,
376 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
379 static void iuu_led_activity_off(struct urb
*urb
)
381 struct usb_serial_port
*port
= urb
->context
;
383 char *buf_ptr
= port
->write_urb
->transfer_buffer
;
388 *buf_ptr
++ = IUU_SET_LED
;
389 iuu_rgbf_fill_buffer(buf_ptr
, 0, 0, 255, 255, 0, 0, 255);
391 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
392 usb_sndbulkpipe(port
->serial
->dev
,
393 port
->bulk_out_endpointAddress
),
394 port
->write_urb
->transfer_buffer
, 8 ,
396 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
401 static int iuu_clk(struct usb_serial_port
*port
, int dwFrq
)
404 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
407 u8 DIV
= 0; /* 8bit */
408 u8 XDRV
= 0; /* 8bit */
409 u8 PUMP
= 0; /* 3bit */
410 u8 PBmsb
= 0; /* 2bit */
411 u8 PBlsb
= 0; /* 8bit */
412 u8 PO
= 0; /* 1bit */
417 int frq
= (int)dwFrq
;
420 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
;
421 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
422 priv
->buf
[Count
++] = 0x09;
423 priv
->buf
[Count
++] = 0x00;
425 status
= bulk_immediate(port
, (u8
*) priv
->buf
, Count
);
427 dev_dbg(&port
->dev
, "%s - write error\n", __func__
);
430 } else if (frq
== 3579000) {
435 } else if (frq
== 3680000) {
440 } else if (frq
== 6000000) {
446 unsigned int result
= 0;
447 unsigned int tmp
= 0;
452 unsigned int lP
= 2055;
453 unsigned int lDiv
= 4;
455 for (lQ
= 2; lQ
<= 47 && !found
; lQ
++)
456 for (lP
= 2055; lP
>= 8 && !found
; lP
--)
457 for (lDiv
= 4; lDiv
<= 127 && !found
; lDiv
++) {
458 tmp
= (12000000 / lDiv
) * (lP
/ lQ
);
459 if (abs((int)(tmp
- frq
)) <
460 abs((int)(frq
- result
))) {
461 check2
= (12000000 / lQ
);
464 check
= (12000000 / lQ
) * lP
;
465 if (check
> 400000000)
467 if (check
< 100000000)
469 if (lDiv
< 4 || lDiv
> 127)
480 P2
= ((P
- PO
) / 2) - 4;
483 PBmsb
= (P2
>> 8 & 0x03);
485 PO
= (P
>> 10) & 0x01;
488 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
489 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
490 priv
->buf
[Count
++] = 0x09;
491 priv
->buf
[Count
++] = 0x20; /* Adr = 0x09 */
492 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
493 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
494 priv
->buf
[Count
++] = 0x0C;
495 priv
->buf
[Count
++] = DIV
; /* Adr = 0x0C */
496 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
497 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
498 priv
->buf
[Count
++] = 0x12;
499 priv
->buf
[Count
++] = XDRV
; /* Adr = 0x12 */
500 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
501 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
502 priv
->buf
[Count
++] = 0x13;
503 priv
->buf
[Count
++] = 0x6B; /* Adr = 0x13 */
504 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
505 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
506 priv
->buf
[Count
++] = 0x40;
507 priv
->buf
[Count
++] = (0xC0 | ((PUMP
& 0x07) << 2)) |
508 (PBmsb
& 0x03); /* Adr = 0x40 */
509 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
510 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
511 priv
->buf
[Count
++] = 0x41;
512 priv
->buf
[Count
++] = PBlsb
; /* Adr = 0x41 */
513 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
514 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
515 priv
->buf
[Count
++] = 0x42;
516 priv
->buf
[Count
++] = Q
| (((PO
& 0x01) << 7)); /* Adr = 0x42 */
517 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
518 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
519 priv
->buf
[Count
++] = 0x44;
520 priv
->buf
[Count
++] = (char)0xFF; /* Adr = 0x44 */
521 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
522 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
523 priv
->buf
[Count
++] = 0x45;
524 priv
->buf
[Count
++] = (char)0xFE; /* Adr = 0x45 */
525 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
526 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
527 priv
->buf
[Count
++] = 0x46;
528 priv
->buf
[Count
++] = 0x7F; /* Adr = 0x46 */
529 priv
->buf
[Count
++] = IUU_UART_WRITE_I2C
; /* 0x4C */
530 priv
->buf
[Count
++] = FrqGenAdr
<< 1;
531 priv
->buf
[Count
++] = 0x47;
532 priv
->buf
[Count
++] = (char)0x84; /* Adr = 0x47 */
534 status
= bulk_immediate(port
, (u8
*) priv
->buf
, Count
);
535 if (status
!= IUU_OPERATION_OK
)
536 dev_dbg(&port
->dev
, "%s - write error\n", __func__
);
540 static int iuu_uart_flush(struct usb_serial_port
*port
)
542 struct device
*dev
= &port
->dev
;
545 u8 rxcmd
= IUU_UART_RX
;
546 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
548 if (iuu_led(port
, 0xF000, 0, 0, 0xFF) < 0)
551 for (i
= 0; i
< 2; i
++) {
552 status
= bulk_immediate(port
, &rxcmd
, 1);
553 if (status
!= IUU_OPERATION_OK
) {
554 dev_dbg(dev
, "%s - uart_flush_write error\n", __func__
);
558 status
= read_immediate(port
, &priv
->len
, 1);
559 if (status
!= IUU_OPERATION_OK
) {
560 dev_dbg(dev
, "%s - uart_flush_read error\n", __func__
);
565 dev_dbg(dev
, "%s - uart_flush datalen is : %i\n", __func__
, priv
->len
);
566 status
= read_immediate(port
, priv
->buf
, priv
->len
);
567 if (status
!= IUU_OPERATION_OK
) {
568 dev_dbg(dev
, "%s - uart_flush_read error\n", __func__
);
573 dev_dbg(dev
, "%s - uart_flush_read OK!\n", __func__
);
574 iuu_led(port
, 0, 0xF000, 0, 0xFF);
578 static void read_buf_callback(struct urb
*urb
)
580 struct usb_serial_port
*port
= urb
->context
;
581 unsigned char *data
= urb
->transfer_buffer
;
582 int status
= urb
->status
;
585 if (status
== -EPROTO
) {
586 /* reschedule needed */
591 dev_dbg(&port
->dev
, "%s - %i chars to write\n", __func__
, urb
->actual_length
);
593 dev_dbg(&port
->dev
, "%s - data is NULL !!!\n", __func__
);
594 if (urb
->actual_length
&& data
) {
595 tty_insert_flip_string(&port
->port
, data
, urb
->actual_length
);
596 tty_flip_buffer_push(&port
->port
);
598 iuu_led_activity_on(urb
);
601 static int iuu_bulk_write(struct usb_serial_port
*port
)
603 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
607 char *buf_ptr
= port
->write_urb
->transfer_buffer
;
609 spin_lock_irqsave(&priv
->lock
, flags
);
610 *buf_ptr
++ = IUU_UART_ESC
;
611 *buf_ptr
++ = IUU_UART_TX
;
612 *buf_ptr
++ = priv
->writelen
;
614 memcpy(buf_ptr
, priv
->writebuf
, priv
->writelen
);
615 buf_len
= priv
->writelen
;
617 spin_unlock_irqrestore(&priv
->lock
, flags
);
618 dev_dbg(&port
->dev
, "%s - writing %i chars : %*ph\n", __func__
,
619 buf_len
, buf_len
, buf_ptr
);
620 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
621 usb_sndbulkpipe(port
->serial
->dev
,
622 port
->bulk_out_endpointAddress
),
623 port
->write_urb
->transfer_buffer
, buf_len
+ 3,
625 result
= usb_submit_urb(port
->write_urb
, GFP_ATOMIC
);
626 usb_serial_port_softint(port
);
630 static int iuu_read_buf(struct usb_serial_port
*port
, int len
)
634 usb_fill_bulk_urb(port
->read_urb
, port
->serial
->dev
,
635 usb_rcvbulkpipe(port
->serial
->dev
,
636 port
->bulk_in_endpointAddress
),
637 port
->read_urb
->transfer_buffer
, len
,
638 read_buf_callback
, port
);
639 result
= usb_submit_urb(port
->read_urb
, GFP_ATOMIC
);
643 static void iuu_uart_read_callback(struct urb
*urb
)
645 struct usb_serial_port
*port
= urb
->context
;
646 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
648 int status
= urb
->status
;
651 unsigned char *data
= urb
->transfer_buffer
;
655 dev_dbg(&port
->dev
, "%s - status = %d\n", __func__
, status
);
660 dev_dbg(&port
->dev
, "%s - data is NULL !!!\n", __func__
);
662 if (urb
->actual_length
== 1 && data
!= NULL
)
665 if (urb
->actual_length
> 1) {
666 dev_dbg(&port
->dev
, "%s - urb->actual_length = %i\n", __func__
,
671 /* if len > 0 call readbuf */
673 if (len
> 0 && error
== 0) {
674 dev_dbg(&port
->dev
, "%s - call read buf - len to read is %i\n",
676 status
= iuu_read_buf(port
, len
);
679 /* need to update status ? */
680 if (priv
->poll
> 99) {
681 status
= iuu_status(port
);
686 /* reset waiting ? */
688 if (priv
->reset
== 1) {
689 status
= iuu_reset(port
, 0xC);
692 /* Writebuf is waiting */
693 spin_lock_irqsave(&priv
->lock
, flags
);
694 if (priv
->writelen
> 0) {
695 spin_unlock_irqrestore(&priv
->lock
, flags
);
696 status
= iuu_bulk_write(port
);
699 spin_unlock_irqrestore(&priv
->lock
, flags
);
700 /* if nothing to write call again rxcmd */
701 dev_dbg(&port
->dev
, "%s - rxcmd recall\n", __func__
);
702 iuu_led_activity_off(urb
);
705 static int iuu_uart_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
706 const u8
*buf
, int count
)
708 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
714 spin_lock_irqsave(&priv
->lock
, flags
);
716 /* fill the buffer */
717 memcpy(priv
->writebuf
+ priv
->writelen
, buf
, count
);
718 priv
->writelen
+= count
;
719 spin_unlock_irqrestore(&priv
->lock
, flags
);
724 static void read_rxcmd_callback(struct urb
*urb
)
726 struct usb_serial_port
*port
= urb
->context
;
728 int status
= urb
->status
;
735 usb_fill_bulk_urb(port
->read_urb
, port
->serial
->dev
,
736 usb_rcvbulkpipe(port
->serial
->dev
,
737 port
->bulk_in_endpointAddress
),
738 port
->read_urb
->transfer_buffer
, 256,
739 iuu_uart_read_callback
, port
);
740 result
= usb_submit_urb(port
->read_urb
, GFP_ATOMIC
);
741 dev_dbg(&port
->dev
, "%s - submit result = %d\n", __func__
, result
);
744 static int iuu_uart_on(struct usb_serial_port
*port
)
749 buf
= kmalloc(sizeof(u8
) * 4, GFP_KERNEL
);
754 buf
[0] = IUU_UART_ENABLE
;
755 buf
[1] = (u8
) ((IUU_BAUD_9600
>> 8) & 0x00FF);
756 buf
[2] = (u8
) (0x00FF & IUU_BAUD_9600
);
757 buf
[3] = (u8
) (0x0F0 & IUU_ONE_STOP_BIT
) | (0x07 & IUU_PARITY_EVEN
);
759 status
= bulk_immediate(port
, buf
, 4);
760 if (status
!= IUU_OPERATION_OK
) {
761 dev_dbg(&port
->dev
, "%s - uart_on error\n", __func__
);
762 goto uart_enable_failed
;
764 /* iuu_reset() the card after iuu_uart_on() */
765 status
= iuu_uart_flush(port
);
766 if (status
!= IUU_OPERATION_OK
)
767 dev_dbg(&port
->dev
, "%s - uart_flush error\n", __func__
);
773 /* Diables the IUU UART (a.k.a. the Phoenix voiderface) */
774 static int iuu_uart_off(struct usb_serial_port
*port
)
778 buf
= kmalloc(1, GFP_KERNEL
);
781 buf
[0] = IUU_UART_DISABLE
;
783 status
= bulk_immediate(port
, buf
, 1);
784 if (status
!= IUU_OPERATION_OK
)
785 dev_dbg(&port
->dev
, "%s - uart_off error\n", __func__
);
791 static int iuu_uart_baud(struct usb_serial_port
*port
, u32 baud_base
,
792 u32
*actual
, u8 parity
)
800 unsigned int T1FrekvensHZ
= 0;
802 dev_dbg(&port
->dev
, "%s - enter baud_base=%d\n", __func__
, baud_base
);
803 dataout
= kmalloc(sizeof(u8
) * 5, GFP_KERNEL
);
807 /*baud = (((priv->clk / 35) * baud_base) / 100000); */
810 if (baud
< 1200 || baud
> 230400) {
812 return IUU_INVALID_PARAMETER
;
816 T1FrekvensHZ
= 500000;
821 T1FrekvensHZ
= 2000000;
826 T1FrekvensHZ
= 6000000;
831 T1FrekvensHZ
= 24000000;
834 T1reload
= 256 - (u8
) (T1FrekvensHZ
/ (baud
* 2));
836 /* magic number here: ENTER_FIRMWARE_UPDATE; */
837 dataout
[DataCount
++] = IUU_UART_ESC
;
838 /* magic number here: CHANGE_BAUD; */
839 dataout
[DataCount
++] = IUU_UART_CHANGE
;
840 dataout
[DataCount
++] = T1Frekvens
;
841 dataout
[DataCount
++] = T1reload
;
843 *actual
= (T1FrekvensHZ
/ (256 - T1reload
)) / 2;
845 switch (parity
& 0x0F) {
846 case IUU_PARITY_NONE
:
847 dataout
[DataCount
++] = 0x00;
849 case IUU_PARITY_EVEN
:
850 dataout
[DataCount
++] = 0x01;
853 dataout
[DataCount
++] = 0x02;
855 case IUU_PARITY_MARK
:
856 dataout
[DataCount
++] = 0x03;
858 case IUU_PARITY_SPACE
:
859 dataout
[DataCount
++] = 0x04;
863 return IUU_INVALID_PARAMETER
;
867 switch (parity
& 0xF0) {
868 case IUU_ONE_STOP_BIT
:
869 dataout
[DataCount
- 1] |= IUU_ONE_STOP_BIT
;
872 case IUU_TWO_STOP_BITS
:
873 dataout
[DataCount
- 1] |= IUU_TWO_STOP_BITS
;
877 return IUU_INVALID_PARAMETER
;
881 status
= bulk_immediate(port
, dataout
, DataCount
);
882 if (status
!= IUU_OPERATION_OK
)
883 dev_dbg(&port
->dev
, "%s - uart_off error\n", __func__
);
888 static void iuu_set_termios(struct tty_struct
*tty
,
889 struct usb_serial_port
*port
, struct ktermios
*old_termios
)
891 const u32 supported_mask
= CMSPAR
|PARENB
|PARODD
;
892 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
893 unsigned int cflag
= tty
->termios
.c_cflag
;
899 u32 newval
= cflag
& supported_mask
;
901 /* Just use the ospeed. ispeed should be the same. */
902 baud
= tty
->termios
.c_ospeed
;
904 dev_dbg(&port
->dev
, "%s - enter c_ospeed or baud=%d\n", __func__
, baud
);
906 /* compute the parity parameter */
908 if (cflag
& CMSPAR
) { /* Using mark space */
910 parity
|= IUU_PARITY_SPACE
;
912 parity
|= IUU_PARITY_MARK
;
913 } else if (!(cflag
& PARENB
)) {
914 parity
|= IUU_PARITY_NONE
;
916 } else if (cflag
& PARODD
)
917 parity
|= IUU_PARITY_ODD
;
919 parity
|= IUU_PARITY_EVEN
;
921 parity
|= (cflag
& CSTOPB
? IUU_TWO_STOP_BITS
: IUU_ONE_STOP_BIT
);
924 status
= iuu_uart_baud(port
,
925 baud
* priv
->boost
/ 100,
928 /* set the termios value to the real one, so the user now what has
929 * changed. We support few fields so its easies to copy the old hw
930 * settings back over and then adjust them
933 tty_termios_copy_hw(&tty
->termios
, old_termios
);
934 if (status
!= 0) /* Set failed - return old bits */
936 /* Re-encode speed, parity and csize */
937 tty_encode_baud_rate(tty
, baud
, baud
);
938 tty
->termios
.c_cflag
&= ~(supported_mask
|CSIZE
);
939 tty
->termios
.c_cflag
|= newval
| csize
;
942 static void iuu_close(struct usb_serial_port
*port
)
944 /* iuu_led (port,255,0,0,0); */
948 usb_kill_urb(port
->write_urb
);
949 usb_kill_urb(port
->read_urb
);
951 iuu_led(port
, 0, 0, 0xF000, 0xFF);
954 static void iuu_init_termios(struct tty_struct
*tty
)
956 tty
->termios
= tty_std_termios
;
957 tty
->termios
.c_cflag
= CLOCAL
| CREAD
| CS8
| B9600
958 | TIOCM_CTS
| CSTOPB
| PARENB
;
959 tty
->termios
.c_ispeed
= 9600;
960 tty
->termios
.c_ospeed
= 9600;
961 tty
->termios
.c_lflag
= 0;
962 tty
->termios
.c_oflag
= 0;
963 tty
->termios
.c_iflag
= 0;
966 static int iuu_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
968 struct usb_serial
*serial
= port
->serial
;
969 struct device
*dev
= &port
->dev
;
974 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
976 baud
= tty
->termios
.c_ospeed
;
977 tty
->termios
.c_ispeed
= baud
;
978 /* Re-encode speed */
979 tty_encode_baud_rate(tty
, baud
, baud
);
981 dev_dbg(dev
, "%s - baud %d\n", __func__
, baud
);
982 usb_clear_halt(serial
->dev
, port
->write_urb
->pipe
);
983 usb_clear_halt(serial
->dev
, port
->read_urb
->pipe
);
985 buf
= kmalloc(10, GFP_KERNEL
);
991 /* initialize writebuf */
992 #define FISH(a, b, c, d) do { \
993 result = usb_control_msg(port->serial->dev, \
994 usb_rcvctrlpipe(port->serial->dev, 0), \
995 b, a, c, d, buf, 1, 1000); \
996 dev_dbg(dev, "0x%x:0x%x:0x%x:0x%x %d - %x\n", a, b, c, d, result, \
997 buf[0]); } while (0);
999 #define SOUP(a, b, c, d) do { \
1000 result = usb_control_msg(port->serial->dev, \
1001 usb_sndctrlpipe(port->serial->dev, 0), \
1002 b, a, c, d, NULL, 0, 1000); \
1003 dev_dbg(dev, "0x%x:0x%x:0x%x:0x%x %d\n", a, b, c, d, result); } while (0)
1005 /* This is not UART related but IUU USB driver related or something */
1006 /* like that. Basically no IUU will accept any commands from the USB */
1007 /* host unless it has received the following message */
1008 /* sprintf(buf ,"%c%c%c%c",0x03,0x02,0x02,0x0); */
1010 SOUP(0x03, 0x02, 0x02, 0x0);
1012 iuu_led(port
, 0xF000, 0xF000, 0, 0xFF);
1016 priv
->boost
= boost
;
1018 switch (clockmode
) {
1019 case 2: /* 3.680 Mhz */
1020 priv
->clk
= IUU_CLK_3680000
;
1021 iuu_clk(port
, IUU_CLK_3680000
* boost
/ 100);
1023 iuu_uart_baud(port
, baud
* boost
/ 100, &actual
,
1026 case 3: /* 6.00 Mhz */
1027 iuu_clk(port
, IUU_CLK_6000000
* boost
/ 100);
1028 priv
->clk
= IUU_CLK_6000000
;
1029 /* Ratio of 6000000 to 3500000 for baud 9600 */
1031 iuu_uart_baud(port
, 16457 * boost
/ 100, &actual
,
1034 default: /* 3.579 Mhz */
1035 iuu_clk(port
, IUU_CLK_3579000
* boost
/ 100);
1036 priv
->clk
= IUU_CLK_3579000
;
1038 iuu_uart_baud(port
, baud
* boost
/ 100, &actual
,
1042 /* set the cardin cardout signals */
1049 iuu_cardin
= TIOCM_CD
;
1054 iuu_cardout
= TIOCM_CD
;
1057 iuu_cardin
= TIOCM_DSR
;
1062 iuu_cardout
= TIOCM_DSR
;
1065 iuu_cardin
= TIOCM_CTS
;
1070 iuu_cardout
= TIOCM_CTS
;
1073 iuu_cardin
= TIOCM_RNG
;
1078 iuu_cardout
= TIOCM_RNG
;
1081 iuu_uart_flush(port
);
1083 dev_dbg(dev
, "%s - initialization done\n", __func__
);
1085 memset(port
->write_urb
->transfer_buffer
, IUU_UART_RX
, 1);
1086 usb_fill_bulk_urb(port
->write_urb
, port
->serial
->dev
,
1087 usb_sndbulkpipe(port
->serial
->dev
,
1088 port
->bulk_out_endpointAddress
),
1089 port
->write_urb
->transfer_buffer
, 1,
1090 read_rxcmd_callback
, port
);
1091 result
= usb_submit_urb(port
->write_urb
, GFP_KERNEL
);
1093 dev_err(dev
, "%s - failed submitting read urb, error %d\n", __func__
, result
);
1096 dev_dbg(dev
, "%s - rxcmd OK\n", __func__
);
1102 /* how to change VCC */
1103 static int iuu_vcc_set(struct usb_serial_port
*port
, unsigned int vcc
)
1108 buf
= kmalloc(5, GFP_KERNEL
);
1112 buf
[0] = IUU_SET_VCC
;
1113 buf
[1] = vcc
& 0xFF;
1114 buf
[2] = (vcc
>> 8) & 0xFF;
1115 buf
[3] = (vcc
>> 16) & 0xFF;
1116 buf
[4] = (vcc
>> 24) & 0xFF;
1118 status
= bulk_immediate(port
, buf
, 5);
1121 if (status
!= IUU_OPERATION_OK
)
1122 dev_dbg(&port
->dev
, "%s - vcc error status = %2x\n", __func__
, status
);
1124 dev_dbg(&port
->dev
, "%s - vcc OK !\n", __func__
);
1133 static ssize_t
show_vcc_mode(struct device
*dev
,
1134 struct device_attribute
*attr
, char *buf
)
1136 struct usb_serial_port
*port
= to_usb_serial_port(dev
);
1137 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
1139 return sprintf(buf
, "%d\n", priv
->vcc
);
1142 static ssize_t
store_vcc_mode(struct device
*dev
,
1143 struct device_attribute
*attr
, const char *buf
, size_t count
)
1145 struct usb_serial_port
*port
= to_usb_serial_port(dev
);
1146 struct iuu_private
*priv
= usb_get_serial_port_data(port
);
1149 if (kstrtoul(buf
, 10, &v
)) {
1150 dev_err(dev
, "%s - vcc_mode: %s is not a unsigned long\n",
1152 goto fail_store_vcc_mode
;
1155 dev_dbg(dev
, "%s: setting vcc_mode = %ld", __func__
, v
);
1157 if ((v
!= 3) && (v
!= 5)) {
1158 dev_err(dev
, "%s - vcc_mode %ld is invalid\n", __func__
, v
);
1160 iuu_vcc_set(port
, v
);
1163 fail_store_vcc_mode
:
1167 static DEVICE_ATTR(vcc_mode
, S_IRUSR
| S_IWUSR
, show_vcc_mode
,
1170 static int iuu_create_sysfs_attrs(struct usb_serial_port
*port
)
1172 return device_create_file(&port
->dev
, &dev_attr_vcc_mode
);
1175 static int iuu_remove_sysfs_attrs(struct usb_serial_port
*port
)
1177 device_remove_file(&port
->dev
, &dev_attr_vcc_mode
);
1182 * End Sysfs Attributes
1185 static struct usb_serial_driver iuu_device
= {
1187 .owner
= THIS_MODULE
,
1188 .name
= "iuu_phoenix",
1190 .id_table
= id_table
,
1192 .bulk_in_size
= 512,
1193 .bulk_out_size
= 512,
1196 .write
= iuu_uart_write
,
1197 .read_bulk_callback
= iuu_uart_read_callback
,
1198 .tiocmget
= iuu_tiocmget
,
1199 .tiocmset
= iuu_tiocmset
,
1200 .set_termios
= iuu_set_termios
,
1201 .init_termios
= iuu_init_termios
,
1202 .port_probe
= iuu_port_probe
,
1203 .port_remove
= iuu_port_remove
,
1206 static struct usb_serial_driver
* const serial_drivers
[] = {
1210 module_usb_serial_driver(serial_drivers
, id_table
);
1212 MODULE_AUTHOR("Alain Degreffe eczema@ecze.com");
1214 MODULE_DESCRIPTION(DRIVER_DESC
);
1215 MODULE_LICENSE("GPL");
1217 module_param(xmas
, bool, S_IRUGO
| S_IWUSR
);
1218 MODULE_PARM_DESC(xmas
, "Xmas colors enabled or not");
1220 module_param(boost
, int, S_IRUGO
| S_IWUSR
);
1221 MODULE_PARM_DESC(boost
, "Card overclock boost (in percent 100-500)");
1223 module_param(clockmode
, int, S_IRUGO
| S_IWUSR
);
1224 MODULE_PARM_DESC(clockmode
, "Card clock mode (1=3.579 MHz, 2=3.680 MHz, "
1227 module_param(cdmode
, int, S_IRUGO
| S_IWUSR
);
1228 MODULE_PARM_DESC(cdmode
, "Card detect mode (0=none, 1=CD, 2=!CD, 3=DSR, "
1229 "4=!DSR, 5=CTS, 6=!CTS, 7=RING, 8=!RING)");
1231 module_param(vcc_default
, int, S_IRUGO
| S_IWUSR
);
1232 MODULE_PARM_DESC(vcc_default
, "Set default VCC (either 3 for 3.3V or 5 "
1233 "for 5V). Default to 5.");