ark3116.c 12 KB

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