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> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/tty.h> |
| 31 | #include <linux/tty_driver.h> |
| 32 | #include <linux/tty_flip.h> |
| 33 | #include <linux/module.h> |
| 34 | #include <linux/spinlock.h> |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 35 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 37 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/ioctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include "kobil_sct.h" |
| 40 | |
Felipe Balbi | 3297f86 | 2012-01-24 10:18:10 +0200 | [diff] [blame] | 41 | static bool debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | /* Version Information */ |
| 44 | #define DRIVER_VERSION "21/05/2004" |
| 45 | #define DRIVER_AUTHOR "KOBIL Systems GmbH - http://www.kobil.com" |
| 46 | #define DRIVER_DESC "KOBIL USB Smart Card Terminal Driver (experimental)" |
| 47 | |
| 48 | #define KOBIL_VENDOR_ID 0x0D46 |
| 49 | #define KOBIL_ADAPTER_B_PRODUCT_ID 0x2011 |
| 50 | #define KOBIL_ADAPTER_K_PRODUCT_ID 0x2012 |
| 51 | #define KOBIL_USBTWIN_PRODUCT_ID 0x0078 |
| 52 | #define KOBIL_KAAN_SIM_PRODUCT_ID 0x0081 |
| 53 | |
| 54 | #define KOBIL_TIMEOUT 500 |
| 55 | #define KOBIL_BUF_LENGTH 300 |
| 56 | |
| 57 | |
| 58 | /* Function prototypes */ |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 59 | static int kobil_startup(struct usb_serial *serial); |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 60 | static void kobil_release(struct usb_serial *serial); |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 61 | 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] | 62 | static void kobil_close(struct usb_serial_port *port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 63 | 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] | 64 | const unsigned char *buf, int count); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 65 | static int kobil_write_room(struct tty_struct *tty); |
Alan Cox | 00a0d0d | 2011-02-14 16:27:06 +0000 | [diff] [blame] | 66 | static int kobil_ioctl(struct tty_struct *tty, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | unsigned int cmd, unsigned long arg); |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 68 | static int kobil_tiocmget(struct tty_struct *tty); |
Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 69 | static int kobil_tiocmset(struct tty_struct *tty, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | unsigned int set, unsigned int clear); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 71 | static void kobil_read_int_callback(struct urb *urb); |
| 72 | static void kobil_write_callback(struct urb *purb); |
| 73 | static void kobil_set_termios(struct tty_struct *tty, |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 74 | struct usb_serial_port *port, struct ktermios *old); |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 75 | static void kobil_init_termios(struct tty_struct *tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Németh Márton | 7d40d7e | 2010-01-10 15:34:24 +0100 | [diff] [blame] | 77 | static const struct usb_device_id id_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_B_PRODUCT_ID) }, |
| 79 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_ADAPTER_K_PRODUCT_ID) }, |
| 80 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_USBTWIN_PRODUCT_ID) }, |
| 81 | { USB_DEVICE(KOBIL_VENDOR_ID, KOBIL_KAAN_SIM_PRODUCT_ID) }, |
| 82 | { } /* Terminating entry */ |
| 83 | }; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 84 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 86 | static struct usb_serial_driver kobil_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 87 | .driver = { |
| 88 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 89 | .name = "kobil", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 90 | }, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 91 | .description = "KOBIL USB smart card terminal", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | .id_table = id_table, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | .num_ports = 1, |
| 94 | .attach = kobil_startup, |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 95 | .release = kobil_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | .ioctl = kobil_ioctl, |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 97 | .set_termios = kobil_set_termios, |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 98 | .init_termios = kobil_init_termios, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | .tiocmget = kobil_tiocmget, |
| 100 | .tiocmset = kobil_tiocmset, |
| 101 | .open = kobil_open, |
| 102 | .close = kobil_close, |
| 103 | .write = kobil_write, |
| 104 | .write_room = kobil_write_room, |
| 105 | .read_int_callback = kobil_read_int_callback, |
| 106 | }; |
| 107 | |
Alan Stern | 4d2a7af | 2012-02-23 14:57:09 -0500 | [diff] [blame] | 108 | static struct usb_serial_driver * const serial_drivers[] = { |
| 109 | &kobil_device, NULL |
| 110 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | struct kobil_private { |
| 113 | int write_int_endpoint_address; |
| 114 | int read_int_endpoint_address; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 115 | unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */ |
| 116 | int filled; /* index of the last char in buf */ |
| 117 | int cur_pos; /* index of the next char to send in buf */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | __u16 device_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 122 | static int kobil_startup(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
| 124 | int i; |
| 125 | struct kobil_private *priv; |
| 126 | struct usb_device *pdev; |
| 127 | struct usb_host_config *actconfig; |
| 128 | struct usb_interface *interface; |
| 129 | struct usb_host_interface *altsetting; |
| 130 | struct usb_host_endpoint *endpoint; |
| 131 | |
| 132 | priv = kmalloc(sizeof(struct kobil_private), GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 133 | if (!priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | priv->filled = 0; |
| 137 | priv->cur_pos = 0; |
| 138 | priv->device_type = le16_to_cpu(serial->dev->descriptor.idProduct); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 140 | switch (priv->device_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | case KOBIL_ADAPTER_B_PRODUCT_ID: |
| 142 | printk(KERN_DEBUG "KOBIL B1 PRO / KAAN PRO detected\n"); |
| 143 | break; |
| 144 | case KOBIL_ADAPTER_K_PRODUCT_ID: |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 145 | printk(KERN_DEBUG |
| 146 | "KOBIL KAAN Standard Plus / SecOVID Reader Plus detected\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | break; |
| 148 | case KOBIL_USBTWIN_PRODUCT_ID: |
| 149 | printk(KERN_DEBUG "KOBIL USBTWIN detected\n"); |
| 150 | break; |
| 151 | case KOBIL_KAAN_SIM_PRODUCT_ID: |
| 152 | printk(KERN_DEBUG "KOBIL KAAN SIM detected\n"); |
| 153 | break; |
| 154 | } |
| 155 | usb_set_serial_port_data(serial->port[0], priv); |
| 156 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 157 | /* search for the necessary endpoints */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | pdev = serial->dev; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 159 | actconfig = pdev->actconfig; |
| 160 | interface = actconfig->interface[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | altsetting = interface->cur_altsetting; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 162 | endpoint = altsetting->endpoint; |
| 163 | |
| 164 | for (i = 0; i < altsetting->desc.bNumEndpoints; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | endpoint = &altsetting->endpoint[i]; |
Luiz Fernando N. Capitulino | 4f1f1dd | 2006-10-26 13:02:53 -0300 | [diff] [blame] | 166 | if (usb_endpoint_is_int_out(&endpoint->desc)) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 167 | dbg("%s Found interrupt out endpoint. Address: %d", |
| 168 | __func__, endpoint->desc.bEndpointAddress); |
| 169 | priv->write_int_endpoint_address = |
| 170 | endpoint->desc.bEndpointAddress; |
| 171 | } |
Luiz Fernando N. Capitulino | 4f1f1dd | 2006-10-26 13:02:53 -0300 | [diff] [blame] | 172 | if (usb_endpoint_is_int_in(&endpoint->desc)) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 173 | dbg("%s Found interrupt in endpoint. Address: %d", |
| 174 | __func__, endpoint->desc.bEndpointAddress); |
| 175 | priv->read_int_endpoint_address = |
| 176 | endpoint->desc.bEndpointAddress; |
| 177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 183 | static void kobil_release(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
| 185 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Alan Stern | f9c99bb | 2009-06-02 11:53:55 -0400 | [diff] [blame] | 187 | for (i = 0; i < serial->num_ports; ++i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | kfree(usb_get_serial_port_data(serial->port[i])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 191 | static void kobil_init_termios(struct tty_struct *tty) |
| 192 | { |
| 193 | /* Default to echo off and other sane device settings */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 194 | tty->termios.c_lflag = 0; |
Alan Cox | 6a6c8b3 | 2012-07-14 15:32:50 +0100 | [diff] [blame^] | 195 | tty->termios.c_iflag &= ~(ISIG | ICANON | ECHO | IEXTEN | XCASE); |
| 196 | tty->termios.c_iflag |= IGNBRK | IGNPAR | IXOFF; |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 197 | /* do NOT translate CR to CR-NL (0x0A -> 0x0A 0x0D) */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 198 | tty->termios.c_oflag &= ~ONLCR; |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 201 | 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] | 202 | { |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 203 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | struct kobil_private *priv; |
| 205 | unsigned char *transfer_buffer; |
| 206 | int transfer_buffer_length = 8; |
| 207 | int write_urb_transfer_buffer_length = 8; |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | priv = usb_get_serial_port_data(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 211 | /* allocate memory for transfer buffer */ |
| 212 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); |
| 213 | if (!transfer_buffer) |
| 214 | return -ENOMEM; |
| 215 | |
| 216 | /* allocate write_urb */ |
| 217 | if (!port->write_urb) { |
| 218 | dbg("%s - port %d Allocating port->write_urb", |
| 219 | __func__, port->number); |
| 220 | port->write_urb = usb_alloc_urb(0, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | if (!port->write_urb) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 222 | dbg("%s - port %d usb_alloc_urb failed", |
| 223 | __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | kfree(transfer_buffer); |
| 225 | return -ENOMEM; |
| 226 | } |
| 227 | } |
| 228 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 229 | /* allocate memory for write_urb transfer buffer */ |
| 230 | port->write_urb->transfer_buffer = |
| 231 | kmalloc(write_urb_transfer_buffer_length, GFP_KERNEL); |
| 232 | if (!port->write_urb->transfer_buffer) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | kfree(transfer_buffer); |
| 234 | usb_free_urb(port->write_urb); |
| 235 | port->write_urb = NULL; |
| 236 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 238 | |
| 239 | /* get hardware version */ |
| 240 | result = usb_control_msg(port->serial->dev, |
| 241 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 242 | SUSBCRequest_GetMisc, |
| 243 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN, |
| 244 | SUSBCR_MSC_GetHWVersion, |
| 245 | 0, |
| 246 | transfer_buffer, |
| 247 | transfer_buffer_length, |
| 248 | KOBIL_TIMEOUT |
| 249 | ); |
| 250 | dbg("%s - port %d Send get_HW_version URB returns: %i", |
| 251 | __func__, port->number, result); |
| 252 | dbg("Harware version: %i.%i.%i", |
| 253 | transfer_buffer[0], transfer_buffer[1], transfer_buffer[2]); |
| 254 | |
| 255 | /* get firmware version */ |
| 256 | result = usb_control_msg(port->serial->dev, |
| 257 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 258 | SUSBCRequest_GetMisc, |
| 259 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN, |
| 260 | SUSBCR_MSC_GetFWVersion, |
| 261 | 0, |
| 262 | transfer_buffer, |
| 263 | transfer_buffer_length, |
| 264 | KOBIL_TIMEOUT |
| 265 | ); |
| 266 | dbg("%s - port %d Send get_FW_version URB returns: %i", |
| 267 | __func__, port->number, result); |
| 268 | dbg("Firmware version: %i.%i.%i", |
| 269 | transfer_buffer[0], transfer_buffer[1], transfer_buffer[2]); |
| 270 | |
| 271 | if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID || |
| 272 | priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) { |
| 273 | /* Setting Baudrate, Parity and Stopbits */ |
| 274 | result = usb_control_msg(port->serial->dev, |
| 275 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 276 | SUSBCRequest_SetBaudRateParityAndStopBits, |
| 277 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 278 | SUSBCR_SBR_9600 | SUSBCR_SPASB_EvenParity | |
| 279 | SUSBCR_SPASB_1StopBit, |
| 280 | 0, |
| 281 | transfer_buffer, |
| 282 | 0, |
| 283 | KOBIL_TIMEOUT |
| 284 | ); |
| 285 | dbg("%s - port %d Send set_baudrate URB returns: %i", |
| 286 | __func__, port->number, result); |
| 287 | |
| 288 | /* reset all queues */ |
| 289 | result = usb_control_msg(port->serial->dev, |
| 290 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 291 | SUSBCRequest_Misc, |
| 292 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 293 | SUSBCR_MSC_ResetAllQueues, |
| 294 | 0, |
| 295 | transfer_buffer, |
| 296 | 0, |
| 297 | KOBIL_TIMEOUT |
| 298 | ); |
| 299 | dbg("%s - port %d Send reset_all_queues URB returns: %i", |
| 300 | __func__, port->number, result); |
| 301 | } |
| 302 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID || |
| 303 | priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 305 | /* start reading (Adapter B 'cause PNP string) */ |
| 306 | result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC); |
| 307 | dbg("%s - port %d Send read URB returns: %i", |
| 308 | __func__, port->number, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | kfree(transfer_buffer); |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 316 | static void kobil_close(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 318 | /* FIXME: Add rts/dtr methods */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | if (port->write_urb) { |
Johan Hovold | c0f631d | 2010-05-15 17:53:43 +0200 | [diff] [blame] | 320 | usb_poison_urb(port->write_urb); |
| 321 | kfree(port->write_urb->transfer_buffer); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 322 | usb_free_urb(port->write_urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | port->write_urb = NULL; |
| 324 | } |
Mariusz Kozlowski | 5505c22 | 2006-11-08 15:36:38 +0100 | [diff] [blame] | 325 | usb_kill_urb(port->interrupt_in_urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 329 | static void kobil_read_int_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | int result; |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 332 | struct usb_serial_port *port = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | struct tty_struct *tty; |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 334 | unsigned char *data = urb->transfer_buffer; |
| 335 | int status = urb->status; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 336 | /* char *dbg_data; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 338 | if (status) { |
| 339 | dbg("%s - port %d Read int status not zero: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 340 | __func__, port->number, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | return; |
| 342 | } |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 343 | |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 344 | tty = tty_port_tty_get(&port->port); |
Jiri Slaby | 6960f40 | 2011-02-28 10:34:06 +0100 | [diff] [blame] | 345 | if (tty && urb->actual_length) { |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 346 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 347 | /* BEGIN DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | /* |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 349 | dbg_data = kzalloc((3 * purb->actual_length + 10) |
| 350 | * sizeof(char), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | if (! dbg_data) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 352 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 354 | for (i = 0; i < purb->actual_length; i++) { |
| 355 | sprintf(dbg_data +3*i, "%02X ", data[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 357 | dbg(" <-- %s", dbg_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | kfree(dbg_data); |
| 359 | */ |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 360 | /* END DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 362 | tty_insert_flip_string(tty, data, urb->actual_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | tty_flip_buffer_push(tty); |
| 364 | } |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 365 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Greg Kroah-Hartman | 6fcdcf0 | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 367 | result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 368 | dbg("%s - port %d Send read URB returns: %i", |
| 369 | __func__, port->number, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 373 | static void kobil_write_callback(struct urb *purb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | { |
| 375 | } |
| 376 | |
| 377 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 378 | 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] | 379 | const unsigned char *buf, int count) |
| 380 | { |
| 381 | int length = 0; |
| 382 | int result = 0; |
| 383 | int todo = 0; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 384 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
| 386 | if (count == 0) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 387 | dbg("%s - port %d write request of 0 bytes", |
| 388 | __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | return 0; |
| 390 | } |
| 391 | |
| 392 | priv = usb_get_serial_port_data(port); |
| 393 | |
| 394 | if (count > (KOBIL_BUF_LENGTH - priv->filled)) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 395 | dbg("%s - port %d Error: write request bigger than buffer size", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | return -ENOMEM; |
| 397 | } |
| 398 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 399 | /* Copy data to buffer */ |
| 400 | memcpy(priv->buf + priv->filled, buf, count); |
| 401 | usb_serial_debug_data(debug, &port->dev, __func__, count, |
| 402 | priv->buf + priv->filled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | priv->filled = priv->filled + count; |
| 404 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 405 | /* only send complete block. TWIN, KAAN SIM and adapter K |
| 406 | use the same protocol. */ |
| 407 | if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (priv->buf[1] + 3))) || |
| 408 | ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv->buf[2] + 4)))) { |
| 409 | /* stop reading (except TWIN and KAAN SIM) */ |
| 410 | if ((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) |
| 411 | || (priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | usb_kill_urb(port->interrupt_in_urb); |
| 413 | |
| 414 | todo = priv->filled - priv->cur_pos; |
| 415 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 416 | while (todo > 0) { |
| 417 | /* max 8 byte in one urb (endpoint size) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | length = (todo < 8) ? todo : 8; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 419 | /* copy data to transfer buffer */ |
| 420 | memcpy(port->write_urb->transfer_buffer, |
| 421 | priv->buf + priv->cur_pos, length); |
| 422 | usb_fill_int_urb(port->write_urb, |
| 423 | port->serial->dev, |
| 424 | usb_sndintpipe(port->serial->dev, |
| 425 | priv->write_int_endpoint_address), |
| 426 | port->write_urb->transfer_buffer, |
| 427 | length, |
| 428 | kobil_write_callback, |
| 429 | port, |
| 430 | 8 |
| 431 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | priv->cur_pos = priv->cur_pos + length; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 434 | result = usb_submit_urb(port->write_urb, GFP_NOIO); |
| 435 | dbg("%s - port %d Send write URB returns: %i", |
| 436 | __func__, port->number, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | todo = priv->filled - priv->cur_pos; |
| 438 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 439 | if (todo > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | msleep(24); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 441 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | priv->filled = 0; |
| 444 | priv->cur_pos = 0; |
| 445 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 446 | /* start reading (except TWIN and KAAN SIM) */ |
| 447 | if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID || |
| 448 | priv->device_type == KOBIL_ADAPTER_K_PRODUCT_ID) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 449 | result = usb_submit_urb(port->interrupt_in_urb, |
| 450 | GFP_NOIO); |
| 451 | dbg("%s - port %d Send read URB returns: %i", |
| 452 | __func__, port->number, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | return count; |
| 456 | } |
| 457 | |
| 458 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 459 | static int kobil_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 461 | /* FIXME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | return 8; |
| 463 | } |
| 464 | |
| 465 | |
Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 466 | static int kobil_tiocmget(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 468 | struct usb_serial_port *port = tty->driver_data; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 469 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | int result; |
| 471 | unsigned char *transfer_buffer; |
| 472 | int transfer_buffer_length = 8; |
| 473 | |
| 474 | priv = usb_get_serial_port_data(port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 475 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID |
| 476 | || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
| 477 | /* This device doesn't support ioctl calls */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | return -EINVAL; |
| 479 | } |
| 480 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 481 | /* allocate memory for transfer buffer */ |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 482 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 483 | if (!transfer_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 486 | result = usb_control_msg(port->serial->dev, |
| 487 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 488 | SUSBCRequest_GetStatusLineState, |
| 489 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_IN, |
| 490 | 0, |
| 491 | 0, |
| 492 | transfer_buffer, |
| 493 | transfer_buffer_length, |
| 494 | KOBIL_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 496 | dbg("%s - port %d Send get_status_line_state URB returns: %i. Statusline: %02x", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 497 | __func__, port->number, result, transfer_buffer[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Alan Cox | a40d854 | 2008-02-20 21:40:34 +0000 | [diff] [blame] | 499 | result = 0; |
| 500 | if ((transfer_buffer[0] & SUSBCR_GSL_DSR) != 0) |
| 501 | result = TIOCM_DSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | kfree(transfer_buffer); |
Alan Cox | a40d854 | 2008-02-20 21:40:34 +0000 | [diff] [blame] | 503 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | } |
| 505 | |
Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 506 | static int kobil_tiocmset(struct tty_struct *tty, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | unsigned int set, unsigned int clear) |
| 508 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 509 | struct usb_serial_port *port = tty->driver_data; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 510 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | int result; |
| 512 | int dtr = 0; |
| 513 | int rts = 0; |
| 514 | unsigned char *transfer_buffer; |
| 515 | int transfer_buffer_length = 8; |
| 516 | |
Alan Cox | a40d854 | 2008-02-20 21:40:34 +0000 | [diff] [blame] | 517 | /* FIXME: locking ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | priv = usb_get_serial_port_data(port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 519 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID |
| 520 | || priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
| 521 | /* This device doesn't support ioctl calls */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | return -EINVAL; |
| 523 | } |
| 524 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 525 | /* allocate memory for transfer buffer */ |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 526 | transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 527 | if (!transfer_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
| 530 | if (set & TIOCM_RTS) |
| 531 | rts = 1; |
| 532 | if (set & TIOCM_DTR) |
| 533 | dtr = 1; |
| 534 | if (clear & TIOCM_RTS) |
| 535 | rts = 0; |
| 536 | if (clear & TIOCM_DTR) |
| 537 | dtr = 0; |
| 538 | |
| 539 | if (priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) { |
| 540 | if (dtr != 0) |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 541 | dbg("%s - port %d Setting DTR", |
| 542 | __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | else |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 544 | dbg("%s - port %d Clearing DTR", |
| 545 | __func__, port->number); |
| 546 | result = usb_control_msg(port->serial->dev, |
| 547 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 548 | SUSBCRequest_SetStatusLinesOrQueues, |
| 549 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 550 | ((dtr != 0) ? SUSBCR_SSL_SETDTR : SUSBCR_SSL_CLRDTR), |
| 551 | 0, |
| 552 | transfer_buffer, |
| 553 | 0, |
| 554 | KOBIL_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } else { |
| 556 | if (rts != 0) |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 557 | dbg("%s - port %d Setting RTS", |
| 558 | __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | else |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 560 | dbg("%s - port %d Clearing RTS", |
| 561 | __func__, port->number); |
| 562 | result = usb_control_msg(port->serial->dev, |
| 563 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 564 | SUSBCRequest_SetStatusLinesOrQueues, |
| 565 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 566 | ((rts != 0) ? SUSBCR_SSL_SETRTS : SUSBCR_SSL_CLRRTS), |
| 567 | 0, |
| 568 | transfer_buffer, |
| 569 | 0, |
| 570 | KOBIL_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 572 | dbg("%s - port %d Send set_status_line URB returns: %i", |
| 573 | __func__, port->number, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | kfree(transfer_buffer); |
| 575 | return (result < 0) ? result : 0; |
| 576 | } |
| 577 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 578 | static void kobil_set_termios(struct tty_struct *tty, |
| 579 | struct usb_serial_port *port, struct ktermios *old) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 581 | struct kobil_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | int result; |
| 583 | unsigned short urb_val = 0; |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 584 | int c_cflag = tty->termios.c_cflag; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 585 | speed_t speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
| 587 | priv = usb_get_serial_port_data(port); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 588 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID || |
Alan Cox | b31f658 | 2008-07-22 11:14:22 +0100 | [diff] [blame] | 589 | priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) { |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 590 | /* This device doesn't support ioctl calls */ |
Alan Cox | 6a6c8b3 | 2012-07-14 15:32:50 +0100 | [diff] [blame^] | 591 | tty_termios_copy_hw(&tty->termios, old); |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 592 | return; |
Alan Cox | b31f658 | 2008-07-22 11:14:22 +0100 | [diff] [blame] | 593 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 595 | speed = tty_get_baud_rate(tty); |
| 596 | switch (speed) { |
| 597 | case 1200: |
| 598 | urb_val = SUSBCR_SBR_1200; |
| 599 | break; |
| 600 | default: |
| 601 | speed = 9600; |
| 602 | case 9600: |
| 603 | urb_val = SUSBCR_SBR_9600; |
| 604 | break; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 605 | } |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 606 | urb_val |= (c_cflag & CSTOPB) ? SUSBCR_SPASB_2StopBits : |
| 607 | SUSBCR_SPASB_1StopBit; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 608 | if (c_cflag & PARENB) { |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 609 | if (c_cflag & PARODD) |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 610 | urb_val |= SUSBCR_SPASB_OddParity; |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 611 | else |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 612 | urb_val |= SUSBCR_SPASB_EvenParity; |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 613 | } else |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 614 | urb_val |= SUSBCR_SPASB_NoParity; |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 615 | tty->termios.c_cflag &= ~CMSPAR; |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 616 | tty_encode_baud_rate(tty, speed, speed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 618 | result = usb_control_msg(port->serial->dev, |
| 619 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 620 | SUSBCRequest_SetBaudRateParityAndStopBits, |
| 621 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 622 | urb_val, |
| 623 | 0, |
Johan Hovold | 96679f6 | 2009-12-28 23:01:58 +0100 | [diff] [blame] | 624 | NULL, |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 625 | 0, |
| 626 | KOBIL_TIMEOUT |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 627 | ); |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 628 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
Alan Cox | 00a0d0d | 2011-02-14 16:27:06 +0000 | [diff] [blame] | 630 | static int kobil_ioctl(struct tty_struct *tty, |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 631 | unsigned int cmd, unsigned long arg) |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 632 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 633 | struct usb_serial_port *port = tty->driver_data; |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 634 | struct kobil_private *priv = usb_get_serial_port_data(port); |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 635 | unsigned char *transfer_buffer; |
| 636 | int transfer_buffer_length = 8; |
| 637 | int result; |
| 638 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 639 | if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID || |
| 640 | priv->device_type == KOBIL_KAAN_SIM_PRODUCT_ID) |
| 641 | /* This device doesn't support ioctl calls */ |
Alan Cox | b31f658 | 2008-07-22 11:14:22 +0100 | [diff] [blame] | 642 | return -ENOIOCTLCMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 644 | switch (cmd) { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 645 | case TCFLSH: |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 646 | transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 647 | if (!transfer_buffer) |
| 648 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 650 | result = usb_control_msg(port->serial->dev, |
| 651 | usb_rcvctrlpipe(port->serial->dev, 0), |
| 652 | SUSBCRequest_Misc, |
| 653 | USB_TYPE_VENDOR | USB_RECIP_ENDPOINT | USB_DIR_OUT, |
| 654 | SUSBCR_MSC_ResetAllQueues, |
| 655 | 0, |
| 656 | NULL, /* transfer_buffer, */ |
| 657 | 0, |
| 658 | KOBIL_TIMEOUT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | ); |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 660 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 661 | dbg("%s - port %d Send reset_all_queues (FLUSH) URB returns: %i", __func__, port->number, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | kfree(transfer_buffer); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 663 | return (result < 0) ? -EIO: 0; |
Alan Cox | 94d0f7e | 2007-08-22 23:09:16 +0100 | [diff] [blame] | 664 | default: |
| 665 | return -ENOIOCTLCMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | |
Greg Kroah-Hartman | 68e2411 | 2012-05-08 15:46:14 -0700 | [diff] [blame] | 669 | module_usb_serial_driver(serial_drivers, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | |
Alan Cox | dee0a7c | 2008-07-22 11:14:10 +0100 | [diff] [blame] | 671 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 672 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 673 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
| 675 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 676 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |