blob: 18fc992a245fcd8c700aea392ed2a1fcf9d584ea [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);
Johan Hovold7aac5e72017-04-03 11:57:14 +0200591
592 if (urb->actual_length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100593 tty_insert_flip_string(&port->port, data, urb->actual_length);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100594 tty_flip_buffer_push(&port->port);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200595 }
596 iuu_led_activity_on(urb);
597}
598
599static int iuu_bulk_write(struct usb_serial_port *port)
600{
601 struct iuu_private *priv = usb_get_serial_port_data(port);
Steven Rostedt85943032008-05-06 20:42:31 -0700602 unsigned long flags;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200603 int result;
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100604 int buf_len;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200605 char *buf_ptr = port->write_urb->transfer_buffer;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200606
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100607 spin_lock_irqsave(&priv->lock, flags);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200608 *buf_ptr++ = IUU_UART_ESC;
609 *buf_ptr++ = IUU_UART_TX;
610 *buf_ptr++ = priv->writelen;
611
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100612 memcpy(buf_ptr, priv->writebuf, priv->writelen);
613 buf_len = priv->writelen;
614 priv->writelen = 0;
615 spin_unlock_irqrestore(&priv->lock, flags);
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700616 dev_dbg(&port->dev, "%s - writing %i chars : %*ph\n", __func__,
617 buf_len, buf_len, buf_ptr);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200618 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
619 usb_sndbulkpipe(port->serial->dev,
620 port->bulk_out_endpointAddress),
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100621 port->write_urb->transfer_buffer, buf_len + 3,
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200622 iuu_rxcmd, port);
623 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200624 usb_serial_port_softint(port);
625 return result;
626}
627
628static int iuu_read_buf(struct usb_serial_port *port, int len)
629{
630 int result;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200631
632 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
633 usb_rcvbulkpipe(port->serial->dev,
634 port->bulk_in_endpointAddress),
635 port->read_urb->transfer_buffer, len,
636 read_buf_callback, port);
637 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
638 return result;
639}
640
641static void iuu_uart_read_callback(struct urb *urb)
642{
Ming Leicdc97792008-02-24 18:41:47 +0800643 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200644 struct iuu_private *priv = usb_get_serial_port_data(port);
Steven Rostedt85943032008-05-06 20:42:31 -0700645 unsigned long flags;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800646 int status = urb->status;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200647 int error = 0;
648 int len = 0;
649 unsigned char *data = urb->transfer_buffer;
650 priv->poll++;
651
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800652 if (status) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700653 dev_dbg(&port->dev, "%s - status = %d\n", __func__, status);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200654 /* error stop all */
655 return;
656 }
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200657
Johan Hovold7aac5e72017-04-03 11:57:14 +0200658 if (urb->actual_length == 1)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200659 len = (int) data[0];
660
661 if (urb->actual_length > 1) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700662 dev_dbg(&port->dev, "%s - urb->actual_length = %i\n", __func__,
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200663 urb->actual_length);
664 error = 1;
665 return;
666 }
667 /* if len > 0 call readbuf */
668
669 if (len > 0 && error == 0) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700670 dev_dbg(&port->dev, "%s - call read buf - len to read is %i\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800671 __func__, len);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200672 status = iuu_read_buf(port, len);
673 return;
674 }
675 /* need to update status ? */
676 if (priv->poll > 99) {
677 status = iuu_status(port);
678 priv->poll = 0;
679 return;
680 }
681
682 /* reset waiting ? */
683
684 if (priv->reset == 1) {
685 status = iuu_reset(port, 0xC);
686 return;
687 }
688 /* Writebuf is waiting */
689 spin_lock_irqsave(&priv->lock, flags);
690 if (priv->writelen > 0) {
691 spin_unlock_irqrestore(&priv->lock, flags);
692 status = iuu_bulk_write(port);
693 return;
694 }
695 spin_unlock_irqrestore(&priv->lock, flags);
696 /* if nothing to write call again rxcmd */
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700697 dev_dbg(&port->dev, "%s - rxcmd recall\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200698 iuu_led_activity_off(urb);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200699}
700
Alan Cox95da3102008-07-22 11:09:07 +0100701static int iuu_uart_write(struct tty_struct *tty, struct usb_serial_port *port,
702 const u8 *buf, int count)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200703{
704 struct iuu_private *priv = usb_get_serial_port_data(port);
Steven Rostedt85943032008-05-06 20:42:31 -0700705 unsigned long flags;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200706
707 if (count > 256)
708 return -ENOMEM;
709
710 spin_lock_irqsave(&priv->lock, flags);
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100711
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200712 /* fill the buffer */
Olivier Bornet5fcf62b2009-06-11 12:52:26 +0100713 memcpy(priv->writebuf + priv->writelen, buf, count);
714 priv->writelen += count;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200715 spin_unlock_irqrestore(&priv->lock, flags);
716
Alan Cox9e8e2d22008-07-22 11:12:59 +0100717 return count;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200718}
719
720static void read_rxcmd_callback(struct urb *urb)
721{
Ming Leicdc97792008-02-24 18:41:47 +0800722 struct usb_serial_port *port = urb->context;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200723 int result;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800724 int status = urb->status;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200725
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800726 if (status) {
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200727 /* error stop all */
728 return;
729 }
730
731 usb_fill_bulk_urb(port->read_urb, port->serial->dev,
732 usb_rcvbulkpipe(port->serial->dev,
733 port->bulk_in_endpointAddress),
734 port->read_urb->transfer_buffer, 256,
735 iuu_uart_read_callback, port);
736 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700737 dev_dbg(&port->dev, "%s - submit result = %d\n", __func__, result);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200738}
739
740static int iuu_uart_on(struct usb_serial_port *port)
741{
742 int status;
743 u8 *buf;
744
745 buf = kmalloc(sizeof(u8) * 4, GFP_KERNEL);
746
747 if (!buf)
748 return -ENOMEM;
749
750 buf[0] = IUU_UART_ENABLE;
751 buf[1] = (u8) ((IUU_BAUD_9600 >> 8) & 0x00FF);
752 buf[2] = (u8) (0x00FF & IUU_BAUD_9600);
Olivier Bornetcc3447d2009-06-11 12:53:24 +0100753 buf[3] = (u8) (0x0F0 & IUU_ONE_STOP_BIT) | (0x07 & IUU_PARITY_EVEN);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200754
755 status = bulk_immediate(port, buf, 4);
756 if (status != IUU_OPERATION_OK) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700757 dev_dbg(&port->dev, "%s - uart_on error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200758 goto uart_enable_failed;
759 }
760 /* iuu_reset() the card after iuu_uart_on() */
761 status = iuu_uart_flush(port);
762 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700763 dev_dbg(&port->dev, "%s - uart_flush error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200764uart_enable_failed:
765 kfree(buf);
766 return status;
767}
768
Rahul Bedarkarcd8c5052014-01-02 19:29:24 +0530769/* Disables the IUU UART (a.k.a. the Phoenix voiderface) */
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200770static int iuu_uart_off(struct usb_serial_port *port)
771{
772 int status;
773 u8 *buf;
774 buf = kmalloc(1, GFP_KERNEL);
775 if (!buf)
776 return -ENOMEM;
777 buf[0] = IUU_UART_DISABLE;
778
779 status = bulk_immediate(port, buf, 1);
780 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700781 dev_dbg(&port->dev, "%s - uart_off error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200782
783 kfree(buf);
784 return status;
785}
786
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100787static int iuu_uart_baud(struct usb_serial_port *port, u32 baud_base,
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200788 u32 *actual, u8 parity)
789{
790 int status;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100791 u32 baud;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200792 u8 *dataout;
793 u8 DataCount = 0;
794 u8 T1Frekvens = 0;
795 u8 T1reload = 0;
796 unsigned int T1FrekvensHZ = 0;
797
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700798 dev_dbg(&port->dev, "%s - enter baud_base=%d\n", __func__, baud_base);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200799 dataout = kmalloc(sizeof(u8) * 5, GFP_KERNEL);
800
801 if (!dataout)
802 return -ENOMEM;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100803 /*baud = (((priv->clk / 35) * baud_base) / 100000); */
804 baud = baud_base;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200805
806 if (baud < 1200 || baud > 230400) {
807 kfree(dataout);
808 return IUU_INVALID_PARAMETER;
809 }
810 if (baud > 977) {
811 T1Frekvens = 3;
812 T1FrekvensHZ = 500000;
813 }
814
815 if (baud > 3906) {
816 T1Frekvens = 2;
817 T1FrekvensHZ = 2000000;
818 }
819
820 if (baud > 11718) {
821 T1Frekvens = 1;
822 T1FrekvensHZ = 6000000;
823 }
824
825 if (baud > 46875) {
826 T1Frekvens = 0;
827 T1FrekvensHZ = 24000000;
828 }
829
830 T1reload = 256 - (u8) (T1FrekvensHZ / (baud * 2));
831
832 /* magic number here: ENTER_FIRMWARE_UPDATE; */
833 dataout[DataCount++] = IUU_UART_ESC;
834 /* magic number here: CHANGE_BAUD; */
835 dataout[DataCount++] = IUU_UART_CHANGE;
836 dataout[DataCount++] = T1Frekvens;
837 dataout[DataCount++] = T1reload;
838
839 *actual = (T1FrekvensHZ / (256 - T1reload)) / 2;
840
841 switch (parity & 0x0F) {
842 case IUU_PARITY_NONE:
843 dataout[DataCount++] = 0x00;
844 break;
845 case IUU_PARITY_EVEN:
846 dataout[DataCount++] = 0x01;
847 break;
848 case IUU_PARITY_ODD:
849 dataout[DataCount++] = 0x02;
850 break;
851 case IUU_PARITY_MARK:
852 dataout[DataCount++] = 0x03;
853 break;
854 case IUU_PARITY_SPACE:
855 dataout[DataCount++] = 0x04;
856 break;
857 default:
858 kfree(dataout);
859 return IUU_INVALID_PARAMETER;
860 break;
861 }
862
863 switch (parity & 0xF0) {
864 case IUU_ONE_STOP_BIT:
865 dataout[DataCount - 1] |= IUU_ONE_STOP_BIT;
866 break;
867
868 case IUU_TWO_STOP_BITS:
869 dataout[DataCount - 1] |= IUU_TWO_STOP_BITS;
870 break;
871 default:
872 kfree(dataout);
873 return IUU_INVALID_PARAMETER;
874 break;
875 }
876
877 status = bulk_immediate(port, dataout, DataCount);
878 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700879 dev_dbg(&port->dev, "%s - uart_off error\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200880 kfree(dataout);
881 return status;
882}
883
Olivier Bornet96dab772009-06-11 12:54:20 +0100884static void iuu_set_termios(struct tty_struct *tty,
885 struct usb_serial_port *port, struct ktermios *old_termios)
886{
887 const u32 supported_mask = CMSPAR|PARENB|PARODD;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100888 struct iuu_private *priv = usb_get_serial_port_data(port);
Alan Coxadc8d742012-07-14 15:31:47 +0100889 unsigned int cflag = tty->termios.c_cflag;
Olivier Bornet96dab772009-06-11 12:54:20 +0100890 int status;
891 u32 actual;
892 u32 parity;
893 int csize = CS7;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100894 int baud;
Olivier Bornet96dab772009-06-11 12:54:20 +0100895 u32 newval = cflag & supported_mask;
896
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100897 /* Just use the ospeed. ispeed should be the same. */
Alan Coxadc8d742012-07-14 15:31:47 +0100898 baud = tty->termios.c_ospeed;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100899
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700900 dev_dbg(&port->dev, "%s - enter c_ospeed or baud=%d\n", __func__, baud);
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100901
Olivier Bornet96dab772009-06-11 12:54:20 +0100902 /* compute the parity parameter */
903 parity = 0;
904 if (cflag & CMSPAR) { /* Using mark space */
905 if (cflag & PARODD)
906 parity |= IUU_PARITY_SPACE;
907 else
908 parity |= IUU_PARITY_MARK;
909 } else if (!(cflag & PARENB)) {
910 parity |= IUU_PARITY_NONE;
911 csize = CS8;
912 } else if (cflag & PARODD)
913 parity |= IUU_PARITY_ODD;
914 else
915 parity |= IUU_PARITY_EVEN;
916
917 parity |= (cflag & CSTOPB ? IUU_TWO_STOP_BITS : IUU_ONE_STOP_BIT);
918
919 /* set it */
920 status = iuu_uart_baud(port,
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100921 baud * priv->boost / 100,
Olivier Bornet96dab772009-06-11 12:54:20 +0100922 &actual, parity);
923
924 /* set the termios value to the real one, so the user now what has
925 * changed. We support few fields so its easies to copy the old hw
926 * settings back over and then adjust them
927 */
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100928 if (old_termios)
Alan Coxadc8d742012-07-14 15:31:47 +0100929 tty_termios_copy_hw(&tty->termios, old_termios);
Olivier Bornet96dab772009-06-11 12:54:20 +0100930 if (status != 0) /* Set failed - return old bits */
931 return;
932 /* Re-encode speed, parity and csize */
933 tty_encode_baud_rate(tty, baud, baud);
Alan Coxadc8d742012-07-14 15:31:47 +0100934 tty->termios.c_cflag &= ~(supported_mask|CSIZE);
935 tty->termios.c_cflag |= newval | csize;
Olivier Bornet96dab772009-06-11 12:54:20 +0100936}
937
Alan Cox335f8512009-06-11 12:26:29 +0100938static void iuu_close(struct usb_serial_port *port)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200939{
940 /* iuu_led (port,255,0,0,0); */
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200941
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200942 iuu_uart_off(port);
Johan Hovold853127f2013-03-21 12:36:31 +0100943
944 usb_kill_urb(port->write_urb);
945 usb_kill_urb(port->read_urb);
946
947 iuu_led(port, 0, 0, 0xF000, 0xFF);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200948}
949
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700950static void iuu_init_termios(struct tty_struct *tty)
951{
Alan Coxadc8d742012-07-14 15:31:47 +0100952 tty->termios = tty_std_termios;
953 tty->termios.c_cflag = CLOCAL | CREAD | CS8 | B9600
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700954 | TIOCM_CTS | CSTOPB | PARENB;
Alan Coxadc8d742012-07-14 15:31:47 +0100955 tty->termios.c_ispeed = 9600;
956 tty->termios.c_ospeed = 9600;
957 tty->termios.c_lflag = 0;
958 tty->termios.c_oflag = 0;
959 tty->termios.c_iflag = 0;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700960}
961
Alan Coxa509a7e2009-09-19 13:13:26 -0700962static int iuu_open(struct tty_struct *tty, struct usb_serial_port *port)
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200963{
964 struct usb_serial *serial = port->serial;
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700965 struct device *dev = &port->dev;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200966 int result;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100967 int baud;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200968 u32 actual;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200969 struct iuu_private *priv = usb_get_serial_port_data(port);
970
Alan Coxadc8d742012-07-14 15:31:47 +0100971 baud = tty->termios.c_ospeed;
972 tty->termios.c_ispeed = baud;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100973 /* Re-encode speed */
974 tty_encode_baud_rate(tty, baud, baud);
975
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700976 dev_dbg(dev, "%s - baud %d\n", __func__, baud);
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200977 usb_clear_halt(serial->dev, port->write_urb->pipe);
978 usb_clear_halt(serial->dev, port->read_urb->pipe);
979
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700980 priv->poll = 0;
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200981
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200982#define SOUP(a, b, c, d) do { \
983 result = usb_control_msg(port->serial->dev, \
984 usb_sndctrlpipe(port->serial->dev, 0), \
985 b, a, c, d, NULL, 0, 1000); \
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -0700986 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 +0200987
988 /* This is not UART related but IUU USB driver related or something */
989 /* like that. Basically no IUU will accept any commands from the USB */
990 /* host unless it has received the following message */
991 /* sprintf(buf ,"%c%c%c%c",0x03,0x02,0x02,0x0); */
992
993 SOUP(0x03, 0x02, 0x02, 0x0);
Johan Hovold750acdd2017-01-12 14:56:15 +0100994
Alain Degreffe60a8fc02007-10-26 13:51:49 +0200995 iuu_led(port, 0xF000, 0xF000, 0, 0xFF);
996 iuu_uart_on(port);
997 if (boost < 100)
998 boost = 100;
James Courtier-Dutton89b54392010-05-21 11:53:25 +0100999 priv->boost = boost;
1000 priv->baud = baud;
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001001 switch (clockmode) {
1002 case 2: /* 3.680 Mhz */
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001003 priv->clk = IUU_CLK_3680000;
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001004 iuu_clk(port, IUU_CLK_3680000 * boost / 100);
1005 result =
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001006 iuu_uart_baud(port, baud * boost / 100, &actual,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001007 IUU_PARITY_EVEN);
1008 break;
1009 case 3: /* 6.00 Mhz */
1010 iuu_clk(port, IUU_CLK_6000000 * boost / 100);
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001011 priv->clk = IUU_CLK_6000000;
1012 /* Ratio of 6000000 to 3500000 for baud 9600 */
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001013 result =
1014 iuu_uart_baud(port, 16457 * boost / 100, &actual,
1015 IUU_PARITY_EVEN);
1016 break;
1017 default: /* 3.579 Mhz */
1018 iuu_clk(port, IUU_CLK_3579000 * boost / 100);
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001019 priv->clk = IUU_CLK_3579000;
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001020 result =
James Courtier-Dutton89b54392010-05-21 11:53:25 +01001021 iuu_uart_baud(port, baud * boost / 100, &actual,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001022 IUU_PARITY_EVEN);
1023 }
1024
1025 /* set the cardin cardout signals */
1026 switch (cdmode) {
1027 case 0:
1028 iuu_cardin = 0;
1029 iuu_cardout = 0;
1030 break;
1031 case 1:
1032 iuu_cardin = TIOCM_CD;
1033 iuu_cardout = 0;
1034 break;
1035 case 2:
1036 iuu_cardin = 0;
1037 iuu_cardout = TIOCM_CD;
1038 break;
1039 case 3:
1040 iuu_cardin = TIOCM_DSR;
1041 iuu_cardout = 0;
1042 break;
1043 case 4:
1044 iuu_cardin = 0;
1045 iuu_cardout = TIOCM_DSR;
1046 break;
1047 case 5:
1048 iuu_cardin = TIOCM_CTS;
1049 iuu_cardout = 0;
1050 break;
1051 case 6:
1052 iuu_cardin = 0;
1053 iuu_cardout = TIOCM_CTS;
1054 break;
1055 case 7:
1056 iuu_cardin = TIOCM_RNG;
1057 iuu_cardout = 0;
1058 break;
1059 case 8:
1060 iuu_cardin = 0;
1061 iuu_cardout = TIOCM_RNG;
1062 }
1063
1064 iuu_uart_flush(port);
1065
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001066 dev_dbg(dev, "%s - initialization done\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001067
1068 memset(port->write_urb->transfer_buffer, IUU_UART_RX, 1);
1069 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
1070 usb_sndbulkpipe(port->serial->dev,
1071 port->bulk_out_endpointAddress),
1072 port->write_urb->transfer_buffer, 1,
1073 read_rxcmd_callback, port);
1074 result = usb_submit_urb(port->write_urb, GFP_KERNEL);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001075 if (result) {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001076 dev_err(dev, "%s - failed submitting read urb, error %d\n", __func__, result);
Alan Cox335f8512009-06-11 12:26:29 +01001077 iuu_close(port);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001078 } else {
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001079 dev_dbg(dev, "%s - rxcmd OK\n", __func__);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001080 }
Johan Hovoldb58a6462011-11-10 14:58:30 +01001081
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001082 return result;
1083}
1084
Olivier Bornet20eda942009-08-18 21:05:55 +02001085/* how to change VCC */
1086static int iuu_vcc_set(struct usb_serial_port *port, unsigned int vcc)
1087{
1088 int status;
1089 u8 *buf;
1090
1091 buf = kmalloc(5, GFP_KERNEL);
1092 if (!buf)
1093 return -ENOMEM;
1094
Olivier Bornet20eda942009-08-18 21:05:55 +02001095 buf[0] = IUU_SET_VCC;
1096 buf[1] = vcc & 0xFF;
1097 buf[2] = (vcc >> 8) & 0xFF;
1098 buf[3] = (vcc >> 16) & 0xFF;
1099 buf[4] = (vcc >> 24) & 0xFF;
1100
1101 status = bulk_immediate(port, buf, 5);
1102 kfree(buf);
1103
1104 if (status != IUU_OPERATION_OK)
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001105 dev_dbg(&port->dev, "%s - vcc error status = %2x\n", __func__, status);
Olivier Bornet20eda942009-08-18 21:05:55 +02001106 else
Greg Kroah-Hartman2621cee2012-09-14 15:08:28 -07001107 dev_dbg(&port->dev, "%s - vcc OK !\n", __func__);
Olivier Bornet20eda942009-08-18 21:05:55 +02001108
1109 return status;
1110}
1111
1112/*
1113 * Sysfs Attributes
1114 */
1115
Greg Kroah-Hartman154547c2013-08-23 16:18:34 -07001116static ssize_t vcc_mode_show(struct device *dev,
Olivier Bornet20eda942009-08-18 21:05:55 +02001117 struct device_attribute *attr, char *buf)
1118{
1119 struct usb_serial_port *port = to_usb_serial_port(dev);
1120 struct iuu_private *priv = usb_get_serial_port_data(port);
1121
1122 return sprintf(buf, "%d\n", priv->vcc);
1123}
1124
Greg Kroah-Hartman154547c2013-08-23 16:18:34 -07001125static ssize_t vcc_mode_store(struct device *dev,
Olivier Bornet20eda942009-08-18 21:05:55 +02001126 struct device_attribute *attr, const char *buf, size_t count)
1127{
1128 struct usb_serial_port *port = to_usb_serial_port(dev);
1129 struct iuu_private *priv = usb_get_serial_port_data(port);
1130 unsigned long v;
1131
Jingoo Han487c1512012-10-29 18:37:31 +09001132 if (kstrtoul(buf, 10, &v)) {
Olivier Bornet20eda942009-08-18 21:05:55 +02001133 dev_err(dev, "%s - vcc_mode: %s is not a unsigned long\n",
1134 __func__, buf);
1135 goto fail_store_vcc_mode;
1136 }
1137
Johan Hovoldd9a38a82014-03-12 19:09:42 +01001138 dev_dbg(dev, "%s: setting vcc_mode = %ld\n", __func__, v);
Olivier Bornet20eda942009-08-18 21:05:55 +02001139
1140 if ((v != 3) && (v != 5)) {
1141 dev_err(dev, "%s - vcc_mode %ld is invalid\n", __func__, v);
1142 } else {
1143 iuu_vcc_set(port, v);
1144 priv->vcc = v;
1145 }
1146fail_store_vcc_mode:
1147 return count;
1148}
Greg Kroah-Hartman154547c2013-08-23 16:18:34 -07001149static DEVICE_ATTR_RW(vcc_mode);
Olivier Bornet20eda942009-08-18 21:05:55 +02001150
1151static int iuu_create_sysfs_attrs(struct usb_serial_port *port)
1152{
Olivier Bornet20eda942009-08-18 21:05:55 +02001153 return device_create_file(&port->dev, &dev_attr_vcc_mode);
1154}
1155
1156static int iuu_remove_sysfs_attrs(struct usb_serial_port *port)
1157{
Olivier Bornet20eda942009-08-18 21:05:55 +02001158 device_remove_file(&port->dev, &dev_attr_vcc_mode);
1159 return 0;
1160}
1161
1162/*
1163 * End Sysfs Attributes
1164 */
1165
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001166static struct usb_serial_driver iuu_device = {
1167 .driver = {
1168 .owner = THIS_MODULE,
1169 .name = "iuu_phoenix",
1170 },
1171 .id_table = id_table,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001172 .num_ports = 1,
Johan Hovoldfb527732017-03-02 12:51:24 +01001173 .num_bulk_in = 1,
1174 .num_bulk_out = 1,
Johan Hovoldbbcb2b92010-03-17 23:00:37 +01001175 .bulk_in_size = 512,
1176 .bulk_out_size = 512,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001177 .open = iuu_open,
1178 .close = iuu_close,
1179 .write = iuu_uart_write,
1180 .read_bulk_callback = iuu_uart_read_callback,
1181 .tiocmget = iuu_tiocmget,
1182 .tiocmset = iuu_tiocmset,
Olivier Bornet96dab772009-06-11 12:54:20 +01001183 .set_termios = iuu_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -07001184 .init_termios = iuu_init_termios,
Johan Hovold53636552012-10-17 13:34:59 +02001185 .port_probe = iuu_port_probe,
1186 .port_remove = iuu_port_remove,
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001187};
1188
Alan Stern7dbe2462012-02-23 14:56:57 -05001189static struct usb_serial_driver * const serial_drivers[] = {
1190 &iuu_device, NULL
1191};
1192
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07001193module_usb_serial_driver(serial_drivers, id_table);
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001194
1195MODULE_AUTHOR("Alain Degreffe eczema@ecze.com");
1196
1197MODULE_DESCRIPTION(DRIVER_DESC);
1198MODULE_LICENSE("GPL");
1199
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001200module_param(xmas, bool, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001201MODULE_PARM_DESC(xmas, "Xmas colors enabled or not");
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001202
1203module_param(boost, int, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001204MODULE_PARM_DESC(boost, "Card overclock boost (in percent 100-500)");
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001205
1206module_param(clockmode, int, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001207MODULE_PARM_DESC(clockmode, "Card clock mode (1=3.579 MHz, 2=3.680 MHz, "
1208 "3=6 Mhz)");
Alain Degreffe60a8fc02007-10-26 13:51:49 +02001209
1210module_param(cdmode, int, S_IRUGO | S_IWUSR);
Olivier Bornet8844a322009-08-18 21:05:54 +02001211MODULE_PARM_DESC(cdmode, "Card detect mode (0=none, 1=CD, 2=!CD, 3=DSR, "
1212 "4=!DSR, 5=CTS, 6=!CTS, 7=RING, 8=!RING)");
Olivier Bornete55c6d02009-08-18 21:05:57 +02001213
1214module_param(vcc_default, int, S_IRUGO | S_IWUSR);
1215MODULE_PARM_DESC(vcc_default, "Set default VCC (either 3 for 3.3V or 5 "
1216 "for 5V). Default to 5.");