blob: 344b4eea4bd59c4da0590f538323f37b5ed74074 [file] [log] [blame]
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001/*
2 * Infinity Unlimited USB Phoenix driver
3 *
James Courtier-Dutton89b54392010-05-21 11:53:25 +01004 * Copyright (C) 2010 James Courtier-Dutton (James@superbug.co.uk)
5
Alain Degreffe60a8fc02007-10-26 13:51:49 +02006 * Copyright (C) 2007 Alain Degreffe (eczema@ecze.com)
7 *
8 * Original code taken from iuutool (Copyright (C) 2006 Juan Carlos Borrás)
9 *
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.
14 *
15 * And tested with help of WB Electronics
16 *
17 */
18#include <linux/kernel.h>
19#include <linux/errno.h>
Alain Degreffe60a8fc02007-10-26 13:51:49 +020020#include <linux/slab.h>
21#include <linux/tty.h>
22#include <linux/tty_driver.h>
23#include <linux/tty_flip.h>
24#include <linux/serial.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/spinlock.h>
28#include <linux/uaccess.h>
29#include <linux/usb.h>
30#include <linux/usb/serial.h>
31#include "iuu_phoenix.h"
32#include <linux/random.h>
33
Alain Degreffe60a8fc02007-10-26 13:51:49 +020034#define DRIVER_DESC "Infinity USB Unlimited Phoenix driver"
35
Németh Márton7d40d7e2010-01-10 15:34:24 +010036static const struct usb_device_id id_table[] = {
Alain Degreffe60a8fc02007-10-26 13:51:49 +020037 {USB_DEVICE(IUU_USB_VENDOR_ID, IUU_USB_PRODUCT_ID)},
38 {} /* Terminating entry */
39};
40MODULE_DEVICE_TABLE(usb, id_table);
41
Alain Degreffe60a8fc02007-10-26 13:51:49 +020042/* turbo parameter */
43static int boost = 100;
44static int clockmode = 1;
45static int cdmode = 1;
46static int iuu_cardin;
47static int iuu_cardout;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103048static bool xmas;
Olivier Bornete55c6d02009-08-18 21:05:57 +020049static int vcc_default = 5;
Alain Degreffe60a8fc02007-10-26 13:51:49 +020050
Johan Hovold0978c942012-10-18 10:52:17 +020051static int iuu_create_sysfs_attrs(struct usb_serial_port *port);
52static int iuu_remove_sysfs_attrs(struct usb_serial_port *port);
Alain Degreffe60a8fc02007-10-26 13:51:49 +020053static void read_rxcmd_callback(struct urb *urb);
54
55struct iuu_private {
56 spinlock_t lock; /* store irq state */
Alain Degreffe60a8fc02007-10-26 13:51:49 +020057 u8 line_status;
Alain Degreffe60a8fc02007-10-26 13:51:49 +020058 int tiostatus; /* store IUART SIGNAL for tiocmget call */
59 u8 reset; /* if 1 reset is needed */
60 int poll; /* number of poll */
61 u8 *writebuf; /* buffer for writing to device */
62 int writelen; /* num of byte to write to device */
63 u8 *buf; /* used for initialize speed */
Alain Degreffe60a8fc02007-10-26 13:51:49 +020064 u8 len;
Olivier Bornet20eda942009-08-18 21:05:55 +020065 int vcc; /* vcc (either 3 or 5 V) */
James Courtier-Dutton89b54392010-05-21 11:53:25 +010066 u32 baud;
67 u32 boost;
68 u32 clk;
Alain Degreffe60a8fc02007-10-26 13:51:49 +020069};
70
Johan Hovold53636552012-10-17 13:34:59 +020071static int iuu_port_probe(struct usb_serial_port *port)
Alain Degreffe60a8fc02007-10-26 13:51:49 +020072{
73 struct iuu_private *priv;
Johan Hovold0978c942012-10-18 10:52:17 +020074 int ret;
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -070075
Alain Degreffe60a8fc02007-10-26 13:51:49 +020076 priv = kzalloc(sizeof(struct iuu_private), GFP_KERNEL);
Alain Degreffe60a8fc02007-10-26 13:51:49 +020077 if (!priv)
78 return -ENOMEM;
Johan Hovold53636552012-10-17 13:34:59 +020079
80 priv->buf = kzalloc(256, GFP_KERNEL);
81 if (!priv->buf) {
Alain Degreffe60a8fc02007-10-26 13:51:49 +020082 kfree(priv);
83 return -ENOMEM;
84 }
Johan Hovold53636552012-10-17 13:34:59 +020085
86 priv->writebuf = kzalloc(256, GFP_KERNEL);
87 if (!priv->writebuf) {
88 kfree(priv->buf);
89 kfree(priv);
90 return -ENOMEM;
91 }
92
Olivier Bornete55c6d02009-08-18 21:05:57 +020093 priv->vcc = vcc_default;
Alain Degreffe60a8fc02007-10-26 13:51:49 +020094 spin_lock_init(&priv->lock);
Johan Hovold53636552012-10-17 13:34:59 +020095
96 usb_set_serial_port_data(port, priv);
97
Johan Hovold0978c942012-10-18 10:52:17 +020098 ret = iuu_create_sysfs_attrs(port);
99 if (ret) {
100 kfree(priv->writebuf);
101 kfree(priv->buf);
102 kfree(priv);
103 return ret;
104 }
105
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200106 return 0;
107}
108
Johan Hovold53636552012-10-17 13:34:59 +0200109static int iuu_port_remove(struct usb_serial_port *port)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200110{
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200111 struct iuu_private *priv = usb_get_serial_port_data(port);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200112
Johan Hovold0978c942012-10-18 10:52:17 +0200113 iuu_remove_sysfs_attrs(port);
Johan Hovold53636552012-10-17 13:34:59 +0200114 kfree(priv->writebuf);
115 kfree(priv->buf);
116 kfree(priv);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200117
Johan Hovold53636552012-10-17 13:34:59 +0200118 return 0;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200119}
120
Alan Cox20b9d172011-02-14 16:26:50 +0000121static int iuu_tiocmset(struct tty_struct *tty,
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200122 unsigned int set, unsigned int clear)
123{
Alan Cox95da3102008-07-22 11:09:07 +0100124 struct usb_serial_port *port = tty->driver_data;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200125 struct iuu_private *priv = usb_get_serial_port_data(port);
Alan Cox7b1fc8b2008-02-20 21:39:25 +0000126 unsigned long flags;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200127
Alan Cox7b1fc8b2008-02-20 21:39:25 +0000128 /* FIXME: locking on tiomstatus */
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700129 dev_dbg(&port->dev, "%s msg : SET = 0x%04x, CLEAR = 0x%04x\n",
130 __func__, set, clear);
Alan Cox7b1fc8b2008-02-20 21:39:25 +0000131
132 spin_lock_irqsave(&priv->lock, flags);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200133
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100134 if ((set & TIOCM_RTS) && !(priv->tiostatus == TIOCM_RTS)) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700135 dev_dbg(&port->dev, "%s TIOCMSET RESET called !!!\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200136 priv->reset = 1;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200137 }
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100138 if (set & TIOCM_RTS)
139 priv->tiostatus = TIOCM_RTS;
140
Alan Cox7b1fc8b2008-02-20 21:39:25 +0000141 spin_unlock_irqrestore(&priv->lock, flags);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200142 return 0;
143}
144
145/* This is used to provide a carrier detect mechanism
146 * When a card is present, the response is 0x00
147 * When no card , the reader respond with TIOCM_CD
148 * This is known as CD autodetect mechanism
149 */
Alan Cox60b33c12011-02-14 16:26:14 +0000150static int iuu_tiocmget(struct tty_struct *tty)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200151{
Alan Cox95da3102008-07-22 11:09:07 +0100152 struct usb_serial_port *port = tty->driver_data;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200153 struct iuu_private *priv = usb_get_serial_port_data(port);
Alan Cox7b1fc8b2008-02-20 21:39:25 +0000154 unsigned long flags;
155 int rc;
156
157 spin_lock_irqsave(&priv->lock, flags);
158 rc = priv->tiostatus;
159 spin_unlock_irqrestore(&priv->lock, flags);
160
161 return rc;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200162}
163
164static void iuu_rxcmd(struct urb *urb)
165{
Ming Leicdc97792008-02-24 18:41:47 +0800166 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200167 int result;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800168 int status = urb->status;
169
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800170 if (status) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700171 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200172 /* error stop all */
173 return;
174 }
175
176
177 memset(port->write_urb->transfer_buffer, IUU_UART_RX, 1);
178 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
179 usb_sndbulkpipe(port->serial->dev,
180 port->bulk_out_endpointAddress),
181 port->write_urb->transfer_buffer, 1,
182 read_rxcmd_callback, port);
183 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
184}
185
186static int iuu_reset(struct usb_serial_port *port, u8 wt)
187{
188 struct iuu_private *priv = usb_get_serial_port_data(port);
189 int result;
190 char *buf_ptr = port->write_urb->transfer_buffer;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200191
192 /* Prepare the reset sequence */
193
194 *buf_ptr++ = IUU_RST_SET;
195 *buf_ptr++ = IUU_DELAY_MS;
196 *buf_ptr++ = wt;
197 *buf_ptr = IUU_RST_CLEAR;
198
199 /* send the sequence */
200
201 usb_fill_bulk_urb(port->write_urb,
202 port->serial->dev,
203 usb_sndbulkpipe(port->serial->dev,
204 port->bulk_out_endpointAddress),
205 port->write_urb->transfer_buffer, 4, iuu_rxcmd, port);
206 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
207 priv->reset = 0;
208 return result;
209}
210
211/* Status Function
212 * Return value is
213 * 0x00 = no card
214 * 0x01 = smartcard
215 * 0x02 = sim card
216 */
217static void iuu_update_status_callback(struct urb *urb)
218{
Ming Leicdc97792008-02-24 18:41:47 +0800219 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200220 struct iuu_private *priv = usb_get_serial_port_data(port);
221 u8 *st;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800222 int status = urb->status;
223
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800224 if (status) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700225 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200226 /* error stop all */
227 return;
228 }
229
230 st = urb->transfer_buffer;
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700231 dev_dbg(&port->dev, "%s - enter\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200232 if (urb->actual_length == 1) {
233 switch (st[0]) {
234 case 0x1:
235 priv->tiostatus = iuu_cardout;
236 break;
237 case 0x0:
238 priv->tiostatus = iuu_cardin;
239 break;
240 default:
241 priv->tiostatus = iuu_cardin;
242 }
243 }
244 iuu_rxcmd(urb);
245}
246
247static void iuu_status_callback(struct urb *urb)
248{
Ming Leicdc97792008-02-24 18:41:47 +0800249 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200250 int result;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800251 int status = urb->status;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200252
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700253 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200254 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
255 usb_rcvbulkpipe(port->serial->dev,
256 port->bulk_in_endpointAddress),
257 port->read_urb->transfer_buffer, 256,
258 iuu_update_status_callback, port);
259 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
260}
261
262static int iuu_status(struct usb_serial_port *port)
263{
264 int result;
265
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200266 memset(port->write_urb->transfer_buffer, IUU_GET_STATE_REGISTER, 1);
267 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
268 usb_sndbulkpipe(port->serial->dev,
269 port->bulk_out_endpointAddress),
270 port->write_urb->transfer_buffer, 1,
271 iuu_status_callback, port);
272 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
273 return result;
274
275}
276
277static int bulk_immediate(struct usb_serial_port *port, u8 *buf, u8 count)
278{
279 int status;
280 struct usb_serial *serial = port->serial;
281 int actual = 0;
282
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200283 /* send the data out the bulk port */
284
285 status =
286 usb_bulk_msg(serial->dev,
287 usb_sndbulkpipe(serial->dev,
288 port->bulk_out_endpointAddress), buf,
Johan Hovold6c13ff62013-05-27 14:44:42 +0200289 count, &actual, 1000);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200290
Alan Cox9e8e2d22008-07-22 11:12:59 +0100291 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700292 dev_dbg(&port->dev, "%s - error = %2x\n", __func__, status);
Alan Cox9e8e2d22008-07-22 11:12:59 +0100293 else
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700294 dev_dbg(&port->dev, "%s - write OK !\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200295 return status;
296}
297
298static int read_immediate(struct usb_serial_port *port, u8 *buf, u8 count)
299{
300 int status;
301 struct usb_serial *serial = port->serial;
302 int actual = 0;
303
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200304 /* send the data out the bulk port */
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200305 status =
306 usb_bulk_msg(serial->dev,
307 usb_rcvbulkpipe(serial->dev,
308 port->bulk_in_endpointAddress), buf,
Johan Hovold6c13ff62013-05-27 14:44:42 +0200309 count, &actual, 1000);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200310
Alan Cox9e8e2d22008-07-22 11:12:59 +0100311 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700312 dev_dbg(&port->dev, "%s - error = %2x\n", __func__, status);
Alan Cox9e8e2d22008-07-22 11:12:59 +0100313 else
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700314 dev_dbg(&port->dev, "%s - read OK !\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200315 return status;
316}
317
318static int iuu_led(struct usb_serial_port *port, unsigned int R,
319 unsigned int G, unsigned int B, u8 f)
320{
321 int status;
322 u8 *buf;
323 buf = kmalloc(8, GFP_KERNEL);
324 if (!buf)
325 return -ENOMEM;
326
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200327 buf[0] = IUU_SET_LED;
328 buf[1] = R & 0xFF;
329 buf[2] = (R >> 8) & 0xFF;
330 buf[3] = G & 0xFF;
331 buf[4] = (G >> 8) & 0xFF;
332 buf[5] = B & 0xFF;
333 buf[6] = (B >> 8) & 0xFF;
334 buf[7] = f;
335 status = bulk_immediate(port, buf, 8);
336 kfree(buf);
337 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700338 dev_dbg(&port->dev, "%s - led error status = %2x\n", __func__, status);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200339 else
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700340 dev_dbg(&port->dev, "%s - led OK !\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200341 return IUU_OPERATION_OK;
342}
343
344static void iuu_rgbf_fill_buffer(u8 *buf, u8 r1, u8 r2, u8 g1, u8 g2, u8 b1,
345 u8 b2, u8 freq)
346{
347 *buf++ = IUU_SET_LED;
348 *buf++ = r1;
349 *buf++ = r2;
350 *buf++ = g1;
351 *buf++ = g2;
352 *buf++ = b1;
353 *buf++ = b2;
354 *buf = freq;
355}
356
357static void iuu_led_activity_on(struct urb *urb)
358{
Ming Leicdc97792008-02-24 18:41:47 +0800359 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200360 int result;
361 char *buf_ptr = port->write_urb->transfer_buffer;
362 *buf_ptr++ = IUU_SET_LED;
Mathieu OTHACEHEce9d8562016-02-04 19:01:29 +0100363 if (xmas) {
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200364 get_random_bytes(buf_ptr, 6);
365 *(buf_ptr+7) = 1;
366 } else {
367 iuu_rgbf_fill_buffer(buf_ptr, 255, 255, 0, 0, 0, 0, 255);
368 }
369
370 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
371 usb_sndbulkpipe(port->serial->dev,
372 port->bulk_out_endpointAddress),
373 port->write_urb->transfer_buffer, 8 ,
374 iuu_rxcmd, port);
375 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
376}
377
378static void iuu_led_activity_off(struct urb *urb)
379{
Ming Leicdc97792008-02-24 18:41:47 +0800380 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200381 int result;
382 char *buf_ptr = port->write_urb->transfer_buffer;
Mathieu OTHACEHEce9d8562016-02-04 19:01:29 +0100383 if (xmas) {
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200384 iuu_rxcmd(urb);
385 return;
386 } else {
387 *buf_ptr++ = IUU_SET_LED;
388 iuu_rgbf_fill_buffer(buf_ptr, 0, 0, 255, 255, 0, 0, 255);
389 }
390 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
391 usb_sndbulkpipe(port->serial->dev,
392 port->bulk_out_endpointAddress),
393 port->write_urb->transfer_buffer, 8 ,
394 iuu_rxcmd, port);
395 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
396}
397
398
399
400static int iuu_clk(struct usb_serial_port *port, int dwFrq)
401{
402 int status;
403 struct iuu_private *priv = usb_get_serial_port_data(port);
404 int Count = 0;
405 u8 FrqGenAdr = 0x69;
406 u8 DIV = 0; /* 8bit */
407 u8 XDRV = 0; /* 8bit */
408 u8 PUMP = 0; /* 3bit */
409 u8 PBmsb = 0; /* 2bit */
410 u8 PBlsb = 0; /* 8bit */
411 u8 PO = 0; /* 1bit */
412 u8 Q = 0; /* 7bit */
413 /* 24bit = 3bytes */
414 unsigned int P = 0;
415 unsigned int P2 = 0;
416 int frq = (int)dwFrq;
417
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200418 if (frq == 0) {
419 priv->buf[Count++] = IUU_UART_WRITE_I2C;
420 priv->buf[Count++] = FrqGenAdr << 1;
421 priv->buf[Count++] = 0x09;
422 priv->buf[Count++] = 0x00;
423
424 status = bulk_immediate(port, (u8 *) priv->buf, Count);
425 if (status != 0) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700426 dev_dbg(&port->dev, "%s - write error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200427 return status;
428 }
429 } else if (frq == 3579000) {
430 DIV = 100;
431 P = 1193;
432 Q = 40;
433 XDRV = 0;
434 } else if (frq == 3680000) {
435 DIV = 105;
436 P = 161;
437 Q = 5;
438 XDRV = 0;
439 } else if (frq == 6000000) {
440 DIV = 66;
441 P = 66;
442 Q = 2;
443 XDRV = 0x28;
444 } else {
445 unsigned int result = 0;
446 unsigned int tmp = 0;
447 unsigned int check;
448 unsigned int check2;
449 char found = 0x00;
450 unsigned int lQ = 2;
451 unsigned int lP = 2055;
452 unsigned int lDiv = 4;
453
454 for (lQ = 2; lQ <= 47 && !found; lQ++)
455 for (lP = 2055; lP >= 8 && !found; lP--)
456 for (lDiv = 4; lDiv <= 127 && !found; lDiv++) {
457 tmp = (12000000 / lDiv) * (lP / lQ);
458 if (abs((int)(tmp - frq)) <
459 abs((int)(frq - result))) {
460 check2 = (12000000 / lQ);
461 if (check2 < 250000)
462 continue;
463 check = (12000000 / lQ) * lP;
464 if (check > 400000000)
465 continue;
466 if (check < 100000000)
467 continue;
468 if (lDiv < 4 || lDiv > 127)
469 continue;
470 result = tmp;
471 P = lP;
472 DIV = lDiv;
473 Q = lQ;
474 if (result == frq)
475 found = 0x01;
476 }
477 }
478 }
479 P2 = ((P - PO) / 2) - 4;
480 DIV = DIV;
481 PUMP = 0x04;
482 PBmsb = (P2 >> 8 & 0x03);
483 PBlsb = P2 & 0xFF;
484 PO = (P >> 10) & 0x01;
485 Q = Q - 2;
486
487 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
488 priv->buf[Count++] = FrqGenAdr << 1;
489 priv->buf[Count++] = 0x09;
490 priv->buf[Count++] = 0x20; /* Adr = 0x09 */
491 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
492 priv->buf[Count++] = FrqGenAdr << 1;
493 priv->buf[Count++] = 0x0C;
494 priv->buf[Count++] = DIV; /* Adr = 0x0C */
495 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
496 priv->buf[Count++] = FrqGenAdr << 1;
497 priv->buf[Count++] = 0x12;
498 priv->buf[Count++] = XDRV; /* Adr = 0x12 */
499 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
500 priv->buf[Count++] = FrqGenAdr << 1;
501 priv->buf[Count++] = 0x13;
502 priv->buf[Count++] = 0x6B; /* Adr = 0x13 */
503 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
504 priv->buf[Count++] = FrqGenAdr << 1;
505 priv->buf[Count++] = 0x40;
506 priv->buf[Count++] = (0xC0 | ((PUMP & 0x07) << 2)) |
507 (PBmsb & 0x03); /* Adr = 0x40 */
508 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
509 priv->buf[Count++] = FrqGenAdr << 1;
510 priv->buf[Count++] = 0x41;
511 priv->buf[Count++] = PBlsb; /* Adr = 0x41 */
512 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
513 priv->buf[Count++] = FrqGenAdr << 1;
514 priv->buf[Count++] = 0x42;
515 priv->buf[Count++] = Q | (((PO & 0x01) << 7)); /* Adr = 0x42 */
516 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
517 priv->buf[Count++] = FrqGenAdr << 1;
518 priv->buf[Count++] = 0x44;
519 priv->buf[Count++] = (char)0xFF; /* Adr = 0x44 */
520 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
521 priv->buf[Count++] = FrqGenAdr << 1;
522 priv->buf[Count++] = 0x45;
523 priv->buf[Count++] = (char)0xFE; /* Adr = 0x45 */
524 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
525 priv->buf[Count++] = FrqGenAdr << 1;
526 priv->buf[Count++] = 0x46;
527 priv->buf[Count++] = 0x7F; /* Adr = 0x46 */
528 priv->buf[Count++] = IUU_UART_WRITE_I2C; /* 0x4C */
529 priv->buf[Count++] = FrqGenAdr << 1;
530 priv->buf[Count++] = 0x47;
531 priv->buf[Count++] = (char)0x84; /* Adr = 0x47 */
532
533 status = bulk_immediate(port, (u8 *) priv->buf, Count);
534 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700535 dev_dbg(&port->dev, "%s - write error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200536 return status;
537}
538
539static int iuu_uart_flush(struct usb_serial_port *port)
540{
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700541 struct device *dev = &port->dev;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200542 int i;
543 int status;
544 u8 rxcmd = IUU_UART_RX;
545 struct iuu_private *priv = usb_get_serial_port_data(port);
546
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200547 if (iuu_led(port, 0xF000, 0, 0, 0xFF) < 0)
548 return -EIO;
549
550 for (i = 0; i < 2; i++) {
551 status = bulk_immediate(port, &rxcmd, 1);
552 if (status != IUU_OPERATION_OK) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700553 dev_dbg(dev, "%s - uart_flush_write error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200554 return status;
555 }
556
557 status = read_immediate(port, &priv->len, 1);
558 if (status != IUU_OPERATION_OK) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700559 dev_dbg(dev, "%s - uart_flush_read error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200560 return status;
561 }
562
563 if (priv->len > 0) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700564 dev_dbg(dev, "%s - uart_flush datalen is : %i\n", __func__, priv->len);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200565 status = read_immediate(port, priv->buf, priv->len);
566 if (status != IUU_OPERATION_OK) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700567 dev_dbg(dev, "%s - uart_flush_read error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200568 return status;
569 }
570 }
571 }
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700572 dev_dbg(dev, "%s - uart_flush_read OK!\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200573 iuu_led(port, 0, 0xF000, 0, 0xFF);
574 return status;
575}
576
577static void read_buf_callback(struct urb *urb)
578{
Ming Leicdc97792008-02-24 18:41:47 +0800579 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200580 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800581 int status = urb->status;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200582
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800583 if (status) {
584 if (status == -EPROTO) {
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200585 /* reschedule needed */
586 }
587 return;
588 }
589
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700590 dev_dbg(&port->dev, "%s - %i chars to write\n", __func__, urb->actual_length);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200591 if (data == NULL)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700592 dev_dbg(&port->dev, "%s - data is NULL !!!\n", __func__);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100593 if (urb->actual_length && data) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100594 tty_insert_flip_string(&port->port, data, urb->actual_length);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100595 tty_flip_buffer_push(&port->port);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200596 }
597 iuu_led_activity_on(urb);
598}
599
600static int iuu_bulk_write(struct usb_serial_port *port)
601{
602 struct iuu_private *priv = usb_get_serial_port_data(port);
Steven Rostedt85943032008-05-06 20:42:31 -0700603 unsigned long flags;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200604 int result;
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100605 int buf_len;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200606 char *buf_ptr = port->write_urb->transfer_buffer;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200607
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100608 spin_lock_irqsave(&priv->lock, flags);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200609 *buf_ptr++ = IUU_UART_ESC;
610 *buf_ptr++ = IUU_UART_TX;
611 *buf_ptr++ = priv->writelen;
612
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100613 memcpy(buf_ptr, priv->writebuf, priv->writelen);
614 buf_len = priv->writelen;
615 priv->writelen = 0;
616 spin_unlock_irqrestore(&priv->lock, flags);
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700617 dev_dbg(&port->dev, "%s - writing %i chars : %*ph\n", __func__,
618 buf_len, buf_len, buf_ptr);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200619 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
620 usb_sndbulkpipe(port->serial->dev,
621 port->bulk_out_endpointAddress),
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100622 port->write_urb->transfer_buffer, buf_len + 3,
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200623 iuu_rxcmd, port);
624 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200625 usb_serial_port_softint(port);
626 return result;
627}
628
629static int iuu_read_buf(struct usb_serial_port *port, int len)
630{
631 int result;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200632
633 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
634 usb_rcvbulkpipe(port->serial->dev,
635 port->bulk_in_endpointAddress),
636 port->read_urb->transfer_buffer, len,
637 read_buf_callback, port);
638 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
639 return result;
640}
641
642static void iuu_uart_read_callback(struct urb *urb)
643{
Ming Leicdc97792008-02-24 18:41:47 +0800644 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200645 struct iuu_private *priv = usb_get_serial_port_data(port);
Steven Rostedt85943032008-05-06 20:42:31 -0700646 unsigned long flags;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800647 int status = urb->status;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200648 int error = 0;
649 int len = 0;
650 unsigned char *data = urb->transfer_buffer;
651 priv->poll++;
652
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800653 if (status) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700654 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200655 /* error stop all */
656 return;
657 }
658 if (data == NULL)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700659 dev_dbg(&port->dev, "%s - data is NULL !!!\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200660
661 if (urb->actual_length == 1 && data != NULL)
662 len = (int) data[0];
663
664 if (urb->actual_length > 1) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700665 dev_dbg(&port->dev, "%s - urb->actual_length = %i\n", __func__,
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200666 urb->actual_length);
667 error = 1;
668 return;
669 }
670 /* if len > 0 call readbuf */
671
672 if (len > 0 && error == 0) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700673 dev_dbg(&port->dev, "%s - call read buf - len to read is %i\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800674 __func__, len);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200675 status = iuu_read_buf(port, len);
676 return;
677 }
678 /* need to update status ? */
679 if (priv->poll > 99) {
680 status = iuu_status(port);
681 priv->poll = 0;
682 return;
683 }
684
685 /* reset waiting ? */
686
687 if (priv->reset == 1) {
688 status = iuu_reset(port, 0xC);
689 return;
690 }
691 /* Writebuf is waiting */
692 spin_lock_irqsave(&priv->lock, flags);
693 if (priv->writelen > 0) {
694 spin_unlock_irqrestore(&priv->lock, flags);
695 status = iuu_bulk_write(port);
696 return;
697 }
698 spin_unlock_irqrestore(&priv->lock, flags);
699 /* if nothing to write call again rxcmd */
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700700 dev_dbg(&port->dev, "%s - rxcmd recall\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200701 iuu_led_activity_off(urb);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200702}
703
Alan Cox95da3102008-07-22 11:09:07 +0100704static int iuu_uart_write(struct tty_struct *tty, struct usb_serial_port *port,
705 const u8 *buf, int count)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200706{
707 struct iuu_private *priv = usb_get_serial_port_data(port);
Steven Rostedt85943032008-05-06 20:42:31 -0700708 unsigned long flags;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200709
710 if (count > 256)
711 return -ENOMEM;
712
713 spin_lock_irqsave(&priv->lock, flags);
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100714
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200715 /* fill the buffer */
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100716 memcpy(priv->writebuf + priv->writelen, buf, count);
717 priv->writelen += count;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200718 spin_unlock_irqrestore(&priv->lock, flags);
719
Alan Cox9e8e2d22008-07-22 11:12:59 +0100720 return count;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200721}
722
723static void read_rxcmd_callback(struct urb *urb)
724{
Ming Leicdc97792008-02-24 18:41:47 +0800725 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200726 int result;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800727 int status = urb->status;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200728
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800729 if (status) {
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200730 /* error stop all */
731 return;
732 }
733
734 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
735 usb_rcvbulkpipe(port->serial->dev,
736 port->bulk_in_endpointAddress),
737 port->read_urb->transfer_buffer, 256,
738 iuu_uart_read_callback, port);
739 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700740 dev_dbg(&port->dev, "%s - submit result = %d\n", __func__, result);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200741}
742
743static int iuu_uart_on(struct usb_serial_port *port)
744{
745 int status;
746 u8 *buf;
747
748 buf = kmalloc(sizeof(u8) * 4, GFP_KERNEL);
749
750 if (!buf)
751 return -ENOMEM;
752
753 buf[0] = IUU_UART_ENABLE;
754 buf[1] = (u8) ((IUU_BAUD_9600 >> 8) & 0x00FF);
755 buf[2] = (u8) (0x00FF & IUU_BAUD_9600);
Olivier Bornetcc3447d2009-06-11 12:53:24 +0100756 buf[3] = (u8) (0x0F0 & IUU_ONE_STOP_BIT) | (0x07 & IUU_PARITY_EVEN);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200757
758 status = bulk_immediate(port, buf, 4);
759 if (status != IUU_OPERATION_OK) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700760 dev_dbg(&port->dev, "%s - uart_on error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200761 goto uart_enable_failed;
762 }
763 /* iuu_reset() the card after iuu_uart_on() */
764 status = iuu_uart_flush(port);
765 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700766 dev_dbg(&port->dev, "%s - uart_flush error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200767uart_enable_failed:
768 kfree(buf);
769 return status;
770}
771
Rahul Bedarkarcd8c5052014-01-02 19:29:24 +0530772/* Disables the IUU UART (a.k.a. the Phoenix voiderface) */
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200773static int iuu_uart_off(struct usb_serial_port *port)
774{
775 int status;
776 u8 *buf;
777 buf = kmalloc(1, GFP_KERNEL);
778 if (!buf)
779 return -ENOMEM;
780 buf[0] = IUU_UART_DISABLE;
781
782 status = bulk_immediate(port, buf, 1);
783 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700784 dev_dbg(&port->dev, "%s - uart_off error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200785
786 kfree(buf);
787 return status;
788}
789
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100790static int iuu_uart_baud(struct usb_serial_port *port, u32 baud_base,
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200791 u32 *actual, u8 parity)
792{
793 int status;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100794 u32 baud;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200795 u8 *dataout;
796 u8 DataCount = 0;
797 u8 T1Frekvens = 0;
798 u8 T1reload = 0;
799 unsigned int T1FrekvensHZ = 0;
800
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700801 dev_dbg(&port->dev, "%s - enter baud_base=%d\n", __func__, baud_base);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200802 dataout = kmalloc(sizeof(u8) * 5, GFP_KERNEL);
803
804 if (!dataout)
805 return -ENOMEM;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100806 /*baud = (((priv->clk / 35) * baud_base) / 100000); */
807 baud = baud_base;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200808
809 if (baud < 1200 || baud > 230400) {
810 kfree(dataout);
811 return IUU_INVALID_PARAMETER;
812 }
813 if (baud > 977) {
814 T1Frekvens = 3;
815 T1FrekvensHZ = 500000;
816 }
817
818 if (baud > 3906) {
819 T1Frekvens = 2;
820 T1FrekvensHZ = 2000000;
821 }
822
823 if (baud > 11718) {
824 T1Frekvens = 1;
825 T1FrekvensHZ = 6000000;
826 }
827
828 if (baud > 46875) {
829 T1Frekvens = 0;
830 T1FrekvensHZ = 24000000;
831 }
832
833 T1reload = 256 - (u8) (T1FrekvensHZ / (baud * 2));
834
835 /* magic number here: ENTER_FIRMWARE_UPDATE; */
836 dataout[DataCount++] = IUU_UART_ESC;
837 /* magic number here: CHANGE_BAUD; */
838 dataout[DataCount++] = IUU_UART_CHANGE;
839 dataout[DataCount++] = T1Frekvens;
840 dataout[DataCount++] = T1reload;
841
842 *actual = (T1FrekvensHZ / (256 - T1reload)) / 2;
843
844 switch (parity & 0x0F) {
845 case IUU_PARITY_NONE:
846 dataout[DataCount++] = 0x00;
847 break;
848 case IUU_PARITY_EVEN:
849 dataout[DataCount++] = 0x01;
850 break;
851 case IUU_PARITY_ODD:
852 dataout[DataCount++] = 0x02;
853 break;
854 case IUU_PARITY_MARK:
855 dataout[DataCount++] = 0x03;
856 break;
857 case IUU_PARITY_SPACE:
858 dataout[DataCount++] = 0x04;
859 break;
860 default:
861 kfree(dataout);
862 return IUU_INVALID_PARAMETER;
863 break;
864 }
865
866 switch (parity & 0xF0) {
867 case IUU_ONE_STOP_BIT:
868 dataout[DataCount - 1] |= IUU_ONE_STOP_BIT;
869 break;
870
871 case IUU_TWO_STOP_BITS:
872 dataout[DataCount - 1] |= IUU_TWO_STOP_BITS;
873 break;
874 default:
875 kfree(dataout);
876 return IUU_INVALID_PARAMETER;
877 break;
878 }
879
880 status = bulk_immediate(port, dataout, DataCount);
881 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700882 dev_dbg(&port->dev, "%s - uart_off error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200883 kfree(dataout);
884 return status;
885}
886
Olivier Bornet96dab772009-06-11 12:54:20 +0100887static void iuu_set_termios(struct tty_struct *tty,
888 struct usb_serial_port *port, struct ktermios *old_termios)
889{
890 const u32 supported_mask = CMSPAR|PARENB|PARODD;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100891 struct iuu_private *priv = usb_get_serial_port_data(port);
Alan Coxadc8d742012-07-14 15:31:47 +0100892 unsigned int cflag = tty->termios.c_cflag;
Olivier Bornet96dab772009-06-11 12:54:20 +0100893 int status;
894 u32 actual;
895 u32 parity;
896 int csize = CS7;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100897 int baud;
Olivier Bornet96dab772009-06-11 12:54:20 +0100898 u32 newval = cflag & supported_mask;
899
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100900 /* Just use the ospeed. ispeed should be the same. */
Alan Coxadc8d742012-07-14 15:31:47 +0100901 baud = tty->termios.c_ospeed;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100902
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700903 dev_dbg(&port->dev, "%s - enter c_ospeed or baud=%d\n", __func__, baud);
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100904
Olivier Bornet96dab772009-06-11 12:54:20 +0100905 /* compute the parity parameter */
906 parity = 0;
907 if (cflag & CMSPAR) { /* Using mark space */
908 if (cflag & PARODD)
909 parity |= IUU_PARITY_SPACE;
910 else
911 parity |= IUU_PARITY_MARK;
912 } else if (!(cflag & PARENB)) {
913 parity |= IUU_PARITY_NONE;
914 csize = CS8;
915 } else if (cflag & PARODD)
916 parity |= IUU_PARITY_ODD;
917 else
918 parity |= IUU_PARITY_EVEN;
919
920 parity |= (cflag & CSTOPB ? IUU_TWO_STOP_BITS : IUU_ONE_STOP_BIT);
921
922 /* set it */
923 status = iuu_uart_baud(port,
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100924 baud * priv->boost / 100,
Olivier Bornet96dab772009-06-11 12:54:20 +0100925 &actual, parity);
926
927 /* set the termios value to the real one, so the user now what has
928 * changed. We support few fields so its easies to copy the old hw
929 * settings back over and then adjust them
930 */
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100931 if (old_termios)
Alan Coxadc8d742012-07-14 15:31:47 +0100932 tty_termios_copy_hw(&tty->termios, old_termios);
Olivier Bornet96dab772009-06-11 12:54:20 +0100933 if (status != 0) /* Set failed - return old bits */
934 return;
935 /* Re-encode speed, parity and csize */
936 tty_encode_baud_rate(tty, baud, baud);
Alan Coxadc8d742012-07-14 15:31:47 +0100937 tty->termios.c_cflag &= ~(supported_mask|CSIZE);
938 tty->termios.c_cflag |= newval | csize;
Olivier Bornet96dab772009-06-11 12:54:20 +0100939}
940
Alan Cox335f8512009-06-11 12:26:29 +0100941static void iuu_close(struct usb_serial_port *port)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200942{
943 /* iuu_led (port,255,0,0,0); */
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200944
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200945 iuu_uart_off(port);
Johan Hovold853127f2013-03-21 12:36:31 +0100946
947 usb_kill_urb(port->write_urb);
948 usb_kill_urb(port->read_urb);
949
950 iuu_led(port, 0, 0, 0xF000, 0xFF);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200951}
952
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700953static void iuu_init_termios(struct tty_struct *tty)
954{
Alan Coxadc8d742012-07-14 15:31:47 +0100955 tty->termios = tty_std_termios;
956 tty->termios.c_cflag = CLOCAL | CREAD | CS8 | B9600
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700957 | TIOCM_CTS | CSTOPB | PARENB;
Alan Coxadc8d742012-07-14 15:31:47 +0100958 tty->termios.c_ispeed = 9600;
959 tty->termios.c_ospeed = 9600;
960 tty->termios.c_lflag = 0;
961 tty->termios.c_oflag = 0;
962 tty->termios.c_iflag = 0;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700963}
964
Alan Coxa509a7e2009-09-19 13:13:26 -0700965static int iuu_open(struct tty_struct *tty, struct usb_serial_port *port)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200966{
967 struct usb_serial *serial = port->serial;
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700968 struct device *dev = &port->dev;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200969 u8 *buf;
970 int result;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100971 int baud;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200972 u32 actual;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200973 struct iuu_private *priv = usb_get_serial_port_data(port);
974
Alan Coxadc8d742012-07-14 15:31:47 +0100975 baud = tty->termios.c_ospeed;
976 tty->termios.c_ispeed = baud;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100977 /* Re-encode speed */
978 tty_encode_baud_rate(tty, baud, baud);
979
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700980 dev_dbg(dev, "%s - baud %d\n", __func__, baud);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200981 usb_clear_halt(serial->dev, port->write_urb->pipe);
982 usb_clear_halt(serial->dev, port->read_urb->pipe);
983
984 buf = kmalloc(10, GFP_KERNEL);
985 if (buf == NULL)
986 return -ENOMEM;
987
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700988 priv->poll = 0;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200989
990 /* initialize writebuf */
991#define FISH(a, b, c, d) do { \
992 result = usb_control_msg(port->serial->dev, \
993 usb_rcvctrlpipe(port->serial->dev, 0), \
994 b, a, c, d, buf, 1, 1000); \
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700995 dev_dbg(dev, "0x%x:0x%x:0x%x:0x%x %d - %x\n", a, b, c, d, result, \
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200996 buf[0]); } while (0);
997
998#define SOUP(a, b, c, d) do { \
999 result = usb_control_msg(port->serial->dev, \
1000 usb_sndctrlpipe(port->serial->dev, 0), \
1001 b, a, c, d, NULL, 0, 1000); \
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001002 dev_dbg(dev, "0x%x:0x%x:0x%x:0x%x %d\n", a, b, c, d, result); } while (0)
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001003
1004 /* This is not UART related but IUU USB driver related or something */
1005 /* like that. Basically no IUU will accept any commands from the USB */
1006 /* host unless it has received the following message */
1007 /* sprintf(buf ,"%c%c%c%c",0x03,0x02,0x02,0x0); */
1008
1009 SOUP(0x03, 0x02, 0x02, 0x0);
1010 kfree(buf);
1011 iuu_led(port, 0xF000, 0xF000, 0, 0xFF);
1012 iuu_uart_on(port);
1013 if (boost < 100)
1014 boost = 100;
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001015 priv->boost = boost;
1016 priv->baud = baud;
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001017 switch (clockmode) {
1018 case 2: /* 3.680 Mhz */
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001019 priv->clk = IUU_CLK_3680000;
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001020 iuu_clk(port, IUU_CLK_3680000 * boost / 100);
1021 result =
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001022 iuu_uart_baud(port, baud * boost / 100, &actual,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001023 IUU_PARITY_EVEN);
1024 break;
1025 case 3: /* 6.00 Mhz */
1026 iuu_clk(port, IUU_CLK_6000000 * boost / 100);
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001027 priv->clk = IUU_CLK_6000000;
1028 /* Ratio of 6000000 to 3500000 for baud 9600 */
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001029 result =
1030 iuu_uart_baud(port, 16457 * boost / 100, &actual,
1031 IUU_PARITY_EVEN);
1032 break;
1033 default: /* 3.579 Mhz */
1034 iuu_clk(port, IUU_CLK_3579000 * boost / 100);
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001035 priv->clk = IUU_CLK_3579000;
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001036 result =
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001037 iuu_uart_baud(port, baud * boost / 100, &actual,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001038 IUU_PARITY_EVEN);
1039 }
1040
1041 /* set the cardin cardout signals */
1042 switch (cdmode) {
1043 case 0:
1044 iuu_cardin = 0;
1045 iuu_cardout = 0;
1046 break;
1047 case 1:
1048 iuu_cardin = TIOCM_CD;
1049 iuu_cardout = 0;
1050 break;
1051 case 2:
1052 iuu_cardin = 0;
1053 iuu_cardout = TIOCM_CD;
1054 break;
1055 case 3:
1056 iuu_cardin = TIOCM_DSR;
1057 iuu_cardout = 0;
1058 break;
1059 case 4:
1060 iuu_cardin = 0;
1061 iuu_cardout = TIOCM_DSR;
1062 break;
1063 case 5:
1064 iuu_cardin = TIOCM_CTS;
1065 iuu_cardout = 0;
1066 break;
1067 case 6:
1068 iuu_cardin = 0;
1069 iuu_cardout = TIOCM_CTS;
1070 break;
1071 case 7:
1072 iuu_cardin = TIOCM_RNG;
1073 iuu_cardout = 0;
1074 break;
1075 case 8:
1076 iuu_cardin = 0;
1077 iuu_cardout = TIOCM_RNG;
1078 }
1079
1080 iuu_uart_flush(port);
1081
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001082 dev_dbg(dev, "%s - initialization done\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001083
1084 memset(port->write_urb->transfer_buffer, IUU_UART_RX, 1);
1085 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1086 usb_sndbulkpipe(port->serial->dev,
1087 port->bulk_out_endpointAddress),
1088 port->write_urb->transfer_buffer, 1,
1089 read_rxcmd_callback, port);
1090 result = usb_submit_urb(port->write_urb, GFP_KERNEL);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001091 if (result) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001092 dev_err(dev, "%s - failed submitting read urb, error %d\n", __func__, result);
Alan Cox335f8512009-06-11 12:26:29 +01001093 iuu_close(port);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001094 } else {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001095 dev_dbg(dev, "%s - rxcmd OK\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001096 }
Johan Hovoldb58a6462011-11-10 14:58:30 +01001097
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001098 return result;
1099}
1100
Olivier Bornet20eda942009-08-18 21:05:55 +02001101/* how to change VCC */
1102static int iuu_vcc_set(struct usb_serial_port *port, unsigned int vcc)
1103{
1104 int status;
1105 u8 *buf;
1106
1107 buf = kmalloc(5, GFP_KERNEL);
1108 if (!buf)
1109 return -ENOMEM;
1110
Olivier Bornet20eda942009-08-18 21:05:55 +02001111 buf[0] = IUU_SET_VCC;
1112 buf[1] = vcc & 0xFF;
1113 buf[2] = (vcc >> 8) & 0xFF;
1114 buf[3] = (vcc >> 16) & 0xFF;
1115 buf[4] = (vcc >> 24) & 0xFF;
1116
1117 status = bulk_immediate(port, buf, 5);
1118 kfree(buf);
1119
1120 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001121 dev_dbg(&port->dev, "%s - vcc error status = %2x\n", __func__, status);
Olivier Bornet20eda942009-08-18 21:05:55 +02001122 else
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001123 dev_dbg(&port->dev, "%s - vcc OK !\n", __func__);
Olivier Bornet20eda942009-08-18 21:05:55 +02001124
1125 return status;
1126}
1127
1128/*
1129 * Sysfs Attributes
1130 */
1131
Greg Kroah-Hartman154547c2013-08-23 16:18:34 -07001132static ssize_t vcc_mode_show(struct device *dev,
Olivier Bornet20eda942009-08-18 21:05:55 +02001133 struct device_attribute *attr, char *buf)
1134{
1135 struct usb_serial_port *port = to_usb_serial_port(dev);
1136 struct iuu_private *priv = usb_get_serial_port_data(port);
1137
1138 return sprintf(buf, "%d\n", priv->vcc);
1139}
1140
Greg Kroah-Hartman154547c2013-08-23 16:18:34 -07001141static ssize_t vcc_mode_store(struct device *dev,
Olivier Bornet20eda942009-08-18 21:05:55 +02001142 struct device_attribute *attr, const char *buf, size_t count)
1143{
1144 struct usb_serial_port *port = to_usb_serial_port(dev);
1145 struct iuu_private *priv = usb_get_serial_port_data(port);
1146 unsigned long v;
1147
Jingoo Han487c1512012-10-29 18:37:31 +09001148 if (kstrtoul(buf, 10, &v)) {
Olivier Bornet20eda942009-08-18 21:05:55 +02001149 dev_err(dev, "%s - vcc_mode: %s is not a unsigned long\n",
1150 __func__, buf);
1151 goto fail_store_vcc_mode;
1152 }
1153
Johan Hovoldd9a38a82014-03-12 19:09:42 +01001154 dev_dbg(dev, "%s: setting vcc_mode = %ld\n", __func__, v);
Olivier Bornet20eda942009-08-18 21:05:55 +02001155
1156 if ((v != 3) && (v != 5)) {
1157 dev_err(dev, "%s - vcc_mode %ld is invalid\n", __func__, v);
1158 } else {
1159 iuu_vcc_set(port, v);
1160 priv->vcc = v;
1161 }
1162fail_store_vcc_mode:
1163 return count;
1164}
Greg Kroah-Hartman154547c2013-08-23 16:18:34 -07001165static DEVICE_ATTR_RW(vcc_mode);
Olivier Bornet20eda942009-08-18 21:05:55 +02001166
1167static int iuu_create_sysfs_attrs(struct usb_serial_port *port)
1168{
Olivier Bornet20eda942009-08-18 21:05:55 +02001169 return device_create_file(&port->dev, &dev_attr_vcc_mode);
1170}
1171
1172static int iuu_remove_sysfs_attrs(struct usb_serial_port *port)
1173{
Olivier Bornet20eda942009-08-18 21:05:55 +02001174 device_remove_file(&port->dev, &dev_attr_vcc_mode);
1175 return 0;
1176}
1177
1178/*
1179 * End Sysfs Attributes
1180 */
1181
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001182static struct usb_serial_driver iuu_device = {
1183 .driver = {
1184 .owner = THIS_MODULE,
1185 .name = "iuu_phoenix",
1186 },
1187 .id_table = id_table,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001188 .num_ports = 1,
Johan Hovoldbbcb2b92010-03-17 23:00:37 +01001189 .bulk_in_size = 512,
1190 .bulk_out_size = 512,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001191 .open = iuu_open,
1192 .close = iuu_close,
1193 .write = iuu_uart_write,
1194 .read_bulk_callback = iuu_uart_read_callback,
1195 .tiocmget = iuu_tiocmget,
1196 .tiocmset = iuu_tiocmset,
Olivier Bornet96dab772009-06-11 12:54:20 +01001197 .set_termios = iuu_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -07001198 .init_termios = iuu_init_termios,
Johan Hovold53636552012-10-17 13:34:59 +02001199 .port_probe = iuu_port_probe,
1200 .port_remove = iuu_port_remove,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001201};
1202
Alan Stern7dbe2462012-02-23 14:56:57 -05001203static struct usb_serial_driver * const serial_drivers[] = {
1204 &iuu_device, NULL
1205};
1206
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001207module_usb_serial_driver(serial_drivers, id_table);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001208
1209MODULE_AUTHOR("Alain Degreffe eczema@ecze.com");
1210
1211MODULE_DESCRIPTION(DRIVER_DESC);
1212MODULE_LICENSE("GPL");
1213
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001214module_param(xmas, bool, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001215MODULE_PARM_DESC(xmas, "Xmas colors enabled or not");
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001216
1217module_param(boost, int, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001218MODULE_PARM_DESC(boost, "Card overclock boost (in percent 100-500)");
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001219
1220module_param(clockmode, int, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001221MODULE_PARM_DESC(clockmode, "Card clock mode (1=3.579 MHz, 2=3.680 MHz, "
1222 "3=6 Mhz)");
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001223
1224module_param(cdmode, int, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001225MODULE_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)");
Olivier Bornete55c6d02009-08-18 21:05:57 +02001227
1228module_param(vcc_default, int, S_IRUGO | S_IWUSR);
1229MODULE_PARM_DESC(vcc_default, "Set default VCC (either 3 for 3.3V or 5 "
1230 "for 5V). Default to 5.");