blob: 0191693625d6541dbe5125df9b488be237828d77 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Edgeport USB Serial Converter driver
3 *
4 * Copyright (C) 2000 Inside Out Networks, All rights reserved.
5 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * Supports the following devices:
13 * Edgeport/4
14 * Edgeport/4t
15 * Edgeport/2
16 * Edgeport/4i
17 * Edgeport/2i
18 * Edgeport/421
19 * Edgeport/21
20 * Rapidport/4
21 * Edgeport/8
22 * Edgeport/2D8
23 * Edgeport/4D8
24 * Edgeport/8i
25 *
26 * For questions or problems with this driver, contact Inside Out
27 * Networks technical support, or Peter Berger <pberger@brimson.com>,
28 * or Al Borchers <alborchers@steinerpoint.com>.
29 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/kernel.h>
33#include <linux/jiffies.h>
34#include <linux/errno.h>
35#include <linux/init.h>
36#include <linux/slab.h>
37#include <linux/tty.h>
38#include <linux/tty_driver.h>
39#include <linux/tty_flip.h>
40#include <linux/module.h>
41#include <linux/spinlock.h>
42#include <linux/serial.h>
43#include <linux/ioctl.h>
44#include <linux/wait.h>
Jaswinder Singh5b9ea932008-07-03 17:00:23 +053045#include <linux/firmware.h>
46#include <linux/ihex.h>
Alan Cox03f0dbf2008-07-22 11:16:34 +010047#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070049#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include "io_edgeport.h"
51#include "io_ionsp.h" /* info for the iosp messages */
52#include "io_16654.h" /* 16654 UART defines */
53
54/*
55 * Version Information
56 */
57#define DRIVER_VERSION "v2.7"
58#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com> and David Iacovelli"
59#define DRIVER_DESC "Edgeport USB Serial Driver"
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define MAX_NAME_LEN 64
62
63#define CHASE_TIMEOUT (5*HZ) /* 5 seconds */
64#define OPEN_TIMEOUT (5*HZ) /* 5 seconds */
65#define COMMAND_TIMEOUT (5*HZ) /* 5 seconds */
66
67/* receive port state */
68enum RXSTATE {
Alan Cox03f0dbf2008-07-22 11:16:34 +010069 EXPECT_HDR1 = 0, /* Expect header byte 1 */
70 EXPECT_HDR2 = 1, /* Expect header byte 2 */
71 EXPECT_DATA = 2, /* Expect 'RxBytesRemaining' data */
72 EXPECT_HDR3 = 3, /* Expect header byte 3 (for status hdrs only) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75
Alan Cox03f0dbf2008-07-22 11:16:34 +010076/* Transmit Fifo
77 * This Transmit queue is an extension of the edgeport Rx buffer.
78 * The maximum amount of data buffered in both the edgeport
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * Rx buffer (maxTxCredits) and this buffer will never exceed maxTxCredits.
80 */
81struct TxFifo {
82 unsigned int head; /* index to head pointer (write) */
83 unsigned int tail; /* index to tail pointer (read) */
84 unsigned int count; /* Bytes in queue */
85 unsigned int size; /* Max size of queue (equal to Max number of TxCredits) */
86 unsigned char *fifo; /* allocated Buffer */
87};
88
89/* This structure holds all of the local port information */
90struct edgeport_port {
91 __u16 txCredits; /* our current credits for this port */
92 __u16 maxTxCredits; /* the max size of the port */
93
94 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */
95 struct urb *write_urb; /* write URB for this port */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +010096 bool write_in_progress; /* 'true' while a write URB is outstanding */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 spinlock_t ep_lock;
98
99 __u8 shadowLCR; /* last LCR value received */
100 __u8 shadowMCR; /* last MCR value received */
101 __u8 shadowMSR; /* last MSR value received */
102 __u8 shadowLSR; /* last LSR value received */
103 __u8 shadowXonChar; /* last value set as XON char in Edgeport */
104 __u8 shadowXoffChar; /* last value set as XOFF char in Edgeport */
105 __u8 validDataMask;
106 __u32 baudRate;
107
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100108 bool open;
109 bool openPending;
110 bool commandPending;
111 bool closePending;
112 bool chaseResponsePending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
115 wait_queue_head_t wait_open; /* for handling sleeping while waiting for open to finish */
116 wait_queue_head_t wait_command; /* for handling sleeping while waiting for command to finish */
117 wait_queue_head_t delta_msr_wait; /* for handling sleeping while waiting for msr change to happen */
118
119 struct async_icount icount;
120 struct usb_serial_port *port; /* loop back to the owner of this object */
121};
122
123
124/* This structure holds all of the individual device information */
125struct edgeport_serial {
Pete Zaitcevad933752006-05-22 21:49:44 -0700126 char name[MAX_NAME_LEN+2]; /* string name of this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 struct edge_manuf_descriptor manuf_descriptor; /* the manufacturer descriptor */
129 struct edge_boot_descriptor boot_descriptor; /* the boot firmware descriptor */
130 struct edgeport_product_info product_info; /* Product Info */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800131 struct edge_compatibility_descriptor epic_descriptor; /* Edgeport compatible descriptor */
132 int is_epic; /* flag if EPiC device or not */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 __u8 interrupt_in_endpoint; /* the interrupt endpoint handle */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100135 unsigned char *interrupt_in_buffer; /* the buffer we use for the interrupt endpoint */
136 struct urb *interrupt_read_urb; /* our interrupt urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 __u8 bulk_in_endpoint; /* the bulk in endpoint handle */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100139 unsigned char *bulk_in_buffer; /* the buffer we use for the bulk in endpoint */
140 struct urb *read_urb; /* our bulk read urb */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100141 bool read_in_progress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 spinlock_t es_lock;
143
144 __u8 bulk_out_endpoint; /* the bulk out endpoint handle */
145
146 __s16 rxBytesAvail; /* the number of bytes that we need to read from this device */
147
148 enum RXSTATE rxState; /* the current state of the bulk receive processor */
149 __u8 rxHeader1; /* receive header byte 1 */
150 __u8 rxHeader2; /* receive header byte 2 */
151 __u8 rxHeader3; /* receive header byte 3 */
152 __u8 rxPort; /* the port that we are currently receiving data for */
153 __u8 rxStatusCode; /* the receive status code */
154 __u8 rxStatusParam; /* the receive status paramater */
155 __s16 rxBytesRemaining; /* the number of port bytes left to read */
156 struct usb_serial *serial; /* loop back to the owner of this object */
157};
158
159/* baud rate information */
160struct divisor_table_entry {
161 __u32 BaudRate;
162 __u16 Divisor;
163};
164
Alan Cox03f0dbf2008-07-22 11:16:34 +0100165/*
166 * Define table of divisors for Rev A EdgePort/4 hardware
167 * These assume a 3.6864MHz crystal, the standard /16, and
168 * MCR.7 = 0.
169 */
170
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100171static const struct divisor_table_entry divisor_table[] = {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100172 { 50, 4608},
173 { 75, 3072},
174 { 110, 2095}, /* 2094.545455 => 230450 => .0217 % over */
175 { 134, 1713}, /* 1713.011152 => 230398.5 => .00065% under */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 { 150, 1536},
177 { 300, 768},
178 { 600, 384},
179 { 1200, 192},
180 { 1800, 128},
181 { 2400, 96},
182 { 4800, 48},
183 { 7200, 32},
184 { 9600, 24},
185 { 14400, 16},
186 { 19200, 12},
187 { 38400, 6},
188 { 57600, 4},
189 { 115200, 2},
190 { 230400, 1},
191};
192
193/* local variables */
194static int debug;
195
Alan Cox03f0dbf2008-07-22 11:16:34 +0100196static atomic_t CmdUrbs; /* Number of outstanding Command Write Urbs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198
199/* local function prototypes */
200
201/* function prototypes for all URB callbacks */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100202static void edge_interrupt_callback(struct urb *urb);
203static void edge_bulk_in_callback(struct urb *urb);
204static void edge_bulk_out_data_callback(struct urb *urb);
205static void edge_bulk_out_cmd_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/* function prototypes for the usbserial callbacks */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100208static int edge_open(struct tty_struct *tty, struct usb_serial_port *port,
209 struct file *filp);
Alan Cox335f8512009-06-11 12:26:29 +0100210static void edge_close(struct usb_serial_port *port);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100211static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
212 const unsigned char *buf, int count);
213static int edge_write_room(struct tty_struct *tty);
214static int edge_chars_in_buffer(struct tty_struct *tty);
215static void edge_throttle(struct tty_struct *tty);
216static void edge_unthrottle(struct tty_struct *tty);
217static void edge_set_termios(struct tty_struct *tty,
218 struct usb_serial_port *port,
219 struct ktermios *old_termios);
220static int edge_ioctl(struct tty_struct *tty, struct file *file,
221 unsigned int cmd, unsigned long arg);
222static void edge_break(struct tty_struct *tty, int break_state);
223static int edge_tiocmget(struct tty_struct *tty, struct file *file);
224static int edge_tiocmset(struct tty_struct *tty, struct file *file,
225 unsigned int set, unsigned int clear);
226static int edge_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400227static void edge_disconnect(struct usb_serial *serial);
228static void edge_release(struct usb_serial *serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230#include "io_tables.h" /* all of the devices that this driver supports */
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/* function prototypes for all of our local functions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Alan Cox03f0dbf2008-07-22 11:16:34 +0100234static void process_rcvd_data(struct edgeport_serial *edge_serial,
235 unsigned char *buffer, __u16 bufferLength);
236static void process_rcvd_status(struct edgeport_serial *edge_serial,
237 __u8 byte2, __u8 byte3);
238static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
239 unsigned char *data, int length);
240static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr);
241static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
242 __u8 lsr, __u8 data);
243static int send_iosp_ext_cmd(struct edgeport_port *edge_port, __u8 command,
244 __u8 param);
245static int calc_baud_rate_divisor(int baud_rate, int *divisor);
246static int send_cmd_write_baud_rate(struct edgeport_port *edge_port,
247 int baudRate);
248static void change_port_settings(struct tty_struct *tty,
249 struct edgeport_port *edge_port,
250 struct ktermios *old_termios);
251static int send_cmd_write_uart_register(struct edgeport_port *edge_port,
252 __u8 regNum, __u8 regValue);
253static int write_cmd_usb(struct edgeport_port *edge_port,
254 unsigned char *buffer, int writeLength);
255static void send_more_port_data(struct edgeport_serial *edge_serial,
256 struct edgeport_port *edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Alan Cox03f0dbf2008-07-22 11:16:34 +0100258static int sram_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
259 __u16 length, const __u8 *data);
260static int rom_read(struct usb_serial *serial, __u16 extAddr, __u16 addr,
261 __u16 length, __u8 *data);
262static int rom_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
263 __u16 length, const __u8 *data);
264static void get_manufacturing_desc(struct edgeport_serial *edge_serial);
265static void get_boot_desc(struct edgeport_serial *edge_serial);
266static void load_application_firmware(struct edgeport_serial *edge_serial);
267
268static void unicode_to_ascii(char *string, int buflen,
269 __le16 *unicode, int unicode_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271
Alan Cox03f0dbf2008-07-22 11:16:34 +0100272/* ************************************************************************ */
273/* ************************************************************************ */
274/* ************************************************************************ */
275/* ************************************************************************ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277/************************************************************************
278 * *
279 * update_edgeport_E2PROM() Compare current versions of *
280 * Boot ROM and Manufacture *
281 * Descriptors with versions *
282 * embedded in this driver *
283 * *
284 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100285static void update_edgeport_E2PROM(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 __u32 BootCurVer;
288 __u32 BootNewVer;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530289 __u8 BootMajorVersion;
290 __u8 BootMinorVersion;
291 __u16 BootBuildNumber;
292 __u32 Bootaddr;
293 const struct ihex_binrec *rec;
294 const struct firmware *fw;
295 const char *fw_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 int response;
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 switch (edge_serial->product_info.iDownloadFile) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100299 case EDGE_DOWNLOAD_FILE_I930:
300 fw_name = "edgeport/boot.fw";
301 break;
302 case EDGE_DOWNLOAD_FILE_80251:
303 fw_name = "edgeport/boot2.fw";
304 break;
305 default:
306 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530309 response = request_ihex_firmware(&fw, fw_name,
310 &edge_serial->serial->dev->dev);
311 if (response) {
312 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
313 fw_name, response);
314 return;
315 }
316
317 rec = (const struct ihex_binrec *)fw->data;
318 BootMajorVersion = rec->data[0];
319 BootMinorVersion = rec->data[1];
320 BootBuildNumber = (rec->data[2] << 8) | rec->data[3];
321
Alan Cox03f0dbf2008-07-22 11:16:34 +0100322 /* Check Boot Image Version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 BootCurVer = (edge_serial->boot_descriptor.MajorVersion << 24) +
324 (edge_serial->boot_descriptor.MinorVersion << 16) +
325 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber);
326
327 BootNewVer = (BootMajorVersion << 24) +
328 (BootMinorVersion << 16) +
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530329 BootBuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 dbg("Current Boot Image version %d.%d.%d",
332 edge_serial->boot_descriptor.MajorVersion,
333 edge_serial->boot_descriptor.MinorVersion,
334 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber));
335
336
337 if (BootNewVer > BootCurVer) {
338 dbg("**Update Boot Image from %d.%d.%d to %d.%d.%d",
339 edge_serial->boot_descriptor.MajorVersion,
340 edge_serial->boot_descriptor.MinorVersion,
341 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber),
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530342 BootMajorVersion, BootMinorVersion, BootBuildNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 dbg("Downloading new Boot Image");
345
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530346 for (rec = ihex_next_binrec(rec); rec;
347 rec = ihex_next_binrec(rec)) {
348 Bootaddr = be32_to_cpu(rec->addr);
349 response = rom_write(edge_serial->serial,
350 Bootaddr >> 16,
351 Bootaddr & 0xFFFF,
352 be16_to_cpu(rec->len),
353 &rec->data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (response < 0) {
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530355 dev_err(&edge_serial->serial->dev->dev,
356 "rom_write failed (%x, %x, %d)\n",
357 Bootaddr >> 16, Bootaddr & 0xFFFF,
358 be16_to_cpu(rec->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 }
361 }
362 } else {
363 dbg("Boot Image -- already up to date");
364 }
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530365 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368
369/************************************************************************
370 * *
371 * Get string descriptor from device *
372 * *
373 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100374static int get_string(struct usb_device *dev, int Id, char *string, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct usb_string_descriptor StringDesc;
377 struct usb_string_descriptor *pStringDesc;
378
Alan Cox03f0dbf2008-07-22 11:16:34 +0100379 dbg("%s - USB String ID = %d", __func__, Id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Alan Cox03f0dbf2008-07-22 11:16:34 +0100381 if (!usb_get_descriptor(dev, USB_DT_STRING, Id,
382 &StringDesc, sizeof(StringDesc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Alan Cox03f0dbf2008-07-22 11:16:34 +0100385 pStringDesc = kmalloc(StringDesc.bLength, GFP_KERNEL);
386 if (!pStringDesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Alan Cox03f0dbf2008-07-22 11:16:34 +0100389 if (!usb_get_descriptor(dev, USB_DT_STRING, Id,
390 pStringDesc, StringDesc.bLength)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 kfree(pStringDesc);
392 return 0;
393 }
394
Alan Cox03f0dbf2008-07-22 11:16:34 +0100395 unicode_to_ascii(string, buflen,
396 pStringDesc->wData, pStringDesc->bLength/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 kfree(pStringDesc);
Harvey Harrison441b62c2008-03-03 16:08:34 -0800399 dbg("%s - USB String %s", __func__, string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return strlen(string);
401}
402
403
404#if 0
405/************************************************************************
406 *
407 * Get string descriptor from device
408 *
409 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100410static int get_string_desc(struct usb_device *dev, int Id,
411 struct usb_string_descriptor **pRetDesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 struct usb_string_descriptor StringDesc;
414 struct usb_string_descriptor *pStringDesc;
415
Alan Cox03f0dbf2008-07-22 11:16:34 +0100416 dbg("%s - USB String ID = %d", __func__, Id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Alan Cox03f0dbf2008-07-22 11:16:34 +0100418 if (!usb_get_descriptor(dev, USB_DT_STRING, Id, &StringDesc,
419 sizeof(StringDesc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Alan Cox03f0dbf2008-07-22 11:16:34 +0100422 pStringDesc = kmalloc(StringDesc.bLength, GFP_KERNEL);
423 if (!pStringDesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Alan Cox03f0dbf2008-07-22 11:16:34 +0100426 if (!usb_get_descriptor(dev, USB_DT_STRING, Id, pStringDesc,
427 StringDesc.bLength)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 kfree(pStringDesc);
429 return -1;
430 }
431
432 *pRetDesc = pStringDesc;
433 return 0;
434}
435#endif
436
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800437static void dump_product_info(struct edgeport_product_info *product_info)
438{
Alan Cox03f0dbf2008-07-22 11:16:34 +0100439 /* Dump Product Info structure */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800440 dbg("**Product Information:");
Alan Cox03f0dbf2008-07-22 11:16:34 +0100441 dbg(" ProductId %x", product_info->ProductId);
442 dbg(" NumPorts %d", product_info->NumPorts);
443 dbg(" ProdInfoVer %d", product_info->ProdInfoVer);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800444 dbg(" IsServer %d", product_info->IsServer);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100445 dbg(" IsRS232 %d", product_info->IsRS232);
446 dbg(" IsRS422 %d", product_info->IsRS422);
447 dbg(" IsRS485 %d", product_info->IsRS485);
448 dbg(" RomSize %d", product_info->RomSize);
449 dbg(" RamSize %d", product_info->RamSize);
450 dbg(" CpuRev %x", product_info->CpuRev);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800451 dbg(" BoardRev %x", product_info->BoardRev);
452 dbg(" BootMajorVersion %d.%d.%d", product_info->BootMajorVersion,
453 product_info->BootMinorVersion,
454 le16_to_cpu(product_info->BootBuildNumber));
Alan Cox03f0dbf2008-07-22 11:16:34 +0100455 dbg(" FirmwareMajorVersion %d.%d.%d",
456 product_info->FirmwareMajorVersion,
457 product_info->FirmwareMinorVersion,
458 le16_to_cpu(product_info->FirmwareBuildNumber));
459 dbg(" ManufactureDescDate %d/%d/%d",
460 product_info->ManufactureDescDate[0],
461 product_info->ManufactureDescDate[1],
462 product_info->ManufactureDescDate[2]+1900);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800463 dbg(" iDownloadFile 0x%x", product_info->iDownloadFile);
464 dbg(" EpicVer %d", product_info->EpicVer);
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static void get_product_info(struct edgeport_serial *edge_serial)
468{
469 struct edgeport_product_info *product_info = &edge_serial->product_info;
470
Alan Cox03f0dbf2008-07-22 11:16:34 +0100471 memset(product_info, 0, sizeof(struct edgeport_product_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Alan Cox03f0dbf2008-07-22 11:16:34 +0100473 product_info->ProductId = (__u16)(le16_to_cpu(edge_serial->serial->dev->descriptor.idProduct) & ~ION_DEVICE_ID_80251_NETCHIP);
474 product_info->NumPorts = edge_serial->manuf_descriptor.NumPorts;
475 product_info->ProdInfoVer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Alan Cox03f0dbf2008-07-22 11:16:34 +0100477 product_info->RomSize = edge_serial->manuf_descriptor.RomSize;
478 product_info->RamSize = edge_serial->manuf_descriptor.RamSize;
479 product_info->CpuRev = edge_serial->manuf_descriptor.CpuRev;
480 product_info->BoardRev = edge_serial->manuf_descriptor.BoardRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Alan Cox03f0dbf2008-07-22 11:16:34 +0100482 product_info->BootMajorVersion =
483 edge_serial->boot_descriptor.MajorVersion;
484 product_info->BootMinorVersion =
485 edge_serial->boot_descriptor.MinorVersion;
486 product_info->BootBuildNumber =
487 edge_serial->boot_descriptor.BuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Alan Cox03f0dbf2008-07-22 11:16:34 +0100489 memcpy(product_info->ManufactureDescDate,
490 edge_serial->manuf_descriptor.DescDate,
491 sizeof(edge_serial->manuf_descriptor.DescDate));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Alan Cox03f0dbf2008-07-22 11:16:34 +0100493 /* check if this is 2nd generation hardware */
494 if (le16_to_cpu(edge_serial->serial->dev->descriptor.idProduct)
495 & ION_DEVICE_ID_80251_NETCHIP)
496 product_info->iDownloadFile = EDGE_DOWNLOAD_FILE_80251;
497 else
498 product_info->iDownloadFile = EDGE_DOWNLOAD_FILE_I930;
499
500 /* Determine Product type and set appropriate flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 switch (DEVICE_ID_FROM_USB_PRODUCT_ID(product_info->ProductId)) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100502 case ION_DEVICE_ID_EDGEPORT_COMPATIBLE:
503 case ION_DEVICE_ID_EDGEPORT_4T:
504 case ION_DEVICE_ID_EDGEPORT_4:
505 case ION_DEVICE_ID_EDGEPORT_2:
506 case ION_DEVICE_ID_EDGEPORT_8_DUAL_CPU:
507 case ION_DEVICE_ID_EDGEPORT_8:
508 case ION_DEVICE_ID_EDGEPORT_421:
509 case ION_DEVICE_ID_EDGEPORT_21:
510 case ION_DEVICE_ID_EDGEPORT_2_DIN:
511 case ION_DEVICE_ID_EDGEPORT_4_DIN:
512 case ION_DEVICE_ID_EDGEPORT_16_DUAL_CPU:
513 product_info->IsRS232 = 1;
514 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Alan Cox03f0dbf2008-07-22 11:16:34 +0100516 case ION_DEVICE_ID_EDGEPORT_2I: /* Edgeport/2 RS422/RS485 */
517 product_info->IsRS422 = 1;
518 product_info->IsRS485 = 1;
519 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Alan Cox03f0dbf2008-07-22 11:16:34 +0100521 case ION_DEVICE_ID_EDGEPORT_8I: /* Edgeport/4 RS422 */
522 case ION_DEVICE_ID_EDGEPORT_4I: /* Edgeport/4 RS422 */
523 product_info->IsRS422 = 1;
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800527 dump_product_info(product_info);
528}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800530static int get_epic_descriptor(struct edgeport_serial *ep)
531{
532 int result;
533 struct usb_serial *serial = ep->serial;
534 struct edgeport_product_info *product_info = &ep->product_info;
535 struct edge_compatibility_descriptor *epic = &ep->epic_descriptor;
536 struct edge_compatibility_bits *bits;
537
538 ep->is_epic = 0;
539 result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
540 USB_REQUEST_ION_GET_EPIC_DESC,
541 0xC0, 0x00, 0x00,
542 &ep->epic_descriptor,
543 sizeof(struct edge_compatibility_descriptor),
544 300);
545
Harvey Harrison441b62c2008-03-03 16:08:34 -0800546 dbg("%s result = %d", __func__, result);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800547
548 if (result > 0) {
549 ep->is_epic = 1;
550 memset(product_info, 0, sizeof(struct edgeport_product_info));
551
Alan Cox03f0dbf2008-07-22 11:16:34 +0100552 product_info->NumPorts = epic->NumPorts;
553 product_info->ProdInfoVer = 0;
554 product_info->FirmwareMajorVersion = epic->MajorVersion;
555 product_info->FirmwareMinorVersion = epic->MinorVersion;
556 product_info->FirmwareBuildNumber = epic->BuildNumber;
557 product_info->iDownloadFile = epic->iDownloadFile;
558 product_info->EpicVer = epic->EpicVer;
559 product_info->Epic = epic->Supports;
560 product_info->ProductId = ION_DEVICE_ID_EDGEPORT_COMPATIBLE;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800561 dump_product_info(product_info);
562
563 bits = &ep->epic_descriptor.Supports;
564 dbg("**EPIC descriptor:");
565 dbg(" VendEnableSuspend: %s", bits->VendEnableSuspend ? "TRUE": "FALSE");
Alan Cox03f0dbf2008-07-22 11:16:34 +0100566 dbg(" IOSPOpen : %s", bits->IOSPOpen ? "TRUE": "FALSE");
567 dbg(" IOSPClose : %s", bits->IOSPClose ? "TRUE": "FALSE");
568 dbg(" IOSPChase : %s", bits->IOSPChase ? "TRUE": "FALSE");
569 dbg(" IOSPSetRxFlow : %s", bits->IOSPSetRxFlow ? "TRUE": "FALSE");
570 dbg(" IOSPSetTxFlow : %s", bits->IOSPSetTxFlow ? "TRUE": "FALSE");
571 dbg(" IOSPSetXChar : %s", bits->IOSPSetXChar ? "TRUE": "FALSE");
572 dbg(" IOSPRxCheck : %s", bits->IOSPRxCheck ? "TRUE": "FALSE");
573 dbg(" IOSPSetClrBreak : %s", bits->IOSPSetClrBreak ? "TRUE": "FALSE");
574 dbg(" IOSPWriteMCR : %s", bits->IOSPWriteMCR ? "TRUE": "FALSE");
575 dbg(" IOSPWriteLCR : %s", bits->IOSPWriteLCR ? "TRUE": "FALSE");
576 dbg(" IOSPSetBaudRate : %s", bits->IOSPSetBaudRate ? "TRUE": "FALSE");
577 dbg(" TrueEdgeport : %s", bits->TrueEdgeport ? "TRUE": "FALSE");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800578 }
579
580 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
583
584/************************************************************************/
585/************************************************************************/
586/* U S B C A L L B A C K F U N C T I O N S */
587/* U S B C A L L B A C K F U N C T I O N S */
588/************************************************************************/
589/************************************************************************/
590
591/*****************************************************************************
592 * edge_interrupt_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100593 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * interrupt endpoint.
595 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100596static void edge_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Ming Leicdc97792008-02-24 18:41:47 +0800598 struct edgeport_serial *edge_serial = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct edgeport_port *edge_port;
600 struct usb_serial_port *port;
Alan Cox4a90f092008-10-13 10:39:46 +0100601 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 unsigned char *data = urb->transfer_buffer;
603 int length = urb->actual_length;
604 int bytes_avail;
605 int position;
606 int txCredits;
607 int portNumber;
608 int result;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700609 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Harvey Harrison441b62c2008-03-03 16:08:34 -0800611 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700613 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 case 0:
615 /* success */
616 break;
617 case -ECONNRESET:
618 case -ENOENT:
619 case -ESHUTDOWN:
620 /* this urb is terminated, clean up */
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700621 dbg("%s - urb shutting down with status: %d",
Alan Cox03f0dbf2008-07-22 11:16:34 +0100622 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return;
624 default:
Alan Cox03f0dbf2008-07-22 11:16:34 +0100625 dbg("%s - nonzero urb status received: %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto exit;
627 }
628
Alan Cox03f0dbf2008-07-22 11:16:34 +0100629 /* process this interrupt-read even if there are no ports open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (length) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100631 usb_serial_debug_data(debug, &edge_serial->serial->dev->dev,
632 __func__, length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 if (length > 1) {
635 bytes_avail = data[0] | (data[1] << 8);
636 if (bytes_avail) {
637 spin_lock(&edge_serial->es_lock);
638 edge_serial->rxBytesAvail += bytes_avail;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800639 dbg("%s - bytes_avail=%d, rxBytesAvail=%d, read_in_progress=%d", __func__, bytes_avail, edge_serial->rxBytesAvail, edge_serial->read_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 if (edge_serial->rxBytesAvail > 0 &&
642 !edge_serial->read_in_progress) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800643 dbg("%s - posting a read", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100644 edge_serial->read_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Alan Cox03f0dbf2008-07-22 11:16:34 +0100646 /* we have pending bytes on the
647 bulk in pipe, send a request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 edge_serial->read_urb->dev = edge_serial->serial->dev;
649 result = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
650 if (result) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800651 dev_err(&edge_serial->serial->dev->dev, "%s - usb_submit_urb(read bulk) failed with result = %d\n", __func__, result);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100652 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654 }
655 spin_unlock(&edge_serial->es_lock);
656 }
657 }
658 /* grab the txcredits for the ports if available */
659 position = 2;
660 portNumber = 0;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100661 while ((position < length) &&
662 (portNumber < edge_serial->serial->num_ports)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 txCredits = data[position] | (data[position+1] << 8);
664 if (txCredits) {
665 port = edge_serial->serial->port[portNumber];
666 edge_port = usb_get_serial_port_data(port);
667 if (edge_port->open) {
668 spin_lock(&edge_port->ep_lock);
669 edge_port->txCredits += txCredits;
670 spin_unlock(&edge_port->ep_lock);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100671 dbg("%s - txcredits for port%d = %d",
672 __func__, portNumber,
673 edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Alan Cox03f0dbf2008-07-22 11:16:34 +0100675 /* tell the tty driver that something
676 has changed */
Alan Cox4a90f092008-10-13 10:39:46 +0100677 tty = tty_port_tty_get(
678 &edge_port->port->port);
679 if (tty) {
680 tty_wakeup(tty);
681 tty_kref_put(tty);
682 }
Alan Cox03f0dbf2008-07-22 11:16:34 +0100683 /* Since we have more credit, check
684 if more data can be sent */
685 send_more_port_data(edge_serial,
686 edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688 }
689 position += 2;
690 ++portNumber;
691 }
692 }
693
694exit:
Alan Cox03f0dbf2008-07-22 11:16:34 +0100695 result = usb_submit_urb(urb, GFP_ATOMIC);
696 if (result)
697 dev_err(&urb->dev->dev,
698 "%s - Error %d submitting control urb\n",
699 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702
703/*****************************************************************************
704 * edge_bulk_in_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100705 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * bulk in endpoint.
707 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100708static void edge_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Ming Leicdc97792008-02-24 18:41:47 +0800710 struct edgeport_serial *edge_serial = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700712 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 __u16 raw_data_length;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700714 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Harvey Harrison441b62c2008-03-03 16:08:34 -0800716 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700718 if (status) {
719 dbg("%s - nonzero read bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800720 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100721 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return;
723 }
724
725 if (urb->actual_length == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800726 dbg("%s - read bulk callback with no data", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100727 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return;
729 }
730
731 raw_data_length = urb->actual_length;
732
Alan Cox03f0dbf2008-07-22 11:16:34 +0100733 usb_serial_debug_data(debug, &edge_serial->serial->dev->dev,
734 __func__, raw_data_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 spin_lock(&edge_serial->es_lock);
737
738 /* decrement our rxBytes available by the number that we just got */
739 edge_serial->rxBytesAvail -= raw_data_length;
740
Alan Cox03f0dbf2008-07-22 11:16:34 +0100741 dbg("%s - Received = %d, rxBytesAvail %d", __func__,
742 raw_data_length, edge_serial->rxBytesAvail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Alan Cox03f0dbf2008-07-22 11:16:34 +0100744 process_rcvd_data(edge_serial, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* check to see if there's any more data for us to read */
747 if (edge_serial->rxBytesAvail > 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800748 dbg("%s - posting a read", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 edge_serial->read_urb->dev = edge_serial->serial->dev;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700750 retval = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
751 if (retval) {
752 dev_err(&urb->dev->dev,
753 "%s - usb_submit_urb(read bulk) failed, "
Harvey Harrison441b62c2008-03-03 16:08:34 -0800754 "retval = %d\n", __func__, retval);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100755 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100758 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760
761 spin_unlock(&edge_serial->es_lock);
762}
763
764
765/*****************************************************************************
766 * edge_bulk_out_data_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100767 * this is the callback function for when we have finished sending
768 * serial data on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100770static void edge_bulk_out_data_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Ming Leicdc97792008-02-24 18:41:47 +0800772 struct edgeport_port *edge_port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct tty_struct *tty;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700774 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Harvey Harrison441b62c2008-03-03 16:08:34 -0800776 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700778 if (status) {
779 dbg("%s - nonzero write bulk status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800780 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
Alan Cox4a90f092008-10-13 10:39:46 +0100783 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 if (tty && edge_port->open) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100786 /* let the tty driver wakeup if it has a special
787 write_wakeup function */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 tty_wakeup(tty);
789 }
Alan Cox4a90f092008-10-13 10:39:46 +0100790 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Alan Cox03f0dbf2008-07-22 11:16:34 +0100792 /* Release the Write URB */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100793 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Alan Cox03f0dbf2008-07-22 11:16:34 +0100795 /* Check if more data needs to be sent */
796 send_more_port_data((struct edgeport_serial *)
797 (usb_get_serial_data(edge_port->port->serial)), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800
801/*****************************************************************************
802 * BulkOutCmdCallback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100803 * this is the callback function for when we have finished sending a
804 * command on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100806static void edge_bulk_out_cmd_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Ming Leicdc97792008-02-24 18:41:47 +0800808 struct edgeport_port *edge_port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct tty_struct *tty;
810 int status = urb->status;
811
Harvey Harrison441b62c2008-03-03 16:08:34 -0800812 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Oliver Neukum96c706e2007-03-15 15:27:17 +0100814 atomic_dec(&CmdUrbs);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100815 dbg("%s - FREE URB %p (outstanding %d)", __func__,
816 urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818
819 /* clean up the transfer buffer */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700820 kfree(urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /* Free the command urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100823 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (status) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100826 dbg("%s - nonzero write bulk status received: %d",
827 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return;
829 }
830
831 /* Get pointer to tty */
Alan Cox4a90f092008-10-13 10:39:46 +0100832 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* tell the tty driver that something has changed */
835 if (tty && edge_port->open)
836 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100837 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 /* we have completed the command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100840 edge_port->commandPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 wake_up(&edge_port->wait_command);
842}
843
844
845/*****************************************************************************
846 * Driver tty interface functions
847 *****************************************************************************/
848
849/*****************************************************************************
850 * SerialOpen
851 * this function is called by the tty driver when a port is opened
852 * If successful, we return 0
853 * Otherwise we return a negative error number.
854 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +0100855static int edge_open(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100856 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
859 struct usb_serial *serial;
860 struct edgeport_serial *edge_serial;
861 int response;
862
Harvey Harrison441b62c2008-03-03 16:08:34 -0800863 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (edge_port == NULL)
866 return -ENODEV;
867
Alan Cox03f0dbf2008-07-22 11:16:34 +0100868 /* see if we've set up our endpoint info yet (can't set it up
869 in edge_startup as the structures were not set up at that time.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 serial = port->serial;
871 edge_serial = usb_get_serial_data(serial);
Alan Cox95da3102008-07-22 11:09:07 +0100872 if (edge_serial == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (edge_serial->interrupt_in_buffer == NULL) {
875 struct usb_serial_port *port0 = serial->port[0];
Alan Cox03f0dbf2008-07-22 11:16:34 +0100876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100878 edge_serial->interrupt_in_buffer =
879 port0->interrupt_in_buffer;
880 edge_serial->interrupt_in_endpoint =
881 port0->interrupt_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 edge_serial->interrupt_read_urb = port0->interrupt_in_urb;
883 edge_serial->bulk_in_buffer = port0->bulk_in_buffer;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100884 edge_serial->bulk_in_endpoint =
885 port0->bulk_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 edge_serial->read_urb = port0->read_urb;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100887 edge_serial->bulk_out_endpoint =
888 port0->bulk_out_endpointAddress;
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /* set up our interrupt urb */
891 usb_fill_int_urb(edge_serial->interrupt_read_urb,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100892 serial->dev,
893 usb_rcvintpipe(serial->dev,
894 port0->interrupt_in_endpointAddress),
895 port0->interrupt_in_buffer,
896 edge_serial->interrupt_read_urb->transfer_buffer_length,
897 edge_interrupt_callback, edge_serial,
898 edge_serial->interrupt_read_urb->interval);
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* set up our bulk in urb */
901 usb_fill_bulk_urb(edge_serial->read_urb, serial->dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100902 usb_rcvbulkpipe(serial->dev,
903 port0->bulk_in_endpointAddress),
904 port0->bulk_in_buffer,
905 edge_serial->read_urb->transfer_buffer_length,
906 edge_bulk_in_callback, edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100907 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 /* start interrupt read for this edgeport
Alan Cox03f0dbf2008-07-22 11:16:34 +0100910 * this interrupt will continue as long
911 * as the edgeport is connected */
912 response = usb_submit_urb(edge_serial->interrupt_read_urb,
913 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (response) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100915 dev_err(&port->dev,
916 "%s - Error %d submitting control urb\n",
917 __func__, response);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919 }
Alan Cox03f0dbf2008-07-22 11:16:34 +0100920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 /* initialize our wait queues */
922 init_waitqueue_head(&edge_port->wait_open);
923 init_waitqueue_head(&edge_port->wait_chase);
924 init_waitqueue_head(&edge_port->delta_msr_wait);
925 init_waitqueue_head(&edge_port->wait_command);
926
927 /* initialize our icount structure */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100928 memset(&(edge_port->icount), 0x00, sizeof(edge_port->icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* initialize our port settings */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100931 edge_port->txCredits = 0; /* Can't send any data yet */
932 /* Must always set this bit to enable ints! */
933 edge_port->shadowMCR = MCR_MASTER_IE;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100934 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 /* send a open port command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100937 edge_port->openPending = true;
938 edge_port->open = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100939 response = send_iosp_ext_cmd(edge_port, IOSP_CMD_OPEN_PORT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (response < 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100942 dev_err(&port->dev, "%s - error sending open port command\n",
943 __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100944 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return -ENODEV;
946 }
947
948 /* now wait for the port to be completely opened */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100949 wait_event_timeout(edge_port->wait_open, !edge_port->openPending,
950 OPEN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100952 if (!edge_port->open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /* open timed out */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800954 dbg("%s - open timedout", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100955 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return -ENODEV;
957 }
958
959 /* create the txfifo */
960 edge_port->txfifo.head = 0;
961 edge_port->txfifo.tail = 0;
962 edge_port->txfifo.count = 0;
963 edge_port->txfifo.size = edge_port->maxTxCredits;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100964 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 if (!edge_port->txfifo.fifo) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800967 dbg("%s - no memory", __func__);
Alan Cox335f8512009-06-11 12:26:29 +0100968 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return -ENOMEM;
970 }
971
972 /* Allocate a URB for the write */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100973 edge_port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100974 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 if (!edge_port->write_urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800977 dbg("%s - no memory", __func__);
Alan Cox335f8512009-06-11 12:26:29 +0100978 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return -ENOMEM;
980 }
981
Alan Cox03f0dbf2008-07-22 11:16:34 +0100982 dbg("%s(%d) - Initialize TX fifo to %d bytes",
983 __func__, port->number, edge_port->maxTxCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Harvey Harrison441b62c2008-03-03 16:08:34 -0800985 dbg("%s exited", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 return 0;
988}
989
990
991/************************************************************************
992 *
993 * block_until_chase_response
994 *
995 * This function will block the close until one of the following:
996 * 1. Response to our Chase comes from Edgeport
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800997 * 2. A timeout of 10 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 * (1K of Edgeport data @ 2400 baud ==> 4 sec to empty)
999 *
1000 ************************************************************************/
1001static void block_until_chase_response(struct edgeport_port *edge_port)
1002{
1003 DEFINE_WAIT(wait);
1004 __u16 lastCredits;
1005 int timeout = 1*HZ;
1006 int loop = 10;
1007
1008 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001009 /* Save Last credits */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 lastCredits = edge_port->txCredits;
1011
Alan Cox03f0dbf2008-07-22 11:16:34 +01001012 /* Did we get our Chase response */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001013 if (!edge_port->chaseResponsePending) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001014 dbg("%s - Got Chase Response", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Alan Cox03f0dbf2008-07-22 11:16:34 +01001016 /* did we get all of our credit back? */
1017 if (edge_port->txCredits == edge_port->maxTxCredits) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001018 dbg("%s - Got all credits", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return;
1020 }
1021 }
1022
Alan Cox03f0dbf2008-07-22 11:16:34 +01001023 /* Block the thread for a while */
1024 prepare_to_wait(&edge_port->wait_chase, &wait,
1025 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 schedule_timeout(timeout);
1027 finish_wait(&edge_port->wait_chase, &wait);
1028
1029 if (lastCredits == edge_port->txCredits) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001030 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 loop--;
1032 if (loop == 0) {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001033 edge_port->chaseResponsePending = false;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001034 dbg("%s - Chase TIMEOUT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return;
1036 }
1037 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001038 /* Reset timeout value back to 10 seconds */
1039 dbg("%s - Last %d, Current %d", __func__,
1040 lastCredits, edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 loop = 10;
1042 }
1043 }
1044}
1045
1046
1047/************************************************************************
1048 *
1049 * block_until_tx_empty
1050 *
1051 * This function will block the close until one of the following:
1052 * 1. TX count are 0
1053 * 2. The edgeport has stopped
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001054 * 3. A timeout of 3 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 *
1056 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001057static void block_until_tx_empty(struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 DEFINE_WAIT(wait);
1060 struct TxFifo *fifo = &edge_port->txfifo;
1061 __u32 lastCount;
1062 int timeout = HZ/10;
1063 int loop = 30;
1064
1065 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001066 /* Save Last count */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 lastCount = fifo->count;
1068
Alan Cox03f0dbf2008-07-22 11:16:34 +01001069 /* Is the Edgeport Buffer empty? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (lastCount == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001071 dbg("%s - TX Buffer Empty", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 return;
1073 }
1074
Alan Cox03f0dbf2008-07-22 11:16:34 +01001075 /* Block the thread for a while */
1076 prepare_to_wait(&edge_port->wait_chase, &wait,
1077 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 schedule_timeout(timeout);
1079 finish_wait(&edge_port->wait_chase, &wait);
1080
Harvey Harrison441b62c2008-03-03 16:08:34 -08001081 dbg("%s wait", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 if (lastCount == fifo->count) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001084 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 loop--;
1086 if (loop == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001087 dbg("%s - TIMEOUT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return;
1089 }
1090 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001091 /* Reset timeout value back to seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 loop = 30;
1093 }
1094 }
1095}
1096
1097
1098/*****************************************************************************
1099 * edge_close
1100 * this function is called by the tty driver when a port is closed
1101 *****************************************************************************/
Alan Cox335f8512009-06-11 12:26:29 +01001102static void edge_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct edgeport_serial *edge_serial;
1105 struct edgeport_port *edge_port;
1106 int status;
1107
Harvey Harrison441b62c2008-03-03 16:08:34 -08001108 dbg("%s - port %d", __func__, port->number);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 edge_serial = usb_get_serial_data(port->serial);
1111 edge_port = usb_get_serial_port_data(port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001112 if (edge_serial == NULL || edge_port == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001114
1115 /* block until tx is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 block_until_tx_empty(edge_port);
1117
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001118 edge_port->closePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001120 if ((!edge_serial->is_epic) ||
1121 ((edge_serial->is_epic) &&
1122 (edge_serial->epic_descriptor.Supports.IOSPChase))) {
1123 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001124 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Harvey Harrison441b62c2008-03-03 16:08:34 -08001126 dbg("%s - Sending IOSP_CMD_CHASE_PORT", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001127 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
1128 if (status == 0)
1129 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001130 block_until_chase_response(edge_port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001131 else
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001132 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001135 if ((!edge_serial->is_epic) ||
1136 ((edge_serial->is_epic) &&
1137 (edge_serial->epic_descriptor.Supports.IOSPClose))) {
1138 /* close the port */
Harvey Harrison441b62c2008-03-03 16:08:34 -08001139 dbg("%s - Sending IOSP_CMD_CLOSE_PORT", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001140 send_iosp_ext_cmd(edge_port, IOSP_CMD_CLOSE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Alan Cox03f0dbf2008-07-22 11:16:34 +01001143 /* port->close = true; */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001144 edge_port->closePending = false;
1145 edge_port->open = false;
1146 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Mariusz Kozlowski9a25f442006-11-08 15:36:29 +01001148 usb_kill_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 if (edge_port->write_urb) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001151 /* if this urb had a transfer buffer already
1152 (old transfer) free it */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001153 kfree(edge_port->write_urb->transfer_buffer);
1154 usb_free_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 edge_port->write_urb = NULL;
1156 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001157 kfree(edge_port->txfifo.fifo);
1158 edge_port->txfifo.fifo = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Harvey Harrison441b62c2008-03-03 16:08:34 -08001160 dbg("%s exited", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001161}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163/*****************************************************************************
1164 * SerialWrite
Alan Cox03f0dbf2008-07-22 11:16:34 +01001165 * this function is called by the tty driver when data should be written
1166 * to the port.
1167 * If successful, we return the number of bytes written, otherwise we
1168 * return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001170static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
1171 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
1173 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1174 struct TxFifo *fifo;
1175 int copySize;
1176 int bytesleft;
1177 int firsthalf;
1178 int secondhalf;
1179 unsigned long flags;
1180
Harvey Harrison441b62c2008-03-03 16:08:34 -08001181 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 if (edge_port == NULL)
1184 return -ENODEV;
1185
Alan Cox03f0dbf2008-07-22 11:16:34 +01001186 /* get a pointer to the Tx fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 fifo = &edge_port->txfifo;
1188
1189 spin_lock_irqsave(&edge_port->ep_lock, flags);
1190
Alan Cox03f0dbf2008-07-22 11:16:34 +01001191 /* calculate number of bytes to put in fifo */
1192 copySize = min((unsigned int)count,
1193 (edge_port->txCredits - fifo->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Alan Cox03f0dbf2008-07-22 11:16:34 +01001195 dbg("%s(%d) of %d byte(s) Fifo room %d -- will copy %d bytes",
1196 __func__, port->number, count,
1197 edge_port->txCredits - fifo->count, copySize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Alan Cox03f0dbf2008-07-22 11:16:34 +01001199 /* catch writes of 0 bytes which the tty driver likes to give us,
1200 and when txCredits is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (copySize == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001202 dbg("%s - copySize = Zero", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 goto finish_write;
1204 }
1205
Alan Cox03f0dbf2008-07-22 11:16:34 +01001206 /* queue the data
1207 * since we can never overflow the buffer we do not have to check for a
1208 * full condition
1209 *
1210 * the copy is done is two parts -- first fill to the end of the buffer
1211 * then copy the reset from the start of the buffer
1212 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 bytesleft = fifo->size - fifo->head;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001214 firsthalf = min(bytesleft, copySize);
1215 dbg("%s - copy %d bytes of %d into fifo ", __func__,
1216 firsthalf, bytesleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /* now copy our data */
1219 memcpy(&fifo->fifo[fifo->head], data, firsthalf);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001220 usb_serial_debug_data(debug, &port->dev, __func__,
1221 firsthalf, &fifo->fifo[fifo->head]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Alan Cox03f0dbf2008-07-22 11:16:34 +01001223 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 fifo->head += firsthalf;
1225 fifo->count += firsthalf;
1226
Alan Cox03f0dbf2008-07-22 11:16:34 +01001227 /* wrap the index */
1228 if (fifo->head == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 fifo->head = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 secondhalf = copySize-firsthalf;
1232
1233 if (secondhalf) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001234 dbg("%s - copy rest of data %d", __func__, secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 memcpy(&fifo->fifo[fifo->head], &data[firsthalf], secondhalf);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001236 usb_serial_debug_data(debug, &port->dev, __func__,
1237 secondhalf, &fifo->fifo[fifo->head]);
1238 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 fifo->count += secondhalf;
1240 fifo->head += secondhalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001241 /* No need to check for wrap since we can not get to end of
1242 * the fifo in this part
1243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245
1246finish_write:
1247 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1248
Alan Cox03f0dbf2008-07-22 11:16:34 +01001249 send_more_port_data((struct edgeport_serial *)
1250 usb_get_serial_data(port->serial), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Alan Cox03f0dbf2008-07-22 11:16:34 +01001252 dbg("%s wrote %d byte(s) TxCredits %d, Fifo %d", __func__,
1253 copySize, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Alan Cox03f0dbf2008-07-22 11:16:34 +01001255 return copySize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258
1259/************************************************************************
1260 *
1261 * send_more_port_data()
1262 *
1263 * This routine attempts to write additional UART transmit data
1264 * to a port over the USB bulk pipe. It is called (1) when new
1265 * data has been written to a port's TxBuffer from higher layers
1266 * (2) when the peripheral sends us additional TxCredits indicating
1267 * that it can accept more Tx data for a given port; and (3) when
1268 * a bulk write completes successfully and we want to see if we
1269 * can transmit more.
1270 *
1271 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001272static void send_more_port_data(struct edgeport_serial *edge_serial,
1273 struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 struct TxFifo *fifo = &edge_port->txfifo;
1276 struct urb *urb;
1277 unsigned char *buffer;
1278 int status;
1279 int count;
1280 int bytesleft;
1281 int firsthalf;
1282 int secondhalf;
1283 unsigned long flags;
1284
Harvey Harrison441b62c2008-03-03 16:08:34 -08001285 dbg("%s(%d)", __func__, edge_port->port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 spin_lock_irqsave(&edge_port->ep_lock, flags);
1288
1289 if (edge_port->write_in_progress ||
1290 !edge_port->open ||
1291 (fifo->count == 0)) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001292 dbg("%s(%d) EXIT - fifo %d, PendingWrite = %d",
1293 __func__, edge_port->port->number,
1294 fifo->count, edge_port->write_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 goto exit_send;
1296 }
1297
Alan Cox03f0dbf2008-07-22 11:16:34 +01001298 /* since the amount of data in the fifo will always fit into the
1299 * edgeport buffer we do not need to check the write length
1300 *
1301 * Do we have enough credits for this port to make it worthwhile
1302 * to bother queueing a write. If it's too small, say a few bytes,
1303 * it's better to wait for more credits so we can do a larger write.
1304 */
1305 if (edge_port->txCredits < EDGE_FW_GET_TX_CREDITS_SEND_THRESHOLD(edge_port->maxTxCredits, EDGE_FW_BULK_MAX_PACKET_SIZE)) {
1306 dbg("%s(%d) Not enough credit - fifo %d TxCredit %d",
1307 __func__, edge_port->port->number, fifo->count,
1308 edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 goto exit_send;
1310 }
1311
Alan Cox03f0dbf2008-07-22 11:16:34 +01001312 /* lock this write */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001313 edge_port->write_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Alan Cox03f0dbf2008-07-22 11:16:34 +01001315 /* get a pointer to the write_urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 urb = edge_port->write_urb;
1317
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001318 /* make sure transfer buffer is freed */
1319 kfree(urb->transfer_buffer);
1320 urb->transfer_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Alan Cox03f0dbf2008-07-22 11:16:34 +01001322 /* build the data header for the buffer and port that we are about
1323 to send out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 count = fifo->count;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001325 buffer = kmalloc(count+2, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (buffer == NULL) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001327 dev_err(&edge_port->port->dev,
1328 "%s - no more kernel memory...\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001329 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 goto exit_send;
1331 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01001332 buffer[0] = IOSP_BUILD_DATA_HDR1(edge_port->port->number
1333 - edge_port->port->serial->minor, count);
1334 buffer[1] = IOSP_BUILD_DATA_HDR2(edge_port->port->number
1335 - edge_port->port->serial->minor, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 /* now copy our data */
1338 bytesleft = fifo->size - fifo->tail;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001339 firsthalf = min(bytesleft, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 memcpy(&buffer[2], &fifo->fifo[fifo->tail], firsthalf);
1341 fifo->tail += firsthalf;
1342 fifo->count -= firsthalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001343 if (fifo->tail == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 fifo->tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 secondhalf = count-firsthalf;
1347 if (secondhalf) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001348 memcpy(&buffer[2+firsthalf], &fifo->fifo[fifo->tail],
1349 secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 fifo->tail += secondhalf;
1351 fifo->count -= secondhalf;
1352 }
1353
1354 if (count)
Alan Cox03f0dbf2008-07-22 11:16:34 +01001355 usb_serial_debug_data(debug, &edge_port->port->dev,
1356 __func__, count, &buffer[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 /* fill up the urb with all of our data and submit it */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001359 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
1360 usb_sndbulkpipe(edge_serial->serial->dev,
1361 edge_serial->bulk_out_endpoint),
1362 buffer, count+2,
1363 edge_bulk_out_data_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 /* decrement the number of credits we have by the number we just sent */
1366 edge_port->txCredits -= count;
1367 edge_port->icount.tx += count;
1368
1369 urb->dev = edge_serial->serial->dev;
1370 status = usb_submit_urb(urb, GFP_ATOMIC);
1371 if (status) {
1372 /* something went wrong */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001373 dev_err(&edge_port->port->dev,
1374 "%s - usb_submit_urb(write bulk) failed, status = %d, data lost\n",
1375 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001376 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 /* revert the credits as something bad happened. */
1379 edge_port->txCredits += count;
1380 edge_port->icount.tx -= count;
1381 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01001382 dbg("%s wrote %d byte(s) TxCredit %d, Fifo %d",
1383 __func__, count, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385exit_send:
1386 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1387}
1388
1389
1390/*****************************************************************************
1391 * edge_write_room
Alan Cox03f0dbf2008-07-22 11:16:34 +01001392 * this function is called by the tty driver when it wants to know how
1393 * many bytes of data we can accept for a specific port. If successful,
1394 * we return the amount of room that we have for this port (the txCredits)
1395 * otherwise we return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001397static int edge_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
Alan Cox95da3102008-07-22 11:09:07 +01001399 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1401 int room;
1402 unsigned long flags;
1403
Harvey Harrison441b62c2008-03-03 16:08:34 -08001404 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001407 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001408 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001409 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Harvey Harrison441b62c2008-03-03 16:08:34 -08001411 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 if (!edge_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001414 dbg("%s - port not opened", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417
Alan Cox03f0dbf2008-07-22 11:16:34 +01001418 /* total of both buffers is still txCredit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 spin_lock_irqsave(&edge_port->ep_lock, flags);
1420 room = edge_port->txCredits - edge_port->txfifo.count;
1421 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1422
Harvey Harrison441b62c2008-03-03 16:08:34 -08001423 dbg("%s - returns %d", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return room;
1425}
1426
1427
1428/*****************************************************************************
1429 * edge_chars_in_buffer
Alan Cox03f0dbf2008-07-22 11:16:34 +01001430 * this function is called by the tty driver when it wants to know how
1431 * many bytes of data we currently have outstanding in the port (data that
1432 * has been written, but hasn't made it out the port yet)
1433 * If successful, we return the number of bytes left to be written in the
1434 * system,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 * Otherwise we return a negative error number.
1436 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001437static int edge_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Alan Cox95da3102008-07-22 11:09:07 +01001439 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1441 int num_chars;
1442 unsigned long flags;
1443
Harvey Harrison441b62c2008-03-03 16:08:34 -08001444 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001447 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001448 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 if (!edge_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001452 dbg("%s - port not opened", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001453 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455
1456 spin_lock_irqsave(&edge_port->ep_lock, flags);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001457 num_chars = edge_port->maxTxCredits - edge_port->txCredits +
1458 edge_port->txfifo.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1460 if (num_chars) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001461 dbg("%s(port %d) - returns %d", __func__,
1462 port->number, num_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464
1465 return num_chars;
1466}
1467
1468
1469/*****************************************************************************
1470 * SerialThrottle
1471 * this function is called by the tty driver when it wants to stop the data
1472 * being read from the port.
1473 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001474static void edge_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Alan Cox95da3102008-07-22 11:09:07 +01001476 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int status;
1479
Harvey Harrison441b62c2008-03-03 16:08:34 -08001480 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 if (edge_port == NULL)
1483 return;
1484
1485 if (!edge_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001486 dbg("%s - port not opened", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return;
1488 }
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 /* if we are implementing XON/XOFF, send the stop character */
1491 if (I_IXOFF(tty)) {
1492 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001493 status = edge_write(tty, port, &stop_char, 1);
1494 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497
1498 /* if we are implementing RTS/CTS, toggle that line */
1499 if (tty->termios->c_cflag & CRTSCTS) {
1500 edge_port->shadowMCR &= ~MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001501 status = send_cmd_write_uart_register(edge_port, MCR,
1502 edge_port->shadowMCR);
1503 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
1506
1507 return;
1508}
1509
1510
1511/*****************************************************************************
1512 * edge_unthrottle
Alan Cox03f0dbf2008-07-22 11:16:34 +01001513 * this function is called by the tty driver when it wants to resume the
1514 * data being read from the port (called after SerialThrottle is called)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001516static void edge_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Alan Cox95da3102008-07-22 11:09:07 +01001518 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 int status;
1521
Harvey Harrison441b62c2008-03-03 16:08:34 -08001522 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 if (edge_port == NULL)
1525 return;
1526
1527 if (!edge_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001528 dbg("%s - port not opened", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return;
1530 }
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /* if we are implementing XON/XOFF, send the start character */
1533 if (I_IXOFF(tty)) {
1534 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001535 status = edge_write(tty, port, &start_char, 1);
1536 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 /* if we are implementing RTS/CTS, toggle that line */
1540 if (tty->termios->c_cflag & CRTSCTS) {
1541 edge_port->shadowMCR |= MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001542 send_cmd_write_uart_register(edge_port, MCR,
1543 edge_port->shadowMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
1547
1548/*****************************************************************************
1549 * SerialSetTermios
Alan Cox03f0dbf2008-07-22 11:16:34 +01001550 * this function is called by the tty driver when it wants to change
1551 * the termios structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001553static void edge_set_termios(struct tty_struct *tty,
1554 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
1556 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 unsigned int cflag;
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 cflag = tty->termios->c_cflag;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001560 dbg("%s - clfag %08x iflag %08x", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 tty->termios->c_cflag, tty->termios->c_iflag);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001562 dbg("%s - old clfag %08x old iflag %08x", __func__,
Alan Cox6ce073b2007-10-18 01:24:25 -07001563 old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Harvey Harrison441b62c2008-03-03 16:08:34 -08001565 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 if (edge_port == NULL)
1568 return;
1569
1570 if (!edge_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001571 dbg("%s - port not opened", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 return;
1573 }
1574
1575 /* change the port settings to the new ones specified */
Alan Cox95da3102008-07-22 11:09:07 +01001576 change_port_settings(tty, edge_port, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
1579
1580/*****************************************************************************
1581 * get_lsr_info - get line status register info
1582 *
1583 * Purpose: Let user call ioctl() to get info when the UART physically
1584 * is emptied. On bus types like RS485, the transmitter must
1585 * release the bus after transmitting. This must be done when
1586 * the transmit shift register is empty, not be done when the
1587 * transmit holding register is empty. This functionality
Alan Cox03f0dbf2008-07-22 11:16:34 +01001588 * allows an RS485 driver to be written in user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001590static int get_lsr_info(struct edgeport_port *edge_port,
1591 unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 unsigned int result = 0;
1594 unsigned long flags;
1595
1596 spin_lock_irqsave(&edge_port->ep_lock, flags);
1597 if (edge_port->maxTxCredits == edge_port->txCredits &&
1598 edge_port->txfifo.count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001599 dbg("%s -- Empty", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 result = TIOCSER_TEMT;
1601 }
1602 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1603
1604 if (copy_to_user(value, &result, sizeof(int)))
1605 return -EFAULT;
1606 return 0;
1607}
1608
Alan Cox03f0dbf2008-07-22 11:16:34 +01001609static int edge_tiocmset(struct tty_struct *tty, struct file *file,
1610 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
Alan Cox95da3102008-07-22 11:09:07 +01001612 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1614 unsigned int mcr;
1615
Harvey Harrison441b62c2008-03-03 16:08:34 -08001616 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 mcr = edge_port->shadowMCR;
1619 if (set & TIOCM_RTS)
1620 mcr |= MCR_RTS;
1621 if (set & TIOCM_DTR)
1622 mcr |= MCR_DTR;
1623 if (set & TIOCM_LOOP)
1624 mcr |= MCR_LOOPBACK;
1625
1626 if (clear & TIOCM_RTS)
1627 mcr &= ~MCR_RTS;
1628 if (clear & TIOCM_DTR)
1629 mcr &= ~MCR_DTR;
1630 if (clear & TIOCM_LOOP)
1631 mcr &= ~MCR_LOOPBACK;
1632
1633 edge_port->shadowMCR = mcr;
1634
1635 send_cmd_write_uart_register(edge_port, MCR, edge_port->shadowMCR);
1636
1637 return 0;
1638}
1639
Alan Cox95da3102008-07-22 11:09:07 +01001640static int edge_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
Alan Cox95da3102008-07-22 11:09:07 +01001642 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1644 unsigned int result = 0;
1645 unsigned int msr;
1646 unsigned int mcr;
1647
Harvey Harrison441b62c2008-03-03 16:08:34 -08001648 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 msr = edge_port->shadowMSR;
1651 mcr = edge_port->shadowMCR;
1652 result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
1653 | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
1654 | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
1655 | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
1656 | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
1657 | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
1658
1659
Harvey Harrison441b62c2008-03-03 16:08:34 -08001660 dbg("%s -- %x", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 return result;
1663}
1664
Alan Cox03f0dbf2008-07-22 11:16:34 +01001665static int get_serial_info(struct edgeport_port *edge_port,
1666 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 struct serial_struct tmp;
1669
1670 if (!retinfo)
1671 return -EFAULT;
1672
1673 memset(&tmp, 0, sizeof(tmp));
1674
1675 tmp.type = PORT_16550A;
1676 tmp.line = edge_port->port->serial->minor;
1677 tmp.port = edge_port->port->number;
1678 tmp.irq = 0;
1679 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
1680 tmp.xmit_fifo_size = edge_port->maxTxCredits;
1681 tmp.baud_base = 9600;
1682 tmp.close_delay = 5*HZ;
1683 tmp.closing_wait = 30*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1686 return -EFAULT;
1687 return 0;
1688}
1689
1690
1691
1692/*****************************************************************************
1693 * SerialIoctl
1694 * this function handles any ioctl calls to the driver
1695 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001696static int edge_ioctl(struct tty_struct *tty, struct file *file,
1697 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Alan Cox95da3102008-07-22 11:09:07 +01001699 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 DEFINE_WAIT(wait);
1701 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1702 struct async_icount cnow;
1703 struct async_icount cprev;
1704 struct serial_icounter_struct icount;
1705
Harvey Harrison441b62c2008-03-03 16:08:34 -08001706 dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 switch (cmd) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001709 case TIOCSERGETLSR:
1710 dbg("%s (%d) TIOCSERGETLSR", __func__, port->number);
1711 return get_lsr_info(edge_port, (unsigned int __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Alan Cox03f0dbf2008-07-22 11:16:34 +01001713 case TIOCGSERIAL:
1714 dbg("%s (%d) TIOCGSERIAL", __func__, port->number);
1715 return get_serial_info(edge_port, (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Alan Cox03f0dbf2008-07-22 11:16:34 +01001717 case TIOCMIWAIT:
1718 dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
1719 cprev = edge_port->icount;
1720 while (1) {
1721 prepare_to_wait(&edge_port->delta_msr_wait,
1722 &wait, TASK_INTERRUPTIBLE);
1723 schedule();
1724 finish_wait(&edge_port->delta_msr_wait, &wait);
1725 /* see if a signal did it */
1726 if (signal_pending(current))
1727 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 cnow = edge_port->icount;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001729 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
1730 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
1731 return -EIO; /* no change => error */
1732 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1733 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1734 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1735 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
1736 return 0;
1737 }
1738 cprev = cnow;
1739 }
1740 /* NOTREACHED */
1741 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Alan Cox03f0dbf2008-07-22 11:16:34 +01001743 case TIOCGICOUNT:
1744 cnow = edge_port->icount;
1745 memset(&icount, 0, sizeof(icount));
1746 icount.cts = cnow.cts;
1747 icount.dsr = cnow.dsr;
1748 icount.rng = cnow.rng;
1749 icount.dcd = cnow.dcd;
1750 icount.rx = cnow.rx;
1751 icount.tx = cnow.tx;
1752 icount.frame = cnow.frame;
1753 icount.overrun = cnow.overrun;
1754 icount.parity = cnow.parity;
1755 icount.brk = cnow.brk;
1756 icount.buf_overrun = cnow.buf_overrun;
1757
1758 dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d",
1759 __func__, port->number, icount.rx, icount.tx);
1760 if (copy_to_user((void __user *)arg, &icount, sizeof(icount)))
1761 return -EFAULT;
1762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return -ENOIOCTLCMD;
1765}
1766
1767
1768/*****************************************************************************
1769 * SerialBreak
1770 * this function sends a break to the port
1771 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001772static void edge_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Alan Cox95da3102008-07-22 11:09:07 +01001774 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001776 struct edgeport_serial *edge_serial = usb_get_serial_data(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 int status;
1778
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001779 if ((!edge_serial->is_epic) ||
1780 ((edge_serial->is_epic) &&
1781 (edge_serial->epic_descriptor.Supports.IOSPChase))) {
1782 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001783 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Harvey Harrison441b62c2008-03-03 16:08:34 -08001785 dbg("%s - Sending IOSP_CMD_CHASE_PORT", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001786 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001787 if (status == 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001788 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001789 block_until_chase_response(edge_port);
1790 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001791 edge_port->chaseResponsePending = false;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
1794
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001795 if ((!edge_serial->is_epic) ||
1796 ((edge_serial->is_epic) &&
1797 (edge_serial->epic_descriptor.Supports.IOSPSetClrBreak))) {
1798 if (break_state == -1) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001799 dbg("%s - Sending IOSP_CMD_SET_BREAK", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001800 status = send_iosp_ext_cmd(edge_port,
1801 IOSP_CMD_SET_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001802 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001803 dbg("%s - Sending IOSP_CMD_CLEAR_BREAK", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001804 status = send_iosp_ext_cmd(edge_port,
1805 IOSP_CMD_CLEAR_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001806 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01001807 if (status)
1808 dbg("%s - error sending break set/clear command.",
1809 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811
1812 return;
1813}
1814
1815
1816/*****************************************************************************
1817 * process_rcvd_data
1818 * this function handles the data received on the bulk in pipe.
1819 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001820static void process_rcvd_data(struct edgeport_serial *edge_serial,
1821 unsigned char *buffer, __u16 bufferLength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
1823 struct usb_serial_port *port;
1824 struct edgeport_port *edge_port;
1825 struct tty_struct *tty;
1826 __u16 lastBufferLength;
1827 __u16 rxLen;
1828
Harvey Harrison441b62c2008-03-03 16:08:34 -08001829 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 lastBufferLength = bufferLength + 1;
1832
1833 while (bufferLength > 0) {
1834 /* failsafe incase we get a message that we don't understand */
1835 if (lastBufferLength == bufferLength) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001836 dbg("%s - stuck in loop, exiting it.", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 break;
1838 }
1839 lastBufferLength = bufferLength;
1840
1841 switch (edge_serial->rxState) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001842 case EXPECT_HDR1:
1843 edge_serial->rxHeader1 = *buffer;
1844 ++buffer;
1845 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Alan Cox03f0dbf2008-07-22 11:16:34 +01001847 if (bufferLength == 0) {
1848 edge_serial->rxState = EXPECT_HDR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001850 }
1851 /* otherwise, drop on through */
1852 case EXPECT_HDR2:
1853 edge_serial->rxHeader2 = *buffer;
1854 ++buffer;
1855 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Alan Cox03f0dbf2008-07-22 11:16:34 +01001857 dbg("%s - Hdr1=%02X Hdr2=%02X", __func__,
1858 edge_serial->rxHeader1, edge_serial->rxHeader2);
1859 /* Process depending on whether this header is
1860 * data or status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Alan Cox03f0dbf2008-07-22 11:16:34 +01001862 if (IS_CMD_STAT_HDR(edge_serial->rxHeader1)) {
1863 /* Decode this status header and go to
1864 * EXPECT_HDR1 (if we can process the status
1865 * with only 2 bytes), or go to EXPECT_HDR3 to
1866 * get the third byte. */
1867 edge_serial->rxPort =
1868 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1869 edge_serial->rxStatusCode =
1870 IOSP_GET_STATUS_CODE(
1871 edge_serial->rxHeader1);
1872
1873 if (!IOSP_STATUS_IS_2BYTE(
1874 edge_serial->rxStatusCode)) {
1875 /* This status needs additional bytes.
1876 * Save what we have and then wait for
1877 * more data.
1878 */
1879 edge_serial->rxStatusParam
1880 = edge_serial->rxHeader2;
1881 edge_serial->rxState = EXPECT_HDR3;
1882 break;
1883 }
1884 /* We have all the header bytes, process the
1885 status now */
1886 process_rcvd_status(edge_serial,
1887 edge_serial->rxHeader2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 edge_serial->rxState = EXPECT_HDR1;
1889 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001890 } else {
1891 edge_serial->rxPort =
1892 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1893 edge_serial->rxBytesRemaining =
1894 IOSP_GET_HDR_DATA_LEN(
1895 edge_serial->rxHeader1,
1896 edge_serial->rxHeader2);
1897 dbg("%s - Data for Port %u Len %u",
1898 __func__,
1899 edge_serial->rxPort,
1900 edge_serial->rxBytesRemaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Alan Cox03f0dbf2008-07-22 11:16:34 +01001902 /* ASSERT(DevExt->RxPort < DevExt->NumPorts);
1903 * ASSERT(DevExt->RxBytesRemaining <
1904 * IOSP_MAX_DATA_LENGTH);
1905 */
1906
1907 if (bufferLength == 0) {
1908 edge_serial->rxState = EXPECT_DATA;
1909 break;
1910 }
1911 /* Else, drop through */
1912 }
1913 case EXPECT_DATA: /* Expect data */
1914 if (bufferLength < edge_serial->rxBytesRemaining) {
1915 rxLen = bufferLength;
1916 /* Expect data to start next buffer */
1917 edge_serial->rxState = EXPECT_DATA;
1918 } else {
1919 /* BufLen >= RxBytesRemaining */
1920 rxLen = edge_serial->rxBytesRemaining;
1921 /* Start another header next time */
1922 edge_serial->rxState = EXPECT_HDR1;
1923 }
1924
1925 bufferLength -= rxLen;
1926 edge_serial->rxBytesRemaining -= rxLen;
1927
1928 /* spit this data back into the tty driver if this
1929 port is open */
1930 if (rxLen) {
1931 port = edge_serial->serial->port[
1932 edge_serial->rxPort];
1933 edge_port = usb_get_serial_port_data(port);
1934 if (edge_port->open) {
Alan Cox4a90f092008-10-13 10:39:46 +01001935 tty = tty_port_tty_get(
1936 &edge_port->port->port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001937 if (tty) {
1938 dbg("%s - Sending %d bytes to TTY for port %d",
1939 __func__, rxLen, edge_serial->rxPort);
1940 edge_tty_recv(&edge_serial->serial->dev->dev, tty, buffer, rxLen);
Alan Cox4a90f092008-10-13 10:39:46 +01001941 tty_kref_put(tty);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001942 }
1943 edge_port->icount.rx += rxLen;
1944 }
1945 buffer += rxLen;
1946 }
1947 break;
1948
1949 case EXPECT_HDR3: /* Expect 3rd byte of status header */
1950 edge_serial->rxHeader3 = *buffer;
1951 ++buffer;
1952 --bufferLength;
1953
1954 /* We have all the header bytes, process the
1955 status now */
1956 process_rcvd_status(edge_serial,
1957 edge_serial->rxStatusParam,
1958 edge_serial->rxHeader3);
1959 edge_serial->rxState = EXPECT_HDR1;
1960 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 }
1962 }
1963}
1964
1965
1966/*****************************************************************************
1967 * process_rcvd_status
Alan Cox03f0dbf2008-07-22 11:16:34 +01001968 * this function handles the any status messages received on the
1969 * bulk in pipe.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001971static void process_rcvd_status(struct edgeport_serial *edge_serial,
1972 __u8 byte2, __u8 byte3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 struct usb_serial_port *port;
1975 struct edgeport_port *edge_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001976 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 __u8 code = edge_serial->rxStatusCode;
1978
1979 /* switch the port pointer to the one being currently talked about */
1980 port = edge_serial->serial->port[edge_serial->rxPort];
1981 edge_port = usb_get_serial_port_data(port);
1982 if (edge_port == NULL) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001983 dev_err(&edge_serial->serial->dev->dev,
1984 "%s - edge_port == NULL for port %d\n",
1985 __func__, edge_serial->rxPort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return;
1987 }
1988
Harvey Harrison441b62c2008-03-03 16:08:34 -08001989 dbg("%s - port %d", __func__, edge_serial->rxPort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 if (code == IOSP_EXT_STATUS) {
1992 switch (byte2) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001993 case IOSP_EXT_STATUS_CHASE_RSP:
1994 /* we want to do EXT status regardless of port
1995 * open/closed */
1996 dbg("%s - Port %u EXT CHASE_RSP Data = %02x",
1997 __func__, edge_serial->rxPort, byte3);
1998 /* Currently, the only EXT_STATUS is Chase, so process
1999 * here instead of one more call to one more subroutine
2000 * If/when more EXT_STATUS, there'll be more work to do
2001 * Also, we currently clear flag and close the port
2002 * regardless of content of above's Byte3.
2003 * We could choose to do something else when Byte3 says
2004 * Timeout on Chase from Edgeport, like wait longer in
2005 * block_until_chase_response, but for now we don't.
2006 */
2007 edge_port->chaseResponsePending = false;
2008 wake_up(&edge_port->wait_chase);
2009 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Alan Cox03f0dbf2008-07-22 11:16:34 +01002011 case IOSP_EXT_STATUS_RX_CHECK_RSP:
2012 dbg("%s ========== Port %u CHECK_RSP Sequence = %02x =============\n", __func__, edge_serial->rxPort, byte3);
2013 /* Port->RxCheckRsp = true; */
2014 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
2016 }
2017
2018 if (code == IOSP_STATUS_OPEN_RSP) {
2019 edge_port->txCredits = GET_TX_BUFFER_SIZE(byte3);
2020 edge_port->maxTxCredits = edge_port->txCredits;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002021 dbg("%s - Port %u Open Response Inital MSR = %02x TxBufferSize = %d", __func__, edge_serial->rxPort, byte2, edge_port->txCredits);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002022 handle_new_msr(edge_port, byte2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Alan Cox03f0dbf2008-07-22 11:16:34 +01002024 /* send the current line settings to the port so we are
2025 in sync with any further termios calls */
Alan Cox4a90f092008-10-13 10:39:46 +01002026 tty = tty_port_tty_get(&edge_port->port->port);
2027 if (tty) {
2028 change_port_settings(tty,
2029 edge_port, tty->termios);
2030 tty_kref_put(tty);
2031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 /* we have completed the open */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002034 edge_port->openPending = false;
2035 edge_port->open = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 wake_up(&edge_port->wait_open);
2037 return;
2038 }
2039
Alan Cox03f0dbf2008-07-22 11:16:34 +01002040 /* If port is closed, silently discard all rcvd status. We can
2041 * have cases where buffered status is received AFTER the close
2042 * port command is sent to the Edgeport.
2043 */
2044 if (!edge_port->open || edge_port->closePending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 switch (code) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002048 /* Not currently sent by Edgeport */
2049 case IOSP_STATUS_LSR:
2050 dbg("%s - Port %u LSR Status = %02x",
2051 __func__, edge_serial->rxPort, byte2);
2052 handle_new_lsr(edge_port, false, byte2, 0);
2053 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Alan Cox03f0dbf2008-07-22 11:16:34 +01002055 case IOSP_STATUS_LSR_DATA:
2056 dbg("%s - Port %u LSR Status = %02x, Data = %02x",
2057 __func__, edge_serial->rxPort, byte2, byte3);
2058 /* byte2 is LSR Register */
2059 /* byte3 is broken data byte */
2060 handle_new_lsr(edge_port, true, byte2, byte3);
2061 break;
2062 /*
2063 * case IOSP_EXT_4_STATUS:
2064 * dbg("%s - Port %u LSR Status = %02x Data = %02x",
2065 * __func__, edge_serial->rxPort, byte2, byte3);
2066 * break;
2067 */
2068 case IOSP_STATUS_MSR:
2069 dbg("%s - Port %u MSR Status = %02x",
2070 __func__, edge_serial->rxPort, byte2);
2071 /*
2072 * Process this new modem status and generate appropriate
2073 * events, etc, based on the new status. This routine
2074 * also saves the MSR in Port->ShadowMsr.
2075 */
2076 handle_new_msr(edge_port, byte2);
2077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Alan Cox03f0dbf2008-07-22 11:16:34 +01002079 default:
2080 dbg("%s - Unrecognized IOSP status code %u\n", __func__, code);
2081 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return;
2084}
2085
2086
2087/*****************************************************************************
2088 * edge_tty_recv
2089 * this function passes data on to the tty flip buffer
2090 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002091static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
2092 unsigned char *data, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 int cnt;
2095
2096 do {
Alan Cox33f0f882006-01-09 20:54:13 -08002097 cnt = tty_buffer_request_room(tty, length);
2098 if (cnt < length) {
2099 dev_err(dev, "%s - dropping data, %d bytes lost\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002100 __func__, length - cnt);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002101 if (cnt == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08002102 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
Alan Cox33f0f882006-01-09 20:54:13 -08002104 tty_insert_flip_string(tty, data, cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 data += cnt;
2106 length -= cnt;
2107 } while (length > 0);
2108
2109 tty_flip_buffer_push(tty);
2110}
2111
2112
2113/*****************************************************************************
2114 * handle_new_msr
2115 * this function handles any change to the msr register for a port.
2116 *****************************************************************************/
2117static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr)
2118{
2119 struct async_icount *icount;
2120
Harvey Harrison441b62c2008-03-03 16:08:34 -08002121 dbg("%s %02x", __func__, newMsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Alan Cox03f0dbf2008-07-22 11:16:34 +01002123 if (newMsr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
2124 EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 icount = &edge_port->icount;
2126
2127 /* update input line counters */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002128 if (newMsr & EDGEPORT_MSR_DELTA_CTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 icount->cts++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002130 if (newMsr & EDGEPORT_MSR_DELTA_DSR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 icount->dsr++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002132 if (newMsr & EDGEPORT_MSR_DELTA_CD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 icount->dcd++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002134 if (newMsr & EDGEPORT_MSR_DELTA_RI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 icount->rng++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 wake_up_interruptible(&edge_port->delta_msr_wait);
2137 }
2138
2139 /* Save the new modem status */
2140 edge_port->shadowMSR = newMsr & 0xf0;
2141
2142 return;
2143}
2144
2145
2146/*****************************************************************************
2147 * handle_new_lsr
2148 * this function handles any change to the lsr register for a port.
2149 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002150static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
2151 __u8 lsr, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002153 __u8 newLsr = (__u8) (lsr & (__u8)
2154 (LSR_OVER_ERR | LSR_PAR_ERR | LSR_FRM_ERR | LSR_BREAK));
2155 struct async_icount *icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Harvey Harrison441b62c2008-03-03 16:08:34 -08002157 dbg("%s - %02x", __func__, newLsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159 edge_port->shadowLSR = lsr;
2160
2161 if (newLsr & LSR_BREAK) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002162 /*
2163 * Parity and Framing errors only count if they
2164 * occur exclusive of a break being
2165 * received.
2166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 newLsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
2168 }
2169
2170 /* Place LSR data byte into Rx buffer */
Alan Cox4a90f092008-10-13 10:39:46 +01002171 if (lsrData) {
2172 struct tty_struct *tty =
2173 tty_port_tty_get(&edge_port->port->port);
2174 if (tty) {
2175 edge_tty_recv(&edge_port->port->dev, tty, &data, 1);
2176 tty_kref_put(tty);
2177 }
2178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 /* update input line counters */
2180 icount = &edge_port->icount;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002181 if (newLsr & LSR_BREAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 icount->brk++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002183 if (newLsr & LSR_OVER_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 icount->overrun++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002185 if (newLsr & LSR_PAR_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 icount->parity++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002187 if (newLsr & LSR_FRM_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 icount->frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 return;
2191}
2192
2193
2194/****************************************************************************
2195 * sram_write
Alan Cox03f0dbf2008-07-22 11:16:34 +01002196 * writes a number of bytes to the Edgeport device's sram starting at the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 * given address.
2198 * If successful returns the number of bytes written, otherwise it returns
2199 * a negative error number of the problem.
2200 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002201static int sram_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2202 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 int result;
2205 __u16 current_length;
2206 unsigned char *transfer_buffer;
2207
Harvey Harrison441b62c2008-03-03 16:08:34 -08002208 dbg("%s - %x, %x, %d", __func__, extAddr, addr, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Alan Cox03f0dbf2008-07-22 11:16:34 +01002210 transfer_buffer = kmalloc(64, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (!transfer_buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002212 dev_err(&serial->dev->dev, "%s - kmalloc(%d) failed.\n",
2213 __func__, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 return -ENOMEM;
2215 }
2216
2217 /* need to split these writes up into 64 byte chunks */
2218 result = 0;
2219 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002220 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002222 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002224
2225/* dbg("%s - writing %x, %x, %d", __func__,
2226 extAddr, addr, current_length); */
2227 memcpy(transfer_buffer, data, current_length);
2228 result = usb_control_msg(serial->dev,
2229 usb_sndctrlpipe(serial->dev, 0),
2230 USB_REQUEST_ION_WRITE_RAM,
2231 0x40, addr, extAddr, transfer_buffer,
2232 current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 if (result < 0)
2234 break;
2235 length -= current_length;
2236 addr += current_length;
2237 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Alan Cox03f0dbf2008-07-22 11:16:34 +01002240 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 return result;
2242}
2243
2244
2245/****************************************************************************
2246 * rom_write
2247 * writes a number of bytes to the Edgeport device's ROM starting at the
2248 * given address.
2249 * If successful returns the number of bytes written, otherwise it returns
2250 * a negative error number of the problem.
2251 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002252static int rom_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2253 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
2255 int result;
2256 __u16 current_length;
2257 unsigned char *transfer_buffer;
2258
Alan Cox03f0dbf2008-07-22 11:16:34 +01002259/* dbg("%s - %x, %x, %d", __func__, extAddr, addr, length); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Alan Cox03f0dbf2008-07-22 11:16:34 +01002261 transfer_buffer = kmalloc(64, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 if (!transfer_buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002263 dev_err(&serial->dev->dev, "%s - kmalloc(%d) failed.\n",
2264 __func__, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return -ENOMEM;
2266 }
2267
2268 /* need to split these writes up into 64 byte chunks */
2269 result = 0;
2270 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002271 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002273 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002275/* dbg("%s - writing %x, %x, %d", __func__,
2276 extAddr, addr, current_length); */
2277 memcpy(transfer_buffer, data, current_length);
2278 result = usb_control_msg(serial->dev,
2279 usb_sndctrlpipe(serial->dev, 0),
2280 USB_REQUEST_ION_WRITE_ROM, 0x40,
2281 addr, extAddr,
2282 transfer_buffer, current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (result < 0)
2284 break;
2285 length -= current_length;
2286 addr += current_length;
2287 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Alan Cox03f0dbf2008-07-22 11:16:34 +01002290 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return result;
2292}
2293
2294
2295/****************************************************************************
2296 * rom_read
2297 * reads a number of bytes from the Edgeport device starting at the given
2298 * address.
2299 * If successful returns the number of bytes read, otherwise it returns
2300 * a negative error number of the problem.
2301 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002302static int rom_read(struct usb_serial *serial, __u16 extAddr,
2303 __u16 addr, __u16 length, __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
2305 int result;
2306 __u16 current_length;
2307 unsigned char *transfer_buffer;
2308
Harvey Harrison441b62c2008-03-03 16:08:34 -08002309 dbg("%s - %x, %x, %d", __func__, extAddr, addr, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Alan Cox03f0dbf2008-07-22 11:16:34 +01002311 transfer_buffer = kmalloc(64, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (!transfer_buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002313 dev_err(&serial->dev->dev,
2314 "%s - kmalloc(%d) failed.\n", __func__, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 return -ENOMEM;
2316 }
2317
2318 /* need to split these reads up into 64 byte chunks */
2319 result = 0;
2320 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002321 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002323 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002325/* dbg("%s - %x, %x, %d", __func__,
2326 extAddr, addr, current_length); */
2327 result = usb_control_msg(serial->dev,
2328 usb_rcvctrlpipe(serial->dev, 0),
2329 USB_REQUEST_ION_READ_ROM,
2330 0xC0, addr, extAddr, transfer_buffer,
2331 current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (result < 0)
2333 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002334 memcpy(data, transfer_buffer, current_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 length -= current_length;
2336 addr += current_length;
2337 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Alan Cox03f0dbf2008-07-22 11:16:34 +01002340 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return result;
2342}
2343
2344
2345/****************************************************************************
2346 * send_iosp_ext_cmd
2347 * Is used to send a IOSP message to the Edgeport device
2348 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002349static int send_iosp_ext_cmd(struct edgeport_port *edge_port,
2350 __u8 command, __u8 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
2352 unsigned char *buffer;
2353 unsigned char *currentCommand;
2354 int length = 0;
2355 int status = 0;
2356
Harvey Harrison441b62c2008-03-03 16:08:34 -08002357 dbg("%s - %d, %d", __func__, command, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Alan Cox03f0dbf2008-07-22 11:16:34 +01002359 buffer = kmalloc(10, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 if (!buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002361 dev_err(&edge_port->port->dev,
2362 "%s - kmalloc(%d) failed.\n", __func__, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 return -ENOMEM;
2364 }
2365
2366 currentCommand = buffer;
2367
Alan Cox03f0dbf2008-07-22 11:16:34 +01002368 MAKE_CMD_EXT_CMD(&currentCommand, &length,
2369 edge_port->port->number - edge_port->port->serial->minor,
2370 command, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Alan Cox03f0dbf2008-07-22 11:16:34 +01002372 status = write_cmd_usb(edge_port, buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (status) {
2374 /* something bad happened, let's free up the memory */
2375 kfree(buffer);
2376 }
2377
2378 return status;
2379}
2380
2381
2382/*****************************************************************************
2383 * write_cmd_usb
2384 * this function writes the given buffer out to the bulk write endpoint.
2385 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002386static int write_cmd_usb(struct edgeport_port *edge_port,
2387 unsigned char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002389 struct edgeport_serial *edge_serial =
2390 usb_get_serial_data(edge_port->port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 int status = 0;
2392 struct urb *urb;
2393 int timeout;
2394
Alan Cox03f0dbf2008-07-22 11:16:34 +01002395 usb_serial_debug_data(debug, &edge_port->port->dev,
2396 __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398 /* Allocate our next urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002399 urb = usb_alloc_urb(0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 if (!urb)
2401 return -ENOMEM;
2402
Oliver Neukum96c706e2007-03-15 15:27:17 +01002403 atomic_inc(&CmdUrbs);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002404 dbg("%s - ALLOCATE URB %p (outstanding %d)",
2405 __func__, urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Alan Cox03f0dbf2008-07-22 11:16:34 +01002407 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
2408 usb_sndbulkpipe(edge_serial->serial->dev,
2409 edge_serial->bulk_out_endpoint),
2410 buffer, length, edge_bulk_out_cmd_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002412 edge_port->commandPending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 status = usb_submit_urb(urb, GFP_ATOMIC);
2414
2415 if (status) {
2416 /* something went wrong */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002417 dev_err(&edge_port->port->dev,
2418 "%s - usb_submit_urb(write command) failed, status = %d\n",
2419 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 usb_kill_urb(urb);
2421 usb_free_urb(urb);
Oliver Neukum96c706e2007-03-15 15:27:17 +01002422 atomic_dec(&CmdUrbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return status;
2424 }
2425
Alan Cox03f0dbf2008-07-22 11:16:34 +01002426 /* wait for command to finish */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 timeout = COMMAND_TIMEOUT;
2428#if 0
Alan Cox03f0dbf2008-07-22 11:16:34 +01002429 wait_event(&edge_port->wait_command, !edge_port->commandPending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002431 if (edge_port->commandPending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 /* command timed out */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002433 dbg("%s - command timed out", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 status = -EINVAL;
2435 }
2436#endif
2437 return status;
2438}
2439
2440
2441/*****************************************************************************
2442 * send_cmd_write_baud_rate
2443 * this function sends the proper command to change the baud rate of the
2444 * specified port.
2445 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002446static int send_cmd_write_baud_rate(struct edgeport_port *edge_port,
2447 int baudRate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002449 struct edgeport_serial *edge_serial =
2450 usb_get_serial_data(edge_port->port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 unsigned char *cmdBuffer;
2452 unsigned char *currCmd;
2453 int cmdLen = 0;
2454 int divisor;
2455 int status;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002456 unsigned char number =
2457 edge_port->port->number - edge_port->port->serial->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Adam Kropelinbc71e472007-07-29 11:03:29 -04002459 if (edge_serial->is_epic &&
2460 !edge_serial->epic_descriptor.Supports.IOSPSetBaudRate) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002461 dbg("SendCmdWriteBaudRate - NOT Setting baud rate for port = %d, baud = %d",
2462 edge_port->port->number, baudRate);
2463 return 0;
2464 }
2465
Alan Cox03f0dbf2008-07-22 11:16:34 +01002466 dbg("%s - port = %d, baud = %d", __func__,
2467 edge_port->port->number, baudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Alan Cox03f0dbf2008-07-22 11:16:34 +01002469 status = calc_baud_rate_divisor(baudRate, &divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (status) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002471 dev_err(&edge_port->port->dev, "%s - bad baud rate\n",
2472 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 return status;
2474 }
2475
Alan Cox03f0dbf2008-07-22 11:16:34 +01002476 /* Alloc memory for the string of commands. */
2477 cmdBuffer = kmalloc(0x100, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 if (!cmdBuffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002479 dev_err(&edge_port->port->dev,
2480 "%s - kmalloc(%d) failed.\n", __func__, 0x100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 return -ENOMEM;
2482 }
2483 currCmd = cmdBuffer;
2484
Alan Cox03f0dbf2008-07-22 11:16:34 +01002485 /* Enable access to divisor latch */
2486 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR, LCR_DL_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Alan Cox03f0dbf2008-07-22 11:16:34 +01002488 /* Write the divisor itself */
2489 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLL, LOW8(divisor));
2490 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLM, HIGH8(divisor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Alan Cox03f0dbf2008-07-22 11:16:34 +01002492 /* Restore original value to disable access to divisor latch */
2493 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR,
2494 edge_port->shadowLCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Alan Cox03f0dbf2008-07-22 11:16:34 +01002496 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (status) {
2498 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002499 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 }
2501
2502 return status;
2503}
2504
2505
2506/*****************************************************************************
2507 * calc_baud_rate_divisor
2508 * this function calculates the proper baud rate divisor for the specified
2509 * baud rate.
2510 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002511static int calc_baud_rate_divisor(int baudrate, int *divisor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
2513 int i;
2514 __u16 custom;
2515
2516
Harvey Harrison441b62c2008-03-03 16:08:34 -08002517 dbg("%s - %d", __func__, baudrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Tobias Klauser52950ed2005-12-11 16:20:08 +01002519 for (i = 0; i < ARRAY_SIZE(divisor_table); i++) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002520 if (divisor_table[i].BaudRate == baudrate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 *divisor = divisor_table[i].Divisor;
2522 return 0;
2523 }
2524 }
2525
Alan Cox03f0dbf2008-07-22 11:16:34 +01002526 /* We have tried all of the standard baud rates
2527 * lets try to calculate the divisor for this baud rate
2528 * Make sure the baud rate is reasonable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 if (baudrate > 50 && baudrate < 230400) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002530 /* get divisor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 custom = (__u16)((230400L + baudrate/2) / baudrate);
2532
2533 *divisor = custom;
2534
Harvey Harrison441b62c2008-03-03 16:08:34 -08002535 dbg("%s - Baud %d = %d\n", __func__, baudrate, custom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return 0;
2537 }
2538
2539 return -1;
2540}
2541
2542
2543/*****************************************************************************
2544 * send_cmd_write_uart_register
Alan Cox03f0dbf2008-07-22 11:16:34 +01002545 * this function builds up a uart register message and sends to to the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002547static int send_cmd_write_uart_register(struct edgeport_port *edge_port,
2548 __u8 regNum, __u8 regValue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002550 struct edgeport_serial *edge_serial =
2551 usb_get_serial_data(edge_port->port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 unsigned char *cmdBuffer;
2553 unsigned char *currCmd;
2554 unsigned long cmdLen = 0;
2555 int status;
2556
Alan Cox03f0dbf2008-07-22 11:16:34 +01002557 dbg("%s - write to %s register 0x%02x",
2558 (regNum == MCR) ? "MCR" : "LCR", __func__, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Adam Kropelinbc71e472007-07-29 11:03:29 -04002560 if (edge_serial->is_epic &&
2561 !edge_serial->epic_descriptor.Supports.IOSPWriteMCR &&
2562 regNum == MCR) {
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02002563 dbg("SendCmdWriteUartReg - Not writing to MCR Register");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002564 return 0;
2565 }
2566
Adam Kropelinbc71e472007-07-29 11:03:29 -04002567 if (edge_serial->is_epic &&
2568 !edge_serial->epic_descriptor.Supports.IOSPWriteLCR &&
2569 regNum == LCR) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002570 dbg("SendCmdWriteUartReg - Not writing to LCR Register");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002571 return 0;
2572 }
2573
Alan Cox03f0dbf2008-07-22 11:16:34 +01002574 /* Alloc memory for the string of commands. */
2575 cmdBuffer = kmalloc(0x10, GFP_ATOMIC);
2576 if (cmdBuffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
2579 currCmd = cmdBuffer;
2580
Alan Cox03f0dbf2008-07-22 11:16:34 +01002581 /* Build a cmd in the buffer to write the given register */
2582 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen,
2583 edge_port->port->number - edge_port->port->serial->minor,
2584 regNum, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
2586 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
2587 if (status) {
2588 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002589 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 }
2591
2592 return status;
2593}
2594
2595
2596/*****************************************************************************
2597 * change_port_settings
Alan Cox03f0dbf2008-07-22 11:16:34 +01002598 * This routine is called to set the UART on the device to match the
2599 * specified new settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01002601
2602static void change_port_settings(struct tty_struct *tty,
2603 struct edgeport_port *edge_port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002605 struct edgeport_serial *edge_serial =
2606 usb_get_serial_data(edge_port->port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 int baud;
2608 unsigned cflag;
2609 __u8 mask = 0xff;
2610 __u8 lData;
2611 __u8 lParity;
2612 __u8 lStop;
2613 __u8 rxFlow;
2614 __u8 txFlow;
2615 int status;
2616
Harvey Harrison441b62c2008-03-03 16:08:34 -08002617 dbg("%s - port %d", __func__, edge_port->port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002619 if (!edge_port->open &&
2620 !edge_port->openPending) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002621 dbg("%s - port not opened", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 return;
2623 }
2624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 cflag = tty->termios->c_cflag;
2626
2627 switch (cflag & CSIZE) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002628 case CS5:
2629 lData = LCR_BITS_5; mask = 0x1f;
2630 dbg("%s - data bits = 5", __func__);
2631 break;
2632 case CS6:
2633 lData = LCR_BITS_6; mask = 0x3f;
2634 dbg("%s - data bits = 6", __func__);
2635 break;
2636 case CS7:
2637 lData = LCR_BITS_7; mask = 0x7f;
2638 dbg("%s - data bits = 7", __func__);
2639 break;
2640 default:
2641 case CS8:
2642 lData = LCR_BITS_8;
2643 dbg("%s - data bits = 8", __func__);
2644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
2646
2647 lParity = LCR_PAR_NONE;
2648 if (cflag & PARENB) {
2649 if (cflag & CMSPAR) {
2650 if (cflag & PARODD) {
2651 lParity = LCR_PAR_MARK;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002652 dbg("%s - parity = mark", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 } else {
2654 lParity = LCR_PAR_SPACE;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002655 dbg("%s - parity = space", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 }
2657 } else if (cflag & PARODD) {
2658 lParity = LCR_PAR_ODD;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002659 dbg("%s - parity = odd", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 } else {
2661 lParity = LCR_PAR_EVEN;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002662 dbg("%s - parity = even", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 }
2664 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002665 dbg("%s - parity = none", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 }
2667
2668 if (cflag & CSTOPB) {
2669 lStop = LCR_STOP_2;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002670 dbg("%s - stop bits = 2", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 } else {
2672 lStop = LCR_STOP_1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002673 dbg("%s - stop bits = 1", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 }
2675
2676 /* figure out the flow control settings */
2677 rxFlow = txFlow = 0x00;
2678 if (cflag & CRTSCTS) {
2679 rxFlow |= IOSP_RX_FLOW_RTS;
2680 txFlow |= IOSP_TX_FLOW_CTS;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002681 dbg("%s - RTS/CTS is enabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002683 dbg("%s - RTS/CTS is disabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 }
2685
Alan Cox03f0dbf2008-07-22 11:16:34 +01002686 /* if we are implementing XON/XOFF, set the start and stop character
2687 in the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 if (I_IXOFF(tty) || I_IXON(tty)) {
2689 unsigned char stop_char = STOP_CHAR(tty);
2690 unsigned char start_char = START_CHAR(tty);
2691
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002692 if ((!edge_serial->is_epic) ||
2693 ((edge_serial->is_epic) &&
2694 (edge_serial->epic_descriptor.Supports.IOSPSetXChar))) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002695 send_iosp_ext_cmd(edge_port,
2696 IOSP_CMD_SET_XON_CHAR, start_char);
2697 send_iosp_ext_cmd(edge_port,
2698 IOSP_CMD_SET_XOFF_CHAR, stop_char);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
2701 /* if we are implementing INBOUND XON/XOFF */
2702 if (I_IXOFF(tty)) {
2703 rxFlow |= IOSP_RX_FLOW_XON_XOFF;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002704 dbg("%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
2705 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002707 dbg("%s - INBOUND XON/XOFF is disabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 }
2709
2710 /* if we are implementing OUTBOUND XON/XOFF */
2711 if (I_IXON(tty)) {
2712 txFlow |= IOSP_TX_FLOW_XON_XOFF;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002713 dbg("%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
2714 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002716 dbg("%s - OUTBOUND XON/XOFF is disabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 }
2718 }
2719
2720 /* Set flow control to the configured value */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002721 if ((!edge_serial->is_epic) ||
2722 ((edge_serial->is_epic) &&
2723 (edge_serial->epic_descriptor.Supports.IOSPSetRxFlow)))
2724 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_RX_FLOW, rxFlow);
2725 if ((!edge_serial->is_epic) ||
2726 ((edge_serial->is_epic) &&
2727 (edge_serial->epic_descriptor.Supports.IOSPSetTxFlow)))
2728 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_TX_FLOW, txFlow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730
2731 edge_port->shadowLCR &= ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
2732 edge_port->shadowLCR |= (lData | lParity | lStop);
2733
2734 edge_port->validDataMask = mask;
2735
2736 /* Send the updated LCR value to the EdgePort */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002737 status = send_cmd_write_uart_register(edge_port, LCR,
2738 edge_port->shadowLCR);
2739 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
2742 /* set up the MCR register and send it to the EdgePort */
2743 edge_port->shadowMCR = MCR_MASTER_IE;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002744 if (cflag & CBAUD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 edge_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002746
2747 status = send_cmd_write_uart_register(edge_port, MCR,
2748 edge_port->shadowMCR);
2749 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752 /* Determine divisor based on baud rate */
2753 baud = tty_get_baud_rate(tty);
2754 if (!baud) {
2755 /* pick a default, any default... */
2756 baud = 9600;
2757 }
2758
Harvey Harrison441b62c2008-03-03 16:08:34 -08002759 dbg("%s - baud rate = %d", __func__, baud);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002760 status = send_cmd_write_baud_rate(edge_port, baud);
Alan Cox6ce073b2007-10-18 01:24:25 -07002761 if (status == -1) {
2762 /* Speed change was not possible - put back the old speed */
2763 baud = tty_termios_baud_rate(old_termios);
2764 tty_encode_baud_rate(tty, baud, baud);
2765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return;
2767}
2768
2769
2770/****************************************************************************
2771 * unicode_to_ascii
2772 * Turns a string from Unicode into ASCII.
2773 * Doesn't do a good job with any characters that are outside the normal
2774 * ASCII range, but it's only for debugging...
2775 * NOTE: expects the unicode in LE format
2776 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002777static void unicode_to_ascii(char *string, int buflen,
2778 __le16 *unicode, int unicode_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
2780 int i;
2781
Pete Zaitcevad933752006-05-22 21:49:44 -07002782 if (buflen <= 0) /* never happens, but... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 return;
Pete Zaitcevad933752006-05-22 21:49:44 -07002784 --buflen; /* space for nul */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Pete Zaitcevad933752006-05-22 21:49:44 -07002786 for (i = 0; i < unicode_size; i++) {
2787 if (i >= buflen)
2788 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 string[i] = (char)(le16_to_cpu(unicode[i]));
Pete Zaitcevad933752006-05-22 21:49:44 -07002790 }
2791 string[i] = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
2794
2795/****************************************************************************
2796 * get_manufacturing_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002797 * reads in the manufacturing descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 * structure.
2799 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002800static void get_manufacturing_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
2802 int response;
2803
2804 dbg("getting manufacturer descriptor");
2805
Alan Cox03f0dbf2008-07-22 11:16:34 +01002806 response = rom_read(edge_serial->serial,
2807 (EDGE_MANUF_DESC_ADDR & 0xffff0000) >> 16,
2808 (__u16)(EDGE_MANUF_DESC_ADDR & 0x0000ffff),
2809 EDGE_MANUF_DESC_LEN,
2810 (__u8 *)(&edge_serial->manuf_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Alan Cox03f0dbf2008-07-22 11:16:34 +01002812 if (response < 1)
2813 dev_err(&edge_serial->serial->dev->dev,
2814 "error in getting manufacturer descriptor\n");
2815 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 char string[30];
2817 dbg("**Manufacturer Descriptor");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002818 dbg(" RomSize: %dK",
2819 edge_serial->manuf_descriptor.RomSize);
2820 dbg(" RamSize: %dK",
2821 edge_serial->manuf_descriptor.RamSize);
2822 dbg(" CpuRev: %d",
2823 edge_serial->manuf_descriptor.CpuRev);
2824 dbg(" BoardRev: %d",
2825 edge_serial->manuf_descriptor.BoardRev);
2826 dbg(" NumPorts: %d",
2827 edge_serial->manuf_descriptor.NumPorts);
2828 dbg(" DescDate: %d/%d/%d",
2829 edge_serial->manuf_descriptor.DescDate[0],
2830 edge_serial->manuf_descriptor.DescDate[1],
2831 edge_serial->manuf_descriptor.DescDate[2]+1900);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002832 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002833 edge_serial->manuf_descriptor.SerialNumber,
2834 edge_serial->manuf_descriptor.SerNumLength/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 dbg(" SerialNumber: %s", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002836 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002837 edge_serial->manuf_descriptor.AssemblyNumber,
2838 edge_serial->manuf_descriptor.AssemblyNumLength/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 dbg(" AssemblyNumber: %s", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002840 unicode_to_ascii(string, sizeof(string),
Pete Zaitcevad933752006-05-22 21:49:44 -07002841 edge_serial->manuf_descriptor.OemAssyNumber,
2842 edge_serial->manuf_descriptor.OemAssyNumLength/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 dbg(" OemAssyNumber: %s", string);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002844 dbg(" UartType: %d",
2845 edge_serial->manuf_descriptor.UartType);
2846 dbg(" IonPid: %d",
2847 edge_serial->manuf_descriptor.IonPid);
2848 dbg(" IonConfig: %d",
2849 edge_serial->manuf_descriptor.IonConfig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 }
2851}
2852
2853
2854/****************************************************************************
2855 * get_boot_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002856 * reads in the bootloader descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 * structure.
2858 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002859static void get_boot_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
2861 int response;
2862
2863 dbg("getting boot descriptor");
2864
Alan Cox03f0dbf2008-07-22 11:16:34 +01002865 response = rom_read(edge_serial->serial,
2866 (EDGE_BOOT_DESC_ADDR & 0xffff0000) >> 16,
2867 (__u16)(EDGE_BOOT_DESC_ADDR & 0x0000ffff),
2868 EDGE_BOOT_DESC_LEN,
2869 (__u8 *)(&edge_serial->boot_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Alan Cox03f0dbf2008-07-22 11:16:34 +01002871 if (response < 1)
2872 dev_err(&edge_serial->serial->dev->dev,
2873 "error in getting boot descriptor\n");
2874 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 dbg("**Boot Descriptor:");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002876 dbg(" BootCodeLength: %d",
2877 le16_to_cpu(edge_serial->boot_descriptor.BootCodeLength));
2878 dbg(" MajorVersion: %d",
2879 edge_serial->boot_descriptor.MajorVersion);
2880 dbg(" MinorVersion: %d",
2881 edge_serial->boot_descriptor.MinorVersion);
2882 dbg(" BuildNumber: %d",
2883 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber));
2884 dbg(" Capabilities: 0x%x",
2885 le16_to_cpu(edge_serial->boot_descriptor.Capabilities));
2886 dbg(" UConfig0: %d",
2887 edge_serial->boot_descriptor.UConfig0);
2888 dbg(" UConfig1: %d",
2889 edge_serial->boot_descriptor.UConfig1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 }
2891}
2892
2893
2894/****************************************************************************
2895 * load_application_firmware
2896 * This is called to load the application firmware to the device
2897 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002898static void load_application_firmware(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302900 const struct ihex_binrec *rec;
2901 const struct firmware *fw;
2902 const char *fw_name;
2903 const char *fw_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 int response;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302905 __u32 Operaddr;
2906 __u16 build;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908 switch (edge_serial->product_info.iDownloadFile) {
2909 case EDGE_DOWNLOAD_FILE_I930:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302910 fw_info = "downloading firmware version (930)";
2911 fw_name = "edgeport/down.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 break;
2913
2914 case EDGE_DOWNLOAD_FILE_80251:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302915 fw_info = "downloading firmware version (80251)";
2916 fw_name = "edgeport/down2.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 break;
2918
2919 case EDGE_DOWNLOAD_FILE_NONE:
2920 dbg ("No download file specified, skipping download\n");
2921 return;
2922
2923 default:
2924 return;
2925 }
2926
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302927 response = request_ihex_firmware(&fw, fw_name,
2928 &edge_serial->serial->dev->dev);
2929 if (response) {
2930 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
2931 fw_name, response);
2932 return;
2933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302935 rec = (const struct ihex_binrec *)fw->data;
2936 build = (rec->data[2] << 8) | rec->data[3];
2937
2938 dbg("%s %d.%d.%d", fw_info, rec->data[0], rec->data[1], build);
2939
2940 edge_serial->product_info.FirmwareMajorVersion = fw->data[0];
2941 edge_serial->product_info.FirmwareMinorVersion = fw->data[1];
2942 edge_serial->product_info.FirmwareBuildNumber = cpu_to_le16(build);
2943
2944 for (rec = ihex_next_binrec(rec); rec;
2945 rec = ihex_next_binrec(rec)) {
2946 Operaddr = be32_to_cpu(rec->addr);
2947 response = sram_write(edge_serial->serial,
2948 Operaddr >> 16,
2949 Operaddr & 0xFFFF,
2950 be16_to_cpu(rec->len),
2951 &rec->data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (response < 0) {
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302953 dev_err(&edge_serial->serial->dev->dev,
2954 "sram_write failed (%x, %x, %d)\n",
2955 Operaddr >> 16, Operaddr & 0xFFFF,
2956 be16_to_cpu(rec->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 break;
2958 }
2959 }
2960
2961 dbg("sending exec_dl_code");
2962 response = usb_control_msg (edge_serial->serial->dev,
2963 usb_sndctrlpipe(edge_serial->serial->dev, 0),
2964 USB_REQUEST_ION_EXEC_DL_CODE,
2965 0x40, 0x4000, 0x0001, NULL, 0, 3000);
2966
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302967 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 return;
2969}
2970
2971
2972/****************************************************************************
2973 * edge_startup
2974 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002975static int edge_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
2977 struct edgeport_serial *edge_serial;
2978 struct edgeport_port *edge_port;
2979 struct usb_device *dev;
Chris Lundbfd5df32006-06-03 13:58:19 -07002980 int i, j;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002981 int response;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002982 bool interrupt_in_found;
2983 bool bulk_in_found;
2984 bool bulk_out_found;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002985 static __u32 descriptor[3] = { EDGE_COMPATIBILITY_MASK0,
2986 EDGE_COMPATIBILITY_MASK1,
2987 EDGE_COMPATIBILITY_MASK2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989 dev = serial->dev;
2990
2991 /* create our private serial structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002992 edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 if (edge_serial == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002994 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 return -ENOMEM;
2996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 spin_lock_init(&edge_serial->es_lock);
2998 edge_serial->serial = serial;
2999 usb_set_serial_data(serial, edge_serial);
3000
3001 /* get the name for the device from the device */
Pete Zaitcevad933752006-05-22 21:49:44 -07003002 i = get_string(dev, dev->descriptor.iManufacturer,
3003 &edge_serial->name[0], MAX_NAME_LEN+1);
3004 edge_serial->name[i++] = ' ';
3005 get_string(dev, dev->descriptor.iProduct,
3006 &edge_serial->name[i], MAX_NAME_LEN+2 - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
3008 dev_info(&serial->dev->dev, "%s detected\n", edge_serial->name);
3009
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003010 /* Read the epic descriptor */
3011 if (get_epic_descriptor(edge_serial) <= 0) {
3012 /* memcpy descriptor to Supports structures */
3013 memcpy(&edge_serial->epic_descriptor.Supports, descriptor,
3014 sizeof(struct edge_compatibility_bits));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003016 /* get the manufacturing descriptor for this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003017 get_manufacturing_desc(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003019 /* get the boot descriptor */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003020 get_boot_desc(edge_serial);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003021
3022 get_product_info(edge_serial);
3023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025 /* set the number of ports from the manufacturing description */
3026 /* serial->num_ports = serial->product_info.NumPorts; */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003027 if ((!edge_serial->is_epic) &&
3028 (edge_serial->product_info.NumPorts != serial->num_ports)) {
3029 dev_warn(&serial->dev->dev, "Device Reported %d serial ports "
3030 "vs. core thinking we have %d ports, email "
Joe Perches898eb712007-10-18 03:06:30 -07003031 "greg@kroah.com this information.\n",
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003032 edge_serial->product_info.NumPorts,
3033 serial->num_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 }
3035
Harvey Harrison441b62c2008-03-03 16:08:34 -08003036 dbg("%s - time 1 %ld", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003038 /* If not an EPiC device */
3039 if (!edge_serial->is_epic) {
3040 /* now load the application firmware into this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003041 load_application_firmware(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Harvey Harrison441b62c2008-03-03 16:08:34 -08003043 dbg("%s - time 2 %ld", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003045 /* Check current Edgeport EEPROM and update if necessary */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003046 update_edgeport_E2PROM(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Harvey Harrison441b62c2008-03-03 16:08:34 -08003048 dbg("%s - time 3 %ld", __func__, jiffies);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003049
3050 /* set the configuration to use #1 */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003051/* dbg("set_configuration 1"); */
3052/* usb_set_configuration (dev, 1); */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003053 }
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05303054 dbg(" FirmwareMajorVersion %d.%d.%d",
3055 edge_serial->product_info.FirmwareMajorVersion,
3056 edge_serial->product_info.FirmwareMinorVersion,
3057 le16_to_cpu(edge_serial->product_info.FirmwareBuildNumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Alan Cox03f0dbf2008-07-22 11:16:34 +01003059 /* we set up the pointers to the endpoints in the edge_open function,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 * as the structures aren't created yet. */
3061
3062 /* set up our port private structures */
3063 for (i = 0; i < serial->num_ports; ++i) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01003064 edge_port = kmalloc(sizeof(struct edgeport_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 if (edge_port == NULL) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01003066 dev_err(&serial->dev->dev, "%s - Out of memory\n",
3067 __func__);
Chris Lundbfd5df32006-06-03 13:58:19 -07003068 for (j = 0; j < i; ++j) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01003069 kfree(usb_get_serial_port_data(serial->port[j]));
3070 usb_set_serial_port_data(serial->port[j],
3071 NULL);
Chris Lundbfd5df32006-06-03 13:58:19 -07003072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 usb_set_serial_data(serial, NULL);
3074 kfree(edge_serial);
3075 return -ENOMEM;
3076 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01003077 memset(edge_port, 0, sizeof(struct edgeport_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 spin_lock_init(&edge_port->ep_lock);
3079 edge_port->port = serial->port[i];
3080 usb_set_serial_port_data(serial->port[i], edge_port);
3081 }
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003082
3083 response = 0;
3084
3085 if (edge_serial->is_epic) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01003086 /* EPIC thing, set up our interrupt polling now and our read
3087 * urb, so that the device knows it really is connected. */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003088 interrupt_in_found = bulk_in_found = bulk_out_found = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +01003089 for (i = 0; i < serial->interface->altsetting[0]
3090 .desc.bNumEndpoints; ++i) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003091 struct usb_endpoint_descriptor *endpoint;
3092 int buffer_size;
3093
Alan Cox03f0dbf2008-07-22 11:16:34 +01003094 endpoint = &serial->interface->altsetting[0].
3095 endpoint[i].desc;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003096 buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003097 if (!interrupt_in_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003098 (usb_endpoint_is_int_in(endpoint))) {
3099 /* we found a interrupt in endpoint */
3100 dbg("found interrupt in");
3101
3102 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003103 edge_serial->interrupt_read_urb =
3104 usb_alloc_urb(0, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003105 if (!edge_serial->interrupt_read_urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07003106 dev_err(&dev->dev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003107 return -ENOMEM;
3108 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01003109 edge_serial->interrupt_in_buffer =
3110 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003111 if (!edge_serial->interrupt_in_buffer) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07003112 dev_err(&dev->dev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003113 usb_free_urb(edge_serial->interrupt_read_urb);
3114 return -ENOMEM;
3115 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01003116 edge_serial->interrupt_in_endpoint =
3117 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003118
3119 /* set up our interrupt urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003120 usb_fill_int_urb(
3121 edge_serial->interrupt_read_urb,
3122 dev,
3123 usb_rcvintpipe(dev,
3124 endpoint->bEndpointAddress),
3125 edge_serial->interrupt_in_buffer,
3126 buffer_size,
3127 edge_interrupt_callback,
3128 edge_serial,
3129 endpoint->bInterval);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003130
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003131 interrupt_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003132 }
3133
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003134 if (!bulk_in_found &&
Alan Cox03f0dbf2008-07-22 11:16:34 +01003135 (usb_endpoint_is_bulk_in(endpoint))) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003136 /* we found a bulk in endpoint */
3137 dbg("found bulk in");
3138
3139 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003140 edge_serial->read_urb =
3141 usb_alloc_urb(0, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003142 if (!edge_serial->read_urb) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07003143 dev_err(&dev->dev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003144 return -ENOMEM;
3145 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01003146 edge_serial->bulk_in_buffer =
3147 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003148 if (!edge_serial->bulk_in_buffer) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07003149 dev_err(&dev->dev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003150 usb_free_urb(edge_serial->read_urb);
3151 return -ENOMEM;
3152 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01003153 edge_serial->bulk_in_endpoint =
3154 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003155
3156 /* set up our bulk in urb */
3157 usb_fill_bulk_urb(edge_serial->read_urb, dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +01003158 usb_rcvbulkpipe(dev,
3159 endpoint->bEndpointAddress),
3160 edge_serial->bulk_in_buffer,
3161 le16_to_cpu(endpoint->wMaxPacketSize),
3162 edge_bulk_in_callback,
3163 edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003164 bulk_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003165 }
3166
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003167 if (!bulk_out_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003168 (usb_endpoint_is_bulk_out(endpoint))) {
3169 /* we found a bulk out endpoint */
3170 dbg("found bulk out");
Alan Cox03f0dbf2008-07-22 11:16:34 +01003171 edge_serial->bulk_out_endpoint =
3172 endpoint->bEndpointAddress;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003173 bulk_out_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003174 }
3175 }
3176
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01003177 if (!interrupt_in_found || !bulk_in_found || !bulk_out_found) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07003178 dev_err(&dev->dev, "Error - the proper endpoints "
3179 "were not found!\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003180 return -ENODEV;
3181 }
3182
3183 /* start interrupt read for this edgeport this interrupt will
3184 * continue as long as the edgeport is connected */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003185 response = usb_submit_urb(edge_serial->interrupt_read_urb,
3186 GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003187 if (response)
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07003188 dev_err(&dev->dev,
3189 "%s - Error %d submitting control urb\n",
3190 __func__, response);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003191 }
3192 return response;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193}
3194
3195
3196/****************************************************************************
Alan Sternf9c99bb2009-06-02 11:53:55 -04003197 * edge_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 * This function is called whenever the device is removed from the usb bus.
3199 ****************************************************************************/
Alan Sternf9c99bb2009-06-02 11:53:55 -04003200static void edge_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201{
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003202 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Harvey Harrison441b62c2008-03-03 16:08:34 -08003204 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 /* stop reads and writes on all ports */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003207 /* free up our endpoint stuff */
3208 if (edge_serial->is_epic) {
Oliver Neukum74ac07e2007-06-13 18:50:41 +02003209 usb_kill_urb(edge_serial->interrupt_read_urb);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003210 usb_free_urb(edge_serial->interrupt_read_urb);
3211 kfree(edge_serial->interrupt_in_buffer);
3212
Oliver Neukum74ac07e2007-06-13 18:50:41 +02003213 usb_kill_urb(edge_serial->read_urb);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003214 usb_free_urb(edge_serial->read_urb);
3215 kfree(edge_serial->bulk_in_buffer);
3216 }
Alan Sternf9c99bb2009-06-02 11:53:55 -04003217}
3218
3219
3220/****************************************************************************
3221 * edge_release
3222 * This function is called when the device structure is deallocated.
3223 ****************************************************************************/
3224static void edge_release(struct usb_serial *serial)
3225{
3226 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
3227 int i;
3228
3229 dbg("%s", __func__);
3230
3231 for (i = 0; i < serial->num_ports; ++i)
3232 kfree(usb_get_serial_port_data(serial->port[i]));
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003233
3234 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235}
3236
3237
3238/****************************************************************************
3239 * edgeport_init
3240 * This is called by the module subsystem, or on startup to initialize us
3241 ****************************************************************************/
3242static int __init edgeport_init(void)
3243{
3244 int retval;
3245
3246 retval = usb_serial_register(&edgeport_2port_device);
3247 if (retval)
3248 goto failed_2port_device_register;
3249 retval = usb_serial_register(&edgeport_4port_device);
3250 if (retval)
3251 goto failed_4port_device_register;
3252 retval = usb_serial_register(&edgeport_8port_device);
3253 if (retval)
3254 goto failed_8port_device_register;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003255 retval = usb_serial_register(&epic_device);
3256 if (retval)
3257 goto failed_epic_device_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 retval = usb_register(&io_driver);
Alan Cox03f0dbf2008-07-22 11:16:34 +01003259 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 goto failed_usb_register;
Oliver Neukum96c706e2007-03-15 15:27:17 +01003261 atomic_set(&CmdUrbs, 0);
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07003262 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
3263 DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 return 0;
3265
3266failed_usb_register:
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003267 usb_serial_deregister(&epic_device);
3268failed_epic_device_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 usb_serial_deregister(&edgeport_8port_device);
3270failed_8port_device_register:
3271 usb_serial_deregister(&edgeport_4port_device);
3272failed_4port_device_register:
3273 usb_serial_deregister(&edgeport_2port_device);
3274failed_2port_device_register:
3275 return retval;
3276}
3277
3278
3279/****************************************************************************
3280 * edgeport_exit
3281 * Called when the driver is about to be unloaded.
3282 ****************************************************************************/
3283static void __exit edgeport_exit (void)
3284{
Alan Cox03f0dbf2008-07-22 11:16:34 +01003285 usb_deregister(&io_driver);
3286 usb_serial_deregister(&edgeport_2port_device);
3287 usb_serial_deregister(&edgeport_4port_device);
3288 usb_serial_deregister(&edgeport_8port_device);
3289 usb_serial_deregister(&epic_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
3292module_init(edgeport_init);
3293module_exit(edgeport_exit);
3294
3295/* Module information */
Alan Cox03f0dbf2008-07-22 11:16:34 +01003296MODULE_AUTHOR(DRIVER_AUTHOR);
3297MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298MODULE_LICENSE("GPL");
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05303299MODULE_FIRMWARE("edgeport/boot.fw");
3300MODULE_FIRMWARE("edgeport/boot2.fw");
3301MODULE_FIRMWARE("edgeport/down.fw");
3302MODULE_FIRMWARE("edgeport/down2.fw");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
3304module_param(debug, bool, S_IRUGO | S_IWUSR);
3305MODULE_PARM_DESC(debug, "Debug enabled or not");