spcp8x5.c 19 KB

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