Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 1 | /* |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 2 | USB Driver for GSM modems |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 3 | |
| 4 | Copyright (C) 2005 Matthias Urlichs <smurf@smurf.noris.de> |
| 5 | |
| 6 | This driver is free software; you can redistribute it and/or modify |
| 7 | it under the terms of Version 2 of the GNU General Public License as |
| 8 | published by the Free Software Foundation. |
| 9 | |
| 10 | Portions copied from the Keyspan driver by Hugh Blemings <hugh@blemings.org> |
| 11 | |
Matthias Urlichs | b3fdab5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 12 | History: see the git log. |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 13 | |
| 14 | Work sponsored by: Sigos GmbH, Germany <info@sigos.de> |
| 15 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 16 | This driver exists because the "normal" serial driver doesn't work too well |
| 17 | with GSM modems. Issues: |
| 18 | - data loss -- one single Receive URB is not nearly enough |
Matthias Urlichs | 7c1c2f7 | 2006-07-20 04:56:00 +0200 | [diff] [blame] | 19 | - nonstandard flow (Option devices) control |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 20 | - controlling the baud rate doesn't make sense |
| 21 | |
| 22 | This driver is named "option" because the most common device it's |
| 23 | used for is a PC-Card (with an internal OHCI-USB interface, behind |
| 24 | which the GSM interface sits), made by Option Inc. |
| 25 | |
| 26 | Some of the "one port" devices actually exhibit multiple USB instances |
| 27 | on the USB bus. This is not a bug, these ports are used for different |
| 28 | device features. |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 29 | */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 30 | |
Matthias Urlichs | e37de9e | 2006-07-06 13:12:53 +0200 | [diff] [blame] | 31 | #define DRIVER_VERSION "v0.7.1" |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 32 | #define DRIVER_AUTHOR "Matthias Urlichs <smurf@smurf.noris.de>" |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 33 | #define DRIVER_DESC "USB Driver for GSM modems" |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 34 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/jiffies.h> |
| 37 | #include <linux/errno.h> |
| 38 | #include <linux/tty.h> |
| 39 | #include <linux/tty_flip.h> |
| 40 | #include <linux/module.h> |
| 41 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 42 | #include <linux/usb/serial.h> |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 43 | |
| 44 | /* Function prototypes */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 45 | static int option_open(struct usb_serial_port *port, struct file *filp); |
| 46 | static void option_close(struct usb_serial_port *port, struct file *filp); |
| 47 | static int option_startup(struct usb_serial *serial); |
| 48 | static void option_shutdown(struct usb_serial *serial); |
| 49 | static void option_rx_throttle(struct usb_serial_port *port); |
| 50 | static void option_rx_unthrottle(struct usb_serial_port *port); |
| 51 | static int option_write_room(struct usb_serial_port *port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 52 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 53 | static void option_instat_callback(struct urb *urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 54 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 55 | static int option_write(struct usb_serial_port *port, |
| 56 | const unsigned char *buf, int count); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 57 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 58 | static int option_chars_in_buffer(struct usb_serial_port *port); |
| 59 | static int option_ioctl(struct usb_serial_port *port, struct file *file, |
| 60 | unsigned int cmd, unsigned long arg); |
| 61 | static void option_set_termios(struct usb_serial_port *port, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 62 | struct ktermios *old); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 63 | static void option_break_ctl(struct usb_serial_port *port, int break_state); |
| 64 | static int option_tiocmget(struct usb_serial_port *port, struct file *file); |
| 65 | static int option_tiocmset(struct usb_serial_port *port, struct file *file, |
| 66 | unsigned int set, unsigned int clear); |
| 67 | static int option_send_setup(struct usb_serial_port *port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 68 | |
| 69 | /* Vendor and product IDs */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 70 | #define OPTION_VENDOR_ID 0x0AF0 |
| 71 | #define HUAWEI_VENDOR_ID 0x12D1 |
| 72 | #define AUDIOVOX_VENDOR_ID 0x0F3D |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 73 | #define NOVATELWIRELESS_VENDOR_ID 0x1410 |
Matthias Urlichs | 31fcbb7 | 2006-07-12 08:35:29 +0200 | [diff] [blame] | 74 | #define ANYDATA_VENDOR_ID 0x16d5 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 75 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 76 | #define OPTION_PRODUCT_OLD 0x5000 |
| 77 | #define OPTION_PRODUCT_FUSION 0x6000 |
| 78 | #define OPTION_PRODUCT_FUSION2 0x6300 |
| 79 | #define OPTION_PRODUCT_COBRA 0x6500 |
Matthias Urlichs | e37de9e | 2006-07-06 13:12:53 +0200 | [diff] [blame] | 80 | #define OPTION_PRODUCT_COBRA2 0x6600 |
garrett_damore@tadpole.com | 53e8f84 | 2007-01-12 17:10:28 -0800 | [diff] [blame] | 81 | #define OPTION_PRODUCT_GTMAX36 0x6701 |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 82 | #define HUAWEI_PRODUCT_E600 0x1001 |
Johann Wilhelm | ab19589 | 2006-12-02 07:25:31 +0100 | [diff] [blame] | 83 | #define HUAWEI_PRODUCT_E220 0x1003 |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 84 | #define AUDIOVOX_PRODUCT_AIRCARD 0x0112 |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 85 | #define NOVATELWIRELESS_PRODUCT_U740 0x1400 |
Matthias Urlichs | 31fcbb7 | 2006-07-12 08:35:29 +0200 | [diff] [blame] | 86 | #define ANYDATA_PRODUCT_ID 0x6501 |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 87 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 88 | static struct usb_device_id option_ids[] = { |
| 89 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_OLD) }, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 90 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION) }, |
| 91 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION2) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 92 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) }, |
Matthias Urlichs | e37de9e | 2006-07-06 13:12:53 +0200 | [diff] [blame] | 93 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA2) }, |
garrett_damore@tadpole.com | 53e8f84 | 2007-01-12 17:10:28 -0800 | [diff] [blame] | 94 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) }, |
Matthias Urlichs | b613738 | 2005-09-22 00:48:40 -0700 | [diff] [blame] | 95 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) }, |
Johann Wilhelm | ab19589 | 2006-12-02 07:25:31 +0100 | [diff] [blame] | 96 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) }, |
Matthias Urlichs | b613738 | 2005-09-22 00:48:40 -0700 | [diff] [blame] | 97 | { USB_DEVICE(AUDIOVOX_VENDOR_ID, AUDIOVOX_PRODUCT_AIRCARD) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 98 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) }, |
Matthias Urlichs | 31fcbb7 | 2006-07-12 08:35:29 +0200 | [diff] [blame] | 99 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 100 | { } /* Terminating entry */ |
| 101 | }; |
| 102 | |
| 103 | static struct usb_device_id option_ids1[] = { |
| 104 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_OLD) }, |
| 105 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION) }, |
| 106 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_FUSION2) }, |
| 107 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA) }, |
Matthias Urlichs | e37de9e | 2006-07-06 13:12:53 +0200 | [diff] [blame] | 108 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COBRA2) }, |
garrett_damore@tadpole.com | 53e8f84 | 2007-01-12 17:10:28 -0800 | [diff] [blame] | 109 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_GTMAX36) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 110 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E600) }, |
Johann Wilhelm | ab19589 | 2006-12-02 07:25:31 +0100 | [diff] [blame] | 111 | { USB_DEVICE(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E220) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 112 | { USB_DEVICE(AUDIOVOX_VENDOR_ID, AUDIOVOX_PRODUCT_AIRCARD) }, |
| 113 | { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID,NOVATELWIRELESS_PRODUCT_U740) }, |
Matthias Urlichs | 31fcbb7 | 2006-07-12 08:35:29 +0200 | [diff] [blame] | 114 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ID) }, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 115 | { } /* Terminating entry */ |
| 116 | }; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 117 | |
| 118 | MODULE_DEVICE_TABLE(usb, option_ids); |
| 119 | |
| 120 | static struct usb_driver option_driver = { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 121 | .name = "option", |
| 122 | .probe = usb_serial_probe, |
| 123 | .disconnect = usb_serial_disconnect, |
| 124 | .id_table = option_ids, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 125 | .no_dynamic_id = 1, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 126 | }; |
| 127 | |
Uwe Zeisberger | c30fe7f | 2006-03-24 18:23:14 +0100 | [diff] [blame] | 128 | /* The card has three separate interfaces, which the serial driver |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 129 | * recognizes separately, thus num_port=1. |
| 130 | */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 131 | |
| 132 | static struct usb_serial_driver option_1port_device = { |
| 133 | .driver = { |
| 134 | .owner = THIS_MODULE, |
Matthias Urlichs | 02b2ac5 | 2006-08-02 16:41:41 -0700 | [diff] [blame] | 135 | .name = "option1", |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 136 | }, |
| 137 | .description = "GSM modem (1-port)", |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 138 | .usb_driver = &option_driver, |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 139 | .id_table = option_ids1, |
| 140 | .num_interrupt_in = NUM_DONT_CARE, |
| 141 | .num_bulk_in = NUM_DONT_CARE, |
| 142 | .num_bulk_out = NUM_DONT_CARE, |
| 143 | .num_ports = 1, |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 144 | .open = option_open, |
| 145 | .close = option_close, |
| 146 | .write = option_write, |
| 147 | .write_room = option_write_room, |
| 148 | .chars_in_buffer = option_chars_in_buffer, |
| 149 | .throttle = option_rx_throttle, |
| 150 | .unthrottle = option_rx_unthrottle, |
| 151 | .ioctl = option_ioctl, |
| 152 | .set_termios = option_set_termios, |
| 153 | .break_ctl = option_break_ctl, |
| 154 | .tiocmget = option_tiocmget, |
| 155 | .tiocmset = option_tiocmset, |
| 156 | .attach = option_startup, |
| 157 | .shutdown = option_shutdown, |
| 158 | .read_int_callback = option_instat_callback, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 159 | }; |
| 160 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 161 | #ifdef CONFIG_USB_DEBUG |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 162 | static int debug; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 163 | #else |
| 164 | #define debug 0 |
| 165 | #endif |
| 166 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 167 | /* per port private data */ |
| 168 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 169 | #define N_IN_URB 4 |
| 170 | #define N_OUT_URB 1 |
Matthias Urlichs | b27c73d | 2005-09-22 00:49:33 -0700 | [diff] [blame] | 171 | #define IN_BUFLEN 4096 |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 172 | #define OUT_BUFLEN 128 |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 173 | |
| 174 | struct option_port_private { |
| 175 | /* Input endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 176 | struct urb *in_urbs[N_IN_URB]; |
| 177 | char in_buffer[N_IN_URB][IN_BUFLEN]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 178 | /* Output endpoints and buffer for this port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 179 | struct urb *out_urbs[N_OUT_URB]; |
| 180 | char out_buffer[N_OUT_URB][OUT_BUFLEN]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 181 | |
| 182 | /* Settings for the port */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 183 | int rts_state; /* Handshaking pins (outputs) */ |
| 184 | int dtr_state; |
| 185 | int cts_state; /* Handshaking pins (inputs) */ |
| 186 | int dsr_state; |
| 187 | int dcd_state; |
| 188 | int ri_state; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 189 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 190 | unsigned long tx_start_time[N_OUT_URB]; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 191 | }; |
| 192 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 193 | /* Functions used by new usb-serial code. */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 194 | static int __init option_init(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 195 | { |
| 196 | int retval; |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 197 | retval = usb_serial_register(&option_1port_device); |
| 198 | if (retval) |
| 199 | goto failed_1port_device_register; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 200 | retval = usb_register(&option_driver); |
| 201 | if (retval) |
| 202 | goto failed_driver_register; |
| 203 | |
| 204 | info(DRIVER_DESC ": " DRIVER_VERSION); |
| 205 | |
| 206 | return 0; |
| 207 | |
| 208 | failed_driver_register: |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 209 | usb_serial_deregister (&option_1port_device); |
| 210 | failed_1port_device_register: |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 211 | return retval; |
| 212 | } |
| 213 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 214 | static void __exit option_exit(void) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 215 | { |
| 216 | usb_deregister (&option_driver); |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 217 | usb_serial_deregister (&option_1port_device); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | module_init(option_init); |
| 221 | module_exit(option_exit); |
| 222 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 223 | static void option_rx_throttle(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 224 | { |
| 225 | dbg("%s", __FUNCTION__); |
| 226 | } |
| 227 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 228 | static void option_rx_unthrottle(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 229 | { |
| 230 | dbg("%s", __FUNCTION__); |
| 231 | } |
| 232 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 233 | static void option_break_ctl(struct usb_serial_port *port, int break_state) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 234 | { |
| 235 | /* Unfortunately, I don't know how to send a break */ |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 236 | dbg("%s", __FUNCTION__); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 239 | static void option_set_termios(struct usb_serial_port *port, |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 240 | struct ktermios *old_termios) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 241 | { |
| 242 | dbg("%s", __FUNCTION__); |
| 243 | |
| 244 | option_send_setup(port); |
| 245 | } |
| 246 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 247 | static int option_tiocmget(struct usb_serial_port *port, struct file *file) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 248 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 249 | unsigned int value; |
| 250 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 251 | |
| 252 | portdata = usb_get_serial_port_data(port); |
| 253 | |
| 254 | value = ((portdata->rts_state) ? TIOCM_RTS : 0) | |
| 255 | ((portdata->dtr_state) ? TIOCM_DTR : 0) | |
| 256 | ((portdata->cts_state) ? TIOCM_CTS : 0) | |
| 257 | ((portdata->dsr_state) ? TIOCM_DSR : 0) | |
| 258 | ((portdata->dcd_state) ? TIOCM_CAR : 0) | |
| 259 | ((portdata->ri_state) ? TIOCM_RNG : 0); |
| 260 | |
| 261 | return value; |
| 262 | } |
| 263 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 264 | static int option_tiocmset(struct usb_serial_port *port, struct file *file, |
| 265 | unsigned int set, unsigned int clear) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 266 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 267 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 268 | |
| 269 | portdata = usb_get_serial_port_data(port); |
| 270 | |
| 271 | if (set & TIOCM_RTS) |
| 272 | portdata->rts_state = 1; |
| 273 | if (set & TIOCM_DTR) |
| 274 | portdata->dtr_state = 1; |
| 275 | |
| 276 | if (clear & TIOCM_RTS) |
| 277 | portdata->rts_state = 0; |
| 278 | if (clear & TIOCM_DTR) |
| 279 | portdata->dtr_state = 0; |
| 280 | return option_send_setup(port); |
| 281 | } |
| 282 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 283 | static int option_ioctl(struct usb_serial_port *port, struct file *file, |
| 284 | unsigned int cmd, unsigned long arg) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 285 | { |
| 286 | return -ENOIOCTLCMD; |
| 287 | } |
| 288 | |
| 289 | /* Write */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 290 | static int option_write(struct usb_serial_port *port, |
| 291 | const unsigned char *buf, int count) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 292 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 293 | struct option_port_private *portdata; |
| 294 | int i; |
| 295 | int left, todo; |
| 296 | struct urb *this_urb = NULL; /* spurious */ |
| 297 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 298 | |
| 299 | portdata = usb_get_serial_port_data(port); |
| 300 | |
| 301 | dbg("%s: write (%d chars)", __FUNCTION__, count); |
| 302 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 303 | i = 0; |
| 304 | left = count; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 305 | for (i=0; left > 0 && i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 306 | todo = left; |
| 307 | if (todo > OUT_BUFLEN) |
| 308 | todo = OUT_BUFLEN; |
| 309 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 310 | this_urb = portdata->out_urbs[i]; |
| 311 | if (this_urb->status == -EINPROGRESS) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 312 | if (time_before(jiffies, |
| 313 | portdata->tx_start_time[i] + 10 * HZ)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 314 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 315 | usb_unlink_urb(this_urb); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 316 | continue; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 317 | } |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 318 | if (this_urb->status != 0) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 319 | dbg("usb_write %p failed (err=%d)", |
| 320 | this_urb, this_urb->status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 321 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 322 | dbg("%s: endpoint %d buf %d", __FUNCTION__, |
| 323 | usb_pipeendpoint(this_urb->pipe), i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 324 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 325 | /* send the data */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 326 | memcpy (this_urb->transfer_buffer, buf, todo); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 327 | this_urb->transfer_buffer_length = todo; |
| 328 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 329 | this_urb->dev = port->serial->dev; |
| 330 | err = usb_submit_urb(this_urb, GFP_ATOMIC); |
| 331 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 332 | dbg("usb_submit_urb %p (write bulk) failed " |
| 333 | "(%d, has %d)", this_urb, |
| 334 | err, this_urb->status); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 335 | continue; |
| 336 | } |
| 337 | portdata->tx_start_time[i] = jiffies; |
| 338 | buf += todo; |
| 339 | left -= todo; |
| 340 | } |
| 341 | |
| 342 | count -= left; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 343 | dbg("%s: wrote (did %d)", __FUNCTION__, count); |
| 344 | return count; |
| 345 | } |
| 346 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 347 | static void option_indat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 348 | { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 349 | int err; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 350 | int endpoint; |
| 351 | struct usb_serial_port *port; |
| 352 | struct tty_struct *tty; |
| 353 | unsigned char *data = urb->transfer_buffer; |
| 354 | |
| 355 | dbg("%s: %p", __FUNCTION__, urb); |
| 356 | |
| 357 | endpoint = usb_pipeendpoint(urb->pipe); |
| 358 | port = (struct usb_serial_port *) urb->context; |
| 359 | |
| 360 | if (urb->status) { |
| 361 | dbg("%s: nonzero status: %d on endpoint %02x.", |
| 362 | __FUNCTION__, urb->status, endpoint); |
| 363 | } else { |
| 364 | tty = port->tty; |
| 365 | if (urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 366 | tty_buffer_request_room(tty, urb->actual_length); |
| 367 | tty_insert_flip_string(tty, data, urb->actual_length); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 368 | tty_flip_buffer_push(tty); |
| 369 | } else { |
| 370 | dbg("%s: empty read urb received", __FUNCTION__); |
| 371 | } |
| 372 | |
| 373 | /* Resubmit urb so we continue receiving */ |
| 374 | if (port->open_count && urb->status != -ESHUTDOWN) { |
| 375 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 376 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 377 | printk(KERN_ERR "%s: resubmit read urb failed. " |
| 378 | "(%d)", __FUNCTION__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 379 | } |
| 380 | } |
| 381 | return; |
| 382 | } |
| 383 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 384 | static void option_outdat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 385 | { |
| 386 | struct usb_serial_port *port; |
| 387 | |
| 388 | dbg("%s", __FUNCTION__); |
| 389 | |
| 390 | port = (struct usb_serial_port *) urb->context; |
| 391 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 392 | usb_serial_port_softint(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 393 | } |
| 394 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 395 | static void option_instat_callback(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 396 | { |
| 397 | int err; |
| 398 | struct usb_serial_port *port = (struct usb_serial_port *) urb->context; |
| 399 | struct option_port_private *portdata = usb_get_serial_port_data(port); |
| 400 | struct usb_serial *serial = port->serial; |
| 401 | |
| 402 | dbg("%s", __FUNCTION__); |
| 403 | dbg("%s: urb %p port %p has data %p", __FUNCTION__,urb,port,portdata); |
| 404 | |
| 405 | if (urb->status == 0) { |
| 406 | struct usb_ctrlrequest *req_pkt = |
| 407 | (struct usb_ctrlrequest *)urb->transfer_buffer; |
| 408 | |
| 409 | if (!req_pkt) { |
| 410 | dbg("%s: NULL req_pkt\n", __FUNCTION__); |
| 411 | return; |
| 412 | } |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 413 | if ((req_pkt->bRequestType == 0xA1) && |
| 414 | (req_pkt->bRequest == 0x20)) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 415 | int old_dcd_state; |
| 416 | unsigned char signals = *((unsigned char *) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 417 | urb->transfer_buffer + |
| 418 | sizeof(struct usb_ctrlrequest)); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 419 | |
| 420 | dbg("%s: signal x%x", __FUNCTION__, signals); |
| 421 | |
| 422 | old_dcd_state = portdata->dcd_state; |
| 423 | portdata->cts_state = 1; |
| 424 | portdata->dcd_state = ((signals & 0x01) ? 1 : 0); |
| 425 | portdata->dsr_state = ((signals & 0x02) ? 1 : 0); |
| 426 | portdata->ri_state = ((signals & 0x08) ? 1 : 0); |
| 427 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 428 | if (port->tty && !C_CLOCAL(port->tty) && |
| 429 | old_dcd_state && !portdata->dcd_state) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 430 | tty_hangup(port->tty); |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 431 | } else { |
| 432 | dbg("%s: type %x req %x", __FUNCTION__, |
| 433 | req_pkt->bRequestType,req_pkt->bRequest); |
| 434 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 435 | } else |
| 436 | dbg("%s: error %d", __FUNCTION__, urb->status); |
| 437 | |
| 438 | /* Resubmit urb so we continue receiving IRQ data */ |
| 439 | if (urb->status != -ESHUTDOWN) { |
| 440 | urb->dev = serial->dev; |
| 441 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 442 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 443 | dbg("%s: resubmit intr urb failed. (%d)", |
| 444 | __FUNCTION__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 445 | } |
| 446 | } |
| 447 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 448 | static int option_write_room(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 449 | { |
| 450 | struct option_port_private *portdata; |
| 451 | int i; |
| 452 | int data_len = 0; |
| 453 | struct urb *this_urb; |
| 454 | |
| 455 | portdata = usb_get_serial_port_data(port); |
| 456 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 457 | for (i=0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 458 | this_urb = portdata->out_urbs[i]; |
| 459 | if (this_urb && this_urb->status != -EINPROGRESS) |
| 460 | data_len += OUT_BUFLEN; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 461 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 462 | |
| 463 | dbg("%s: %d", __FUNCTION__, data_len); |
| 464 | return data_len; |
| 465 | } |
| 466 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 467 | static int option_chars_in_buffer(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 468 | { |
| 469 | struct option_port_private *portdata; |
| 470 | int i; |
| 471 | int data_len = 0; |
| 472 | struct urb *this_urb; |
| 473 | |
| 474 | portdata = usb_get_serial_port_data(port); |
| 475 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 476 | for (i=0; i < N_OUT_URB; i++) { |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 477 | this_urb = portdata->out_urbs[i]; |
| 478 | if (this_urb && this_urb->status == -EINPROGRESS) |
| 479 | data_len += this_urb->transfer_buffer_length; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 480 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 481 | dbg("%s: %d", __FUNCTION__, data_len); |
| 482 | return data_len; |
| 483 | } |
| 484 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 485 | static int option_open(struct usb_serial_port *port, struct file *filp) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 486 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 487 | struct option_port_private *portdata; |
| 488 | struct usb_serial *serial = port->serial; |
| 489 | int i, err; |
| 490 | struct urb *urb; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 491 | |
| 492 | portdata = usb_get_serial_port_data(port); |
| 493 | |
| 494 | dbg("%s", __FUNCTION__); |
| 495 | |
| 496 | /* Set some sane defaults */ |
| 497 | portdata->rts_state = 1; |
| 498 | portdata->dtr_state = 1; |
| 499 | |
| 500 | /* Reset low level data toggle and start reading from endpoints */ |
| 501 | for (i = 0; i < N_IN_URB; i++) { |
| 502 | urb = portdata->in_urbs[i]; |
| 503 | if (! urb) |
| 504 | continue; |
| 505 | if (urb->dev != serial->dev) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 506 | dbg("%s: dev %p != %p", __FUNCTION__, |
| 507 | urb->dev, serial->dev); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 508 | continue; |
| 509 | } |
| 510 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 511 | /* |
| 512 | * make sure endpoint data toggle is synchronized with the |
| 513 | * device |
| 514 | */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 515 | usb_clear_halt(urb->dev, urb->pipe); |
| 516 | |
| 517 | err = usb_submit_urb(urb, GFP_KERNEL); |
| 518 | if (err) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 519 | dbg("%s: submit urb %d failed (%d) %d", |
| 520 | __FUNCTION__, i, err, |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 521 | urb->transfer_buffer_length); |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | /* Reset low level data toggle on out endpoints */ |
| 526 | for (i = 0; i < N_OUT_URB; i++) { |
| 527 | urb = portdata->out_urbs[i]; |
| 528 | if (! urb) |
| 529 | continue; |
| 530 | urb->dev = serial->dev; |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 531 | /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), |
| 532 | usb_pipeout(urb->pipe), 0); */ |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | port->tty->low_latency = 1; |
| 536 | |
| 537 | option_send_setup(port); |
| 538 | |
| 539 | return (0); |
| 540 | } |
| 541 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 542 | static inline void stop_urb(struct urb *urb) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 543 | { |
Greg Kroah-Hartman | 242cf67 | 2005-07-29 16:11:07 -0400 | [diff] [blame] | 544 | if (urb && urb->status == -EINPROGRESS) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 545 | usb_kill_urb(urb); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 546 | } |
| 547 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 548 | static void option_close(struct usb_serial_port *port, struct file *filp) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 549 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 550 | int i; |
| 551 | struct usb_serial *serial = port->serial; |
| 552 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 553 | |
| 554 | dbg("%s", __FUNCTION__); |
| 555 | portdata = usb_get_serial_port_data(port); |
| 556 | |
| 557 | portdata->rts_state = 0; |
| 558 | portdata->dtr_state = 0; |
| 559 | |
| 560 | if (serial->dev) { |
| 561 | option_send_setup(port); |
| 562 | |
| 563 | /* Stop reading/writing urbs */ |
| 564 | for (i = 0; i < N_IN_URB; i++) |
| 565 | stop_urb(portdata->in_urbs[i]); |
| 566 | for (i = 0; i < N_OUT_URB; i++) |
| 567 | stop_urb(portdata->out_urbs[i]); |
| 568 | } |
| 569 | port->tty = NULL; |
| 570 | } |
| 571 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 572 | /* Helper functions used by option_setup_urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 573 | static struct urb *option_setup_urb(struct usb_serial *serial, int endpoint, |
| 574 | int dir, void *ctx, char *buf, int len, |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 575 | void (*callback)(struct urb *)) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 576 | { |
| 577 | struct urb *urb; |
| 578 | |
| 579 | if (endpoint == -1) |
| 580 | return NULL; /* endpoint not needed */ |
| 581 | |
| 582 | urb = usb_alloc_urb(0, GFP_KERNEL); /* No ISO */ |
| 583 | if (urb == NULL) { |
| 584 | dbg("%s: alloc for endpoint %d failed.", __FUNCTION__, endpoint); |
| 585 | return NULL; |
| 586 | } |
| 587 | |
| 588 | /* Fill URB using supplied data. */ |
| 589 | usb_fill_bulk_urb(urb, serial->dev, |
| 590 | usb_sndbulkpipe(serial->dev, endpoint) | dir, |
| 591 | buf, len, callback, ctx); |
| 592 | |
| 593 | return urb; |
| 594 | } |
| 595 | |
| 596 | /* Setup urbs */ |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 597 | static void option_setup_urbs(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 598 | { |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 599 | int i,j; |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 600 | struct usb_serial_port *port; |
| 601 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 602 | |
| 603 | dbg("%s", __FUNCTION__); |
| 604 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 605 | for (i = 0; i < serial->num_ports; i++) { |
| 606 | port = serial->port[i]; |
| 607 | portdata = usb_get_serial_port_data(port); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 608 | |
| 609 | /* Do indat endpoints first */ |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 610 | for (j = 0; j < N_IN_URB; ++j) { |
| 611 | portdata->in_urbs[j] = option_setup_urb (serial, |
| 612 | port->bulk_in_endpointAddress, USB_DIR_IN, port, |
| 613 | portdata->in_buffer[j], IN_BUFLEN, option_indat_callback); |
| 614 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 615 | |
Matthias Urlichs | 14f76cc | 2006-06-02 11:48:56 +0200 | [diff] [blame] | 616 | /* outdat endpoints */ |
| 617 | for (j = 0; j < N_OUT_URB; ++j) { |
| 618 | portdata->out_urbs[j] = option_setup_urb (serial, |
| 619 | port->bulk_out_endpointAddress, USB_DIR_OUT, port, |
| 620 | portdata->out_buffer[j], OUT_BUFLEN, option_outdat_callback); |
| 621 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 622 | } |
| 623 | } |
| 624 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 625 | static int option_send_setup(struct usb_serial_port *port) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 626 | { |
| 627 | struct usb_serial *serial = port->serial; |
| 628 | struct option_port_private *portdata; |
| 629 | |
| 630 | dbg("%s", __FUNCTION__); |
| 631 | |
Miguel Angel Alvarez | 8c15271 | 2006-12-14 19:49:35 +0100 | [diff] [blame] | 632 | if (port->number != 0) |
| 633 | return 0; |
| 634 | |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 635 | portdata = usb_get_serial_port_data(port); |
| 636 | |
| 637 | if (port->tty) { |
| 638 | int val = 0; |
| 639 | if (portdata->dtr_state) |
| 640 | val |= 0x01; |
| 641 | if (portdata->rts_state) |
| 642 | val |= 0x02; |
| 643 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 644 | return usb_control_msg(serial->dev, |
| 645 | usb_rcvctrlpipe(serial->dev, 0), |
| 646 | 0x22,0x21,val,0,NULL,0,USB_CTRL_SET_TIMEOUT); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | return 0; |
| 650 | } |
| 651 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 652 | static int option_startup(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 653 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 654 | int i, err; |
| 655 | struct usb_serial_port *port; |
| 656 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 657 | |
| 658 | dbg("%s", __FUNCTION__); |
| 659 | |
| 660 | /* Now setup per port private data */ |
| 661 | for (i = 0; i < serial->num_ports; i++) { |
| 662 | port = serial->port[i]; |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 663 | portdata = kzalloc(sizeof(*portdata), GFP_KERNEL); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 664 | if (!portdata) { |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 665 | dbg("%s: kmalloc for option_port_private (%d) failed!.", |
| 666 | __FUNCTION__, i); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 667 | return (1); |
| 668 | } |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 669 | |
| 670 | usb_set_serial_port_data(port, portdata); |
| 671 | |
| 672 | if (! port->interrupt_in_urb) |
| 673 | continue; |
| 674 | err = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
| 675 | if (err) |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 676 | dbg("%s: submit irq_in urb failed %d", |
| 677 | __FUNCTION__, err); |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | option_setup_urbs(serial); |
| 681 | |
| 682 | return (0); |
| 683 | } |
| 684 | |
Andrew Morton | 7bb75ae | 2005-07-27 01:08:30 -0700 | [diff] [blame] | 685 | static void option_shutdown(struct usb_serial *serial) |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 686 | { |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 687 | int i, j; |
| 688 | struct usb_serial_port *port; |
| 689 | struct option_port_private *portdata; |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 690 | |
| 691 | dbg("%s", __FUNCTION__); |
| 692 | |
| 693 | /* Stop reading/writing urbs */ |
| 694 | for (i = 0; i < serial->num_ports; ++i) { |
| 695 | port = serial->port[i]; |
| 696 | portdata = usb_get_serial_port_data(port); |
| 697 | for (j = 0; j < N_IN_URB; j++) |
| 698 | stop_urb(portdata->in_urbs[j]); |
| 699 | for (j = 0; j < N_OUT_URB; j++) |
| 700 | stop_urb(portdata->out_urbs[j]); |
| 701 | } |
| 702 | |
| 703 | /* Now free them */ |
| 704 | for (i = 0; i < serial->num_ports; ++i) { |
| 705 | port = serial->port[i]; |
| 706 | portdata = usb_get_serial_port_data(port); |
| 707 | |
| 708 | for (j = 0; j < N_IN_URB; j++) { |
| 709 | if (portdata->in_urbs[j]) { |
| 710 | usb_free_urb(portdata->in_urbs[j]); |
| 711 | portdata->in_urbs[j] = NULL; |
| 712 | } |
| 713 | } |
| 714 | for (j = 0; j < N_OUT_URB; j++) { |
| 715 | if (portdata->out_urbs[j]) { |
| 716 | usb_free_urb(portdata->out_urbs[j]); |
| 717 | portdata->out_urbs[j] = NULL; |
| 718 | } |
| 719 | } |
| 720 | } |
| 721 | |
| 722 | /* Now free per port private data */ |
| 723 | for (i = 0; i < serial->num_ports; i++) { |
| 724 | port = serial->port[i]; |
| 725 | kfree(usb_get_serial_port_data(port)); |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 730 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 731 | MODULE_VERSION(DRIVER_VERSION); |
| 732 | MODULE_LICENSE("GPL"); |
| 733 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 734 | #ifdef CONFIG_USB_DEBUG |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 735 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 736 | MODULE_PARM_DESC(debug, "Debug messages"); |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 737 | #endif |
Matthias Urlichs | 58cfe91 | 2005-05-23 17:00:48 -0700 | [diff] [blame] | 738 | |