Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 1 | /* |
| 2 | * spcp8x5 USB to serial adaptor driver |
| 3 | * |
Johan Hovold | fa993ca | 2010-05-15 17:53:47 +0200 | [diff] [blame] | 4 | * Copyright (C) 2010 Johan Hovold (jhovold@gmail.com) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 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 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 31 | #define DRIVER_DESC "SPCP8x5 USB to serial adaptor driver" |
| 32 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 33 | #define SPCP8x5_007_VID 0x04FC |
| 34 | #define SPCP8x5_007_PID 0x0201 |
| 35 | #define SPCP8x5_008_VID 0x04fc |
| 36 | #define SPCP8x5_008_PID 0x0235 |
| 37 | #define SPCP8x5_PHILIPS_VID 0x0471 |
| 38 | #define SPCP8x5_PHILIPS_PID 0x081e |
| 39 | #define SPCP8x5_INTERMATIC_VID 0x04FC |
| 40 | #define SPCP8x5_INTERMATIC_PID 0x0204 |
| 41 | #define SPCP8x5_835_VID 0x04fc |
| 42 | #define SPCP8x5_835_PID 0x0231 |
| 43 | |
Németh Márton | 7d40d7e | 2010-01-10 15:34:24 +0100 | [diff] [blame] | 44 | static const struct usb_device_id id_table[] = { |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 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 | |
| 54 | struct spcp8x5_usb_ctrl_arg { |
| 55 | u8 type; |
| 56 | u8 cmd; |
| 57 | u8 cmd_type; |
| 58 | u16 value; |
| 59 | u16 index; |
| 60 | u16 length; |
| 61 | }; |
| 62 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 63 | |
| 64 | /* spcp8x5 spec register define */ |
| 65 | #define MCR_CONTROL_LINE_RTS 0x02 |
| 66 | #define MCR_CONTROL_LINE_DTR 0x01 |
| 67 | #define MCR_DTR 0x01 |
| 68 | #define MCR_RTS 0x02 |
| 69 | |
| 70 | #define MSR_STATUS_LINE_DCD 0x80 |
| 71 | #define MSR_STATUS_LINE_RI 0x40 |
| 72 | #define MSR_STATUS_LINE_DSR 0x20 |
| 73 | #define MSR_STATUS_LINE_CTS 0x10 |
| 74 | |
| 75 | /* verdor command here , we should define myself */ |
| 76 | #define SET_DEFAULT 0x40 |
| 77 | #define SET_DEFAULT_TYPE 0x20 |
| 78 | |
| 79 | #define SET_UART_FORMAT 0x40 |
| 80 | #define SET_UART_FORMAT_TYPE 0x21 |
| 81 | #define SET_UART_FORMAT_SIZE_5 0x00 |
| 82 | #define SET_UART_FORMAT_SIZE_6 0x01 |
| 83 | #define SET_UART_FORMAT_SIZE_7 0x02 |
| 84 | #define SET_UART_FORMAT_SIZE_8 0x03 |
| 85 | #define SET_UART_FORMAT_STOP_1 0x00 |
| 86 | #define SET_UART_FORMAT_STOP_2 0x04 |
| 87 | #define SET_UART_FORMAT_PAR_NONE 0x00 |
| 88 | #define SET_UART_FORMAT_PAR_ODD 0x10 |
| 89 | #define SET_UART_FORMAT_PAR_EVEN 0x30 |
| 90 | #define SET_UART_FORMAT_PAR_MASK 0xD0 |
| 91 | #define SET_UART_FORMAT_PAR_SPACE 0x90 |
| 92 | |
| 93 | #define GET_UART_STATUS_TYPE 0xc0 |
| 94 | #define GET_UART_STATUS 0x22 |
| 95 | #define GET_UART_STATUS_MSR 0x06 |
| 96 | |
| 97 | #define SET_UART_STATUS 0x40 |
| 98 | #define SET_UART_STATUS_TYPE 0x23 |
| 99 | #define SET_UART_STATUS_MCR 0x0004 |
| 100 | #define SET_UART_STATUS_MCR_DTR 0x01 |
| 101 | #define SET_UART_STATUS_MCR_RTS 0x02 |
| 102 | #define SET_UART_STATUS_MCR_LOOP 0x10 |
| 103 | |
| 104 | #define SET_WORKING_MODE 0x40 |
| 105 | #define SET_WORKING_MODE_TYPE 0x24 |
| 106 | #define SET_WORKING_MODE_U2C 0x00 |
| 107 | #define SET_WORKING_MODE_RS485 0x01 |
| 108 | #define SET_WORKING_MODE_PDMA 0x02 |
| 109 | #define SET_WORKING_MODE_SPP 0x03 |
| 110 | |
| 111 | #define SET_FLOWCTL_CHAR 0x40 |
| 112 | #define SET_FLOWCTL_CHAR_TYPE 0x25 |
| 113 | |
| 114 | #define GET_VERSION 0xc0 |
| 115 | #define GET_VERSION_TYPE 0x26 |
| 116 | |
| 117 | #define SET_REGISTER 0x40 |
| 118 | #define SET_REGISTER_TYPE 0x27 |
| 119 | |
| 120 | #define GET_REGISTER 0xc0 |
| 121 | #define GET_REGISTER_TYPE 0x28 |
| 122 | |
| 123 | #define SET_RAM 0x40 |
| 124 | #define SET_RAM_TYPE 0x31 |
| 125 | |
| 126 | #define GET_RAM 0xc0 |
| 127 | #define GET_RAM_TYPE 0x32 |
| 128 | |
| 129 | /* how come ??? */ |
| 130 | #define UART_STATE 0x08 |
Libor Pechacek | d14fc1a | 2011-01-14 14:30:21 +0100 | [diff] [blame] | 131 | #define UART_STATE_TRANSIENT_MASK 0x75 |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 132 | #define UART_DCD 0x01 |
| 133 | #define UART_DSR 0x02 |
| 134 | #define UART_BREAK_ERROR 0x04 |
| 135 | #define UART_RING 0x08 |
| 136 | #define UART_FRAME_ERROR 0x10 |
| 137 | #define UART_PARITY_ERROR 0x20 |
| 138 | #define UART_OVERRUN_ERROR 0x40 |
| 139 | #define UART_CTS 0x80 |
| 140 | |
| 141 | enum spcp8x5_type { |
| 142 | SPCP825_007_TYPE, |
| 143 | SPCP825_008_TYPE, |
| 144 | SPCP825_PHILIP_TYPE, |
| 145 | SPCP825_INTERMATIC_TYPE, |
| 146 | SPCP835_TYPE, |
| 147 | }; |
| 148 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 149 | struct spcp8x5_private { |
| 150 | spinlock_t lock; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 151 | enum spcp8x5_type type; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 152 | u8 line_control; |
| 153 | u8 line_status; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 154 | }; |
| 155 | |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 156 | static int spcp8x5_port_probe(struct usb_serial_port *port) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 157 | { |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 158 | struct usb_serial *serial = port->serial; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 159 | struct spcp8x5_private *priv; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 160 | enum spcp8x5_type type = SPCP825_007_TYPE; |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 161 | u16 product = le16_to_cpu(serial->dev->descriptor.idProduct); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 162 | |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 163 | if (product == 0x0201) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 164 | type = SPCP825_007_TYPE; |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 165 | else if (product == 0x0231) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 166 | type = SPCP835_TYPE; |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 167 | else if (product == 0x0235) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 168 | type = SPCP825_008_TYPE; |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 169 | else if (product == 0x0204) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 170 | type = SPCP825_INTERMATIC_TYPE; |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 171 | else if (product == 0x0471 && |
| 172 | serial->dev->descriptor.idVendor == cpu_to_le16(0x081e)) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 173 | type = SPCP825_PHILIP_TYPE; |
| 174 | dev_dbg(&serial->dev->dev, "device type = %d\n", (int)type); |
| 175 | |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 176 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
| 177 | if (!priv) |
| 178 | return -ENOMEM; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 179 | |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 180 | spin_lock_init(&priv->lock); |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 181 | priv->type = type; |
| 182 | |
| 183 | usb_set_serial_port_data(port , priv); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 184 | |
| 185 | return 0; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 186 | } |
| 187 | |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 188 | static int spcp8x5_port_remove(struct usb_serial_port *port) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 189 | { |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 190 | struct spcp8x5_private *priv; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 191 | |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 192 | priv = usb_get_serial_port_data(port); |
| 193 | kfree(priv); |
| 194 | |
| 195 | return 0; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | /* set the modem control line of the device. |
| 199 | * NOTE spcp825-007 not supported this */ |
| 200 | static int spcp8x5_set_ctrlLine(struct usb_device *dev, u8 value, |
| 201 | enum spcp8x5_type type) |
| 202 | { |
| 203 | int retval; |
| 204 | u8 mcr = 0 ; |
| 205 | |
| 206 | if (type == SPCP825_007_TYPE) |
| 207 | return -EPERM; |
| 208 | |
| 209 | mcr = (unsigned short)value; |
| 210 | retval = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 211 | SET_UART_STATUS_TYPE, SET_UART_STATUS, |
| 212 | mcr, 0x04, NULL, 0, 100); |
| 213 | if (retval != 0) |
| 214 | dev_dbg(&dev->dev, "usb_control_msg return %#x\n", retval); |
| 215 | return retval; |
| 216 | } |
| 217 | |
| 218 | /* get the modem status register of the device |
| 219 | * NOTE spcp825-007 not supported this */ |
| 220 | static int spcp8x5_get_msr(struct usb_device *dev, u8 *status, |
| 221 | enum spcp8x5_type type) |
| 222 | { |
| 223 | u8 *status_buffer; |
| 224 | int ret; |
| 225 | |
| 226 | /* I return Permited not support here but seem inval device |
| 227 | * is more fix */ |
| 228 | if (type == SPCP825_007_TYPE) |
| 229 | return -EPERM; |
| 230 | if (status == NULL) |
| 231 | return -EINVAL; |
| 232 | |
| 233 | status_buffer = kmalloc(1, GFP_KERNEL); |
| 234 | if (!status_buffer) |
| 235 | return -ENOMEM; |
| 236 | status_buffer[0] = status[0]; |
| 237 | |
| 238 | ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), |
| 239 | GET_UART_STATUS, GET_UART_STATUS_TYPE, |
| 240 | 0, GET_UART_STATUS_MSR, status_buffer, 1, 100); |
| 241 | if (ret < 0) |
| 242 | dev_dbg(&dev->dev, "Get MSR = 0x%p failed (error = %d)", |
| 243 | status_buffer, ret); |
| 244 | |
| 245 | dev_dbg(&dev->dev, "0xc0:0x22:0:6 %d - 0x%p ", ret, status_buffer); |
| 246 | status[0] = status_buffer[0]; |
| 247 | kfree(status_buffer); |
| 248 | |
| 249 | return ret; |
| 250 | } |
| 251 | |
| 252 | /* select the work mode. |
| 253 | * NOTE this function not supported by spcp825-007 */ |
| 254 | static void spcp8x5_set_workMode(struct usb_device *dev, u16 value, |
| 255 | u16 index, enum spcp8x5_type type) |
| 256 | { |
| 257 | int ret; |
| 258 | |
| 259 | /* I return Permited not support here but seem inval device |
| 260 | * is more fix */ |
| 261 | if (type == SPCP825_007_TYPE) |
| 262 | return; |
| 263 | |
| 264 | ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), |
| 265 | SET_WORKING_MODE_TYPE, SET_WORKING_MODE, |
| 266 | value, index, NULL, 0, 100); |
| 267 | dev_dbg(&dev->dev, "value = %#x , index = %#x\n", value, index); |
| 268 | if (ret < 0) |
| 269 | dev_dbg(&dev->dev, |
| 270 | "RTSCTS usb_control_msg(enable flowctrl) = %d\n", ret); |
| 271 | } |
| 272 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 273 | static int spcp8x5_carrier_raised(struct usb_serial_port *port) |
| 274 | { |
| 275 | struct spcp8x5_private *priv = usb_get_serial_port_data(port); |
| 276 | if (priv->line_status & MSR_STATUS_LINE_DCD) |
| 277 | return 1; |
| 278 | return 0; |
| 279 | } |
| 280 | |
| 281 | static void spcp8x5_dtr_rts(struct usb_serial_port *port, int on) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 282 | { |
| 283 | struct spcp8x5_private *priv = usb_get_serial_port_data(port); |
| 284 | unsigned long flags; |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 285 | u8 control; |
| 286 | |
| 287 | spin_lock_irqsave(&priv->lock, flags); |
| 288 | if (on) |
| 289 | priv->line_control = MCR_CONTROL_LINE_DTR |
| 290 | | MCR_CONTROL_LINE_RTS; |
| 291 | else |
| 292 | priv->line_control &= ~ (MCR_CONTROL_LINE_DTR |
| 293 | | MCR_CONTROL_LINE_RTS); |
| 294 | control = priv->line_control; |
| 295 | spin_unlock_irqrestore(&priv->lock, flags); |
| 296 | spcp8x5_set_ctrlLine(port->serial->dev, control , priv->type); |
| 297 | } |
| 298 | |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 299 | static void spcp8x5_init_termios(struct tty_struct *tty) |
| 300 | { |
| 301 | /* for the 1st time call this function */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 302 | tty->termios = tty_std_termios; |
| 303 | tty->termios.c_cflag = B115200 | CS8 | CREAD | HUPCL | CLOCAL; |
| 304 | tty->termios.c_ispeed = 115200; |
| 305 | tty->termios.c_ospeed = 115200; |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 306 | } |
| 307 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 308 | /* set the serial param for transfer. we should check if we really need to |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 309 | * transfer. if we set flow control we should do this too. */ |
| 310 | static void spcp8x5_set_termios(struct tty_struct *tty, |
| 311 | struct usb_serial_port *port, struct ktermios *old_termios) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 312 | { |
| 313 | struct usb_serial *serial = port->serial; |
| 314 | struct spcp8x5_private *priv = usb_get_serial_port_data(port); |
| 315 | unsigned long flags; |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 316 | unsigned int cflag = tty->termios.c_cflag; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 317 | unsigned int old_cflag = old_termios->c_cflag; |
| 318 | unsigned short uartdata; |
| 319 | unsigned char buf[2] = {0, 0}; |
| 320 | int baud; |
| 321 | int i; |
| 322 | u8 control; |
| 323 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 324 | |
| 325 | /* check that they really want us to change something */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 326 | if (!tty_termios_hw_change(&tty->termios, old_termios)) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 327 | return; |
| 328 | |
| 329 | /* set DTR/RTS active */ |
| 330 | spin_lock_irqsave(&priv->lock, flags); |
| 331 | control = priv->line_control; |
| 332 | if ((old_cflag & CBAUD) == B0) { |
| 333 | priv->line_control |= MCR_DTR; |
| 334 | if (!(old_cflag & CRTSCTS)) |
| 335 | priv->line_control |= MCR_RTS; |
| 336 | } |
| 337 | if (control != priv->line_control) { |
| 338 | control = priv->line_control; |
| 339 | spin_unlock_irqrestore(&priv->lock, flags); |
| 340 | spcp8x5_set_ctrlLine(serial->dev, control , priv->type); |
| 341 | } else { |
| 342 | spin_unlock_irqrestore(&priv->lock, flags); |
| 343 | } |
| 344 | |
| 345 | /* Set Baud Rate */ |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 346 | baud = tty_get_baud_rate(tty); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 347 | switch (baud) { |
| 348 | case 300: buf[0] = 0x00; break; |
| 349 | case 600: buf[0] = 0x01; break; |
| 350 | case 1200: buf[0] = 0x02; break; |
| 351 | case 2400: buf[0] = 0x03; break; |
| 352 | case 4800: buf[0] = 0x04; break; |
| 353 | case 9600: buf[0] = 0x05; break; |
| 354 | case 19200: buf[0] = 0x07; break; |
| 355 | case 38400: buf[0] = 0x09; break; |
| 356 | case 57600: buf[0] = 0x0a; break; |
| 357 | case 115200: buf[0] = 0x0b; break; |
| 358 | case 230400: buf[0] = 0x0c; break; |
| 359 | case 460800: buf[0] = 0x0d; break; |
| 360 | case 921600: buf[0] = 0x0e; break; |
| 361 | /* case 1200000: buf[0] = 0x0f; break; */ |
| 362 | /* case 2400000: buf[0] = 0x10; break; */ |
| 363 | case 3000000: buf[0] = 0x11; break; |
| 364 | /* case 6000000: buf[0] = 0x12; break; */ |
| 365 | case 0: |
| 366 | case 1000000: |
| 367 | buf[0] = 0x0b; break; |
| 368 | default: |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 369 | dev_err(&port->dev, "spcp825 driver does not support the " |
| 370 | "baudrate requested, using default of 9600.\n"); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | /* Set Data Length : 00:5bit, 01:6bit, 10:7bit, 11:8bit */ |
| 374 | if (cflag & CSIZE) { |
| 375 | switch (cflag & CSIZE) { |
| 376 | case CS5: |
| 377 | buf[1] |= SET_UART_FORMAT_SIZE_5; |
| 378 | break; |
| 379 | case CS6: |
| 380 | buf[1] |= SET_UART_FORMAT_SIZE_6; |
| 381 | break; |
| 382 | case CS7: |
| 383 | buf[1] |= SET_UART_FORMAT_SIZE_7; |
| 384 | break; |
| 385 | default: |
| 386 | case CS8: |
| 387 | buf[1] |= SET_UART_FORMAT_SIZE_8; |
| 388 | break; |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | /* Set Stop bit2 : 0:1bit 1:2bit */ |
| 393 | buf[1] |= (cflag & CSTOPB) ? SET_UART_FORMAT_STOP_2 : |
| 394 | SET_UART_FORMAT_STOP_1; |
| 395 | |
| 396 | /* Set Parity bit3-4 01:Odd 11:Even */ |
| 397 | if (cflag & PARENB) { |
| 398 | buf[1] |= (cflag & PARODD) ? |
| 399 | SET_UART_FORMAT_PAR_ODD : SET_UART_FORMAT_PAR_EVEN ; |
| 400 | } else |
| 401 | buf[1] |= SET_UART_FORMAT_PAR_NONE; |
| 402 | |
| 403 | uartdata = buf[0] | buf[1]<<8; |
| 404 | |
| 405 | i = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), |
| 406 | SET_UART_FORMAT_TYPE, SET_UART_FORMAT, |
| 407 | uartdata, 0, NULL, 0, 100); |
| 408 | if (i < 0) |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 409 | dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n", |
| 410 | uartdata, i); |
Greg Kroah-Hartman | fe2baf8 | 2012-05-15 16:27:30 -0700 | [diff] [blame] | 411 | dev_dbg(&port->dev, "0x21:0x40:0:0 %d\n", i); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 412 | |
| 413 | if (cflag & CRTSCTS) { |
| 414 | /* enable hardware flow control */ |
| 415 | spcp8x5_set_workMode(serial->dev, 0x000a, |
| 416 | SET_WORKING_MODE_U2C, priv->type); |
| 417 | } |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | /* open the serial port. do some usb system call. set termios and get the line |
Johan Hovold | fa993ca | 2010-05-15 17:53:47 +0200 | [diff] [blame] | 421 | * status of the device. */ |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 422 | static int spcp8x5_open(struct tty_struct *tty, struct usb_serial_port *port) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 423 | { |
| 424 | struct ktermios tmp_termios; |
| 425 | struct usb_serial *serial = port->serial; |
| 426 | struct spcp8x5_private *priv = usb_get_serial_port_data(port); |
| 427 | int ret; |
| 428 | unsigned long flags; |
| 429 | u8 status = 0x30; |
| 430 | /* status 0x30 means DSR and CTS = 1 other CDC RI and delta = 0 */ |
| 431 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 432 | usb_clear_halt(serial->dev, port->write_urb->pipe); |
| 433 | usb_clear_halt(serial->dev, port->read_urb->pipe); |
| 434 | |
| 435 | ret = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), |
| 436 | 0x09, 0x00, |
| 437 | 0x01, 0x00, NULL, 0x00, 100); |
| 438 | if (ret) |
| 439 | return ret; |
| 440 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 441 | spcp8x5_set_ctrlLine(serial->dev, priv->line_control , priv->type); |
| 442 | |
| 443 | /* Setup termios */ |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 444 | if (tty) |
| 445 | spcp8x5_set_termios(tty, port, &tmp_termios); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 446 | |
| 447 | spcp8x5_get_msr(serial->dev, &status, priv->type); |
| 448 | |
| 449 | /* may be we should update uart status here but now we did not do */ |
| 450 | spin_lock_irqsave(&priv->lock, flags); |
| 451 | priv->line_status = status & 0xf0 ; |
| 452 | spin_unlock_irqrestore(&priv->lock, flags); |
| 453 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 454 | port->port.drain_delay = 256; |
Johan Hovold | fa993ca | 2010-05-15 17:53:47 +0200 | [diff] [blame] | 455 | |
| 456 | return usb_serial_generic_open(tty, port); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 457 | } |
| 458 | |
Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 459 | static int spcp8x5_tiocmset(struct tty_struct *tty, |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 460 | unsigned int set, unsigned int clear) |
| 461 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 462 | struct usb_serial_port *port = tty->driver_data; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 463 | struct spcp8x5_private *priv = usb_get_serial_port_data(port); |
| 464 | unsigned long flags; |
| 465 | u8 control; |
| 466 | |
| 467 | spin_lock_irqsave(&priv->lock, flags); |
| 468 | if (set & TIOCM_RTS) |
| 469 | priv->line_control |= MCR_RTS; |
| 470 | if (set & TIOCM_DTR) |
| 471 | priv->line_control |= MCR_DTR; |
| 472 | if (clear & TIOCM_RTS) |
| 473 | priv->line_control &= ~MCR_RTS; |
| 474 | if (clear & TIOCM_DTR) |
| 475 | priv->line_control &= ~MCR_DTR; |
| 476 | control = priv->line_control; |
| 477 | spin_unlock_irqrestore(&priv->lock, flags); |
| 478 | |
| 479 | return spcp8x5_set_ctrlLine(port->serial->dev, control , priv->type); |
| 480 | } |
| 481 | |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 482 | static int spcp8x5_tiocmget(struct tty_struct *tty) |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 483 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 484 | struct usb_serial_port *port = tty->driver_data; |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 485 | struct spcp8x5_private *priv = usb_get_serial_port_data(port); |
| 486 | unsigned long flags; |
| 487 | unsigned int mcr; |
| 488 | unsigned int status; |
| 489 | unsigned int result; |
| 490 | |
| 491 | spin_lock_irqsave(&priv->lock, flags); |
| 492 | mcr = priv->line_control; |
| 493 | status = priv->line_status; |
| 494 | spin_unlock_irqrestore(&priv->lock, flags); |
| 495 | |
| 496 | result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0) |
| 497 | | ((mcr & MCR_RTS) ? TIOCM_RTS : 0) |
| 498 | | ((status & MSR_STATUS_LINE_CTS) ? TIOCM_CTS : 0) |
| 499 | | ((status & MSR_STATUS_LINE_DSR) ? TIOCM_DSR : 0) |
| 500 | | ((status & MSR_STATUS_LINE_RI) ? TIOCM_RI : 0) |
| 501 | | ((status & MSR_STATUS_LINE_DCD) ? TIOCM_CD : 0); |
| 502 | |
| 503 | return result; |
| 504 | } |
| 505 | |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 506 | /* All of the device info needed for the spcp8x5 SIO serial converter */ |
| 507 | static struct usb_serial_driver spcp8x5_device = { |
| 508 | .driver = { |
| 509 | .owner = THIS_MODULE, |
| 510 | .name = "SPCP8x5", |
| 511 | }, |
| 512 | .id_table = id_table, |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 513 | .num_ports = 1, |
| 514 | .open = spcp8x5_open, |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 515 | .dtr_rts = spcp8x5_dtr_rts, |
| 516 | .carrier_raised = spcp8x5_carrier_raised, |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 517 | .set_termios = spcp8x5_set_termios, |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 518 | .init_termios = spcp8x5_init_termios, |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 519 | .tiocmget = spcp8x5_tiocmget, |
| 520 | .tiocmset = spcp8x5_tiocmset, |
Johan Hovold | bf90ff5 | 2012-10-17 16:31:33 +0200 | [diff] [blame] | 521 | .port_probe = spcp8x5_port_probe, |
| 522 | .port_remove = spcp8x5_port_remove, |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 523 | }; |
| 524 | |
Alan Stern | d860322 | 2012-02-23 14:57:25 -0500 | [diff] [blame] | 525 | static struct usb_serial_driver * const serial_drivers[] = { |
| 526 | &spcp8x5_device, NULL |
| 527 | }; |
| 528 | |
Greg Kroah-Hartman | 68e2411 | 2012-05-08 15:46:14 -0700 | [diff] [blame] | 529 | module_usb_serial_driver(serial_drivers, id_table); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 530 | |
| 531 | MODULE_DESCRIPTION(DRIVER_DESC); |
Greg Kroah-Hartman | 619a6f1 | 2008-02-07 23:59:03 +0100 | [diff] [blame] | 532 | MODULE_LICENSE("GPL"); |