2  * Infinity Unlimited USB Phoenix driver
 
   4  * Copyright (C) 2007 Alain Degreffe (eczema@ecze.com)
 
   6  * Original code taken from iuutool (Copyright (C) 2006 Juan Carlos Borrás)
 
   8  *      This program is free software; you can redistribute it and/or modify
 
   9  *      it under the terms of the GNU General Public License as published by
 
  10  *      the Free Software Foundation; either version 2 of the License, or
 
  11  *      (at your option) any later version.
 
  13  *  And tested with help of WB Electronics
 
  16 #include <linux/kernel.h>
 
  17 #include <linux/errno.h>
 
  18 #include <linux/init.h>
 
  19 #include <linux/slab.h>
 
  20 #include <linux/tty.h>
 
  21 #include <linux/tty_driver.h>
 
  22 #include <linux/tty_flip.h>
 
  23 #include <linux/serial.h>
 
  24 #include <linux/module.h>
 
  25 #include <linux/moduleparam.h>
 
  26 #include <linux/spinlock.h>
 
  27 #include <linux/uaccess.h>
 
  28 #include <linux/usb.h>
 
  29 #include <linux/usb/serial.h>
 
  30 #include "iuu_phoenix.h"
 
  31 #include <linux/random.h>
 
  34 #ifdef CONFIG_USB_SERIAL_DEBUG
 
  43 #define DRIVER_VERSION "v0.5"
 
  44 #define DRIVER_DESC "Infinity USB Unlimited Phoenix driver"
 
  46 static struct usb_device_id id_table[] = {
 
  47         {USB_DEVICE(IUU_USB_VENDOR_ID, IUU_USB_PRODUCT_ID)},
 
  48         {}                      /* Terminating entry */
 
  50 MODULE_DEVICE_TABLE(usb, id_table);
 
  52 static struct usb_driver iuu_driver = {
 
  53         .name = "iuu_phoenix",
 
  54         .probe = usb_serial_probe,
 
  55         .disconnect = usb_serial_disconnect,
 
  61 static int boost = 100;
 
  62 static int clockmode = 1;
 
  63 static int cdmode = 1;
 
  64 static int iuu_cardin;
 
  65 static int iuu_cardout;
 
  68 static void read_rxcmd_callback(struct urb *urb);
 
  71         spinlock_t lock;        /* store irq state */
 
  72         wait_queue_head_t delta_msr_wait;
 
  75         u8 termios_initialized;
 
  76         int tiostatus;          /* store IUART SIGNAL for tiocmget call */
 
  77         u8 reset;               /* if 1 reset is needed */
 
  78         int poll;               /* number of poll */
 
  79         u8 *writebuf;           /* buffer for writing to device */
 
  80         int writelen;           /* num of byte to write to device */
 
  81         u8 *buf;                /* used for initialize speed */
 
  82         u8 *dbgbuf;             /* debug buffer */
 
  87 static void iuu_free_buf(struct iuu_private *priv)
 
  91         kfree(priv->writebuf);
 
  94 static int iuu_alloc_buf(struct iuu_private *priv)
 
  96         priv->buf = kzalloc(256, GFP_KERNEL);
 
  97         priv->dbgbuf = kzalloc(256, GFP_KERNEL);
 
  98         priv->writebuf = kzalloc(256, GFP_KERNEL);
 
  99         if (!priv->buf || !priv->dbgbuf || !priv->writebuf) {
 
 101                 dbg("%s problem allocation buffer", __func__);
 
 104         dbg("%s - Privates buffers allocation success", __func__);
 
 108 static int iuu_startup(struct usb_serial *serial)
 
 110         struct iuu_private *priv;
 
 111         priv = kzalloc(sizeof(struct iuu_private), GFP_KERNEL);
 
 112         dbg("%s- priv allocation success", __func__);
 
 115         if (iuu_alloc_buf(priv)) {
 
 119         spin_lock_init(&priv->lock);
 
 120         init_waitqueue_head(&priv->delta_msr_wait);
 
 121         usb_set_serial_port_data(serial->port[0], priv);
 
 125 /* Shutdown function */
 
 126 static void iuu_shutdown(struct usb_serial *serial)
 
 128         struct usb_serial_port *port = serial->port[0];
 
 129         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 137                 dbg("%s - I will free all", __func__);
 
 138                 usb_set_serial_port_data(port, NULL);
 
 140                 dbg("%s - priv is not anymore in port structure", __func__);
 
 143                 dbg("%s priv is now kfree", __func__);
 
 147 static int iuu_tiocmset(struct tty_struct *tty, struct file *file,
 
 148                         unsigned int set, unsigned int clear)
 
 150         struct usb_serial_port *port = tty->driver_data;
 
 151         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 154         /* FIXME: locking on tiomstatus */
 
 155         dbg("%s (%d) msg : SET = 0x%04x, CLEAR = 0x%04x ", __func__,
 
 156             port->number, set, clear);
 
 158         spin_lock_irqsave(&priv->lock, flags);
 
 160                 priv->tiostatus = TIOCM_RTS;
 
 162         if (!(set & TIOCM_RTS) && priv->tiostatus == TIOCM_RTS) {
 
 163                 dbg("%s TIOCMSET RESET called !!!", __func__);
 
 166         spin_unlock_irqrestore(&priv->lock, flags);
 
 170 /* This is used to provide a carrier detect mechanism
 
 171  * When a card is present, the response is 0x00
 
 172  * When no card , the reader respond with TIOCM_CD
 
 173  * This is known as CD autodetect mechanism
 
 175 static int iuu_tiocmget(struct tty_struct *tty, struct file *file)
 
 177         struct usb_serial_port *port = tty->driver_data;
 
 178         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 182         spin_lock_irqsave(&priv->lock, flags);
 
 183         rc = priv->tiostatus;
 
 184         spin_unlock_irqrestore(&priv->lock, flags);
 
 189 static void iuu_rxcmd(struct urb *urb)
 
 191         struct usb_serial_port *port = urb->context;
 
 193         dbg("%s - enter", __func__);
 
 196                 dbg("%s - urb->status = %d", __func__, urb->status);
 
 202         memset(port->write_urb->transfer_buffer, IUU_UART_RX, 1);
 
 203         usb_fill_bulk_urb(port->write_urb, port->serial->dev,
 
 204                           usb_sndbulkpipe(port->serial->dev,
 
 205                                           port->bulk_out_endpointAddress),
 
 206                           port->write_urb->transfer_buffer, 1,
 
 207                           read_rxcmd_callback, port);
 
 208         result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
 
 211 static int iuu_reset(struct usb_serial_port *port, u8 wt)
 
 213         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 215         char *buf_ptr = port->write_urb->transfer_buffer;
 
 216         dbg("%s - enter", __func__);
 
 218         /* Prepare the reset sequence */
 
 220         *buf_ptr++ = IUU_RST_SET;
 
 221         *buf_ptr++ = IUU_DELAY_MS;
 
 223         *buf_ptr = IUU_RST_CLEAR;
 
 225         /* send the sequence */
 
 227         usb_fill_bulk_urb(port->write_urb,
 
 229                           usb_sndbulkpipe(port->serial->dev,
 
 230                                           port->bulk_out_endpointAddress),
 
 231                           port->write_urb->transfer_buffer, 4, iuu_rxcmd, port);
 
 232         result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
 
 243 static void iuu_update_status_callback(struct urb *urb)
 
 245         struct usb_serial_port *port = urb->context;
 
 246         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 248         dbg("%s - enter", __func__);
 
 251                 dbg("%s - urb->status = %d", __func__, urb->status);
 
 256         st = urb->transfer_buffer;
 
 257         dbg("%s - enter", __func__);
 
 258         if (urb->actual_length == 1) {
 
 261                         priv->tiostatus = iuu_cardout;
 
 264                         priv->tiostatus = iuu_cardin;
 
 267                         priv->tiostatus = iuu_cardin;
 
 273 static void iuu_status_callback(struct urb *urb)
 
 275         struct usb_serial_port *port = urb->context;
 
 277         dbg("%s - enter", __func__);
 
 279         dbg("%s - urb->status = %d", __func__, urb->status);
 
 280         usb_fill_bulk_urb(port->read_urb, port->serial->dev,
 
 281                           usb_rcvbulkpipe(port->serial->dev,
 
 282                                           port->bulk_in_endpointAddress),
 
 283                           port->read_urb->transfer_buffer, 256,
 
 284                           iuu_update_status_callback, port);
 
 285         result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
 
 288 static int iuu_status(struct usb_serial_port *port)
 
 292         dbg("%s - enter", __func__);
 
 294         memset(port->write_urb->transfer_buffer, IUU_GET_STATE_REGISTER, 1);
 
 295         usb_fill_bulk_urb(port->write_urb, port->serial->dev,
 
 296                           usb_sndbulkpipe(port->serial->dev,
 
 297                                           port->bulk_out_endpointAddress),
 
 298                           port->write_urb->transfer_buffer, 1,
 
 299                           iuu_status_callback, port);
 
 300         result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
 
 305 static int bulk_immediate(struct usb_serial_port *port, u8 *buf, u8 count)
 
 308         struct usb_serial *serial = port->serial;
 
 311         dbg("%s - enter", __func__);
 
 313         /* send the data out the bulk port */
 
 316             usb_bulk_msg(serial->dev,
 
 317                          usb_sndbulkpipe(serial->dev,
 
 318                                          port->bulk_out_endpointAddress), buf,
 
 319                          count, &actual, HZ * 1);
 
 321         if (status != IUU_OPERATION_OK)
 
 322                 dbg("%s - error = %2x", __func__, status);
 
 324                 dbg("%s - write OK !", __func__);
 
 328 static int read_immediate(struct usb_serial_port *port, u8 *buf, u8 count)
 
 331         struct usb_serial *serial = port->serial;
 
 334         dbg("%s - enter", __func__);
 
 336         /* send the data out the bulk port */
 
 339             usb_bulk_msg(serial->dev,
 
 340                          usb_rcvbulkpipe(serial->dev,
 
 341                                          port->bulk_in_endpointAddress), buf,
 
 342                          count, &actual, HZ * 1);
 
 344         if (status != IUU_OPERATION_OK)
 
 345                 dbg("%s - error = %2x", __func__, status);
 
 347                 dbg("%s - read OK !", __func__);
 
 351 static int iuu_led(struct usb_serial_port *port, unsigned int R,
 
 352                    unsigned int G, unsigned int B, u8 f)
 
 356         buf = kmalloc(8, GFP_KERNEL);
 
 360         dbg("%s - enter", __func__);
 
 362         buf[0] = IUU_SET_LED;
 
 364         buf[2] = (R >> 8) & 0xFF;
 
 366         buf[4] = (G >> 8) & 0xFF;
 
 368         buf[6] = (B >> 8) & 0xFF;
 
 370         status = bulk_immediate(port, buf, 8);
 
 372         if (status != IUU_OPERATION_OK)
 
 373                 dbg("%s - led error status = %2x", __func__, status);
 
 375                 dbg("%s - led OK !", __func__);
 
 376         return IUU_OPERATION_OK;
 
 379 static void iuu_rgbf_fill_buffer(u8 *buf, u8 r1, u8 r2, u8 g1, u8 g2, u8 b1,
 
 382         *buf++ = IUU_SET_LED;
 
 392 static void iuu_led_activity_on(struct urb *urb)
 
 394         struct usb_serial_port *port = urb->context;
 
 396         char *buf_ptr = port->write_urb->transfer_buffer;
 
 397         *buf_ptr++ = IUU_SET_LED;
 
 399                 get_random_bytes(buf_ptr, 6);
 
 402                 iuu_rgbf_fill_buffer(buf_ptr, 255, 255, 0, 0, 0, 0, 255);
 
 405         usb_fill_bulk_urb(port->write_urb, port->serial->dev,
 
 406                           usb_sndbulkpipe(port->serial->dev,
 
 407                                           port->bulk_out_endpointAddress),
 
 408                           port->write_urb->transfer_buffer, 8 ,
 
 410         result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
 
 413 static void iuu_led_activity_off(struct urb *urb)
 
 415         struct usb_serial_port *port = urb->context;
 
 417         char *buf_ptr = port->write_urb->transfer_buffer;
 
 422                 *buf_ptr++ = IUU_SET_LED;
 
 423                 iuu_rgbf_fill_buffer(buf_ptr, 0, 0, 255, 255, 0, 0, 255);
 
 425         usb_fill_bulk_urb(port->write_urb, port->serial->dev,
 
 426                           usb_sndbulkpipe(port->serial->dev,
 
 427                                           port->bulk_out_endpointAddress),
 
 428                           port->write_urb->transfer_buffer, 8 ,
 
 430         result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
 
 435 static int iuu_clk(struct usb_serial_port *port, int dwFrq)
 
 438         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 441         u8 DIV = 0;             /* 8bit */
 
 442         u8 XDRV = 0;            /* 8bit */
 
 443         u8 PUMP = 0;            /* 3bit */
 
 444         u8 PBmsb = 0;           /* 2bit */
 
 445         u8 PBlsb = 0;           /* 8bit */
 
 446         u8 PO = 0;              /* 1bit */
 
 451         int frq = (int)dwFrq;
 
 453         dbg("%s - enter", __func__);
 
 456                 priv->buf[Count++] = IUU_UART_WRITE_I2C;
 
 457                 priv->buf[Count++] = FrqGenAdr << 1;
 
 458                 priv->buf[Count++] = 0x09;
 
 459                 priv->buf[Count++] = 0x00;
 
 461                 status = bulk_immediate(port, (u8 *) priv->buf, Count);
 
 463                         dbg("%s - write error ", __func__);
 
 466         } else if (frq == 3579000) {
 
 471         } else if (frq == 3680000) {
 
 476         } else if (frq == 6000000) {
 
 482                 unsigned int result = 0;
 
 483                 unsigned int tmp = 0;
 
 488                 unsigned int lP = 2055;
 
 489                 unsigned int lDiv = 4;
 
 491                 for (lQ = 2; lQ <= 47 && !found; lQ++)
 
 492                         for (lP = 2055; lP >= 8 && !found; lP--)
 
 493                                 for (lDiv = 4; lDiv <= 127 && !found; lDiv++) {
 
 494                                         tmp = (12000000 / lDiv) * (lP / lQ);
 
 495                                         if (abs((int)(tmp - frq)) <
 
 496                                             abs((int)(frq - result))) {
 
 497                                                 check2 = (12000000 / lQ);
 
 500                                                 check = (12000000 / lQ) * lP;
 
 501                                                 if (check > 400000000)
 
 503                                                 if (check < 100000000)
 
 505                                                 if (lDiv < 4 || lDiv > 127)
 
 516         P2 = ((P - PO) / 2) - 4;
 
 519         PBmsb = (P2 >> 8 & 0x03);
 
 521         PO = (P >> 10) & 0x01;
 
 524         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /* 0x4C */
 
 525         priv->buf[Count++] = FrqGenAdr << 1;
 
 526         priv->buf[Count++] = 0x09;
 
 527         priv->buf[Count++] = 0x20;      /* Adr = 0x09 */
 
 528         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /* 0x4C */
 
 529         priv->buf[Count++] = FrqGenAdr << 1;
 
 530         priv->buf[Count++] = 0x0C;
 
 531         priv->buf[Count++] = DIV;       /* Adr = 0x0C */
 
 532         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /* 0x4C */
 
 533         priv->buf[Count++] = FrqGenAdr << 1;
 
 534         priv->buf[Count++] = 0x12;
 
 535         priv->buf[Count++] = XDRV;      /* Adr = 0x12 */
 
 536         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 537         priv->buf[Count++] = FrqGenAdr << 1;
 
 538         priv->buf[Count++] = 0x13;
 
 539         priv->buf[Count++] = 0x6B;      /* Adr = 0x13 */
 
 540         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 541         priv->buf[Count++] = FrqGenAdr << 1;
 
 542         priv->buf[Count++] = 0x40;
 
 543         priv->buf[Count++] = (0xC0 | ((PUMP & 0x07) << 2)) |
 
 544                              (PBmsb & 0x03);    /* Adr = 0x40 */
 
 545         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 546         priv->buf[Count++] = FrqGenAdr << 1;
 
 547         priv->buf[Count++] = 0x41;
 
 548         priv->buf[Count++] = PBlsb;     /* Adr = 0x41 */
 
 549         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 550         priv->buf[Count++] = FrqGenAdr << 1;
 
 551         priv->buf[Count++] = 0x42;
 
 552         priv->buf[Count++] = Q | (((PO & 0x01) << 7));  /* Adr = 0x42 */
 
 553         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 554         priv->buf[Count++] = FrqGenAdr << 1;
 
 555         priv->buf[Count++] = 0x44;
 
 556         priv->buf[Count++] = (char)0xFF;        /* Adr = 0x44 */
 
 557         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 558         priv->buf[Count++] = FrqGenAdr << 1;
 
 559         priv->buf[Count++] = 0x45;
 
 560         priv->buf[Count++] = (char)0xFE;        /* Adr = 0x45 */
 
 561         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 562         priv->buf[Count++] = FrqGenAdr << 1;
 
 563         priv->buf[Count++] = 0x46;
 
 564         priv->buf[Count++] = 0x7F;      /* Adr = 0x46 */
 
 565         priv->buf[Count++] = IUU_UART_WRITE_I2C;        /*  0x4C */
 
 566         priv->buf[Count++] = FrqGenAdr << 1;
 
 567         priv->buf[Count++] = 0x47;
 
 568         priv->buf[Count++] = (char)0x84;        /* Adr = 0x47 */
 
 570         status = bulk_immediate(port, (u8 *) priv->buf, Count);
 
 571         if (status != IUU_OPERATION_OK)
 
 572                 dbg("%s - write error ", __func__);
 
 576 static int iuu_uart_flush(struct usb_serial_port *port)
 
 580         u8 rxcmd = IUU_UART_RX;
 
 581         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 583         dbg("%s - enter", __func__);
 
 585         if (iuu_led(port, 0xF000, 0, 0, 0xFF) < 0)
 
 588         for (i = 0; i < 2; i++) {
 
 589                 status = bulk_immediate(port, &rxcmd, 1);
 
 590                 if (status != IUU_OPERATION_OK) {
 
 591                         dbg("%s - uart_flush_write error", __func__);
 
 595                 status = read_immediate(port, &priv->len, 1);
 
 596                 if (status != IUU_OPERATION_OK) {
 
 597                         dbg("%s - uart_flush_read error", __func__);
 
 602                         dbg("%s - uart_flush datalen is : %i ", __func__,
 
 604                         status = read_immediate(port, priv->buf, priv->len);
 
 605                         if (status != IUU_OPERATION_OK) {
 
 606                                 dbg("%s - uart_flush_read error", __func__);
 
 611         dbg("%s - uart_flush_read OK!", __func__);
 
 612         iuu_led(port, 0, 0xF000, 0, 0xFF);
 
 616 static void read_buf_callback(struct urb *urb)
 
 618         struct usb_serial_port *port = urb->context;
 
 619         unsigned char *data = urb->transfer_buffer;
 
 620         struct tty_struct *tty;
 
 621         dbg("%s - urb->status = %d", __func__, urb->status);
 
 624                 dbg("%s - urb->status = %d", __func__, urb->status);
 
 625                 if (urb->status == -EPROTO) {
 
 626                         /* reschedule needed */
 
 631         dbg("%s - %i chars to write", __func__, urb->actual_length);
 
 632         tty = tty_port_tty_get(&port->port);
 
 634                 dbg("%s - data is NULL !!!", __func__);
 
 635         if (tty && urb->actual_length && data) {
 
 636                 tty_insert_flip_string(tty, data, urb->actual_length);
 
 637                 tty_flip_buffer_push(tty);
 
 640         iuu_led_activity_on(urb);
 
 643 static int iuu_bulk_write(struct usb_serial_port *port)
 
 645         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 649         char *buf_ptr = port->write_urb->transfer_buffer;
 
 650         dbg("%s - enter", __func__);
 
 652         *buf_ptr++ = IUU_UART_ESC;
 
 653         *buf_ptr++ = IUU_UART_TX;
 
 654         *buf_ptr++ = priv->writelen;
 
 656         memcpy(buf_ptr, priv->writebuf,
 
 659                 for (i = 0; i < priv->writelen; i++)
 
 660                         sprintf(priv->dbgbuf + i*2 ,
 
 661                                 "%02X", priv->writebuf[i]);
 
 662                 priv->dbgbuf[priv->writelen+i*2] = 0;
 
 663                 dbg("%s - writing %i chars : %s", __func__,
 
 664                     priv->writelen, priv->dbgbuf);
 
 666         usb_fill_bulk_urb(port->write_urb, port->serial->dev,
 
 667                           usb_sndbulkpipe(port->serial->dev,
 
 668                                           port->bulk_out_endpointAddress),
 
 669                           port->write_urb->transfer_buffer, priv->writelen + 3,
 
 671         result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
 
 672         spin_lock_irqsave(&priv->lock, flags);
 
 674         spin_unlock_irqrestore(&priv->lock, flags);
 
 675         usb_serial_port_softint(port);
 
 679 static int iuu_read_buf(struct usb_serial_port *port, int len)
 
 682         dbg("%s - enter", __func__);
 
 684         usb_fill_bulk_urb(port->read_urb, port->serial->dev,
 
 685                           usb_rcvbulkpipe(port->serial->dev,
 
 686                                           port->bulk_in_endpointAddress),
 
 687                           port->read_urb->transfer_buffer, len,
 
 688                           read_buf_callback, port);
 
 689         result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
 
 693 static void iuu_uart_read_callback(struct urb *urb)
 
 695         struct usb_serial_port *port = urb->context;
 
 696         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 701         unsigned char *data = urb->transfer_buffer;
 
 704         dbg("%s - enter", __func__);
 
 707                 dbg("%s - urb->status = %d", __func__, urb->status);
 
 712                 dbg("%s - data is NULL !!!", __func__);
 
 714         if (urb->actual_length == 1  && data != NULL)
 
 717         if (urb->actual_length > 1) {
 
 718                 dbg("%s - urb->actual_length = %i", __func__,
 
 723         /* if len > 0 call readbuf */
 
 725         if (len > 0 && error == 0) {
 
 726                 dbg("%s - call read buf - len to read is %i ",
 
 728                 status = iuu_read_buf(port, len);
 
 731         /* need to update status  ? */
 
 732         if (priv->poll > 99) {
 
 733                 status = iuu_status(port);
 
 738         /* reset waiting ? */
 
 740         if (priv->reset == 1) {
 
 741                 status = iuu_reset(port, 0xC);
 
 744         /* Writebuf is waiting */
 
 745         spin_lock_irqsave(&priv->lock, flags);
 
 746         if (priv->writelen > 0) {
 
 747                 spin_unlock_irqrestore(&priv->lock, flags);
 
 748                 status = iuu_bulk_write(port);
 
 751         spin_unlock_irqrestore(&priv->lock, flags);
 
 752         /* if nothing to write call again rxcmd */
 
 753         dbg("%s - rxcmd recall", __func__);
 
 754         iuu_led_activity_off(urb);
 
 757 static int iuu_uart_write(struct tty_struct *tty, struct usb_serial_port *port,
 
 758                           const u8 *buf, int count)
 
 760         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 762         dbg("%s - enter", __func__);
 
 767         spin_lock_irqsave(&priv->lock, flags);
 
 768         if (priv->writelen > 0) {
 
 769                 /* buffer already filled but not commited */
 
 770                 spin_unlock_irqrestore(&priv->lock, flags);
 
 773         /* fill the buffer */
 
 774         memcpy(priv->writebuf, buf, count);
 
 775         priv->writelen = count;
 
 776         spin_unlock_irqrestore(&priv->lock, flags);
 
 781 static void read_rxcmd_callback(struct urb *urb)
 
 783         struct usb_serial_port *port = urb->context;
 
 785         dbg("%s - enter", __func__);
 
 787         dbg("%s - urb->status = %d", __func__, urb->status);
 
 790                 dbg("%s - urb->status = %d", __func__, urb->status);
 
 795         usb_fill_bulk_urb(port->read_urb, port->serial->dev,
 
 796                           usb_rcvbulkpipe(port->serial->dev,
 
 797                                           port->bulk_in_endpointAddress),
 
 798                           port->read_urb->transfer_buffer, 256,
 
 799                           iuu_uart_read_callback, port);
 
 800         result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
 
 801         dbg("%s - submit result = %d", __func__, result);
 
 805 static int iuu_uart_on(struct usb_serial_port *port)
 
 810         buf = kmalloc(sizeof(u8) * 4, GFP_KERNEL);
 
 815         buf[0] = IUU_UART_ENABLE;
 
 816         buf[1] = (u8) ((IUU_BAUD_9600 >> 8) & 0x00FF);
 
 817         buf[2] = (u8) (0x00FF & IUU_BAUD_9600);
 
 818         buf[3] = (u8) (0x0F0 & IUU_TWO_STOP_BITS) | (0x07 & IUU_PARITY_EVEN);
 
 820         status = bulk_immediate(port, buf, 4);
 
 821         if (status != IUU_OPERATION_OK) {
 
 822                 dbg("%s - uart_on error", __func__);
 
 823                 goto uart_enable_failed;
 
 825         /*  iuu_reset() the card after iuu_uart_on() */
 
 826         status = iuu_uart_flush(port);
 
 827         if (status != IUU_OPERATION_OK)
 
 828                 dbg("%s - uart_flush error", __func__);
 
 834 /*  Diables the IUU UART (a.k.a. the Phoenix voiderface) */
 
 835 static int iuu_uart_off(struct usb_serial_port *port)
 
 839         buf = kmalloc(1, GFP_KERNEL);
 
 842         buf[0] = IUU_UART_DISABLE;
 
 844         status = bulk_immediate(port, buf, 1);
 
 845         if (status != IUU_OPERATION_OK)
 
 846                 dbg("%s - uart_off error", __func__);
 
 852 static int iuu_uart_baud(struct usb_serial_port *port, u32 baud,
 
 853                          u32 *actual, u8 parity)
 
 860         unsigned int T1FrekvensHZ = 0;
 
 862         dataout = kmalloc(sizeof(u8) * 5, GFP_KERNEL);
 
 867         if (baud < 1200 || baud > 230400) {
 
 869                 return IUU_INVALID_PARAMETER;
 
 873                 T1FrekvensHZ = 500000;
 
 878                 T1FrekvensHZ = 2000000;
 
 883                 T1FrekvensHZ = 6000000;
 
 888                 T1FrekvensHZ = 24000000;
 
 891         T1reload = 256 - (u8) (T1FrekvensHZ / (baud * 2));
 
 893         /*  magic number here:  ENTER_FIRMWARE_UPDATE; */
 
 894         dataout[DataCount++] = IUU_UART_ESC;
 
 895         /*  magic number here:  CHANGE_BAUD; */
 
 896         dataout[DataCount++] = IUU_UART_CHANGE;
 
 897         dataout[DataCount++] = T1Frekvens;
 
 898         dataout[DataCount++] = T1reload;
 
 900         *actual = (T1FrekvensHZ / (256 - T1reload)) / 2;
 
 902         switch (parity & 0x0F) {
 
 903         case IUU_PARITY_NONE:
 
 904                 dataout[DataCount++] = 0x00;
 
 906         case IUU_PARITY_EVEN:
 
 907                 dataout[DataCount++] = 0x01;
 
 910                 dataout[DataCount++] = 0x02;
 
 912         case IUU_PARITY_MARK:
 
 913                 dataout[DataCount++] = 0x03;
 
 915         case IUU_PARITY_SPACE:
 
 916                 dataout[DataCount++] = 0x04;
 
 920                 return IUU_INVALID_PARAMETER;
 
 924         switch (parity & 0xF0) {
 
 925         case IUU_ONE_STOP_BIT:
 
 926                 dataout[DataCount - 1] |= IUU_ONE_STOP_BIT;
 
 929         case IUU_TWO_STOP_BITS:
 
 930                 dataout[DataCount - 1] |= IUU_TWO_STOP_BITS;
 
 934                 return IUU_INVALID_PARAMETER;
 
 938         status = bulk_immediate(port, dataout, DataCount);
 
 939         if (status != IUU_OPERATION_OK)
 
 940                 dbg("%s - uart_off error", __func__);
 
 945 static int set_control_lines(struct usb_device *dev, u8 value)
 
 950 static void iuu_close(struct tty_struct *tty,
 
 951                         struct usb_serial_port *port, struct file *filp)
 
 953         /* iuu_led (port,255,0,0,0); */
 
 954         struct usb_serial *serial;
 
 955         struct iuu_private *priv = usb_get_serial_port_data(port);
 
 957         unsigned int c_cflag;
 
 959         serial = port->serial;
 
 963         dbg("%s - port %d", __func__, port->number);
 
 968                         c_cflag = tty->termios->c_cflag;
 
 969                         if (c_cflag & HUPCL) {
 
 970                                 /* drop DTR and RTS */
 
 971                                 priv = usb_get_serial_port_data(port);
 
 972                                 spin_lock_irqsave(&priv->lock, flags);
 
 973                                 priv->line_control = 0;
 
 974                                 spin_unlock_irqrestore(&priv->lock, flags);
 
 975                                 set_control_lines(port->serial->dev, 0);
 
 979                 /* shutdown our urbs */
 
 980                 dbg("%s - shutting down urbs", __func__);
 
 981                 usb_kill_urb(port->write_urb);
 
 982                 usb_kill_urb(port->read_urb);
 
 983                 usb_kill_urb(port->interrupt_in_urb);
 
 985                 /* wait one second to free all buffers */
 
 986                 iuu_led(port, 0, 0, 0xF000, 0xFF);
 
 988                 usb_reset_device(port->serial->dev);
 
 992 static int iuu_open(struct tty_struct *tty,
 
 993                         struct usb_serial_port *port, struct file *filp)
 
 995         struct usb_serial *serial = port->serial;
 
1000         struct iuu_private *priv = usb_get_serial_port_data(port);
 
1002         dbg("%s -  port %d", __func__, port->number);
 
1003         usb_clear_halt(serial->dev, port->write_urb->pipe);
 
1004         usb_clear_halt(serial->dev, port->read_urb->pipe);
 
1006         buf = kmalloc(10, GFP_KERNEL);
 
1010         /* fixup the endpoint buffer size */
 
1011         kfree(port->bulk_out_buffer);
 
1012         port->bulk_out_buffer = kmalloc(512, GFP_KERNEL);
 
1013         port->bulk_out_size = 512;
 
1014         kfree(port->bulk_in_buffer);
 
1015         port->bulk_in_buffer = kmalloc(512, GFP_KERNEL);
 
1016         port->bulk_in_size = 512;
 
1018         if (!port->bulk_out_buffer || !port->bulk_in_buffer) {
 
1019                 kfree(port->bulk_out_buffer);
 
1020                 kfree(port->bulk_in_buffer);
 
1025         usb_fill_bulk_urb(port->write_urb, port->serial->dev,
 
1026                           usb_sndbulkpipe(port->serial->dev,
 
1027                                           port->bulk_out_endpointAddress),
 
1028                           port->bulk_out_buffer, 512,
 
1032         usb_fill_bulk_urb(port->read_urb, port->serial->dev,
 
1033                           usb_rcvbulkpipe(port->serial->dev,
 
1034                                           port->bulk_in_endpointAddress),
 
1035                           port->bulk_in_buffer, 512,
 
1038         /* set the termios structure */
 
1039         spin_lock_irqsave(&priv->lock, flags);
 
1040         if (tty && !priv->termios_initialized) {
 
1041                 *(tty->termios) = tty_std_termios;
 
1042                 tty->termios->c_cflag = CLOCAL | CREAD | CS8 | B9600
 
1043                                         | TIOCM_CTS | CSTOPB | PARENB;
 
1044                 tty->termios->c_ispeed = 9600;
 
1045                 tty->termios->c_ospeed = 9600;
 
1046                 tty->termios->c_lflag = 0;
 
1047                 tty->termios->c_oflag = 0;
 
1048                 tty->termios->c_iflag = 0;
 
1049                 priv->termios_initialized = 1;
 
1050                 tty->low_latency = 1;
 
1053         spin_unlock_irqrestore(&priv->lock, flags);
 
1055         /* initialize writebuf */
 
1056 #define FISH(a, b, c, d) do { \
 
1057         result = usb_control_msg(port->serial->dev,     \
 
1058                                 usb_rcvctrlpipe(port->serial->dev, 0),  \
 
1059                                 b, a, c, d, buf, 1, 1000); \
 
1060         dbg("0x%x:0x%x:0x%x:0x%x  %d - %x", a, b, c, d, result, \
 
1061                                 buf[0]); } while (0);
 
1063 #define SOUP(a, b, c, d)  do { \
 
1064         result = usb_control_msg(port->serial->dev,     \
 
1065                                 usb_sndctrlpipe(port->serial->dev, 0),  \
 
1066                                 b, a, c, d, NULL, 0, 1000); \
 
1067         dbg("0x%x:0x%x:0x%x:0x%x  %d", a, b, c, d, result); } while (0)
 
1069         /*  This is not UART related but IUU USB driver related or something */
 
1070         /*  like that. Basically no IUU will accept any commands from the USB */
 
1071         /*  host unless it has received the following message */
 
1072         /* sprintf(buf ,"%c%c%c%c",0x03,0x02,0x02,0x0); */
 
1074         SOUP(0x03, 0x02, 0x02, 0x0);
 
1076         iuu_led(port, 0xF000, 0xF000, 0, 0xFF);
 
1080         switch (clockmode) {
 
1081         case 2:         /*  3.680 Mhz */
 
1082                 iuu_clk(port, IUU_CLK_3680000 * boost / 100);
 
1084                     iuu_uart_baud(port, 9600 * boost / 100, &actual,
 
1087         case 3:         /*  6.00 Mhz */
 
1088                 iuu_clk(port, IUU_CLK_6000000 * boost / 100);
 
1090                     iuu_uart_baud(port, 16457 * boost / 100, &actual,
 
1093         default:                /*  3.579 Mhz */
 
1094                 iuu_clk(port, IUU_CLK_3579000 * boost / 100);
 
1096                     iuu_uart_baud(port, 9600 * boost / 100, &actual,
 
1100         /* set the cardin cardout signals */
 
1107                 iuu_cardin = TIOCM_CD;
 
1112                 iuu_cardout = TIOCM_CD;
 
1115                 iuu_cardin = TIOCM_DSR;
 
1120                 iuu_cardout = TIOCM_DSR;
 
1123                 iuu_cardin = TIOCM_CTS;
 
1128                 iuu_cardout = TIOCM_CTS;
 
1131                 iuu_cardin = TIOCM_RNG;
 
1136                 iuu_cardout = TIOCM_RNG;
 
1139         iuu_uart_flush(port);
 
1141         dbg("%s - initialization done", __func__);
 
1143         memset(port->write_urb->transfer_buffer, IUU_UART_RX, 1);
 
1144         usb_fill_bulk_urb(port->write_urb, port->serial->dev,
 
1145                           usb_sndbulkpipe(port->serial->dev,
 
1146                                           port->bulk_out_endpointAddress),
 
1147                           port->write_urb->transfer_buffer, 1,
 
1148                           read_rxcmd_callback, port);
 
1149         result = usb_submit_urb(port->write_urb, GFP_KERNEL);
 
1152                 dev_err(&port->dev, "%s - failed submitting read urb,"
 
1153                         " error %d\n", __func__, result);
 
1154                 iuu_close(tty, port, NULL);
 
1157                 dbg("%s - rxcmd OK", __func__);
 
1162 static struct usb_serial_driver iuu_device = {
 
1164                    .owner = THIS_MODULE,
 
1165                    .name = "iuu_phoenix",
 
1167         .id_table = id_table,
 
1171         .write = iuu_uart_write,
 
1172         .read_bulk_callback = iuu_uart_read_callback,
 
1173         .tiocmget = iuu_tiocmget,
 
1174         .tiocmset = iuu_tiocmset,
 
1175         .attach = iuu_startup,
 
1176         .shutdown = iuu_shutdown,
 
1179 static int __init iuu_init(void)
 
1182         retval = usb_serial_register(&iuu_device);
 
1184                 goto failed_usb_serial_register;
 
1185         retval = usb_register(&iuu_driver);
 
1187                 goto failed_usb_register;
 
1188         printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
 
1191 failed_usb_register:
 
1192         usb_serial_deregister(&iuu_device);
 
1193 failed_usb_serial_register:
 
1197 static void __exit iuu_exit(void)
 
1199         usb_deregister(&iuu_driver);
 
1200         usb_serial_deregister(&iuu_device);
 
1203 module_init(iuu_init);
 
1204 module_exit(iuu_exit);
 
1206 MODULE_AUTHOR("Alain Degreffe eczema@ecze.com");
 
1208 MODULE_DESCRIPTION(DRIVER_DESC);
 
1209 MODULE_LICENSE("GPL");
 
1211 MODULE_VERSION(DRIVER_VERSION);
 
1212 module_param(debug, bool, S_IRUGO | S_IWUSR);
 
1213 MODULE_PARM_DESC(debug, "Debug enabled or not");
 
1215 module_param(xmas, bool, S_IRUGO | S_IWUSR);
 
1216 MODULE_PARM_DESC(xmas, "xmas color enabled or not");
 
1218 module_param(boost, int, S_IRUGO | S_IWUSR);
 
1219 MODULE_PARM_DESC(boost, "overclock boost percent 100 to 500");
 
1221 module_param(clockmode, int, S_IRUGO | S_IWUSR);
 
1222 MODULE_PARM_DESC(clockmode, "1=3Mhz579,2=3Mhz680,3=6Mhz");
 
1224 module_param(cdmode, int, S_IRUGO | S_IWUSR);
 
1225 MODULE_PARM_DESC(cdmode, "Card detect mode 0=none, 1=CD, 2=!CD, 3=DSR, "
 
1226                  "4=!DSR, 5=CTS, 6=!CTS, 7=RING, 8=!RING");