Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * KOBIL USB Smart Card Terminal Driver |
| 3 | * |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 4 | * Copyright (C) 2002 KOBIL Systems GmbH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author: Thomas Wahrenbruch |
| 6 | * |
| 7 | * Contact: linuxusb@kobil.de |
| 8 | * |
| 9 | * This program is largely derived from work by the linux-usb group |
| 10 | * and associated source files. Please see the usb/serial files for |
| 11 | * individual credits and copyrights. |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
| 17 | * |
| 18 | * Thanks to Greg Kroah-Hartman (greg@kroah.com) for his help and |
| 19 | * patience. |
| 20 | * |
| 21 | * Supported readers: USB TWIN, KAAN Standard Plus and SecOVID Reader Plus |
| 22 | * (Adapter K), B1 Professional and KAAN Professional (Adapter B) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/kernel.h> |
| 27 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/slab.h> |
| 29 | #include <linux/tty.h> |
| 30 | #include <linux/tty_driver.h> |
| 31 | #include <linux/tty_flip.h> |
| 32 | #include <linux/module.h> |
| 33 | #include <linux/spinlock.h> |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 34 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 36 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/ioctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "kobil_sct.h" |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #define DRIVER_AUTHOR "KOBIL Systems GmbH - http://www.kobil.com" |
| 41 | #define DRIVER_DESC "KOBIL USB Smart Card Terminal Driver (experimental)" |
| 42 | |
| 43 | #define KOBIL_VENDOR_ID 0x0D46 |
| 44 | #define KOBIL_ADAPTER_B_PRODUCT_ID 0x2011 |
| 45 | #define KOBIL_ADAPTER_K_PRODUCT_ID 0x2012 |
| 46 | #define KOBIL_USBTWIN_PRODUCT_ID 0x0078 |
| 47 | #define KOBIL_KAAN_SIM_PRODUCT_ID 0x0081 |
| 48 | |
| 49 | #define KOBIL_TIMEOUT 500 |
| 50 | #define KOBIL_BUF_LENGTH 300 |
| 51 | |
| 52 | |
| 53 | /* Function prototypes */ |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 54 | static int kobil_port_probe(struct usb_serial_port *probe); |
| 55 | static int kobil_port_remove(struct usb_serial_port *probe); |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 56 | static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port); |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 57 | static void kobil_close(struct usb_serial_port *port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 58 | static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | const unsigned char *buf, int count); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 60 | static int kobil_write_room(struct tty_struct *tty); |
Alan Cox | 00a0d0d | 2011-02-14 16:27:06 +0000 | [diff] [blame] | 61 | static int kobil_ioctl(struct tty_struct *tty, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | unsigned int cmd, unsigned long arg); |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 63 | static int kobil_tiocmget(struct tty_struct *tty); |
Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 64 | static int kobil_tiocmset(struct tty_struct *tty, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | unsigned int set, unsigned int clear); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 66 | static void kobil_read_int_callback(struct urb *urb); |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 67 | static void kobil_write_int_callback(struct urb *urb); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 68 | static void kobil_set_termios(struct tty_struct *tty, |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 69 | struct usb_serial_port *port, struct ktermios *old); |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 70 | static void kobil_init_termios(struct tty_struct *tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Németh Márton | 7d40d7e | 2010-01-10 15:34:24 +0100 | [diff] [blame] | 72 | static const struct usb_device_id id_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) }, |
| 74 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) }, |
| 75 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) }, |
| 76 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) }, |
| 77 | { } /* Terminating entry */ |
| 78 | }; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 79 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 81 | static struct usb_serial_driver kobil_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 82 | .driver = { |
| 83 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 84 | .name = "kobil", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 85 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 86 | .description = "KOBIL USB smart card terminal", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | .id_table = id_table, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | .num_ports = 1, |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 89 | .port_probe = kobil_port_probe, |
| 90 | .port_remove = kobil_port_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | .ioctl = kobil_ioctl, |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 92 | .set_termios = kobil_set_termios, |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 93 | .init_termios = kobil_init_termios, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | .tiocmget = kobil_tiocmget, |
| 95 | .tiocmset = kobil_tiocmset, |
| 96 | .open = kobil_open, |
| 97 | .close = kobil_close, |
| 98 | .write = kobil_write, |
| 99 | .write_room = kobil_write_room, |
| 100 | .read_int_callback = kobil_read_int_callback, |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 101 | .write_int_callback = kobil_write_int_callback, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | }; |
| 103 | |
Alan Stern | 4d2a7af | 2012-02-23 14:57:09 -0500 | [diff] [blame] | 104 | static struct usb_serial_driver * const serial_drivers[] = { |
| 105 | &kobil_device, NULL |
| 106 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | struct kobil_private { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 109 | unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */ |
| 110 | int filled; /* index of the last char in buf */ |
| 111 | int cur_pos; /* index of the next char to send in buf */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | __u16 device_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | }; |
| 114 | |
| 115 | |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 116 | static int kobil_port_probe(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | { |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 118 | struct usb_serial *serial = port->serial; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 122 | if (!priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 125 | priv->filled = 0; |
| 126 | priv->cur_pos = 0; |
| 127 | priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 129 | switch (priv->device_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | case KOBIL_ADAPTER_B_PRODUCT_ID: |
Greg Kroah-Hartman | 6c27ad8 | 2012-09-18 17:03:31 +0100 | [diff] [blame] | 131 | dev_dbg(&serial->dev->dev, "KOBIL B1 PRO / KAAN PRO detected\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | break; |
| 133 | case KOBIL_ADAPTER_K_PRODUCT_ID: |
Greg Kroah-Hartman | 6c27ad8 | 2012-09-18 17:03:31 +0100 | [diff] [blame] | 134 | dev_dbg(&serial->dev->dev, "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | break; |
| 136 | case KOBIL_USBTWIN_PRODUCT_ID: |
Greg Kroah-Hartman | 6c27ad8 | 2012-09-18 17:03:31 +0100 | [diff] [blame] | 137 | dev_dbg(&serial->dev->dev, "KOBIL USBTWIN detected\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | break; |
| 139 | case KOBIL_KAAN_SIM_PRODUCT_ID: |
Greg Kroah-Hartman | 6c27ad8 | 2012-09-18 17:03:31 +0100 | [diff] [blame] | 140 | dev_dbg(&serial->dev->dev, "KOBIL KAAN SIM detected\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | break; |
| 142 | } |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 143 | usb_set_serial_port_data(port, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 149 | static int kobil_port_remove(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 151 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Johan Hovold | 95940a0 | 2012-10-17 13:35:02 +0200 | [diff] [blame] | 153 | priv = usb_get_serial_port_data(port); |
| 154 | kfree(priv); |
| 155 | |
| 156 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 159 | static void kobil_init_termios(struct tty_struct *tty) |
| 160 | { |
| 161 | /* Default to echo off and other sane device settings */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 162 | tty->termios.c_lflag = 0; |
Alan Cox | 6a6c8b3 | 2012-07-14 15:32:50 +0100 | [diff] [blame] | 163 | tty->termios.c_iflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE); |
| 164 | tty->termios.c_iflag |= IGNBRK | IGNPAR | IXOFF; |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 165 | /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 166 | tty->termios.c_oflag &= ~ONLCR; |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 169 | static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | { |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 171 | struct device *dev = &port->dev; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 172 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | struct kobil_private *priv; |
| 174 | unsigned char *transfer_buffer; |
| 175 | int transfer_buffer_length = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | priv = usb_get_serial_port_data(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 179 | /* allocate memory for transfer buffer */ |
| 180 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); |
| 181 | if (!transfer_buffer) |
| 182 | return -ENOMEM; |
| 183 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 184 | /* get hardware version */ |
| 185 | result = usb_control_msg(port->serial->dev, |
| 186 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 187 | SUSBCRequest_GetMisc, |
| 188 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN, |
| 189 | SUSBCR_MSC_GetHWVersion, |
| 190 | 0, |
| 191 | transfer_buffer, |
| 192 | transfer_buffer_length, |
| 193 | KOBIL_TIMEOUT |
| 194 | ); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 195 | dev_dbg(dev, "%s - Send get_HW_version URB returns: %i\n", __func__, result); |
Masanari Iida | 8faaaea | 2014-01-07 21:58:06 +0900 | [diff] [blame] | 196 | dev_dbg(dev, "Hardware version: %i.%i.%i\n", transfer_buffer[0], |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 197 | transfer_buffer[1], transfer_buffer[2]); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 198 | |
| 199 | /* get firmware version */ |
| 200 | result = usb_control_msg(port->serial->dev, |
| 201 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 202 | SUSBCRequest_GetMisc, |
| 203 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN, |
| 204 | SUSBCR_MSC_GetFWVersion, |
| 205 | 0, |
| 206 | transfer_buffer, |
| 207 | transfer_buffer_length, |
| 208 | KOBIL_TIMEOUT |
| 209 | ); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 210 | dev_dbg(dev, "%s - Send get_FW_version URB returns: %i\n", __func__, result); |
| 211 | dev_dbg(dev, "Firmware version: %i.%i.%i\n", transfer_buffer[0], |
| 212 | transfer_buffer[1], transfer_buffer[2]); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 213 | |
| 214 | if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID || |
| 215 | priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) { |
| 216 | /* Setting Baudrate, Parity and Stopbits */ |
| 217 | result = usb_control_msg(port->serial->dev, |
| 218 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 219 | SUSBCRequest_SetBaudRateParityAndStopBits, |
| 220 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 221 | SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity | |
| 222 | SUSBCR_SPASB_1StopBit, |
| 223 | 0, |
| 224 | transfer_buffer, |
| 225 | 0, |
| 226 | KOBIL_TIMEOUT |
| 227 | ); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 228 | dev_dbg(dev, "%s - Send set_baudrate URB returns: %i\n", __func__, result); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 229 | |
| 230 | /* reset all queues */ |
| 231 | result = usb_control_msg(port->serial->dev, |
| 232 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 233 | SUSBCRequest_Misc, |
| 234 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 235 | SUSBCR_MSC_ResetAllQueues, |
| 236 | 0, |
| 237 | transfer_buffer, |
| 238 | 0, |
| 239 | KOBIL_TIMEOUT |
| 240 | ); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 241 | dev_dbg(dev, "%s - Send reset_all_queues URB returns: %i\n", __func__, result); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 242 | } |
| 243 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID || |
| 244 | priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 246 | /* start reading (Adapter B 'cause PNP string) */ |
| 247 | result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 248 | dev_dbg(dev, "%s - Send read URB returns: %i\n", __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | kfree(transfer_buffer); |
| 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 256 | static void kobil_close(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | { |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 258 | /* FIXME: Add rts/dtr methods */ |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 259 | usb_kill_urb(port->interrupt_out_urb); |
Mariusz Kozlowski | 5505c22 | 2006-11-08 15:36:38 +0100 | [diff] [blame] | 260 | usb_kill_urb(port->interrupt_in_urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 264 | static void kobil_read_int_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | int result; |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 267 | struct usb_serial_port *port = urb->context; |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 268 | unsigned char *data = urb->transfer_buffer; |
| 269 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 271 | if (status) { |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 272 | dev_dbg(&port->dev, "%s - Read int status not zero: %d\n", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | return; |
| 274 | } |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 275 | |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 276 | if (urb->actual_length) { |
Johan Hovold | 8e34c6c | 2013-04-16 18:01:24 +0200 | [diff] [blame] | 277 | usb_serial_debug_data(&port->dev, __func__, urb->actual_length, |
| 278 | data); |
Jiri Slaby | 05c7cd3 | 2013-01-03 15:53:04 +0100 | [diff] [blame] | 279 | tty_insert_flip_string(&port->port, data, urb->actual_length); |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 280 | tty_flip_buffer_push(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 283 | result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 284 | dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 288 | static void kobil_write_int_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
| 290 | } |
| 291 | |
| 292 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 293 | static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | const unsigned char *buf, int count) |
| 295 | { |
| 296 | int length = 0; |
| 297 | int result = 0; |
| 298 | int todo = 0; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 299 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | if (count == 0) { |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 302 | dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | priv = usb_get_serial_port_data(port); |
| 307 | |
| 308 | if (count > (KOBIL_BUF_LENGTH - priv->filled)) { |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 309 | dev_dbg(&port->dev, "%s - Error: write request bigger than buffer size\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | return -ENOMEM; |
| 311 | } |
| 312 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 313 | /* Copy data to buffer */ |
| 314 | memcpy(priv->buf + priv->filled, buf, count); |
Greg Kroah-Hartman | 59d33f2 | 2012-09-18 09:58:57 +0100 | [diff] [blame] | 315 | usb_serial_debug_data(&port->dev, __func__, count, priv->buf + priv->filled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | priv->filled = priv->filled + count; |
| 317 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 318 | /* only send complete block. TWIN, KAAN SIM and adapter K |
| 319 | use the same protocol. */ |
| 320 | if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) || |
| 321 | ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4)))) { |
| 322 | /* stop reading (except TWIN and KAAN SIM) */ |
| 323 | if ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) |
| 324 | || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | usb_kill_urb(port->interrupt_in_urb); |
| 326 | |
| 327 | todo = priv->filled - priv->cur_pos; |
| 328 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 329 | while (todo > 0) { |
| 330 | /* max 8 byte in one urb (endpoint size) */ |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 331 | length = min(todo, port->interrupt_out_size); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 332 | /* copy data to transfer buffer */ |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 333 | memcpy(port->interrupt_out_buffer, |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 334 | priv->buf + priv->cur_pos, length); |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 335 | port->interrupt_out_urb->transfer_buffer_length = length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
| 337 | priv->cur_pos = priv->cur_pos + length; |
Johan Hovold | feb0a36 | 2013-04-16 18:01:26 +0200 | [diff] [blame] | 338 | result = usb_submit_urb(port->interrupt_out_urb, GFP_NOIO); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 339 | dev_dbg(&port->dev, "%s - Send write URB returns: %i\n", __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | todo = priv->filled - priv->cur_pos; |
| 341 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 342 | if (todo > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | msleep(24); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 344 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | priv->filled = 0; |
| 347 | priv->cur_pos = 0; |
| 348 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 349 | /* start reading (except TWIN and KAAN SIM) */ |
| 350 | if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID || |
| 351 | priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 352 | result = usb_submit_urb(port->interrupt_in_urb, |
| 353 | GFP_NOIO); |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 354 | dev_dbg(&port->dev, "%s - Send read URB returns: %i\n", __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
| 356 | } |
| 357 | return count; |
| 358 | } |
| 359 | |
| 360 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 361 | static int kobil_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 363 | /* FIXME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | return 8; |
| 365 | } |
| 366 | |
| 367 | |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 368 | static int kobil_tiocmget(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 370 | struct usb_serial_port *port = tty->driver_data; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 371 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | int result; |
| 373 | unsigned char *transfer_buffer; |
| 374 | int transfer_buffer_length = 8; |
| 375 | |
| 376 | priv = usb_get_serial_port_data(port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 377 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID |
| 378 | || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
| 379 | /* This device doesn't support ioctl calls */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | return -EINVAL; |
| 381 | } |
| 382 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 383 | /* allocate memory for transfer buffer */ |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 384 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 385 | if (!transfer_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 388 | result = usb_control_msg(port->serial->dev, |
| 389 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 390 | SUSBCRequest_GetStatusLineState, |
| 391 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN, |
| 392 | 0, |
| 393 | 0, |
| 394 | transfer_buffer, |
| 395 | transfer_buffer_length, |
| 396 | KOBIL_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 398 | dev_dbg(&port->dev, "%s - Send get_status_line_state URB returns: %i. Statusline: %02x\n", |
| 399 | __func__, result, transfer_buffer[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Alan Cox | a40d854 | 2008-02-20 21:40:34 +0000 | [diff] [blame] | 401 | result = 0; |
| 402 | if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0) |
| 403 | result = TIOCM_DSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | kfree(transfer_buffer); |
Alan Cox | a40d854 | 2008-02-20 21:40:34 +0000 | [diff] [blame] | 405 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } |
| 407 | |
Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 408 | static int kobil_tiocmset(struct tty_struct *tty, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | unsigned int set, unsigned int clear) |
| 410 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 411 | struct usb_serial_port *port = tty->driver_data; |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 412 | struct device *dev = &port->dev; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 413 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | int result; |
| 415 | int dtr = 0; |
| 416 | int rts = 0; |
| 417 | unsigned char *transfer_buffer; |
| 418 | int transfer_buffer_length = 8; |
| 419 | |
Alan Cox | a40d854 | 2008-02-20 21:40:34 +0000 | [diff] [blame] | 420 | /* FIXME: locking ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | priv = usb_get_serial_port_data(port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 422 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID |
| 423 | || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
| 424 | /* This device doesn't support ioctl calls */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | return -EINVAL; |
| 426 | } |
| 427 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 428 | /* allocate memory for transfer buffer */ |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 429 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 430 | if (!transfer_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | if (set & TIOCM_RTS) |
| 434 | rts = 1; |
| 435 | if (set & TIOCM_DTR) |
| 436 | dtr = 1; |
| 437 | if (clear & TIOCM_RTS) |
| 438 | rts = 0; |
| 439 | if (clear & TIOCM_DTR) |
| 440 | dtr = 0; |
| 441 | |
| 442 | if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) { |
| 443 | if (dtr != 0) |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 444 | dev_dbg(dev, "%s - Setting DTR\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | else |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 446 | dev_dbg(dev, "%s - Clearing DTR\n", __func__); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 447 | result = usb_control_msg(port->serial->dev, |
| 448 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 449 | SUSBCRequest_SetStatusLinesOrQueues, |
| 450 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 451 | ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR), |
| 452 | 0, |
| 453 | transfer_buffer, |
| 454 | 0, |
| 455 | KOBIL_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } else { |
| 457 | if (rts != 0) |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 458 | dev_dbg(dev, "%s - Setting RTS\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | else |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 460 | dev_dbg(dev, "%s - Clearing RTS\n", __func__); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 461 | result = usb_control_msg(port->serial->dev, |
| 462 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 463 | SUSBCRequest_SetStatusLinesOrQueues, |
| 464 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 465 | ((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS), |
| 466 | 0, |
| 467 | transfer_buffer, |
| 468 | 0, |
| 469 | KOBIL_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 471 | dev_dbg(dev, "%s - Send set_status_line URB returns: %i\n", __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | kfree(transfer_buffer); |
| 473 | return (result < 0) ? result : 0; |
| 474 | } |
| 475 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 476 | static void kobil_set_termios(struct tty_struct *tty, |
| 477 | struct usb_serial_port *port, struct ktermios *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 479 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | int result; |
| 481 | unsigned short urb_val = 0; |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 482 | int c_cflag = tty->termios.c_cflag; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 483 | speed_t speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
| 485 | priv = usb_get_serial_port_data(port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 486 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID || |
Alan Cox | b31f658 | 2008-07-22 11:14:22 +0100 | [diff] [blame] | 487 | priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 488 | /* This device doesn't support ioctl calls */ |
Alan Cox | 6a6c8b3 | 2012-07-14 15:32:50 +0100 | [diff] [blame] | 489 | tty_termios_copy_hw(&tty->termios, old); |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 490 | return; |
Alan Cox | b31f658 | 2008-07-22 11:14:22 +0100 | [diff] [blame] | 491 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 493 | speed = tty_get_baud_rate(tty); |
| 494 | switch (speed) { |
| 495 | case 1200: |
| 496 | urb_val = SUSBCR_SBR_1200; |
| 497 | break; |
| 498 | default: |
| 499 | speed = 9600; |
| 500 | case 9600: |
| 501 | urb_val = SUSBCR_SBR_9600; |
| 502 | break; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 503 | } |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 504 | urb_val |= (c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits : |
| 505 | SUSBCR_SPASB_1StopBit; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 506 | if (c_cflag & PARENB) { |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 507 | if (c_cflag & PARODD) |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 508 | urb_val |= SUSBCR_SPASB_OddParity; |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 509 | else |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 510 | urb_val |= SUSBCR_SPASB_EvenParity; |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 511 | } else |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 512 | urb_val |= SUSBCR_SPASB_NoParity; |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 513 | tty->termios.c_cflag &= ~CMSPAR; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 514 | tty_encode_baud_rate(tty, speed, speed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 516 | result = usb_control_msg(port->serial->dev, |
| 517 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 518 | SUSBCRequest_SetBaudRateParityAndStopBits, |
| 519 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 520 | urb_val, |
| 521 | 0, |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 522 | NULL, |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 523 | 0, |
| 524 | KOBIL_TIMEOUT |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 525 | ); |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 526 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Alan Cox | 00a0d0d | 2011-02-14 16:27:06 +0000 | [diff] [blame] | 528 | static int kobil_ioctl(struct tty_struct *tty, |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 529 | unsigned int cmd, unsigned long arg) |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 530 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 531 | struct usb_serial_port *port = tty->driver_data; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 532 | struct kobil_private *priv = usb_get_serial_port_data(port); |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 533 | unsigned char *transfer_buffer; |
| 534 | int transfer_buffer_length = 8; |
| 535 | int result; |
| 536 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 537 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID || |
| 538 | priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) |
| 539 | /* This device doesn't support ioctl calls */ |
Alan Cox | b31f658 | 2008-07-22 11:14:22 +0100 | [diff] [blame] | 540 | return -ENOIOCTLCMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 542 | switch (cmd) { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 543 | case TCFLSH: |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 544 | transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 545 | if (!transfer_buffer) |
| 546 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 548 | result = usb_control_msg(port->serial->dev, |
| 549 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 550 | SUSBCRequest_Misc, |
| 551 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 552 | SUSBCR_MSC_ResetAllQueues, |
| 553 | 0, |
| 554 | NULL, /* transfer_buffer, */ |
| 555 | 0, |
| 556 | KOBIL_TIMEOUT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | ); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 558 | |
Greg Kroah-Hartman | b12f7a1 | 2012-09-14 12:06:55 -0700 | [diff] [blame] | 559 | dev_dbg(&port->dev, |
Johan Hovold | d9a38a8 | 2014-03-12 19:09:42 +0100 | [diff] [blame] | 560 | "%s - Send reset_all_queues (FLUSH) URB returns: %i\n", |
| 561 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | kfree(transfer_buffer); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 563 | return (result < 0) ? -EIO: 0; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 564 | default: |
| 565 | return -ENOIOCTLCMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Greg Kroah-Hartman | 68e2411 | 2012-05-08 15:46:14 -0700 | [diff] [blame] | 569 | module_usb_serial_driver(serial_drivers, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 571 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 572 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 573 | MODULE_LICENSE("GPL"); |