cp2101.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. /*
  2. * Silicon Laboratories CP2101/CP2102 USB to RS232 serial adaptor driver
  3. *
  4. * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License version
  8. * 2 as published by the Free Software Foundation.
  9. *
  10. * Support to set flow control line levels using TIOCMGET and TIOCMSET
  11. * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow
  12. * control thanks to Munir Nassar nassarmu@real-time.com
  13. *
  14. * Outstanding Issues:
  15. * Buffers are not flushed when the port is opened.
  16. * Multiple calls to write() may fail with "Resource temporarily unavailable"
  17. *
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/errno.h>
  21. #include <linux/slab.h>
  22. #include <linux/tty.h>
  23. #include <linux/tty_flip.h>
  24. #include <linux/module.h>
  25. #include <linux/moduleparam.h>
  26. #include <linux/usb.h>
  27. #include <linux/uaccess.h>
  28. #include <linux/usb/serial.h>
  29. /*
  30. * Version Information
  31. */
  32. #define DRIVER_VERSION "v0.07"
  33. #define DRIVER_DESC "Silicon Labs CP2101/CP2102 RS232 serial adaptor driver"
  34. /*
  35. * Function Prototypes
  36. */
  37. static int cp2101_open(struct tty_struct *, struct usb_serial_port *,
  38. struct file *);
  39. static void cp2101_cleanup(struct usb_serial_port *);
  40. static void cp2101_close(struct tty_struct *, struct usb_serial_port *,
  41. struct file*);
  42. static void cp2101_get_termios(struct tty_struct *);
  43. static void cp2101_set_termios(struct tty_struct *, struct usb_serial_port *,
  44. struct ktermios*);
  45. static int cp2101_tiocmget(struct tty_struct *, struct file *);
  46. static int cp2101_tiocmset(struct tty_struct *, struct file *,
  47. unsigned int, unsigned int);
  48. static void cp2101_break_ctl(struct tty_struct *, int);
  49. static int cp2101_startup(struct usb_serial *);
  50. static void cp2101_shutdown(struct usb_serial *);
  51. static int debug;
  52. static struct usb_device_id id_table [] = {
  53. { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */
  54. { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */
  55. { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */
  56. { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */
  57. { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */
  58. { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */
  59. { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */
  60. { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */
  61. { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */
  62. { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */
  63. { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */
  64. { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */
  65. { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */
  66. { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */
  67. { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */
  68. { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */
  69. { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */
  70. { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */
  71. { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */
  72. { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */
  73. { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */
  74. { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */
  75. { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */
  76. { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */
  77. { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */
  78. { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */
  79. { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */
  80. { USB_DEVICE(0x10c4, 0x8293) }, /* Telegesys ETRX2USB */
  81. { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */
  82. { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */
  83. { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */
  84. { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */
  85. { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */
  86. { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */
  87. { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */
  88. { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */
  89. { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */
  90. { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */
  91. { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */
  92. { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */
  93. { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */
  94. { } /* Terminating Entry */
  95. };
  96. MODULE_DEVICE_TABLE(usb, id_table);
  97. static struct usb_driver cp2101_driver = {
  98. .name = "cp2101",
  99. .probe = usb_serial_probe,
  100. .disconnect = usb_serial_disconnect,
  101. .id_table = id_table,
  102. .no_dynamic_id = 1,
  103. };
  104. static struct usb_serial_driver cp2101_device = {
  105. .driver = {
  106. .owner = THIS_MODULE,
  107. .name = "cp2101",
  108. },
  109. .usb_driver = &cp2101_driver,
  110. .id_table = id_table,
  111. .num_ports = 1,
  112. .open = cp2101_open,
  113. .close = cp2101_close,
  114. .break_ctl = cp2101_break_ctl,
  115. .set_termios = cp2101_set_termios,
  116. .tiocmget = cp2101_tiocmget,
  117. .tiocmset = cp2101_tiocmset,
  118. .attach = cp2101_startup,
  119. .shutdown = cp2101_shutdown,
  120. };
  121. /* Config request types */
  122. #define REQTYPE_HOST_TO_DEVICE 0x41
  123. #define REQTYPE_DEVICE_TO_HOST 0xc1
  124. /* Config SET requests. To GET, add 1 to the request number */
  125. #define CP2101_UART 0x00 /* Enable / Disable */
  126. #define CP2101_BAUDRATE 0x01 /* (BAUD_RATE_GEN_FREQ / baudrate) */
  127. #define CP2101_BITS 0x03 /* 0x(0)(databits)(parity)(stopbits) */
  128. #define CP2101_BREAK 0x05 /* On / Off */
  129. #define CP2101_CONTROL 0x07 /* Flow control line states */
  130. #define CP2101_MODEMCTL 0x13 /* Modem controls */
  131. #define CP2101_CONFIG_6 0x19 /* 6 bytes of config data ??? */
  132. /* CP2101_UART */
  133. #define UART_ENABLE 0x0001
  134. #define UART_DISABLE 0x0000
  135. /* CP2101_BAUDRATE */
  136. #define BAUD_RATE_GEN_FREQ 0x384000
  137. /* CP2101_BITS */
  138. #define BITS_DATA_MASK 0X0f00
  139. #define BITS_DATA_5 0X0500
  140. #define BITS_DATA_6 0X0600
  141. #define BITS_DATA_7 0X0700
  142. #define BITS_DATA_8 0X0800
  143. #define BITS_DATA_9 0X0900
  144. #define BITS_PARITY_MASK 0x00f0
  145. #define BITS_PARITY_NONE 0x0000
  146. #define BITS_PARITY_ODD 0x0010
  147. #define BITS_PARITY_EVEN 0x0020
  148. #define BITS_PARITY_MARK 0x0030
  149. #define BITS_PARITY_SPACE 0x0040
  150. #define BITS_STOP_MASK 0x000f
  151. #define BITS_STOP_1 0x0000
  152. #define BITS_STOP_1_5 0x0001
  153. #define BITS_STOP_2 0x0002
  154. /* CP2101_BREAK */
  155. #define BREAK_ON 0x0000
  156. #define BREAK_OFF 0x0001
  157. /* CP2101_CONTROL */
  158. #define CONTROL_DTR 0x0001
  159. #define CONTROL_RTS 0x0002
  160. #define CONTROL_CTS 0x0010
  161. #define CONTROL_DSR 0x0020
  162. #define CONTROL_RING 0x0040
  163. #define CONTROL_DCD 0x0080
  164. #define CONTROL_WRITE_DTR 0x0100
  165. #define CONTROL_WRITE_RTS 0x0200
  166. /*
  167. * cp2101_get_config
  168. * Reads from the CP2101 configuration registers
  169. * 'size' is specified in bytes.
  170. * 'data' is a pointer to a pre-allocated array of integers large
  171. * enough to hold 'size' bytes (with 4 bytes to each integer)
  172. */
  173. static int cp2101_get_config(struct usb_serial_port *port, u8 request,
  174. unsigned int *data, int size)
  175. {
  176. struct usb_serial *serial = port->serial;
  177. __le32 *buf;
  178. int result, i, length;
  179. /* Number of integers required to contain the array */
  180. length = (((size - 1) | 3) + 1)/4;
  181. buf = kcalloc(length, sizeof(__le32), GFP_KERNEL);
  182. if (!buf) {
  183. dev_err(&port->dev, "%s - out of memory.\n", __func__);
  184. return -ENOMEM;
  185. }
  186. /* For get requests, the request number must be incremented */
  187. request++;
  188. /* Issue the request, attempting to read 'size' bytes */
  189. result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
  190. request, REQTYPE_DEVICE_TO_HOST, 0x0000,
  191. 0, buf, size, 300);
  192. /* Convert data into an array of integers */
  193. for (i = 0; i < length; i++)
  194. data[i] = le32_to_cpu(buf[i]);
  195. kfree(buf);
  196. if (result != size) {
  197. dev_err(&port->dev, "%s - Unable to send config request, "
  198. "request=0x%x size=%d result=%d\n",
  199. __func__, request, size, result);
  200. return -EPROTO;
  201. }
  202. return 0;
  203. }
  204. /*
  205. * cp2101_set_config
  206. * Writes to the CP2101 configuration registers
  207. * Values less than 16 bits wide are sent directly
  208. * 'size' is specified in bytes.
  209. */
  210. static int cp2101_set_config(struct usb_serial_port *port, u8 request,
  211. unsigned int *data, int size)
  212. {
  213. struct usb_serial *serial = port->serial;
  214. __le32 *buf;
  215. int result, i, length;
  216. /* Number of integers required to contain the array */
  217. length = (((size - 1) | 3) + 1)/4;
  218. buf = kmalloc(length * sizeof(__le32), GFP_KERNEL);
  219. if (!buf) {
  220. dev_err(&port->dev, "%s - out of memory.\n",
  221. __func__);
  222. return -ENOMEM;
  223. }
  224. /* Array of integers into bytes */
  225. for (i = 0; i < length; i++)
  226. buf[i] = cpu_to_le32(data[i]);
  227. if (size > 2) {
  228. result = usb_control_msg(serial->dev,
  229. usb_sndctrlpipe(serial->dev, 0),
  230. request, REQTYPE_HOST_TO_DEVICE, 0x0000,
  231. 0, buf, size, 300);
  232. } else {
  233. result = usb_control_msg(serial->dev,
  234. usb_sndctrlpipe(serial->dev, 0),
  235. request, REQTYPE_HOST_TO_DEVICE, data[0],
  236. 0, NULL, 0, 300);
  237. }
  238. kfree(buf);
  239. if ((size > 2 && result != size) || result < 0) {
  240. dev_err(&port->dev, "%s - Unable to send request, "
  241. "request=0x%x size=%d result=%d\n",
  242. __func__, request, size, result);
  243. return -EPROTO;
  244. }
  245. /* Single data value */
  246. result = usb_control_msg(serial->dev,
  247. usb_sndctrlpipe(serial->dev, 0),
  248. request, REQTYPE_HOST_TO_DEVICE, data[0],
  249. 0, NULL, 0, 300);
  250. return 0;
  251. }
  252. /*
  253. * cp2101_set_config_single
  254. * Convenience function for calling cp2101_set_config on single data values
  255. * without requiring an integer pointer
  256. */
  257. static inline int cp2101_set_config_single(struct usb_serial_port *port,
  258. u8 request, unsigned int data)
  259. {
  260. return cp2101_set_config(port, request, &data, 2);
  261. }
  262. static int cp2101_open(struct tty_struct *tty, struct usb_serial_port *port,
  263. struct file *filp)
  264. {
  265. struct usb_serial *serial = port->serial;
  266. int result;
  267. dbg("%s - port %d", __func__, port->number);
  268. if (cp2101_set_config_single(port, CP2101_UART, UART_ENABLE)) {
  269. dev_err(&port->dev, "%s - Unable to enable UART\n",
  270. __func__);
  271. return -EPROTO;
  272. }
  273. /* Start reading from the device */
  274. usb_fill_bulk_urb(port->read_urb, serial->dev,
  275. usb_rcvbulkpipe(serial->dev,
  276. port->bulk_in_endpointAddress),
  277. port->read_urb->transfer_buffer,
  278. port->read_urb->transfer_buffer_length,
  279. serial->type->read_bulk_callback,
  280. port);
  281. result = usb_submit_urb(port->read_urb, GFP_KERNEL);
  282. if (result) {
  283. dev_err(&port->dev, "%s - failed resubmitting read urb, "
  284. "error %d\n", __func__, result);
  285. return result;
  286. }
  287. /* Configure the termios structure */
  288. cp2101_get_termios(tty);
  289. /* Set the DTR and RTS pins low */
  290. cp2101_tiocmset(tty, NULL, TIOCM_DTR | TIOCM_RTS, 0);
  291. return 0;
  292. }
  293. static void cp2101_cleanup(struct usb_serial_port *port)
  294. {
  295. struct usb_serial *serial = port->serial;
  296. dbg("%s - port %d", __func__, port->number);
  297. if (serial->dev) {
  298. /* shutdown any bulk reads that might be going on */
  299. if (serial->num_bulk_out)
  300. usb_kill_urb(port->write_urb);
  301. if (serial->num_bulk_in)
  302. usb_kill_urb(port->read_urb);
  303. }
  304. }
  305. static void cp2101_close(struct tty_struct *tty, struct usb_serial_port *port,
  306. struct file *filp)
  307. {
  308. dbg("%s - port %d", __func__, port->number);
  309. /* shutdown our urbs */
  310. dbg("%s - shutting down urbs", __func__);
  311. usb_kill_urb(port->write_urb);
  312. usb_kill_urb(port->read_urb);
  313. mutex_lock(&port->serial->disc_mutex);
  314. if (!port->serial->disconnected)
  315. cp2101_set_config_single(port, CP2101_UART, UART_DISABLE);
  316. mutex_unlock(&port->serial->disc_mutex);
  317. }
  318. /*
  319. * cp2101_get_termios
  320. * Reads the baud rate, data bits, parity, stop bits and flow control mode
  321. * from the device, corrects any unsupported values, and configures the
  322. * termios structure to reflect the state of the device
  323. */
  324. static void cp2101_get_termios (struct tty_struct *tty)
  325. {
  326. struct usb_serial_port *port = tty->driver_data;
  327. unsigned int cflag, modem_ctl[4];
  328. unsigned int baud;
  329. unsigned int bits;
  330. dbg("%s - port %d", __func__, port->number);
  331. cp2101_get_config(port, CP2101_BAUDRATE, &baud, 2);
  332. /* Convert to baudrate */
  333. if (baud)
  334. baud = BAUD_RATE_GEN_FREQ / baud;
  335. dbg("%s - baud rate = %d", __func__, baud);
  336. tty_encode_baud_rate(tty, baud, baud);
  337. cflag = tty->termios->c_cflag;
  338. cp2101_get_config(port, CP2101_BITS, &bits, 2);
  339. cflag &= ~CSIZE;
  340. switch (bits & BITS_DATA_MASK) {
  341. case BITS_DATA_5:
  342. dbg("%s - data bits = 5", __func__);
  343. cflag |= CS5;
  344. break;
  345. case BITS_DATA_6:
  346. dbg("%s - data bits = 6", __func__);
  347. cflag |= CS6;
  348. break;
  349. case BITS_DATA_7:
  350. dbg("%s - data bits = 7", __func__);
  351. cflag |= CS7;
  352. break;
  353. case BITS_DATA_8:
  354. dbg("%s - data bits = 8", __func__);
  355. cflag |= CS8;
  356. break;
  357. case BITS_DATA_9:
  358. dbg("%s - data bits = 9 (not supported, using 8 data bits)",
  359. __func__);
  360. cflag |= CS8;
  361. bits &= ~BITS_DATA_MASK;
  362. bits |= BITS_DATA_8;
  363. cp2101_set_config(port, CP2101_BITS, &bits, 2);
  364. break;
  365. default:
  366. dbg("%s - Unknown number of data bits, using 8", __func__);
  367. cflag |= CS8;
  368. bits &= ~BITS_DATA_MASK;
  369. bits |= BITS_DATA_8;
  370. cp2101_set_config(port, CP2101_BITS, &bits, 2);
  371. break;
  372. }
  373. switch (bits & BITS_PARITY_MASK) {
  374. case BITS_PARITY_NONE:
  375. dbg("%s - parity = NONE", __func__);
  376. cflag &= ~PARENB;
  377. break;
  378. case BITS_PARITY_ODD:
  379. dbg("%s - parity = ODD", __func__);
  380. cflag |= (PARENB|PARODD);
  381. break;
  382. case BITS_PARITY_EVEN:
  383. dbg("%s - parity = EVEN", __func__);
  384. cflag &= ~PARODD;
  385. cflag |= PARENB;
  386. break;
  387. case BITS_PARITY_MARK:
  388. dbg("%s - parity = MARK (not supported, disabling parity)",
  389. __func__);
  390. cflag &= ~PARENB;
  391. bits &= ~BITS_PARITY_MASK;
  392. cp2101_set_config(port, CP2101_BITS, &bits, 2);
  393. break;
  394. case BITS_PARITY_SPACE:
  395. dbg("%s - parity = SPACE (not supported, disabling parity)",
  396. __func__);
  397. cflag &= ~PARENB;
  398. bits &= ~BITS_PARITY_MASK;
  399. cp2101_set_config(port, CP2101_BITS, &bits, 2);
  400. break;
  401. default:
  402. dbg("%s - Unknown parity mode, disabling parity", __func__);
  403. cflag &= ~PARENB;
  404. bits &= ~BITS_PARITY_MASK;
  405. cp2101_set_config(port, CP2101_BITS, &bits, 2);
  406. break;
  407. }
  408. cflag &= ~CSTOPB;
  409. switch (bits & BITS_STOP_MASK) {
  410. case BITS_STOP_1:
  411. dbg("%s - stop bits = 1", __func__);
  412. break;
  413. case BITS_STOP_1_5:
  414. dbg("%s - stop bits = 1.5 (not supported, using 1 stop bit)",
  415. __func__);
  416. bits &= ~BITS_STOP_MASK;
  417. cp2101_set_config(port, CP2101_BITS, &bits, 2);
  418. break;
  419. case BITS_STOP_2:
  420. dbg("%s - stop bits = 2", __func__);
  421. cflag |= CSTOPB;
  422. break;
  423. default:
  424. dbg("%s - Unknown number of stop bits, using 1 stop bit",
  425. __func__);
  426. bits &= ~BITS_STOP_MASK;
  427. cp2101_set_config(port, CP2101_BITS, &bits, 2);
  428. break;
  429. }
  430. cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
  431. if (modem_ctl[0] & 0x0008) {
  432. dbg("%s - flow control = CRTSCTS", __func__);
  433. cflag |= CRTSCTS;
  434. } else {
  435. dbg("%s - flow control = NONE", __func__);
  436. cflag &= ~CRTSCTS;
  437. }
  438. tty->termios->c_cflag = cflag;
  439. }
  440. static void cp2101_set_termios(struct tty_struct *tty,
  441. struct usb_serial_port *port, struct ktermios *old_termios)
  442. {
  443. unsigned int cflag, old_cflag;
  444. unsigned int baud = 0, bits;
  445. unsigned int modem_ctl[4];
  446. dbg("%s - port %d", __func__, port->number);
  447. if (!tty)
  448. return;
  449. tty->termios->c_cflag &= ~CMSPAR;
  450. cflag = tty->termios->c_cflag;
  451. old_cflag = old_termios->c_cflag;
  452. baud = tty_get_baud_rate(tty);
  453. /* If the baud rate is to be updated*/
  454. if (baud != tty_termios_baud_rate(old_termios)) {
  455. switch (baud) {
  456. case 0:
  457. case 600:
  458. case 1200:
  459. case 1800:
  460. case 2400:
  461. case 4800:
  462. case 7200:
  463. case 9600:
  464. case 14400:
  465. case 19200:
  466. case 28800:
  467. case 38400:
  468. case 55854:
  469. case 57600:
  470. case 115200:
  471. case 127117:
  472. case 230400:
  473. case 460800:
  474. case 921600:
  475. case 3686400:
  476. break;
  477. default:
  478. baud = 9600;
  479. break;
  480. }
  481. if (baud) {
  482. dbg("%s - Setting baud rate to %d baud", __func__,
  483. baud);
  484. if (cp2101_set_config_single(port, CP2101_BAUDRATE,
  485. (BAUD_RATE_GEN_FREQ / baud))) {
  486. dev_err(&port->dev, "Baud rate requested not "
  487. "supported by device\n");
  488. baud = tty_termios_baud_rate(old_termios);
  489. }
  490. }
  491. }
  492. /* Report back the resulting baud rate */
  493. tty_encode_baud_rate(tty, baud, baud);
  494. /* If the number of data bits is to be updated */
  495. if ((cflag & CSIZE) != (old_cflag & CSIZE)) {
  496. cp2101_get_config(port, CP2101_BITS, &bits, 2);
  497. bits &= ~BITS_DATA_MASK;
  498. switch (cflag & CSIZE) {
  499. case CS5:
  500. bits |= BITS_DATA_5;
  501. dbg("%s - data bits = 5", __func__);
  502. break;
  503. case CS6:
  504. bits |= BITS_DATA_6;
  505. dbg("%s - data bits = 6", __func__);
  506. break;
  507. case CS7:
  508. bits |= BITS_DATA_7;
  509. dbg("%s - data bits = 7", __func__);
  510. break;
  511. case CS8:
  512. bits |= BITS_DATA_8;
  513. dbg("%s - data bits = 8", __func__);
  514. break;
  515. /*case CS9:
  516. bits |= BITS_DATA_9;
  517. dbg("%s - data bits = 9", __func__);
  518. break;*/
  519. default:
  520. dev_err(&port->dev, "cp2101 driver does not "
  521. "support the number of bits requested,"
  522. " using 8 bit mode\n");
  523. bits |= BITS_DATA_8;
  524. break;
  525. }
  526. if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
  527. dev_err(&port->dev, "Number of data bits requested "
  528. "not supported by device\n");
  529. }
  530. if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))) {
  531. cp2101_get_config(port, CP2101_BITS, &bits, 2);
  532. bits &= ~BITS_PARITY_MASK;
  533. if (cflag & PARENB) {
  534. if (cflag & PARODD) {
  535. bits |= BITS_PARITY_ODD;
  536. dbg("%s - parity = ODD", __func__);
  537. } else {
  538. bits |= BITS_PARITY_EVEN;
  539. dbg("%s - parity = EVEN", __func__);
  540. }
  541. }
  542. if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
  543. dev_err(&port->dev, "Parity mode not supported "
  544. "by device\n");
  545. }
  546. if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) {
  547. cp2101_get_config(port, CP2101_BITS, &bits, 2);
  548. bits &= ~BITS_STOP_MASK;
  549. if (cflag & CSTOPB) {
  550. bits |= BITS_STOP_2;
  551. dbg("%s - stop bits = 2", __func__);
  552. } else {
  553. bits |= BITS_STOP_1;
  554. dbg("%s - stop bits = 1", __func__);
  555. }
  556. if (cp2101_set_config(port, CP2101_BITS, &bits, 2))
  557. dev_err(&port->dev, "Number of stop bits requested "
  558. "not supported by device\n");
  559. }
  560. if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) {
  561. cp2101_get_config(port, CP2101_MODEMCTL, modem_ctl, 16);
  562. dbg("%s - read modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
  563. __func__, modem_ctl[0], modem_ctl[1],
  564. modem_ctl[2], modem_ctl[3]);
  565. if (cflag & CRTSCTS) {
  566. modem_ctl[0] &= ~0x7B;
  567. modem_ctl[0] |= 0x09;
  568. modem_ctl[1] = 0x80;
  569. dbg("%s - flow control = CRTSCTS", __func__);
  570. } else {
  571. modem_ctl[0] &= ~0x7B;
  572. modem_ctl[0] |= 0x01;
  573. modem_ctl[1] |= 0x40;
  574. dbg("%s - flow control = NONE", __func__);
  575. }
  576. dbg("%s - write modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x",
  577. __func__, modem_ctl[0], modem_ctl[1],
  578. modem_ctl[2], modem_ctl[3]);
  579. cp2101_set_config(port, CP2101_MODEMCTL, modem_ctl, 16);
  580. }
  581. }
  582. static int cp2101_tiocmset (struct tty_struct *tty, struct file *file,
  583. unsigned int set, unsigned int clear)
  584. {
  585. struct usb_serial_port *port = tty->driver_data;
  586. unsigned int control = 0;
  587. dbg("%s - port %d", __func__, port->number);
  588. if (set & TIOCM_RTS) {
  589. control |= CONTROL_RTS;
  590. control |= CONTROL_WRITE_RTS;
  591. }
  592. if (set & TIOCM_DTR) {
  593. control |= CONTROL_DTR;
  594. control |= CONTROL_WRITE_DTR;
  595. }
  596. if (clear & TIOCM_RTS) {
  597. control &= ~CONTROL_RTS;
  598. control |= CONTROL_WRITE_RTS;
  599. }
  600. if (clear & TIOCM_DTR) {
  601. control &= ~CONTROL_DTR;
  602. control |= CONTROL_WRITE_DTR;
  603. }
  604. dbg("%s - control = 0x%.4x", __func__, control);
  605. return cp2101_set_config(port, CP2101_CONTROL, &control, 2);
  606. }
  607. static int cp2101_tiocmget (struct tty_struct *tty, struct file *file)
  608. {
  609. struct usb_serial_port *port = tty->driver_data;
  610. unsigned int control;
  611. int result;
  612. dbg("%s - port %d", __func__, port->number);
  613. cp2101_get_config(port, CP2101_CONTROL, &control, 1);
  614. result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
  615. |((control & CONTROL_RTS) ? TIOCM_RTS : 0)
  616. |((control & CONTROL_CTS) ? TIOCM_CTS : 0)
  617. |((control & CONTROL_DSR) ? TIOCM_DSR : 0)
  618. |((control & CONTROL_RING)? TIOCM_RI : 0)
  619. |((control & CONTROL_DCD) ? TIOCM_CD : 0);
  620. dbg("%s - control = 0x%.2x", __func__, control);
  621. return result;
  622. }
  623. static void cp2101_break_ctl (struct tty_struct *tty, int break_state)
  624. {
  625. struct usb_serial_port *port = tty->driver_data;
  626. unsigned int state;
  627. dbg("%s - port %d", __func__, port->number);
  628. if (break_state == 0)
  629. state = BREAK_OFF;
  630. else
  631. state = BREAK_ON;
  632. dbg("%s - turning break %s", __func__,
  633. state == BREAK_OFF ? "off" : "on");
  634. cp2101_set_config(port, CP2101_BREAK, &state, 2);
  635. }
  636. static int cp2101_startup(struct usb_serial *serial)
  637. {
  638. /* CP2101 buffers behave strangely unless device is reset */
  639. usb_reset_device(serial->dev);
  640. return 0;
  641. }
  642. static void cp2101_shutdown(struct usb_serial *serial)
  643. {
  644. int i;
  645. dbg("%s", __func__);
  646. /* Stop reads and writes on all ports */
  647. for (i = 0; i < serial->num_ports; ++i)
  648. cp2101_cleanup(serial->port[i]);
  649. }
  650. static int __init cp2101_init(void)
  651. {
  652. int retval;
  653. retval = usb_serial_register(&cp2101_device);
  654. if (retval)
  655. return retval; /* Failed to register */
  656. retval = usb_register(&cp2101_driver);
  657. if (retval) {
  658. /* Failed to register */
  659. usb_serial_deregister(&cp2101_device);
  660. return retval;
  661. }
  662. /* Success */
  663. printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
  664. DRIVER_DESC "\n");
  665. return 0;
  666. }
  667. static void __exit cp2101_exit(void)
  668. {
  669. usb_deregister(&cp2101_driver);
  670. usb_serial_deregister(&cp2101_device);
  671. }
  672. module_init(cp2101_init);
  673. module_exit(cp2101_exit);
  674. MODULE_DESCRIPTION(DRIVER_DESC);
  675. MODULE_VERSION(DRIVER_VERSION);
  676. MODULE_LICENSE("GPL");
  677. module_param(debug, bool, S_IRUGO | S_IWUSR);
  678. MODULE_PARM_DESC(debug, "Enable verbose debugging messages");