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