blob: c91481d74a144fd2ae2810a2f778b30a63e78310 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com> and David Iacovelli"
55#define DRIVER_DESC "Edgeport USB Serial Driver"
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define MAX_NAME_LEN 64
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define OPEN_TIMEOUT (5*HZ) /* 5 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* receive port state */
62enum RXSTATE {
Alan Cox03f0dbf2008-07-22 11:16:34 +010063 EXPECT_HDR1 = 0, /* Expect header byte 1 */
64 EXPECT_HDR2 = 1, /* Expect header byte 2 */
65 EXPECT_DATA = 2, /* Expect 'RxBytesRemaining' data */
66 EXPECT_HDR3 = 3, /* Expect header byte 3 (for status hdrs only) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
69
Alan Cox03f0dbf2008-07-22 11:16:34 +010070/* Transmit Fifo
71 * This Transmit queue is an extension of the edgeport Rx buffer.
72 * The maximum amount of data buffered in both the edgeport
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * Rx buffer (maxTxCredits) and this buffer will never exceed maxTxCredits.
74 */
75struct TxFifo {
76 unsigned int head; /* index to head pointer (write) */
77 unsigned int tail; /* index to tail pointer (read) */
78 unsigned int count; /* Bytes in queue */
79 unsigned int size; /* Max size of queue (equal to Max number of TxCredits) */
80 unsigned char *fifo; /* allocated Buffer */
81};
82
83/* This structure holds all of the local port information */
84struct edgeport_port {
85 __u16 txCredits; /* our current credits for this port */
86 __u16 maxTxCredits; /* the max size of the port */
87
88 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */
89 struct urb *write_urb; /* write URB for this port */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +010090 bool write_in_progress; /* 'true' while a write URB is outstanding */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 spinlock_t ep_lock;
92
93 __u8 shadowLCR; /* last LCR value received */
94 __u8 shadowMCR; /* last MCR value received */
95 __u8 shadowMSR; /* last MSR value received */
96 __u8 shadowLSR; /* last LSR value received */
97 __u8 shadowXonChar; /* last value set as XON char in Edgeport */
98 __u8 shadowXoffChar; /* last value set as XOFF char in Edgeport */
99 __u8 validDataMask;
100 __u32 baudRate;
101
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100102 bool open;
103 bool openPending;
104 bool commandPending;
105 bool closePending;
106 bool chaseResponsePending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
109 wait_queue_head_t wait_open; /* for handling sleeping while waiting for open to finish */
110 wait_queue_head_t wait_command; /* for handling sleeping while waiting for command to finish */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct usb_serial_port *port; /* loop back to the owner of this object */
113};
114
115
116/* This structure holds all of the individual device information */
117struct edgeport_serial {
Pete Zaitcevad933752006-05-22 21:49:44 -0700118 char name[MAX_NAME_LEN+2]; /* string name of this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 struct edge_manuf_descriptor manuf_descriptor; /* the manufacturer descriptor */
121 struct edge_boot_descriptor boot_descriptor; /* the boot firmware descriptor */
122 struct edgeport_product_info product_info; /* Product Info */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800123 struct edge_compatibility_descriptor epic_descriptor; /* Edgeport compatible descriptor */
124 int is_epic; /* flag if EPiC device or not */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 __u8 interrupt_in_endpoint; /* the interrupt endpoint handle */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100127 unsigned char *interrupt_in_buffer; /* the buffer we use for the interrupt endpoint */
128 struct urb *interrupt_read_urb; /* our interrupt urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 __u8 bulk_in_endpoint; /* the bulk in endpoint handle */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100131 unsigned char *bulk_in_buffer; /* the buffer we use for the bulk in endpoint */
132 struct urb *read_urb; /* our bulk read urb */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100133 bool read_in_progress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 spinlock_t es_lock;
135
136 __u8 bulk_out_endpoint; /* the bulk out endpoint handle */
137
138 __s16 rxBytesAvail; /* the number of bytes that we need to read from this device */
139
140 enum RXSTATE rxState; /* the current state of the bulk receive processor */
141 __u8 rxHeader1; /* receive header byte 1 */
142 __u8 rxHeader2; /* receive header byte 2 */
143 __u8 rxHeader3; /* receive header byte 3 */
144 __u8 rxPort; /* the port that we are currently receiving data for */
145 __u8 rxStatusCode; /* the receive status code */
146 __u8 rxStatusParam; /* the receive status paramater */
147 __s16 rxBytesRemaining; /* the number of port bytes left to read */
148 struct usb_serial *serial; /* loop back to the owner of this object */
149};
150
151/* baud rate information */
152struct divisor_table_entry {
153 __u32 BaudRate;
154 __u16 Divisor;
155};
156
Alan Cox03f0dbf2008-07-22 11:16:34 +0100157/*
158 * Define table of divisors for Rev A EdgePort/4 hardware
159 * These assume a 3.6864MHz crystal, the standard /16, and
160 * MCR.7 = 0.
161 */
162
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100163static const struct divisor_table_entry divisor_table[] = {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100164 { 50, 4608},
165 { 75, 3072},
166 { 110, 2095}, /* 2094.545455 => 230450 => .0217 % over */
167 { 134, 1713}, /* 1713.011152 => 230398.5 => .00065% under */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 { 150, 1536},
169 { 300, 768},
170 { 600, 384},
171 { 1200, 192},
172 { 1800, 128},
173 { 2400, 96},
174 { 4800, 48},
175 { 7200, 32},
176 { 9600, 24},
177 { 14400, 16},
178 { 19200, 12},
179 { 38400, 6},
180 { 57600, 4},
181 { 115200, 2},
182 { 230400, 1},
183};
184
Greg Kroah-Hartman36ccce42012-02-28 13:11:51 -0800185/* Number of outstanding Command Write Urbs */
186static atomic_t CmdUrbs = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188
189/* local function prototypes */
190
191/* function prototypes for all URB callbacks */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100192static void edge_interrupt_callback(struct urb *urb);
193static void edge_bulk_in_callback(struct urb *urb);
194static void edge_bulk_out_data_callback(struct urb *urb);
195static void edge_bulk_out_cmd_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197/* function prototypes for the usbserial callbacks */
Alan Coxa509a7e2009-09-19 13:13:26 -0700198static int edge_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +0100199static void edge_close(struct usb_serial_port *port);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100200static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
201 const unsigned char *buf, int count);
202static int edge_write_room(struct tty_struct *tty);
203static int edge_chars_in_buffer(struct tty_struct *tty);
204static void edge_throttle(struct tty_struct *tty);
205static void edge_unthrottle(struct tty_struct *tty);
206static void edge_set_termios(struct tty_struct *tty,
207 struct usb_serial_port *port,
208 struct ktermios *old_termios);
Alan Cox00a0d0d2011-02-14 16:27:06 +0000209static int edge_ioctl(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100210 unsigned int cmd, unsigned long arg);
211static void edge_break(struct tty_struct *tty, int break_state);
Alan Cox60b33c12011-02-14 16:26:14 +0000212static int edge_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000213static int edge_tiocmset(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100214 unsigned int set, unsigned int clear);
215static int edge_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400216static void edge_disconnect(struct usb_serial *serial);
217static void edge_release(struct usb_serial *serial);
Johan Hovoldc27f3ef2012-10-17 13:34:57 +0200218static int edge_port_probe(struct usb_serial_port *port);
219static int edge_port_remove(struct usb_serial_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221#include "io_tables.h" /* all of the devices that this driver supports */
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/* function prototypes for all of our local functions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Alan Cox03f0dbf2008-07-22 11:16:34 +0100225static void process_rcvd_data(struct edgeport_serial *edge_serial,
226 unsigned char *buffer, __u16 bufferLength);
227static void process_rcvd_status(struct edgeport_serial *edge_serial,
228 __u8 byte2, __u8 byte3);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100229static void edge_tty_recv(struct usb_serial_port *port, unsigned char *data,
230 int length);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100231static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr);
232static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
233 __u8 lsr, __u8 data);
234static int send_iosp_ext_cmd(struct edgeport_port *edge_port, __u8 command,
235 __u8 param);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700236static int calc_baud_rate_divisor(struct device *dev, int baud_rate, int *divisor);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100237static int send_cmd_write_baud_rate(struct edgeport_port *edge_port,
238 int baudRate);
239static void change_port_settings(struct tty_struct *tty,
240 struct edgeport_port *edge_port,
241 struct ktermios *old_termios);
242static int send_cmd_write_uart_register(struct edgeport_port *edge_port,
243 __u8 regNum, __u8 regValue);
244static int write_cmd_usb(struct edgeport_port *edge_port,
245 unsigned char *buffer, int writeLength);
246static void send_more_port_data(struct edgeport_serial *edge_serial,
247 struct edgeport_port *edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Alan Cox03f0dbf2008-07-22 11:16:34 +0100249static int sram_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
250 __u16 length, const __u8 *data);
251static int rom_read(struct usb_serial *serial, __u16 extAddr, __u16 addr,
252 __u16 length, __u8 *data);
253static int rom_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
254 __u16 length, const __u8 *data);
255static void get_manufacturing_desc(struct edgeport_serial *edge_serial);
256static void get_boot_desc(struct edgeport_serial *edge_serial);
257static void load_application_firmware(struct edgeport_serial *edge_serial);
258
259static void unicode_to_ascii(char *string, int buflen,
260 __le16 *unicode, int unicode_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262
Alan Cox03f0dbf2008-07-22 11:16:34 +0100263/* ************************************************************************ */
264/* ************************************************************************ */
265/* ************************************************************************ */
266/* ************************************************************************ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268/************************************************************************
269 * *
270 * update_edgeport_E2PROM() Compare current versions of *
271 * Boot ROM and Manufacture *
272 * Descriptors with versions *
273 * embedded in this driver *
274 * *
275 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100276static void update_edgeport_E2PROM(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700278 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 __u32 BootCurVer;
280 __u32 BootNewVer;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530281 __u8 BootMajorVersion;
282 __u8 BootMinorVersion;
283 __u16 BootBuildNumber;
284 __u32 Bootaddr;
285 const struct ihex_binrec *rec;
286 const struct firmware *fw;
287 const char *fw_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int response;
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 switch (edge_serial->product_info.iDownloadFile) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100291 case EDGE_DOWNLOAD_FILE_I930:
292 fw_name = "edgeport/boot.fw";
293 break;
294 case EDGE_DOWNLOAD_FILE_80251:
295 fw_name = "edgeport/boot2.fw";
296 break;
297 default:
298 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530301 response = request_ihex_firmware(&fw, fw_name,
302 &edge_serial->serial->dev->dev);
303 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700304 dev_err(dev, "Failed to load image \"%s\" err %d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530305 fw_name, response);
306 return;
307 }
308
309 rec = (const struct ihex_binrec *)fw->data;
310 BootMajorVersion = rec->data[0];
311 BootMinorVersion = rec->data[1];
312 BootBuildNumber = (rec->data[2] << 8) | rec->data[3];
313
Alan Cox03f0dbf2008-07-22 11:16:34 +0100314 /* Check Boot Image Version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 BootCurVer = (edge_serial->boot_descriptor.MajorVersion << 24) +
316 (edge_serial->boot_descriptor.MinorVersion << 16) +
317 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber);
318
319 BootNewVer = (BootMajorVersion << 24) +
320 (BootMinorVersion << 16) +
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530321 BootBuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700323 dev_dbg(dev, "Current Boot Image version %d.%d.%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 edge_serial->boot_descriptor.MajorVersion,
325 edge_serial->boot_descriptor.MinorVersion,
326 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber));
327
328
329 if (BootNewVer > BootCurVer) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700330 dev_dbg(dev, "**Update Boot Image from %d.%d.%d to %d.%d.%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 edge_serial->boot_descriptor.MajorVersion,
332 edge_serial->boot_descriptor.MinorVersion,
333 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber),
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530334 BootMajorVersion, BootMinorVersion, BootBuildNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700336 dev_dbg(dev, "Downloading new Boot Image\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530338 for (rec = ihex_next_binrec(rec); rec;
339 rec = ihex_next_binrec(rec)) {
340 Bootaddr = be32_to_cpu(rec->addr);
341 response = rom_write(edge_serial->serial,
342 Bootaddr >> 16,
343 Bootaddr & 0xFFFF,
344 be16_to_cpu(rec->len),
345 &rec->data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (response < 0) {
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530347 dev_err(&edge_serial->serial->dev->dev,
348 "rom_write failed (%x, %x, %d)\n",
349 Bootaddr >> 16, Bootaddr & 0xFFFF,
350 be16_to_cpu(rec->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 break;
352 }
353 }
354 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700355 dev_dbg(dev, "Boot Image -- already up to date\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530357 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360#if 0
361/************************************************************************
362 *
363 * Get string descriptor from device
364 *
365 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100366static int get_string_desc(struct usb_device *dev, int Id,
367 struct usb_string_descriptor **pRetDesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 struct usb_string_descriptor StringDesc;
370 struct usb_string_descriptor *pStringDesc;
371
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700372 dev_dbg(&dev->dev, "%s - USB String ID = %d\n", __func__, Id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Alan Cox03f0dbf2008-07-22 11:16:34 +0100374 if (!usb_get_descriptor(dev, USB_DT_STRING, Id, &StringDesc,
375 sizeof(StringDesc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Alan Cox03f0dbf2008-07-22 11:16:34 +0100378 pStringDesc = kmalloc(StringDesc.bLength, GFP_KERNEL);
379 if (!pStringDesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Alan Cox03f0dbf2008-07-22 11:16:34 +0100382 if (!usb_get_descriptor(dev, USB_DT_STRING, Id, pStringDesc,
383 StringDesc.bLength)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 kfree(pStringDesc);
385 return -1;
386 }
387
388 *pRetDesc = pStringDesc;
389 return 0;
390}
391#endif
392
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700393static void dump_product_info(struct edgeport_serial *edge_serial,
394 struct edgeport_product_info *product_info)
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800395{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700396 struct device *dev = &edge_serial->serial->dev->dev;
397
Alan Cox03f0dbf2008-07-22 11:16:34 +0100398 /* Dump Product Info structure */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700399 dev_dbg(dev, "**Product Information:\n");
400 dev_dbg(dev, " ProductId %x\n", product_info->ProductId);
401 dev_dbg(dev, " NumPorts %d\n", product_info->NumPorts);
402 dev_dbg(dev, " ProdInfoVer %d\n", product_info->ProdInfoVer);
403 dev_dbg(dev, " IsServer %d\n", product_info->IsServer);
404 dev_dbg(dev, " IsRS232 %d\n", product_info->IsRS232);
405 dev_dbg(dev, " IsRS422 %d\n", product_info->IsRS422);
406 dev_dbg(dev, " IsRS485 %d\n", product_info->IsRS485);
407 dev_dbg(dev, " RomSize %d\n", product_info->RomSize);
408 dev_dbg(dev, " RamSize %d\n", product_info->RamSize);
409 dev_dbg(dev, " CpuRev %x\n", product_info->CpuRev);
410 dev_dbg(dev, " BoardRev %x\n", product_info->BoardRev);
411 dev_dbg(dev, " BootMajorVersion %d.%d.%d\n",
412 product_info->BootMajorVersion,
413 product_info->BootMinorVersion,
414 le16_to_cpu(product_info->BootBuildNumber));
415 dev_dbg(dev, " FirmwareMajorVersion %d.%d.%d\n",
416 product_info->FirmwareMajorVersion,
417 product_info->FirmwareMinorVersion,
418 le16_to_cpu(product_info->FirmwareBuildNumber));
419 dev_dbg(dev, " ManufactureDescDate %d/%d/%d\n",
420 product_info->ManufactureDescDate[0],
421 product_info->ManufactureDescDate[1],
422 product_info->ManufactureDescDate[2]+1900);
423 dev_dbg(dev, " iDownloadFile 0x%x\n",
424 product_info->iDownloadFile);
425 dev_dbg(dev, " EpicVer %d\n", product_info->EpicVer);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800426}
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428static void get_product_info(struct edgeport_serial *edge_serial)
429{
430 struct edgeport_product_info *product_info = &edge_serial->product_info;
431
Alan Cox03f0dbf2008-07-22 11:16:34 +0100432 memset(product_info, 0, sizeof(struct edgeport_product_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Alan Cox03f0dbf2008-07-22 11:16:34 +0100434 product_info->ProductId = (__u16)(le16_to_cpu(edge_serial->serial->dev->descriptor.idProduct) & ~ION_DEVICE_ID_80251_NETCHIP);
435 product_info->NumPorts = edge_serial->manuf_descriptor.NumPorts;
436 product_info->ProdInfoVer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Alan Cox03f0dbf2008-07-22 11:16:34 +0100438 product_info->RomSize = edge_serial->manuf_descriptor.RomSize;
439 product_info->RamSize = edge_serial->manuf_descriptor.RamSize;
440 product_info->CpuRev = edge_serial->manuf_descriptor.CpuRev;
441 product_info->BoardRev = edge_serial->manuf_descriptor.BoardRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Alan Cox03f0dbf2008-07-22 11:16:34 +0100443 product_info->BootMajorVersion =
444 edge_serial->boot_descriptor.MajorVersion;
445 product_info->BootMinorVersion =
446 edge_serial->boot_descriptor.MinorVersion;
447 product_info->BootBuildNumber =
448 edge_serial->boot_descriptor.BuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Alan Cox03f0dbf2008-07-22 11:16:34 +0100450 memcpy(product_info->ManufactureDescDate,
451 edge_serial->manuf_descriptor.DescDate,
452 sizeof(edge_serial->manuf_descriptor.DescDate));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Alan Cox03f0dbf2008-07-22 11:16:34 +0100454 /* check if this is 2nd generation hardware */
455 if (le16_to_cpu(edge_serial->serial->dev->descriptor.idProduct)
456 & ION_DEVICE_ID_80251_NETCHIP)
457 product_info->iDownloadFile = EDGE_DOWNLOAD_FILE_80251;
458 else
459 product_info->iDownloadFile = EDGE_DOWNLOAD_FILE_I930;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700460
Alan Cox03f0dbf2008-07-22 11:16:34 +0100461 /* Determine Product type and set appropriate flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 switch (DEVICE_ID_FROM_USB_PRODUCT_ID(product_info->ProductId)) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100463 case ION_DEVICE_ID_EDGEPORT_COMPATIBLE:
464 case ION_DEVICE_ID_EDGEPORT_4T:
465 case ION_DEVICE_ID_EDGEPORT_4:
466 case ION_DEVICE_ID_EDGEPORT_2:
467 case ION_DEVICE_ID_EDGEPORT_8_DUAL_CPU:
468 case ION_DEVICE_ID_EDGEPORT_8:
469 case ION_DEVICE_ID_EDGEPORT_421:
470 case ION_DEVICE_ID_EDGEPORT_21:
471 case ION_DEVICE_ID_EDGEPORT_2_DIN:
472 case ION_DEVICE_ID_EDGEPORT_4_DIN:
473 case ION_DEVICE_ID_EDGEPORT_16_DUAL_CPU:
474 product_info->IsRS232 = 1;
475 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Alan Cox03f0dbf2008-07-22 11:16:34 +0100477 case ION_DEVICE_ID_EDGEPORT_2I: /* Edgeport/2 RS422/RS485 */
478 product_info->IsRS422 = 1;
479 product_info->IsRS485 = 1;
480 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Alan Cox03f0dbf2008-07-22 11:16:34 +0100482 case ION_DEVICE_ID_EDGEPORT_8I: /* Edgeport/4 RS422 */
483 case ION_DEVICE_ID_EDGEPORT_4I: /* Edgeport/4 RS422 */
484 product_info->IsRS422 = 1;
485 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700488 dump_product_info(edge_serial, product_info);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800489}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800491static int get_epic_descriptor(struct edgeport_serial *ep)
492{
493 int result;
494 struct usb_serial *serial = ep->serial;
495 struct edgeport_product_info *product_info = &ep->product_info;
496 struct edge_compatibility_descriptor *epic = &ep->epic_descriptor;
497 struct edge_compatibility_bits *bits;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700498 struct device *dev = &serial->dev->dev;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800499
500 ep->is_epic = 0;
501 result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
502 USB_REQUEST_ION_GET_EPIC_DESC,
503 0xC0, 0x00, 0x00,
504 &ep->epic_descriptor,
505 sizeof(struct edge_compatibility_descriptor),
506 300);
507
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800508 if (result > 0) {
509 ep->is_epic = 1;
510 memset(product_info, 0, sizeof(struct edgeport_product_info));
511
Alan Cox03f0dbf2008-07-22 11:16:34 +0100512 product_info->NumPorts = epic->NumPorts;
513 product_info->ProdInfoVer = 0;
514 product_info->FirmwareMajorVersion = epic->MajorVersion;
515 product_info->FirmwareMinorVersion = epic->MinorVersion;
516 product_info->FirmwareBuildNumber = epic->BuildNumber;
517 product_info->iDownloadFile = epic->iDownloadFile;
518 product_info->EpicVer = epic->EpicVer;
519 product_info->Epic = epic->Supports;
520 product_info->ProductId = ION_DEVICE_ID_EDGEPORT_COMPATIBLE;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700521 dump_product_info(ep, product_info);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800522
523 bits = &ep->epic_descriptor.Supports;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700524 dev_dbg(dev, "**EPIC descriptor:\n");
525 dev_dbg(dev, " VendEnableSuspend: %s\n", bits->VendEnableSuspend ? "TRUE": "FALSE");
526 dev_dbg(dev, " IOSPOpen : %s\n", bits->IOSPOpen ? "TRUE": "FALSE");
527 dev_dbg(dev, " IOSPClose : %s\n", bits->IOSPClose ? "TRUE": "FALSE");
528 dev_dbg(dev, " IOSPChase : %s\n", bits->IOSPChase ? "TRUE": "FALSE");
529 dev_dbg(dev, " IOSPSetRxFlow : %s\n", bits->IOSPSetRxFlow ? "TRUE": "FALSE");
530 dev_dbg(dev, " IOSPSetTxFlow : %s\n", bits->IOSPSetTxFlow ? "TRUE": "FALSE");
531 dev_dbg(dev, " IOSPSetXChar : %s\n", bits->IOSPSetXChar ? "TRUE": "FALSE");
532 dev_dbg(dev, " IOSPRxCheck : %s\n", bits->IOSPRxCheck ? "TRUE": "FALSE");
533 dev_dbg(dev, " IOSPSetClrBreak : %s\n", bits->IOSPSetClrBreak ? "TRUE": "FALSE");
534 dev_dbg(dev, " IOSPWriteMCR : %s\n", bits->IOSPWriteMCR ? "TRUE": "FALSE");
535 dev_dbg(dev, " IOSPWriteLCR : %s\n", bits->IOSPWriteLCR ? "TRUE": "FALSE");
536 dev_dbg(dev, " IOSPSetBaudRate : %s\n", bits->IOSPSetBaudRate ? "TRUE": "FALSE");
537 dev_dbg(dev, " TrueEdgeport : %s\n", bits->TrueEdgeport ? "TRUE": "FALSE");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800538 }
539
540 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543
544/************************************************************************/
545/************************************************************************/
546/* U S B C A L L B A C K F U N C T I O N S */
547/* U S B C A L L B A C K F U N C T I O N S */
548/************************************************************************/
549/************************************************************************/
550
551/*****************************************************************************
552 * edge_interrupt_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100553 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * interrupt endpoint.
555 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100556static void edge_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700558 struct edgeport_serial *edge_serial = urb->context;
559 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct edgeport_port *edge_port;
561 struct usb_serial_port *port;
562 unsigned char *data = urb->transfer_buffer;
563 int length = urb->actual_length;
564 int bytes_avail;
565 int position;
566 int txCredits;
567 int portNumber;
568 int result;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700569 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700571 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 case 0:
573 /* success */
574 break;
575 case -ECONNRESET:
576 case -ENOENT:
577 case -ESHUTDOWN:
578 /* this urb is terminated, clean up */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700579 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return;
581 default:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700582 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 goto exit;
584 }
585
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700586 dev = &edge_serial->serial->dev->dev;
587
Alan Cox03f0dbf2008-07-22 11:16:34 +0100588 /* process this interrupt-read even if there are no ports open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (length) {
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100590 usb_serial_debug_data(dev, __func__, length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (length > 1) {
593 bytes_avail = data[0] | (data[1] << 8);
594 if (bytes_avail) {
595 spin_lock(&edge_serial->es_lock);
596 edge_serial->rxBytesAvail += bytes_avail;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700597 dev_dbg(dev,
598 "%s - bytes_avail=%d, rxBytesAvail=%d, read_in_progress=%d\n",
599 __func__, bytes_avail,
600 edge_serial->rxBytesAvail,
601 edge_serial->read_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (edge_serial->rxBytesAvail > 0 &&
604 !edge_serial->read_in_progress) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700605 dev_dbg(dev, "%s - posting a read\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100606 edge_serial->read_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Alan Cox03f0dbf2008-07-22 11:16:34 +0100608 /* we have pending bytes on the
609 bulk in pipe, send a request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 result = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
611 if (result) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700612 dev_err(dev,
613 "%s - usb_submit_urb(read bulk) failed with result = %d\n",
614 __func__, result);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100615 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 }
618 spin_unlock(&edge_serial->es_lock);
619 }
620 }
621 /* grab the txcredits for the ports if available */
622 position = 2;
623 portNumber = 0;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100624 while ((position < length) &&
625 (portNumber < edge_serial->serial->num_ports)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 txCredits = data[position] | (data[position+1] << 8);
627 if (txCredits) {
628 port = edge_serial->serial->port[portNumber];
629 edge_port = usb_get_serial_port_data(port);
630 if (edge_port->open) {
631 spin_lock(&edge_port->ep_lock);
632 edge_port->txCredits += txCredits;
633 spin_unlock(&edge_port->ep_lock);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700634 dev_dbg(dev, "%s - txcredits for port%d = %d\n",
635 __func__, portNumber,
636 edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Alan Cox03f0dbf2008-07-22 11:16:34 +0100638 /* tell the tty driver that something
639 has changed */
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100640 tty_port_tty_wakeup(&edge_port->port->port);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100641 /* Since we have more credit, check
642 if more data can be sent */
643 send_more_port_data(edge_serial,
644 edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 }
647 position += 2;
648 ++portNumber;
649 }
650 }
651
652exit:
Alan Cox03f0dbf2008-07-22 11:16:34 +0100653 result = usb_submit_urb(urb, GFP_ATOMIC);
654 if (result)
655 dev_err(&urb->dev->dev,
656 "%s - Error %d submitting control urb\n",
657 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660
661/*****************************************************************************
662 * edge_bulk_in_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100663 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 * bulk in endpoint.
665 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100666static void edge_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Ming Leicdc97792008-02-24 18:41:47 +0800668 struct edgeport_serial *edge_serial = urb->context;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700669 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700671 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 __u16 raw_data_length;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700673 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700675 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700676 dev_dbg(&urb->dev->dev, "%s - nonzero read bulk status received: %d\n",
677 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100678 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return;
680 }
681
682 if (urb->actual_length == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700683 dev_dbg(&urb->dev->dev, "%s - read bulk callback with no data\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100684 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return;
686 }
687
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700688 dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 raw_data_length = urb->actual_length;
690
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100691 usb_serial_debug_data(dev, __func__, raw_data_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 spin_lock(&edge_serial->es_lock);
694
695 /* decrement our rxBytes available by the number that we just got */
696 edge_serial->rxBytesAvail -= raw_data_length;
697
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700698 dev_dbg(dev, "%s - Received = %d, rxBytesAvail %d\n", __func__,
699 raw_data_length, edge_serial->rxBytesAvail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Alan Cox03f0dbf2008-07-22 11:16:34 +0100701 process_rcvd_data(edge_serial, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 /* check to see if there's any more data for us to read */
704 if (edge_serial->rxBytesAvail > 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700705 dev_dbg(dev, "%s - posting a read\n", __func__);
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700706 retval = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
707 if (retval) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700708 dev_err(dev,
709 "%s - usb_submit_urb(read bulk) failed, retval = %d\n",
710 __func__, retval);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100711 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100714 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
717 spin_unlock(&edge_serial->es_lock);
718}
719
720
721/*****************************************************************************
722 * edge_bulk_out_data_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100723 * this is the callback function for when we have finished sending
724 * serial data on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100726static void edge_bulk_out_data_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Ming Leicdc97792008-02-24 18:41:47 +0800728 struct edgeport_port *edge_port = urb->context;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700729 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700731 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700732 dev_dbg(&urb->dev->dev,
733 "%s - nonzero write bulk status received: %d\n",
734 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100737 if (edge_port->open)
738 tty_port_tty_wakeup(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Alan Cox03f0dbf2008-07-22 11:16:34 +0100740 /* Release the Write URB */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100741 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Alan Cox03f0dbf2008-07-22 11:16:34 +0100743 /* Check if more data needs to be sent */
744 send_more_port_data((struct edgeport_serial *)
745 (usb_get_serial_data(edge_port->port->serial)), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748
749/*****************************************************************************
750 * BulkOutCmdCallback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100751 * this is the callback function for when we have finished sending a
752 * command on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100754static void edge_bulk_out_cmd_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Ming Leicdc97792008-02-24 18:41:47 +0800756 struct edgeport_port *edge_port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 int status = urb->status;
758
Oliver Neukum96c706e2007-03-15 15:27:17 +0100759 atomic_dec(&CmdUrbs);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700760 dev_dbg(&urb->dev->dev, "%s - FREE URB %p (outstanding %d)\n",
761 __func__, urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763
764 /* clean up the transfer buffer */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700765 kfree(urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /* Free the command urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100768 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700771 dev_dbg(&urb->dev->dev,
772 "%s - nonzero write bulk status received: %d\n",
773 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return;
775 }
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /* tell the tty driver that something has changed */
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100778 if (edge_port->open)
779 tty_port_tty_wakeup(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /* we have completed the command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100782 edge_port->commandPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 wake_up(&edge_port->wait_command);
784}
785
786
787/*****************************************************************************
788 * Driver tty interface functions
789 *****************************************************************************/
790
791/*****************************************************************************
792 * SerialOpen
793 * this function is called by the tty driver when a port is opened
794 * If successful, we return 0
795 * Otherwise we return a negative error number.
796 *****************************************************************************/
Alan Coxa509a7e2009-09-19 13:13:26 -0700797static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700800 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 struct usb_serial *serial;
802 struct edgeport_serial *edge_serial;
803 int response;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (edge_port == NULL)
806 return -ENODEV;
807
Alan Cox03f0dbf2008-07-22 11:16:34 +0100808 /* see if we've set up our endpoint info yet (can't set it up
809 in edge_startup as the structures were not set up at that time.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 serial = port->serial;
811 edge_serial = usb_get_serial_data(serial);
Alan Cox95da3102008-07-22 11:09:07 +0100812 if (edge_serial == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (edge_serial->interrupt_in_buffer == NULL) {
815 struct usb_serial_port *port0 = serial->port[0];
Alan Cox03f0dbf2008-07-22 11:16:34 +0100816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100818 edge_serial->interrupt_in_buffer =
819 port0->interrupt_in_buffer;
820 edge_serial->interrupt_in_endpoint =
821 port0->interrupt_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 edge_serial->interrupt_read_urb = port0->interrupt_in_urb;
823 edge_serial->bulk_in_buffer = port0->bulk_in_buffer;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100824 edge_serial->bulk_in_endpoint =
825 port0->bulk_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 edge_serial->read_urb = port0->read_urb;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100827 edge_serial->bulk_out_endpoint =
828 port0->bulk_out_endpointAddress;
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* set up our interrupt urb */
831 usb_fill_int_urb(edge_serial->interrupt_read_urb,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100832 serial->dev,
833 usb_rcvintpipe(serial->dev,
834 port0->interrupt_in_endpointAddress),
835 port0->interrupt_in_buffer,
836 edge_serial->interrupt_read_urb->transfer_buffer_length,
837 edge_interrupt_callback, edge_serial,
838 edge_serial->interrupt_read_urb->interval);
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* set up our bulk in urb */
841 usb_fill_bulk_urb(edge_serial->read_urb, serial->dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100842 usb_rcvbulkpipe(serial->dev,
843 port0->bulk_in_endpointAddress),
844 port0->bulk_in_buffer,
845 edge_serial->read_urb->transfer_buffer_length,
846 edge_bulk_in_callback, edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100847 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /* start interrupt read for this edgeport
Alan Cox03f0dbf2008-07-22 11:16:34 +0100850 * this interrupt will continue as long
851 * as the edgeport is connected */
852 response = usb_submit_urb(edge_serial->interrupt_read_urb,
853 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700855 dev_err(dev, "%s - Error %d submitting control urb\n",
856 __func__, response);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 }
Alan Cox03f0dbf2008-07-22 11:16:34 +0100859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /* initialize our wait queues */
861 init_waitqueue_head(&edge_port->wait_open);
862 init_waitqueue_head(&edge_port->wait_chase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 init_waitqueue_head(&edge_port->wait_command);
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /* initialize our port settings */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100866 edge_port->txCredits = 0; /* Can't send any data yet */
867 /* Must always set this bit to enable ints! */
868 edge_port->shadowMCR = MCR_MASTER_IE;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100869 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 /* send a open port command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100872 edge_port->openPending = true;
873 edge_port->open = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100874 response = send_iosp_ext_cmd(edge_port, IOSP_CMD_OPEN_PORT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (response < 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700877 dev_err(dev, "%s - error sending open port command\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100878 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return -ENODEV;
880 }
881
882 /* now wait for the port to be completely opened */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100883 wait_event_timeout(edge_port->wait_open, !edge_port->openPending,
884 OPEN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100886 if (!edge_port->open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* open timed out */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700888 dev_dbg(dev, "%s - open timedout\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100889 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return -ENODEV;
891 }
892
893 /* create the txfifo */
894 edge_port->txfifo.head = 0;
895 edge_port->txfifo.tail = 0;
896 edge_port->txfifo.count = 0;
897 edge_port->txfifo.size = edge_port->maxTxCredits;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100898 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (!edge_port->txfifo.fifo) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700901 dev_dbg(dev, "%s - no memory\n", __func__);
Alan Cox335f8512009-06-11 12:26:29 +0100902 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return -ENOMEM;
904 }
905
906 /* Allocate a URB for the write */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100907 edge_port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100908 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 if (!edge_port->write_urb) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700911 dev_dbg(dev, "%s - no memory\n", __func__);
Alan Cox335f8512009-06-11 12:26:29 +0100912 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return -ENOMEM;
914 }
915
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700916 dev_dbg(dev, "%s - Initialize TX fifo to %d bytes\n",
917 __func__, edge_port->maxTxCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 return 0;
920}
921
922
923/************************************************************************
924 *
925 * block_until_chase_response
926 *
927 * This function will block the close until one of the following:
928 * 1. Response to our Chase comes from Edgeport
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800929 * 2. A timeout of 10 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 * (1K of Edgeport data @ 2400 baud ==> 4 sec to empty)
931 *
932 ************************************************************************/
933static void block_until_chase_response(struct edgeport_port *edge_port)
934{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700935 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 DEFINE_WAIT(wait);
937 __u16 lastCredits;
938 int timeout = 1*HZ;
939 int loop = 10;
940
941 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100942 /* Save Last credits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 lastCredits = edge_port->txCredits;
944
Alan Cox03f0dbf2008-07-22 11:16:34 +0100945 /* Did we get our Chase response */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100946 if (!edge_port->chaseResponsePending) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700947 dev_dbg(dev, "%s - Got Chase Response\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Alan Cox03f0dbf2008-07-22 11:16:34 +0100949 /* did we get all of our credit back? */
950 if (edge_port->txCredits == edge_port->maxTxCredits) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700951 dev_dbg(dev, "%s - Got all credits\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return;
953 }
954 }
955
Alan Cox03f0dbf2008-07-22 11:16:34 +0100956 /* Block the thread for a while */
957 prepare_to_wait(&edge_port->wait_chase, &wait,
958 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 schedule_timeout(timeout);
960 finish_wait(&edge_port->wait_chase, &wait);
961
962 if (lastCredits == edge_port->txCredits) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100963 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 loop--;
965 if (loop == 0) {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100966 edge_port->chaseResponsePending = false;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700967 dev_dbg(dev, "%s - Chase TIMEOUT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return;
969 }
970 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100971 /* Reset timeout value back to 10 seconds */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700972 dev_dbg(dev, "%s - Last %d, Current %d\n", __func__,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100973 lastCredits, edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 loop = 10;
975 }
976 }
977}
978
979
980/************************************************************************
981 *
982 * block_until_tx_empty
983 *
984 * This function will block the close until one of the following:
985 * 1. TX count are 0
986 * 2. The edgeport has stopped
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800987 * 3. A timeout of 3 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 *
989 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100990static void block_until_tx_empty(struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700992 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 DEFINE_WAIT(wait);
994 struct TxFifo *fifo = &edge_port->txfifo;
995 __u32 lastCount;
996 int timeout = HZ/10;
997 int loop = 30;
998
999 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001000 /* Save Last count */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 lastCount = fifo->count;
1002
Alan Cox03f0dbf2008-07-22 11:16:34 +01001003 /* Is the Edgeport Buffer empty? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (lastCount == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001005 dev_dbg(dev, "%s - TX Buffer Empty\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return;
1007 }
1008
Alan Cox03f0dbf2008-07-22 11:16:34 +01001009 /* Block the thread for a while */
1010 prepare_to_wait(&edge_port->wait_chase, &wait,
1011 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 schedule_timeout(timeout);
1013 finish_wait(&edge_port->wait_chase, &wait);
1014
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001015 dev_dbg(dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 if (lastCount == fifo->count) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001018 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 loop--;
1020 if (loop == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001021 dev_dbg(dev, "%s - TIMEOUT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return;
1023 }
1024 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001025 /* Reset timeout value back to seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 loop = 30;
1027 }
1028 }
1029}
1030
1031
1032/*****************************************************************************
1033 * edge_close
1034 * this function is called by the tty driver when a port is closed
1035 *****************************************************************************/
Alan Cox335f8512009-06-11 12:26:29 +01001036static void edge_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct edgeport_serial *edge_serial;
1039 struct edgeport_port *edge_port;
1040 int status;
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 edge_serial = usb_get_serial_data(port->serial);
1043 edge_port = usb_get_serial_port_data(port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001044 if (edge_serial == NULL || edge_port == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001046
1047 /* block until tx is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 block_until_tx_empty(edge_port);
1049
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001050 edge_port->closePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001052 if ((!edge_serial->is_epic) ||
1053 ((edge_serial->is_epic) &&
1054 (edge_serial->epic_descriptor.Supports.IOSPChase))) {
1055 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001056 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001058 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CHASE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001059 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
1060 if (status == 0)
1061 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001062 block_until_chase_response(edge_port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001063 else
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001064 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001067 if ((!edge_serial->is_epic) ||
1068 ((edge_serial->is_epic) &&
1069 (edge_serial->epic_descriptor.Supports.IOSPClose))) {
1070 /* close the port */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001071 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CLOSE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001072 send_iosp_ext_cmd(edge_port, IOSP_CMD_CLOSE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Alan Cox03f0dbf2008-07-22 11:16:34 +01001075 /* port->close = true; */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001076 edge_port->closePending = false;
1077 edge_port->open = false;
1078 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Mariusz Kozlowski9a25f442006-11-08 15:36:29 +01001080 usb_kill_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 if (edge_port->write_urb) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001083 /* if this urb had a transfer buffer already
1084 (old transfer) free it */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001085 kfree(edge_port->write_urb->transfer_buffer);
1086 usb_free_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 edge_port->write_urb = NULL;
1088 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001089 kfree(edge_port->txfifo.fifo);
1090 edge_port->txfifo.fifo = NULL;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001091}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093/*****************************************************************************
1094 * SerialWrite
Alan Cox03f0dbf2008-07-22 11:16:34 +01001095 * this function is called by the tty driver when data should be written
1096 * to the port.
1097 * If successful, we return the number of bytes written, otherwise we
1098 * return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001100static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
1101 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
1103 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1104 struct TxFifo *fifo;
1105 int copySize;
1106 int bytesleft;
1107 int firsthalf;
1108 int secondhalf;
1109 unsigned long flags;
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (edge_port == NULL)
1112 return -ENODEV;
1113
Alan Cox03f0dbf2008-07-22 11:16:34 +01001114 /* get a pointer to the Tx fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 fifo = &edge_port->txfifo;
1116
1117 spin_lock_irqsave(&edge_port->ep_lock, flags);
1118
Alan Cox03f0dbf2008-07-22 11:16:34 +01001119 /* calculate number of bytes to put in fifo */
1120 copySize = min((unsigned int)count,
1121 (edge_port->txCredits - fifo->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001123 dev_dbg(&port->dev, "%s of %d byte(s) Fifo room %d -- will copy %d bytes\n",
1124 __func__, count, edge_port->txCredits - fifo->count, copySize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Alan Cox03f0dbf2008-07-22 11:16:34 +01001126 /* catch writes of 0 bytes which the tty driver likes to give us,
1127 and when txCredits is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (copySize == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001129 dev_dbg(&port->dev, "%s - copySize = Zero\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 goto finish_write;
1131 }
1132
Alan Cox03f0dbf2008-07-22 11:16:34 +01001133 /* queue the data
1134 * since we can never overflow the buffer we do not have to check for a
1135 * full condition
1136 *
1137 * the copy is done is two parts -- first fill to the end of the buffer
1138 * then copy the reset from the start of the buffer
1139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 bytesleft = fifo->size - fifo->head;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001141 firsthalf = min(bytesleft, copySize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001142 dev_dbg(&port->dev, "%s - copy %d bytes of %d into fifo \n", __func__,
1143 firsthalf, bytesleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 /* now copy our data */
1146 memcpy(&fifo->fifo[fifo->head], data, firsthalf);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001147 usb_serial_debug_data(&port->dev, __func__, firsthalf, &fifo->fifo[fifo->head]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Alan Cox03f0dbf2008-07-22 11:16:34 +01001149 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 fifo->head += firsthalf;
1151 fifo->count += firsthalf;
1152
Alan Cox03f0dbf2008-07-22 11:16:34 +01001153 /* wrap the index */
1154 if (fifo->head == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 fifo->head = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 secondhalf = copySize-firsthalf;
1158
1159 if (secondhalf) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001160 dev_dbg(&port->dev, "%s - copy rest of data %d\n", __func__, secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 memcpy(&fifo->fifo[fifo->head], &data[firsthalf], secondhalf);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001162 usb_serial_debug_data(&port->dev, __func__, secondhalf, &fifo->fifo[fifo->head]);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001163 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 fifo->count += secondhalf;
1165 fifo->head += secondhalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001166 /* No need to check for wrap since we can not get to end of
1167 * the fifo in this part
1168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170
1171finish_write:
1172 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1173
Alan Cox03f0dbf2008-07-22 11:16:34 +01001174 send_more_port_data((struct edgeport_serial *)
1175 usb_get_serial_data(port->serial), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001177 dev_dbg(&port->dev, "%s wrote %d byte(s) TxCredits %d, Fifo %d\n",
1178 __func__, copySize, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Alan Cox03f0dbf2008-07-22 11:16:34 +01001180 return copySize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183
1184/************************************************************************
1185 *
1186 * send_more_port_data()
1187 *
1188 * This routine attempts to write additional UART transmit data
1189 * to a port over the USB bulk pipe. It is called (1) when new
1190 * data has been written to a port's TxBuffer from higher layers
1191 * (2) when the peripheral sends us additional TxCredits indicating
1192 * that it can accept more Tx data for a given port; and (3) when
1193 * a bulk write completes successfully and we want to see if we
1194 * can transmit more.
1195 *
1196 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001197static void send_more_port_data(struct edgeport_serial *edge_serial,
1198 struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 struct TxFifo *fifo = &edge_port->txfifo;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001201 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 struct urb *urb;
1203 unsigned char *buffer;
1204 int status;
1205 int count;
1206 int bytesleft;
1207 int firsthalf;
1208 int secondhalf;
1209 unsigned long flags;
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 spin_lock_irqsave(&edge_port->ep_lock, flags);
1212
1213 if (edge_port->write_in_progress ||
1214 !edge_port->open ||
1215 (fifo->count == 0)) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001216 dev_dbg(dev, "%s EXIT - fifo %d, PendingWrite = %d\n",
1217 __func__, fifo->count, edge_port->write_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 goto exit_send;
1219 }
1220
Alan Cox03f0dbf2008-07-22 11:16:34 +01001221 /* since the amount of data in the fifo will always fit into the
1222 * edgeport buffer we do not need to check the write length
1223 *
1224 * Do we have enough credits for this port to make it worthwhile
1225 * to bother queueing a write. If it's too small, say a few bytes,
1226 * it's better to wait for more credits so we can do a larger write.
1227 */
1228 if (edge_port->txCredits < EDGE_FW_GET_TX_CREDITS_SEND_THRESHOLD(edge_port->maxTxCredits, EDGE_FW_BULK_MAX_PACKET_SIZE)) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001229 dev_dbg(dev, "%s Not enough credit - fifo %d TxCredit %d\n",
1230 __func__, fifo->count, edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 goto exit_send;
1232 }
1233
Alan Cox03f0dbf2008-07-22 11:16:34 +01001234 /* lock this write */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001235 edge_port->write_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Alan Cox03f0dbf2008-07-22 11:16:34 +01001237 /* get a pointer to the write_urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 urb = edge_port->write_urb;
1239
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001240 /* make sure transfer buffer is freed */
1241 kfree(urb->transfer_buffer);
1242 urb->transfer_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Alan Cox03f0dbf2008-07-22 11:16:34 +01001244 /* build the data header for the buffer and port that we are about
1245 to send out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 count = fifo->count;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001247 buffer = kmalloc(count+2, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (buffer == NULL) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001249 dev_err_console(edge_port->port,
Alan Cox03f0dbf2008-07-22 11:16:34 +01001250 "%s - no more kernel memory...\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001251 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 goto exit_send;
1253 }
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001254 buffer[0] = IOSP_BUILD_DATA_HDR1(edge_port->port->port_number, count);
1255 buffer[1] = IOSP_BUILD_DATA_HDR2(edge_port->port->port_number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 /* now copy our data */
1258 bytesleft = fifo->size - fifo->tail;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001259 firsthalf = min(bytesleft, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 memcpy(&buffer[2], &fifo->fifo[fifo->tail], firsthalf);
1261 fifo->tail += firsthalf;
1262 fifo->count -= firsthalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001263 if (fifo->tail == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 fifo->tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 secondhalf = count-firsthalf;
1267 if (secondhalf) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001268 memcpy(&buffer[2+firsthalf], &fifo->fifo[fifo->tail],
1269 secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 fifo->tail += secondhalf;
1271 fifo->count -= secondhalf;
1272 }
1273
1274 if (count)
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001275 usb_serial_debug_data(&edge_port->port->dev, __func__, count, &buffer[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 /* fill up the urb with all of our data and submit it */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001278 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
1279 usb_sndbulkpipe(edge_serial->serial->dev,
1280 edge_serial->bulk_out_endpoint),
1281 buffer, count+2,
1282 edge_bulk_out_data_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /* decrement the number of credits we have by the number we just sent */
1285 edge_port->txCredits -= count;
Johan Hovoldd36a7712013-03-21 12:37:07 +01001286 edge_port->port->icount.tx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 status = usb_submit_urb(urb, GFP_ATOMIC);
1289 if (status) {
1290 /* something went wrong */
Johan Hovold22a416c2012-02-10 13:20:51 +01001291 dev_err_console(edge_port->port,
Alan Cox03f0dbf2008-07-22 11:16:34 +01001292 "%s - usb_submit_urb(write bulk) failed, status = %d, data lost\n",
1293 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001294 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 /* revert the credits as something bad happened. */
1297 edge_port->txCredits += count;
Johan Hovoldd36a7712013-03-21 12:37:07 +01001298 edge_port->port->icount.tx -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001300 dev_dbg(dev, "%s wrote %d byte(s) TxCredit %d, Fifo %d\n",
1301 __func__, count, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303exit_send:
1304 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1305}
1306
1307
1308/*****************************************************************************
1309 * edge_write_room
Alan Cox03f0dbf2008-07-22 11:16:34 +01001310 * this function is called by the tty driver when it wants to know how
1311 * many bytes of data we can accept for a specific port. If successful,
1312 * we return the amount of room that we have for this port (the txCredits)
1313 * otherwise we return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001315static int edge_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Alan Cox95da3102008-07-22 11:09:07 +01001317 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1319 int room;
1320 unsigned long flags;
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001323 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001324 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001328 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331
Alan Cox03f0dbf2008-07-22 11:16:34 +01001332 /* total of both buffers is still txCredit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 spin_lock_irqsave(&edge_port->ep_lock, flags);
1334 room = edge_port->txCredits - edge_port->txfifo.count;
1335 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1336
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001337 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return room;
1339}
1340
1341
1342/*****************************************************************************
1343 * edge_chars_in_buffer
Alan Cox03f0dbf2008-07-22 11:16:34 +01001344 * this function is called by the tty driver when it wants to know how
1345 * many bytes of data we currently have outstanding in the port (data that
1346 * has been written, but hasn't made it out the port yet)
1347 * If successful, we return the number of bytes left to be written in the
1348 * system,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 * Otherwise we return a negative error number.
1350 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001351static int edge_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Alan Cox95da3102008-07-22 11:09:07 +01001353 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1355 int num_chars;
1356 unsigned long flags;
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001359 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001360 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001361 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001364 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367
1368 spin_lock_irqsave(&edge_port->ep_lock, flags);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001369 num_chars = edge_port->maxTxCredits - edge_port->txCredits +
1370 edge_port->txfifo.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1372 if (num_chars) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001373 dev_dbg(&port->dev, "%s - returns %d\n", __func__, num_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375
1376 return num_chars;
1377}
1378
1379
1380/*****************************************************************************
1381 * SerialThrottle
1382 * this function is called by the tty driver when it wants to stop the data
1383 * being read from the port.
1384 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001385static void edge_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Alan Cox95da3102008-07-22 11:09:07 +01001387 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 int status;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (edge_port == NULL)
1392 return;
1393
1394 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001395 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return;
1397 }
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /* if we are implementing XON/XOFF, send the stop character */
1400 if (I_IXOFF(tty)) {
1401 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001402 status = edge_write(tty, port, &stop_char, 1);
1403 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
1406
1407 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001408 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 edge_port->shadowMCR &= ~MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001410 status = send_cmd_write_uart_register(edge_port, MCR,
1411 edge_port->shadowMCR);
1412 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417
1418/*****************************************************************************
1419 * edge_unthrottle
Alan Cox03f0dbf2008-07-22 11:16:34 +01001420 * this function is called by the tty driver when it wants to resume the
1421 * data being read from the port (called after SerialThrottle is called)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001423static void edge_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Alan Cox95da3102008-07-22 11:09:07 +01001425 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 int status;
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (edge_port == NULL)
1430 return;
1431
1432 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001433 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return;
1435 }
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 /* if we are implementing XON/XOFF, send the start character */
1438 if (I_IXOFF(tty)) {
1439 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001440 status = edge_write(tty, port, &start_char, 1);
1441 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001445 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 edge_port->shadowMCR |= MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001447 send_cmd_write_uart_register(edge_port, MCR,
1448 edge_port->shadowMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
1452
1453/*****************************************************************************
1454 * SerialSetTermios
Alan Cox03f0dbf2008-07-22 11:16:34 +01001455 * this function is called by the tty driver when it wants to change
1456 * the termios structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001458static void edge_set_termios(struct tty_struct *tty,
1459 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 unsigned int cflag;
1463
Alan Coxadc8d742012-07-14 15:31:47 +01001464 cflag = tty->termios.c_cflag;
Linus Torvaldsd9a80742012-10-01 13:23:01 -07001465 dev_dbg(&port->dev, "%s - clfag %08x iflag %08x\n", __func__, tty->termios.c_cflag, tty->termios.c_iflag);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001466 dev_dbg(&port->dev, "%s - old clfag %08x old iflag %08x\n", __func__, old_termios->c_cflag, old_termios->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 if (edge_port == NULL)
1469 return;
1470
1471 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001472 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return;
1474 }
1475
1476 /* change the port settings to the new ones specified */
Alan Cox95da3102008-07-22 11:09:07 +01001477 change_port_settings(tty, edge_port, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
1480
1481/*****************************************************************************
1482 * get_lsr_info - get line status register info
1483 *
1484 * Purpose: Let user call ioctl() to get info when the UART physically
1485 * is emptied. On bus types like RS485, the transmitter must
1486 * release the bus after transmitting. This must be done when
1487 * the transmit shift register is empty, not be done when the
1488 * transmit holding register is empty. This functionality
Alan Cox03f0dbf2008-07-22 11:16:34 +01001489 * allows an RS485 driver to be written in user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001491static int get_lsr_info(struct edgeport_port *edge_port,
1492 unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
1494 unsigned int result = 0;
1495 unsigned long flags;
1496
1497 spin_lock_irqsave(&edge_port->ep_lock, flags);
1498 if (edge_port->maxTxCredits == edge_port->txCredits &&
1499 edge_port->txfifo.count == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001500 dev_dbg(&edge_port->port->dev, "%s -- Empty\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 result = TIOCSER_TEMT;
1502 }
1503 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1504
1505 if (copy_to_user(value, &result, sizeof(int)))
1506 return -EFAULT;
1507 return 0;
1508}
1509
Alan Cox20b9d172011-02-14 16:26:50 +00001510static int edge_tiocmset(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +01001511 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Alan Cox95da3102008-07-22 11:09:07 +01001513 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1515 unsigned int mcr;
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 mcr = edge_port->shadowMCR;
1518 if (set & TIOCM_RTS)
1519 mcr |= MCR_RTS;
1520 if (set & TIOCM_DTR)
1521 mcr |= MCR_DTR;
1522 if (set & TIOCM_LOOP)
1523 mcr |= MCR_LOOPBACK;
1524
1525 if (clear & TIOCM_RTS)
1526 mcr &= ~MCR_RTS;
1527 if (clear & TIOCM_DTR)
1528 mcr &= ~MCR_DTR;
1529 if (clear & TIOCM_LOOP)
1530 mcr &= ~MCR_LOOPBACK;
1531
1532 edge_port->shadowMCR = mcr;
1533
1534 send_cmd_write_uart_register(edge_port, MCR, edge_port->shadowMCR);
1535
1536 return 0;
1537}
1538
Alan Cox60b33c12011-02-14 16:26:14 +00001539static int edge_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Alan Cox95da3102008-07-22 11:09:07 +01001541 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1543 unsigned int result = 0;
1544 unsigned int msr;
1545 unsigned int mcr;
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 msr = edge_port->shadowMSR;
1548 mcr = edge_port->shadowMCR;
1549 result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
1550 | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
1551 | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
1552 | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
1553 | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
1554 | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return result;
1557}
1558
Alan Cox03f0dbf2008-07-22 11:16:34 +01001559static int get_serial_info(struct edgeport_port *edge_port,
1560 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
1562 struct serial_struct tmp;
1563
1564 if (!retinfo)
1565 return -EFAULT;
1566
1567 memset(&tmp, 0, sizeof(tmp));
1568
1569 tmp.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001570 tmp.line = edge_port->port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001571 tmp.port = edge_port->port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 tmp.irq = 0;
1573 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
1574 tmp.xmit_fifo_size = edge_port->maxTxCredits;
1575 tmp.baud_base = 9600;
1576 tmp.close_delay = 5*HZ;
1577 tmp.closing_wait = 30*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1580 return -EFAULT;
1581 return 0;
1582}
1583
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585/*****************************************************************************
1586 * SerialIoctl
1587 * this function handles any ioctl calls to the driver
1588 *****************************************************************************/
Alan Cox00a0d0d2011-02-14 16:27:06 +00001589static int edge_ioctl(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +01001590 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Alan Cox95da3102008-07-22 11:09:07 +01001592 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 DEFINE_WAIT(wait);
1594 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001596 dev_dbg(&port->dev, "%s - cmd = 0x%x\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 switch (cmd) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001599 case TIOCSERGETLSR:
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001600 dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001601 return get_lsr_info(edge_port, (unsigned int __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Alan Cox03f0dbf2008-07-22 11:16:34 +01001603 case TIOCGSERIAL:
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001604 dev_dbg(&port->dev, "%s TIOCGSERIAL\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001605 return get_serial_info(edge_port, (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return -ENOIOCTLCMD;
1608}
1609
1610
1611/*****************************************************************************
1612 * SerialBreak
1613 * this function sends a break to the port
1614 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001615static void edge_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Alan Cox95da3102008-07-22 11:09:07 +01001617 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001619 struct edgeport_serial *edge_serial = usb_get_serial_data(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 int status;
1621
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001622 if ((!edge_serial->is_epic) ||
1623 ((edge_serial->is_epic) &&
1624 (edge_serial->epic_descriptor.Supports.IOSPChase))) {
1625 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001626 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001628 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CHASE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001629 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001630 if (status == 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001631 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001632 block_until_chase_response(edge_port);
1633 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001634 edge_port->chaseResponsePending = false;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 }
1637
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001638 if ((!edge_serial->is_epic) ||
1639 ((edge_serial->is_epic) &&
1640 (edge_serial->epic_descriptor.Supports.IOSPSetClrBreak))) {
1641 if (break_state == -1) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001642 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_SET_BREAK\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001643 status = send_iosp_ext_cmd(edge_port,
1644 IOSP_CMD_SET_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001645 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001646 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CLEAR_BREAK\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001647 status = send_iosp_ext_cmd(edge_port,
1648 IOSP_CMD_CLEAR_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001649 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01001650 if (status)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001651 dev_dbg(&port->dev, "%s - error sending break set/clear command.\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01001652 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
1656
1657/*****************************************************************************
1658 * process_rcvd_data
1659 * this function handles the data received on the bulk in pipe.
1660 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001661static void process_rcvd_data(struct edgeport_serial *edge_serial,
1662 unsigned char *buffer, __u16 bufferLength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001664 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 struct usb_serial_port *port;
1666 struct edgeport_port *edge_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 __u16 lastBufferLength;
1668 __u16 rxLen;
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 lastBufferLength = bufferLength + 1;
1671
1672 while (bufferLength > 0) {
1673 /* failsafe incase we get a message that we don't understand */
1674 if (lastBufferLength == bufferLength) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001675 dev_dbg(dev, "%s - stuck in loop, exiting it.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 break;
1677 }
1678 lastBufferLength = bufferLength;
1679
1680 switch (edge_serial->rxState) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001681 case EXPECT_HDR1:
1682 edge_serial->rxHeader1 = *buffer;
1683 ++buffer;
1684 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Alan Cox03f0dbf2008-07-22 11:16:34 +01001686 if (bufferLength == 0) {
1687 edge_serial->rxState = EXPECT_HDR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001689 }
1690 /* otherwise, drop on through */
1691 case EXPECT_HDR2:
1692 edge_serial->rxHeader2 = *buffer;
1693 ++buffer;
1694 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001696 dev_dbg(dev, "%s - Hdr1=%02X Hdr2=%02X\n", __func__,
1697 edge_serial->rxHeader1, edge_serial->rxHeader2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001698 /* Process depending on whether this header is
1699 * data or status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Alan Cox03f0dbf2008-07-22 11:16:34 +01001701 if (IS_CMD_STAT_HDR(edge_serial->rxHeader1)) {
1702 /* Decode this status header and go to
1703 * EXPECT_HDR1 (if we can process the status
1704 * with only 2 bytes), or go to EXPECT_HDR3 to
1705 * get the third byte. */
1706 edge_serial->rxPort =
1707 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1708 edge_serial->rxStatusCode =
1709 IOSP_GET_STATUS_CODE(
1710 edge_serial->rxHeader1);
1711
1712 if (!IOSP_STATUS_IS_2BYTE(
1713 edge_serial->rxStatusCode)) {
1714 /* This status needs additional bytes.
1715 * Save what we have and then wait for
1716 * more data.
1717 */
1718 edge_serial->rxStatusParam
1719 = edge_serial->rxHeader2;
1720 edge_serial->rxState = EXPECT_HDR3;
1721 break;
1722 }
1723 /* We have all the header bytes, process the
1724 status now */
1725 process_rcvd_status(edge_serial,
1726 edge_serial->rxHeader2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 edge_serial->rxState = EXPECT_HDR1;
1728 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001729 } else {
1730 edge_serial->rxPort =
1731 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1732 edge_serial->rxBytesRemaining =
1733 IOSP_GET_HDR_DATA_LEN(
1734 edge_serial->rxHeader1,
1735 edge_serial->rxHeader2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001736 dev_dbg(dev, "%s - Data for Port %u Len %u\n",
1737 __func__,
1738 edge_serial->rxPort,
1739 edge_serial->rxBytesRemaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Alan Cox03f0dbf2008-07-22 11:16:34 +01001741 /* ASSERT(DevExt->RxPort < DevExt->NumPorts);
1742 * ASSERT(DevExt->RxBytesRemaining <
1743 * IOSP_MAX_DATA_LENGTH);
1744 */
1745
1746 if (bufferLength == 0) {
1747 edge_serial->rxState = EXPECT_DATA;
1748 break;
1749 }
1750 /* Else, drop through */
1751 }
1752 case EXPECT_DATA: /* Expect data */
1753 if (bufferLength < edge_serial->rxBytesRemaining) {
1754 rxLen = bufferLength;
1755 /* Expect data to start next buffer */
1756 edge_serial->rxState = EXPECT_DATA;
1757 } else {
1758 /* BufLen >= RxBytesRemaining */
1759 rxLen = edge_serial->rxBytesRemaining;
1760 /* Start another header next time */
1761 edge_serial->rxState = EXPECT_HDR1;
1762 }
1763
1764 bufferLength -= rxLen;
1765 edge_serial->rxBytesRemaining -= rxLen;
1766
1767 /* spit this data back into the tty driver if this
1768 port is open */
1769 if (rxLen) {
1770 port = edge_serial->serial->port[
1771 edge_serial->rxPort];
1772 edge_port = usb_get_serial_port_data(port);
1773 if (edge_port->open) {
Jiri Slaby2e124b42013-01-03 15:53:06 +01001774 dev_dbg(dev, "%s - Sending %d bytes to TTY for port %d\n",
1775 __func__, rxLen,
1776 edge_serial->rxPort);
1777 edge_tty_recv(edge_port->port, buffer,
1778 rxLen);
Johan Hovoldd36a7712013-03-21 12:37:07 +01001779 edge_port->port->icount.rx += rxLen;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001780 }
1781 buffer += rxLen;
1782 }
1783 break;
1784
1785 case EXPECT_HDR3: /* Expect 3rd byte of status header */
1786 edge_serial->rxHeader3 = *buffer;
1787 ++buffer;
1788 --bufferLength;
1789
1790 /* We have all the header bytes, process the
1791 status now */
1792 process_rcvd_status(edge_serial,
1793 edge_serial->rxStatusParam,
1794 edge_serial->rxHeader3);
1795 edge_serial->rxState = EXPECT_HDR1;
1796 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798 }
1799}
1800
1801
1802/*****************************************************************************
1803 * process_rcvd_status
Alan Cox03f0dbf2008-07-22 11:16:34 +01001804 * this function handles the any status messages received on the
1805 * bulk in pipe.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001807static void process_rcvd_status(struct edgeport_serial *edge_serial,
1808 __u8 byte2, __u8 byte3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 struct usb_serial_port *port;
1811 struct edgeport_port *edge_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001812 struct tty_struct *tty;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001813 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 __u8 code = edge_serial->rxStatusCode;
1815
1816 /* switch the port pointer to the one being currently talked about */
1817 port = edge_serial->serial->port[edge_serial->rxPort];
1818 edge_port = usb_get_serial_port_data(port);
1819 if (edge_port == NULL) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001820 dev_err(&edge_serial->serial->dev->dev,
1821 "%s - edge_port == NULL for port %d\n",
1822 __func__, edge_serial->rxPort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return;
1824 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001825 dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 if (code == IOSP_EXT_STATUS) {
1828 switch (byte2) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001829 case IOSP_EXT_STATUS_CHASE_RSP:
1830 /* we want to do EXT status regardless of port
1831 * open/closed */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001832 dev_dbg(dev, "%s - Port %u EXT CHASE_RSP Data = %02x\n",
1833 __func__, edge_serial->rxPort, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001834 /* Currently, the only EXT_STATUS is Chase, so process
1835 * here instead of one more call to one more subroutine
1836 * If/when more EXT_STATUS, there'll be more work to do
1837 * Also, we currently clear flag and close the port
1838 * regardless of content of above's Byte3.
1839 * We could choose to do something else when Byte3 says
1840 * Timeout on Chase from Edgeport, like wait longer in
1841 * block_until_chase_response, but for now we don't.
1842 */
1843 edge_port->chaseResponsePending = false;
1844 wake_up(&edge_port->wait_chase);
1845 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Alan Cox03f0dbf2008-07-22 11:16:34 +01001847 case IOSP_EXT_STATUS_RX_CHECK_RSP:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001848 dev_dbg(dev, "%s ========== Port %u CHECK_RSP Sequence = %02x =============\n",
1849 __func__, edge_serial->rxPort, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001850 /* Port->RxCheckRsp = true; */
1851 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853 }
1854
1855 if (code == IOSP_STATUS_OPEN_RSP) {
1856 edge_port->txCredits = GET_TX_BUFFER_SIZE(byte3);
1857 edge_port->maxTxCredits = edge_port->txCredits;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001858 dev_dbg(dev, "%s - Port %u Open Response Initial MSR = %02x TxBufferSize = %d\n",
1859 __func__, edge_serial->rxPort, byte2, edge_port->txCredits);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001860 handle_new_msr(edge_port, byte2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Alan Cox03f0dbf2008-07-22 11:16:34 +01001862 /* send the current line settings to the port so we are
1863 in sync with any further termios calls */
Alan Cox4a90f092008-10-13 10:39:46 +01001864 tty = tty_port_tty_get(&edge_port->port->port);
1865 if (tty) {
1866 change_port_settings(tty,
Alan Coxadc8d742012-07-14 15:31:47 +01001867 edge_port, &tty->termios);
Alan Cox4a90f092008-10-13 10:39:46 +01001868 tty_kref_put(tty);
1869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871 /* we have completed the open */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001872 edge_port->openPending = false;
1873 edge_port->open = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 wake_up(&edge_port->wait_open);
1875 return;
1876 }
1877
Alan Cox03f0dbf2008-07-22 11:16:34 +01001878 /* If port is closed, silently discard all rcvd status. We can
1879 * have cases where buffered status is received AFTER the close
1880 * port command is sent to the Edgeport.
1881 */
1882 if (!edge_port->open || edge_port->closePending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
1885 switch (code) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001886 /* Not currently sent by Edgeport */
1887 case IOSP_STATUS_LSR:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001888 dev_dbg(dev, "%s - Port %u LSR Status = %02x\n",
1889 __func__, edge_serial->rxPort, byte2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001890 handle_new_lsr(edge_port, false, byte2, 0);
1891 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Alan Cox03f0dbf2008-07-22 11:16:34 +01001893 case IOSP_STATUS_LSR_DATA:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001894 dev_dbg(dev, "%s - Port %u LSR Status = %02x, Data = %02x\n",
1895 __func__, edge_serial->rxPort, byte2, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001896 /* byte2 is LSR Register */
1897 /* byte3 is broken data byte */
1898 handle_new_lsr(edge_port, true, byte2, byte3);
1899 break;
1900 /*
1901 * case IOSP_EXT_4_STATUS:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001902 * dev_dbg(dev, "%s - Port %u LSR Status = %02x Data = %02x\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01001903 * __func__, edge_serial->rxPort, byte2, byte3);
1904 * break;
1905 */
1906 case IOSP_STATUS_MSR:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001907 dev_dbg(dev, "%s - Port %u MSR Status = %02x\n",
1908 __func__, edge_serial->rxPort, byte2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001909 /*
1910 * Process this new modem status and generate appropriate
1911 * events, etc, based on the new status. This routine
1912 * also saves the MSR in Port->ShadowMsr.
1913 */
1914 handle_new_msr(edge_port, byte2);
1915 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Alan Cox03f0dbf2008-07-22 11:16:34 +01001917 default:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001918 dev_dbg(dev, "%s - Unrecognized IOSP status code %u\n", __func__, code);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001919 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
1923
1924/*****************************************************************************
1925 * edge_tty_recv
1926 * this function passes data on to the tty flip buffer
1927 *****************************************************************************/
Jiri Slaby2e124b42013-01-03 15:53:06 +01001928static void edge_tty_recv(struct usb_serial_port *port, unsigned char *data,
1929 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
1931 int cnt;
1932
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001933 cnt = tty_insert_flip_string(&port->port, data, length);
Alan Coxa108bfc2010-02-18 16:44:01 +00001934 if (cnt < length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001935 dev_err(&port->dev, "%s - dropping data, %d bytes lost\n",
Alan Coxa108bfc2010-02-18 16:44:01 +00001936 __func__, length - cnt);
1937 }
1938 data += cnt;
1939 length -= cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Jiri Slaby2e124b42013-01-03 15:53:06 +01001941 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
1944
1945/*****************************************************************************
1946 * handle_new_msr
1947 * this function handles any change to the msr register for a port.
1948 *****************************************************************************/
1949static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr)
1950{
1951 struct async_icount *icount;
1952
Alan Cox03f0dbf2008-07-22 11:16:34 +01001953 if (newMsr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
1954 EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
Johan Hovoldd36a7712013-03-21 12:37:07 +01001955 icount = &edge_port->port->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /* update input line counters */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001958 if (newMsr & EDGEPORT_MSR_DELTA_CTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 icount->cts++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001960 if (newMsr & EDGEPORT_MSR_DELTA_DSR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 icount->dsr++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001962 if (newMsr & EDGEPORT_MSR_DELTA_CD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 icount->dcd++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001964 if (newMsr & EDGEPORT_MSR_DELTA_RI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 icount->rng++;
Johan Hovold8b8070d2013-03-21 12:37:08 +01001966 wake_up_interruptible(&edge_port->port->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
1968
1969 /* Save the new modem status */
1970 edge_port->shadowMSR = newMsr & 0xf0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
1973
1974/*****************************************************************************
1975 * handle_new_lsr
1976 * this function handles any change to the lsr register for a port.
1977 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001978static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
1979 __u8 lsr, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Alan Cox03f0dbf2008-07-22 11:16:34 +01001981 __u8 newLsr = (__u8) (lsr & (__u8)
1982 (LSR_OVER_ERR | LSR_PAR_ERR | LSR_FRM_ERR | LSR_BREAK));
1983 struct async_icount *icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 edge_port->shadowLSR = lsr;
1986
1987 if (newLsr & LSR_BREAK) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001988 /*
1989 * Parity and Framing errors only count if they
1990 * occur exclusive of a break being
1991 * received.
1992 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 newLsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
1994 }
1995
1996 /* Place LSR data byte into Rx buffer */
Jiri Slaby2e124b42013-01-03 15:53:06 +01001997 if (lsrData)
1998 edge_tty_recv(edge_port->port, &data, 1);
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 /* update input line counters */
Johan Hovoldd36a7712013-03-21 12:37:07 +01002001 icount = &edge_port->port->icount;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002002 if (newLsr & LSR_BREAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 icount->brk++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002004 if (newLsr & LSR_OVER_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 icount->overrun++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002006 if (newLsr & LSR_PAR_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 icount->parity++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002008 if (newLsr & LSR_FRM_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 icount->frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010}
2011
2012
2013/****************************************************************************
2014 * sram_write
Alan Cox03f0dbf2008-07-22 11:16:34 +01002015 * writes a number of bytes to the Edgeport device's sram starting at the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 * given address.
2017 * If successful returns the number of bytes written, otherwise it returns
2018 * a negative error number of the problem.
2019 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002020static int sram_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2021 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
2023 int result;
2024 __u16 current_length;
2025 unsigned char *transfer_buffer;
2026
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002027 dev_dbg(&serial->dev->dev, "%s - %x, %x, %d\n", __func__, extAddr, addr, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Alan Cox03f0dbf2008-07-22 11:16:34 +01002029 transfer_buffer = kmalloc(64, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (!transfer_buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002031 dev_err(&serial->dev->dev, "%s - kmalloc(%d) failed.\n",
2032 __func__, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return -ENOMEM;
2034 }
2035
2036 /* need to split these writes up into 64 byte chunks */
2037 result = 0;
2038 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002039 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002041 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002043
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002044/* dev_dbg(&serial->dev->dev, "%s - writing %x, %x, %d\n", __func__, extAddr, addr, current_length); */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002045 memcpy(transfer_buffer, data, current_length);
2046 result = usb_control_msg(serial->dev,
2047 usb_sndctrlpipe(serial->dev, 0),
2048 USB_REQUEST_ION_WRITE_RAM,
2049 0x40, addr, extAddr, transfer_buffer,
2050 current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (result < 0)
2052 break;
2053 length -= current_length;
2054 addr += current_length;
2055 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Alan Cox03f0dbf2008-07-22 11:16:34 +01002058 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 return result;
2060}
2061
2062
2063/****************************************************************************
2064 * rom_write
2065 * writes a number of bytes to the Edgeport device's ROM starting at the
2066 * given address.
2067 * If successful returns the number of bytes written, otherwise it returns
2068 * a negative error number of the problem.
2069 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002070static int rom_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2071 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 int result;
2074 __u16 current_length;
2075 unsigned char *transfer_buffer;
2076
Alan Cox03f0dbf2008-07-22 11:16:34 +01002077 transfer_buffer = kmalloc(64, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (!transfer_buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002079 dev_err(&serial->dev->dev, "%s - kmalloc(%d) failed.\n",
2080 __func__, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 return -ENOMEM;
2082 }
2083
2084 /* need to split these writes up into 64 byte chunks */
2085 result = 0;
2086 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002087 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002089 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002091 memcpy(transfer_buffer, data, current_length);
2092 result = usb_control_msg(serial->dev,
2093 usb_sndctrlpipe(serial->dev, 0),
2094 USB_REQUEST_ION_WRITE_ROM, 0x40,
2095 addr, extAddr,
2096 transfer_buffer, current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 if (result < 0)
2098 break;
2099 length -= current_length;
2100 addr += current_length;
2101 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Alan Cox03f0dbf2008-07-22 11:16:34 +01002104 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return result;
2106}
2107
2108
2109/****************************************************************************
2110 * rom_read
2111 * reads a number of bytes from the Edgeport device starting at the given
2112 * address.
2113 * If successful returns the number of bytes read, otherwise it returns
2114 * a negative error number of the problem.
2115 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002116static int rom_read(struct usb_serial *serial, __u16 extAddr,
2117 __u16 addr, __u16 length, __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 int result;
2120 __u16 current_length;
2121 unsigned char *transfer_buffer;
2122
Alan Cox03f0dbf2008-07-22 11:16:34 +01002123 transfer_buffer = kmalloc(64, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 if (!transfer_buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002125 dev_err(&serial->dev->dev,
2126 "%s - kmalloc(%d) failed.\n", __func__, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return -ENOMEM;
2128 }
2129
2130 /* need to split these reads up into 64 byte chunks */
2131 result = 0;
2132 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002133 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002135 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002137 result = usb_control_msg(serial->dev,
2138 usb_rcvctrlpipe(serial->dev, 0),
2139 USB_REQUEST_ION_READ_ROM,
2140 0xC0, addr, extAddr, transfer_buffer,
2141 current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if (result < 0)
2143 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002144 memcpy(data, transfer_buffer, current_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 length -= current_length;
2146 addr += current_length;
2147 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Alan Cox03f0dbf2008-07-22 11:16:34 +01002150 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return result;
2152}
2153
2154
2155/****************************************************************************
2156 * send_iosp_ext_cmd
2157 * Is used to send a IOSP message to the Edgeport device
2158 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002159static int send_iosp_ext_cmd(struct edgeport_port *edge_port,
2160 __u8 command, __u8 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 unsigned char *buffer;
2163 unsigned char *currentCommand;
2164 int length = 0;
2165 int status = 0;
2166
Alan Cox03f0dbf2008-07-22 11:16:34 +01002167 buffer = kmalloc(10, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if (!buffer) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002169 dev_err(&edge_port->port->dev,
2170 "%s - kmalloc(%d) failed.\n", __func__, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 return -ENOMEM;
2172 }
2173
2174 currentCommand = buffer;
2175
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002176 MAKE_CMD_EXT_CMD(&currentCommand, &length, edge_port->port->port_number,
2177 command, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Alan Cox03f0dbf2008-07-22 11:16:34 +01002179 status = write_cmd_usb(edge_port, buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (status) {
2181 /* something bad happened, let's free up the memory */
2182 kfree(buffer);
2183 }
2184
2185 return status;
2186}
2187
2188
2189/*****************************************************************************
2190 * write_cmd_usb
2191 * this function writes the given buffer out to the bulk write endpoint.
2192 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002193static int write_cmd_usb(struct edgeport_port *edge_port,
2194 unsigned char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002196 struct edgeport_serial *edge_serial =
2197 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002198 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 int status = 0;
2200 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01002202 usb_serial_debug_data(dev, __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204 /* Allocate our next urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002205 urb = usb_alloc_urb(0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 if (!urb)
2207 return -ENOMEM;
2208
Oliver Neukum96c706e2007-03-15 15:27:17 +01002209 atomic_inc(&CmdUrbs);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002210 dev_dbg(dev, "%s - ALLOCATE URB %p (outstanding %d)\n",
2211 __func__, urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Alan Cox03f0dbf2008-07-22 11:16:34 +01002213 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
2214 usb_sndbulkpipe(edge_serial->serial->dev,
2215 edge_serial->bulk_out_endpoint),
2216 buffer, length, edge_bulk_out_cmd_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002218 edge_port->commandPending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 status = usb_submit_urb(urb, GFP_ATOMIC);
2220
2221 if (status) {
2222 /* something went wrong */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002223 dev_err(dev, "%s - usb_submit_urb(write command) failed, status = %d\n",
2224 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 usb_kill_urb(urb);
2226 usb_free_urb(urb);
Oliver Neukum96c706e2007-03-15 15:27:17 +01002227 atomic_dec(&CmdUrbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 return status;
2229 }
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231#if 0
Alan Cox03f0dbf2008-07-22 11:16:34 +01002232 wait_event(&edge_port->wait_command, !edge_port->commandPending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002234 if (edge_port->commandPending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 /* command timed out */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002236 dev_dbg(dev, "%s - command timed out\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 status = -EINVAL;
2238 }
2239#endif
2240 return status;
2241}
2242
2243
2244/*****************************************************************************
2245 * send_cmd_write_baud_rate
2246 * this function sends the proper command to change the baud rate of the
2247 * specified port.
2248 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002249static int send_cmd_write_baud_rate(struct edgeport_port *edge_port,
2250 int baudRate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002252 struct edgeport_serial *edge_serial =
2253 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002254 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 unsigned char *cmdBuffer;
2256 unsigned char *currCmd;
2257 int cmdLen = 0;
2258 int divisor;
2259 int status;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002260 u32 number = edge_port->port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Adam Kropelinbc71e472007-07-29 11:03:29 -04002262 if (edge_serial->is_epic &&
2263 !edge_serial->epic_descriptor.Supports.IOSPSetBaudRate) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002264 dev_dbg(dev, "SendCmdWriteBaudRate - NOT Setting baud rate for port, baud = %d\n",
2265 baudRate);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002266 return 0;
2267 }
2268
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002269 dev_dbg(dev, "%s - baud = %d\n", __func__, baudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002271 status = calc_baud_rate_divisor(dev, baudRate, &divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002273 dev_err(dev, "%s - bad baud rate\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 return status;
2275 }
2276
Alan Cox03f0dbf2008-07-22 11:16:34 +01002277 /* Alloc memory for the string of commands. */
2278 cmdBuffer = kmalloc(0x100, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if (!cmdBuffer) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002280 dev_err(dev, "%s - kmalloc(%d) failed.\n", __func__, 0x100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return -ENOMEM;
2282 }
2283 currCmd = cmdBuffer;
2284
Alan Cox03f0dbf2008-07-22 11:16:34 +01002285 /* Enable access to divisor latch */
2286 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR, LCR_DL_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Alan Cox03f0dbf2008-07-22 11:16:34 +01002288 /* Write the divisor itself */
2289 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLL, LOW8(divisor));
2290 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLM, HIGH8(divisor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Alan Cox03f0dbf2008-07-22 11:16:34 +01002292 /* Restore original value to disable access to divisor latch */
2293 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR,
2294 edge_port->shadowLCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Alan Cox03f0dbf2008-07-22 11:16:34 +01002296 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (status) {
2298 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002299 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
2301
2302 return status;
2303}
2304
2305
2306/*****************************************************************************
2307 * calc_baud_rate_divisor
2308 * this function calculates the proper baud rate divisor for the specified
2309 * baud rate.
2310 *****************************************************************************/
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002311static int calc_baud_rate_divisor(struct device *dev, int baudrate, int *divisor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312{
2313 int i;
2314 __u16 custom;
2315
Tobias Klauser52950ed2005-12-11 16:20:08 +01002316 for (i = 0; i < ARRAY_SIZE(divisor_table); i++) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002317 if (divisor_table[i].BaudRate == baudrate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 *divisor = divisor_table[i].Divisor;
2319 return 0;
2320 }
2321 }
2322
Alan Cox03f0dbf2008-07-22 11:16:34 +01002323 /* We have tried all of the standard baud rates
2324 * lets try to calculate the divisor for this baud rate
2325 * Make sure the baud rate is reasonable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (baudrate > 50 && baudrate < 230400) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002327 /* get divisor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 custom = (__u16)((230400L + baudrate/2) / baudrate);
2329
2330 *divisor = custom;
2331
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002332 dev_dbg(dev, "%s - Baud %d = %d\n", __func__, baudrate, custom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return 0;
2334 }
2335
2336 return -1;
2337}
2338
2339
2340/*****************************************************************************
2341 * send_cmd_write_uart_register
Anand Gadiyarfd589a82009-07-16 17:13:03 +02002342 * this function builds up a uart register message and sends to the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002344static int send_cmd_write_uart_register(struct edgeport_port *edge_port,
2345 __u8 regNum, __u8 regValue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002347 struct edgeport_serial *edge_serial =
2348 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002349 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 unsigned char *cmdBuffer;
2351 unsigned char *currCmd;
2352 unsigned long cmdLen = 0;
2353 int status;
2354
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002355 dev_dbg(dev, "%s - write to %s register 0x%02x\n",
2356 (regNum == MCR) ? "MCR" : "LCR", __func__, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Adam Kropelinbc71e472007-07-29 11:03:29 -04002358 if (edge_serial->is_epic &&
2359 !edge_serial->epic_descriptor.Supports.IOSPWriteMCR &&
2360 regNum == MCR) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002361 dev_dbg(dev, "SendCmdWriteUartReg - Not writing to MCR Register\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002362 return 0;
2363 }
2364
Adam Kropelinbc71e472007-07-29 11:03:29 -04002365 if (edge_serial->is_epic &&
2366 !edge_serial->epic_descriptor.Supports.IOSPWriteLCR &&
2367 regNum == LCR) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002368 dev_dbg(dev, "SendCmdWriteUartReg - Not writing to LCR Register\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002369 return 0;
2370 }
2371
Alan Cox03f0dbf2008-07-22 11:16:34 +01002372 /* Alloc memory for the string of commands. */
2373 cmdBuffer = kmalloc(0x10, GFP_ATOMIC);
2374 if (cmdBuffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 currCmd = cmdBuffer;
2378
Alan Cox03f0dbf2008-07-22 11:16:34 +01002379 /* Build a cmd in the buffer to write the given register */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002380 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, edge_port->port->port_number,
2381 regNum, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
2384 if (status) {
2385 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002386 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
2388
2389 return status;
2390}
2391
2392
2393/*****************************************************************************
2394 * change_port_settings
Alan Cox03f0dbf2008-07-22 11:16:34 +01002395 * This routine is called to set the UART on the device to match the
2396 * specified new settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01002398
2399static void change_port_settings(struct tty_struct *tty,
2400 struct edgeport_port *edge_port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002402 struct device *dev = &edge_port->port->dev;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002403 struct edgeport_serial *edge_serial =
2404 usb_get_serial_data(edge_port->port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 int baud;
2406 unsigned cflag;
2407 __u8 mask = 0xff;
2408 __u8 lData;
2409 __u8 lParity;
2410 __u8 lStop;
2411 __u8 rxFlow;
2412 __u8 txFlow;
2413 int status;
2414
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002415 if (!edge_port->open &&
2416 !edge_port->openPending) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002417 dev_dbg(dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return;
2419 }
2420
Alan Coxadc8d742012-07-14 15:31:47 +01002421 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 switch (cflag & CSIZE) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002424 case CS5:
2425 lData = LCR_BITS_5; mask = 0x1f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002426 dev_dbg(dev, "%s - data bits = 5\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002427 break;
2428 case CS6:
2429 lData = LCR_BITS_6; mask = 0x3f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002430 dev_dbg(dev, "%s - data bits = 6\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002431 break;
2432 case CS7:
2433 lData = LCR_BITS_7; mask = 0x7f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002434 dev_dbg(dev, "%s - data bits = 7\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002435 break;
2436 default:
2437 case CS8:
2438 lData = LCR_BITS_8;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002439 dev_dbg(dev, "%s - data bits = 8\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 }
2442
2443 lParity = LCR_PAR_NONE;
2444 if (cflag & PARENB) {
2445 if (cflag & CMSPAR) {
2446 if (cflag & PARODD) {
2447 lParity = LCR_PAR_MARK;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002448 dev_dbg(dev, "%s - parity = mark\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 } else {
2450 lParity = LCR_PAR_SPACE;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002451 dev_dbg(dev, "%s - parity = space\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 }
2453 } else if (cflag & PARODD) {
2454 lParity = LCR_PAR_ODD;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002455 dev_dbg(dev, "%s - parity = odd\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 } else {
2457 lParity = LCR_PAR_EVEN;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002458 dev_dbg(dev, "%s - parity = even\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 }
2460 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002461 dev_dbg(dev, "%s - parity = none\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463
2464 if (cflag & CSTOPB) {
2465 lStop = LCR_STOP_2;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002466 dev_dbg(dev, "%s - stop bits = 2\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 } else {
2468 lStop = LCR_STOP_1;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002469 dev_dbg(dev, "%s - stop bits = 1\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 }
2471
2472 /* figure out the flow control settings */
2473 rxFlow = txFlow = 0x00;
2474 if (cflag & CRTSCTS) {
2475 rxFlow |= IOSP_RX_FLOW_RTS;
2476 txFlow |= IOSP_TX_FLOW_CTS;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002477 dev_dbg(dev, "%s - RTS/CTS is enabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002479 dev_dbg(dev, "%s - RTS/CTS is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481
Alan Cox03f0dbf2008-07-22 11:16:34 +01002482 /* if we are implementing XON/XOFF, set the start and stop character
2483 in the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (I_IXOFF(tty) || I_IXON(tty)) {
2485 unsigned char stop_char = STOP_CHAR(tty);
2486 unsigned char start_char = START_CHAR(tty);
2487
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002488 if ((!edge_serial->is_epic) ||
2489 ((edge_serial->is_epic) &&
2490 (edge_serial->epic_descriptor.Supports.IOSPSetXChar))) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002491 send_iosp_ext_cmd(edge_port,
2492 IOSP_CMD_SET_XON_CHAR, start_char);
2493 send_iosp_ext_cmd(edge_port,
2494 IOSP_CMD_SET_XOFF_CHAR, stop_char);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 /* if we are implementing INBOUND XON/XOFF */
2498 if (I_IXOFF(tty)) {
2499 rxFlow |= IOSP_RX_FLOW_XON_XOFF;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002500 dev_dbg(dev, "%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2501 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002503 dev_dbg(dev, "%s - INBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 }
2505
2506 /* if we are implementing OUTBOUND XON/XOFF */
2507 if (I_IXON(tty)) {
2508 txFlow |= IOSP_TX_FLOW_XON_XOFF;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002509 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2510 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002512 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 }
2514 }
2515
2516 /* Set flow control to the configured value */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002517 if ((!edge_serial->is_epic) ||
2518 ((edge_serial->is_epic) &&
2519 (edge_serial->epic_descriptor.Supports.IOSPSetRxFlow)))
2520 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_RX_FLOW, rxFlow);
2521 if ((!edge_serial->is_epic) ||
2522 ((edge_serial->is_epic) &&
2523 (edge_serial->epic_descriptor.Supports.IOSPSetTxFlow)))
2524 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_TX_FLOW, txFlow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526
2527 edge_port->shadowLCR &= ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
2528 edge_port->shadowLCR |= (lData | lParity | lStop);
2529
2530 edge_port->validDataMask = mask;
2531
2532 /* Send the updated LCR value to the EdgePort */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002533 status = send_cmd_write_uart_register(edge_port, LCR,
2534 edge_port->shadowLCR);
2535 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 /* set up the MCR register and send it to the EdgePort */
2539 edge_port->shadowMCR = MCR_MASTER_IE;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002540 if (cflag & CBAUD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 edge_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002542
2543 status = send_cmd_write_uart_register(edge_port, MCR,
2544 edge_port->shadowMCR);
2545 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548 /* Determine divisor based on baud rate */
2549 baud = tty_get_baud_rate(tty);
2550 if (!baud) {
2551 /* pick a default, any default... */
2552 baud = 9600;
2553 }
2554
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002555 dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002556 status = send_cmd_write_baud_rate(edge_port, baud);
Alan Cox6ce073b2007-10-18 01:24:25 -07002557 if (status == -1) {
2558 /* Speed change was not possible - put back the old speed */
2559 baud = tty_termios_baud_rate(old_termios);
2560 tty_encode_baud_rate(tty, baud, baud);
2561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
2564
2565/****************************************************************************
2566 * unicode_to_ascii
2567 * Turns a string from Unicode into ASCII.
2568 * Doesn't do a good job with any characters that are outside the normal
2569 * ASCII range, but it's only for debugging...
2570 * NOTE: expects the unicode in LE format
2571 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002572static void unicode_to_ascii(char *string, int buflen,
2573 __le16 *unicode, int unicode_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
2575 int i;
2576
Pete Zaitcevad933752006-05-22 21:49:44 -07002577 if (buflen <= 0) /* never happens, but... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 return;
Pete Zaitcevad933752006-05-22 21:49:44 -07002579 --buflen; /* space for nul */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Pete Zaitcevad933752006-05-22 21:49:44 -07002581 for (i = 0; i < unicode_size; i++) {
2582 if (i >= buflen)
2583 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 string[i] = (char)(le16_to_cpu(unicode[i]));
Pete Zaitcevad933752006-05-22 21:49:44 -07002585 }
2586 string[i] = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587}
2588
2589
2590/****************************************************************************
2591 * get_manufacturing_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002592 * reads in the manufacturing descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 * structure.
2594 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002595static void get_manufacturing_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002597 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 int response;
2599
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002600 dev_dbg(dev, "getting manufacturer descriptor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Alan Cox03f0dbf2008-07-22 11:16:34 +01002602 response = rom_read(edge_serial->serial,
2603 (EDGE_MANUF_DESC_ADDR & 0xffff0000) >> 16,
2604 (__u16)(EDGE_MANUF_DESC_ADDR & 0x0000ffff),
2605 EDGE_MANUF_DESC_LEN,
2606 (__u8 *)(&edge_serial->manuf_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Alan Cox03f0dbf2008-07-22 11:16:34 +01002608 if (response < 1)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002609 dev_err(dev, "error in getting manufacturer descriptor\n");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002610 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 char string[30];
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002612 dev_dbg(dev, "**Manufacturer Descriptor\n");
2613 dev_dbg(dev, " RomSize: %dK\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002614 edge_serial->manuf_descriptor.RomSize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002615 dev_dbg(dev, " RamSize: %dK\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002616 edge_serial->manuf_descriptor.RamSize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002617 dev_dbg(dev, " CpuRev: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002618 edge_serial->manuf_descriptor.CpuRev);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002619 dev_dbg(dev, " BoardRev: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002620 edge_serial->manuf_descriptor.BoardRev);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002621 dev_dbg(dev, " NumPorts: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002622 edge_serial->manuf_descriptor.NumPorts);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002623 dev_dbg(dev, " DescDate: %d/%d/%d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002624 edge_serial->manuf_descriptor.DescDate[0],
2625 edge_serial->manuf_descriptor.DescDate[1],
2626 edge_serial->manuf_descriptor.DescDate[2]+1900);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002627 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002628 edge_serial->manuf_descriptor.SerialNumber,
2629 edge_serial->manuf_descriptor.SerNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002630 dev_dbg(dev, " SerialNumber: %s\n", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002631 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002632 edge_serial->manuf_descriptor.AssemblyNumber,
2633 edge_serial->manuf_descriptor.AssemblyNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002634 dev_dbg(dev, " AssemblyNumber: %s\n", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002635 unicode_to_ascii(string, sizeof(string),
Pete Zaitcevad933752006-05-22 21:49:44 -07002636 edge_serial->manuf_descriptor.OemAssyNumber,
2637 edge_serial->manuf_descriptor.OemAssyNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002638 dev_dbg(dev, " OemAssyNumber: %s\n", string);
2639 dev_dbg(dev, " UartType: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002640 edge_serial->manuf_descriptor.UartType);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002641 dev_dbg(dev, " IonPid: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002642 edge_serial->manuf_descriptor.IonPid);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002643 dev_dbg(dev, " IonConfig: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002644 edge_serial->manuf_descriptor.IonConfig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
2646}
2647
2648
2649/****************************************************************************
2650 * get_boot_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002651 * reads in the bootloader descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 * structure.
2653 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002654static void get_boot_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002656 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 int response;
2658
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002659 dev_dbg(dev, "getting boot descriptor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Alan Cox03f0dbf2008-07-22 11:16:34 +01002661 response = rom_read(edge_serial->serial,
2662 (EDGE_BOOT_DESC_ADDR & 0xffff0000) >> 16,
2663 (__u16)(EDGE_BOOT_DESC_ADDR & 0x0000ffff),
2664 EDGE_BOOT_DESC_LEN,
2665 (__u8 *)(&edge_serial->boot_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
Alan Cox03f0dbf2008-07-22 11:16:34 +01002667 if (response < 1)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002668 dev_err(dev, "error in getting boot descriptor\n");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002669 else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002670 dev_dbg(dev, "**Boot Descriptor:\n");
2671 dev_dbg(dev, " BootCodeLength: %d\n",
2672 le16_to_cpu(edge_serial->boot_descriptor.BootCodeLength));
2673 dev_dbg(dev, " MajorVersion: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002674 edge_serial->boot_descriptor.MajorVersion);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002675 dev_dbg(dev, " MinorVersion: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002676 edge_serial->boot_descriptor.MinorVersion);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002677 dev_dbg(dev, " BuildNumber: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002678 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber));
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002679 dev_dbg(dev, " Capabilities: 0x%x\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002680 le16_to_cpu(edge_serial->boot_descriptor.Capabilities));
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002681 dev_dbg(dev, " UConfig0: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002682 edge_serial->boot_descriptor.UConfig0);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002683 dev_dbg(dev, " UConfig1: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002684 edge_serial->boot_descriptor.UConfig1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 }
2686}
2687
2688
2689/****************************************************************************
2690 * load_application_firmware
2691 * This is called to load the application firmware to the device
2692 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002693static void load_application_firmware(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002695 struct device *dev = &edge_serial->serial->dev->dev;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302696 const struct ihex_binrec *rec;
2697 const struct firmware *fw;
2698 const char *fw_name;
2699 const char *fw_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 int response;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302701 __u32 Operaddr;
2702 __u16 build;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 switch (edge_serial->product_info.iDownloadFile) {
2705 case EDGE_DOWNLOAD_FILE_I930:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302706 fw_info = "downloading firmware version (930)";
2707 fw_name = "edgeport/down.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 break;
2709
2710 case EDGE_DOWNLOAD_FILE_80251:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302711 fw_info = "downloading firmware version (80251)";
2712 fw_name = "edgeport/down2.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 break;
2714
2715 case EDGE_DOWNLOAD_FILE_NONE:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002716 dev_dbg(dev, "No download file specified, skipping download\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 return;
2718
2719 default:
2720 return;
2721 }
2722
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302723 response = request_ihex_firmware(&fw, fw_name,
2724 &edge_serial->serial->dev->dev);
2725 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002726 dev_err(dev, "Failed to load image \"%s\" err %d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302727 fw_name, response);
2728 return;
2729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302731 rec = (const struct ihex_binrec *)fw->data;
2732 build = (rec->data[2] << 8) | rec->data[3];
2733
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002734 dev_dbg(dev, "%s %d.%d.%d\n", fw_info, rec->data[0], rec->data[1], build);
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302735
Bjørn Mork271c1152011-01-17 14:19:37 +01002736 edge_serial->product_info.FirmwareMajorVersion = rec->data[0];
2737 edge_serial->product_info.FirmwareMinorVersion = rec->data[1];
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302738 edge_serial->product_info.FirmwareBuildNumber = cpu_to_le16(build);
2739
2740 for (rec = ihex_next_binrec(rec); rec;
2741 rec = ihex_next_binrec(rec)) {
2742 Operaddr = be32_to_cpu(rec->addr);
2743 response = sram_write(edge_serial->serial,
2744 Operaddr >> 16,
2745 Operaddr & 0xFFFF,
2746 be16_to_cpu(rec->len),
2747 &rec->data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 if (response < 0) {
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302749 dev_err(&edge_serial->serial->dev->dev,
2750 "sram_write failed (%x, %x, %d)\n",
2751 Operaddr >> 16, Operaddr & 0xFFFF,
2752 be16_to_cpu(rec->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 break;
2754 }
2755 }
2756
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002757 dev_dbg(dev, "sending exec_dl_code\n");
2758 response = usb_control_msg (edge_serial->serial->dev,
2759 usb_sndctrlpipe(edge_serial->serial->dev, 0),
2760 USB_REQUEST_ION_EXEC_DL_CODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 0x40, 0x4000, 0x0001, NULL, 0, 3000);
2762
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302763 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764}
2765
2766
2767/****************************************************************************
2768 * edge_startup
2769 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002770static int edge_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
2772 struct edgeport_serial *edge_serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 struct usb_device *dev;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002774 struct device *ddev = &serial->dev->dev;
Johan Hovoldc27f3ef2012-10-17 13:34:57 +02002775 int i;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002776 int response;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002777 bool interrupt_in_found;
2778 bool bulk_in_found;
2779 bool bulk_out_found;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002780 static __u32 descriptor[3] = { EDGE_COMPATIBILITY_MASK0,
2781 EDGE_COMPATIBILITY_MASK1,
2782 EDGE_COMPATIBILITY_MASK2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 dev = serial->dev;
2785
2786 /* create our private serial structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002787 edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 if (edge_serial == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002789 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 return -ENOMEM;
2791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 spin_lock_init(&edge_serial->es_lock);
2793 edge_serial->serial = serial;
2794 usb_set_serial_data(serial, edge_serial);
2795
2796 /* get the name for the device from the device */
Dan Carpenterf10718f2010-01-25 14:53:33 +03002797 i = usb_string(dev, dev->descriptor.iManufacturer,
Pete Zaitcevad933752006-05-22 21:49:44 -07002798 &edge_serial->name[0], MAX_NAME_LEN+1);
Dan Carpenterf10718f2010-01-25 14:53:33 +03002799 if (i < 0)
2800 i = 0;
Pete Zaitcevad933752006-05-22 21:49:44 -07002801 edge_serial->name[i++] = ' ';
Dan Carpenterf10718f2010-01-25 14:53:33 +03002802 usb_string(dev, dev->descriptor.iProduct,
Pete Zaitcevad933752006-05-22 21:49:44 -07002803 &edge_serial->name[i], MAX_NAME_LEN+2 - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 dev_info(&serial->dev->dev, "%s detected\n", edge_serial->name);
2806
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002807 /* Read the epic descriptor */
2808 if (get_epic_descriptor(edge_serial) <= 0) {
2809 /* memcpy descriptor to Supports structures */
2810 memcpy(&edge_serial->epic_descriptor.Supports, descriptor,
2811 sizeof(struct edge_compatibility_bits));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002813 /* get the manufacturing descriptor for this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002814 get_manufacturing_desc(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002816 /* get the boot descriptor */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002817 get_boot_desc(edge_serial);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002818
2819 get_product_info(edge_serial);
2820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
2822 /* set the number of ports from the manufacturing description */
2823 /* serial->num_ports = serial->product_info.NumPorts; */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002824 if ((!edge_serial->is_epic) &&
2825 (edge_serial->product_info.NumPorts != serial->num_ports)) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002826 dev_warn(ddev,
2827 "Device Reported %d serial ports vs. core thinking we have %d ports, email greg@kroah.com this information.\n",
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002828 edge_serial->product_info.NumPorts,
2829 serial->num_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 }
2831
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002832 dev_dbg(ddev, "%s - time 1 %ld\n", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002834 /* If not an EPiC device */
2835 if (!edge_serial->is_epic) {
2836 /* now load the application firmware into this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002837 load_application_firmware(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002839 dev_dbg(ddev, "%s - time 2 %ld\n", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002841 /* Check current Edgeport EEPROM and update if necessary */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002842 update_edgeport_E2PROM(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002844 dev_dbg(ddev, "%s - time 3 %ld\n", __func__, jiffies);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002845
2846 /* set the configuration to use #1 */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002847/* dev_dbg(ddev, "set_configuration 1\n"); */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002848/* usb_set_configuration (dev, 1); */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002849 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002850 dev_dbg(ddev, " FirmwareMajorVersion %d.%d.%d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302851 edge_serial->product_info.FirmwareMajorVersion,
2852 edge_serial->product_info.FirmwareMinorVersion,
2853 le16_to_cpu(edge_serial->product_info.FirmwareBuildNumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Alan Cox03f0dbf2008-07-22 11:16:34 +01002855 /* we set up the pointers to the endpoints in the edge_open function,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 * as the structures aren't created yet. */
2857
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002858 response = 0;
2859
2860 if (edge_serial->is_epic) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002861 /* EPIC thing, set up our interrupt polling now and our read
2862 * urb, so that the device knows it really is connected. */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002863 interrupt_in_found = bulk_in_found = bulk_out_found = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002864 for (i = 0; i < serial->interface->altsetting[0]
2865 .desc.bNumEndpoints; ++i) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002866 struct usb_endpoint_descriptor *endpoint;
2867 int buffer_size;
2868
Alan Cox03f0dbf2008-07-22 11:16:34 +01002869 endpoint = &serial->interface->altsetting[0].
2870 endpoint[i].desc;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002871 buffer_size = usb_endpoint_maxp(endpoint);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002872 if (!interrupt_in_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002873 (usb_endpoint_is_int_in(endpoint))) {
2874 /* we found a interrupt in endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002875 dev_dbg(ddev, "found interrupt in\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002876
2877 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002878 edge_serial->interrupt_read_urb =
2879 usb_alloc_urb(0, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002880 if (!edge_serial->interrupt_read_urb) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002881 dev_err(ddev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002882 return -ENOMEM;
2883 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002884 edge_serial->interrupt_in_buffer =
2885 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002886 if (!edge_serial->interrupt_in_buffer) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002887 dev_err(ddev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002888 usb_free_urb(edge_serial->interrupt_read_urb);
2889 return -ENOMEM;
2890 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002891 edge_serial->interrupt_in_endpoint =
2892 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002893
2894 /* set up our interrupt urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002895 usb_fill_int_urb(
2896 edge_serial->interrupt_read_urb,
2897 dev,
2898 usb_rcvintpipe(dev,
2899 endpoint->bEndpointAddress),
2900 edge_serial->interrupt_in_buffer,
2901 buffer_size,
2902 edge_interrupt_callback,
2903 edge_serial,
2904 endpoint->bInterval);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002905
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002906 interrupt_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002907 }
2908
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002909 if (!bulk_in_found &&
Alan Cox03f0dbf2008-07-22 11:16:34 +01002910 (usb_endpoint_is_bulk_in(endpoint))) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002911 /* we found a bulk in endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002912 dev_dbg(ddev, "found bulk in\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002913
2914 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002915 edge_serial->read_urb =
2916 usb_alloc_urb(0, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002917 if (!edge_serial->read_urb) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002918 dev_err(ddev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002919 return -ENOMEM;
2920 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002921 edge_serial->bulk_in_buffer =
2922 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002923 if (!edge_serial->bulk_in_buffer) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002924 dev_err(&dev->dev, "out of memory\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002925 usb_free_urb(edge_serial->read_urb);
2926 return -ENOMEM;
2927 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002928 edge_serial->bulk_in_endpoint =
2929 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002930
2931 /* set up our bulk in urb */
2932 usb_fill_bulk_urb(edge_serial->read_urb, dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +01002933 usb_rcvbulkpipe(dev,
2934 endpoint->bEndpointAddress),
2935 edge_serial->bulk_in_buffer,
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002936 usb_endpoint_maxp(endpoint),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002937 edge_bulk_in_callback,
2938 edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002939 bulk_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002940 }
2941
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002942 if (!bulk_out_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002943 (usb_endpoint_is_bulk_out(endpoint))) {
2944 /* we found a bulk out endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002945 dev_dbg(ddev, "found bulk out\n");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002946 edge_serial->bulk_out_endpoint =
2947 endpoint->bEndpointAddress;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002948 bulk_out_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002949 }
2950 }
2951
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002952 if (!interrupt_in_found || !bulk_in_found || !bulk_out_found) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002953 dev_err(ddev, "Error - the proper endpoints were not found!\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002954 return -ENODEV;
2955 }
2956
2957 /* start interrupt read for this edgeport this interrupt will
2958 * continue as long as the edgeport is connected */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002959 response = usb_submit_urb(edge_serial->interrupt_read_urb,
2960 GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002961 if (response)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002962 dev_err(ddev, "%s - Error %d submitting control urb\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002963 __func__, response);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002964 }
2965 return response;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966}
2967
2968
2969/****************************************************************************
Alan Sternf9c99bb2009-06-02 11:53:55 -04002970 * edge_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 * This function is called whenever the device is removed from the usb bus.
2972 ****************************************************************************/
Alan Sternf9c99bb2009-06-02 11:53:55 -04002973static void edge_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002975 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 /* stop reads and writes on all ports */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002978 /* free up our endpoint stuff */
2979 if (edge_serial->is_epic) {
Oliver Neukum74ac07e2007-06-13 18:50:41 +02002980 usb_kill_urb(edge_serial->interrupt_read_urb);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002981 usb_free_urb(edge_serial->interrupt_read_urb);
2982 kfree(edge_serial->interrupt_in_buffer);
2983
Oliver Neukum74ac07e2007-06-13 18:50:41 +02002984 usb_kill_urb(edge_serial->read_urb);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002985 usb_free_urb(edge_serial->read_urb);
2986 kfree(edge_serial->bulk_in_buffer);
2987 }
Alan Sternf9c99bb2009-06-02 11:53:55 -04002988}
2989
2990
2991/****************************************************************************
2992 * edge_release
2993 * This function is called when the device structure is deallocated.
2994 ****************************************************************************/
2995static void edge_release(struct usb_serial *serial)
2996{
2997 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002998
2999 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000}
3001
Johan Hovoldc27f3ef2012-10-17 13:34:57 +02003002static int edge_port_probe(struct usb_serial_port *port)
3003{
3004 struct edgeport_port *edge_port;
3005
3006 edge_port = kzalloc(sizeof(*edge_port), GFP_KERNEL);
3007 if (!edge_port)
3008 return -ENOMEM;
3009
3010 spin_lock_init(&edge_port->ep_lock);
3011 edge_port->port = port;
3012
3013 usb_set_serial_port_data(port, edge_port);
3014
3015 return 0;
3016}
3017
3018static int edge_port_remove(struct usb_serial_port *port)
3019{
3020 struct edgeport_port *edge_port;
3021
3022 edge_port = usb_get_serial_port_data(port);
3023 kfree(edge_port);
3024
3025 return 0;
3026}
3027
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07003028module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Alan Cox03f0dbf2008-07-22 11:16:34 +01003030MODULE_AUTHOR(DRIVER_AUTHOR);
3031MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032MODULE_LICENSE("GPL");
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05303033MODULE_FIRMWARE("edgeport/boot.fw");
3034MODULE_FIRMWARE("edgeport/boot2.fw");
3035MODULE_FIRMWARE("edgeport/down.fw");
3036MODULE_FIRMWARE("edgeport/down2.fw");