1 // SPDX-License-Identifier: GPL-2.0+
3 * Infinity Unlimited USB Phoenix driver
9 * Original code taken from iuutool (Copyright (C) 2006 Juan Carlos Borrás)
11 * And tested with help of WB Electronics
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/slab.h>
16 #include <linux/tty.h>
17 #include <linux/tty_driver.h>
18 #include <linux/tty_flip.h>
19 #include <linux/serial.h>
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/spinlock.h>
23 #include <linux/uaccess.h>
24 #include <linux/usb.h>
25 #include <linux/usb/serial.h>
26 #include "iuu_phoenix.h"
27 #include <linux/random.h>
29 #define DRIVER_DESC "Infinity USB Unlimited Phoenix driver"
31 static const struct usb_device_id id_table[] = {
32 {USB_DEVICE(IUU_USB_VENDOR_ID, IUU_USB_PRODUCT_ID)},
33 {} /* Terminating entry */
35 MODULE_DEVICE_TABLE(usb, id_table);
38 static int boost = 100;
39 static int clockmode = 1;
40 static int cdmode = 1;
41 static int iuu_cardin;
42 static int iuu_cardout;
44 static int vcc_default = 5;
46 static int iuu_create_sysfs_attrs(struct usb_serial_port *port);
47 static int iuu_remove_sysfs_attrs(struct usb_serial_port *port);
48 static void read_rxcmd_callback(struct urb *urb);
51 spinlock_t lock; /* store irq state */
53 int tiostatus; /* store IUART SIGNAL for tiocmget call */
54 u8 reset; /* if 1 reset is needed */
55 int poll; /* number of poll */
56 u8 *writebuf; /* buffer for writing to device */
57 int writelen; /* num of byte to write to device */
58 u8 *buf; /* used for initialize speed */
60 int vcc; /* vcc (either 3 or 5 V) */
66 static int iuu_port_probe(struct usb_serial_port *port)
68 struct iuu_private *priv;
71 priv = kzalloc(sizeof(struct iuu_private), GFP_KERNEL);
75 priv->buf = kzalloc(256, GFP_KERNEL);
81 priv->writebuf = kzalloc(256, GFP_KERNEL);
82 if (!priv->writebuf) {
88 priv->vcc = vcc_default;
89 spin_lock_init(&priv->lock);
91 usb_set_serial_port_data(port, priv);
93 ret = iuu_create_sysfs_attrs(port);
95 kfree(priv->writebuf);
104 static int iuu_port_remove(struct usb_serial_port *port)
106 struct iuu_private *priv = usb_get_serial_port_data(port);
108 iuu_remove_sysfs_attrs(port);
109 kfree(priv->writebuf);
116 static int iuu_tiocmset(struct tty_struct *tty,
117 unsigned int set, unsigned int clear)
119 struct usb_serial_port *port = tty->driver_data;
120 struct iuu_private *priv = usb_get_serial_port_data(port);
123 /* FIXME: locking on tiomstatus */
124 dev_dbg(&port->dev, "%s msg : SET = 0x%04x, CLEAR = 0x%04x\n",
125 __func__, set, clear);
127 spin_lock_irqsave(&priv->lock, flags);
129 if ((set & TIOCM_RTS) && !(priv->tiostatus == TIOCM_RTS)) {
130 dev_dbg(&port->dev, "%s TIOCMSET RESET called !!!\n", __func__);
134 priv->tiostatus = TIOCM_RTS;
136 spin_unlock_irqrestore(&priv->lock, flags);
140 /* This is used to provide a carrier detect mechanism
141 * When a card is present, the response is 0x00
142 * When no card , the reader respond with TIOCM_CD
143 * This is known as CD autodetect mechanism
145 static int iuu_tiocmget(struct tty_struct *tty)
147 struct usb_serial_port *port = tty->driver_data;
148 struct iuu_private *priv = usb_get_serial_port_data(port);
152 spin_lock_irqsave(&priv->lock, flags);
153 rc = priv->tiostatus;
154 spin_unlock_irqrestore(&priv->lock, flags);
159 static void iuu_rxcmd(struct urb *urb)
161 struct usb_serial_port *port = urb->context;
163 int status = urb->status;
166 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
172 memset(port->write_urb->transfer_buffer, IUU_UART_RX, 1);
173 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
174 usb_sndbulkpipe(port->serial->dev,
175 port->bulk_out_endpointAddress),
176 port->write_urb->transfer_buffer, 1,
177 read_rxcmd_callback, port);
178 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
181 static int iuu_reset(struct usb_serial_port *port, u8 wt)
183 struct iuu_private *priv = usb_get_serial_port_data(port);
185 char *buf_ptr = port->write_urb->transfer_buffer;
187 /* Prepare the reset sequence */
189 *buf_ptr++ = IUU_RST_SET;
190 *buf_ptr++ = IUU_DELAY_MS;
192 *buf_ptr = IUU_RST_CLEAR;
194 /* send the sequence */
196 usb_fill_bulk_urb(port->write_urb,
198 usb_sndbulkpipe(port->serial->dev,
199 port->bulk_out_endpointAddress),
200 port->write_urb->transfer_buffer, 4, iuu_rxcmd, port);
201 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
212 static void iuu_update_status_callback(struct urb *urb)
214 struct usb_serial_port *port = urb->context;
215 struct iuu_private *priv = usb_get_serial_port_data(port);
217 int status = urb->status;
220 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
225 st = urb->transfer_buffer;
226 dev_dbg(&port->dev, "%s - enter\n", __func__);
227 if (urb->actual_length == 1) {
230 priv->tiostatus = iuu_cardout;
233 priv->tiostatus = iuu_cardin;
236 priv->tiostatus = iuu_cardin;
242 static void iuu_status_callback(struct urb *urb)
244 struct usb_serial_port *port = urb->context;
246 int status = urb->status;
248 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
249 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
250 usb_rcvbulkpipe(port->serial->dev,
251 port->bulk_in_endpointAddress),
252 port->read_urb->transfer_buffer, 256,
253 iuu_update_status_callback, port);
254 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
257 static int iuu_status(struct usb_serial_port *port)
261 memset(port->write_urb->transfer_buffer, IUU_GET_STATE_REGISTER, 1);
262 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
263 usb_sndbulkpipe(port->serial->dev,
264 port->bulk_out_endpointAddress),
265 port->write_urb->transfer_buffer, 1,
266 iuu_status_callback, port);
267 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
272 static int bulk_immediate(struct usb_serial_port *port, u8 *buf, u8 count)
275 struct usb_serial *serial = port->serial;
278 /* send the data out the bulk port */
281 usb_bulk_msg(serial->dev,
282 usb_sndbulkpipe(serial->dev,
283 port->bulk_out_endpointAddress), buf,
284 count, &actual, 1000);
286 if (status != IUU_OPERATION_OK)
287 dev_dbg(&port->dev, "%s - error = %2x\n", __func__, status);
289 dev_dbg(&port->dev, "%s - write OK !\n", __func__);
293 static int read_immediate(struct usb_serial_port *port, u8 *buf, u8 count)
296 struct usb_serial *serial = port->serial;
299 /* send the data out the bulk port */
301 usb_bulk_msg(serial->dev,
302 usb_rcvbulkpipe(serial->dev,
303 port->bulk_in_endpointAddress), buf,
304 count, &actual, 1000);
306 if (status != IUU_OPERATION_OK)
307 dev_dbg(&port->dev, "%s - error = %2x\n", __func__, status);
309 dev_dbg(&port->dev, "%s - read OK !\n", __func__);
313 static int iuu_led(struct usb_serial_port *port, unsigned int R,
314 unsigned int G, unsigned int B, u8 f)
318 buf = kmalloc(8, GFP_KERNEL);
322 buf[0] = IUU_SET_LED;
324 buf[2] = (R >> 8) & 0xFF;
326 buf[4] = (G >> 8) & 0xFF;
328 buf[6] = (B >> 8) & 0xFF;
330 status = bulk_immediate(port, buf, 8);
332 if (status != IUU_OPERATION_OK)
333 dev_dbg(&port->dev, "%s - led error status = %2x\n", __func__, status);
335 dev_dbg(&port->dev, "%s - led OK !\n", __func__);
336 return IUU_OPERATION_OK;
339 static void iuu_rgbf_fill_buffer(u8 *buf, u8 r1, u8 r2, u8 g1, u8 g2, u8 b1,
342 *buf++ = IUU_SET_LED;
352 static void iuu_led_activity_on(struct urb *urb)
354 struct usb_serial_port *port = urb->context;
356 char *buf_ptr = port->write_urb->transfer_buffer;
357 *buf_ptr++ = IUU_SET_LED;
359 get_random_bytes(buf_ptr, 6);
362 iuu_rgbf_fill_buffer(buf_ptr, 255, 255, 0, 0, 0, 0, 255);
365 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
366 usb_sndbulkpipe(port->serial->dev,
367 port->bulk_out_endpointAddress),
368 port->write_urb->transfer_buffer, 8 ,
370 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
373 static void iuu_led_activity_off(struct urb *urb)
375 struct usb_serial_port *port = urb->context;
377 char *buf_ptr = port->write_urb->transfer_buffer;
382 *buf_ptr++ = IUU_SET_LED;
383 iuu_rgbf_fill_buffer(buf_ptr, 0, 0, 255, 255, 0, 0, 255);
385 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
386 usb_sndbulkpipe(port->serial->dev,
387 port->bulk_out_endpointAddress),
388 port->write_urb->transfer_buffer, 8 ,
390 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
395 static int iuu_clk(struct usb_serial_port *port, int dwFrq)
398 struct iuu_private *priv = usb_get_serial_port_data(port);
401 u8 DIV = 0; /* 8bit */
402 u8 XDRV = 0; /* 8bit */
403 u8 PUMP = 0; /* 3bit */
404 u8 PBmsb = 0; /* 2bit */
405 u8 PBlsb = 0; /* 8bit */
406 u8 PO = 0; /* 1bit */
411 int frq = (int)dwFrq;
414 priv->buf[Count++] = IUU_UART_WRITE_I2C;
415 priv->buf[Count++] = FrqGenAdr << 1;
416 priv->buf[Count++] = 0x09;
417 priv->buf[Count++] = 0x00;
419 status = bulk_immediate(port, (u8 *) priv->buf, Count);
421 dev_dbg(&port->dev, "%s - write error\n", __func__);
424 } else if (frq == 3579000) {
429 } else if (frq == 3680000) {
434 } else if (frq == 6000000) {
440 unsigned int result = 0;
441 unsigned int tmp = 0;
446 unsigned int lP = 2055;
447 unsigned int lDiv = 4;
449 for (lQ = 2; lQ <= 47 && !found; lQ++)
450 for (lP = 2055; lP >= 8 && !found; lP--)
451 for (lDiv = 4; lDiv <= 127 && !found; lDiv++) {
452 tmp = (12000000 / lDiv) * (lP / lQ);
453 if (abs((int)(tmp - frq)) <
454 abs((int)(frq - result))) {
455 check2 = (12000000 / lQ);
458 check = (12000000 / lQ) * lP;
459 if (check > 400000000)
461 if (check < 100000000)
463 if (lDiv < 4 || lDiv > 127)
474 P2 = ((P - PO) / 2) - 4;
477 PBmsb = (P2 >> 8 & 0x03);
479 PO = (P >> 10) & 0x01;
482 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
483 priv->buf[Count++] = FrqGenAdr << 1;
484 priv->buf[Count++] = 0x09;
485 priv->buf[Count++] = 0x20; /* Adr = 0x09 */
486 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
487 priv->buf[Count++] = FrqGenAdr << 1;
488 priv->buf[Count++] = 0x0C;
489 priv->buf[Count++] = DIV; /* Adr = 0x0C */
490 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
491 priv->buf[Count++] = FrqGenAdr << 1;
492 priv->buf[Count++] = 0x12;
493 priv->buf[Count++] = XDRV; /* Adr = 0x12 */
494 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
495 priv->buf[Count++] = FrqGenAdr << 1;
496 priv->buf[Count++] = 0x13;
497 priv->buf[Count++] = 0x6B; /* Adr = 0x13 */
498 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
499 priv->buf[Count++] = FrqGenAdr << 1;
500 priv->buf[Count++] = 0x40;
501 priv->buf[Count++] = (0xC0 | ((PUMP & 0x07) << 2)) |
502 (PBmsb & 0x03); /* Adr = 0x40 */
503 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
504 priv->buf[Count++] = FrqGenAdr << 1;
505 priv->buf[Count++] = 0x41;
506 priv->buf[Count++] = PBlsb; /* Adr = 0x41 */
507 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
508 priv->buf[Count++] = FrqGenAdr << 1;
509 priv->buf[Count++] = 0x42;
510 priv->buf[Count++] = Q | (((PO & 0x01) << 7)); /* Adr = 0x42 */
511 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
512 priv->buf[Count++] = FrqGenAdr << 1;
513 priv->buf[Count++] = 0x44;
514 priv->buf[Count++] = (char)0xFF; /* Adr = 0x44 */
515 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
516 priv->buf[Count++] = FrqGenAdr << 1;
517 priv->buf[Count++] = 0x45;
518 priv->buf[Count++] = (char)0xFE; /* Adr = 0x45 */
519 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
520 priv->buf[Count++] = FrqGenAdr << 1;
521 priv->buf[Count++] = 0x46;
522 priv->buf[Count++] = 0x7F; /* Adr = 0x46 */
523 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
524 priv->buf[Count++] = FrqGenAdr << 1;
525 priv->buf[Count++] = 0x47;
526 priv->buf[Count++] = (char)0x84; /* Adr = 0x47 */
528 status = bulk_immediate(port, (u8 *) priv->buf, Count);
529 if (status != IUU_OPERATION_OK)
530 dev_dbg(&port->dev, "%s - write error\n", __func__);
534 static int iuu_uart_flush(struct usb_serial_port *port)
536 struct device *dev = &port->dev;
539 u8 rxcmd = IUU_UART_RX;
540 struct iuu_private *priv = usb_get_serial_port_data(port);
542 if (iuu_led(port, 0xF000, 0, 0, 0xFF) < 0)
545 for (i = 0; i < 2; i++) {
546 status = bulk_immediate(port, &rxcmd, 1);
547 if (status != IUU_OPERATION_OK) {
548 dev_dbg(dev, "%s - uart_flush_write error\n", __func__);
552 status = read_immediate(port, &priv->len, 1);
553 if (status != IUU_OPERATION_OK) {
554 dev_dbg(dev, "%s - uart_flush_read error\n", __func__);
559 dev_dbg(dev, "%s - uart_flush datalen is : %i\n", __func__, priv->len);
560 status = read_immediate(port, priv->buf, priv->len);
561 if (status != IUU_OPERATION_OK) {
562 dev_dbg(dev, "%s - uart_flush_read error\n", __func__);
567 dev_dbg(dev, "%s - uart_flush_read OK!\n", __func__);
568 iuu_led(port, 0, 0xF000, 0, 0xFF);
572 static void read_buf_callback(struct urb *urb)
574 struct usb_serial_port *port = urb->context;
575 unsigned char *data = urb->transfer_buffer;
576 int status = urb->status;
579 if (status == -EPROTO) {
580 /* reschedule needed */
585 dev_dbg(&port->dev, "%s - %i chars to write\n", __func__, urb->actual_length);
587 if (urb->actual_length) {
588 tty_insert_flip_string(&port->port, data, urb->actual_length);
589 tty_flip_buffer_push(&port->port);
591 iuu_led_activity_on(urb);
594 static int iuu_bulk_write(struct usb_serial_port *port)
596 struct iuu_private *priv = usb_get_serial_port_data(port);
600 char *buf_ptr = port->write_urb->transfer_buffer;
602 spin_lock_irqsave(&priv->lock, flags);
603 *buf_ptr++ = IUU_UART_ESC;
604 *buf_ptr++ = IUU_UART_TX;
605 *buf_ptr++ = priv->writelen;
607 memcpy(buf_ptr, priv->writebuf, priv->writelen);
608 buf_len = priv->writelen;
610 spin_unlock_irqrestore(&priv->lock, flags);
611 dev_dbg(&port->dev, "%s - writing %i chars : %*ph\n", __func__,
612 buf_len, buf_len, buf_ptr);
613 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
614 usb_sndbulkpipe(port->serial->dev,
615 port->bulk_out_endpointAddress),
616 port->write_urb->transfer_buffer, buf_len + 3,
618 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
619 usb_serial_port_softint(port);
623 static int iuu_read_buf(struct usb_serial_port *port, int len)
627 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
628 usb_rcvbulkpipe(port->serial->dev,
629 port->bulk_in_endpointAddress),
630 port->read_urb->transfer_buffer, len,
631 read_buf_callback, port);
632 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
636 static void iuu_uart_read_callback(struct urb *urb)
638 struct usb_serial_port *port = urb->context;
639 struct iuu_private *priv = usb_get_serial_port_data(port);
641 int status = urb->status;
644 unsigned char *data = urb->transfer_buffer;
648 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
653 if (urb->actual_length == 1)
656 if (urb->actual_length > 1) {
657 dev_dbg(&port->dev, "%s - urb->actual_length = %i\n", __func__,
662 /* if len > 0 call readbuf */
664 if (len > 0 && error == 0) {
665 dev_dbg(&port->dev, "%s - call read buf - len to read is %i\n",
667 status = iuu_read_buf(port, len);
670 /* need to update status ? */
671 if (priv->poll > 99) {
672 status = iuu_status(port);
677 /* reset waiting ? */
679 if (priv->reset == 1) {
680 status = iuu_reset(port, 0xC);
683 /* Writebuf is waiting */
684 spin_lock_irqsave(&priv->lock, flags);
685 if (priv->writelen > 0) {
686 spin_unlock_irqrestore(&priv->lock, flags);
687 status = iuu_bulk_write(port);
690 spin_unlock_irqrestore(&priv->lock, flags);
691 /* if nothing to write call again rxcmd */
692 dev_dbg(&port->dev, "%s - rxcmd recall\n", __func__);
693 iuu_led_activity_off(urb);
696 static int iuu_uart_write(struct tty_struct *tty, struct usb_serial_port *port,
697 const u8 *buf, int count)
699 struct iuu_private *priv = usb_get_serial_port_data(port);
705 spin_lock_irqsave(&priv->lock, flags);
707 /* fill the buffer */
708 memcpy(priv->writebuf + priv->writelen, buf, count);
709 priv->writelen += count;
710 spin_unlock_irqrestore(&priv->lock, flags);
715 static void read_rxcmd_callback(struct urb *urb)
717 struct usb_serial_port *port = urb->context;
719 int status = urb->status;
726 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
727 usb_rcvbulkpipe(port->serial->dev,
728 port->bulk_in_endpointAddress),
729 port->read_urb->transfer_buffer, 256,
730 iuu_uart_read_callback, port);
731 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
732 dev_dbg(&port->dev, "%s - submit result = %d\n", __func__, result);
735 static int iuu_uart_on(struct usb_serial_port *port)
740 buf = kmalloc(sizeof(u8) * 4, GFP_KERNEL);
745 buf[0] = IUU_UART_ENABLE;
746 buf[1] = (u8) ((IUU_BAUD_9600 >> 8) & 0x00FF);
747 buf[2] = (u8) (0x00FF & IUU_BAUD_9600);
748 buf[3] = (u8) (0x0F0 & IUU_ONE_STOP_BIT) | (0x07 & IUU_PARITY_EVEN);
750 status = bulk_immediate(port, buf, 4);
751 if (status != IUU_OPERATION_OK) {
752 dev_dbg(&port->dev, "%s - uart_on error\n", __func__);
753 goto uart_enable_failed;
755 /* iuu_reset() the card after iuu_uart_on() */
756 status = iuu_uart_flush(port);
757 if (status != IUU_OPERATION_OK)
758 dev_dbg(&port->dev, "%s - uart_flush error\n", __func__);
764 /* Disables the IUU UART (a.k.a. the Phoenix voiderface) */
765 static int iuu_uart_off(struct usb_serial_port *port)
769 buf = kmalloc(1, GFP_KERNEL);
772 buf[0] = IUU_UART_DISABLE;
774 status = bulk_immediate(port, buf, 1);
775 if (status != IUU_OPERATION_OK)
776 dev_dbg(&port->dev, "%s - uart_off error\n", __func__);
782 static int iuu_uart_baud(struct usb_serial_port *port, u32 baud_base,
783 u32 *actual, u8 parity)
791 unsigned int T1FrekvensHZ = 0;
793 dev_dbg(&port->dev, "%s - enter baud_base=%d\n", __func__, baud_base);
794 dataout = kmalloc(sizeof(u8) * 5, GFP_KERNEL);
798 /*baud = (((priv->clk / 35) * baud_base) / 100000); */
801 if (baud < 1200 || baud > 230400) {
803 return IUU_INVALID_PARAMETER;
807 T1FrekvensHZ = 500000;
812 T1FrekvensHZ = 2000000;
817 T1FrekvensHZ = 6000000;
822 T1FrekvensHZ = 24000000;
825 T1reload = 256 - (u8) (T1FrekvensHZ / (baud * 2));
827 /* magic number here: ENTER_FIRMWARE_UPDATE; */
828 dataout[DataCount++] = IUU_UART_ESC;
829 /* magic number here: CHANGE_BAUD; */
830 dataout[DataCount++] = IUU_UART_CHANGE;
831 dataout[DataCount++] = T1Frekvens;
832 dataout[DataCount++] = T1reload;
834 *actual = (T1FrekvensHZ / (256 - T1reload)) / 2;
836 switch (parity & 0x0F) {
837 case IUU_PARITY_NONE:
838 dataout[DataCount++] = 0x00;
840 case IUU_PARITY_EVEN:
841 dataout[DataCount++] = 0x01;
844 dataout[DataCount++] = 0x02;
846 case IUU_PARITY_MARK:
847 dataout[DataCount++] = 0x03;
849 case IUU_PARITY_SPACE:
850 dataout[DataCount++] = 0x04;
854 return IUU_INVALID_PARAMETER;
858 switch (parity & 0xF0) {
859 case IUU_ONE_STOP_BIT:
860 dataout[DataCount - 1] |= IUU_ONE_STOP_BIT;
863 case IUU_TWO_STOP_BITS:
864 dataout[DataCount - 1] |= IUU_TWO_STOP_BITS;
868 return IUU_INVALID_PARAMETER;
872 status = bulk_immediate(port, dataout, DataCount);
873 if (status != IUU_OPERATION_OK)
874 dev_dbg(&port->dev, "%s - uart_off error\n", __func__);
879 static void iuu_set_termios(struct tty_struct *tty,
880 struct usb_serial_port *port, struct ktermios *old_termios)
882 const u32 supported_mask = CMSPAR|PARENB|PARODD;
883 struct iuu_private *priv = usb_get_serial_port_data(port);
884 unsigned int cflag = tty->termios.c_cflag;
890 u32 newval = cflag & supported_mask;
892 /* Just use the ospeed. ispeed should be the same. */
893 baud = tty->termios.c_ospeed;
895 dev_dbg(&port->dev, "%s - enter c_ospeed or baud=%d\n", __func__, baud);
897 /* compute the parity parameter */
899 if (cflag & CMSPAR) { /* Using mark space */
901 parity |= IUU_PARITY_SPACE;
903 parity |= IUU_PARITY_MARK;
904 } else if (!(cflag & PARENB)) {
905 parity |= IUU_PARITY_NONE;
907 } else if (cflag & PARODD)
908 parity |= IUU_PARITY_ODD;
910 parity |= IUU_PARITY_EVEN;
912 parity |= (cflag & CSTOPB ? IUU_TWO_STOP_BITS : IUU_ONE_STOP_BIT);
915 status = iuu_uart_baud(port,
916 baud * priv->boost / 100,
919 /* set the termios value to the real one, so the user now what has
920 * changed. We support few fields so its easies to copy the old hw
921 * settings back over and then adjust them
924 tty_termios_copy_hw(&tty->termios, old_termios);
925 if (status != 0) /* Set failed - return old bits */
927 /* Re-encode speed, parity and csize */
928 tty_encode_baud_rate(tty, baud, baud);
929 tty->termios.c_cflag &= ~(supported_mask|CSIZE);
930 tty->termios.c_cflag |= newval | csize;
933 static void iuu_close(struct usb_serial_port *port)
935 /* iuu_led (port,255,0,0,0); */
939 usb_kill_urb(port->write_urb);
940 usb_kill_urb(port->read_urb);
942 iuu_led(port, 0, 0, 0xF000, 0xFF);
945 static void iuu_init_termios(struct tty_struct *tty)
947 tty->termios = tty_std_termios;
948 tty->termios.c_cflag = CLOCAL | CREAD | CS8 | B9600
949 | TIOCM_CTS | CSTOPB | PARENB;
950 tty->termios.c_ispeed = 9600;
951 tty->termios.c_ospeed = 9600;
952 tty->termios.c_lflag = 0;
953 tty->termios.c_oflag = 0;
954 tty->termios.c_iflag = 0;
957 static int iuu_open(struct tty_struct *tty, struct usb_serial_port *port)
959 struct usb_serial *serial = port->serial;
960 struct device *dev = &port->dev;
964 struct iuu_private *priv = usb_get_serial_port_data(port);
966 baud = tty->termios.c_ospeed;
967 tty->termios.c_ispeed = baud;
968 /* Re-encode speed */
969 tty_encode_baud_rate(tty, baud, baud);
971 dev_dbg(dev, "%s - baud %d\n", __func__, baud);
972 usb_clear_halt(serial->dev, port->write_urb->pipe);
973 usb_clear_halt(serial->dev, port->read_urb->pipe);
977 #define SOUP(a, b, c, d) do { \
978 result = usb_control_msg(port->serial->dev, \
979 usb_sndctrlpipe(port->serial->dev, 0), \
980 b, a, c, d, NULL, 0, 1000); \
981 dev_dbg(dev, "0x%x:0x%x:0x%x:0x%x %d\n", a, b, c, d, result); } while (0)
983 /* This is not UART related but IUU USB driver related or something */
984 /* like that. Basically no IUU will accept any commands from the USB */
985 /* host unless it has received the following message */
986 /* sprintf(buf ,"%c%c%c%c",0x03,0x02,0x02,0x0); */
988 SOUP(0x03, 0x02, 0x02, 0x0);
990 iuu_led(port, 0xF000, 0xF000, 0, 0xFF);
997 case 2: /* 3.680 Mhz */
998 priv->clk = IUU_CLK_3680000;
999 iuu_clk(port, IUU_CLK_3680000 * boost / 100);
1001 iuu_uart_baud(port, baud * boost / 100, &actual,
1004 case 3: /* 6.00 Mhz */
1005 iuu_clk(port, IUU_CLK_6000000 * boost / 100);
1006 priv->clk = IUU_CLK_6000000;
1007 /* Ratio of 6000000 to 3500000 for baud 9600 */
1009 iuu_uart_baud(port, 16457 * boost / 100, &actual,
1012 default: /* 3.579 Mhz */
1013 iuu_clk(port, IUU_CLK_3579000 * boost / 100);
1014 priv->clk = IUU_CLK_3579000;
1016 iuu_uart_baud(port, baud * boost / 100, &actual,
1020 /* set the cardin cardout signals */
1027 iuu_cardin = TIOCM_CD;
1032 iuu_cardout = TIOCM_CD;
1035 iuu_cardin = TIOCM_DSR;
1040 iuu_cardout = TIOCM_DSR;
1043 iuu_cardin = TIOCM_CTS;
1048 iuu_cardout = TIOCM_CTS;
1051 iuu_cardin = TIOCM_RNG;
1056 iuu_cardout = TIOCM_RNG;
1059 iuu_uart_flush(port);
1061 dev_dbg(dev, "%s - initialization done\n", __func__);
1063 memset(port->write_urb->transfer_buffer, IUU_UART_RX, 1);
1064 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1065 usb_sndbulkpipe(port->serial->dev,
1066 port->bulk_out_endpointAddress),
1067 port->write_urb->transfer_buffer, 1,
1068 read_rxcmd_callback, port);
1069 result = usb_submit_urb(port->write_urb, GFP_KERNEL);
1071 dev_err(dev, "%s - failed submitting read urb, error %d\n", __func__, result);
1074 dev_dbg(dev, "%s - rxcmd OK\n", __func__);
1080 /* how to change VCC */
1081 static int iuu_vcc_set(struct usb_serial_port *port, unsigned int vcc)
1086 buf = kmalloc(5, GFP_KERNEL);
1090 buf[0] = IUU_SET_VCC;
1091 buf[1] = vcc & 0xFF;
1092 buf[2] = (vcc >> 8) & 0xFF;
1093 buf[3] = (vcc >> 16) & 0xFF;
1094 buf[4] = (vcc >> 24) & 0xFF;
1096 status = bulk_immediate(port, buf, 5);
1099 if (status != IUU_OPERATION_OK)
1100 dev_dbg(&port->dev, "%s - vcc error status = %2x\n", __func__, status);
1102 dev_dbg(&port->dev, "%s - vcc OK !\n", __func__);
1111 static ssize_t vcc_mode_show(struct device *dev,
1112 struct device_attribute *attr, char *buf)
1114 struct usb_serial_port *port = to_usb_serial_port(dev);
1115 struct iuu_private *priv = usb_get_serial_port_data(port);
1117 return sprintf(buf, "%d\n", priv->vcc);
1120 static ssize_t vcc_mode_store(struct device *dev,
1121 struct device_attribute *attr, const char *buf, size_t count)
1123 struct usb_serial_port *port = to_usb_serial_port(dev);
1124 struct iuu_private *priv = usb_get_serial_port_data(port);
1127 if (kstrtoul(buf, 10, &v)) {
1128 dev_err(dev, "%s - vcc_mode: %s is not a unsigned long\n",
1130 goto fail_store_vcc_mode;
1133 dev_dbg(dev, "%s: setting vcc_mode = %ld\n", __func__, v);
1135 if ((v != 3) && (v != 5)) {
1136 dev_err(dev, "%s - vcc_mode %ld is invalid\n", __func__, v);
1138 iuu_vcc_set(port, v);
1141 fail_store_vcc_mode:
1144 static DEVICE_ATTR_RW(vcc_mode);
1146 static int iuu_create_sysfs_attrs(struct usb_serial_port *port)
1148 return device_create_file(&port->dev, &dev_attr_vcc_mode);
1151 static int iuu_remove_sysfs_attrs(struct usb_serial_port *port)
1153 device_remove_file(&port->dev, &dev_attr_vcc_mode);
1158 * End Sysfs Attributes
1161 static struct usb_serial_driver iuu_device = {
1163 .owner = THIS_MODULE,
1164 .name = "iuu_phoenix",
1166 .id_table = id_table,
1170 .bulk_in_size = 512,
1171 .bulk_out_size = 512,
1174 .write = iuu_uart_write,
1175 .read_bulk_callback = iuu_uart_read_callback,
1176 .tiocmget = iuu_tiocmget,
1177 .tiocmset = iuu_tiocmset,
1178 .set_termios = iuu_set_termios,
1179 .init_termios = iuu_init_termios,
1180 .port_probe = iuu_port_probe,
1181 .port_remove = iuu_port_remove,
1184 static struct usb_serial_driver * const serial_drivers[] = {
1188 module_usb_serial_driver(serial_drivers, id_table);
1192 MODULE_DESCRIPTION(DRIVER_DESC);
1193 MODULE_LICENSE("GPL");
1195 module_param(xmas, bool, S_IRUGO | S_IWUSR);
1196 MODULE_PARM_DESC(xmas, "Xmas colors enabled or not");
1198 module_param(boost, int, S_IRUGO | S_IWUSR);
1199 MODULE_PARM_DESC(boost, "Card overclock boost (in percent 100-500)");
1201 module_param(clockmode, int, S_IRUGO | S_IWUSR);
1202 MODULE_PARM_DESC(clockmode, "Card clock mode (1=3.579 MHz, 2=3.680 MHz, "
1205 module_param(cdmode, int, S_IRUGO | S_IWUSR);
1206 MODULE_PARM_DESC(cdmode, "Card detect mode (0=none, 1=CD, 2=!CD, 3=DSR, "
1207 "4=!DSR, 5=CTS, 6=!CTS, 7=RING, 8=!RING)");
1209 module_param(vcc_default, int, S_IRUGO | S_IWUSR);
1210 MODULE_PARM_DESC(vcc_default, "Set default VCC (either 3 for 3.3V or 5 "
1211 "for 5V). Default to 5.");