2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 REINER SCT
|
|
|
|
* Author: Matthias Bruestle
|
|
|
|
*
|
|
|
|
* Contact: support@reiner-sct.com (see MAINTAINERS)
|
|
|
|
*
|
|
|
|
* This program is largely derived from work by the linux-usb group
|
|
|
|
* and associated source files. Please see the usb/serial files for
|
|
|
|
* individual credits and copyrights.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Thanks to Greg Kroah-Hartman (greg@kroah.com) for his help and
|
|
|
|
* patience.
|
|
|
|
*
|
|
|
|
* In case of problems, please write to the contact e-mail address
|
|
|
|
* mentioned above.
|
|
|
|
*
|
|
|
|
* Please note that later models of the cyberjack reader family are
|
|
|
|
* supported by a libusb-based userspace device driver.
|
|
|
|
*
|
|
|
|
* Homepage: http://www.reiner-sct.de/support/treiber_cyberjack.php#linux
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/tty.h>
|
|
|
|
#include <linux/tty_driver.h>
|
|
|
|
#include <linux/tty_flip.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/spinlock.h>
|
2008-07-22 10:10:27 +00:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/usb.h>
|
2006-07-12 04:22:58 +00:00
|
|
|
#include <linux/usb/serial.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define CYBERJACK_LOCAL_BUF_SIZE 32
|
|
|
|
|
|
|
|
#define DRIVER_AUTHOR "Matthias Bruestle"
|
|
|
|
#define DRIVER_DESC "REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver"
|
|
|
|
|
|
|
|
|
|
|
|
#define CYBERJACK_VENDOR_ID 0x0C4B
|
|
|
|
#define CYBERJACK_PRODUCT_ID 0x0100
|
|
|
|
|
|
|
|
/* Function prototypes */
|
2009-06-02 15:53:55 +00:00
|
|
|
static void cyberjack_disconnect(struct usb_serial *serial);
|
2012-10-15 16:20:54 +00:00
|
|
|
static int cyberjack_port_probe(struct usb_serial_port *port);
|
|
|
|
static int cyberjack_port_remove(struct usb_serial_port *port);
|
2008-07-22 10:09:07 +00:00
|
|
|
static int cyberjack_open(struct tty_struct *tty,
|
2009-09-19 20:13:26 +00:00
|
|
|
struct usb_serial_port *port);
|
2009-06-11 11:26:29 +00:00
|
|
|
static void cyberjack_close(struct usb_serial_port *port);
|
2008-07-22 10:09:07 +00:00
|
|
|
static int cyberjack_write(struct tty_struct *tty,
|
|
|
|
struct usb_serial_port *port, const unsigned char *buf, int count);
|
2008-07-22 10:10:27 +00:00
|
|
|
static int cyberjack_write_room(struct tty_struct *tty);
|
2008-07-22 10:09:07 +00:00
|
|
|
static void cyberjack_read_int_callback(struct urb *urb);
|
|
|
|
static void cyberjack_read_bulk_callback(struct urb *urb);
|
|
|
|
static void cyberjack_write_bulk_callback(struct urb *urb);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-01-10 14:34:24 +00:00
|
|
|
static const struct usb_device_id id_table[] = {
|
2005-04-16 22:20:36 +00:00
|
|
|
{ USB_DEVICE(CYBERJACK_VENDOR_ID, CYBERJACK_PRODUCT_ID) },
|
|
|
|
{ } /* Terminating entry */
|
|
|
|
};
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
MODULE_DEVICE_TABLE(usb, id_table);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-06-21 04:15:16 +00:00
|
|
|
static struct usb_serial_driver cyberjack_device = {
|
2005-06-21 04:15:16 +00:00
|
|
|
.driver = {
|
|
|
|
.owner = THIS_MODULE,
|
2005-06-21 04:15:16 +00:00
|
|
|
.name = "cyberjack",
|
2005-06-21 04:15:16 +00:00
|
|
|
},
|
2005-06-21 04:15:16 +00:00
|
|
|
.description = "Reiner SCT Cyberjack USB card reader",
|
2005-04-16 22:20:36 +00:00
|
|
|
.id_table = id_table,
|
|
|
|
.num_ports = 1,
|
2009-06-02 15:53:55 +00:00
|
|
|
.disconnect = cyberjack_disconnect,
|
2012-10-15 16:20:54 +00:00
|
|
|
.port_probe = cyberjack_port_probe,
|
|
|
|
.port_remove = cyberjack_port_remove,
|
2005-04-16 22:20:36 +00:00
|
|
|
.open = cyberjack_open,
|
|
|
|
.close = cyberjack_close,
|
|
|
|
.write = cyberjack_write,
|
2006-12-17 20:50:24 +00:00
|
|
|
.write_room = cyberjack_write_room,
|
2005-04-16 22:20:36 +00:00
|
|
|
.read_int_callback = cyberjack_read_int_callback,
|
|
|
|
.read_bulk_callback = cyberjack_read_bulk_callback,
|
|
|
|
.write_bulk_callback = cyberjack_write_bulk_callback,
|
|
|
|
};
|
|
|
|
|
2012-02-23 19:56:17 +00:00
|
|
|
static struct usb_serial_driver * const serial_drivers[] = {
|
|
|
|
&cyberjack_device, NULL
|
|
|
|
};
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
struct cyberjack_private {
|
|
|
|
spinlock_t lock; /* Lock for SMP */
|
|
|
|
short rdtodo; /* Bytes still to read */
|
|
|
|
unsigned char wrbuf[5*64]; /* Buffer for collecting data to write */
|
|
|
|
short wrfilled; /* Overall data size we already got */
|
|
|
|
short wrsent; /* Data already sent */
|
|
|
|
};
|
|
|
|
|
2012-10-15 16:20:54 +00:00
|
|
|
static int cyberjack_port_probe(struct usb_serial_port *port)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct cyberjack_private *priv;
|
2012-10-15 16:20:54 +00:00
|
|
|
int result;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
priv = kmalloc(sizeof(struct cyberjack_private), GFP_KERNEL);
|
|
|
|
if (!priv)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
spin_lock_init(&priv->lock);
|
|
|
|
priv->rdtodo = 0;
|
|
|
|
priv->wrfilled = 0;
|
|
|
|
priv->wrsent = 0;
|
2012-10-15 16:20:54 +00:00
|
|
|
|
|
|
|
usb_set_serial_port_data(port, priv);
|
|
|
|
|
|
|
|
result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
|
|
|
|
if (result)
|
|
|
|
dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 16:20:54 +00:00
|
|
|
static int cyberjack_port_remove(struct usb_serial_port *port)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-10-15 16:20:54 +00:00
|
|
|
struct cyberjack_private *priv;
|
2008-07-22 10:10:27 +00:00
|
|
|
|
2012-10-15 16:20:54 +00:00
|
|
|
priv = usb_get_serial_port_data(port);
|
|
|
|
kfree(priv);
|
|
|
|
|
|
|
|
return 0;
|
2009-06-02 15:53:55 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 16:20:54 +00:00
|
|
|
static void cyberjack_disconnect(struct usb_serial *serial)
|
2009-06-02 15:53:55 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2012-10-15 16:20:54 +00:00
|
|
|
for (i = 0; i < serial->num_ports; ++i)
|
|
|
|
usb_kill_urb(serial->port[i]->interrupt_in_urb);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-07-22 10:10:27 +00:00
|
|
|
|
2008-07-22 10:09:07 +00:00
|
|
|
static int cyberjack_open(struct tty_struct *tty,
|
2009-09-19 20:13:26 +00:00
|
|
|
struct usb_serial_port *port)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct cyberjack_private *priv;
|
|
|
|
unsigned long flags;
|
|
|
|
int result = 0;
|
|
|
|
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(&port->dev, "%s - usb_clear_halt\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
usb_clear_halt(port->serial->dev, port->write_urb->pipe);
|
|
|
|
|
|
|
|
priv = usb_get_serial_port_data(port);
|
|
|
|
spin_lock_irqsave(&priv->lock, flags);
|
|
|
|
priv->rdtodo = 0;
|
|
|
|
priv->wrfilled = 0;
|
|
|
|
priv->wrsent = 0;
|
|
|
|
spin_unlock_irqrestore(&priv->lock, flags);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-06-11 11:26:29 +00:00
|
|
|
static void cyberjack_close(struct usb_serial_port *port)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
if (port->serial->dev) {
|
|
|
|
/* shutdown any bulk reads that might be going on */
|
|
|
|
usb_kill_urb(port->write_urb);
|
|
|
|
usb_kill_urb(port->read_urb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-22 10:09:07 +00:00
|
|
|
static int cyberjack_write(struct tty_struct *tty,
|
|
|
|
struct usb_serial_port *port, const unsigned char *buf, int count)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-09-14 00:18:14 +00:00
|
|
|
struct device *dev = &port->dev;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct cyberjack_private *priv = usb_get_serial_port_data(port);
|
|
|
|
unsigned long flags;
|
|
|
|
int result;
|
|
|
|
int wrexpected;
|
|
|
|
|
|
|
|
if (count == 0) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - write request of 0 bytes\n", __func__);
|
2008-04-08 16:16:06 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:06:23 +00:00
|
|
|
if (!test_and_clear_bit(0, &port->write_urbs_free)) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - already writing\n", __func__);
|
2005-04-23 19:49:16 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
spin_lock_irqsave(&priv->lock, flags);
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
if (count+priv->wrfilled > sizeof(priv->wrbuf)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/* To much data for buffer. Reset buffer. */
|
2008-04-08 16:16:06 +00:00
|
|
|
priv->wrfilled = 0;
|
|
|
|
spin_unlock_irqrestore(&priv->lock, flags);
|
2011-11-06 18:06:23 +00:00
|
|
|
set_bit(0, &port->write_urbs_free);
|
2008-04-08 16:16:06 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy data */
|
2008-07-22 10:10:27 +00:00
|
|
|
memcpy(priv->wrbuf + priv->wrfilled, buf, count);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-09-18 08:58:57 +00:00
|
|
|
usb_serial_debug_data(dev, __func__, count, priv->wrbuf + priv->wrfilled);
|
2005-04-16 22:20:36 +00:00
|
|
|
priv->wrfilled += count;
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
if (priv->wrfilled >= 3) {
|
2005-04-16 22:20:36 +00:00
|
|
|
wrexpected = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - expected data: %d\n", __func__, wrexpected);
|
2008-07-22 10:10:27 +00:00
|
|
|
} else
|
2005-04-16 22:20:36 +00:00
|
|
|
wrexpected = sizeof(priv->wrbuf);
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
if (priv->wrfilled >= wrexpected) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/* We have enough data to begin transmission */
|
|
|
|
int length;
|
|
|
|
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - transmitting data (frame 1)\n", __func__);
|
2008-07-22 10:10:27 +00:00
|
|
|
length = (wrexpected > port->bulk_out_size) ?
|
|
|
|
port->bulk_out_size : wrexpected;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
memcpy(port->write_urb->transfer_buffer, priv->wrbuf, length);
|
|
|
|
priv->wrsent = length;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* set up our urb */
|
2011-11-06 18:06:30 +00:00
|
|
|
port->write_urb->transfer_buffer_length = length;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* send the data out the bulk port */
|
|
|
|
result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
|
|
|
|
if (result) {
|
2008-08-20 23:56:34 +00:00
|
|
|
dev_err(&port->dev,
|
|
|
|
"%s - failed submitting write urb, error %d",
|
|
|
|
__func__, result);
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Throw away data. No better idea what to do with it. */
|
2008-04-08 16:16:06 +00:00
|
|
|
priv->wrfilled = 0;
|
|
|
|
priv->wrsent = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock_irqrestore(&priv->lock, flags);
|
2011-11-06 18:06:23 +00:00
|
|
|
set_bit(0, &port->write_urbs_free);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
|
|
|
|
dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
if (priv->wrsent >= priv->wrfilled) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - buffer cleaned\n", __func__);
|
2008-07-22 10:10:27 +00:00
|
|
|
memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
|
2008-04-08 16:16:06 +00:00
|
|
|
priv->wrfilled = 0;
|
|
|
|
priv->wrsent = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&priv->lock, flags);
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
return count;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-22 10:09:07 +00:00
|
|
|
static int cyberjack_write_room(struct tty_struct *tty)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-04-08 16:16:06 +00:00
|
|
|
/* FIXME: .... */
|
2005-04-16 22:20:36 +00:00
|
|
|
return CYBERJACK_LOCAL_BUF_SIZE;
|
|
|
|
}
|
|
|
|
|
2008-07-22 10:09:07 +00:00
|
|
|
static void cyberjack_read_int_callback(struct urb *urb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-02-24 10:41:47 +00:00
|
|
|
struct usb_serial_port *port = urb->context;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct cyberjack_private *priv = usb_get_serial_port_data(port);
|
2012-09-14 00:18:14 +00:00
|
|
|
struct device *dev = &port->dev;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned char *data = urb->transfer_buffer;
|
2007-06-15 22:44:13 +00:00
|
|
|
int status = urb->status;
|
2005-04-16 22:20:36 +00:00
|
|
|
int result;
|
|
|
|
|
|
|
|
/* the urb might have been killed. */
|
2007-06-15 22:44:13 +00:00
|
|
|
if (status)
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
|
2012-09-18 08:58:57 +00:00
|
|
|
usb_serial_debug_data(dev, __func__, urb->actual_length, data);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* React only to interrupts signaling a bulk_in transfer */
|
2008-07-22 10:10:27 +00:00
|
|
|
if (urb->actual_length == 4 && data[0] == 0x01) {
|
2005-04-16 22:20:36 +00:00
|
|
|
short old_rdtodo;
|
|
|
|
|
|
|
|
/* This is a announcement of coming bulk_ins. */
|
|
|
|
unsigned short size = ((unsigned short)data[3]<<8)+data[2]+3;
|
|
|
|
|
|
|
|
spin_lock(&priv->lock);
|
|
|
|
|
|
|
|
old_rdtodo = priv->rdtodo;
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
if (old_rdtodo + size < old_rdtodo) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "To many bulk_in urbs to do.\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock(&priv->lock);
|
|
|
|
goto resubmit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* "+=" is probably more fault tollerant than "=" */
|
|
|
|
priv->rdtodo += size;
|
|
|
|
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - rdtodo: %d\n", __func__, priv->rdtodo);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
spin_unlock(&priv->lock);
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
if (!old_rdtodo) {
|
2005-04-16 22:20:36 +00:00
|
|
|
result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
|
2008-07-22 10:10:27 +00:00
|
|
|
if (result)
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
|
2008-08-20 23:56:34 +00:00
|
|
|
__func__, result);
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resubmit:
|
|
|
|
result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
|
|
|
|
if (result)
|
2008-08-20 23:56:34 +00:00
|
|
|
dev_err(&port->dev, "usb_submit_urb(read int) failed\n");
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - usb_submit_urb(int urb)\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-07-22 10:09:07 +00:00
|
|
|
static void cyberjack_read_bulk_callback(struct urb *urb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-02-24 10:41:47 +00:00
|
|
|
struct usb_serial_port *port = urb->context;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct cyberjack_private *priv = usb_get_serial_port_data(port);
|
2012-09-14 00:18:14 +00:00
|
|
|
struct device *dev = &port->dev;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct tty_struct *tty;
|
|
|
|
unsigned char *data = urb->transfer_buffer;
|
|
|
|
short todo;
|
|
|
|
int result;
|
2007-06-15 22:44:13 +00:00
|
|
|
int status = urb->status;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-09-18 08:58:57 +00:00
|
|
|
usb_serial_debug_data(dev, __func__, urb->actual_length, data);
|
2007-06-15 22:44:13 +00:00
|
|
|
if (status) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - nonzero read bulk status received: %d\n",
|
|
|
|
__func__, status);
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-13 09:39:46 +00:00
|
|
|
tty = tty_port_tty_get(&port->port);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!tty) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - ignoring since device not open\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (urb->actual_length) {
|
[PATCH] TTY layer buffering revamp
The API and code have been through various bits of initial review by
serial driver people but they definitely need to live somewhere for a
while so the unconverted drivers can get knocked into shape, existing
drivers that have been updated can be better tuned and bugs whacked out.
This replaces the tty flip buffers with kmalloc objects in rings. In the
normal situation for an IRQ driven serial port at typical speeds the
behaviour is pretty much the same, two buffers end up allocated and the
kernel cycles between them as before.
When there are delays or at high speed we now behave far better as the
buffer pool can grow a bit rather than lose characters. This also means
that we can operate at higher speeds reliably.
For drivers that receive characters in blocks (DMA based, USB and
especially virtualisation) the layer allows a lot of driver specific
code that works around the tty layer with private secondary queues to be
removed. The IBM folks need this sort of layer, the smart serial port
people do, the virtualisers do (because a virtualised tty typically
operates at infinite speed rather than emulating 9600 baud).
Finally many drivers had invalid and unsafe attempts to avoid buffer
overflows by directly invoking tty methods extracted out of the innards
of work queue structs. These are no longer needed and all go away. That
fixes various random hangs with serial ports on overflow.
The other change in here is to optimise the receive_room path that is
used by some callers. It turns out that only one ldisc uses receive room
except asa constant and it updates it far far less than the value is
read. We thus make it a variable not a function call.
I expect the code to contain bugs due to the size alone but I'll be
watching and squashing them and feeding out new patches as it goes.
Because the buffers now dynamically expand you should only run out of
buffering when the kernel runs out of memory for real. That means a lot of
the horrible hacks high performance drivers used to do just aren't needed any
more.
Description:
tty_insert_flip_char is an old API and continues to work as before, as does
tty_flip_buffer_push() [this is why many drivers dont need modification]. It
does now also return the number of chars inserted
There are also
tty_buffer_request_room(tty, len)
which asks for a buffer block of the length requested and returns the space
found. This improves efficiency with hardware that knows how much to
transfer.
and tty_insert_flip_string_flags(tty, str, flags, len)
to insert a string of characters and flags
For a smart interface the usual code is
len = tty_request_buffer_room(tty, amount_hardware_says);
tty_insert_flip_string(tty, buffer_from_card, len);
More description!
At the moment tty buffers are attached directly to the tty. This is causing a
lot of the problems related to tty layer locking, also problems at high speed
and also with bursty data (such as occurs in virtualised environments)
I'm working on ripping out the flip buffers and replacing them with a pool of
dynamically allocated buffers. This allows both for old style "byte I/O"
devices and also helps virtualisation and smart devices where large blocks of
data suddenely materialise and need storing.
So far so good. Lots of drivers reference tty->flip.*. Several of them also
call directly and unsafely into function pointers it provides. This will all
break. Most drivers can use tty_insert_flip_char which can be kept as an API
but others need more.
At the moment I've added the following interfaces, if people think more will
be needed now is a good time to say
int tty_buffer_request_room(tty, size)
Try and ensure at least size bytes are available, returns actual room (may be
zero). At the moment it just uses the flipbuf space but that will change.
Repeated calls without characters being added are not cumulative. (ie if you
call it with 1, 1, 1, and then 4 you'll have four characters of space. The
other functions will also try and grow buffers in future but this will be a
more efficient way when you know block sizes.
int tty_insert_flip_char(tty, ch, flag)
As before insert a character if there is room. Now returns 1 for success, 0
for failure.
int tty_insert_flip_string(tty, str, len)
Insert a block of non error characters. Returns the number inserted.
int tty_prepare_flip_string(tty, strptr, len)
Adjust the buffer to allow len characters to be added. Returns a buffer
pointer in strptr and the length available. This allows for hardware that
needs to use functions like insl or mencpy_fromio.
Signed-off-by: Alan Cox <alan@redhat.com>
Cc: Paul Fulghum <paulkf@microgate.com>
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: John Hawkes <hawkes@sgi.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-01-10 04:54:13 +00:00
|
|
|
tty_insert_flip_string(tty, data, urb->actual_length);
|
2008-07-22 10:10:27 +00:00
|
|
|
tty_flip_buffer_push(tty);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-10-13 09:39:46 +00:00
|
|
|
tty_kref_put(tty);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
spin_lock(&priv->lock);
|
|
|
|
|
|
|
|
/* Reduce urbs to do by one. */
|
2008-07-22 10:10:27 +00:00
|
|
|
priv->rdtodo -= urb->actual_length;
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Just to be sure */
|
2008-07-22 10:10:27 +00:00
|
|
|
if (priv->rdtodo < 0)
|
|
|
|
priv->rdtodo = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
todo = priv->rdtodo;
|
|
|
|
|
|
|
|
spin_unlock(&priv->lock);
|
|
|
|
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - rdtodo: %d\n", __func__, todo);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Continue to read if we have still urbs to do. */
|
2008-07-22 10:10:27 +00:00
|
|
|
if (todo /* || (urb->actual_length==port->bulk_in_endpointAddress)*/) {
|
2005-04-16 22:20:36 +00:00
|
|
|
result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
|
|
|
|
if (result)
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_err(dev, "%s - failed resubmitting read urb, error %d\n",
|
|
|
|
__func__, result);
|
|
|
|
dev_dbg(dev, "%s - usb_submit_urb(read urb)\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-22 10:09:07 +00:00
|
|
|
static void cyberjack_write_bulk_callback(struct urb *urb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-02-24 10:41:47 +00:00
|
|
|
struct usb_serial_port *port = urb->context;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct cyberjack_private *priv = usb_get_serial_port_data(port);
|
2012-09-14 00:18:14 +00:00
|
|
|
struct device *dev = &port->dev;
|
2007-06-15 22:44:13 +00:00
|
|
|
int status = urb->status;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-11-06 18:06:23 +00:00
|
|
|
set_bit(0, &port->write_urbs_free);
|
2007-06-15 22:44:13 +00:00
|
|
|
if (status) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - nonzero write bulk status received: %d\n",
|
|
|
|
__func__, status);
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_lock(&priv->lock);
|
|
|
|
|
|
|
|
/* only do something if we have more data to send */
|
2008-07-22 10:10:27 +00:00
|
|
|
if (priv->wrfilled) {
|
2005-04-16 22:20:36 +00:00
|
|
|
int length, blksize, result;
|
|
|
|
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - transmitting data (frame n)\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
length = ((priv->wrfilled - priv->wrsent) > port->bulk_out_size) ?
|
|
|
|
port->bulk_out_size : (priv->wrfilled - priv->wrsent);
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
memcpy(port->write_urb->transfer_buffer,
|
|
|
|
priv->wrbuf + priv->wrsent, length);
|
|
|
|
priv->wrsent += length;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* set up our urb */
|
2011-11-06 18:06:30 +00:00
|
|
|
port->write_urb->transfer_buffer_length = length;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* send the data out the bulk port */
|
|
|
|
result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
|
|
|
|
if (result) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_err(dev, "%s - failed submitting write urb, error %d\n",
|
2008-08-20 23:56:34 +00:00
|
|
|
__func__, result);
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Throw away data. No better idea what to do with it. */
|
2008-04-08 16:16:06 +00:00
|
|
|
priv->wrfilled = 0;
|
|
|
|
priv->wrsent = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - priv->wrsent=%d\n", __func__, priv->wrsent);
|
|
|
|
dev_dbg(dev, "%s - priv->wrfilled=%d\n", __func__, priv->wrfilled);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3;
|
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
if (priv->wrsent >= priv->wrfilled ||
|
|
|
|
priv->wrsent >= blksize) {
|
2012-09-14 00:18:14 +00:00
|
|
|
dev_dbg(dev, "%s - buffer cleaned\n", __func__);
|
2008-07-22 10:10:27 +00:00
|
|
|
memset(priv->wrbuf, 0, sizeof(priv->wrbuf));
|
2008-04-08 16:16:06 +00:00
|
|
|
priv->wrfilled = 0;
|
|
|
|
priv->wrsent = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
spin_unlock(&priv->lock);
|
2006-05-23 04:58:49 +00:00
|
|
|
usb_serial_port_softint(port);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-05-08 22:46:14 +00:00
|
|
|
module_usb_serial_driver(serial_drivers, id_table);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-22 10:10:27 +00:00
|
|
|
MODULE_AUTHOR(DRIVER_AUTHOR);
|
|
|
|
MODULE_DESCRIPTION(DRIVER_DESC);
|
2005-04-16 22:20:36 +00:00
|
|
|
MODULE_LICENSE("GPL");
|