ark3116.c 11 KB

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