blob: 5779dd819d31b44d0c9b137c2f03c9b03dce9194 [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 */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100201static int spcp8x5_set_ctrl_line(struct usb_serial_port *port, u8 mcr)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100202{
Johan Hovold8413d2f2013-03-21 12:37:27 +0100203 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
204 struct usb_device *dev = port->serial->dev;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100205 int retval;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100206
Johan Hovold8413d2f2013-03-21 12:37:27 +0100207 if (priv->type == SPCP825_007_TYPE)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100208 return -EPERM;
209
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100210 retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
211 SET_UART_STATUS_TYPE, SET_UART_STATUS,
212 mcr, 0x04, NULL, 0, 100);
Johan Hovold8413d2f2013-03-21 12:37:27 +0100213 if (retval != 0) {
214 dev_err(&port->dev, "failed to set control lines: %d\n",
215 retval);
216 }
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100217 return retval;
218}
219
Johan Hovold2d816ac2013-03-21 12:37:26 +0100220/*
221 * Get the modem status register of the device.
222 *
223 * NOTE: not supported by spcp825-007
224 */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100225static int spcp8x5_get_msr(struct usb_serial_port *port, u8 *status)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100226{
Johan Hovold8413d2f2013-03-21 12:37:27 +0100227 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
228 struct usb_device *dev = port->serial->dev;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100229 u8 *status_buffer;
230 int ret;
231
232 /* I return Permited not support here but seem inval device
233 * is more fix */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100234 if (priv->type == SPCP825_007_TYPE)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100235 return -EPERM;
236 if (status == NULL)
237 return -EINVAL;
238
239 status_buffer = kmalloc(1, GFP_KERNEL);
240 if (!status_buffer)
241 return -ENOMEM;
242 status_buffer[0] = status[0];
243
244 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
245 GET_UART_STATUS, GET_UART_STATUS_TYPE,
246 0, GET_UART_STATUS_MSR, status_buffer, 1, 100);
247 if (ret < 0)
Johan Hovold8413d2f2013-03-21 12:37:27 +0100248 dev_err(&port->dev, "failed to get modem status: %d", ret);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100249
Johan Hovold8413d2f2013-03-21 12:37:27 +0100250 dev_dbg(&port->dev, "0xc0:0x22:0:6 %d - 0x02%x", ret, *status_buffer);
251
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100252 status[0] = status_buffer[0];
253 kfree(status_buffer);
254
255 return ret;
256}
257
Johan Hovold2d816ac2013-03-21 12:37:26 +0100258/*
259 * Select the work mode.
260 *
261 * NOTE: not supported by spcp825-007
262 */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100263static void spcp8x5_set_work_mode(struct usb_serial_port *port, u16 value,
264 u16 index)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100265{
Johan Hovold8413d2f2013-03-21 12:37:27 +0100266 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
267 struct usb_device *dev = port->serial->dev;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100268 int ret;
269
270 /* I return Permited not support here but seem inval device
271 * is more fix */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100272 if (priv->type == SPCP825_007_TYPE)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100273 return;
274
275 ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
276 SET_WORKING_MODE_TYPE, SET_WORKING_MODE,
277 value, index, NULL, 0, 100);
Johan Hovold8413d2f2013-03-21 12:37:27 +0100278 dev_dbg(&port->dev, "value = %#x , index = %#x\n", value, index);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100279 if (ret < 0)
Johan Hovold8413d2f2013-03-21 12:37:27 +0100280 dev_err(&port->dev, "failed to set work mode: %d\n", ret);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100281}
282
Alan Cox335f8512009-06-11 12:26:29 +0100283static int spcp8x5_carrier_raised(struct usb_serial_port *port)
284{
285 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
Johan Hovold2d816ac2013-03-21 12:37:26 +0100286
Alan Cox335f8512009-06-11 12:26:29 +0100287 if (priv->line_status & MSR_STATUS_LINE_DCD)
288 return 1;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100289
Alan Cox335f8512009-06-11 12:26:29 +0100290 return 0;
291}
292
293static void spcp8x5_dtr_rts(struct usb_serial_port *port, int on)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100294{
295 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
296 unsigned long flags;
Alan Cox335f8512009-06-11 12:26:29 +0100297 u8 control;
298
299 spin_lock_irqsave(&priv->lock, flags);
300 if (on)
301 priv->line_control = MCR_CONTROL_LINE_DTR
302 | MCR_CONTROL_LINE_RTS;
303 else
304 priv->line_control &= ~ (MCR_CONTROL_LINE_DTR
305 | MCR_CONTROL_LINE_RTS);
306 control = priv->line_control;
307 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold8413d2f2013-03-21 12:37:27 +0100308 spcp8x5_set_ctrl_line(port, control);
Alan Cox335f8512009-06-11 12:26:29 +0100309}
310
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700311static void spcp8x5_init_termios(struct tty_struct *tty)
312{
Alan Coxadc8d742012-07-14 15:31:47 +0100313 tty->termios = tty_std_termios;
314 tty->termios.c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL;
315 tty->termios.c_ispeed = 115200;
316 tty->termios.c_ospeed = 115200;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700317}
318
Alan Cox95da3102008-07-22 11:09:07 +0100319static void spcp8x5_set_termios(struct tty_struct *tty,
320 struct usb_serial_port *port, struct ktermios *old_termios)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100321{
322 struct usb_serial *serial = port->serial;
323 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
324 unsigned long flags;
Alan Coxadc8d742012-07-14 15:31:47 +0100325 unsigned int cflag = tty->termios.c_cflag;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100326 unsigned int old_cflag = old_termios->c_cflag;
327 unsigned short uartdata;
328 unsigned char buf[2] = {0, 0};
329 int baud;
330 int i;
331 u8 control;
332
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100333 /* check that they really want us to change something */
Alan Coxadc8d742012-07-14 15:31:47 +0100334 if (!tty_termios_hw_change(&tty->termios, old_termios))
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100335 return;
336
337 /* set DTR/RTS active */
338 spin_lock_irqsave(&priv->lock, flags);
339 control = priv->line_control;
340 if ((old_cflag & CBAUD) == B0) {
341 priv->line_control |= MCR_DTR;
342 if (!(old_cflag & CRTSCTS))
343 priv->line_control |= MCR_RTS;
344 }
345 if (control != priv->line_control) {
346 control = priv->line_control;
347 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold8413d2f2013-03-21 12:37:27 +0100348 spcp8x5_set_ctrl_line(port, control);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100349 } else {
350 spin_unlock_irqrestore(&priv->lock, flags);
351 }
352
353 /* Set Baud Rate */
Joe Perchesa419aef2009-08-18 11:18:35 -0700354 baud = tty_get_baud_rate(tty);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100355 switch (baud) {
356 case 300: buf[0] = 0x00; break;
357 case 600: buf[0] = 0x01; break;
358 case 1200: buf[0] = 0x02; break;
359 case 2400: buf[0] = 0x03; break;
360 case 4800: buf[0] = 0x04; break;
361 case 9600: buf[0] = 0x05; break;
362 case 19200: buf[0] = 0x07; break;
363 case 38400: buf[0] = 0x09; break;
364 case 57600: buf[0] = 0x0a; break;
365 case 115200: buf[0] = 0x0b; break;
366 case 230400: buf[0] = 0x0c; break;
367 case 460800: buf[0] = 0x0d; break;
368 case 921600: buf[0] = 0x0e; break;
369/* case 1200000: buf[0] = 0x0f; break; */
370/* case 2400000: buf[0] = 0x10; break; */
371 case 3000000: buf[0] = 0x11; break;
372/* case 6000000: buf[0] = 0x12; break; */
373 case 0:
374 case 1000000:
375 buf[0] = 0x0b; break;
376 default:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700377 dev_err(&port->dev, "spcp825 driver does not support the "
378 "baudrate requested, using default of 9600.\n");
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100379 }
380
381 /* Set Data Length : 00:5bit, 01:6bit, 10:7bit, 11:8bit */
382 if (cflag & CSIZE) {
383 switch (cflag & CSIZE) {
384 case CS5:
385 buf[1] |= SET_UART_FORMAT_SIZE_5;
386 break;
387 case CS6:
388 buf[1] |= SET_UART_FORMAT_SIZE_6;
389 break;
390 case CS7:
391 buf[1] |= SET_UART_FORMAT_SIZE_7;
392 break;
393 default:
394 case CS8:
395 buf[1] |= SET_UART_FORMAT_SIZE_8;
396 break;
397 }
398 }
399
400 /* Set Stop bit2 : 0:1bit 1:2bit */
401 buf[1] |= (cflag & CSTOPB) ? SET_UART_FORMAT_STOP_2 :
402 SET_UART_FORMAT_STOP_1;
403
404 /* Set Parity bit3-4 01:Odd 11:Even */
405 if (cflag & PARENB) {
406 buf[1] |= (cflag & PARODD) ?
407 SET_UART_FORMAT_PAR_ODD : SET_UART_FORMAT_PAR_EVEN ;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100408 } else {
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100409 buf[1] |= SET_UART_FORMAT_PAR_NONE;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100410 }
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100411 uartdata = buf[0] | buf[1]<<8;
412
413 i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
414 SET_UART_FORMAT_TYPE, SET_UART_FORMAT,
415 uartdata, 0, NULL, 0, 100);
416 if (i < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700417 dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n",
418 uartdata, i);
Greg Kroah-Hartmanfe2baf82012-05-15 16:27:30 -0700419 dev_dbg(&port->dev, "0x21:0x40:0:0 %d\n", i);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100420
421 if (cflag & CRTSCTS) {
422 /* enable hardware flow control */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100423 spcp8x5_set_work_mode(port, 0x000a, SET_WORKING_MODE_U2C);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100424 }
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100425}
426
Alan Coxa509a7e2009-09-19 13:13:26 -0700427static int spcp8x5_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100428{
429 struct ktermios tmp_termios;
430 struct usb_serial *serial = port->serial;
431 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
432 int ret;
433 unsigned long flags;
434 u8 status = 0x30;
435 /* status 0x30 means DSR and CTS = 1 other CDC RI and delta = 0 */
436
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100437 usb_clear_halt(serial->dev, port->write_urb->pipe);
438 usb_clear_halt(serial->dev, port->read_urb->pipe);
439
440 ret = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
441 0x09, 0x00,
442 0x01, 0x00, NULL, 0x00, 100);
443 if (ret)
444 return ret;
445
Johan Hovold8413d2f2013-03-21 12:37:27 +0100446 spcp8x5_set_ctrl_line(port, priv->line_control);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100447
448 /* Setup termios */
Alan Cox95da3102008-07-22 11:09:07 +0100449 if (tty)
450 spcp8x5_set_termios(tty, port, &tmp_termios);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100451
Johan Hovold8413d2f2013-03-21 12:37:27 +0100452 spcp8x5_get_msr(port, &status);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100453
454 /* may be we should update uart status here but now we did not do */
455 spin_lock_irqsave(&priv->lock, flags);
456 priv->line_status = status & 0xf0 ;
457 spin_unlock_irqrestore(&priv->lock, flags);
458
Alan Cox335f8512009-06-11 12:26:29 +0100459 port->port.drain_delay = 256;
Johan Hovoldfa993ca2010-05-15 17:53:47 +0200460
461 return usb_serial_generic_open(tty, port);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100462}
463
Alan Cox20b9d172011-02-14 16:26:50 +0000464static int spcp8x5_tiocmset(struct tty_struct *tty,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100465 unsigned int set, unsigned int clear)
466{
Alan Cox95da3102008-07-22 11:09:07 +0100467 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100468 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
469 unsigned long flags;
470 u8 control;
471
472 spin_lock_irqsave(&priv->lock, flags);
473 if (set & TIOCM_RTS)
474 priv->line_control |= MCR_RTS;
475 if (set & TIOCM_DTR)
476 priv->line_control |= MCR_DTR;
477 if (clear & TIOCM_RTS)
478 priv->line_control &= ~MCR_RTS;
479 if (clear & TIOCM_DTR)
480 priv->line_control &= ~MCR_DTR;
481 control = priv->line_control;
482 spin_unlock_irqrestore(&priv->lock, flags);
483
Johan Hovold8413d2f2013-03-21 12:37:27 +0100484 return spcp8x5_set_ctrl_line(port, control);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100485}
486
Alan Cox60b33c12011-02-14 16:26:14 +0000487static int spcp8x5_tiocmget(struct tty_struct *tty)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100488{
Alan Cox95da3102008-07-22 11:09:07 +0100489 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100490 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
491 unsigned long flags;
492 unsigned int mcr;
493 unsigned int status;
494 unsigned int result;
495
496 spin_lock_irqsave(&priv->lock, flags);
497 mcr = priv->line_control;
498 status = priv->line_status;
499 spin_unlock_irqrestore(&priv->lock, flags);
500
501 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
502 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
503 | ((status & MSR_STATUS_LINE_CTS) ? TIOCM_CTS : 0)
504 | ((status & MSR_STATUS_LINE_DSR) ? TIOCM_DSR : 0)
505 | ((status & MSR_STATUS_LINE_RI) ? TIOCM_RI : 0)
506 | ((status & MSR_STATUS_LINE_DCD) ? TIOCM_CD : 0);
507
508 return result;
509}
510
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100511static struct usb_serial_driver spcp8x5_device = {
512 .driver = {
513 .owner = THIS_MODULE,
514 .name = "SPCP8x5",
515 },
516 .id_table = id_table,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100517 .num_ports = 1,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100518 .open = spcp8x5_open,
Alan Cox335f8512009-06-11 12:26:29 +0100519 .dtr_rts = spcp8x5_dtr_rts,
520 .carrier_raised = spcp8x5_carrier_raised,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100521 .set_termios = spcp8x5_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700522 .init_termios = spcp8x5_init_termios,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100523 .tiocmget = spcp8x5_tiocmget,
524 .tiocmset = spcp8x5_tiocmset,
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200525 .port_probe = spcp8x5_port_probe,
526 .port_remove = spcp8x5_port_remove,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100527};
528
Alan Sternd8603222012-02-23 14:57:25 -0500529static struct usb_serial_driver * const serial_drivers[] = {
530 &spcp8x5_device, NULL
531};
532
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700533module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100534
535MODULE_DESCRIPTION(DRIVER_DESC);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100536MODULE_LICENSE("GPL");