spcp8x5.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  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. struct spcp8x5_private {
  132. spinlock_t lock;
  133. enum spcp8x5_type type;
  134. wait_queue_head_t delta_msr_wait;
  135. u8 line_control;
  136. u8 line_status;
  137. };
  138. /* desc : when device plug in,this function would be called.
  139. * thanks to usb_serial subsystem,then do almost every things for us. And what
  140. * we should do just alloc the buffer */
  141. static int spcp8x5_startup(struct usb_serial *serial)
  142. {
  143. struct spcp8x5_private *priv;
  144. int i;
  145. enum spcp8x5_type type = SPCP825_007_TYPE;
  146. u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
  147. if (product == 0x0201)
  148. type = SPCP825_007_TYPE;
  149. else if (product == 0x0231)
  150. type = SPCP835_TYPE;
  151. else if (product == 0x0235)
  152. type = SPCP825_008_TYPE;
  153. else if (product == 0x0204)
  154. type = SPCP825_INTERMATIC_TYPE;
  155. else if (product == 0x0471 &&
  156. serial->dev->descriptor.idVendor == cpu_to_le16(0x081e))
  157. type = SPCP825_PHILIP_TYPE;
  158. dev_dbg(&serial->dev->dev, "device type = %d\n", (int)type);
  159. for (i = 0; i < serial->num_ports; ++i) {
  160. priv = kzalloc(sizeof(struct spcp8x5_private), GFP_KERNEL);
  161. if (!priv)
  162. goto cleanup;
  163. spin_lock_init(&priv->lock);
  164. init_waitqueue_head(&priv->delta_msr_wait);
  165. priv->type = type;
  166. usb_set_serial_port_data(serial->port[i] , priv);
  167. }
  168. return 0;
  169. cleanup:
  170. for (--i; i >= 0; --i) {
  171. priv = usb_get_serial_port_data(serial->port[i]);
  172. kfree(priv);
  173. usb_set_serial_port_data(serial->port[i] , NULL);
  174. }
  175. return -ENOMEM;
  176. }
  177. /* call when the device plug out. free all the memory alloced by probe */
  178. static void spcp8x5_release(struct usb_serial *serial)
  179. {
  180. int i;
  181. for (i = 0; i < serial->num_ports; i++)
  182. kfree(usb_get_serial_port_data(serial->port[i]));
  183. }
  184. /* set the modem control line of the device.
  185. * NOTE spcp825-007 not supported this */
  186. static int spcp8x5_set_ctrlLine(struct usb_device *dev, u8 value,
  187. enum spcp8x5_type type)
  188. {
  189. int retval;
  190. u8 mcr = 0 ;
  191. if (type == SPCP825_007_TYPE)
  192. return -EPERM;
  193. mcr = (unsigned short)value;
  194. retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  195. SET_UART_STATUS_TYPE, SET_UART_STATUS,
  196. mcr, 0x04, NULL, 0, 100);
  197. if (retval != 0)
  198. dev_dbg(&dev->dev, "usb_control_msg return %#x\n", retval);
  199. return retval;
  200. }
  201. /* get the modem status register of the device
  202. * NOTE spcp825-007 not supported this */
  203. static int spcp8x5_get_msr(struct usb_device *dev, u8 *status,
  204. enum spcp8x5_type type)
  205. {
  206. u8 *status_buffer;
  207. int ret;
  208. /* I return Permited not support here but seem inval device
  209. * is more fix */
  210. if (type == SPCP825_007_TYPE)
  211. return -EPERM;
  212. if (status == NULL)
  213. return -EINVAL;
  214. status_buffer = kmalloc(1, GFP_KERNEL);
  215. if (!status_buffer)
  216. return -ENOMEM;
  217. status_buffer[0] = status[0];
  218. ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  219. GET_UART_STATUS, GET_UART_STATUS_TYPE,
  220. 0, GET_UART_STATUS_MSR, status_buffer, 1, 100);
  221. if (ret < 0)
  222. dev_dbg(&dev->dev, "Get MSR = 0x%p failed (error = %d)",
  223. status_buffer, ret);
  224. dev_dbg(&dev->dev, "0xc0:0x22:0:6 %d - 0x%p ", ret, status_buffer);
  225. status[0] = status_buffer[0];
  226. kfree(status_buffer);
  227. return ret;
  228. }
  229. /* select the work mode.
  230. * NOTE this function not supported by spcp825-007 */
  231. static void spcp8x5_set_workMode(struct usb_device *dev, u16 value,
  232. u16 index, enum spcp8x5_type type)
  233. {
  234. int ret;
  235. /* I return Permited not support here but seem inval device
  236. * is more fix */
  237. if (type == SPCP825_007_TYPE)
  238. return;
  239. ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  240. SET_WORKING_MODE_TYPE, SET_WORKING_MODE,
  241. value, index, NULL, 0, 100);
  242. dev_dbg(&dev->dev, "value = %#x , index = %#x\n", value, index);
  243. if (ret < 0)
  244. dev_dbg(&dev->dev,
  245. "RTSCTS usb_control_msg(enable flowctrl) = %d\n", ret);
  246. }
  247. static int spcp8x5_carrier_raised(struct usb_serial_port *port)
  248. {
  249. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  250. if (priv->line_status & MSR_STATUS_LINE_DCD)
  251. return 1;
  252. return 0;
  253. }
  254. static void spcp8x5_dtr_rts(struct usb_serial_port *port, int on)
  255. {
  256. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  257. unsigned long flags;
  258. u8 control;
  259. spin_lock_irqsave(&priv->lock, flags);
  260. if (on)
  261. priv->line_control = MCR_CONTROL_LINE_DTR
  262. | MCR_CONTROL_LINE_RTS;
  263. else
  264. priv->line_control &= ~ (MCR_CONTROL_LINE_DTR
  265. | MCR_CONTROL_LINE_RTS);
  266. control = priv->line_control;
  267. spin_unlock_irqrestore(&priv->lock, flags);
  268. spcp8x5_set_ctrlLine(port->serial->dev, control , priv->type);
  269. }
  270. static void spcp8x5_init_termios(struct tty_struct *tty)
  271. {
  272. /* for the 1st time call this function */
  273. *(tty->termios) = tty_std_termios;
  274. tty->termios->c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL;
  275. tty->termios->c_ispeed = 115200;
  276. tty->termios->c_ospeed = 115200;
  277. }
  278. /* set the serial param for transfer. we should check if we really need to
  279. * transfer. if we set flow control we should do this too. */
  280. static void spcp8x5_set_termios(struct tty_struct *tty,
  281. struct usb_serial_port *port, struct ktermios *old_termios)
  282. {
  283. struct usb_serial *serial = port->serial;
  284. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  285. unsigned long flags;
  286. unsigned int cflag = tty->termios->c_cflag;
  287. unsigned int old_cflag = old_termios->c_cflag;
  288. unsigned short uartdata;
  289. unsigned char buf[2] = {0, 0};
  290. int baud;
  291. int i;
  292. u8 control;
  293. /* check that they really want us to change something */
  294. if (!tty_termios_hw_change(tty->termios, old_termios))
  295. return;
  296. /* set DTR/RTS active */
  297. spin_lock_irqsave(&priv->lock, flags);
  298. control = priv->line_control;
  299. if ((old_cflag & CBAUD) == B0) {
  300. priv->line_control |= MCR_DTR;
  301. if (!(old_cflag & CRTSCTS))
  302. priv->line_control |= MCR_RTS;
  303. }
  304. if (control != priv->line_control) {
  305. control = priv->line_control;
  306. spin_unlock_irqrestore(&priv->lock, flags);
  307. spcp8x5_set_ctrlLine(serial->dev, control , priv->type);
  308. } else {
  309. spin_unlock_irqrestore(&priv->lock, flags);
  310. }
  311. /* Set Baud Rate */
  312. baud = tty_get_baud_rate(tty);
  313. switch (baud) {
  314. case 300: buf[0] = 0x00; break;
  315. case 600: buf[0] = 0x01; break;
  316. case 1200: buf[0] = 0x02; break;
  317. case 2400: buf[0] = 0x03; break;
  318. case 4800: buf[0] = 0x04; break;
  319. case 9600: buf[0] = 0x05; break;
  320. case 19200: buf[0] = 0x07; break;
  321. case 38400: buf[0] = 0x09; break;
  322. case 57600: buf[0] = 0x0a; break;
  323. case 115200: buf[0] = 0x0b; break;
  324. case 230400: buf[0] = 0x0c; break;
  325. case 460800: buf[0] = 0x0d; break;
  326. case 921600: buf[0] = 0x0e; break;
  327. /* case 1200000: buf[0] = 0x0f; break; */
  328. /* case 2400000: buf[0] = 0x10; break; */
  329. case 3000000: buf[0] = 0x11; break;
  330. /* case 6000000: buf[0] = 0x12; break; */
  331. case 0:
  332. case 1000000:
  333. buf[0] = 0x0b; break;
  334. default:
  335. dev_err(&port->dev, "spcp825 driver does not support the "
  336. "baudrate requested, using default of 9600.\n");
  337. }
  338. /* Set Data Length : 00:5bit, 01:6bit, 10:7bit, 11:8bit */
  339. if (cflag & CSIZE) {
  340. switch (cflag & CSIZE) {
  341. case CS5:
  342. buf[1] |= SET_UART_FORMAT_SIZE_5;
  343. break;
  344. case CS6:
  345. buf[1] |= SET_UART_FORMAT_SIZE_6;
  346. break;
  347. case CS7:
  348. buf[1] |= SET_UART_FORMAT_SIZE_7;
  349. break;
  350. default:
  351. case CS8:
  352. buf[1] |= SET_UART_FORMAT_SIZE_8;
  353. break;
  354. }
  355. }
  356. /* Set Stop bit2 : 0:1bit 1:2bit */
  357. buf[1] |= (cflag & CSTOPB) ? SET_UART_FORMAT_STOP_2 :
  358. SET_UART_FORMAT_STOP_1;
  359. /* Set Parity bit3-4 01:Odd 11:Even */
  360. if (cflag & PARENB) {
  361. buf[1] |= (cflag & PARODD) ?
  362. SET_UART_FORMAT_PAR_ODD : SET_UART_FORMAT_PAR_EVEN ;
  363. } else
  364. buf[1] |= SET_UART_FORMAT_PAR_NONE;
  365. uartdata = buf[0] | buf[1]<<8;
  366. i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
  367. SET_UART_FORMAT_TYPE, SET_UART_FORMAT,
  368. uartdata, 0, NULL, 0, 100);
  369. if (i < 0)
  370. dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n",
  371. uartdata, i);
  372. dev_dbg(&port->dev, "0x21:0x40:0:0 %d\n", i);
  373. if (cflag & CRTSCTS) {
  374. /* enable hardware flow control */
  375. spcp8x5_set_workMode(serial->dev, 0x000a,
  376. SET_WORKING_MODE_U2C, priv->type);
  377. }
  378. }
  379. /* open the serial port. do some usb system call. set termios and get the line
  380. * status of the device. */
  381. static int spcp8x5_open(struct tty_struct *tty, struct usb_serial_port *port)
  382. {
  383. struct ktermios tmp_termios;
  384. struct usb_serial *serial = port->serial;
  385. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  386. int ret;
  387. unsigned long flags;
  388. u8 status = 0x30;
  389. /* status 0x30 means DSR and CTS = 1 other CDC RI and delta = 0 */
  390. usb_clear_halt(serial->dev, port->write_urb->pipe);
  391. usb_clear_halt(serial->dev, port->read_urb->pipe);
  392. ret = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
  393. 0x09, 0x00,
  394. 0x01, 0x00, NULL, 0x00, 100);
  395. if (ret)
  396. return ret;
  397. spcp8x5_set_ctrlLine(serial->dev, priv->line_control , priv->type);
  398. /* Setup termios */
  399. if (tty)
  400. spcp8x5_set_termios(tty, port, &tmp_termios);
  401. spcp8x5_get_msr(serial->dev, &status, priv->type);
  402. /* may be we should update uart status here but now we did not do */
  403. spin_lock_irqsave(&priv->lock, flags);
  404. priv->line_status = status & 0xf0 ;
  405. spin_unlock_irqrestore(&priv->lock, flags);
  406. port->port.drain_delay = 256;
  407. return usb_serial_generic_open(tty, port);
  408. }
  409. static void spcp8x5_process_read_urb(struct urb *urb)
  410. {
  411. struct usb_serial_port *port = urb->context;
  412. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  413. struct tty_struct *tty;
  414. unsigned char *data = urb->transfer_buffer;
  415. unsigned long flags;
  416. u8 status;
  417. char tty_flag;
  418. /* get tty_flag from status */
  419. tty_flag = TTY_NORMAL;
  420. spin_lock_irqsave(&priv->lock, flags);
  421. status = priv->line_status;
  422. priv->line_status &= ~UART_STATE_TRANSIENT_MASK;
  423. spin_unlock_irqrestore(&priv->lock, flags);
  424. /* wake up the wait for termios */
  425. wake_up_interruptible(&priv->delta_msr_wait);
  426. if (!urb->actual_length)
  427. return;
  428. tty = tty_port_tty_get(&port->port);
  429. if (!tty)
  430. return;
  431. if (status & UART_STATE_TRANSIENT_MASK) {
  432. /* break takes precedence over parity, which takes precedence
  433. * over framing errors */
  434. if (status & UART_BREAK_ERROR)
  435. tty_flag = TTY_BREAK;
  436. else if (status & UART_PARITY_ERROR)
  437. tty_flag = TTY_PARITY;
  438. else if (status & UART_FRAME_ERROR)
  439. tty_flag = TTY_FRAME;
  440. dev_dbg(&port->dev, "tty_flag = %d\n", tty_flag);
  441. /* overrun is special, not associated with a char */
  442. if (status & UART_OVERRUN_ERROR)
  443. tty_insert_flip_char(tty, 0, TTY_OVERRUN);
  444. if (status & UART_DCD)
  445. usb_serial_handle_dcd_change(port, tty,
  446. priv->line_status & MSR_STATUS_LINE_DCD);
  447. }
  448. tty_insert_flip_string_fixed_flag(tty, data, tty_flag,
  449. urb->actual_length);
  450. tty_flip_buffer_push(tty);
  451. tty_kref_put(tty);
  452. }
  453. static int spcp8x5_wait_modem_info(struct usb_serial_port *port,
  454. unsigned int arg)
  455. {
  456. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  457. unsigned long flags;
  458. unsigned int prevstatus;
  459. unsigned int status;
  460. unsigned int changed;
  461. spin_lock_irqsave(&priv->lock, flags);
  462. prevstatus = priv->line_status;
  463. spin_unlock_irqrestore(&priv->lock, flags);
  464. while (1) {
  465. /* wake up in bulk read */
  466. interruptible_sleep_on(&priv->delta_msr_wait);
  467. /* see if a signal did it */
  468. if (signal_pending(current))
  469. return -ERESTARTSYS;
  470. spin_lock_irqsave(&priv->lock, flags);
  471. status = priv->line_status;
  472. spin_unlock_irqrestore(&priv->lock, flags);
  473. changed = prevstatus^status;
  474. if (((arg & TIOCM_RNG) && (changed & MSR_STATUS_LINE_RI)) ||
  475. ((arg & TIOCM_DSR) && (changed & MSR_STATUS_LINE_DSR)) ||
  476. ((arg & TIOCM_CD) && (changed & MSR_STATUS_LINE_DCD)) ||
  477. ((arg & TIOCM_CTS) && (changed & MSR_STATUS_LINE_CTS)))
  478. return 0;
  479. prevstatus = status;
  480. }
  481. /* NOTREACHED */
  482. return 0;
  483. }
  484. static int spcp8x5_ioctl(struct tty_struct *tty,
  485. unsigned int cmd, unsigned long arg)
  486. {
  487. struct usb_serial_port *port = tty->driver_data;
  488. dev_dbg(&port->dev, "%s (%d) cmd = 0x%04x\n", __func__,
  489. port->number, cmd);
  490. switch (cmd) {
  491. case TIOCMIWAIT:
  492. dev_dbg(&port->dev, "%s (%d) TIOCMIWAIT\n", __func__,
  493. port->number);
  494. return spcp8x5_wait_modem_info(port, arg);
  495. default:
  496. dev_dbg(&port->dev, "%s not supported = 0x%04x", __func__,
  497. cmd);
  498. break;
  499. }
  500. return -ENOIOCTLCMD;
  501. }
  502. static int spcp8x5_tiocmset(struct tty_struct *tty,
  503. unsigned int set, unsigned int clear)
  504. {
  505. struct usb_serial_port *port = tty->driver_data;
  506. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  507. unsigned long flags;
  508. u8 control;
  509. spin_lock_irqsave(&priv->lock, flags);
  510. if (set & TIOCM_RTS)
  511. priv->line_control |= MCR_RTS;
  512. if (set & TIOCM_DTR)
  513. priv->line_control |= MCR_DTR;
  514. if (clear & TIOCM_RTS)
  515. priv->line_control &= ~MCR_RTS;
  516. if (clear & TIOCM_DTR)
  517. priv->line_control &= ~MCR_DTR;
  518. control = priv->line_control;
  519. spin_unlock_irqrestore(&priv->lock, flags);
  520. return spcp8x5_set_ctrlLine(port->serial->dev, control , priv->type);
  521. }
  522. static int spcp8x5_tiocmget(struct tty_struct *tty)
  523. {
  524. struct usb_serial_port *port = tty->driver_data;
  525. struct spcp8x5_private *priv = usb_get_serial_port_data(port);
  526. unsigned long flags;
  527. unsigned int mcr;
  528. unsigned int status;
  529. unsigned int result;
  530. spin_lock_irqsave(&priv->lock, flags);
  531. mcr = priv->line_control;
  532. status = priv->line_status;
  533. spin_unlock_irqrestore(&priv->lock, flags);
  534. result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
  535. | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
  536. | ((status & MSR_STATUS_LINE_CTS) ? TIOCM_CTS : 0)
  537. | ((status & MSR_STATUS_LINE_DSR) ? TIOCM_DSR : 0)
  538. | ((status & MSR_STATUS_LINE_RI) ? TIOCM_RI : 0)
  539. | ((status & MSR_STATUS_LINE_DCD) ? TIOCM_CD : 0);
  540. return result;
  541. }
  542. /* All of the device info needed for the spcp8x5 SIO serial converter */
  543. static struct usb_serial_driver spcp8x5_device = {
  544. .driver = {
  545. .owner = THIS_MODULE,
  546. .name = "SPCP8x5",
  547. },
  548. .id_table = id_table,
  549. .num_ports = 1,
  550. .open = spcp8x5_open,
  551. .dtr_rts = spcp8x5_dtr_rts,
  552. .carrier_raised = spcp8x5_carrier_raised,
  553. .set_termios = spcp8x5_set_termios,
  554. .init_termios = spcp8x5_init_termios,
  555. .ioctl = spcp8x5_ioctl,
  556. .tiocmget = spcp8x5_tiocmget,
  557. .tiocmset = spcp8x5_tiocmset,
  558. .attach = spcp8x5_startup,
  559. .release = spcp8x5_release,
  560. .process_read_urb = spcp8x5_process_read_urb,
  561. };
  562. static struct usb_serial_driver * const serial_drivers[] = {
  563. &spcp8x5_device, NULL
  564. };
  565. module_usb_serial_driver(serial_drivers, id_table);
  566. MODULE_DESCRIPTION(DRIVER_DESC);
  567. MODULE_VERSION(DRIVER_VERSION);
  568. MODULE_LICENSE("GPL");
  569. module_param(debug, bool, S_IRUGO | S_IWUSR);
  570. MODULE_PARM_DESC(debug, "Debug enabled or not");