blob: 5d25d3e52bf61016a2619a2ae1520826ccee3972 [file] [log] [blame]
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -07001/*
Werner Lemberg2f430b42006-07-18 17:00:52 +02002 * Copyright (C) 2006
3 * Simon Schulz (ark3116_driver <at> auctionant.de)
4 *
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -07005 * ark3116
6 * - implements a driver for the arkmicro ark3116 chipset (vendor=0x6547,
7 * productid=0x0232) (used in a datacable called KQ-U8A)
8 *
9 * - based on code by krisfx -> thanks !!
10 * (see http://www.linuxquestions.org/questions/showthread.php?p=2184457#post2184457)
11 *
12 * - based on logs created by usbsnoopy
13 *
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070014 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 */
19
20#include <linux/kernel.h>
21#include <linux/init.h>
22#include <linux/tty.h>
23#include <linux/module.h>
24#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070025#include <linux/usb/serial.h>
Werner Lemberg2f430b42006-07-18 17:00:52 +020026#include <linux/serial.h>
Alan Coxc4d0f8c2008-04-29 14:35:39 +010027#include <linux/uaccess.h>
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070028
29
30static int debug;
31
32static struct usb_device_id id_table [] = {
33 { USB_DEVICE(0x6547, 0x0232) },
34 { },
35};
36MODULE_DEVICE_TABLE(usb, id_table);
37
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070038static inline void ARK3116_SND(struct usb_serial *serial, int seq,
39 __u8 request, __u8 requesttype,
40 __u16 value, __u16 index)
41{
42 int result;
43 result = usb_control_msg(serial->dev,
Werner Lemberg988440e2006-07-18 17:00:22 +020044 usb_sndctrlpipe(serial->dev, 0),
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070045 request, requesttype, value, index,
Werner Lemberg988440e2006-07-18 17:00:22 +020046 NULL, 0x00, 1000);
47 dbg("%03d > ok", seq);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070048}
49
50static inline void ARK3116_RCV(struct usb_serial *serial, int seq,
51 __u8 request, __u8 requesttype,
52 __u16 value, __u16 index, __u8 expected,
53 char *buf)
54{
55 int result;
56 result = usb_control_msg(serial->dev,
Werner Lemberg988440e2006-07-18 17:00:22 +020057 usb_rcvctrlpipe(serial->dev, 0),
58 request, requesttype, value, index,
59 buf, 0x0000001, 1000);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070060 if (result)
Jan Engelhardtb268f482007-05-17 17:16:44 +020061 dbg("%03d < %d bytes [0x%02X]", seq, result,
62 ((unsigned char *)buf)[0]);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070063 else
64 dbg("%03d < 0 bytes", seq);
65}
66
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070067static inline void ARK3116_RCV_QUIET(struct usb_serial *serial,
68 __u8 request, __u8 requesttype,
69 __u16 value, __u16 index, char *buf)
70{
71 usb_control_msg(serial->dev,
Werner Lemberg988440e2006-07-18 17:00:22 +020072 usb_rcvctrlpipe(serial->dev, 0),
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070073 request, requesttype, value, index,
74 buf, 0x0000001, 1000);
75}
76
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070077static int ark3116_attach(struct usb_serial *serial)
78{
79 char *buf;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070080
81 buf = kmalloc(1, GFP_KERNEL);
82 if (!buf) {
Werner Lemberg988440e2006-07-18 17:00:22 +020083 dbg("error kmalloc -> out of mem?");
Alan Coxfe1ae7f2009-09-19 13:13:33 -070084 return -ENOMEM;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070085 }
86
87 /* 3 */
Werner Lemberg988440e2006-07-18 17:00:22 +020088 ARK3116_SND(serial, 3, 0xFE, 0x40, 0x0008, 0x0002);
89 ARK3116_SND(serial, 4, 0xFE, 0x40, 0x0008, 0x0001);
90 ARK3116_SND(serial, 5, 0xFE, 0x40, 0x0000, 0x0008);
91 ARK3116_SND(serial, 6, 0xFE, 0x40, 0x0000, 0x000B);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070092
93 /* <-- seq7 */
Werner Lemberg988440e2006-07-18 17:00:22 +020094 ARK3116_RCV(serial, 7, 0xFE, 0xC0, 0x0000, 0x0003, 0x00, buf);
95 ARK3116_SND(serial, 8, 0xFE, 0x40, 0x0080, 0x0003);
96 ARK3116_SND(serial, 9, 0xFE, 0x40, 0x001A, 0x0000);
97 ARK3116_SND(serial, 10, 0xFE, 0x40, 0x0000, 0x0001);
98 ARK3116_SND(serial, 11, 0xFE, 0x40, 0x0000, 0x0003);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -070099
100 /* <-- seq12 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200101 ARK3116_RCV(serial, 12, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
102 ARK3116_SND(serial, 13, 0xFE, 0x40, 0x0000, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700103
104 /* 14 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200105 ARK3116_RCV(serial, 14, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
106 ARK3116_SND(serial, 15, 0xFE, 0x40, 0x0000, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700107
108 /* 16 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200109 ARK3116_RCV(serial, 16, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700110 /* --> seq17 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200111 ARK3116_SND(serial, 17, 0xFE, 0x40, 0x0001, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700112
113 /* <-- seq18 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200114 ARK3116_RCV(serial, 18, 0xFE, 0xC0, 0x0000, 0x0004, 0x01, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700115
116 /* --> seq19 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200117 ARK3116_SND(serial, 19, 0xFE, 0x40, 0x0003, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700118
119 /* <-- seq20 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200120 /* seems like serial port status info (RTS, CTS, ...) */
121 /* returns modem control line status?! */
122 ARK3116_RCV(serial, 20, 0xFE, 0xC0, 0x0000, 0x0006, 0xFF, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700123
Werner Lemberg988440e2006-07-18 17:00:22 +0200124 /* set 9600 baud & do some init?! */
125 ARK3116_SND(serial, 147, 0xFE, 0x40, 0x0083, 0x0003);
126 ARK3116_SND(serial, 148, 0xFE, 0x40, 0x0038, 0x0000);
127 ARK3116_SND(serial, 149, 0xFE, 0x40, 0x0001, 0x0001);
128 ARK3116_SND(serial, 150, 0xFE, 0x40, 0x0003, 0x0003);
129 ARK3116_RCV(serial, 151, 0xFE, 0xC0, 0x0000, 0x0004, 0x03, buf);
130 ARK3116_SND(serial, 152, 0xFE, 0x40, 0x0000, 0x0003);
131 ARK3116_RCV(serial, 153, 0xFE, 0xC0, 0x0000, 0x0003, 0x00, buf);
132 ARK3116_SND(serial, 154, 0xFE, 0x40, 0x0003, 0x0003);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700133
134 kfree(buf);
Werner Lemberg988440e2006-07-18 17:00:22 +0200135 return 0;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700136}
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700137
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700138static void ark3116_init_termios(struct tty_struct *tty)
139{
140 struct ktermios *termios = tty->termios;
141 *termios = tty_std_termios;
142 termios->c_cflag = B9600 | CS8
143 | CREAD | HUPCL | CLOCAL;
144 termios->c_ispeed = 9600;
145 termios->c_ospeed = 9600;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700146}
147
Alan Cox95da3102008-07-22 11:09:07 +0100148static void ark3116_set_termios(struct tty_struct *tty,
149 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -0800150 struct ktermios *old_termios)
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700151{
152 struct usb_serial *serial = port->serial;
Alan Cox95da3102008-07-22 11:09:07 +0100153 struct ktermios *termios = tty->termios;
Alan Coxadb5dca2007-10-18 01:24:17 -0700154 unsigned int cflag = termios->c_cflag;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700155 int baud;
156 int ark3116_baud;
157 char *buf;
158 char config;
159
160 config = 0;
161
Harvey Harrison441b62c2008-03-03 16:08:34 -0800162 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700163
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700164
Alan Coxadb5dca2007-10-18 01:24:17 -0700165 cflag = termios->c_cflag;
166 termios->c_cflag &= ~(CMSPAR|CRTSCTS);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700167
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700168 buf = kmalloc(1, GFP_KERNEL);
169 if (!buf) {
170 dbg("error kmalloc");
Alan Cox95da3102008-07-22 11:09:07 +0100171 *termios = *old_termios;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700172 return;
173 }
174
175 /* set data bit count (8/7/6/5) */
Werner Lemberg988440e2006-07-18 17:00:22 +0200176 if (cflag & CSIZE) {
177 switch (cflag & CSIZE) {
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700178 case CS5:
179 config |= 0x00;
180 dbg("setting CS5");
181 break;
182 case CS6:
183 config |= 0x01;
184 dbg("setting CS6");
185 break;
186 case CS7:
187 config |= 0x02;
188 dbg("setting CS7");
189 break;
190 default:
Alan Cox568c24a2007-06-22 14:36:29 +0100191 dbg("CSIZE was set but not CS5-CS8, using CS8!");
Werner Lemberg988440e2006-07-18 17:00:22 +0200192 /* fall through */
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700193 case CS8:
194 config |= 0x03;
195 dbg("setting CS8");
196 break;
197 }
198 }
199
Werner Lemberg988440e2006-07-18 17:00:22 +0200200 /* set parity (NONE/EVEN/ODD) */
201 if (cflag & PARENB) {
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700202 if (cflag & PARODD) {
203 config |= 0x08;
204 dbg("setting parity to ODD");
205 } else {
206 config |= 0x18;
207 dbg("setting parity to EVEN");
208 }
209 } else {
210 dbg("setting parity to NONE");
211 }
212
Werner Lemberg988440e2006-07-18 17:00:22 +0200213 /* set stop bit (1/2) */
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700214 if (cflag & CSTOPB) {
215 config |= 0x04;
Werner Lemberg988440e2006-07-18 17:00:22 +0200216 dbg("setting 2 stop bits");
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700217 } else {
Werner Lemberg988440e2006-07-18 17:00:22 +0200218 dbg("setting 1 stop bit");
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700219 }
220
Werner Lemberg988440e2006-07-18 17:00:22 +0200221 /* set baudrate */
Alan Cox95da3102008-07-22 11:09:07 +0100222 baud = tty_get_baud_rate(tty);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700223
Alan Cox568c24a2007-06-22 14:36:29 +0100224 switch (baud) {
Alan Coxc4d0f8c2008-04-29 14:35:39 +0100225 case 75:
226 case 150:
227 case 300:
228 case 600:
229 case 1200:
230 case 1800:
231 case 2400:
232 case 4800:
233 case 9600:
234 case 19200:
235 case 38400:
236 case 57600:
237 case 115200:
238 case 230400:
239 case 460800:
240 /* Report the resulting rate back to the caller */
Alan Cox95da3102008-07-22 11:09:07 +0100241 tty_encode_baud_rate(tty, baud, baud);
Alan Coxc4d0f8c2008-04-29 14:35:39 +0100242 break;
243 /* set 9600 as default (if given baudrate is invalid for example) */
244 default:
Alan Cox95da3102008-07-22 11:09:07 +0100245 tty_encode_baud_rate(tty, 9600, 9600);
Alan Coxc4d0f8c2008-04-29 14:35:39 +0100246 case 0:
247 baud = 9600;
Alan Cox568c24a2007-06-22 14:36:29 +0100248 }
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700249
250 /*
251 * found by try'n'error, be careful, maybe there are other options
Alan Cox568c24a2007-06-22 14:36:29 +0100252 * for multiplicator etc! (3.5 for example)
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700253 */
254 if (baud == 460800)
255 /* strange, for 460800 the formula is wrong
Werner Lemberg988440e2006-07-18 17:00:22 +0200256 * if using round() then 9600baud is wrong) */
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700257 ark3116_baud = 7;
258 else
259 ark3116_baud = 3000000 / baud;
260
261 /* ? */
Werner Lemberg988440e2006-07-18 17:00:22 +0200262 ARK3116_RCV(serial, 0, 0xFE, 0xC0, 0x0000, 0x0003, 0x03, buf);
263
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700264 /* offset = buf[0]; */
265 /* offset = 0x03; */
Werner Lemberg988440e2006-07-18 17:00:22 +0200266 /* dbg("using 0x%04X as target for 0x0003:", 0x0080 + offset); */
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700267
268 /* set baudrate */
Werner Lemberg988440e2006-07-18 17:00:22 +0200269 dbg("setting baudrate to %d (->reg=%d)", baud, ark3116_baud);
270 ARK3116_SND(serial, 147, 0xFE, 0x40, 0x0083, 0x0003);
271 ARK3116_SND(serial, 148, 0xFE, 0x40,
272 (ark3116_baud & 0x00FF), 0x0000);
273 ARK3116_SND(serial, 149, 0xFE, 0x40,
274 (ark3116_baud & 0xFF00) >> 8, 0x0001);
275 ARK3116_SND(serial, 150, 0xFE, 0x40, 0x0003, 0x0003);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700276
277 /* ? */
Werner Lemberg988440e2006-07-18 17:00:22 +0200278 ARK3116_RCV(serial, 151, 0xFE, 0xC0, 0x0000, 0x0004, 0x03, buf);
279 ARK3116_SND(serial, 152, 0xFE, 0x40, 0x0000, 0x0003);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700280
281 /* set data bit count, stop bit count & parity: */
282 dbg("updating bit count, stop bit or parity (cfg=0x%02X)", config);
Werner Lemberg988440e2006-07-18 17:00:22 +0200283 ARK3116_RCV(serial, 153, 0xFE, 0xC0, 0x0000, 0x0003, 0x00, buf);
284 ARK3116_SND(serial, 154, 0xFE, 0x40, config, 0x0003);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700285
286 if (cflag & CRTSCTS)
Werner Lemberg988440e2006-07-18 17:00:22 +0200287 dbg("CRTSCTS not supported by chipset?!");
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700288
Werner Lemberg988440e2006-07-18 17:00:22 +0200289 /* TEST ARK3116_SND(154, 0xFE, 0x40, 0xFFFF, 0x0006); */
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700290
291 kfree(buf);
Alan Coxadb5dca2007-10-18 01:24:17 -0700292
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700293 return;
294}
295
Alan Coxa509a7e2009-09-19 13:13:26 -0700296static int ark3116_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700297{
Alan Cox606d0992006-12-08 02:38:45 -0800298 struct ktermios tmp_termios;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700299 struct usb_serial *serial = port->serial;
300 char *buf;
301 int result = 0;
302
Harvey Harrison441b62c2008-03-03 16:08:34 -0800303 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700304
305 buf = kmalloc(1, GFP_KERNEL);
306 if (!buf) {
Werner Lemberg988440e2006-07-18 17:00:22 +0200307 dbg("error kmalloc -> out of mem?");
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700308 return -ENOMEM;
309 }
310
Alan Coxa509a7e2009-09-19 13:13:26 -0700311 result = usb_serial_generic_open(tty, port);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700312 if (result)
Oliver Neukum4edf2c82007-03-26 18:12:44 +0200313 goto err_out;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700314
315 /* open */
Werner Lemberg988440e2006-07-18 17:00:22 +0200316 ARK3116_RCV(serial, 111, 0xFE, 0xC0, 0x0000, 0x0003, 0x02, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700317
Werner Lemberg988440e2006-07-18 17:00:22 +0200318 ARK3116_SND(serial, 112, 0xFE, 0x40, 0x0082, 0x0003);
319 ARK3116_SND(serial, 113, 0xFE, 0x40, 0x001A, 0x0000);
320 ARK3116_SND(serial, 114, 0xFE, 0x40, 0x0000, 0x0001);
321 ARK3116_SND(serial, 115, 0xFE, 0x40, 0x0002, 0x0003);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700322
Werner Lemberg988440e2006-07-18 17:00:22 +0200323 ARK3116_RCV(serial, 116, 0xFE, 0xC0, 0x0000, 0x0004, 0x03, buf);
324 ARK3116_SND(serial, 117, 0xFE, 0x40, 0x0002, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700325
Werner Lemberg988440e2006-07-18 17:00:22 +0200326 ARK3116_RCV(serial, 118, 0xFE, 0xC0, 0x0000, 0x0004, 0x02, buf);
327 ARK3116_SND(serial, 119, 0xFE, 0x40, 0x0000, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700328
Werner Lemberg988440e2006-07-18 17:00:22 +0200329 ARK3116_RCV(serial, 120, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700330
Werner Lemberg988440e2006-07-18 17:00:22 +0200331 ARK3116_SND(serial, 121, 0xFE, 0x40, 0x0001, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700332
Werner Lemberg988440e2006-07-18 17:00:22 +0200333 ARK3116_RCV(serial, 122, 0xFE, 0xC0, 0x0000, 0x0004, 0x01, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700334
Werner Lemberg988440e2006-07-18 17:00:22 +0200335 ARK3116_SND(serial, 123, 0xFE, 0x40, 0x0003, 0x0004);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700336
Werner Lemberg988440e2006-07-18 17:00:22 +0200337 /* returns different values (control lines?!) */
338 ARK3116_RCV(serial, 124, 0xFE, 0xC0, 0x0000, 0x0006, 0xFF, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700339
Werner Lemberg988440e2006-07-18 17:00:22 +0200340 /* initialise termios */
Alan Cox95da3102008-07-22 11:09:07 +0100341 if (tty)
342 ark3116_set_termios(tty, port, &tmp_termios);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700343
Oliver Neukum4edf2c82007-03-26 18:12:44 +0200344err_out:
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700345 kfree(buf);
346
347 return result;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700348}
349
Alan Cox95da3102008-07-22 11:09:07 +0100350static int ark3116_ioctl(struct tty_struct *tty, struct file *file,
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700351 unsigned int cmd, unsigned long arg)
352{
Alan Cox95da3102008-07-22 11:09:07 +0100353 struct usb_serial_port *port = tty->driver_data;
Werner Lemberg2f430b42006-07-18 17:00:52 +0200354 struct serial_struct serstruct;
355 void __user *user_arg = (void __user *)arg;
356
357 switch (cmd) {
358 case TIOCGSERIAL:
359 /* XXX: Some of these values are probably wrong. */
Alan Coxc4d0f8c2008-04-29 14:35:39 +0100360 memset(&serstruct, 0, sizeof(serstruct));
Werner Lemberg2f430b42006-07-18 17:00:52 +0200361 serstruct.type = PORT_16654;
362 serstruct.line = port->serial->minor;
363 serstruct.port = port->number;
364 serstruct.custom_divisor = 0;
365 serstruct.baud_base = 460800;
366
Alan Coxc4d0f8c2008-04-29 14:35:39 +0100367 if (copy_to_user(user_arg, &serstruct, sizeof(serstruct)))
Werner Lemberg2f430b42006-07-18 17:00:52 +0200368 return -EFAULT;
369
370 return 0;
371 case TIOCSSERIAL:
Alan Coxc4d0f8c2008-04-29 14:35:39 +0100372 if (copy_from_user(&serstruct, user_arg, sizeof(serstruct)))
Werner Lemberg2f430b42006-07-18 17:00:52 +0200373 return -EFAULT;
374 return 0;
375 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800376 dbg("%s cmd 0x%04x not supported", __func__, cmd);
Werner Lemberg2f430b42006-07-18 17:00:52 +0200377 break;
378 }
379
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700380 return -ENOIOCTLCMD;
381}
382
Alan Cox95da3102008-07-22 11:09:07 +0100383static int ark3116_tiocmget(struct tty_struct *tty, struct file *file)
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700384{
Alan Cox95da3102008-07-22 11:09:07 +0100385 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700386 struct usb_serial *serial = port->serial;
387 char *buf;
388 char temp;
389
Werner Lemberg988440e2006-07-18 17:00:22 +0200390 /* seems like serial port status info (RTS, CTS, ...) is stored
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700391 * in reg(?) 0x0006
392 * pcb connection point 11 = GND -> sets bit4 of response
393 * pcb connection point 7 = GND -> sets bit6 of response
394 */
395
396 buf = kmalloc(1, GFP_KERNEL);
397 if (!buf) {
398 dbg("error kmalloc");
399 return -ENOMEM;
400 }
401
Werner Lemberg988440e2006-07-18 17:00:22 +0200402 /* read register */
403 ARK3116_RCV_QUIET(serial, 0xFE, 0xC0, 0x0000, 0x0006, buf);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700404 temp = buf[0];
405 kfree(buf);
406
Werner Lemberg988440e2006-07-18 17:00:22 +0200407 /* i do not really know if bit4=CTS and bit6=DSR... just a
408 * quick guess!
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700409 */
Werner Lemberg988440e2006-07-18 17:00:22 +0200410 return (temp & (1<<4) ? TIOCM_CTS : 0)
411 | (temp & (1<<6) ? TIOCM_DSR : 0);
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700412}
413
414static struct usb_driver ark3116_driver = {
415 .name = "ark3116",
416 .probe = usb_serial_probe,
417 .disconnect = usb_serial_disconnect,
418 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100419 .no_dynamic_id = 1,
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700420};
421
422static struct usb_serial_driver ark3116_device = {
423 .driver = {
424 .owner = THIS_MODULE,
425 .name = "ark3116",
426 },
427 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100428 .usb_driver = &ark3116_driver,
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700429 .num_ports = 1,
430 .attach = ark3116_attach,
431 .set_termios = ark3116_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700432 .init_termios = ark3116_init_termios,
Greg Kroah-Hartman815ddc92006-05-12 11:05:29 -0700433 .ioctl = ark3116_ioctl,
434 .tiocmget = ark3116_tiocmget,
435 .open = ark3116_open,
436};
437
438static int __init ark3116_init(void)
439{
440 int retval;
441
442 retval = usb_serial_register(&ark3116_device);
443 if (retval)
444 return retval;
445 retval = usb_register(&ark3116_driver);
446 if (retval)
447 usb_serial_deregister(&ark3116_device);
448 return retval;
449}
450
451static void __exit ark3116_exit(void)
452{
453 usb_deregister(&ark3116_driver);
454 usb_serial_deregister(&ark3116_device);
455}
456
457module_init(ark3116_init);
458module_exit(ark3116_exit);
459MODULE_LICENSE("GPL");
460
461module_param(debug, bool, S_IRUGO | S_IWUSR);
462MODULE_PARM_DESC(debug, "Debug enabled or not");
463