cp2101.c 21 KB

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