blob: da559a773b51fc6f8977b95961175cf38b536085 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Cox93c46792008-07-22 11:11:11 +010014 * See Documentation/usb/usb-serial.txt for more information on using this
15 * driver
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * (07/16/2001) gb
Alan Cox93c46792008-07-22 11:11:11 +010018 * remove unused code in empeg_close() (thanks to Oliver Neukum for
19 * pointing this out) and rewrote empeg_set_termios().
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * (05/30/2001) gkh
Alan Cox93c46792008-07-22 11:11:11 +010022 * switched from using spinlock to a semaphore, which fixes lots of
23 * problems.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 * (04/08/2001) gb
26 * Identify version on module load.
Alan Cox93c46792008-07-22 11:11:11 +010027 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * (01/22/2001) gb
Alan Cox93c46792008-07-22 11:11:11 +010029 * Added write_room() and chars_in_buffer() support.
30 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * (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 Cox93c46792008-07-22 11:11:11 +010034 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * (12/03/2000) gb
Alan Cox4a90f092008-10-13 10:39:46 +010036 * Added tty->ldisc.set_termios(port, tty, NULL) to empeg_open().
37 * This notifies the tty driver that the termios have changed.
Alan Cox93c46792008-07-22 11:11:11 +010038 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * (11/13/2000) gb
Alan Cox93c46792008-07-22 11:11:11 +010040 * Moved tty->low_latency = 1 from empeg_read_bulk_callback() to
41 * empeg_open() (It only needs to be set once - Doh!)
42 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * (11/11/2000) gb
44 * Updated to work with id_table structure.
Alan Cox93c46792008-07-22 11:11:11 +010045 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * (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 Cox93c46792008-07-22 11:11:11 +010053 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#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 Cox93c46792008-07-22 11:11:11 +010065#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070067#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69static 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 Coxa509a7e2009-09-19 13:13:26 -070082static int empeg_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010083static void empeg_close(struct usb_serial_port *port);
Alan Cox93c46792008-07-22 11:11:11 +010084static int empeg_write(struct tty_struct *tty, struct usb_serial_port *port,
85 const unsigned char *buf,
86 int count);
87static int empeg_write_room(struct tty_struct *tty);
88static int empeg_chars_in_buffer(struct tty_struct *tty);
89static void empeg_throttle(struct tty_struct *tty);
90static void empeg_unthrottle(struct tty_struct *tty);
91static int empeg_startup(struct usb_serial *serial);
Alan Cox93c46792008-07-22 11:11:11 +010092static void empeg_set_termios(struct tty_struct *tty,
93 struct usb_serial_port *port, struct ktermios *old_termios);
94static void empeg_write_bulk_callback(struct urb *urb);
95static void empeg_read_bulk_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97static struct usb_device_id id_table [] = {
98 { USB_DEVICE(EMPEG_VENDOR_ID, EMPEG_PRODUCT_ID) },
99 { } /* Terminating entry */
100};
101
Alan Cox93c46792008-07-22 11:11:11 +0100102MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104static struct usb_driver empeg_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .name = "empeg",
106 .probe = usb_serial_probe,
107 .disconnect = usb_serial_disconnect,
108 .id_table = id_table,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800109 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700112static struct usb_serial_driver empeg_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700113 .driver = {
114 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700115 .name = "empeg",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700116 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100118 .usb_driver = &empeg_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .num_ports = 1,
120 .open = empeg_open,
121 .close = empeg_close,
122 .throttle = empeg_throttle,
123 .unthrottle = empeg_unthrottle,
124 .attach = empeg_startup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .set_termios = empeg_set_termios,
126 .write = empeg_write,
127 .write_room = empeg_write_room,
128 .chars_in_buffer = empeg_chars_in_buffer,
129 .write_bulk_callback = empeg_write_bulk_callback,
130 .read_bulk_callback = empeg_read_bulk_callback,
131};
132
133#define NUM_URBS 16
134#define URB_TRANSFER_BUFFER_SIZE 4096
135
136static struct urb *write_urb_pool[NUM_URBS];
137static spinlock_t write_urb_pool_lock;
138static int bytes_in;
139static int bytes_out;
140
141/******************************************************************************
142 * Empeg specific driver functions
143 ******************************************************************************/
Alan Coxa509a7e2009-09-19 13:13:26 -0700144static int empeg_open(struct tty_struct *tty,struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct usb_serial *serial = port->serial;
147 int result = 0;
148
Harvey Harrison441b62c2008-03-03 16:08:34 -0800149 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 /* Force default termio settings */
Alan Coxa509a7e2009-09-19 13:13:26 -0700152 empeg_set_termios(tty, port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 bytes_in = 0;
155 bytes_out = 0;
156
157 /* Start reading from the device */
158 usb_fill_bulk_urb(
159 port->read_urb,
Alan Cox93c46792008-07-22 11:11:11 +0100160 serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 usb_rcvbulkpipe(serial->dev,
162 port->bulk_in_endpointAddress),
163 port->read_urb->transfer_buffer,
164 port->read_urb->transfer_buffer_length,
165 empeg_read_bulk_callback,
166 port);
167
168 result = usb_submit_urb(port->read_urb, GFP_KERNEL);
169
170 if (result)
Alan Cox93c46792008-07-22 11:11:11 +0100171 dev_err(&port->dev,
172 "%s - failed submitting read urb, error %d\n",
173 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 return result;
176}
177
178
Alan Cox335f8512009-06-11 12:26:29 +0100179static void empeg_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800181 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 /* shutdown our bulk read */
184 usb_kill_urb(port->read_urb);
185 /* Uncomment the following line if you want to see some statistics in your syslog */
186 /* dev_info (&port->dev, "Bytes In = %d Bytes Out = %d\n", bytes_in, bytes_out); */
187}
188
189
Alan Cox93c46792008-07-22 11:11:11 +0100190static int empeg_write(struct tty_struct *tty, struct usb_serial_port *port,
191 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct usb_serial *serial = port->serial;
194 struct urb *urb;
195 const unsigned char *current_position = buf;
196 unsigned long flags;
197 int status;
198 int i;
199 int bytes_sent = 0;
200 int transfer_size;
201
Harvey Harrison441b62c2008-03-03 16:08:34 -0800202 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 while (count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* try to find a free urb in our list of them */
206 urb = NULL;
207
Alan Cox93c46792008-07-22 11:11:11 +0100208 spin_lock_irqsave(&write_urb_pool_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 for (i = 0; i < NUM_URBS; ++i) {
211 if (write_urb_pool[i]->status != -EINPROGRESS) {
212 urb = write_urb_pool[i];
213 break;
214 }
215 }
216
Alan Cox93c46792008-07-22 11:11:11 +0100217 spin_unlock_irqrestore(&write_urb_pool_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 if (urb == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800220 dbg("%s - no more free urbs", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 goto exit;
222 }
223
224 if (urb->transfer_buffer == NULL) {
Alan Cox93c46792008-07-22 11:11:11 +0100225 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (urb->transfer_buffer == NULL) {
Alan Cox93c46792008-07-22 11:11:11 +0100227 dev_err(&port->dev,
228 "%s no more kernel memory...\n",
229 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 goto exit;
231 }
232 }
233
Alan Cox93c46792008-07-22 11:11:11 +0100234 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Alan Cox93c46792008-07-22 11:11:11 +0100236 memcpy(urb->transfer_buffer, current_position, transfer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Harvey Harrison441b62c2008-03-03 16:08:34 -0800238 usb_serial_debug_data(debug, &port->dev, __func__, transfer_size, urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* build up our urb */
Alan Cox93c46792008-07-22 11:11:11 +0100241 usb_fill_bulk_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 urb,
243 serial->dev,
244 usb_sndbulkpipe(serial->dev,
Alan Cox93c46792008-07-22 11:11:11 +0100245 port->bulk_out_endpointAddress),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 urb->transfer_buffer,
247 transfer_size,
248 empeg_write_bulk_callback,
249 port);
250
251 /* send it down the pipe */
252 status = usb_submit_urb(urb, GFP_ATOMIC);
253 if (status) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800254 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed with status = %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 bytes_sent = status;
256 break;
257 }
258
259 current_position += transfer_size;
260 bytes_sent += transfer_size;
261 count -= transfer_size;
262 bytes_out += transfer_size;
263
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265exit:
266 return bytes_sent;
Alan Cox93c46792008-07-22 11:11:11 +0100267}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269
Alan Cox95da3102008-07-22 11:09:07 +0100270static int empeg_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Alan Cox95da3102008-07-22 11:09:07 +0100272 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 unsigned long flags;
274 int i;
275 int room = 0;
276
Harvey Harrison441b62c2008-03-03 16:08:34 -0800277 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Alan Cox93c46792008-07-22 11:11:11 +0100279 spin_lock_irqsave(&write_urb_pool_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* tally up the number of bytes available */
281 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox93c46792008-07-22 11:11:11 +0100282 if (write_urb_pool[i]->status != -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 room += URB_TRANSFER_BUFFER_SIZE;
Alan Cox93c46792008-07-22 11:11:11 +0100284 }
285 spin_unlock_irqrestore(&write_urb_pool_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800286 dbg("%s - returns %d", __func__, room);
Alan Cox95da3102008-07-22 11:09:07 +0100287 return room;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289}
290
291
Alan Cox95da3102008-07-22 11:09:07 +0100292static int empeg_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Alan Cox95da3102008-07-22 11:09:07 +0100294 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 unsigned long flags;
296 int i;
297 int chars = 0;
298
Harvey Harrison441b62c2008-03-03 16:08:34 -0800299 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Alan Cox93c46792008-07-22 11:11:11 +0100301 spin_lock_irqsave(&write_urb_pool_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* tally up the number of bytes waiting */
304 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox93c46792008-07-22 11:11:11 +0100305 if (write_urb_pool[i]->status == -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 chars += URB_TRANSFER_BUFFER_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308
Alan Cox93c46792008-07-22 11:11:11 +0100309 spin_unlock_irqrestore(&write_urb_pool_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800310 dbg("%s - returns %d", __func__, chars);
Alan Cox93c46792008-07-22 11:11:11 +0100311 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314
Alan Cox93c46792008-07-22 11:11:11 +0100315static void empeg_write_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Greg Kroah-Hartman335202f2007-06-15 15:44:13 -0700317 struct usb_serial_port *port = urb->context;
318 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Harvey Harrison441b62c2008-03-03 16:08:34 -0800320 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Greg Kroah-Hartman335202f2007-06-15 15:44:13 -0700322 if (status) {
323 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800324 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return;
326 }
327
Pete Zaitcevcf2c7482006-05-22 21:58:49 -0700328 usb_serial_port_softint(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331
Alan Cox93c46792008-07-22 11:11:11 +0100332static void empeg_read_bulk_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Ming Leicdc97792008-02-24 18:41:47 +0800334 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 struct tty_struct *tty;
336 unsigned char *data = urb->transfer_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 int result;
Greg Kroah-Hartman335202f2007-06-15 15:44:13 -0700338 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Harvey Harrison441b62c2008-03-03 16:08:34 -0800340 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Greg Kroah-Hartman335202f2007-06-15 15:44:13 -0700342 if (status) {
343 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800344 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return;
346 }
347
Alan Cox93c46792008-07-22 11:11:11 +0100348 usb_serial_debug_data(debug, &port->dev, __func__,
349 urb->actual_length, data);
Alan Cox4a90f092008-10-13 10:39:46 +0100350 tty = tty_port_tty_get(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 if (urb->actual_length) {
Alan Cox33f0f882006-01-09 20:54:13 -0800353 tty_buffer_request_room(tty, urb->actual_length);
354 tty_insert_flip_string(tty, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 tty_flip_buffer_push(tty);
356 bytes_in += urb->actual_length;
357 }
Alan Cox4a90f092008-10-13 10:39:46 +0100358 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* Continue trying to always read */
361 usb_fill_bulk_urb(
362 port->read_urb,
Alan Cox93c46792008-07-22 11:11:11 +0100363 port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 usb_rcvbulkpipe(port->serial->dev,
365 port->bulk_in_endpointAddress),
366 port->read_urb->transfer_buffer,
367 port->read_urb->transfer_buffer_length,
368 empeg_read_bulk_callback,
369 port);
370
371 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
372
373 if (result)
Alan Cox93c46792008-07-22 11:11:11 +0100374 dev_err(&urb->dev->dev,
375 "%s - failed resubmitting read urb, error %d\n",
376 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 return;
379
380}
381
382
Alan Cox95da3102008-07-22 11:09:07 +0100383static void empeg_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Alan Cox95da3102008-07-22 11:09:07 +0100385 struct usb_serial_port *port = tty->driver_data;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800386 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 usb_kill_urb(port->read_urb);
388}
389
390
Alan Cox95da3102008-07-22 11:09:07 +0100391static void empeg_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Alan Cox95da3102008-07-22 11:09:07 +0100393 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 int result;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800395 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 port->read_urb->dev = port->serial->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (result)
Alan Cox93c46792008-07-22 11:11:11 +0100400 dev_err(&port->dev,
401 "%s - failed submitting read urb, error %d\n",
402 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405
Alan Cox93c46792008-07-22 11:11:11 +0100406static int empeg_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 int r;
409
Harvey Harrison441b62c2008-03-03 16:08:34 -0800410 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 if (serial->dev->actconfig->desc.bConfigurationValue != 1) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700413 dev_err(&serial->dev->dev, "active config #%d != 1 ??\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 serial->dev->actconfig->desc.bConfigurationValue);
415 return -ENODEV;
416 }
Harvey Harrison441b62c2008-03-03 16:08:34 -0800417 dbg("%s - reset config", __func__);
Alan Cox93c46792008-07-22 11:11:11 +0100418 r = usb_reset_configuration(serial->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /* continue on with initialization */
421 return r;
422
423}
424
425
Alan Cox95da3102008-07-22 11:09:07 +0100426static void empeg_set_termios(struct tty_struct *tty,
427 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Alan Cox95da3102008-07-22 11:09:07 +0100429 struct ktermios *termios = tty->termios;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800430 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /*
Alan Cox93c46792008-07-22 11:11:11 +0100433 * The empeg-car player wants these particular tty settings.
434 * You could, for example, change the baud rate, however the
435 * player only supports 115200 (currently), so there is really
436 * no point in support for changes to the tty settings.
437 * (at least for now)
438 *
439 * The default requirements for this device are:
440 */
Alan Cox998e8632007-10-18 01:24:19 -0700441 termios->c_iflag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 &= ~(IGNBRK /* disable ignore break */
443 | BRKINT /* disable break causes interrupt */
444 | PARMRK /* disable mark parity errors */
445 | ISTRIP /* disable clear high bit of input characters */
446 | INLCR /* disable translate NL to CR */
447 | IGNCR /* disable ignore CR */
448 | ICRNL /* disable translate CR to NL */
449 | IXON); /* disable enable XON/XOFF flow control */
450
Alan Cox998e8632007-10-18 01:24:19 -0700451 termios->c_oflag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 &= ~OPOST; /* disable postprocess output characters */
453
Alan Cox998e8632007-10-18 01:24:19 -0700454 termios->c_lflag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 &= ~(ECHO /* disable echo input characters */
456 | ECHONL /* disable echo new line */
457 | ICANON /* disable erase, kill, werase, and rprnt special characters */
458 | ISIG /* disable interrupt, quit, and suspend special characters */
459 | IEXTEN); /* disable non-POSIX special characters */
460
Alan Cox998e8632007-10-18 01:24:19 -0700461 termios->c_cflag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 &= ~(CSIZE /* no size */
463 | PARENB /* disable parity bit */
464 | CBAUD); /* clear current baud rate */
465
Alan Cox998e8632007-10-18 01:24:19 -0700466 termios->c_cflag
467 |= CS8; /* character size 8 bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Alan Cox95da3102008-07-22 11:09:07 +0100469 tty_encode_baud_rate(tty, 115200, 115200);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472
Alan Cox93c46792008-07-22 11:11:11 +0100473static int __init empeg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct urb *urb;
476 int i, retval;
477
Alan Cox93c46792008-07-22 11:11:11 +0100478 /* create our write urb pool and transfer buffers */
479 spin_lock_init(&write_urb_pool_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 for (i = 0; i < NUM_URBS; ++i) {
481 urb = usb_alloc_urb(0, GFP_KERNEL);
482 write_urb_pool[i] = urb;
483 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700484 printk(KERN_ERR "empeg: No more urbs???\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 continue;
486 }
487
Alan Cox93c46792008-07-22 11:11:11 +0100488 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
489 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!urb->transfer_buffer) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700491 printk(KERN_ERR "empeg: %s - out of memory for urb "
492 "buffers.", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 continue;
494 }
495 }
496
497 retval = usb_serial_register(&empeg_device);
498 if (retval)
499 goto failed_usb_serial_register;
500 retval = usb_register(&empeg_driver);
501 if (retval)
502 goto failed_usb_register;
503
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700504 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
505 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 return 0;
508failed_usb_register:
509 usb_serial_deregister(&empeg_device);
510failed_usb_serial_register:
511 for (i = 0; i < NUM_URBS; ++i) {
512 if (write_urb_pool[i]) {
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700513 kfree(write_urb_pool[i]->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 usb_free_urb(write_urb_pool[i]);
515 }
516 }
517 return retval;
518}
519
520
Alan Cox93c46792008-07-22 11:11:11 +0100521static void __exit empeg_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 int i;
524 unsigned long flags;
525
526 usb_deregister(&empeg_driver);
Alan Cox93c46792008-07-22 11:11:11 +0100527 usb_serial_deregister(&empeg_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Alan Cox93c46792008-07-22 11:11:11 +0100529 spin_lock_irqsave(&write_urb_pool_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 for (i = 0; i < NUM_URBS; ++i) {
532 if (write_urb_pool[i]) {
Alan Cox93c46792008-07-22 11:11:11 +0100533 /* FIXME - uncomment the following usb_kill_urb call
534 * when the host controllers get fixed to set urb->dev
535 * = NULL after the urb is finished. Otherwise this
536 * call oopses. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /* usb_kill_urb(write_urb_pool[i]); */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700538 kfree(write_urb_pool[i]->transfer_buffer);
Alan Cox93c46792008-07-22 11:11:11 +0100539 usb_free_urb(write_urb_pool[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541 }
Alan Cox93c46792008-07-22 11:11:11 +0100542 spin_unlock_irqrestore(&write_urb_pool_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545
546module_init(empeg_init);
547module_exit(empeg_exit);
548
Alan Cox93c46792008-07-22 11:11:11 +0100549MODULE_AUTHOR(DRIVER_AUTHOR);
550MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551MODULE_LICENSE("GPL");
552
553module_param(debug, bool, S_IRUGO | S_IWUSR);
554MODULE_PARM_DESC(debug, "Debug enabled or not");