spcp8x5.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. /*
  2. * spcp8x5 USB to serial adaptor driver
  3. *
  4. * Copyright (C) 2010 Johan Hovold (jhovold@gmail.com)
  5. * Copyright (C) 2006 Linxb (xubin.lin@worldplus.com.cn)
  6. * Copyright (C) 2006 S1 Corp.
  7. *
  8. * Original driver for 2.6.10 pl2303 driver by
  9. * Greg Kroah-Hartman (greg@kroah.com)
  10. * Changes for 2.6.20 by Harald Klein <hari@vt100.at>
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. *
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/errno.h>
  21. #include <linux/init.h>
  22. #include <linux/slab.h>
  23. #include <linux/tty.h>
  24. #include <linux/tty_driver.h>
  25. #include <linux/tty_flip.h>
  26. #include <linux/module.h>
  27. #include <linux/spinlock.h>
  28. #include <linux/usb.h>
  29. #include <linux/usb/serial.h>
  30. /* Version Information */
  31. #define DRIVER_VERSION "v0.10"
  32. #define DRIVER_DESC "SPCP8x5 USB to serial adaptor driver"
  33. static bool debug;
  34. #define SPCP8x5_007_VID 0x04FC
  35. #define SPCP8x5_007_PID 0x0201
  36. #define SPCP8x5_008_VID 0x04fc
  37. #define SPCP8x5_008_PID 0x0235
  38. #define SPCP8x5_PHILIPS_VID 0x0471
  39. #define SPCP8x5_PHILIPS_PID 0x081e
  40. #define SPCP8x5_INTERMATIC_VID 0x04FC
  41. #define SPCP8x5_INTERMATIC_PID 0x0204
  42. #define SPCP8x5_835_VID 0x04fc
  43. #define SPCP8x5_835_PID 0x0231
  44. static const struct usb_device_id id_table[] = {
  45. { USB_DEVICE(SPCP8x5_PHILIPS_VID , SPCP8x5_PHILIPS_PID)},
  46. { USB_DEVICE(SPCP8x5_INTERMATIC_VID, SPCP8x5_INTERMATIC_PID)},
  47. { USB_DEVICE(SPCP8x5_835_VID, SPCP8x5_835_PID)},
  48. { USB_DEVICE(SPCP8x5_008_VID, SPCP8x5_008_PID)},
  49. { USB_DEVICE(SPCP8x5_007_VID, SPCP8x5_007_PID)},
  50. { } /* Terminating entry */
  51. };
  52. MODULE_DEVICE_TABLE(usb, id_table);
  53. struct spcp8x5_usb_ctrl_arg {
  54. u8 type;
  55. u8 cmd;
  56. u8 cmd_type;
  57. u16 value;
  58. u16 index;
  59. u16 length;
  60. };
  61. /* spcp8x5 spec register define */
  62. #define MCR_CONTROL_LINE_RTS 0x02
  63. #define MCR_CONTROL_LINE_DTR 0x01
  64. #define MCR_DTR 0x01
  65. #define MCR_RTS 0x02
  66. #define MSR_STATUS_LINE_DCD 0x80
  67. #define MSR_STATUS_LINE_RI 0x40
  68. #define MSR_STATUS_LINE_DSR 0x20
  69. #define MSR_STATUS_LINE_CTS 0x10
  70. /* verdor command here , we should define myself */
  71. #define SET_DEFAULT 0x40
  72. #define SET_DEFAULT_TYPE 0x20
  73. #define SET_UART_FORMAT 0x40
  74. #define SET_UART_FORMAT_TYPE 0x21
  75. #define SET_UART_FORMAT_SIZE_5 0x00
  76. #define SET_UART_FORMAT_SIZE_6 0x01
  77. #define SET_UART_FORMAT_SIZE_7 0x02
  78. #define SET_UART_FORMAT_SIZE_8 0x03
  79. #define SET_UART_FORMAT_STOP_1 0x00
  80. #define SET_UART_FORMAT_STOP_2 0x04
  81. #define SET_UART_FORMAT_PAR_NONE 0x00
  82. #define SET_UART_FORMAT_PAR_ODD 0x10
  83. #define SET_UART_FORMAT_PAR_EVEN 0x30
  84. #define SET_UART_FORMAT_PAR_MASK 0xD0
  85. #define SET_UART_FORMAT_PAR_SPACE 0x90
  86. #define GET_UART_STATUS_TYPE 0xc0
  87. #define GET_UART_STATUS 0x22
  88. #define GET_UART_STATUS_MSR 0x06
  89. #define SET_UART_STATUS 0x40
  90. #define SET_UART_STATUS_TYPE 0x23
  91. #define SET_UART_STATUS_MCR 0x0004
  92. #define SET_UART_STATUS_MCR_DTR 0x01
  93. #define SET_UART_STATUS_MCR_RTS 0x02
  94. #define SET_UART_STATUS_MCR_LOOP 0x10
  95. #define SET_WORKING_MODE 0x40
  96. #define SET_WORKING_MODE_TYPE 0x24
  97. #define SET_WORKING_MODE_U2C 0x00
  98. #define SET_WORKING_MODE_RS485 0x01
  99. #define SET_WORKING_MODE_PDMA 0x02
  100. #define SET_WORKING_MODE_SPP 0x03
  101. #define SET_FLOWCTL_CHAR 0x40
  102. #define SET_FLOWCTL_CHAR_TYPE 0x25
  103. #define GET_VERSION 0xc0
  104. #define GET_VERSION_TYPE 0x26
  105. #define SET_REGISTER 0x40
  106. #define SET_REGISTER_TYPE 0x27
  107. #define GET_REGISTER 0xc0
  108. #define GET_REGISTER_TYPE 0x28
  109. #define SET_RAM 0x40
  110. #define SET_RAM_TYPE 0x31
  111. #define GET_RAM 0xc0
  112. #define GET_RAM_TYPE 0x32
  113. /* how come ??? */
  114. #define UART_STATE 0x08
  115. #define UART_STATE_TRANSIENT_MASK 0x75
  116. #define UART_DCD 0x01
  117. #define UART_DSR 0x02
  118. #define UART_BREAK_ERROR 0x04
  119. #define UART_RING 0x08
  120. #define UART_FRAME_ERROR 0x10
  121. #define UART_PARITY_ERROR 0x20
  122. #define UART_OVERRUN_ERROR 0x40
  123. #define UART_CTS 0x80
  124. enum spcp8x5_type {
  125. SPCP825_007_TYPE,
  126. SPCP825_008_TYPE,
  127. SPCP825_PHILIP_TYPE,
  128. SPCP825_INTERMATIC_TYPE,
  129. SPCP835_TYPE,
  130. };
  131. static struct usb_driver spcp8x5_driver = {
  132. .name = "spcp8x5",
  133. .probe = usb_serial_probe,
  134. .disconnect = usb_serial_disconnect,
  135. .id_table = id_table,
  136. };
  137. struct spcp8x5_private {
  138. spinlock_t lock;
  139. enum spcp8x5_type type;
  140. wait_queue_head_t delta_msr_wait;
  141. u8 line_control;
  142. u8 line_status;
  143. };
  144. /* desc : when device plug in,this function would be called.
  145. * thanks to usb_serial subsystem,then do almost every things for us. And what
  146. * we should do just alloc the buffer */
  147. static int spcp8x5_startup(struct usb_serial *serial)
  148. {
  149. struct spcp8x5_private *priv;
  150. int i;
  151. enum spcp8x5_type type = SPCP825_007_TYPE;
  152. u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
  153. if (product == 0x0201)
  154. type = SPCP825_007_TYPE;
  155. else if (product == 0x0231)
  156. type = SPCP835_TYPE;
  157. else if (product == 0x0235)
  158. type = SPCP825_008_TYPE;
  159. else if (product == 0x0204)
  160. type = SPCP825_INTERMATIC_TYPE;
  161. else if (product == 0x0471 &&
  162. serial->dev->descriptor.idVendor == cpu_to_le16(0x081e))
  163. type = SPCP825_PHILIP_TYPE;
  164. dev_dbg(&serial->dev->dev, "device type = %d\n", (int)type);
  165. for (i = 0; i < serial->num_ports; ++i) {
  166. priv = kzalloc(sizeof(struct spcp8x5_private), GFP_KERNEL);
  167. if (!priv)
  168. goto cleanup;
  169. spin_lock_init(&priv->lock);
  170. init_waitqueue_head(&priv->delta_msr_wait);
  171. priv->type = type;
  172. usb_set_serial_port_data(serial->port[i] , priv);
  173. }
  174. return 0;
  175. cleanup:
  176. for (--i; i >= 0; --i) {
  177. priv = usb_get_serial_port_data(serial->port[i]);
  178. kfree(priv);
  179. usb_set_serial_port_data(serial->port[i] , NULL);
  180. }
  181. return -ENOMEM;
  182. }
  183. /* call when the device plug out. free all the memory alloced by probe */
  184. static void spcp8x5_release(struct usb_serial *serial)
  185. {
  186. int i;
  187. for (i = 0; i < serial->num_ports; i++)
  188. kfree(usb_get_serial_port_data(serial->port[i]));
  189. }
  190. /* set the modem control line of the device.
  191. * NOTE spcp825-007 not supported this */
  192. static int spcp8x5_set_ctrlLine(struct usb_device *dev, u8 value,
  193. enum spcp8x5_type type)
  194. {
  195. int retval;
  196. u8 mcr = 0 ;
  197. if (type == SPCP825_007_TYPE)
  198. return -EPERM;
  199. mcr = (unsigned short)value;
  200. retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  201. SET_UART_STATUS_TYPE, SET_UART_STATUS,
  202. mcr, 0x04, NULL, 0, 100);
  203. if (retval != 0)
  204. dev_dbg(&dev->dev, "usb_control_msg return %#x\n", retval);
  205. return retval;
  206. }
  207. /* get the modem status register of the device
  208. * NOTE spcp825-007 not supported this */
  209. static int spcp8x5_get_msr(struct usb_device *dev, u8 *status,
  210. enum spcp8x5_type type)
  211. {
  212. u8 *status_buffer;
  213. int ret;
  214. /* I return Permited not support here but seem inval device
  215. * is more fix */
  216. if (type == SPCP825_007_TYPE)
  217. return -EPERM;
  218. if (status == NULL)
  219. return -EINVAL;
  220. status_buffer = kmalloc(1, GFP_KERNEL);
  221. if (!status_buffer)
  222. return -ENOMEM;
  223. status_buffer[0] = status[0];
  224. ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  225. GET_UART_STATUS, GET_UART_STATUS_TYPE,
  226. 0, GET_UART_STATUS_MSR, status_buffer, 1, 100);
  227. if (ret < 0)
  228. dev_dbg(&dev->dev, "Get MSR = 0x%p failed (error = %d)",
  229. status_buffer, ret);
  230. dev_dbg(&dev->dev, "0xc0:0x22:0:6 %d - 0x%p ", ret, status_buffer);
  231. status[0] = status_buffer[0];
  232. kfree(status_buffer);
  233. return ret;
  234. }
  235. /* select the work mode.
  236. * NOTE this function not supported by spcp825-007 */
  237. static void spcp8x5_set_workMode(struct usb_device *dev, u16 value,
  238. u16 index, enum spcp8x5_type type)
  239. {
  240. int ret;
  241. /* I return Permited not support here but seem inval device
  242. * is more fix */
  243. if (type == SPCP825_007_TYPE)
  244. return;
  245. ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  246. SET_WORKING_MODE_TYPE, SET_WORKING_MODE,
  247. value, index, NULL, 0, 100);
  248. dev_dbg(&dev->dev, "value = %#x , index = %#x\n", value, index);
  249. if (ret < 0)
  250. dev_dbg(&dev->dev,
  251. "RTSCTS usb_control_msg(enable flowctrl) = %d\n", ret);
  252. }
  253. static int spcp8x5_carrier_raised(struct usb_serial_port *port)
  254. {
  255. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  256. if (priv->line_status & MSR_STATUS_LINE_DCD)
  257. return 1;
  258. return 0;
  259. }
  260. static void spcp8x5_dtr_rts(struct usb_serial_port *port, int on)
  261. {
  262. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  263. unsigned long flags;
  264. u8 control;
  265. spin_lock_irqsave(&priv->lock, flags);
  266. if (on)
  267. priv->line_control = MCR_CONTROL_LINE_DTR
  268. | MCR_CONTROL_LINE_RTS;
  269. else
  270. priv->line_control &= ~ (MCR_CONTROL_LINE_DTR
  271. | MCR_CONTROL_LINE_RTS);
  272. control = priv->line_control;
  273. spin_unlock_irqrestore(&priv->lock, flags);
  274. spcp8x5_set_ctrlLine(port->serial->dev, control , priv->type);
  275. }
  276. static void spcp8x5_init_termios(struct tty_struct *tty)
  277. {
  278. /* for the 1st time call this function */
  279. *(tty->termios) = tty_std_termios;
  280. tty->termios->c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL;
  281. tty->termios->c_ispeed = 115200;
  282. tty->termios->c_ospeed = 115200;
  283. }
  284. /* set the serial param for transfer. we should check if we really need to
  285. * transfer. if we set flow control we should do this too. */
  286. static void spcp8x5_set_termios(struct tty_struct *tty,
  287. struct usb_serial_port *port, struct ktermios *old_termios)
  288. {
  289. struct usb_serial *serial = port->serial;
  290. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  291. unsigned long flags;
  292. unsigned int cflag = tty->termios->c_cflag;
  293. unsigned int old_cflag = old_termios->c_cflag;
  294. unsigned short uartdata;
  295. unsigned char buf[2] = {0, 0};
  296. int baud;
  297. int i;
  298. u8 control;
  299. /* check that they really want us to change something */
  300. if (!tty_termios_hw_change(tty->termios, old_termios))
  301. return;
  302. /* set DTR/RTS active */
  303. spin_lock_irqsave(&priv->lock, flags);
  304. control = priv->line_control;
  305. if ((old_cflag & CBAUD) == B0) {
  306. priv->line_control |= MCR_DTR;
  307. if (!(old_cflag & CRTSCTS))
  308. priv->line_control |= MCR_RTS;
  309. }
  310. if (control != priv->line_control) {
  311. control = priv->line_control;
  312. spin_unlock_irqrestore(&priv->lock, flags);
  313. spcp8x5_set_ctrlLine(serial->dev, control , priv->type);
  314. } else {
  315. spin_unlock_irqrestore(&priv->lock, flags);
  316. }
  317. /* Set Baud Rate */
  318. baud = tty_get_baud_rate(tty);
  319. switch (baud) {
  320. case 300: buf[0] = 0x00; break;
  321. case 600: buf[0] = 0x01; break;
  322. case 1200: buf[0] = 0x02; break;
  323. case 2400: buf[0] = 0x03; break;
  324. case 4800: buf[0] = 0x04; break;
  325. case 9600: buf[0] = 0x05; break;
  326. case 19200: buf[0] = 0x07; break;
  327. case 38400: buf[0] = 0x09; break;
  328. case 57600: buf[0] = 0x0a; break;
  329. case 115200: buf[0] = 0x0b; break;
  330. case 230400: buf[0] = 0x0c; break;
  331. case 460800: buf[0] = 0x0d; break;
  332. case 921600: buf[0] = 0x0e; break;
  333. /* case 1200000: buf[0] = 0x0f; break; */
  334. /* case 2400000: buf[0] = 0x10; break; */
  335. case 3000000: buf[0] = 0x11; break;
  336. /* case 6000000: buf[0] = 0x12; break; */
  337. case 0:
  338. case 1000000:
  339. buf[0] = 0x0b; break;
  340. default:
  341. dev_err(&port->dev, "spcp825 driver does not support the "
  342. "baudrate requested, using default of 9600.\n");
  343. }
  344. /* Set Data Length : 00:5bit, 01:6bit, 10:7bit, 11:8bit */
  345. if (cflag & CSIZE) {
  346. switch (cflag & CSIZE) {
  347. case CS5:
  348. buf[1] |= SET_UART_FORMAT_SIZE_5;
  349. break;
  350. case CS6:
  351. buf[1] |= SET_UART_FORMAT_SIZE_6;
  352. break;
  353. case CS7:
  354. buf[1] |= SET_UART_FORMAT_SIZE_7;
  355. break;
  356. default:
  357. case CS8:
  358. buf[1] |= SET_UART_FORMAT_SIZE_8;
  359. break;
  360. }
  361. }
  362. /* Set Stop bit2 : 0:1bit 1:2bit */
  363. buf[1] |= (cflag & CSTOPB) ? SET_UART_FORMAT_STOP_2 :
  364. SET_UART_FORMAT_STOP_1;
  365. /* Set Parity bit3-4 01:Odd 11:Even */
  366. if (cflag & PARENB) {
  367. buf[1] |= (cflag & PARODD) ?
  368. SET_UART_FORMAT_PAR_ODD : SET_UART_FORMAT_PAR_EVEN ;
  369. } else
  370. buf[1] |= SET_UART_FORMAT_PAR_NONE;
  371. uartdata = buf[0] | buf[1]<<8;
  372. i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
  373. SET_UART_FORMAT_TYPE, SET_UART_FORMAT,
  374. uartdata, 0, NULL, 0, 100);
  375. if (i < 0)
  376. dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n",
  377. uartdata, i);
  378. dbg("0x21:0x40:0:0 %d", i);
  379. if (cflag & CRTSCTS) {
  380. /* enable hardware flow control */
  381. spcp8x5_set_workMode(serial->dev, 0x000a,
  382. SET_WORKING_MODE_U2C, priv->type);
  383. }
  384. }
  385. /* open the serial port. do some usb system call. set termios and get the line
  386. * status of the device. */
  387. static int spcp8x5_open(struct tty_struct *tty, struct usb_serial_port *port)
  388. {
  389. struct ktermios tmp_termios;
  390. struct usb_serial *serial = port->serial;
  391. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  392. int ret;
  393. unsigned long flags;
  394. u8 status = 0x30;
  395. /* status 0x30 means DSR and CTS = 1 other CDC RI and delta = 0 */
  396. dbg("%s - port %d", __func__, port->number);
  397. usb_clear_halt(serial->dev, port->write_urb->pipe);
  398. usb_clear_halt(serial->dev, port->read_urb->pipe);
  399. ret = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
  400. 0x09, 0x00,
  401. 0x01, 0x00, NULL, 0x00, 100);
  402. if (ret)
  403. return ret;
  404. spcp8x5_set_ctrlLine(serial->dev, priv->line_control , priv->type);
  405. /* Setup termios */
  406. if (tty)
  407. spcp8x5_set_termios(tty, port, &tmp_termios);
  408. spcp8x5_get_msr(serial->dev, &status, priv->type);
  409. /* may be we should update uart status here but now we did not do */
  410. spin_lock_irqsave(&priv->lock, flags);
  411. priv->line_status = status & 0xf0 ;
  412. spin_unlock_irqrestore(&priv->lock, flags);
  413. port->port.drain_delay = 256;
  414. return usb_serial_generic_open(tty, port);
  415. }
  416. static void spcp8x5_process_read_urb(struct urb *urb)
  417. {
  418. struct usb_serial_port *port = urb->context;
  419. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  420. struct tty_struct *tty;
  421. unsigned char *data = urb->transfer_buffer;
  422. unsigned long flags;
  423. u8 status;
  424. char tty_flag;
  425. /* get tty_flag from status */
  426. tty_flag = TTY_NORMAL;
  427. spin_lock_irqsave(&priv->lock, flags);
  428. status = priv->line_status;
  429. priv->line_status &= ~UART_STATE_TRANSIENT_MASK;
  430. spin_unlock_irqrestore(&priv->lock, flags);
  431. /* wake up the wait for termios */
  432. wake_up_interruptible(&priv->delta_msr_wait);
  433. if (!urb->actual_length)
  434. return;
  435. tty = tty_port_tty_get(&port->port);
  436. if (!tty)
  437. return;
  438. if (status & UART_STATE_TRANSIENT_MASK) {
  439. /* break takes precedence over parity, which takes precedence
  440. * over framing errors */
  441. if (status & UART_BREAK_ERROR)
  442. tty_flag = TTY_BREAK;
  443. else if (status & UART_PARITY_ERROR)
  444. tty_flag = TTY_PARITY;
  445. else if (status & UART_FRAME_ERROR)
  446. tty_flag = TTY_FRAME;
  447. dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag);
  448. /* overrun is special, not associated with a char */
  449. if (status & UART_OVERRUN_ERROR)
  450. tty_insert_flip_char(tty, 0, TTY_OVERRUN);
  451. if (status & UART_DCD)
  452. usb_serial_handle_dcd_change(port, tty,
  453. priv->line_status & MSR_STATUS_LINE_DCD);
  454. }
  455. tty_insert_flip_string_fixed_flag(tty, data, tty_flag,
  456. urb->actual_length);
  457. tty_flip_buffer_push(tty);
  458. tty_kref_put(tty);
  459. }
  460. static int spcp8x5_wait_modem_info(struct usb_serial_port *port,
  461. unsigned int arg)
  462. {
  463. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  464. unsigned long flags;
  465. unsigned int prevstatus;
  466. unsigned int status;
  467. unsigned int changed;
  468. spin_lock_irqsave(&priv->lock, flags);
  469. prevstatus = priv->line_status;
  470. spin_unlock_irqrestore(&priv->lock, flags);
  471. while (1) {
  472. /* wake up in bulk read */
  473. interruptible_sleep_on(&priv->delta_msr_wait);
  474. /* see if a signal did it */
  475. if (signal_pending(current))
  476. return -ERESTARTSYS;
  477. spin_lock_irqsave(&priv->lock, flags);
  478. status = priv->line_status;
  479. spin_unlock_irqrestore(&priv->lock, flags);
  480. changed = prevstatus^status;
  481. if (((arg & TIOCM_RNG) && (changed & MSR_STATUS_LINE_RI)) ||
  482. ((arg & TIOCM_DSR) && (changed & MSR_STATUS_LINE_DSR)) ||
  483. ((arg & TIOCM_CD) && (changed & MSR_STATUS_LINE_DCD)) ||
  484. ((arg & TIOCM_CTS) && (changed & MSR_STATUS_LINE_CTS)))
  485. return 0;
  486. prevstatus = status;
  487. }
  488. /* NOTREACHED */
  489. return 0;
  490. }
  491. static int spcp8x5_ioctl(struct tty_struct *tty,
  492. unsigned int cmd, unsigned long arg)
  493. {
  494. struct usb_serial_port *port = tty->driver_data;
  495. dbg("%s (%d) cmd = 0x%04x", __func__, port->number, cmd);
  496. switch (cmd) {
  497. case TIOCMIWAIT:
  498. dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
  499. return spcp8x5_wait_modem_info(port, arg);
  500. default:
  501. dbg("%s not supported = 0x%04x", __func__, cmd);
  502. break;
  503. }
  504. return -ENOIOCTLCMD;
  505. }
  506. static int spcp8x5_tiocmset(struct tty_struct *tty,
  507. unsigned int set, unsigned int clear)
  508. {
  509. struct usb_serial_port *port = tty->driver_data;
  510. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  511. unsigned long flags;
  512. u8 control;
  513. spin_lock_irqsave(&priv->lock, flags);
  514. if (set & TIOCM_RTS)
  515. priv->line_control |= MCR_RTS;
  516. if (set & TIOCM_DTR)
  517. priv->line_control |= MCR_DTR;
  518. if (clear & TIOCM_RTS)
  519. priv->line_control &= ~MCR_RTS;
  520. if (clear & TIOCM_DTR)
  521. priv->line_control &= ~MCR_DTR;
  522. control = priv->line_control;
  523. spin_unlock_irqrestore(&priv->lock, flags);
  524. return spcp8x5_set_ctrlLine(port->serial->dev, control , priv->type);
  525. }
  526. static int spcp8x5_tiocmget(struct tty_struct *tty)
  527. {
  528. struct usb_serial_port *port = tty->driver_data;
  529. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  530. unsigned long flags;
  531. unsigned int mcr;
  532. unsigned int status;
  533. unsigned int result;
  534. spin_lock_irqsave(&priv->lock, flags);
  535. mcr = priv->line_control;
  536. status = priv->line_status;
  537. spin_unlock_irqrestore(&priv->lock, flags);
  538. result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
  539. | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
  540. | ((status & MSR_STATUS_LINE_CTS) ? TIOCM_CTS : 0)
  541. | ((status & MSR_STATUS_LINE_DSR) ? TIOCM_DSR : 0)
  542. | ((status & MSR_STATUS_LINE_RI) ? TIOCM_RI : 0)
  543. | ((status & MSR_STATUS_LINE_DCD) ? TIOCM_CD : 0);
  544. return result;
  545. }
  546. /* All of the device info needed for the spcp8x5 SIO serial converter */
  547. static struct usb_serial_driver spcp8x5_device = {
  548. .driver = {
  549. .owner = THIS_MODULE,
  550. .name = "SPCP8x5",
  551. },
  552. .id_table = id_table,
  553. .num_ports = 1,
  554. .open = spcp8x5_open,
  555. .dtr_rts = spcp8x5_dtr_rts,
  556. .carrier_raised = spcp8x5_carrier_raised,
  557. .set_termios = spcp8x5_set_termios,
  558. .init_termios = spcp8x5_init_termios,
  559. .ioctl = spcp8x5_ioctl,
  560. .tiocmget = spcp8x5_tiocmget,
  561. .tiocmset = spcp8x5_tiocmset,
  562. .attach = spcp8x5_startup,
  563. .release = spcp8x5_release,
  564. .process_read_urb = spcp8x5_process_read_urb,
  565. };
  566. static struct usb_serial_driver * const serial_drivers[] = {
  567. &spcp8x5_device, NULL
  568. };
  569. module_usb_serial_driver(spcp8x5_driver, serial_drivers);
  570. MODULE_DESCRIPTION(DRIVER_DESC);
  571. MODULE_VERSION(DRIVER_VERSION);
  572. MODULE_LICENSE("GPL");
  573. module_param(debug, bool, S_IRUGO | S_IWUSR);
  574. MODULE_PARM_DESC(debug, "Debug enabled or not");