Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * USB Empeg empeg-car player driver |
| 3 | * |
| 4 | * Copyright (C) 2000, 2001 |
| 5 | * Gary Brubaker (xavyer@ix.netcom.com) |
| 6 | * |
| 7 | * Copyright (C) 1999 - 2001 |
| 8 | * Greg Kroah-Hartman (greg@kroah.com) |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License, as published by |
| 12 | * the Free Software Foundation, version 2. |
| 13 | * |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 14 | * See Documentation/usb/usb-serial.txt for more information on using this |
| 15 | * driver |
| 16 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * (07/16/2001) gb |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 18 | * remove unused code in empeg_close() (thanks to Oliver Neukum for |
| 19 | * pointing this out) and rewrote empeg_set_termios(). |
| 20 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | * (05/30/2001) gkh |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 22 | * switched from using spinlock to a semaphore, which fixes lots of |
| 23 | * problems. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * |
| 25 | * (04/08/2001) gb |
| 26 | * Identify version on module load. |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 27 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | * (01/22/2001) gb |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 29 | * Added write_room() and chars_in_buffer() support. |
| 30 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * (12/21/2000) gb |
| 32 | * Moved termio stuff inside the port->active check. |
| 33 | * Moved MOD_DEC_USE_COUNT to end of empeg_close(). |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 34 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | * (12/03/2000) gb |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 36 | * Added tty->ldisc.set_termios(port, tty, NULL) to empeg_open(). |
| 37 | * This notifies the tty driver that the termios have changed. |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 38 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | * (11/13/2000) gb |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 40 | * Moved tty->low_latency = 1 from empeg_read_bulk_callback() to |
| 41 | * empeg_open() (It only needs to be set once - Doh!) |
| 42 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * (11/11/2000) gb |
| 44 | * Updated to work with id_table structure. |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 45 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | * (11/04/2000) gb |
| 47 | * Forked this from visor.c, and hacked it up to work with an |
| 48 | * Empeg ltd. empeg-car player. Constructive criticism welcomed. |
| 49 | * I would like to say, 'Thank You' to Greg Kroah-Hartman for the |
| 50 | * use of his code, and for his guidance, advice and patience. :) |
| 51 | * A 'Thank You' is in order for John Ripley of Empeg ltd for his |
| 52 | * advice, and patience too. |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 53 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | */ |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <linux/kernel.h> |
| 57 | #include <linux/errno.h> |
| 58 | #include <linux/init.h> |
| 59 | #include <linux/slab.h> |
| 60 | #include <linux/tty.h> |
| 61 | #include <linux/tty_driver.h> |
| 62 | #include <linux/tty_flip.h> |
| 63 | #include <linux/module.h> |
| 64 | #include <linux/spinlock.h> |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 65 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 67 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | static int debug; |
| 70 | |
| 71 | /* |
| 72 | * Version Information |
| 73 | */ |
| 74 | #define DRIVER_VERSION "v1.2" |
| 75 | #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Gary Brubaker <xavyer@ix.netcom.com>" |
| 76 | #define DRIVER_DESC "USB Empeg Mark I/II Driver" |
| 77 | |
| 78 | #define EMPEG_VENDOR_ID 0x084f |
| 79 | #define EMPEG_PRODUCT_ID 0x0001 |
| 80 | |
| 81 | /* function prototypes for an empeg-car player */ |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 82 | static int empeg_open(struct tty_struct *tty, struct usb_serial_port *port); |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 83 | static void empeg_close(struct usb_serial_port *port); |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 84 | static int empeg_write(struct tty_struct *tty, struct usb_serial_port *port, |
| 85 | const unsigned char *buf, |
| 86 | int count); |
| 87 | static int empeg_write_room(struct tty_struct *tty); |
| 88 | static int empeg_chars_in_buffer(struct tty_struct *tty); |
| 89 | static void empeg_throttle(struct tty_struct *tty); |
| 90 | static void empeg_unthrottle(struct tty_struct *tty); |
| 91 | static int empeg_startup(struct usb_serial *serial); |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 92 | static void empeg_init_termios(struct tty_struct *tty); |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 93 | static void empeg_write_bulk_callback(struct urb *urb); |
| 94 | static void empeg_read_bulk_callback(struct urb *urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | static struct usb_device_id id_table [] = { |
| 97 | { USB_DEVICE(EMPEG_VENDOR_ID, EMPEG_PRODUCT_ID) }, |
| 98 | { } /* Terminating entry */ |
| 99 | }; |
| 100 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 101 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
| 103 | static struct usb_driver empeg_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | .name = "empeg", |
| 105 | .probe = usb_serial_probe, |
| 106 | .disconnect = usb_serial_disconnect, |
| 107 | .id_table = id_table, |
Greg Kroah-Hartman | ba9dc65 | 2005-11-16 13:41:28 -0800 | [diff] [blame] | 108 | .no_dynamic_id = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | }; |
| 110 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 111 | static struct usb_serial_driver empeg_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 112 | .driver = { |
| 113 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 114 | .name = "empeg", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 115 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | .id_table = id_table, |
Johannes Hölzl | d9b1b78 | 2006-12-17 21:50:24 +0100 | [diff] [blame] | 117 | .usb_driver = &empeg_driver, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | .num_ports = 1, |
| 119 | .open = empeg_open, |
| 120 | .close = empeg_close, |
| 121 | .throttle = empeg_throttle, |
| 122 | .unthrottle = empeg_unthrottle, |
| 123 | .attach = empeg_startup, |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 124 | .init_termios = empeg_init_termios, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | .write = empeg_write, |
| 126 | .write_room = empeg_write_room, |
| 127 | .chars_in_buffer = empeg_chars_in_buffer, |
| 128 | .write_bulk_callback = empeg_write_bulk_callback, |
| 129 | .read_bulk_callback = empeg_read_bulk_callback, |
| 130 | }; |
| 131 | |
| 132 | #define NUM_URBS 16 |
| 133 | #define URB_TRANSFER_BUFFER_SIZE 4096 |
| 134 | |
| 135 | static struct urb *write_urb_pool[NUM_URBS]; |
| 136 | static spinlock_t write_urb_pool_lock; |
| 137 | static int bytes_in; |
| 138 | static int bytes_out; |
| 139 | |
| 140 | /****************************************************************************** |
| 141 | * Empeg specific driver functions |
| 142 | ******************************************************************************/ |
Alan Cox | a509a7e | 2009-09-19 13:13:26 -0700 | [diff] [blame] | 143 | static int empeg_open(struct tty_struct *tty,struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
| 145 | struct usb_serial *serial = port->serial; |
| 146 | int result = 0; |
| 147 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 148 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | bytes_in = 0; |
| 151 | bytes_out = 0; |
| 152 | |
| 153 | /* Start reading from the device */ |
| 154 | usb_fill_bulk_urb( |
| 155 | port->read_urb, |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 156 | serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | usb_rcvbulkpipe(serial->dev, |
| 158 | port->bulk_in_endpointAddress), |
| 159 | port->read_urb->transfer_buffer, |
| 160 | port->read_urb->transfer_buffer_length, |
| 161 | empeg_read_bulk_callback, |
| 162 | port); |
| 163 | |
| 164 | result = usb_submit_urb(port->read_urb, GFP_KERNEL); |
| 165 | |
| 166 | if (result) |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 167 | dev_err(&port->dev, |
| 168 | "%s - failed submitting read urb, error %d\n", |
| 169 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | return result; |
| 172 | } |
| 173 | |
| 174 | |
Alan Cox | 335f851 | 2009-06-11 12:26:29 +0100 | [diff] [blame] | 175 | static void empeg_close(struct usb_serial_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 177 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | /* shutdown our bulk read */ |
| 180 | usb_kill_urb(port->read_urb); |
| 181 | /* Uncomment the following line if you want to see some statistics in your syslog */ |
| 182 | /* dev_info (&port->dev, "Bytes In = %d Bytes Out = %d\n", bytes_in, bytes_out); */ |
| 183 | } |
| 184 | |
| 185 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 186 | static int empeg_write(struct tty_struct *tty, struct usb_serial_port *port, |
| 187 | const unsigned char *buf, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
| 189 | struct usb_serial *serial = port->serial; |
| 190 | struct urb *urb; |
| 191 | const unsigned char *current_position = buf; |
| 192 | unsigned long flags; |
| 193 | int status; |
| 194 | int i; |
| 195 | int bytes_sent = 0; |
| 196 | int transfer_size; |
| 197 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 198 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | while (count > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /* try to find a free urb in our list of them */ |
| 202 | urb = NULL; |
| 203 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 204 | spin_lock_irqsave(&write_urb_pool_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | for (i = 0; i < NUM_URBS; ++i) { |
| 207 | if (write_urb_pool[i]->status != -EINPROGRESS) { |
| 208 | urb = write_urb_pool[i]; |
| 209 | break; |
| 210 | } |
| 211 | } |
| 212 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 213 | spin_unlock_irqrestore(&write_urb_pool_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | if (urb == NULL) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 216 | dbg("%s - no more free urbs", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | goto exit; |
| 218 | } |
| 219 | |
| 220 | if (urb->transfer_buffer == NULL) { |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 221 | urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | if (urb->transfer_buffer == NULL) { |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 223 | dev_err(&port->dev, |
| 224 | "%s no more kernel memory...\n", |
| 225 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | goto exit; |
| 227 | } |
| 228 | } |
| 229 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 230 | transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 232 | memcpy(urb->transfer_buffer, current_position, transfer_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 234 | usb_serial_debug_data(debug, &port->dev, __func__, transfer_size, urb->transfer_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
| 236 | /* build up our urb */ |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 237 | usb_fill_bulk_urb( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | urb, |
| 239 | serial->dev, |
| 240 | usb_sndbulkpipe(serial->dev, |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 241 | port->bulk_out_endpointAddress), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | urb->transfer_buffer, |
| 243 | transfer_size, |
| 244 | empeg_write_bulk_callback, |
| 245 | port); |
| 246 | |
| 247 | /* send it down the pipe */ |
| 248 | status = usb_submit_urb(urb, GFP_ATOMIC); |
| 249 | if (status) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 250 | dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed with status = %d\n", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | bytes_sent = status; |
| 252 | break; |
| 253 | } |
| 254 | |
| 255 | current_position += transfer_size; |
| 256 | bytes_sent += transfer_size; |
| 257 | count -= transfer_size; |
| 258 | bytes_out += transfer_size; |
| 259 | |
| 260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | exit: |
| 262 | return bytes_sent; |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 263 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
| 265 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 266 | static int empeg_write_room(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 268 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | unsigned long flags; |
| 270 | int i; |
| 271 | int room = 0; |
| 272 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 273 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 275 | spin_lock_irqsave(&write_urb_pool_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* tally up the number of bytes available */ |
| 277 | for (i = 0; i < NUM_URBS; ++i) { |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 278 | if (write_urb_pool[i]->status != -EINPROGRESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | room += URB_TRANSFER_BUFFER_SIZE; |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 280 | } |
| 281 | spin_unlock_irqrestore(&write_urb_pool_lock, flags); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 282 | dbg("%s - returns %d", __func__, room); |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 283 | return room; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | } |
| 286 | |
| 287 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 288 | static int empeg_chars_in_buffer(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 290 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | unsigned long flags; |
| 292 | int i; |
| 293 | int chars = 0; |
| 294 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 295 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 297 | spin_lock_irqsave(&write_urb_pool_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | /* tally up the number of bytes waiting */ |
| 300 | for (i = 0; i < NUM_URBS; ++i) { |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 301 | if (write_urb_pool[i]->status == -EINPROGRESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | chars += URB_TRANSFER_BUFFER_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 305 | spin_unlock_irqrestore(&write_urb_pool_lock, flags); |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 306 | dbg("%s - returns %d", __func__, chars); |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 307 | return chars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 311 | static void empeg_write_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
Greg Kroah-Hartman | 335202f | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 313 | struct usb_serial_port *port = urb->context; |
| 314 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 316 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Greg Kroah-Hartman | 335202f | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 318 | if (status) { |
| 319 | dbg("%s - nonzero write bulk status received: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 320 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | return; |
| 322 | } |
| 323 | |
Pete Zaitcev | cf2c748 | 2006-05-22 21:58:49 -0700 | [diff] [blame] | 324 | usb_serial_port_softint(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 328 | static void empeg_read_bulk_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 330 | struct usb_serial_port *port = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | struct tty_struct *tty; |
| 332 | unsigned char *data = urb->transfer_buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | int result; |
Greg Kroah-Hartman | 335202f | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 334 | int status = urb->status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 336 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Greg Kroah-Hartman | 335202f | 2007-06-15 15:44:13 -0700 | [diff] [blame] | 338 | if (status) { |
| 339 | dbg("%s - nonzero read bulk status received: %d", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 340 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | return; |
| 342 | } |
| 343 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 344 | usb_serial_debug_data(debug, &port->dev, __func__, |
| 345 | urb->actual_length, data); |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 346 | tty = tty_port_tty_get(&port->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | if (urb->actual_length) { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 349 | tty_buffer_request_room(tty, urb->actual_length); |
| 350 | tty_insert_flip_string(tty, data, urb->actual_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | tty_flip_buffer_push(tty); |
| 352 | bytes_in += urb->actual_length; |
| 353 | } |
Alan Cox | 4a90f09 | 2008-10-13 10:39:46 +0100 | [diff] [blame] | 354 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | /* Continue trying to always read */ |
| 357 | usb_fill_bulk_urb( |
| 358 | port->read_urb, |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 359 | port->serial->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | usb_rcvbulkpipe(port->serial->dev, |
| 361 | port->bulk_in_endpointAddress), |
| 362 | port->read_urb->transfer_buffer, |
| 363 | port->read_urb->transfer_buffer_length, |
| 364 | empeg_read_bulk_callback, |
| 365 | port); |
| 366 | |
| 367 | result = usb_submit_urb(port->read_urb, GFP_ATOMIC); |
| 368 | |
| 369 | if (result) |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 370 | dev_err(&urb->dev->dev, |
| 371 | "%s - failed resubmitting read urb, error %d\n", |
| 372 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
| 374 | return; |
| 375 | |
| 376 | } |
| 377 | |
| 378 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 379 | static void empeg_throttle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 381 | struct usb_serial_port *port = tty->driver_data; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 382 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | usb_kill_urb(port->read_urb); |
| 384 | } |
| 385 | |
| 386 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 387 | static void empeg_unthrottle(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 389 | struct usb_serial_port *port = tty->driver_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | int result; |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 391 | dbg("%s - port %d", __func__, port->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | port->read_urb->dev = port->serial->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | result = usb_submit_urb(port->read_urb, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | if (result) |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 396 | dev_err(&port->dev, |
| 397 | "%s - failed submitting read urb, error %d\n", |
| 398 | __func__, result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 402 | static int empeg_startup(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | { |
| 404 | int r; |
| 405 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 406 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
| 408 | if (serial->dev->actconfig->desc.bConfigurationValue != 1) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 409 | dev_err(&serial->dev->dev, "active config #%d != 1 ??\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | serial->dev->actconfig->desc.bConfigurationValue); |
| 411 | return -ENODEV; |
| 412 | } |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 413 | dbg("%s - reset config", __func__); |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 414 | r = usb_reset_configuration(serial->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
| 416 | /* continue on with initialization */ |
| 417 | return r; |
| 418 | |
| 419 | } |
| 420 | |
| 421 | |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 422 | static void empeg_init_termios(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 424 | struct ktermios *termios = tty->termios; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | /* |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 427 | * The empeg-car player wants these particular tty settings. |
| 428 | * You could, for example, change the baud rate, however the |
| 429 | * player only supports 115200 (currently), so there is really |
| 430 | * no point in support for changes to the tty settings. |
| 431 | * (at least for now) |
| 432 | * |
| 433 | * The default requirements for this device are: |
| 434 | */ |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 435 | termios->c_iflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | &= ~(IGNBRK /* disable ignore break */ |
| 437 | | BRKINT /* disable break causes interrupt */ |
| 438 | | PARMRK /* disable mark parity errors */ |
| 439 | | ISTRIP /* disable clear high bit of input characters */ |
| 440 | | INLCR /* disable translate NL to CR */ |
| 441 | | IGNCR /* disable ignore CR */ |
| 442 | | ICRNL /* disable translate CR to NL */ |
| 443 | | IXON); /* disable enable XON/XOFF flow control */ |
| 444 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 445 | termios->c_oflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | &= ~OPOST; /* disable postprocess output characters */ |
| 447 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 448 | termios->c_lflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | &= ~(ECHO /* disable echo input characters */ |
| 450 | | ECHONL /* disable echo new line */ |
| 451 | | ICANON /* disable erase, kill, werase, and rprnt special characters */ |
| 452 | | ISIG /* disable interrupt, quit, and suspend special characters */ |
| 453 | | IEXTEN); /* disable non-POSIX special characters */ |
| 454 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 455 | termios->c_cflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | &= ~(CSIZE /* no size */ |
| 457 | | PARENB /* disable parity bit */ |
| 458 | | CBAUD); /* clear current baud rate */ |
| 459 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 460 | termios->c_cflag |
| 461 | |= CS8; /* character size 8 bits */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 463 | tty_encode_baud_rate(tty, 115200, 115200); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 467 | static int __init empeg_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { |
| 469 | struct urb *urb; |
| 470 | int i, retval; |
| 471 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 472 | /* create our write urb pool and transfer buffers */ |
| 473 | spin_lock_init(&write_urb_pool_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | for (i = 0; i < NUM_URBS; ++i) { |
| 475 | urb = usb_alloc_urb(0, GFP_KERNEL); |
| 476 | write_urb_pool[i] = urb; |
| 477 | if (urb == NULL) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 478 | printk(KERN_ERR "empeg: No more urbs???\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | continue; |
| 480 | } |
| 481 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 482 | urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE, |
| 483 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | if (!urb->transfer_buffer) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 485 | printk(KERN_ERR "empeg: %s - out of memory for urb " |
| 486 | "buffers.", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | continue; |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | retval = usb_serial_register(&empeg_device); |
| 492 | if (retval) |
| 493 | goto failed_usb_serial_register; |
| 494 | retval = usb_register(&empeg_driver); |
| 495 | if (retval) |
| 496 | goto failed_usb_register; |
| 497 | |
Greg Kroah-Hartman | c197a8d | 2008-08-18 13:21:04 -0700 | [diff] [blame] | 498 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" |
| 499 | DRIVER_DESC "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
| 501 | return 0; |
| 502 | failed_usb_register: |
| 503 | usb_serial_deregister(&empeg_device); |
| 504 | failed_usb_serial_register: |
| 505 | for (i = 0; i < NUM_URBS; ++i) { |
| 506 | if (write_urb_pool[i]) { |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 507 | kfree(write_urb_pool[i]->transfer_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | usb_free_urb(write_urb_pool[i]); |
| 509 | } |
| 510 | } |
| 511 | return retval; |
| 512 | } |
| 513 | |
| 514 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 515 | static void __exit empeg_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | { |
| 517 | int i; |
| 518 | unsigned long flags; |
| 519 | |
| 520 | usb_deregister(&empeg_driver); |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 521 | usb_serial_deregister(&empeg_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 523 | spin_lock_irqsave(&write_urb_pool_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | for (i = 0; i < NUM_URBS; ++i) { |
| 526 | if (write_urb_pool[i]) { |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 527 | /* FIXME - uncomment the following usb_kill_urb call |
| 528 | * when the host controllers get fixed to set urb->dev |
| 529 | * = NULL after the urb is finished. Otherwise this |
| 530 | * call oopses. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | /* usb_kill_urb(write_urb_pool[i]); */ |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 532 | kfree(write_urb_pool[i]->transfer_buffer); |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 533 | usb_free_urb(write_urb_pool[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | } |
| 535 | } |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 536 | spin_unlock_irqrestore(&write_urb_pool_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | |
| 540 | module_init(empeg_init); |
| 541 | module_exit(empeg_exit); |
| 542 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 543 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 544 | MODULE_DESCRIPTION(DRIVER_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | MODULE_LICENSE("GPL"); |
| 546 | |
| 547 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 548 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |