blob: a5c3a3684dc22e0b6c1f70c9af7086c8cd9ad8c9 [file] [log] [blame]
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +01001/*
2 * spcp8x5 USB to serial adaptor driver
3 *
Johan Hovoldfa993ca2010-05-15 17:53:47 +02004 * Copyright (C) 2010 Johan Hovold (jhovold@gmail.com)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +01005 * 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.
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +010016 */
17#include <linux/kernel.h>
18#include <linux/errno.h>
19#include <linux/init.h>
20#include <linux/slab.h>
21#include <linux/tty.h>
22#include <linux/tty_driver.h>
23#include <linux/tty_flip.h>
24#include <linux/module.h>
25#include <linux/spinlock.h>
26#include <linux/usb.h>
27#include <linux/usb/serial.h>
28
Johan Hovold2d816ac2013-03-21 12:37:26 +010029#define DRIVER_DESC "SPCP8x5 USB to serial adaptor driver"
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +010030
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +010031#define SPCP8x5_007_VID 0x04FC
32#define SPCP8x5_007_PID 0x0201
33#define SPCP8x5_008_VID 0x04fc
34#define SPCP8x5_008_PID 0x0235
35#define SPCP8x5_PHILIPS_VID 0x0471
36#define SPCP8x5_PHILIPS_PID 0x081e
37#define SPCP8x5_INTERMATIC_VID 0x04FC
38#define SPCP8x5_INTERMATIC_PID 0x0204
39#define SPCP8x5_835_VID 0x04fc
40#define SPCP8x5_835_PID 0x0231
41
Németh Márton7d40d7e2010-01-10 15:34:24 +010042static const struct usb_device_id id_table[] = {
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +010043 { USB_DEVICE(SPCP8x5_PHILIPS_VID , SPCP8x5_PHILIPS_PID)},
44 { USB_DEVICE(SPCP8x5_INTERMATIC_VID, SPCP8x5_INTERMATIC_PID)},
45 { USB_DEVICE(SPCP8x5_835_VID, SPCP8x5_835_PID)},
46 { USB_DEVICE(SPCP8x5_008_VID, SPCP8x5_008_PID)},
47 { USB_DEVICE(SPCP8x5_007_VID, SPCP8x5_007_PID)},
48 { } /* Terminating entry */
49};
50MODULE_DEVICE_TABLE(usb, id_table);
51
52struct spcp8x5_usb_ctrl_arg {
Johan Hovold2d816ac2013-03-21 12:37:26 +010053 u8 type;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +010054 u8 cmd;
55 u8 cmd_type;
56 u16 value;
57 u16 index;
58 u16 length;
59};
60
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +010061
62/* spcp8x5 spec register define */
63#define MCR_CONTROL_LINE_RTS 0x02
64#define MCR_CONTROL_LINE_DTR 0x01
65#define MCR_DTR 0x01
66#define MCR_RTS 0x02
67
68#define MSR_STATUS_LINE_DCD 0x80
69#define MSR_STATUS_LINE_RI 0x40
70#define MSR_STATUS_LINE_DSR 0x20
71#define MSR_STATUS_LINE_CTS 0x10
72
73/* verdor command here , we should define myself */
74#define SET_DEFAULT 0x40
75#define SET_DEFAULT_TYPE 0x20
76
77#define SET_UART_FORMAT 0x40
78#define SET_UART_FORMAT_TYPE 0x21
79#define SET_UART_FORMAT_SIZE_5 0x00
80#define SET_UART_FORMAT_SIZE_6 0x01
81#define SET_UART_FORMAT_SIZE_7 0x02
82#define SET_UART_FORMAT_SIZE_8 0x03
83#define SET_UART_FORMAT_STOP_1 0x00
84#define SET_UART_FORMAT_STOP_2 0x04
85#define SET_UART_FORMAT_PAR_NONE 0x00
86#define SET_UART_FORMAT_PAR_ODD 0x10
87#define SET_UART_FORMAT_PAR_EVEN 0x30
88#define SET_UART_FORMAT_PAR_MASK 0xD0
89#define SET_UART_FORMAT_PAR_SPACE 0x90
90
91#define GET_UART_STATUS_TYPE 0xc0
92#define GET_UART_STATUS 0x22
93#define GET_UART_STATUS_MSR 0x06
94
95#define SET_UART_STATUS 0x40
96#define SET_UART_STATUS_TYPE 0x23
97#define SET_UART_STATUS_MCR 0x0004
98#define SET_UART_STATUS_MCR_DTR 0x01
99#define SET_UART_STATUS_MCR_RTS 0x02
100#define SET_UART_STATUS_MCR_LOOP 0x10
101
102#define SET_WORKING_MODE 0x40
103#define SET_WORKING_MODE_TYPE 0x24
104#define SET_WORKING_MODE_U2C 0x00
105#define SET_WORKING_MODE_RS485 0x01
106#define SET_WORKING_MODE_PDMA 0x02
107#define SET_WORKING_MODE_SPP 0x03
108
109#define SET_FLOWCTL_CHAR 0x40
110#define SET_FLOWCTL_CHAR_TYPE 0x25
111
112#define GET_VERSION 0xc0
113#define GET_VERSION_TYPE 0x26
114
115#define SET_REGISTER 0x40
116#define SET_REGISTER_TYPE 0x27
117
118#define GET_REGISTER 0xc0
119#define GET_REGISTER_TYPE 0x28
120
121#define SET_RAM 0x40
122#define SET_RAM_TYPE 0x31
123
124#define GET_RAM 0xc0
125#define GET_RAM_TYPE 0x32
126
127/* how come ??? */
128#define UART_STATE 0x08
Libor Pechacekd14fc1a2011-01-14 14:30:21 +0100129#define UART_STATE_TRANSIENT_MASK 0x75
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100130#define UART_DCD 0x01
131#define UART_DSR 0x02
132#define UART_BREAK_ERROR 0x04
133#define UART_RING 0x08
134#define UART_FRAME_ERROR 0x10
135#define UART_PARITY_ERROR 0x20
136#define UART_OVERRUN_ERROR 0x40
137#define UART_CTS 0x80
138
139enum spcp8x5_type {
140 SPCP825_007_TYPE,
141 SPCP825_008_TYPE,
142 SPCP825_PHILIP_TYPE,
143 SPCP825_INTERMATIC_TYPE,
144 SPCP835_TYPE,
145};
146
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100147struct spcp8x5_private {
Johan Hovold2d816ac2013-03-21 12:37:26 +0100148 spinlock_t lock;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100149 enum spcp8x5_type type;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100150 u8 line_control;
151 u8 line_status;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100152};
153
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200154static int spcp8x5_port_probe(struct usb_serial_port *port)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100155{
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200156 struct usb_serial *serial = port->serial;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100157 struct spcp8x5_private *priv;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100158 enum spcp8x5_type type = SPCP825_007_TYPE;
Al Virofd05e722008-04-28 07:00:16 +0100159 u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100160
Al Virofd05e722008-04-28 07:00:16 +0100161 if (product == 0x0201)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100162 type = SPCP825_007_TYPE;
Al Virofd05e722008-04-28 07:00:16 +0100163 else if (product == 0x0231)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100164 type = SPCP835_TYPE;
Al Virofd05e722008-04-28 07:00:16 +0100165 else if (product == 0x0235)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100166 type = SPCP825_008_TYPE;
Al Virofd05e722008-04-28 07:00:16 +0100167 else if (product == 0x0204)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100168 type = SPCP825_INTERMATIC_TYPE;
Al Virofd05e722008-04-28 07:00:16 +0100169 else if (product == 0x0471 &&
170 serial->dev->descriptor.idVendor == cpu_to_le16(0x081e))
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100171 type = SPCP825_PHILIP_TYPE;
172 dev_dbg(&serial->dev->dev, "device type = %d\n", (int)type);
173
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200174 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
175 if (!priv)
176 return -ENOMEM;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100177
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200178 spin_lock_init(&priv->lock);
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200179 priv->type = type;
180
Johan Hovold2d816ac2013-03-21 12:37:26 +0100181 usb_set_serial_port_data(port, priv);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100182
183 return 0;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100184}
185
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200186static int spcp8x5_port_remove(struct usb_serial_port *port)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100187{
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200188 struct spcp8x5_private *priv;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100189
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200190 priv = usb_get_serial_port_data(port);
191 kfree(priv);
192
193 return 0;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100194}
195
Johan Hovold2d816ac2013-03-21 12:37:26 +0100196/*
197 * Set the modem control line of the device.
198 *
199 * NOTE: not supported by spcp825-007
200 */
201static int spcp8x5_set_ctrl_line(struct usb_device *dev, u8 value,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100202 enum spcp8x5_type type)
203{
204 int retval;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100205 u8 mcr = 0;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100206
207 if (type == SPCP825_007_TYPE)
208 return -EPERM;
209
210 mcr = (unsigned short)value;
211 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
212 SET_UART_STATUS_TYPE, SET_UART_STATUS,
213 mcr, 0x04, NULL, 0, 100);
214 if (retval != 0)
215 dev_dbg(&dev->dev, "usb_control_msg return %#x\n", retval);
216 return retval;
217}
218
Johan Hovold2d816ac2013-03-21 12:37:26 +0100219/*
220 * Get the modem status register of the device.
221 *
222 * NOTE: not supported by spcp825-007
223 */
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100224static int spcp8x5_get_msr(struct usb_device *dev, u8 *status,
225 enum spcp8x5_type type)
226{
227 u8 *status_buffer;
228 int ret;
229
230 /* I return Permited not support here but seem inval device
231 * is more fix */
232 if (type == SPCP825_007_TYPE)
233 return -EPERM;
234 if (status == NULL)
235 return -EINVAL;
236
237 status_buffer = kmalloc(1, GFP_KERNEL);
238 if (!status_buffer)
239 return -ENOMEM;
240 status_buffer[0] = status[0];
241
242 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
243 GET_UART_STATUS, GET_UART_STATUS_TYPE,
244 0, GET_UART_STATUS_MSR, status_buffer, 1, 100);
245 if (ret < 0)
246 dev_dbg(&dev->dev, "Get MSR = 0x%p failed (error = %d)",
247 status_buffer, ret);
248
249 dev_dbg(&dev->dev, "0xc0:0x22:0:6 %d - 0x%p ", ret, status_buffer);
250 status[0] = status_buffer[0];
251 kfree(status_buffer);
252
253 return ret;
254}
255
Johan Hovold2d816ac2013-03-21 12:37:26 +0100256/*
257 * Select the work mode.
258 *
259 * NOTE: not supported by spcp825-007
260 */
261static void spcp8x5_set_work_mode(struct usb_device *dev, u16 value,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100262 u16 index, enum spcp8x5_type type)
263{
264 int ret;
265
266 /* I return Permited not support here but seem inval device
267 * is more fix */
268 if (type == SPCP825_007_TYPE)
269 return;
270
271 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
272 SET_WORKING_MODE_TYPE, SET_WORKING_MODE,
273 value, index, NULL, 0, 100);
274 dev_dbg(&dev->dev, "value = %#x , index = %#x\n", value, index);
275 if (ret < 0)
276 dev_dbg(&dev->dev,
277 "RTSCTS usb_control_msg(enable flowctrl) = %d\n", ret);
278}
279
Alan Cox335f8512009-06-11 12:26:29 +0100280static int spcp8x5_carrier_raised(struct usb_serial_port *port)
281{
282 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
Johan Hovold2d816ac2013-03-21 12:37:26 +0100283
Alan Cox335f8512009-06-11 12:26:29 +0100284 if (priv->line_status & MSR_STATUS_LINE_DCD)
285 return 1;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100286
Alan Cox335f8512009-06-11 12:26:29 +0100287 return 0;
288}
289
290static void spcp8x5_dtr_rts(struct usb_serial_port *port, int on)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100291{
292 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
293 unsigned long flags;
Alan Cox335f8512009-06-11 12:26:29 +0100294 u8 control;
295
296 spin_lock_irqsave(&priv->lock, flags);
297 if (on)
298 priv->line_control = MCR_CONTROL_LINE_DTR
299 | MCR_CONTROL_LINE_RTS;
300 else
301 priv->line_control &= ~ (MCR_CONTROL_LINE_DTR
302 | MCR_CONTROL_LINE_RTS);
303 control = priv->line_control;
304 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold2d816ac2013-03-21 12:37:26 +0100305 spcp8x5_set_ctrl_line(port->serial->dev, control, priv->type);
Alan Cox335f8512009-06-11 12:26:29 +0100306}
307
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700308static void spcp8x5_init_termios(struct tty_struct *tty)
309{
Alan Coxadc8d742012-07-14 15:31:47 +0100310 tty->termios = tty_std_termios;
311 tty->termios.c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL;
312 tty->termios.c_ispeed = 115200;
313 tty->termios.c_ospeed = 115200;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700314}
315
Alan Cox95da3102008-07-22 11:09:07 +0100316static void spcp8x5_set_termios(struct tty_struct *tty,
317 struct usb_serial_port *port, struct ktermios *old_termios)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100318{
319 struct usb_serial *serial = port->serial;
320 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
321 unsigned long flags;
Alan Coxadc8d742012-07-14 15:31:47 +0100322 unsigned int cflag = tty->termios.c_cflag;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100323 unsigned int old_cflag = old_termios->c_cflag;
324 unsigned short uartdata;
325 unsigned char buf[2] = {0, 0};
326 int baud;
327 int i;
328 u8 control;
329
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100330 /* check that they really want us to change something */
Alan Coxadc8d742012-07-14 15:31:47 +0100331 if (!tty_termios_hw_change(&tty->termios, old_termios))
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100332 return;
333
334 /* set DTR/RTS active */
335 spin_lock_irqsave(&priv->lock, flags);
336 control = priv->line_control;
337 if ((old_cflag & CBAUD) == B0) {
338 priv->line_control |= MCR_DTR;
339 if (!(old_cflag & CRTSCTS))
340 priv->line_control |= MCR_RTS;
341 }
342 if (control != priv->line_control) {
343 control = priv->line_control;
344 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold2d816ac2013-03-21 12:37:26 +0100345 spcp8x5_set_ctrl_line(serial->dev, control , priv->type);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100346 } else {
347 spin_unlock_irqrestore(&priv->lock, flags);
348 }
349
350 /* Set Baud Rate */
Joe Perchesa419aef2009-08-18 11:18:35 -0700351 baud = tty_get_baud_rate(tty);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100352 switch (baud) {
353 case 300: buf[0] = 0x00; break;
354 case 600: buf[0] = 0x01; break;
355 case 1200: buf[0] = 0x02; break;
356 case 2400: buf[0] = 0x03; break;
357 case 4800: buf[0] = 0x04; break;
358 case 9600: buf[0] = 0x05; break;
359 case 19200: buf[0] = 0x07; break;
360 case 38400: buf[0] = 0x09; break;
361 case 57600: buf[0] = 0x0a; break;
362 case 115200: buf[0] = 0x0b; break;
363 case 230400: buf[0] = 0x0c; break;
364 case 460800: buf[0] = 0x0d; break;
365 case 921600: buf[0] = 0x0e; break;
366/* case 1200000: buf[0] = 0x0f; break; */
367/* case 2400000: buf[0] = 0x10; break; */
368 case 3000000: buf[0] = 0x11; break;
369/* case 6000000: buf[0] = 0x12; break; */
370 case 0:
371 case 1000000:
372 buf[0] = 0x0b; break;
373 default:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700374 dev_err(&port->dev, "spcp825 driver does not support the "
375 "baudrate requested, using default of 9600.\n");
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100376 }
377
378 /* Set Data Length : 00:5bit, 01:6bit, 10:7bit, 11:8bit */
379 if (cflag & CSIZE) {
380 switch (cflag & CSIZE) {
381 case CS5:
382 buf[1] |= SET_UART_FORMAT_SIZE_5;
383 break;
384 case CS6:
385 buf[1] |= SET_UART_FORMAT_SIZE_6;
386 break;
387 case CS7:
388 buf[1] |= SET_UART_FORMAT_SIZE_7;
389 break;
390 default:
391 case CS8:
392 buf[1] |= SET_UART_FORMAT_SIZE_8;
393 break;
394 }
395 }
396
397 /* Set Stop bit2 : 0:1bit 1:2bit */
398 buf[1] |= (cflag & CSTOPB) ? SET_UART_FORMAT_STOP_2 :
399 SET_UART_FORMAT_STOP_1;
400
401 /* Set Parity bit3-4 01:Odd 11:Even */
402 if (cflag & PARENB) {
403 buf[1] |= (cflag & PARODD) ?
404 SET_UART_FORMAT_PAR_ODD : SET_UART_FORMAT_PAR_EVEN ;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100405 } else {
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100406 buf[1] |= SET_UART_FORMAT_PAR_NONE;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100407 }
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100408 uartdata = buf[0] | buf[1]<<8;
409
410 i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
411 SET_UART_FORMAT_TYPE, SET_UART_FORMAT,
412 uartdata, 0, NULL, 0, 100);
413 if (i < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700414 dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n",
415 uartdata, i);
Greg Kroah-Hartmanfe2baf82012-05-15 16:27:30 -0700416 dev_dbg(&port->dev, "0x21:0x40:0:0 %d\n", i);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100417
418 if (cflag & CRTSCTS) {
419 /* enable hardware flow control */
Johan Hovold2d816ac2013-03-21 12:37:26 +0100420 spcp8x5_set_work_mode(serial->dev, 0x000a,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100421 SET_WORKING_MODE_U2C, priv->type);
422 }
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100423}
424
Alan Coxa509a7e2009-09-19 13:13:26 -0700425static int spcp8x5_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100426{
427 struct ktermios tmp_termios;
428 struct usb_serial *serial = port->serial;
429 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
430 int ret;
431 unsigned long flags;
432 u8 status = 0x30;
433 /* status 0x30 means DSR and CTS = 1 other CDC RI and delta = 0 */
434
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100435 usb_clear_halt(serial->dev, port->write_urb->pipe);
436 usb_clear_halt(serial->dev, port->read_urb->pipe);
437
438 ret = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
439 0x09, 0x00,
440 0x01, 0x00, NULL, 0x00, 100);
441 if (ret)
442 return ret;
443
Johan Hovold2d816ac2013-03-21 12:37:26 +0100444 spcp8x5_set_ctrl_line(serial->dev, priv->line_control, priv->type);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100445
446 /* Setup termios */
Alan Cox95da3102008-07-22 11:09:07 +0100447 if (tty)
448 spcp8x5_set_termios(tty, port, &tmp_termios);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100449
450 spcp8x5_get_msr(serial->dev, &status, priv->type);
451
452 /* may be we should update uart status here but now we did not do */
453 spin_lock_irqsave(&priv->lock, flags);
454 priv->line_status = status & 0xf0 ;
455 spin_unlock_irqrestore(&priv->lock, flags);
456
Alan Cox335f8512009-06-11 12:26:29 +0100457 port->port.drain_delay = 256;
Johan Hovoldfa993ca2010-05-15 17:53:47 +0200458
459 return usb_serial_generic_open(tty, port);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100460}
461
Alan Cox20b9d172011-02-14 16:26:50 +0000462static int spcp8x5_tiocmset(struct tty_struct *tty,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100463 unsigned int set, unsigned int clear)
464{
Alan Cox95da3102008-07-22 11:09:07 +0100465 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100466 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
467 unsigned long flags;
468 u8 control;
469
470 spin_lock_irqsave(&priv->lock, flags);
471 if (set & TIOCM_RTS)
472 priv->line_control |= MCR_RTS;
473 if (set & TIOCM_DTR)
474 priv->line_control |= MCR_DTR;
475 if (clear & TIOCM_RTS)
476 priv->line_control &= ~MCR_RTS;
477 if (clear & TIOCM_DTR)
478 priv->line_control &= ~MCR_DTR;
479 control = priv->line_control;
480 spin_unlock_irqrestore(&priv->lock, flags);
481
Johan Hovold2d816ac2013-03-21 12:37:26 +0100482 return spcp8x5_set_ctrl_line(port->serial->dev, control, priv->type);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100483}
484
Alan Cox60b33c12011-02-14 16:26:14 +0000485static int spcp8x5_tiocmget(struct tty_struct *tty)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100486{
Alan Cox95da3102008-07-22 11:09:07 +0100487 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100488 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
489 unsigned long flags;
490 unsigned int mcr;
491 unsigned int status;
492 unsigned int result;
493
494 spin_lock_irqsave(&priv->lock, flags);
495 mcr = priv->line_control;
496 status = priv->line_status;
497 spin_unlock_irqrestore(&priv->lock, flags);
498
499 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
500 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
501 | ((status & MSR_STATUS_LINE_CTS) ? TIOCM_CTS : 0)
502 | ((status & MSR_STATUS_LINE_DSR) ? TIOCM_DSR : 0)
503 | ((status & MSR_STATUS_LINE_RI) ? TIOCM_RI : 0)
504 | ((status & MSR_STATUS_LINE_DCD) ? TIOCM_CD : 0);
505
506 return result;
507}
508
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100509static struct usb_serial_driver spcp8x5_device = {
510 .driver = {
511 .owner = THIS_MODULE,
512 .name = "SPCP8x5",
513 },
514 .id_table = id_table,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100515 .num_ports = 1,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100516 .open = spcp8x5_open,
Alan Cox335f8512009-06-11 12:26:29 +0100517 .dtr_rts = spcp8x5_dtr_rts,
518 .carrier_raised = spcp8x5_carrier_raised,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100519 .set_termios = spcp8x5_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700520 .init_termios = spcp8x5_init_termios,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100521 .tiocmget = spcp8x5_tiocmget,
522 .tiocmset = spcp8x5_tiocmset,
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200523 .port_probe = spcp8x5_port_probe,
524 .port_remove = spcp8x5_port_remove,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100525};
526
Alan Sternd8603222012-02-23 14:57:25 -0500527static struct usb_serial_driver * const serial_drivers[] = {
528 &spcp8x5_device, NULL
529};
530
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700531module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100532
533MODULE_DESCRIPTION(DRIVER_DESC);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100534MODULE_LICENSE("GPL");