blob: e0093dd222387bd9deb0b5cd1294536dcc729af2 [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;
Johan Hovold0a967f62013-03-21 12:37:28 +0100229 u8 *buf;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100230 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;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100236
Johan Hovold0a967f62013-03-21 12:37:28 +0100237 buf = kzalloc(1, GFP_KERNEL);
238 if (!buf)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100239 return -ENOMEM;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100240
241 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
242 GET_UART_STATUS, GET_UART_STATUS_TYPE,
Johan Hovold0a967f62013-03-21 12:37:28 +0100243 0, GET_UART_STATUS_MSR, buf, 1, 100);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100244 if (ret < 0)
Johan Hovold8413d2f2013-03-21 12:37:27 +0100245 dev_err(&port->dev, "failed to get modem status: %d", ret);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100246
Johan Hovold0a967f62013-03-21 12:37:28 +0100247 dev_dbg(&port->dev, "0xc0:0x22:0:6 %d - 0x02%x", ret, *buf);
248 *status = *buf;
249 kfree(buf);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100250
251 return ret;
252}
253
Johan Hovold2d816ac2013-03-21 12:37:26 +0100254/*
255 * Select the work mode.
256 *
257 * NOTE: not supported by spcp825-007
258 */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100259static void spcp8x5_set_work_mode(struct usb_serial_port *port, u16 value,
260 u16 index)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100261{
Johan Hovold8413d2f2013-03-21 12:37:27 +0100262 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
263 struct usb_device *dev = port->serial->dev;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100264 int ret;
265
266 /* I return Permited not support here but seem inval device
267 * is more fix */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100268 if (priv->type == SPCP825_007_TYPE)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100269 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);
Johan Hovold8413d2f2013-03-21 12:37:27 +0100274 dev_dbg(&port->dev, "value = %#x , index = %#x\n", value, index);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100275 if (ret < 0)
Johan Hovold8413d2f2013-03-21 12:37:27 +0100276 dev_err(&port->dev, "failed to set work mode: %d\n", ret);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100277}
278
Alan Cox335f8512009-06-11 12:26:29 +0100279static int spcp8x5_carrier_raised(struct usb_serial_port *port)
280{
281 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
Johan Hovold2d816ac2013-03-21 12:37:26 +0100282
Alan Cox335f8512009-06-11 12:26:29 +0100283 if (priv->line_status & MSR_STATUS_LINE_DCD)
284 return 1;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100285
Alan Cox335f8512009-06-11 12:26:29 +0100286 return 0;
287}
288
289static void spcp8x5_dtr_rts(struct usb_serial_port *port, int on)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100290{
291 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
292 unsigned long flags;
Alan Cox335f8512009-06-11 12:26:29 +0100293 u8 control;
294
295 spin_lock_irqsave(&priv->lock, flags);
296 if (on)
297 priv->line_control = MCR_CONTROL_LINE_DTR
298 | MCR_CONTROL_LINE_RTS;
299 else
300 priv->line_control &= ~ (MCR_CONTROL_LINE_DTR
301 | MCR_CONTROL_LINE_RTS);
302 control = priv->line_control;
303 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold8413d2f2013-03-21 12:37:27 +0100304 spcp8x5_set_ctrl_line(port, control);
Alan Cox335f8512009-06-11 12:26:29 +0100305}
306
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700307static void spcp8x5_init_termios(struct tty_struct *tty)
308{
Alan Coxadc8d742012-07-14 15:31:47 +0100309 tty->termios = tty_std_termios;
310 tty->termios.c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL;
311 tty->termios.c_ispeed = 115200;
312 tty->termios.c_ospeed = 115200;
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700313}
314
Alan Cox95da3102008-07-22 11:09:07 +0100315static void spcp8x5_set_termios(struct tty_struct *tty,
316 struct usb_serial_port *port, struct ktermios *old_termios)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100317{
318 struct usb_serial *serial = port->serial;
319 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
320 unsigned long flags;
Alan Coxadc8d742012-07-14 15:31:47 +0100321 unsigned int cflag = tty->termios.c_cflag;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100322 unsigned int old_cflag = old_termios->c_cflag;
323 unsigned short uartdata;
324 unsigned char buf[2] = {0, 0};
325 int baud;
326 int i;
327 u8 control;
328
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100329 /* check that they really want us to change something */
Alan Coxadc8d742012-07-14 15:31:47 +0100330 if (!tty_termios_hw_change(&tty->termios, old_termios))
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100331 return;
332
333 /* set DTR/RTS active */
334 spin_lock_irqsave(&priv->lock, flags);
335 control = priv->line_control;
336 if ((old_cflag & CBAUD) == B0) {
337 priv->line_control |= MCR_DTR;
338 if (!(old_cflag & CRTSCTS))
339 priv->line_control |= MCR_RTS;
340 }
341 if (control != priv->line_control) {
342 control = priv->line_control;
343 spin_unlock_irqrestore(&priv->lock, flags);
Johan Hovold8413d2f2013-03-21 12:37:27 +0100344 spcp8x5_set_ctrl_line(port, control);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100345 } else {
346 spin_unlock_irqrestore(&priv->lock, flags);
347 }
348
349 /* Set Baud Rate */
Joe Perchesa419aef2009-08-18 11:18:35 -0700350 baud = tty_get_baud_rate(tty);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100351 switch (baud) {
352 case 300: buf[0] = 0x00; break;
353 case 600: buf[0] = 0x01; break;
354 case 1200: buf[0] = 0x02; break;
355 case 2400: buf[0] = 0x03; break;
356 case 4800: buf[0] = 0x04; break;
357 case 9600: buf[0] = 0x05; break;
358 case 19200: buf[0] = 0x07; break;
359 case 38400: buf[0] = 0x09; break;
360 case 57600: buf[0] = 0x0a; break;
361 case 115200: buf[0] = 0x0b; break;
362 case 230400: buf[0] = 0x0c; break;
363 case 460800: buf[0] = 0x0d; break;
364 case 921600: buf[0] = 0x0e; break;
365/* case 1200000: buf[0] = 0x0f; break; */
366/* case 2400000: buf[0] = 0x10; break; */
367 case 3000000: buf[0] = 0x11; break;
368/* case 6000000: buf[0] = 0x12; break; */
369 case 0:
370 case 1000000:
371 buf[0] = 0x0b; break;
372 default:
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700373 dev_err(&port->dev, "spcp825 driver does not support the "
374 "baudrate requested, using default of 9600.\n");
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100375 }
376
377 /* Set Data Length : 00:5bit, 01:6bit, 10:7bit, 11:8bit */
378 if (cflag & CSIZE) {
379 switch (cflag & CSIZE) {
380 case CS5:
381 buf[1] |= SET_UART_FORMAT_SIZE_5;
382 break;
383 case CS6:
384 buf[1] |= SET_UART_FORMAT_SIZE_6;
385 break;
386 case CS7:
387 buf[1] |= SET_UART_FORMAT_SIZE_7;
388 break;
389 default:
390 case CS8:
391 buf[1] |= SET_UART_FORMAT_SIZE_8;
392 break;
393 }
394 }
395
396 /* Set Stop bit2 : 0:1bit 1:2bit */
397 buf[1] |= (cflag & CSTOPB) ? SET_UART_FORMAT_STOP_2 :
398 SET_UART_FORMAT_STOP_1;
399
400 /* Set Parity bit3-4 01:Odd 11:Even */
401 if (cflag & PARENB) {
402 buf[1] |= (cflag & PARODD) ?
403 SET_UART_FORMAT_PAR_ODD : SET_UART_FORMAT_PAR_EVEN ;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100404 } else {
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100405 buf[1] |= SET_UART_FORMAT_PAR_NONE;
Johan Hovold2d816ac2013-03-21 12:37:26 +0100406 }
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100407 uartdata = buf[0] | buf[1]<<8;
408
409 i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
410 SET_UART_FORMAT_TYPE, SET_UART_FORMAT,
411 uartdata, 0, NULL, 0, 100);
412 if (i < 0)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700413 dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n",
414 uartdata, i);
Greg Kroah-Hartmanfe2baf82012-05-15 16:27:30 -0700415 dev_dbg(&port->dev, "0x21:0x40:0:0 %d\n", i);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100416
417 if (cflag & CRTSCTS) {
418 /* enable hardware flow control */
Johan Hovold8413d2f2013-03-21 12:37:27 +0100419 spcp8x5_set_work_mode(port, 0x000a, SET_WORKING_MODE_U2C);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100420 }
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100421}
422
Alan Coxa509a7e2009-09-19 13:13:26 -0700423static int spcp8x5_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100424{
425 struct ktermios tmp_termios;
426 struct usb_serial *serial = port->serial;
427 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
428 int ret;
429 unsigned long flags;
430 u8 status = 0x30;
431 /* status 0x30 means DSR and CTS = 1 other CDC RI and delta = 0 */
432
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100433 usb_clear_halt(serial->dev, port->write_urb->pipe);
434 usb_clear_halt(serial->dev, port->read_urb->pipe);
435
436 ret = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
437 0x09, 0x00,
438 0x01, 0x00, NULL, 0x00, 100);
439 if (ret)
440 return ret;
441
Johan Hovold8413d2f2013-03-21 12:37:27 +0100442 spcp8x5_set_ctrl_line(port, priv->line_control);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100443
444 /* Setup termios */
Alan Cox95da3102008-07-22 11:09:07 +0100445 if (tty)
446 spcp8x5_set_termios(tty, port, &tmp_termios);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100447
Johan Hovold8413d2f2013-03-21 12:37:27 +0100448 spcp8x5_get_msr(port, &status);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100449
450 /* may be we should update uart status here but now we did not do */
451 spin_lock_irqsave(&priv->lock, flags);
452 priv->line_status = status & 0xf0 ;
453 spin_unlock_irqrestore(&priv->lock, flags);
454
Alan Cox335f8512009-06-11 12:26:29 +0100455 port->port.drain_delay = 256;
Johan Hovoldfa993ca2010-05-15 17:53:47 +0200456
457 return usb_serial_generic_open(tty, port);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100458}
459
Alan Cox20b9d172011-02-14 16:26:50 +0000460static int spcp8x5_tiocmset(struct tty_struct *tty,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100461 unsigned int set, unsigned int clear)
462{
Alan Cox95da3102008-07-22 11:09:07 +0100463 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100464 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
465 unsigned long flags;
466 u8 control;
467
468 spin_lock_irqsave(&priv->lock, flags);
469 if (set & TIOCM_RTS)
470 priv->line_control |= MCR_RTS;
471 if (set & TIOCM_DTR)
472 priv->line_control |= MCR_DTR;
473 if (clear & TIOCM_RTS)
474 priv->line_control &= ~MCR_RTS;
475 if (clear & TIOCM_DTR)
476 priv->line_control &= ~MCR_DTR;
477 control = priv->line_control;
478 spin_unlock_irqrestore(&priv->lock, flags);
479
Johan Hovold8413d2f2013-03-21 12:37:27 +0100480 return spcp8x5_set_ctrl_line(port, control);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100481}
482
Alan Cox60b33c12011-02-14 16:26:14 +0000483static int spcp8x5_tiocmget(struct tty_struct *tty)
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100484{
Alan Cox95da3102008-07-22 11:09:07 +0100485 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100486 struct spcp8x5_private *priv = usb_get_serial_port_data(port);
487 unsigned long flags;
488 unsigned int mcr;
489 unsigned int status;
490 unsigned int result;
491
492 spin_lock_irqsave(&priv->lock, flags);
493 mcr = priv->line_control;
494 status = priv->line_status;
495 spin_unlock_irqrestore(&priv->lock, flags);
496
497 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
498 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
499 | ((status & MSR_STATUS_LINE_CTS) ? TIOCM_CTS : 0)
500 | ((status & MSR_STATUS_LINE_DSR) ? TIOCM_DSR : 0)
501 | ((status & MSR_STATUS_LINE_RI) ? TIOCM_RI : 0)
502 | ((status & MSR_STATUS_LINE_DCD) ? TIOCM_CD : 0);
503
504 return result;
505}
506
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100507static struct usb_serial_driver spcp8x5_device = {
508 .driver = {
509 .owner = THIS_MODULE,
510 .name = "SPCP8x5",
511 },
512 .id_table = id_table,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100513 .num_ports = 1,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100514 .open = spcp8x5_open,
Alan Cox335f8512009-06-11 12:26:29 +0100515 .dtr_rts = spcp8x5_dtr_rts,
516 .carrier_raised = spcp8x5_carrier_raised,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100517 .set_termios = spcp8x5_set_termios,
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700518 .init_termios = spcp8x5_init_termios,
Johan Hovold2d816ac2013-03-21 12:37:26 +0100519 .tiocmget = spcp8x5_tiocmget,
520 .tiocmset = spcp8x5_tiocmset,
Johan Hovoldbf90ff52012-10-17 16:31:33 +0200521 .port_probe = spcp8x5_port_probe,
522 .port_remove = spcp8x5_port_remove,
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100523};
524
Alan Sternd8603222012-02-23 14:57:25 -0500525static struct usb_serial_driver * const serial_drivers[] = {
526 &spcp8x5_device, NULL
527};
528
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700529module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100530
531MODULE_DESCRIPTION(DRIVER_DESC);
Greg Kroah-Hartman619a6f12008-02-07 23:59:03 +0100532MODULE_LICENSE("GPL");