ark3116.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. /*
  2. * Copyright (C) 2006
  3. * Simon Schulz (ark3116_driver <at> auctionant.de)
  4. *
  5. * 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. *
  14. * 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. #include <linux/kernel.h>
  20. #include <linux/init.h>
  21. #include <linux/tty.h>
  22. #include <linux/module.h>
  23. #include <linux/usb.h>
  24. #include <linux/usb/serial.h>
  25. #include <linux/serial.h>
  26. #include <asm/uaccess.h>
  27. static int debug;
  28. static struct usb_device_id id_table [] = {
  29. { USB_DEVICE(0x6547, 0x0232) },
  30. { },
  31. };
  32. MODULE_DEVICE_TABLE(usb, id_table);
  33. struct ark3116_private {
  34. spinlock_t lock;
  35. u8 termios_initialized;
  36. };
  37. static inline void ARK3116_SND(struct usb_serial *serial, int seq,
  38. __u8 request, __u8 requesttype,
  39. __u16 value, __u16 index)
  40. {
  41. int result;
  42. result = usb_control_msg(serial->dev,
  43. usb_sndctrlpipe(serial->dev, 0),
  44. request, requesttype, value, index,
  45. NULL, 0x00, 1000);
  46. dbg("%03d > ok", seq);
  47. }
  48. static inline void ARK3116_RCV(struct usb_serial *serial, int seq,
  49. __u8 request, __u8 requesttype,
  50. __u16 value, __u16 index, __u8 expected,
  51. char *buf)
  52. {
  53. int result;
  54. result = usb_control_msg(serial->dev,
  55. usb_rcvctrlpipe(serial->dev, 0),
  56. request, requesttype, value, index,
  57. buf, 0x0000001, 1000);
  58. if (result)
  59. dbg("%03d < %d bytes [0x%02X]", seq, result,
  60. ((unsigned char *)buf)[0]);
  61. else
  62. dbg("%03d < 0 bytes", seq);
  63. }
  64. static inline void ARK3116_RCV_QUIET(struct usb_serial *serial,
  65. __u8 request, __u8 requesttype,
  66. __u16 value, __u16 index, char *buf)
  67. {
  68. usb_control_msg(serial->dev,
  69. usb_rcvctrlpipe(serial->dev, 0),
  70. request, requesttype, value, index,
  71. buf, 0x0000001, 1000);
  72. }
  73. static int ark3116_attach(struct usb_serial *serial)
  74. {
  75. char *buf;
  76. struct ark3116_private *priv;
  77. int i;
  78. for (i = 0; i < serial->num_ports; ++i) {
  79. priv = kzalloc(sizeof(struct ark3116_private), GFP_KERNEL);
  80. if (!priv)
  81. goto cleanup;
  82. spin_lock_init(&priv->lock);
  83. usb_set_serial_port_data(serial->port[i], priv);
  84. }
  85. buf = kmalloc(1, GFP_KERNEL);
  86. if (!buf) {
  87. dbg("error kmalloc -> out of mem?");
  88. goto cleanup;
  89. }
  90. /* 3 */
  91. ARK3116_SND(serial, 3, 0xFE, 0x40, 0x0008, 0x0002);
  92. ARK3116_SND(serial, 4, 0xFE, 0x40, 0x0008, 0x0001);
  93. ARK3116_SND(serial, 5, 0xFE, 0x40, 0x0000, 0x0008);
  94. ARK3116_SND(serial, 6, 0xFE, 0x40, 0x0000, 0x000B);
  95. /* <-- seq7 */
  96. ARK3116_RCV(serial, 7, 0xFE, 0xC0, 0x0000, 0x0003, 0x00, buf);
  97. ARK3116_SND(serial, 8, 0xFE, 0x40, 0x0080, 0x0003);
  98. ARK3116_SND(serial, 9, 0xFE, 0x40, 0x001A, 0x0000);
  99. ARK3116_SND(serial, 10, 0xFE, 0x40, 0x0000, 0x0001);
  100. ARK3116_SND(serial, 11, 0xFE, 0x40, 0x0000, 0x0003);
  101. /* <-- seq12 */
  102. ARK3116_RCV(serial, 12, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
  103. ARK3116_SND(serial, 13, 0xFE, 0x40, 0x0000, 0x0004);
  104. /* 14 */
  105. ARK3116_RCV(serial, 14, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
  106. ARK3116_SND(serial, 15, 0xFE, 0x40, 0x0000, 0x0004);
  107. /* 16 */
  108. ARK3116_RCV(serial, 16, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
  109. /* --> seq17 */
  110. ARK3116_SND(serial, 17, 0xFE, 0x40, 0x0001, 0x0004);
  111. /* <-- seq18 */
  112. ARK3116_RCV(serial, 18, 0xFE, 0xC0, 0x0000, 0x0004, 0x01, buf);
  113. /* --> seq19 */
  114. ARK3116_SND(serial, 19, 0xFE, 0x40, 0x0003, 0x0004);
  115. /* <-- seq20 */
  116. /* seems like serial port status info (RTS, CTS, ...) */
  117. /* returns modem control line status?! */
  118. ARK3116_RCV(serial, 20, 0xFE, 0xC0, 0x0000, 0x0006, 0xFF, buf);
  119. /* set 9600 baud & do some init?! */
  120. ARK3116_SND(serial, 147, 0xFE, 0x40, 0x0083, 0x0003);
  121. ARK3116_SND(serial, 148, 0xFE, 0x40, 0x0038, 0x0000);
  122. ARK3116_SND(serial, 149, 0xFE, 0x40, 0x0001, 0x0001);
  123. ARK3116_SND(serial, 150, 0xFE, 0x40, 0x0003, 0x0003);
  124. ARK3116_RCV(serial, 151, 0xFE, 0xC0, 0x0000, 0x0004, 0x03, buf);
  125. ARK3116_SND(serial, 152, 0xFE, 0x40, 0x0000, 0x0003);
  126. ARK3116_RCV(serial, 153, 0xFE, 0xC0, 0x0000, 0x0003, 0x00, buf);
  127. ARK3116_SND(serial, 154, 0xFE, 0x40, 0x0003, 0x0003);
  128. kfree(buf);
  129. return 0;
  130. cleanup:
  131. for (--i; i >= 0; --i)
  132. usb_set_serial_port_data(serial->port[i], NULL);
  133. return -ENOMEM;
  134. }
  135. static void ark3116_set_termios(struct usb_serial_port *port,
  136. struct ktermios *old_termios)
  137. {
  138. struct usb_serial *serial = port->serial;
  139. struct ark3116_private *priv = usb_get_serial_port_data(port);
  140. unsigned int cflag = port->tty->termios->c_cflag;
  141. unsigned long flags;
  142. int baud;
  143. int ark3116_baud;
  144. char *buf;
  145. char config;
  146. config = 0;
  147. dbg("%s - port %d", __FUNCTION__, port->number);
  148. spin_lock_irqsave(&priv->lock, flags);
  149. if (!priv->termios_initialized) {
  150. *(port->tty->termios) = tty_std_termios;
  151. port->tty->termios->c_cflag = B9600 | CS8
  152. | CREAD | HUPCL | CLOCAL;
  153. priv->termios_initialized = 1;
  154. }
  155. spin_unlock_irqrestore(&priv->lock, flags);
  156. cflag = port->tty->termios->c_cflag;
  157. buf = kmalloc(1, GFP_KERNEL);
  158. if (!buf) {
  159. dbg("error kmalloc");
  160. return;
  161. }
  162. /* set data bit count (8/7/6/5) */
  163. if (cflag & CSIZE) {
  164. switch (cflag & CSIZE) {
  165. case CS5:
  166. config |= 0x00;
  167. dbg("setting CS5");
  168. break;
  169. case CS6:
  170. config |= 0x01;
  171. dbg("setting CS6");
  172. break;
  173. case CS7:
  174. config |= 0x02;
  175. dbg("setting CS7");
  176. break;
  177. default:
  178. dbg("CSIZE was set but not CS5-CS8, using CS8!");
  179. /* fall through */
  180. case CS8:
  181. config |= 0x03;
  182. dbg("setting CS8");
  183. break;
  184. }
  185. }
  186. /* set parity (NONE/EVEN/ODD) */
  187. if (cflag & PARENB) {
  188. if (cflag & PARODD) {
  189. config |= 0x08;
  190. dbg("setting parity to ODD");
  191. } else {
  192. config |= 0x18;
  193. dbg("setting parity to EVEN");
  194. }
  195. } else {
  196. dbg("setting parity to NONE");
  197. }
  198. /* set stop bit (1/2) */
  199. if (cflag & CSTOPB) {
  200. config |= 0x04;
  201. dbg("setting 2 stop bits");
  202. } else {
  203. dbg("setting 1 stop bit");
  204. }
  205. /* set baudrate */
  206. baud = tty_get_baud_rate(port->tty);
  207. switch (baud) {
  208. case 75:
  209. case 150:
  210. case 300:
  211. case 600:
  212. case 1200:
  213. case 1800:
  214. case 2400:
  215. case 4800:
  216. case 9600:
  217. case 19200:
  218. case 38400:
  219. case 57600:
  220. case 115200:
  221. case 230400:
  222. case 460800:
  223. break;
  224. /* set 9600 as default (if given baudrate is invalid for example) */
  225. default:
  226. baud = 9600;
  227. }
  228. /*
  229. * found by try'n'error, be careful, maybe there are other options
  230. * for multiplicator etc! (3.5 for example)
  231. */
  232. if (baud == 460800)
  233. /* strange, for 460800 the formula is wrong
  234. * if using round() then 9600baud is wrong) */
  235. ark3116_baud = 7;
  236. else
  237. ark3116_baud = 3000000 / baud;
  238. /* ? */
  239. ARK3116_RCV(serial, 0, 0xFE, 0xC0, 0x0000, 0x0003, 0x03, buf);
  240. /* offset = buf[0]; */
  241. /* offset = 0x03; */
  242. /* dbg("using 0x%04X as target for 0x0003:", 0x0080 + offset); */
  243. /* set baudrate */
  244. dbg("setting baudrate to %d (->reg=%d)", baud, ark3116_baud);
  245. ARK3116_SND(serial, 147, 0xFE, 0x40, 0x0083, 0x0003);
  246. ARK3116_SND(serial, 148, 0xFE, 0x40,
  247. (ark3116_baud & 0x00FF), 0x0000);
  248. ARK3116_SND(serial, 149, 0xFE, 0x40,
  249. (ark3116_baud & 0xFF00) >> 8, 0x0001);
  250. ARK3116_SND(serial, 150, 0xFE, 0x40, 0x0003, 0x0003);
  251. /* ? */
  252. ARK3116_RCV(serial, 151, 0xFE, 0xC0, 0x0000, 0x0004, 0x03, buf);
  253. ARK3116_SND(serial, 152, 0xFE, 0x40, 0x0000, 0x0003);
  254. /* set data bit count, stop bit count & parity: */
  255. dbg("updating bit count, stop bit or parity (cfg=0x%02X)", config);
  256. ARK3116_RCV(serial, 153, 0xFE, 0xC0, 0x0000, 0x0003, 0x00, buf);
  257. ARK3116_SND(serial, 154, 0xFE, 0x40, config, 0x0003);
  258. if (cflag & CRTSCTS)
  259. dbg("CRTSCTS not supported by chipset?!");
  260. /* TEST ARK3116_SND(154, 0xFE, 0x40, 0xFFFF, 0x0006); */
  261. kfree(buf);
  262. return;
  263. }
  264. static int ark3116_open(struct usb_serial_port *port, struct file *filp)
  265. {
  266. struct ktermios tmp_termios;
  267. struct usb_serial *serial = port->serial;
  268. char *buf;
  269. int result = 0;
  270. dbg("%s - port %d", __FUNCTION__, port->number);
  271. buf = kmalloc(1, GFP_KERNEL);
  272. if (!buf) {
  273. dbg("error kmalloc -> out of mem?");
  274. return -ENOMEM;
  275. }
  276. result = usb_serial_generic_open(port, filp);
  277. if (result)
  278. goto err_out;
  279. /* open */
  280. ARK3116_RCV(serial, 111, 0xFE, 0xC0, 0x0000, 0x0003, 0x02, buf);
  281. ARK3116_SND(serial, 112, 0xFE, 0x40, 0x0082, 0x0003);
  282. ARK3116_SND(serial, 113, 0xFE, 0x40, 0x001A, 0x0000);
  283. ARK3116_SND(serial, 114, 0xFE, 0x40, 0x0000, 0x0001);
  284. ARK3116_SND(serial, 115, 0xFE, 0x40, 0x0002, 0x0003);
  285. ARK3116_RCV(serial, 116, 0xFE, 0xC0, 0x0000, 0x0004, 0x03, buf);
  286. ARK3116_SND(serial, 117, 0xFE, 0x40, 0x0002, 0x0004);
  287. ARK3116_RCV(serial, 118, 0xFE, 0xC0, 0x0000, 0x0004, 0x02, buf);
  288. ARK3116_SND(serial, 119, 0xFE, 0x40, 0x0000, 0x0004);
  289. ARK3116_RCV(serial, 120, 0xFE, 0xC0, 0x0000, 0x0004, 0x00, buf);
  290. ARK3116_SND(serial, 121, 0xFE, 0x40, 0x0001, 0x0004);
  291. ARK3116_RCV(serial, 122, 0xFE, 0xC0, 0x0000, 0x0004, 0x01, buf);
  292. ARK3116_SND(serial, 123, 0xFE, 0x40, 0x0003, 0x0004);
  293. /* returns different values (control lines?!) */
  294. ARK3116_RCV(serial, 124, 0xFE, 0xC0, 0x0000, 0x0006, 0xFF, buf);
  295. /* initialise termios */
  296. if (port->tty)
  297. ark3116_set_termios(port, &tmp_termios);
  298. err_out:
  299. kfree(buf);
  300. return result;
  301. }
  302. static int ark3116_ioctl(struct usb_serial_port *port, struct file *file,
  303. unsigned int cmd, unsigned long arg)
  304. {
  305. struct serial_struct serstruct;
  306. void __user *user_arg = (void __user *)arg;
  307. switch (cmd) {
  308. case TIOCGSERIAL:
  309. /* XXX: Some of these values are probably wrong. */
  310. memset(&serstruct, 0, sizeof (serstruct));
  311. serstruct.type = PORT_16654;
  312. serstruct.line = port->serial->minor;
  313. serstruct.port = port->number;
  314. serstruct.custom_divisor = 0;
  315. serstruct.baud_base = 460800;
  316. if (copy_to_user(user_arg, &serstruct, sizeof (serstruct)))
  317. return -EFAULT;
  318. return 0;
  319. case TIOCSSERIAL:
  320. if (copy_from_user(&serstruct, user_arg, sizeof (serstruct)))
  321. return -EFAULT;
  322. return 0;
  323. default:
  324. dbg("%s cmd 0x%04x not supported", __FUNCTION__, cmd);
  325. break;
  326. }
  327. return -ENOIOCTLCMD;
  328. }
  329. static int ark3116_tiocmget(struct usb_serial_port *port, struct file *file)
  330. {
  331. struct usb_serial *serial = port->serial;
  332. char *buf;
  333. char temp;
  334. /* seems like serial port status info (RTS, CTS, ...) is stored
  335. * in reg(?) 0x0006
  336. * pcb connection point 11 = GND -> sets bit4 of response
  337. * pcb connection point 7 = GND -> sets bit6 of response
  338. */
  339. buf = kmalloc(1, GFP_KERNEL);
  340. if (!buf) {
  341. dbg("error kmalloc");
  342. return -ENOMEM;
  343. }
  344. /* read register */
  345. ARK3116_RCV_QUIET(serial, 0xFE, 0xC0, 0x0000, 0x0006, buf);
  346. temp = buf[0];
  347. kfree(buf);
  348. /* i do not really know if bit4=CTS and bit6=DSR... just a
  349. * quick guess!
  350. */
  351. return (temp & (1<<4) ? TIOCM_CTS : 0)
  352. | (temp & (1<<6) ? TIOCM_DSR : 0);
  353. }
  354. static struct usb_driver ark3116_driver = {
  355. .name = "ark3116",
  356. .probe = usb_serial_probe,
  357. .disconnect = usb_serial_disconnect,
  358. .id_table = id_table,
  359. .no_dynamic_id = 1,
  360. };
  361. static struct usb_serial_driver ark3116_device = {
  362. .driver = {
  363. .owner = THIS_MODULE,
  364. .name = "ark3116",
  365. },
  366. .id_table = id_table,
  367. .usb_driver = &ark3116_driver,
  368. .num_interrupt_in = 1,
  369. .num_bulk_in = 1,
  370. .num_bulk_out = 1,
  371. .num_ports = 1,
  372. .attach = ark3116_attach,
  373. .set_termios = ark3116_set_termios,
  374. .ioctl = ark3116_ioctl,
  375. .tiocmget = ark3116_tiocmget,
  376. .open = ark3116_open,
  377. };
  378. static int __init ark3116_init(void)
  379. {
  380. int retval;
  381. retval = usb_serial_register(&ark3116_device);
  382. if (retval)
  383. return retval;
  384. retval = usb_register(&ark3116_driver);
  385. if (retval)
  386. usb_serial_deregister(&ark3116_device);
  387. return retval;
  388. }
  389. static void __exit ark3116_exit(void)
  390. {
  391. usb_deregister(&ark3116_driver);
  392. usb_serial_deregister(&ark3116_device);
  393. }
  394. module_init(ark3116_init);
  395. module_exit(ark3116_exit);
  396. MODULE_LICENSE("GPL");
  397. module_param(debug, bool, S_IRUGO | S_IWUSR);
  398. MODULE_PARM_DESC(debug, "Debug enabled or not");