cp2101.c 21 KB

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