spcp8x5.c 18 KB

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