blob: edd568bc0de5c914c4a6bf06c6b713c5636ca6bb [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/slab.h>
36#include <linux/tty.h>
37#include <linux/tty_driver.h>
38#include <linux/tty_flip.h>
39#include <linux/module.h>
40#include <linux/spinlock.h>
41#include <linux/serial.h>
42#include <linux/ioctl.h>
43#include <linux/wait.h>
Jaswinder Singh5b9ea932008-07-03 17:00:23 +053044#include <linux/firmware.h>
45#include <linux/ihex.h>
Alan Cox03f0dbf2008-07-22 11:16:34 +010046#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070048#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include "io_edgeport.h"
50#include "io_ionsp.h" /* info for the iosp messages */
51#include "io_16654.h" /* 16654 UART defines */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com> and David Iacovelli"
54#define DRIVER_DESC "Edgeport USB Serial Driver"
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define MAX_NAME_LEN 64
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define OPEN_TIMEOUT (5*HZ) /* 5 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/* receive port state */
61enum RXSTATE {
Alan Cox03f0dbf2008-07-22 11:16:34 +010062 EXPECT_HDR1 = 0, /* Expect header byte 1 */
63 EXPECT_HDR2 = 1, /* Expect header byte 2 */
64 EXPECT_DATA = 2, /* Expect 'RxBytesRemaining' data */
65 EXPECT_HDR3 = 3, /* Expect header byte 3 (for status hdrs only) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
68
Alan Cox03f0dbf2008-07-22 11:16:34 +010069/* Transmit Fifo
70 * This Transmit queue is an extension of the edgeport Rx buffer.
71 * The maximum amount of data buffered in both the edgeport
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * Rx buffer (maxTxCredits) and this buffer will never exceed maxTxCredits.
73 */
74struct TxFifo {
75 unsigned int head; /* index to head pointer (write) */
76 unsigned int tail; /* index to tail pointer (read) */
77 unsigned int count; /* Bytes in queue */
78 unsigned int size; /* Max size of queue (equal to Max number of TxCredits) */
79 unsigned char *fifo; /* allocated Buffer */
80};
81
82/* This structure holds all of the local port information */
83struct edgeport_port {
84 __u16 txCredits; /* our current credits for this port */
85 __u16 maxTxCredits; /* the max size of the port */
86
87 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */
88 struct urb *write_urb; /* write URB for this port */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +010089 bool write_in_progress; /* 'true' while a write URB is outstanding */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 spinlock_t ep_lock;
91
92 __u8 shadowLCR; /* last LCR value received */
93 __u8 shadowMCR; /* last MCR value received */
94 __u8 shadowMSR; /* last MSR value received */
95 __u8 shadowLSR; /* last LSR value received */
96 __u8 shadowXonChar; /* last value set as XON char in Edgeport */
97 __u8 shadowXoffChar; /* last value set as XOFF char in Edgeport */
98 __u8 validDataMask;
99 __u32 baudRate;
100
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100101 bool open;
102 bool openPending;
103 bool commandPending;
104 bool closePending;
105 bool chaseResponsePending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
108 wait_queue_head_t wait_open; /* for handling sleeping while waiting for open to finish */
109 wait_queue_head_t wait_command; /* for handling sleeping while waiting for command to finish */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct usb_serial_port *port; /* loop back to the owner of this object */
112};
113
114
115/* This structure holds all of the individual device information */
116struct edgeport_serial {
Pete Zaitcevad933752006-05-22 21:49:44 -0700117 char name[MAX_NAME_LEN+2]; /* string name of this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 struct edge_manuf_descriptor manuf_descriptor; /* the manufacturer descriptor */
120 struct edge_boot_descriptor boot_descriptor; /* the boot firmware descriptor */
121 struct edgeport_product_info product_info; /* Product Info */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800122 struct edge_compatibility_descriptor epic_descriptor; /* Edgeport compatible descriptor */
123 int is_epic; /* flag if EPiC device or not */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 __u8 interrupt_in_endpoint; /* the interrupt endpoint handle */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100126 unsigned char *interrupt_in_buffer; /* the buffer we use for the interrupt endpoint */
127 struct urb *interrupt_read_urb; /* our interrupt urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 __u8 bulk_in_endpoint; /* the bulk in endpoint handle */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100130 unsigned char *bulk_in_buffer; /* the buffer we use for the bulk in endpoint */
131 struct urb *read_urb; /* our bulk read urb */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100132 bool read_in_progress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 spinlock_t es_lock;
134
135 __u8 bulk_out_endpoint; /* the bulk out endpoint handle */
136
137 __s16 rxBytesAvail; /* the number of bytes that we need to read from this device */
138
139 enum RXSTATE rxState; /* the current state of the bulk receive processor */
140 __u8 rxHeader1; /* receive header byte 1 */
141 __u8 rxHeader2; /* receive header byte 2 */
142 __u8 rxHeader3; /* receive header byte 3 */
143 __u8 rxPort; /* the port that we are currently receiving data for */
144 __u8 rxStatusCode; /* the receive status code */
145 __u8 rxStatusParam; /* the receive status paramater */
146 __s16 rxBytesRemaining; /* the number of port bytes left to read */
147 struct usb_serial *serial; /* loop back to the owner of this object */
148};
149
150/* baud rate information */
151struct divisor_table_entry {
152 __u32 BaudRate;
153 __u16 Divisor;
154};
155
Alan Cox03f0dbf2008-07-22 11:16:34 +0100156/*
157 * Define table of divisors for Rev A EdgePort/4 hardware
158 * These assume a 3.6864MHz crystal, the standard /16, and
159 * MCR.7 = 0.
160 */
161
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100162static const struct divisor_table_entry divisor_table[] = {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100163 { 50, 4608},
164 { 75, 3072},
165 { 110, 2095}, /* 2094.545455 => 230450 => .0217 % over */
166 { 134, 1713}, /* 1713.011152 => 230398.5 => .00065% under */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 { 150, 1536},
168 { 300, 768},
169 { 600, 384},
170 { 1200, 192},
171 { 1800, 128},
172 { 2400, 96},
173 { 4800, 48},
174 { 7200, 32},
175 { 9600, 24},
176 { 14400, 16},
177 { 19200, 12},
178 { 38400, 6},
179 { 57600, 4},
180 { 115200, 2},
181 { 230400, 1},
182};
183
Greg Kroah-Hartman36ccce42012-02-28 13:11:51 -0800184/* Number of outstanding Command Write Urbs */
185static atomic_t CmdUrbs = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187
188/* local function prototypes */
189
190/* function prototypes for all URB callbacks */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100191static void edge_interrupt_callback(struct urb *urb);
192static void edge_bulk_in_callback(struct urb *urb);
193static void edge_bulk_out_data_callback(struct urb *urb);
194static void edge_bulk_out_cmd_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196/* function prototypes for the usbserial callbacks */
Alan Coxa509a7e2009-09-19 13:13:26 -0700197static int edge_open(struct tty_struct *tty, struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +0100198static void edge_close(struct usb_serial_port *port);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100199static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
200 const unsigned char *buf, int count);
201static int edge_write_room(struct tty_struct *tty);
202static int edge_chars_in_buffer(struct tty_struct *tty);
203static void edge_throttle(struct tty_struct *tty);
204static void edge_unthrottle(struct tty_struct *tty);
205static void edge_set_termios(struct tty_struct *tty,
206 struct usb_serial_port *port,
207 struct ktermios *old_termios);
Alan Cox00a0d0d2011-02-14 16:27:06 +0000208static int edge_ioctl(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100209 unsigned int cmd, unsigned long arg);
210static void edge_break(struct tty_struct *tty, int break_state);
Alan Cox60b33c12011-02-14 16:26:14 +0000211static int edge_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000212static int edge_tiocmset(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100213 unsigned int set, unsigned int clear);
214static int edge_startup(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -0400215static void edge_disconnect(struct usb_serial *serial);
216static void edge_release(struct usb_serial *serial);
Johan Hovoldc27f3ef2012-10-17 13:34:57 +0200217static int edge_port_probe(struct usb_serial_port *port);
218static int edge_port_remove(struct usb_serial_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220#include "io_tables.h" /* all of the devices that this driver supports */
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/* function prototypes for all of our local functions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Alan Cox03f0dbf2008-07-22 11:16:34 +0100224static void process_rcvd_data(struct edgeport_serial *edge_serial,
225 unsigned char *buffer, __u16 bufferLength);
226static void process_rcvd_status(struct edgeport_serial *edge_serial,
227 __u8 byte2, __u8 byte3);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100228static void edge_tty_recv(struct usb_serial_port *port, unsigned char *data,
229 int length);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100230static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr);
231static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
232 __u8 lsr, __u8 data);
233static int send_iosp_ext_cmd(struct edgeport_port *edge_port, __u8 command,
234 __u8 param);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700235static int calc_baud_rate_divisor(struct device *dev, int baud_rate, int *divisor);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100236static int send_cmd_write_baud_rate(struct edgeport_port *edge_port,
237 int baudRate);
238static void change_port_settings(struct tty_struct *tty,
239 struct edgeport_port *edge_port,
240 struct ktermios *old_termios);
241static int send_cmd_write_uart_register(struct edgeport_port *edge_port,
242 __u8 regNum, __u8 regValue);
243static int write_cmd_usb(struct edgeport_port *edge_port,
244 unsigned char *buffer, int writeLength);
245static void send_more_port_data(struct edgeport_serial *edge_serial,
246 struct edgeport_port *edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Alan Cox03f0dbf2008-07-22 11:16:34 +0100248static int sram_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
249 __u16 length, const __u8 *data);
250static int rom_read(struct usb_serial *serial, __u16 extAddr, __u16 addr,
251 __u16 length, __u8 *data);
252static int rom_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
253 __u16 length, const __u8 *data);
254static void get_manufacturing_desc(struct edgeport_serial *edge_serial);
255static void get_boot_desc(struct edgeport_serial *edge_serial);
256static void load_application_firmware(struct edgeport_serial *edge_serial);
257
258static void unicode_to_ascii(char *string, int buflen,
259 __le16 *unicode, int unicode_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261
Alan Cox03f0dbf2008-07-22 11:16:34 +0100262/* ************************************************************************ */
263/* ************************************************************************ */
264/* ************************************************************************ */
265/* ************************************************************************ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/************************************************************************
268 * *
269 * update_edgeport_E2PROM() Compare current versions of *
270 * Boot ROM and Manufacture *
271 * Descriptors with versions *
272 * embedded in this driver *
273 * *
274 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100275static void update_edgeport_E2PROM(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700277 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 __u32 BootCurVer;
279 __u32 BootNewVer;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530280 __u8 BootMajorVersion;
281 __u8 BootMinorVersion;
282 __u16 BootBuildNumber;
283 __u32 Bootaddr;
284 const struct ihex_binrec *rec;
285 const struct firmware *fw;
286 const char *fw_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 int response;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 switch (edge_serial->product_info.iDownloadFile) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100290 case EDGE_DOWNLOAD_FILE_I930:
291 fw_name = "edgeport/boot.fw";
292 break;
293 case EDGE_DOWNLOAD_FILE_80251:
294 fw_name = "edgeport/boot2.fw";
295 break;
296 default:
297 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530300 response = request_ihex_firmware(&fw, fw_name,
301 &edge_serial->serial->dev->dev);
302 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700303 dev_err(dev, "Failed to load image \"%s\" err %d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530304 fw_name, response);
305 return;
306 }
307
308 rec = (const struct ihex_binrec *)fw->data;
309 BootMajorVersion = rec->data[0];
310 BootMinorVersion = rec->data[1];
311 BootBuildNumber = (rec->data[2] << 8) | rec->data[3];
312
Alan Cox03f0dbf2008-07-22 11:16:34 +0100313 /* Check Boot Image Version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 BootCurVer = (edge_serial->boot_descriptor.MajorVersion << 24) +
315 (edge_serial->boot_descriptor.MinorVersion << 16) +
316 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber);
317
318 BootNewVer = (BootMajorVersion << 24) +
319 (BootMinorVersion << 16) +
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530320 BootBuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700322 dev_dbg(dev, "Current Boot Image version %d.%d.%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 edge_serial->boot_descriptor.MajorVersion,
324 edge_serial->boot_descriptor.MinorVersion,
325 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber));
326
327
328 if (BootNewVer > BootCurVer) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700329 dev_dbg(dev, "**Update Boot Image from %d.%d.%d to %d.%d.%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 edge_serial->boot_descriptor.MajorVersion,
331 edge_serial->boot_descriptor.MinorVersion,
332 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber),
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530333 BootMajorVersion, BootMinorVersion, BootBuildNumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700335 dev_dbg(dev, "Downloading new Boot Image\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530337 for (rec = ihex_next_binrec(rec); rec;
338 rec = ihex_next_binrec(rec)) {
339 Bootaddr = be32_to_cpu(rec->addr);
340 response = rom_write(edge_serial->serial,
341 Bootaddr >> 16,
342 Bootaddr & 0xFFFF,
343 be16_to_cpu(rec->len),
344 &rec->data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (response < 0) {
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530346 dev_err(&edge_serial->serial->dev->dev,
347 "rom_write failed (%x, %x, %d)\n",
348 Bootaddr >> 16, Bootaddr & 0xFFFF,
349 be16_to_cpu(rec->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 break;
351 }
352 }
353 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700354 dev_dbg(dev, "Boot Image -- already up to date\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Jaswinder Singh5b9ea932008-07-03 17:00:23 +0530356 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#if 0
360/************************************************************************
361 *
362 * Get string descriptor from device
363 *
364 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100365static int get_string_desc(struct usb_device *dev, int Id,
366 struct usb_string_descriptor **pRetDesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 struct usb_string_descriptor StringDesc;
369 struct usb_string_descriptor *pStringDesc;
370
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700371 dev_dbg(&dev->dev, "%s - USB String ID = %d\n", __func__, Id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Alan Cox03f0dbf2008-07-22 11:16:34 +0100373 if (!usb_get_descriptor(dev, USB_DT_STRING, Id, &StringDesc,
374 sizeof(StringDesc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Alan Cox03f0dbf2008-07-22 11:16:34 +0100377 pStringDesc = kmalloc(StringDesc.bLength, GFP_KERNEL);
378 if (!pStringDesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Alan Cox03f0dbf2008-07-22 11:16:34 +0100381 if (!usb_get_descriptor(dev, USB_DT_STRING, Id, pStringDesc,
382 StringDesc.bLength)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 kfree(pStringDesc);
384 return -1;
385 }
386
387 *pRetDesc = pStringDesc;
388 return 0;
389}
390#endif
391
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700392static void dump_product_info(struct edgeport_serial *edge_serial,
393 struct edgeport_product_info *product_info)
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800394{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700395 struct device *dev = &edge_serial->serial->dev->dev;
396
Alan Cox03f0dbf2008-07-22 11:16:34 +0100397 /* Dump Product Info structure */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700398 dev_dbg(dev, "**Product Information:\n");
399 dev_dbg(dev, " ProductId %x\n", product_info->ProductId);
400 dev_dbg(dev, " NumPorts %d\n", product_info->NumPorts);
401 dev_dbg(dev, " ProdInfoVer %d\n", product_info->ProdInfoVer);
402 dev_dbg(dev, " IsServer %d\n", product_info->IsServer);
403 dev_dbg(dev, " IsRS232 %d\n", product_info->IsRS232);
404 dev_dbg(dev, " IsRS422 %d\n", product_info->IsRS422);
405 dev_dbg(dev, " IsRS485 %d\n", product_info->IsRS485);
406 dev_dbg(dev, " RomSize %d\n", product_info->RomSize);
407 dev_dbg(dev, " RamSize %d\n", product_info->RamSize);
408 dev_dbg(dev, " CpuRev %x\n", product_info->CpuRev);
409 dev_dbg(dev, " BoardRev %x\n", product_info->BoardRev);
410 dev_dbg(dev, " BootMajorVersion %d.%d.%d\n",
411 product_info->BootMajorVersion,
412 product_info->BootMinorVersion,
413 le16_to_cpu(product_info->BootBuildNumber));
414 dev_dbg(dev, " FirmwareMajorVersion %d.%d.%d\n",
415 product_info->FirmwareMajorVersion,
416 product_info->FirmwareMinorVersion,
417 le16_to_cpu(product_info->FirmwareBuildNumber));
418 dev_dbg(dev, " ManufactureDescDate %d/%d/%d\n",
419 product_info->ManufactureDescDate[0],
420 product_info->ManufactureDescDate[1],
421 product_info->ManufactureDescDate[2]+1900);
422 dev_dbg(dev, " iDownloadFile 0x%x\n",
423 product_info->iDownloadFile);
424 dev_dbg(dev, " EpicVer %d\n", product_info->EpicVer);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static void get_product_info(struct edgeport_serial *edge_serial)
428{
429 struct edgeport_product_info *product_info = &edge_serial->product_info;
430
Alan Cox03f0dbf2008-07-22 11:16:34 +0100431 memset(product_info, 0, sizeof(struct edgeport_product_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Alan Cox03f0dbf2008-07-22 11:16:34 +0100433 product_info->ProductId = (__u16)(le16_to_cpu(edge_serial->serial->dev->descriptor.idProduct) & ~ION_DEVICE_ID_80251_NETCHIP);
434 product_info->NumPorts = edge_serial->manuf_descriptor.NumPorts;
435 product_info->ProdInfoVer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Alan Cox03f0dbf2008-07-22 11:16:34 +0100437 product_info->RomSize = edge_serial->manuf_descriptor.RomSize;
438 product_info->RamSize = edge_serial->manuf_descriptor.RamSize;
439 product_info->CpuRev = edge_serial->manuf_descriptor.CpuRev;
440 product_info->BoardRev = edge_serial->manuf_descriptor.BoardRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Alan Cox03f0dbf2008-07-22 11:16:34 +0100442 product_info->BootMajorVersion =
443 edge_serial->boot_descriptor.MajorVersion;
444 product_info->BootMinorVersion =
445 edge_serial->boot_descriptor.MinorVersion;
446 product_info->BootBuildNumber =
447 edge_serial->boot_descriptor.BuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Alan Cox03f0dbf2008-07-22 11:16:34 +0100449 memcpy(product_info->ManufactureDescDate,
450 edge_serial->manuf_descriptor.DescDate,
451 sizeof(edge_serial->manuf_descriptor.DescDate));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Alan Cox03f0dbf2008-07-22 11:16:34 +0100453 /* check if this is 2nd generation hardware */
454 if (le16_to_cpu(edge_serial->serial->dev->descriptor.idProduct)
455 & ION_DEVICE_ID_80251_NETCHIP)
456 product_info->iDownloadFile = EDGE_DOWNLOAD_FILE_80251;
457 else
458 product_info->iDownloadFile = EDGE_DOWNLOAD_FILE_I930;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700459
Alan Cox03f0dbf2008-07-22 11:16:34 +0100460 /* Determine Product type and set appropriate flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 switch (DEVICE_ID_FROM_USB_PRODUCT_ID(product_info->ProductId)) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100462 case ION_DEVICE_ID_EDGEPORT_COMPATIBLE:
463 case ION_DEVICE_ID_EDGEPORT_4T:
464 case ION_DEVICE_ID_EDGEPORT_4:
465 case ION_DEVICE_ID_EDGEPORT_2:
466 case ION_DEVICE_ID_EDGEPORT_8_DUAL_CPU:
467 case ION_DEVICE_ID_EDGEPORT_8:
468 case ION_DEVICE_ID_EDGEPORT_421:
469 case ION_DEVICE_ID_EDGEPORT_21:
470 case ION_DEVICE_ID_EDGEPORT_2_DIN:
471 case ION_DEVICE_ID_EDGEPORT_4_DIN:
472 case ION_DEVICE_ID_EDGEPORT_16_DUAL_CPU:
473 product_info->IsRS232 = 1;
474 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Alan Cox03f0dbf2008-07-22 11:16:34 +0100476 case ION_DEVICE_ID_EDGEPORT_2I: /* Edgeport/2 RS422/RS485 */
477 product_info->IsRS422 = 1;
478 product_info->IsRS485 = 1;
479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Alan Cox03f0dbf2008-07-22 11:16:34 +0100481 case ION_DEVICE_ID_EDGEPORT_8I: /* Edgeport/4 RS422 */
482 case ION_DEVICE_ID_EDGEPORT_4I: /* Edgeport/4 RS422 */
483 product_info->IsRS422 = 1;
484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700487 dump_product_info(edge_serial, product_info);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800488}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800490static int get_epic_descriptor(struct edgeport_serial *ep)
491{
492 int result;
493 struct usb_serial *serial = ep->serial;
494 struct edgeport_product_info *product_info = &ep->product_info;
495 struct edge_compatibility_descriptor *epic = &ep->epic_descriptor;
496 struct edge_compatibility_bits *bits;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700497 struct device *dev = &serial->dev->dev;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800498
499 ep->is_epic = 0;
500 result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
501 USB_REQUEST_ION_GET_EPIC_DESC,
502 0xC0, 0x00, 0x00,
503 &ep->epic_descriptor,
504 sizeof(struct edge_compatibility_descriptor),
505 300);
506
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800507 if (result > 0) {
508 ep->is_epic = 1;
509 memset(product_info, 0, sizeof(struct edgeport_product_info));
510
Alan Cox03f0dbf2008-07-22 11:16:34 +0100511 product_info->NumPorts = epic->NumPorts;
512 product_info->ProdInfoVer = 0;
513 product_info->FirmwareMajorVersion = epic->MajorVersion;
514 product_info->FirmwareMinorVersion = epic->MinorVersion;
515 product_info->FirmwareBuildNumber = epic->BuildNumber;
516 product_info->iDownloadFile = epic->iDownloadFile;
517 product_info->EpicVer = epic->EpicVer;
518 product_info->Epic = epic->Supports;
519 product_info->ProductId = ION_DEVICE_ID_EDGEPORT_COMPATIBLE;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700520 dump_product_info(ep, product_info);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800521
522 bits = &ep->epic_descriptor.Supports;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700523 dev_dbg(dev, "**EPIC descriptor:\n");
524 dev_dbg(dev, " VendEnableSuspend: %s\n", bits->VendEnableSuspend ? "TRUE": "FALSE");
525 dev_dbg(dev, " IOSPOpen : %s\n", bits->IOSPOpen ? "TRUE": "FALSE");
526 dev_dbg(dev, " IOSPClose : %s\n", bits->IOSPClose ? "TRUE": "FALSE");
527 dev_dbg(dev, " IOSPChase : %s\n", bits->IOSPChase ? "TRUE": "FALSE");
528 dev_dbg(dev, " IOSPSetRxFlow : %s\n", bits->IOSPSetRxFlow ? "TRUE": "FALSE");
529 dev_dbg(dev, " IOSPSetTxFlow : %s\n", bits->IOSPSetTxFlow ? "TRUE": "FALSE");
530 dev_dbg(dev, " IOSPSetXChar : %s\n", bits->IOSPSetXChar ? "TRUE": "FALSE");
531 dev_dbg(dev, " IOSPRxCheck : %s\n", bits->IOSPRxCheck ? "TRUE": "FALSE");
532 dev_dbg(dev, " IOSPSetClrBreak : %s\n", bits->IOSPSetClrBreak ? "TRUE": "FALSE");
533 dev_dbg(dev, " IOSPWriteMCR : %s\n", bits->IOSPWriteMCR ? "TRUE": "FALSE");
534 dev_dbg(dev, " IOSPWriteLCR : %s\n", bits->IOSPWriteLCR ? "TRUE": "FALSE");
535 dev_dbg(dev, " IOSPSetBaudRate : %s\n", bits->IOSPSetBaudRate ? "TRUE": "FALSE");
536 dev_dbg(dev, " TrueEdgeport : %s\n", bits->TrueEdgeport ? "TRUE": "FALSE");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800537 }
538
539 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542
543/************************************************************************/
544/************************************************************************/
545/* U S B C A L L B A C K F U N C T I O N S */
546/* U S B C A L L B A C K F U N C T I O N S */
547/************************************************************************/
548/************************************************************************/
549
550/*****************************************************************************
551 * edge_interrupt_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100552 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * interrupt endpoint.
554 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100555static void edge_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700557 struct edgeport_serial *edge_serial = urb->context;
558 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct edgeport_port *edge_port;
560 struct usb_serial_port *port;
561 unsigned char *data = urb->transfer_buffer;
562 int length = urb->actual_length;
563 int bytes_avail;
564 int position;
565 int txCredits;
566 int portNumber;
567 int result;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700568 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700570 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 case 0:
572 /* success */
573 break;
574 case -ECONNRESET:
575 case -ENOENT:
576 case -ESHUTDOWN:
577 /* this urb is terminated, clean up */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700578 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return;
580 default:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700581 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 goto exit;
583 }
584
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700585 dev = &edge_serial->serial->dev->dev;
586
Alan Cox03f0dbf2008-07-22 11:16:34 +0100587 /* process this interrupt-read even if there are no ports open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (length) {
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100589 usb_serial_debug_data(dev, __func__, length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 if (length > 1) {
592 bytes_avail = data[0] | (data[1] << 8);
593 if (bytes_avail) {
594 spin_lock(&edge_serial->es_lock);
595 edge_serial->rxBytesAvail += bytes_avail;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700596 dev_dbg(dev,
597 "%s - bytes_avail=%d, rxBytesAvail=%d, read_in_progress=%d\n",
598 __func__, bytes_avail,
599 edge_serial->rxBytesAvail,
600 edge_serial->read_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 if (edge_serial->rxBytesAvail > 0 &&
603 !edge_serial->read_in_progress) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700604 dev_dbg(dev, "%s - posting a read\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100605 edge_serial->read_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Alan Cox03f0dbf2008-07-22 11:16:34 +0100607 /* we have pending bytes on the
608 bulk in pipe, send a request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 result = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
610 if (result) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700611 dev_err(dev,
612 "%s - usb_submit_urb(read bulk) failed with result = %d\n",
613 __func__, result);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100614 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616 }
617 spin_unlock(&edge_serial->es_lock);
618 }
619 }
620 /* grab the txcredits for the ports if available */
621 position = 2;
622 portNumber = 0;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100623 while ((position < length) &&
624 (portNumber < edge_serial->serial->num_ports)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 txCredits = data[position] | (data[position+1] << 8);
626 if (txCredits) {
627 port = edge_serial->serial->port[portNumber];
628 edge_port = usb_get_serial_port_data(port);
629 if (edge_port->open) {
630 spin_lock(&edge_port->ep_lock);
631 edge_port->txCredits += txCredits;
632 spin_unlock(&edge_port->ep_lock);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700633 dev_dbg(dev, "%s - txcredits for port%d = %d\n",
634 __func__, portNumber,
635 edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Alan Cox03f0dbf2008-07-22 11:16:34 +0100637 /* tell the tty driver that something
638 has changed */
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100639 tty_port_tty_wakeup(&edge_port->port->port);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100640 /* Since we have more credit, check
641 if more data can be sent */
642 send_more_port_data(edge_serial,
643 edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645 }
646 position += 2;
647 ++portNumber;
648 }
649 }
650
651exit:
Alan Cox03f0dbf2008-07-22 11:16:34 +0100652 result = usb_submit_urb(urb, GFP_ATOMIC);
653 if (result)
654 dev_err(&urb->dev->dev,
655 "%s - Error %d submitting control urb\n",
656 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659
660/*****************************************************************************
661 * edge_bulk_in_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100662 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * bulk in endpoint.
664 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100665static void edge_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Ming Leicdc97792008-02-24 18:41:47 +0800667 struct edgeport_serial *edge_serial = urb->context;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700668 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700670 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 __u16 raw_data_length;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700672 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700674 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700675 dev_dbg(&urb->dev->dev, "%s - nonzero read bulk status received: %d\n",
676 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100677 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return;
679 }
680
681 if (urb->actual_length == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700682 dev_dbg(&urb->dev->dev, "%s - read bulk callback with no data\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100683 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return;
685 }
686
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700687 dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 raw_data_length = urb->actual_length;
689
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100690 usb_serial_debug_data(dev, __func__, raw_data_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 spin_lock(&edge_serial->es_lock);
693
694 /* decrement our rxBytes available by the number that we just got */
695 edge_serial->rxBytesAvail -= raw_data_length;
696
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700697 dev_dbg(dev, "%s - Received = %d, rxBytesAvail %d\n", __func__,
698 raw_data_length, edge_serial->rxBytesAvail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Alan Cox03f0dbf2008-07-22 11:16:34 +0100700 process_rcvd_data(edge_serial, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /* check to see if there's any more data for us to read */
703 if (edge_serial->rxBytesAvail > 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700704 dev_dbg(dev, "%s - posting a read\n", __func__);
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700705 retval = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
706 if (retval) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700707 dev_err(dev,
708 "%s - usb_submit_urb(read bulk) failed, retval = %d\n",
709 __func__, retval);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100710 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100713 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715
716 spin_unlock(&edge_serial->es_lock);
717}
718
719
720/*****************************************************************************
721 * edge_bulk_out_data_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100722 * this is the callback function for when we have finished sending
723 * serial data on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100725static void edge_bulk_out_data_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Ming Leicdc97792008-02-24 18:41:47 +0800727 struct edgeport_port *edge_port = urb->context;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700728 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700730 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700731 dev_dbg(&urb->dev->dev,
732 "%s - nonzero write bulk status received: %d\n",
733 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100736 if (edge_port->open)
737 tty_port_tty_wakeup(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Alan Cox03f0dbf2008-07-22 11:16:34 +0100739 /* Release the Write URB */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100740 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Alan Cox03f0dbf2008-07-22 11:16:34 +0100742 /* Check if more data needs to be sent */
743 send_more_port_data((struct edgeport_serial *)
744 (usb_get_serial_data(edge_port->port->serial)), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747
748/*****************************************************************************
749 * BulkOutCmdCallback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100750 * this is the callback function for when we have finished sending a
751 * command on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100753static void edge_bulk_out_cmd_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Ming Leicdc97792008-02-24 18:41:47 +0800755 struct edgeport_port *edge_port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 int status = urb->status;
757
Oliver Neukum96c706e2007-03-15 15:27:17 +0100758 atomic_dec(&CmdUrbs);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700759 dev_dbg(&urb->dev->dev, "%s - FREE URB %p (outstanding %d)\n",
760 __func__, urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762
763 /* clean up the transfer buffer */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700764 kfree(urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /* Free the command urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100767 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700770 dev_dbg(&urb->dev->dev,
771 "%s - nonzero write bulk status received: %d\n",
772 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return;
774 }
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /* tell the tty driver that something has changed */
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100777 if (edge_port->open)
778 tty_port_tty_wakeup(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /* we have completed the command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100781 edge_port->commandPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 wake_up(&edge_port->wait_command);
783}
784
785
786/*****************************************************************************
787 * Driver tty interface functions
788 *****************************************************************************/
789
790/*****************************************************************************
791 * SerialOpen
792 * this function is called by the tty driver when a port is opened
793 * If successful, we return 0
794 * Otherwise we return a negative error number.
795 *****************************************************************************/
Alan Coxa509a7e2009-09-19 13:13:26 -0700796static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700799 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct usb_serial *serial;
801 struct edgeport_serial *edge_serial;
802 int response;
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (edge_port == NULL)
805 return -ENODEV;
806
Alan Cox03f0dbf2008-07-22 11:16:34 +0100807 /* see if we've set up our endpoint info yet (can't set it up
808 in edge_startup as the structures were not set up at that time.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 serial = port->serial;
810 edge_serial = usb_get_serial_data(serial);
Alan Cox95da3102008-07-22 11:09:07 +0100811 if (edge_serial == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (edge_serial->interrupt_in_buffer == NULL) {
814 struct usb_serial_port *port0 = serial->port[0];
Alan Cox03f0dbf2008-07-22 11:16:34 +0100815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100817 edge_serial->interrupt_in_buffer =
818 port0->interrupt_in_buffer;
819 edge_serial->interrupt_in_endpoint =
820 port0->interrupt_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 edge_serial->interrupt_read_urb = port0->interrupt_in_urb;
822 edge_serial->bulk_in_buffer = port0->bulk_in_buffer;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100823 edge_serial->bulk_in_endpoint =
824 port0->bulk_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 edge_serial->read_urb = port0->read_urb;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100826 edge_serial->bulk_out_endpoint =
827 port0->bulk_out_endpointAddress;
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 /* set up our interrupt urb */
830 usb_fill_int_urb(edge_serial->interrupt_read_urb,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100831 serial->dev,
832 usb_rcvintpipe(serial->dev,
833 port0->interrupt_in_endpointAddress),
834 port0->interrupt_in_buffer,
835 edge_serial->interrupt_read_urb->transfer_buffer_length,
836 edge_interrupt_callback, edge_serial,
837 edge_serial->interrupt_read_urb->interval);
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* set up our bulk in urb */
840 usb_fill_bulk_urb(edge_serial->read_urb, serial->dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100841 usb_rcvbulkpipe(serial->dev,
842 port0->bulk_in_endpointAddress),
843 port0->bulk_in_buffer,
844 edge_serial->read_urb->transfer_buffer_length,
845 edge_bulk_in_callback, edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100846 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* start interrupt read for this edgeport
Alan Cox03f0dbf2008-07-22 11:16:34 +0100849 * this interrupt will continue as long
850 * as the edgeport is connected */
851 response = usb_submit_urb(edge_serial->interrupt_read_urb,
852 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700854 dev_err(dev, "%s - Error %d submitting control urb\n",
855 __func__, response);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 }
Alan Cox03f0dbf2008-07-22 11:16:34 +0100858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /* initialize our wait queues */
860 init_waitqueue_head(&edge_port->wait_open);
861 init_waitqueue_head(&edge_port->wait_chase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 init_waitqueue_head(&edge_port->wait_command);
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* initialize our port settings */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100865 edge_port->txCredits = 0; /* Can't send any data yet */
866 /* Must always set this bit to enable ints! */
867 edge_port->shadowMCR = MCR_MASTER_IE;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100868 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 /* send a open port command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100871 edge_port->openPending = true;
872 edge_port->open = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100873 response = send_iosp_ext_cmd(edge_port, IOSP_CMD_OPEN_PORT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 if (response < 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700876 dev_err(dev, "%s - error sending open port command\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100877 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return -ENODEV;
879 }
880
881 /* now wait for the port to be completely opened */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100882 wait_event_timeout(edge_port->wait_open, !edge_port->openPending,
883 OPEN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100885 if (!edge_port->open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /* open timed out */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700887 dev_dbg(dev, "%s - open timedout\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100888 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -ENODEV;
890 }
891
892 /* create the txfifo */
893 edge_port->txfifo.head = 0;
894 edge_port->txfifo.tail = 0;
895 edge_port->txfifo.count = 0;
896 edge_port->txfifo.size = edge_port->maxTxCredits;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100897 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 if (!edge_port->txfifo.fifo) {
Alan Cox335f8512009-06-11 12:26:29 +0100900 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return -ENOMEM;
902 }
903
904 /* Allocate a URB for the write */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100905 edge_port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100906 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 if (!edge_port->write_urb) {
Alan Cox335f8512009-06-11 12:26:29 +0100909 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return -ENOMEM;
911 }
912
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700913 dev_dbg(dev, "%s - Initialize TX fifo to %d bytes\n",
914 __func__, edge_port->maxTxCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 return 0;
917}
918
919
920/************************************************************************
921 *
922 * block_until_chase_response
923 *
924 * This function will block the close until one of the following:
925 * 1. Response to our Chase comes from Edgeport
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800926 * 2. A timeout of 10 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 * (1K of Edgeport data @ 2400 baud ==> 4 sec to empty)
928 *
929 ************************************************************************/
930static void block_until_chase_response(struct edgeport_port *edge_port)
931{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700932 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 DEFINE_WAIT(wait);
934 __u16 lastCredits;
935 int timeout = 1*HZ;
936 int loop = 10;
937
938 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100939 /* Save Last credits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 lastCredits = edge_port->txCredits;
941
Alan Cox03f0dbf2008-07-22 11:16:34 +0100942 /* Did we get our Chase response */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100943 if (!edge_port->chaseResponsePending) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700944 dev_dbg(dev, "%s - Got Chase Response\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Alan Cox03f0dbf2008-07-22 11:16:34 +0100946 /* did we get all of our credit back? */
947 if (edge_port->txCredits == edge_port->maxTxCredits) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700948 dev_dbg(dev, "%s - Got all credits\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return;
950 }
951 }
952
Alan Cox03f0dbf2008-07-22 11:16:34 +0100953 /* Block the thread for a while */
954 prepare_to_wait(&edge_port->wait_chase, &wait,
955 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 schedule_timeout(timeout);
957 finish_wait(&edge_port->wait_chase, &wait);
958
959 if (lastCredits == edge_port->txCredits) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100960 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 loop--;
962 if (loop == 0) {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100963 edge_port->chaseResponsePending = false;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700964 dev_dbg(dev, "%s - Chase TIMEOUT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return;
966 }
967 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100968 /* Reset timeout value back to 10 seconds */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700969 dev_dbg(dev, "%s - Last %d, Current %d\n", __func__,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100970 lastCredits, edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 loop = 10;
972 }
973 }
974}
975
976
977/************************************************************************
978 *
979 * block_until_tx_empty
980 *
981 * This function will block the close until one of the following:
982 * 1. TX count are 0
983 * 2. The edgeport has stopped
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800984 * 3. A timeout of 3 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 *
986 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100987static void block_until_tx_empty(struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700989 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 DEFINE_WAIT(wait);
991 struct TxFifo *fifo = &edge_port->txfifo;
992 __u32 lastCount;
993 int timeout = HZ/10;
994 int loop = 30;
995
996 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100997 /* Save Last count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 lastCount = fifo->count;
999
Alan Cox03f0dbf2008-07-22 11:16:34 +01001000 /* Is the Edgeport Buffer empty? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (lastCount == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001002 dev_dbg(dev, "%s - TX Buffer Empty\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return;
1004 }
1005
Alan Cox03f0dbf2008-07-22 11:16:34 +01001006 /* Block the thread for a while */
1007 prepare_to_wait(&edge_port->wait_chase, &wait,
1008 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 schedule_timeout(timeout);
1010 finish_wait(&edge_port->wait_chase, &wait);
1011
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001012 dev_dbg(dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 if (lastCount == fifo->count) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001015 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 loop--;
1017 if (loop == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001018 dev_dbg(dev, "%s - TIMEOUT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return;
1020 }
1021 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001022 /* Reset timeout value back to seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 loop = 30;
1024 }
1025 }
1026}
1027
1028
1029/*****************************************************************************
1030 * edge_close
1031 * this function is called by the tty driver when a port is closed
1032 *****************************************************************************/
Alan Cox335f8512009-06-11 12:26:29 +01001033static void edge_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 struct edgeport_serial *edge_serial;
1036 struct edgeport_port *edge_port;
1037 int status;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 edge_serial = usb_get_serial_data(port->serial);
1040 edge_port = usb_get_serial_port_data(port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001041 if (edge_serial == NULL || edge_port == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001043
1044 /* block until tx is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 block_until_tx_empty(edge_port);
1046
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001047 edge_port->closePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001049 if (!edge_serial->is_epic ||
1050 edge_serial->epic_descriptor.Supports.IOSPChase) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001051 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001052 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001054 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CHASE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001055 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
1056 if (status == 0)
1057 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001058 block_until_chase_response(edge_port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001059 else
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001060 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
1062
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001063 if (!edge_serial->is_epic ||
1064 edge_serial->epic_descriptor.Supports.IOSPClose) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001065 /* close the port */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001066 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CLOSE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001067 send_iosp_ext_cmd(edge_port, IOSP_CMD_CLOSE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Alan Cox03f0dbf2008-07-22 11:16:34 +01001070 /* port->close = true; */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001071 edge_port->closePending = false;
1072 edge_port->open = false;
1073 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Mariusz Kozlowski9a25f442006-11-08 15:36:29 +01001075 usb_kill_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 if (edge_port->write_urb) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001078 /* if this urb had a transfer buffer already
1079 (old transfer) free it */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001080 kfree(edge_port->write_urb->transfer_buffer);
1081 usb_free_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 edge_port->write_urb = NULL;
1083 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001084 kfree(edge_port->txfifo.fifo);
1085 edge_port->txfifo.fifo = NULL;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001086}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088/*****************************************************************************
1089 * SerialWrite
Alan Cox03f0dbf2008-07-22 11:16:34 +01001090 * this function is called by the tty driver when data should be written
1091 * to the port.
1092 * If successful, we return the number of bytes written, otherwise we
1093 * return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001095static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
1096 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1099 struct TxFifo *fifo;
1100 int copySize;
1101 int bytesleft;
1102 int firsthalf;
1103 int secondhalf;
1104 unsigned long flags;
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (edge_port == NULL)
1107 return -ENODEV;
1108
Alan Cox03f0dbf2008-07-22 11:16:34 +01001109 /* get a pointer to the Tx fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 fifo = &edge_port->txfifo;
1111
1112 spin_lock_irqsave(&edge_port->ep_lock, flags);
1113
Alan Cox03f0dbf2008-07-22 11:16:34 +01001114 /* calculate number of bytes to put in fifo */
1115 copySize = min((unsigned int)count,
1116 (edge_port->txCredits - fifo->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001118 dev_dbg(&port->dev, "%s of %d byte(s) Fifo room %d -- will copy %d bytes\n",
1119 __func__, count, edge_port->txCredits - fifo->count, copySize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Alan Cox03f0dbf2008-07-22 11:16:34 +01001121 /* catch writes of 0 bytes which the tty driver likes to give us,
1122 and when txCredits is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (copySize == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001124 dev_dbg(&port->dev, "%s - copySize = Zero\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 goto finish_write;
1126 }
1127
Alan Cox03f0dbf2008-07-22 11:16:34 +01001128 /* queue the data
1129 * since we can never overflow the buffer we do not have to check for a
1130 * full condition
1131 *
1132 * the copy is done is two parts -- first fill to the end of the buffer
1133 * then copy the reset from the start of the buffer
1134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 bytesleft = fifo->size - fifo->head;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001136 firsthalf = min(bytesleft, copySize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001137 dev_dbg(&port->dev, "%s - copy %d bytes of %d into fifo \n", __func__,
1138 firsthalf, bytesleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 /* now copy our data */
1141 memcpy(&fifo->fifo[fifo->head], data, firsthalf);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001142 usb_serial_debug_data(&port->dev, __func__, firsthalf, &fifo->fifo[fifo->head]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Alan Cox03f0dbf2008-07-22 11:16:34 +01001144 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 fifo->head += firsthalf;
1146 fifo->count += firsthalf;
1147
Alan Cox03f0dbf2008-07-22 11:16:34 +01001148 /* wrap the index */
1149 if (fifo->head == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 fifo->head = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 secondhalf = copySize-firsthalf;
1153
1154 if (secondhalf) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001155 dev_dbg(&port->dev, "%s - copy rest of data %d\n", __func__, secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 memcpy(&fifo->fifo[fifo->head], &data[firsthalf], secondhalf);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001157 usb_serial_debug_data(&port->dev, __func__, secondhalf, &fifo->fifo[fifo->head]);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001158 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 fifo->count += secondhalf;
1160 fifo->head += secondhalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001161 /* No need to check for wrap since we can not get to end of
1162 * the fifo in this part
1163 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
1166finish_write:
1167 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1168
Alan Cox03f0dbf2008-07-22 11:16:34 +01001169 send_more_port_data((struct edgeport_serial *)
1170 usb_get_serial_data(port->serial), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001172 dev_dbg(&port->dev, "%s wrote %d byte(s) TxCredits %d, Fifo %d\n",
1173 __func__, copySize, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Alan Cox03f0dbf2008-07-22 11:16:34 +01001175 return copySize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
1178
1179/************************************************************************
1180 *
1181 * send_more_port_data()
1182 *
1183 * This routine attempts to write additional UART transmit data
1184 * to a port over the USB bulk pipe. It is called (1) when new
1185 * data has been written to a port's TxBuffer from higher layers
1186 * (2) when the peripheral sends us additional TxCredits indicating
1187 * that it can accept more Tx data for a given port; and (3) when
1188 * a bulk write completes successfully and we want to see if we
1189 * can transmit more.
1190 *
1191 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001192static void send_more_port_data(struct edgeport_serial *edge_serial,
1193 struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
1195 struct TxFifo *fifo = &edge_port->txfifo;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001196 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 struct urb *urb;
1198 unsigned char *buffer;
1199 int status;
1200 int count;
1201 int bytesleft;
1202 int firsthalf;
1203 int secondhalf;
1204 unsigned long flags;
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 spin_lock_irqsave(&edge_port->ep_lock, flags);
1207
1208 if (edge_port->write_in_progress ||
1209 !edge_port->open ||
1210 (fifo->count == 0)) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001211 dev_dbg(dev, "%s EXIT - fifo %d, PendingWrite = %d\n",
1212 __func__, fifo->count, edge_port->write_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 goto exit_send;
1214 }
1215
Alan Cox03f0dbf2008-07-22 11:16:34 +01001216 /* since the amount of data in the fifo will always fit into the
1217 * edgeport buffer we do not need to check the write length
1218 *
1219 * Do we have enough credits for this port to make it worthwhile
1220 * to bother queueing a write. If it's too small, say a few bytes,
1221 * it's better to wait for more credits so we can do a larger write.
1222 */
1223 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 -07001224 dev_dbg(dev, "%s Not enough credit - fifo %d TxCredit %d\n",
1225 __func__, fifo->count, edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 goto exit_send;
1227 }
1228
Alan Cox03f0dbf2008-07-22 11:16:34 +01001229 /* lock this write */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001230 edge_port->write_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Alan Cox03f0dbf2008-07-22 11:16:34 +01001232 /* get a pointer to the write_urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 urb = edge_port->write_urb;
1234
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001235 /* make sure transfer buffer is freed */
1236 kfree(urb->transfer_buffer);
1237 urb->transfer_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Alan Cox03f0dbf2008-07-22 11:16:34 +01001239 /* build the data header for the buffer and port that we are about
1240 to send out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 count = fifo->count;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001242 buffer = kmalloc(count+2, GFP_ATOMIC);
Johan Hovold10c642d2013-12-29 19:22:56 +01001243 if (!buffer) {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001244 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 goto exit_send;
1246 }
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001247 buffer[0] = IOSP_BUILD_DATA_HDR1(edge_port->port->port_number, count);
1248 buffer[1] = IOSP_BUILD_DATA_HDR2(edge_port->port->port_number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 /* now copy our data */
1251 bytesleft = fifo->size - fifo->tail;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001252 firsthalf = min(bytesleft, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 memcpy(&buffer[2], &fifo->fifo[fifo->tail], firsthalf);
1254 fifo->tail += firsthalf;
1255 fifo->count -= firsthalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001256 if (fifo->tail == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 fifo->tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 secondhalf = count-firsthalf;
1260 if (secondhalf) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001261 memcpy(&buffer[2+firsthalf], &fifo->fifo[fifo->tail],
1262 secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 fifo->tail += secondhalf;
1264 fifo->count -= secondhalf;
1265 }
1266
1267 if (count)
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001268 usb_serial_debug_data(&edge_port->port->dev, __func__, count, &buffer[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 /* fill up the urb with all of our data and submit it */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001271 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
1272 usb_sndbulkpipe(edge_serial->serial->dev,
1273 edge_serial->bulk_out_endpoint),
1274 buffer, count+2,
1275 edge_bulk_out_data_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 /* decrement the number of credits we have by the number we just sent */
1278 edge_port->txCredits -= count;
Johan Hovoldd36a7712013-03-21 12:37:07 +01001279 edge_port->port->icount.tx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 status = usb_submit_urb(urb, GFP_ATOMIC);
1282 if (status) {
1283 /* something went wrong */
Johan Hovold22a416c2012-02-10 13:20:51 +01001284 dev_err_console(edge_port->port,
Alan Cox03f0dbf2008-07-22 11:16:34 +01001285 "%s - usb_submit_urb(write bulk) failed, status = %d, data lost\n",
1286 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001287 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 /* revert the credits as something bad happened. */
1290 edge_port->txCredits += count;
Johan Hovoldd36a7712013-03-21 12:37:07 +01001291 edge_port->port->icount.tx -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001293 dev_dbg(dev, "%s wrote %d byte(s) TxCredit %d, Fifo %d\n",
1294 __func__, count, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296exit_send:
1297 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1298}
1299
1300
1301/*****************************************************************************
1302 * edge_write_room
Alan Cox03f0dbf2008-07-22 11:16:34 +01001303 * this function is called by the tty driver when it wants to know how
1304 * many bytes of data we can accept for a specific port. If successful,
1305 * we return the amount of room that we have for this port (the txCredits)
1306 * otherwise we return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001308static int edge_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Alan Cox95da3102008-07-22 11:09:07 +01001310 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1312 int room;
1313 unsigned long flags;
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001316 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001317 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001321 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
1324
Alan Cox03f0dbf2008-07-22 11:16:34 +01001325 /* total of both buffers is still txCredit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 spin_lock_irqsave(&edge_port->ep_lock, flags);
1327 room = edge_port->txCredits - edge_port->txfifo.count;
1328 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1329
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001330 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return room;
1332}
1333
1334
1335/*****************************************************************************
1336 * edge_chars_in_buffer
Alan Cox03f0dbf2008-07-22 11:16:34 +01001337 * this function is called by the tty driver when it wants to know how
1338 * many bytes of data we currently have outstanding in the port (data that
1339 * has been written, but hasn't made it out the port yet)
1340 * If successful, we return the number of bytes left to be written in the
1341 * system,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 * Otherwise we return a negative error number.
1343 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001344static int edge_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Alan Cox95da3102008-07-22 11:09:07 +01001346 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1348 int num_chars;
1349 unsigned long flags;
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001352 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001353 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001357 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360
1361 spin_lock_irqsave(&edge_port->ep_lock, flags);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001362 num_chars = edge_port->maxTxCredits - edge_port->txCredits +
1363 edge_port->txfifo.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1365 if (num_chars) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001366 dev_dbg(&port->dev, "%s - returns %d\n", __func__, num_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
1369 return num_chars;
1370}
1371
1372
1373/*****************************************************************************
1374 * SerialThrottle
1375 * this function is called by the tty driver when it wants to stop the data
1376 * being read from the port.
1377 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001378static void edge_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Alan Cox95da3102008-07-22 11:09:07 +01001380 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 int status;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (edge_port == NULL)
1385 return;
1386
1387 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001388 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return;
1390 }
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /* if we are implementing XON/XOFF, send the stop character */
1393 if (I_IXOFF(tty)) {
1394 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001395 status = edge_write(tty, port, &stop_char, 1);
1396 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399
1400 /* if we are implementing RTS/CTS, toggle that line */
Peter Hurley9db276f2016-01-10 20:36:15 -08001401 if (C_CRTSCTS(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 edge_port->shadowMCR &= ~MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001403 status = send_cmd_write_uart_register(edge_port, MCR,
1404 edge_port->shadowMCR);
1405 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
1410
1411/*****************************************************************************
1412 * edge_unthrottle
Alan Cox03f0dbf2008-07-22 11:16:34 +01001413 * this function is called by the tty driver when it wants to resume the
1414 * data being read from the port (called after SerialThrottle is called)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001416static void edge_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Alan Cox95da3102008-07-22 11:09:07 +01001418 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 int status;
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (edge_port == NULL)
1423 return;
1424
1425 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001426 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return;
1428 }
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /* if we are implementing XON/XOFF, send the start character */
1431 if (I_IXOFF(tty)) {
1432 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001433 status = edge_write(tty, port, &start_char, 1);
1434 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 /* if we are implementing RTS/CTS, toggle that line */
Peter Hurley9db276f2016-01-10 20:36:15 -08001438 if (C_CRTSCTS(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 edge_port->shadowMCR |= MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001440 send_cmd_write_uart_register(edge_port, MCR,
1441 edge_port->shadowMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445
1446/*****************************************************************************
1447 * SerialSetTermios
Alan Cox03f0dbf2008-07-22 11:16:34 +01001448 * this function is called by the tty driver when it wants to change
1449 * the termios structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001451static void edge_set_termios(struct tty_struct *tty,
1452 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 unsigned int cflag;
1456
Alan Coxadc8d742012-07-14 15:31:47 +01001457 cflag = tty->termios.c_cflag;
Linus Torvaldsd9a80742012-10-01 13:23:01 -07001458 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 -07001459 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 -07001460
1461 if (edge_port == NULL)
1462 return;
1463
1464 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001465 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return;
1467 }
1468
1469 /* change the port settings to the new ones specified */
Alan Cox95da3102008-07-22 11:09:07 +01001470 change_port_settings(tty, edge_port, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471}
1472
1473
1474/*****************************************************************************
1475 * get_lsr_info - get line status register info
1476 *
1477 * Purpose: Let user call ioctl() to get info when the UART physically
1478 * is emptied. On bus types like RS485, the transmitter must
1479 * release the bus after transmitting. This must be done when
1480 * the transmit shift register is empty, not be done when the
1481 * transmit holding register is empty. This functionality
Alan Cox03f0dbf2008-07-22 11:16:34 +01001482 * allows an RS485 driver to be written in user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001484static int get_lsr_info(struct edgeport_port *edge_port,
1485 unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 unsigned int result = 0;
1488 unsigned long flags;
1489
1490 spin_lock_irqsave(&edge_port->ep_lock, flags);
1491 if (edge_port->maxTxCredits == edge_port->txCredits &&
1492 edge_port->txfifo.count == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001493 dev_dbg(&edge_port->port->dev, "%s -- Empty\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 result = TIOCSER_TEMT;
1495 }
1496 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1497
1498 if (copy_to_user(value, &result, sizeof(int)))
1499 return -EFAULT;
1500 return 0;
1501}
1502
Alan Cox20b9d172011-02-14 16:26:50 +00001503static int edge_tiocmset(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +01001504 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Alan Cox95da3102008-07-22 11:09:07 +01001506 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1508 unsigned int mcr;
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 mcr = edge_port->shadowMCR;
1511 if (set & TIOCM_RTS)
1512 mcr |= MCR_RTS;
1513 if (set & TIOCM_DTR)
1514 mcr |= MCR_DTR;
1515 if (set & TIOCM_LOOP)
1516 mcr |= MCR_LOOPBACK;
1517
1518 if (clear & TIOCM_RTS)
1519 mcr &= ~MCR_RTS;
1520 if (clear & TIOCM_DTR)
1521 mcr &= ~MCR_DTR;
1522 if (clear & TIOCM_LOOP)
1523 mcr &= ~MCR_LOOPBACK;
1524
1525 edge_port->shadowMCR = mcr;
1526
1527 send_cmd_write_uart_register(edge_port, MCR, edge_port->shadowMCR);
1528
1529 return 0;
1530}
1531
Alan Cox60b33c12011-02-14 16:26:14 +00001532static int edge_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Alan Cox95da3102008-07-22 11:09:07 +01001534 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1536 unsigned int result = 0;
1537 unsigned int msr;
1538 unsigned int mcr;
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 msr = edge_port->shadowMSR;
1541 mcr = edge_port->shadowMCR;
1542 result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
1543 | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
1544 | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
1545 | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
1546 | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
1547 | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return result;
1550}
1551
Alan Cox03f0dbf2008-07-22 11:16:34 +01001552static int get_serial_info(struct edgeport_port *edge_port,
1553 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
1555 struct serial_struct tmp;
1556
1557 if (!retinfo)
1558 return -EFAULT;
1559
1560 memset(&tmp, 0, sizeof(tmp));
1561
1562 tmp.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001563 tmp.line = edge_port->port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001564 tmp.port = edge_port->port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 tmp.irq = 0;
1566 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
1567 tmp.xmit_fifo_size = edge_port->maxTxCredits;
1568 tmp.baud_base = 9600;
1569 tmp.close_delay = 5*HZ;
1570 tmp.closing_wait = 30*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1573 return -EFAULT;
1574 return 0;
1575}
1576
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578/*****************************************************************************
1579 * SerialIoctl
1580 * this function handles any ioctl calls to the driver
1581 *****************************************************************************/
Alan Cox00a0d0d2011-02-14 16:27:06 +00001582static int edge_ioctl(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +01001583 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
Alan Cox95da3102008-07-22 11:09:07 +01001585 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 DEFINE_WAIT(wait);
1587 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 switch (cmd) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001590 case TIOCSERGETLSR:
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001591 dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001592 return get_lsr_info(edge_port, (unsigned int __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Alan Cox03f0dbf2008-07-22 11:16:34 +01001594 case TIOCGSERIAL:
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001595 dev_dbg(&port->dev, "%s TIOCGSERIAL\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001596 return get_serial_info(edge_port, (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return -ENOIOCTLCMD;
1599}
1600
1601
1602/*****************************************************************************
1603 * SerialBreak
1604 * this function sends a break to the port
1605 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001606static void edge_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Alan Cox95da3102008-07-22 11:09:07 +01001608 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001610 struct edgeport_serial *edge_serial = usb_get_serial_data(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int status;
1612
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001613 if (!edge_serial->is_epic ||
1614 edge_serial->epic_descriptor.Supports.IOSPChase) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001615 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001616 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001618 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CHASE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001619 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001620 if (status == 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001621 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001622 block_until_chase_response(edge_port);
1623 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001624 edge_port->chaseResponsePending = false;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001628 if (!edge_serial->is_epic ||
1629 edge_serial->epic_descriptor.Supports.IOSPSetClrBreak) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001630 if (break_state == -1) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001631 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_SET_BREAK\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001632 status = send_iosp_ext_cmd(edge_port,
1633 IOSP_CMD_SET_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001634 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001635 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CLEAR_BREAK\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001636 status = send_iosp_ext_cmd(edge_port,
1637 IOSP_CMD_CLEAR_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001638 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01001639 if (status)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001640 dev_dbg(&port->dev, "%s - error sending break set/clear command.\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01001641 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
1645
1646/*****************************************************************************
1647 * process_rcvd_data
1648 * this function handles the data received on the bulk in pipe.
1649 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001650static void process_rcvd_data(struct edgeport_serial *edge_serial,
1651 unsigned char *buffer, __u16 bufferLength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001653 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 struct usb_serial_port *port;
1655 struct edgeport_port *edge_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 __u16 lastBufferLength;
1657 __u16 rxLen;
1658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 lastBufferLength = bufferLength + 1;
1660
1661 while (bufferLength > 0) {
1662 /* failsafe incase we get a message that we don't understand */
1663 if (lastBufferLength == bufferLength) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001664 dev_dbg(dev, "%s - stuck in loop, exiting it.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
1666 }
1667 lastBufferLength = bufferLength;
1668
1669 switch (edge_serial->rxState) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001670 case EXPECT_HDR1:
1671 edge_serial->rxHeader1 = *buffer;
1672 ++buffer;
1673 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Alan Cox03f0dbf2008-07-22 11:16:34 +01001675 if (bufferLength == 0) {
1676 edge_serial->rxState = EXPECT_HDR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001678 }
1679 /* otherwise, drop on through */
1680 case EXPECT_HDR2:
1681 edge_serial->rxHeader2 = *buffer;
1682 ++buffer;
1683 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001685 dev_dbg(dev, "%s - Hdr1=%02X Hdr2=%02X\n", __func__,
1686 edge_serial->rxHeader1, edge_serial->rxHeader2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001687 /* Process depending on whether this header is
1688 * data or status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Alan Cox03f0dbf2008-07-22 11:16:34 +01001690 if (IS_CMD_STAT_HDR(edge_serial->rxHeader1)) {
1691 /* Decode this status header and go to
1692 * EXPECT_HDR1 (if we can process the status
1693 * with only 2 bytes), or go to EXPECT_HDR3 to
1694 * get the third byte. */
1695 edge_serial->rxPort =
1696 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1697 edge_serial->rxStatusCode =
1698 IOSP_GET_STATUS_CODE(
1699 edge_serial->rxHeader1);
1700
1701 if (!IOSP_STATUS_IS_2BYTE(
1702 edge_serial->rxStatusCode)) {
1703 /* This status needs additional bytes.
1704 * Save what we have and then wait for
1705 * more data.
1706 */
1707 edge_serial->rxStatusParam
1708 = edge_serial->rxHeader2;
1709 edge_serial->rxState = EXPECT_HDR3;
1710 break;
1711 }
1712 /* We have all the header bytes, process the
1713 status now */
1714 process_rcvd_status(edge_serial,
1715 edge_serial->rxHeader2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 edge_serial->rxState = EXPECT_HDR1;
1717 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001718 } else {
1719 edge_serial->rxPort =
1720 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1721 edge_serial->rxBytesRemaining =
1722 IOSP_GET_HDR_DATA_LEN(
1723 edge_serial->rxHeader1,
1724 edge_serial->rxHeader2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001725 dev_dbg(dev, "%s - Data for Port %u Len %u\n",
1726 __func__,
1727 edge_serial->rxPort,
1728 edge_serial->rxBytesRemaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Alan Cox03f0dbf2008-07-22 11:16:34 +01001730 /* ASSERT(DevExt->RxPort < DevExt->NumPorts);
1731 * ASSERT(DevExt->RxBytesRemaining <
1732 * IOSP_MAX_DATA_LENGTH);
1733 */
1734
1735 if (bufferLength == 0) {
1736 edge_serial->rxState = EXPECT_DATA;
1737 break;
1738 }
1739 /* Else, drop through */
1740 }
1741 case EXPECT_DATA: /* Expect data */
1742 if (bufferLength < edge_serial->rxBytesRemaining) {
1743 rxLen = bufferLength;
1744 /* Expect data to start next buffer */
1745 edge_serial->rxState = EXPECT_DATA;
1746 } else {
1747 /* BufLen >= RxBytesRemaining */
1748 rxLen = edge_serial->rxBytesRemaining;
1749 /* Start another header next time */
1750 edge_serial->rxState = EXPECT_HDR1;
1751 }
1752
1753 bufferLength -= rxLen;
1754 edge_serial->rxBytesRemaining -= rxLen;
1755
1756 /* spit this data back into the tty driver if this
1757 port is open */
1758 if (rxLen) {
1759 port = edge_serial->serial->port[
1760 edge_serial->rxPort];
1761 edge_port = usb_get_serial_port_data(port);
1762 if (edge_port->open) {
Jiri Slaby2e124b42013-01-03 15:53:06 +01001763 dev_dbg(dev, "%s - Sending %d bytes to TTY for port %d\n",
1764 __func__, rxLen,
1765 edge_serial->rxPort);
1766 edge_tty_recv(edge_port->port, buffer,
1767 rxLen);
Johan Hovoldd36a7712013-03-21 12:37:07 +01001768 edge_port->port->icount.rx += rxLen;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001769 }
1770 buffer += rxLen;
1771 }
1772 break;
1773
1774 case EXPECT_HDR3: /* Expect 3rd byte of status header */
1775 edge_serial->rxHeader3 = *buffer;
1776 ++buffer;
1777 --bufferLength;
1778
1779 /* We have all the header bytes, process the
1780 status now */
1781 process_rcvd_status(edge_serial,
1782 edge_serial->rxStatusParam,
1783 edge_serial->rxHeader3);
1784 edge_serial->rxState = EXPECT_HDR1;
1785 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787 }
1788}
1789
1790
1791/*****************************************************************************
1792 * process_rcvd_status
Alan Cox03f0dbf2008-07-22 11:16:34 +01001793 * this function handles the any status messages received on the
1794 * bulk in pipe.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001796static void process_rcvd_status(struct edgeport_serial *edge_serial,
1797 __u8 byte2, __u8 byte3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
1799 struct usb_serial_port *port;
1800 struct edgeport_port *edge_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001801 struct tty_struct *tty;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001802 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 __u8 code = edge_serial->rxStatusCode;
1804
1805 /* switch the port pointer to the one being currently talked about */
1806 port = edge_serial->serial->port[edge_serial->rxPort];
1807 edge_port = usb_get_serial_port_data(port);
1808 if (edge_port == NULL) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001809 dev_err(&edge_serial->serial->dev->dev,
1810 "%s - edge_port == NULL for port %d\n",
1811 __func__, edge_serial->rxPort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return;
1813 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001814 dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 if (code == IOSP_EXT_STATUS) {
1817 switch (byte2) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001818 case IOSP_EXT_STATUS_CHASE_RSP:
1819 /* we want to do EXT status regardless of port
1820 * open/closed */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001821 dev_dbg(dev, "%s - Port %u EXT CHASE_RSP Data = %02x\n",
1822 __func__, edge_serial->rxPort, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001823 /* Currently, the only EXT_STATUS is Chase, so process
1824 * here instead of one more call to one more subroutine
1825 * If/when more EXT_STATUS, there'll be more work to do
1826 * Also, we currently clear flag and close the port
1827 * regardless of content of above's Byte3.
1828 * We could choose to do something else when Byte3 says
1829 * Timeout on Chase from Edgeport, like wait longer in
1830 * block_until_chase_response, but for now we don't.
1831 */
1832 edge_port->chaseResponsePending = false;
1833 wake_up(&edge_port->wait_chase);
1834 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Alan Cox03f0dbf2008-07-22 11:16:34 +01001836 case IOSP_EXT_STATUS_RX_CHECK_RSP:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001837 dev_dbg(dev, "%s ========== Port %u CHECK_RSP Sequence = %02x =============\n",
1838 __func__, edge_serial->rxPort, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001839 /* Port->RxCheckRsp = true; */
1840 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842 }
1843
1844 if (code == IOSP_STATUS_OPEN_RSP) {
1845 edge_port->txCredits = GET_TX_BUFFER_SIZE(byte3);
1846 edge_port->maxTxCredits = edge_port->txCredits;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001847 dev_dbg(dev, "%s - Port %u Open Response Initial MSR = %02x TxBufferSize = %d\n",
1848 __func__, edge_serial->rxPort, byte2, edge_port->txCredits);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001849 handle_new_msr(edge_port, byte2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Alan Cox03f0dbf2008-07-22 11:16:34 +01001851 /* send the current line settings to the port so we are
1852 in sync with any further termios calls */
Alan Cox4a90f092008-10-13 10:39:46 +01001853 tty = tty_port_tty_get(&edge_port->port->port);
1854 if (tty) {
1855 change_port_settings(tty,
Alan Coxadc8d742012-07-14 15:31:47 +01001856 edge_port, &tty->termios);
Alan Cox4a90f092008-10-13 10:39:46 +01001857 tty_kref_put(tty);
1858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 /* we have completed the open */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001861 edge_port->openPending = false;
1862 edge_port->open = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 wake_up(&edge_port->wait_open);
1864 return;
1865 }
1866
Alan Cox03f0dbf2008-07-22 11:16:34 +01001867 /* If port is closed, silently discard all rcvd status. We can
1868 * have cases where buffered status is received AFTER the close
1869 * port command is sent to the Edgeport.
1870 */
1871 if (!edge_port->open || edge_port->closePending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 switch (code) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001875 /* Not currently sent by Edgeport */
1876 case IOSP_STATUS_LSR:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001877 dev_dbg(dev, "%s - Port %u LSR Status = %02x\n",
1878 __func__, edge_serial->rxPort, byte2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001879 handle_new_lsr(edge_port, false, byte2, 0);
1880 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Alan Cox03f0dbf2008-07-22 11:16:34 +01001882 case IOSP_STATUS_LSR_DATA:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001883 dev_dbg(dev, "%s - Port %u LSR Status = %02x, Data = %02x\n",
1884 __func__, edge_serial->rxPort, byte2, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001885 /* byte2 is LSR Register */
1886 /* byte3 is broken data byte */
1887 handle_new_lsr(edge_port, true, byte2, byte3);
1888 break;
1889 /*
1890 * case IOSP_EXT_4_STATUS:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001891 * dev_dbg(dev, "%s - Port %u LSR Status = %02x Data = %02x\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01001892 * __func__, edge_serial->rxPort, byte2, byte3);
1893 * break;
1894 */
1895 case IOSP_STATUS_MSR:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001896 dev_dbg(dev, "%s - Port %u MSR Status = %02x\n",
1897 __func__, edge_serial->rxPort, byte2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001898 /*
1899 * Process this new modem status and generate appropriate
1900 * events, etc, based on the new status. This routine
1901 * also saves the MSR in Port->ShadowMsr.
1902 */
1903 handle_new_msr(edge_port, byte2);
1904 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Alan Cox03f0dbf2008-07-22 11:16:34 +01001906 default:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001907 dev_dbg(dev, "%s - Unrecognized IOSP status code %u\n", __func__, code);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001908 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
1912
1913/*****************************************************************************
1914 * edge_tty_recv
1915 * this function passes data on to the tty flip buffer
1916 *****************************************************************************/
Jiri Slaby2e124b42013-01-03 15:53:06 +01001917static void edge_tty_recv(struct usb_serial_port *port, unsigned char *data,
1918 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
1920 int cnt;
1921
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001922 cnt = tty_insert_flip_string(&port->port, data, length);
Alan Coxa108bfc2010-02-18 16:44:01 +00001923 if (cnt < length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001924 dev_err(&port->dev, "%s - dropping data, %d bytes lost\n",
Alan Coxa108bfc2010-02-18 16:44:01 +00001925 __func__, length - cnt);
1926 }
1927 data += cnt;
1928 length -= cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Jiri Slaby2e124b42013-01-03 15:53:06 +01001930 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
1933
1934/*****************************************************************************
1935 * handle_new_msr
1936 * this function handles any change to the msr register for a port.
1937 *****************************************************************************/
1938static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr)
1939{
1940 struct async_icount *icount;
1941
Alan Cox03f0dbf2008-07-22 11:16:34 +01001942 if (newMsr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
1943 EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
Johan Hovoldd36a7712013-03-21 12:37:07 +01001944 icount = &edge_port->port->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 /* update input line counters */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001947 if (newMsr & EDGEPORT_MSR_DELTA_CTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 icount->cts++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001949 if (newMsr & EDGEPORT_MSR_DELTA_DSR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 icount->dsr++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001951 if (newMsr & EDGEPORT_MSR_DELTA_CD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 icount->dcd++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001953 if (newMsr & EDGEPORT_MSR_DELTA_RI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 icount->rng++;
Johan Hovold8b8070d2013-03-21 12:37:08 +01001955 wake_up_interruptible(&edge_port->port->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
1957
1958 /* Save the new modem status */
1959 edge_port->shadowMSR = newMsr & 0xf0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
1962
1963/*****************************************************************************
1964 * handle_new_lsr
1965 * this function handles any change to the lsr register for a port.
1966 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001967static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
1968 __u8 lsr, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{
Alan Cox03f0dbf2008-07-22 11:16:34 +01001970 __u8 newLsr = (__u8) (lsr & (__u8)
1971 (LSR_OVER_ERR | LSR_PAR_ERR | LSR_FRM_ERR | LSR_BREAK));
1972 struct async_icount *icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 edge_port->shadowLSR = lsr;
1975
1976 if (newLsr & LSR_BREAK) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001977 /*
1978 * Parity and Framing errors only count if they
1979 * occur exclusive of a break being
1980 * received.
1981 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 newLsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
1983 }
1984
1985 /* Place LSR data byte into Rx buffer */
Jiri Slaby2e124b42013-01-03 15:53:06 +01001986 if (lsrData)
1987 edge_tty_recv(edge_port->port, &data, 1);
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 /* update input line counters */
Johan Hovoldd36a7712013-03-21 12:37:07 +01001990 icount = &edge_port->port->icount;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001991 if (newLsr & LSR_BREAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 icount->brk++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001993 if (newLsr & LSR_OVER_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 icount->overrun++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001995 if (newLsr & LSR_PAR_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 icount->parity++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001997 if (newLsr & LSR_FRM_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 icount->frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
2001
2002/****************************************************************************
2003 * sram_write
Alan Cox03f0dbf2008-07-22 11:16:34 +01002004 * writes a number of bytes to the Edgeport device's sram starting at the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 * given address.
2006 * If successful returns the number of bytes written, otherwise it returns
2007 * a negative error number of the problem.
2008 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002009static int sram_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2010 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
2012 int result;
2013 __u16 current_length;
2014 unsigned char *transfer_buffer;
2015
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002016 dev_dbg(&serial->dev->dev, "%s - %x, %x, %d\n", __func__, extAddr, addr, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Alan Cox03f0dbf2008-07-22 11:16:34 +01002018 transfer_buffer = kmalloc(64, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002019 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 /* need to split these writes up into 64 byte chunks */
2023 result = 0;
2024 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002025 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002027 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002029
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002030/* dev_dbg(&serial->dev->dev, "%s - writing %x, %x, %d\n", __func__, extAddr, addr, current_length); */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002031 memcpy(transfer_buffer, data, current_length);
2032 result = usb_control_msg(serial->dev,
2033 usb_sndctrlpipe(serial->dev, 0),
2034 USB_REQUEST_ION_WRITE_RAM,
2035 0x40, addr, extAddr, transfer_buffer,
2036 current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (result < 0)
2038 break;
2039 length -= current_length;
2040 addr += current_length;
2041 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Alan Cox03f0dbf2008-07-22 11:16:34 +01002044 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return result;
2046}
2047
2048
2049/****************************************************************************
2050 * rom_write
2051 * writes a number of bytes to the Edgeport device's ROM starting at the
2052 * given address.
2053 * If successful returns the number of bytes written, otherwise it returns
2054 * a negative error number of the problem.
2055 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002056static int rom_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2057 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
2059 int result;
2060 __u16 current_length;
2061 unsigned char *transfer_buffer;
2062
Alan Cox03f0dbf2008-07-22 11:16:34 +01002063 transfer_buffer = kmalloc(64, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002064 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 /* need to split these writes up into 64 byte chunks */
2068 result = 0;
2069 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002070 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002072 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002074 memcpy(transfer_buffer, data, current_length);
2075 result = usb_control_msg(serial->dev,
2076 usb_sndctrlpipe(serial->dev, 0),
2077 USB_REQUEST_ION_WRITE_ROM, 0x40,
2078 addr, extAddr,
2079 transfer_buffer, current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (result < 0)
2081 break;
2082 length -= current_length;
2083 addr += current_length;
2084 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Alan Cox03f0dbf2008-07-22 11:16:34 +01002087 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return result;
2089}
2090
2091
2092/****************************************************************************
2093 * rom_read
2094 * reads a number of bytes from the Edgeport device starting at the given
2095 * address.
2096 * If successful returns the number of bytes read, otherwise it returns
2097 * a negative error number of the problem.
2098 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002099static int rom_read(struct usb_serial *serial, __u16 extAddr,
2100 __u16 addr, __u16 length, __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
2102 int result;
2103 __u16 current_length;
2104 unsigned char *transfer_buffer;
2105
Alan Cox03f0dbf2008-07-22 11:16:34 +01002106 transfer_buffer = kmalloc(64, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002107 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /* need to split these reads up into 64 byte chunks */
2111 result = 0;
2112 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002113 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002115 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002117 result = usb_control_msg(serial->dev,
2118 usb_rcvctrlpipe(serial->dev, 0),
2119 USB_REQUEST_ION_READ_ROM,
2120 0xC0, addr, extAddr, transfer_buffer,
2121 current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 if (result < 0)
2123 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002124 memcpy(data, transfer_buffer, current_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 length -= current_length;
2126 addr += current_length;
2127 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Alan Cox03f0dbf2008-07-22 11:16:34 +01002130 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return result;
2132}
2133
2134
2135/****************************************************************************
2136 * send_iosp_ext_cmd
2137 * Is used to send a IOSP message to the Edgeport device
2138 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002139static int send_iosp_ext_cmd(struct edgeport_port *edge_port,
2140 __u8 command, __u8 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 unsigned char *buffer;
2143 unsigned char *currentCommand;
2144 int length = 0;
2145 int status = 0;
2146
Alan Cox03f0dbf2008-07-22 11:16:34 +01002147 buffer = kmalloc(10, GFP_ATOMIC);
Johan Hovold10c642d2013-12-29 19:22:56 +01002148 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 currentCommand = buffer;
2152
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002153 MAKE_CMD_EXT_CMD(&currentCommand, &length, edge_port->port->port_number,
2154 command, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Alan Cox03f0dbf2008-07-22 11:16:34 +01002156 status = write_cmd_usb(edge_port, buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if (status) {
2158 /* something bad happened, let's free up the memory */
2159 kfree(buffer);
2160 }
2161
2162 return status;
2163}
2164
2165
2166/*****************************************************************************
2167 * write_cmd_usb
2168 * this function writes the given buffer out to the bulk write endpoint.
2169 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002170static int write_cmd_usb(struct edgeport_port *edge_port,
2171 unsigned char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002173 struct edgeport_serial *edge_serial =
2174 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002175 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 int status = 0;
2177 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01002179 usb_serial_debug_data(dev, __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /* Allocate our next urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002182 urb = usb_alloc_urb(0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if (!urb)
2184 return -ENOMEM;
2185
Oliver Neukum96c706e2007-03-15 15:27:17 +01002186 atomic_inc(&CmdUrbs);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002187 dev_dbg(dev, "%s - ALLOCATE URB %p (outstanding %d)\n",
2188 __func__, urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Alan Cox03f0dbf2008-07-22 11:16:34 +01002190 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
2191 usb_sndbulkpipe(edge_serial->serial->dev,
2192 edge_serial->bulk_out_endpoint),
2193 buffer, length, edge_bulk_out_cmd_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002195 edge_port->commandPending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 status = usb_submit_urb(urb, GFP_ATOMIC);
2197
2198 if (status) {
2199 /* something went wrong */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002200 dev_err(dev, "%s - usb_submit_urb(write command) failed, status = %d\n",
2201 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 usb_kill_urb(urb);
2203 usb_free_urb(urb);
Oliver Neukum96c706e2007-03-15 15:27:17 +01002204 atomic_dec(&CmdUrbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return status;
2206 }
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208#if 0
Alan Cox03f0dbf2008-07-22 11:16:34 +01002209 wait_event(&edge_port->wait_command, !edge_port->commandPending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002211 if (edge_port->commandPending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 /* command timed out */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002213 dev_dbg(dev, "%s - command timed out\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 status = -EINVAL;
2215 }
2216#endif
2217 return status;
2218}
2219
2220
2221/*****************************************************************************
2222 * send_cmd_write_baud_rate
2223 * this function sends the proper command to change the baud rate of the
2224 * specified port.
2225 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002226static int send_cmd_write_baud_rate(struct edgeport_port *edge_port,
2227 int baudRate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002229 struct edgeport_serial *edge_serial =
2230 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002231 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 unsigned char *cmdBuffer;
2233 unsigned char *currCmd;
2234 int cmdLen = 0;
2235 int divisor;
2236 int status;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002237 u32 number = edge_port->port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Adam Kropelinbc71e472007-07-29 11:03:29 -04002239 if (edge_serial->is_epic &&
2240 !edge_serial->epic_descriptor.Supports.IOSPSetBaudRate) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002241 dev_dbg(dev, "SendCmdWriteBaudRate - NOT Setting baud rate for port, baud = %d\n",
2242 baudRate);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002243 return 0;
2244 }
2245
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002246 dev_dbg(dev, "%s - baud = %d\n", __func__, baudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002248 status = calc_baud_rate_divisor(dev, baudRate, &divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002250 dev_err(dev, "%s - bad baud rate\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 return status;
2252 }
2253
Alan Cox03f0dbf2008-07-22 11:16:34 +01002254 /* Alloc memory for the string of commands. */
2255 cmdBuffer = kmalloc(0x100, GFP_ATOMIC);
Johan Hovold10c642d2013-12-29 19:22:56 +01002256 if (!cmdBuffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 return -ENOMEM;
Johan Hovold10c642d2013-12-29 19:22:56 +01002258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 currCmd = cmdBuffer;
2260
Alan Cox03f0dbf2008-07-22 11:16:34 +01002261 /* Enable access to divisor latch */
2262 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR, LCR_DL_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Alan Cox03f0dbf2008-07-22 11:16:34 +01002264 /* Write the divisor itself */
2265 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLL, LOW8(divisor));
2266 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLM, HIGH8(divisor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Alan Cox03f0dbf2008-07-22 11:16:34 +01002268 /* Restore original value to disable access to divisor latch */
2269 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR,
2270 edge_port->shadowLCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Alan Cox03f0dbf2008-07-22 11:16:34 +01002272 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if (status) {
2274 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002275 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
2277
2278 return status;
2279}
2280
2281
2282/*****************************************************************************
2283 * calc_baud_rate_divisor
2284 * this function calculates the proper baud rate divisor for the specified
2285 * baud rate.
2286 *****************************************************************************/
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002287static int calc_baud_rate_divisor(struct device *dev, int baudrate, int *divisor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
2289 int i;
2290 __u16 custom;
2291
Tobias Klauser52950ed2005-12-11 16:20:08 +01002292 for (i = 0; i < ARRAY_SIZE(divisor_table); i++) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002293 if (divisor_table[i].BaudRate == baudrate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 *divisor = divisor_table[i].Divisor;
2295 return 0;
2296 }
2297 }
2298
Alan Cox03f0dbf2008-07-22 11:16:34 +01002299 /* We have tried all of the standard baud rates
2300 * lets try to calculate the divisor for this baud rate
2301 * Make sure the baud rate is reasonable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 if (baudrate > 50 && baudrate < 230400) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002303 /* get divisor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 custom = (__u16)((230400L + baudrate/2) / baudrate);
2305
2306 *divisor = custom;
2307
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002308 dev_dbg(dev, "%s - Baud %d = %d\n", __func__, baudrate, custom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 return 0;
2310 }
2311
2312 return -1;
2313}
2314
2315
2316/*****************************************************************************
2317 * send_cmd_write_uart_register
Anand Gadiyarfd589a82009-07-16 17:13:03 +02002318 * this function builds up a uart register message and sends to the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002320static int send_cmd_write_uart_register(struct edgeport_port *edge_port,
2321 __u8 regNum, __u8 regValue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002323 struct edgeport_serial *edge_serial =
2324 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002325 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 unsigned char *cmdBuffer;
2327 unsigned char *currCmd;
2328 unsigned long cmdLen = 0;
2329 int status;
2330
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002331 dev_dbg(dev, "%s - write to %s register 0x%02x\n",
2332 (regNum == MCR) ? "MCR" : "LCR", __func__, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Adam Kropelinbc71e472007-07-29 11:03:29 -04002334 if (edge_serial->is_epic &&
2335 !edge_serial->epic_descriptor.Supports.IOSPWriteMCR &&
2336 regNum == MCR) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002337 dev_dbg(dev, "SendCmdWriteUartReg - Not writing to MCR Register\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002338 return 0;
2339 }
2340
Adam Kropelinbc71e472007-07-29 11:03:29 -04002341 if (edge_serial->is_epic &&
2342 !edge_serial->epic_descriptor.Supports.IOSPWriteLCR &&
2343 regNum == LCR) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002344 dev_dbg(dev, "SendCmdWriteUartReg - Not writing to LCR Register\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002345 return 0;
2346 }
2347
Alan Cox03f0dbf2008-07-22 11:16:34 +01002348 /* Alloc memory for the string of commands. */
2349 cmdBuffer = kmalloc(0x10, GFP_ATOMIC);
2350 if (cmdBuffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 currCmd = cmdBuffer;
2354
Alan Cox03f0dbf2008-07-22 11:16:34 +01002355 /* Build a cmd in the buffer to write the given register */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002356 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, edge_port->port->port_number,
2357 regNum, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
2360 if (status) {
2361 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002362 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
2364
2365 return status;
2366}
2367
2368
2369/*****************************************************************************
2370 * change_port_settings
Alan Cox03f0dbf2008-07-22 11:16:34 +01002371 * This routine is called to set the UART on the device to match the
2372 * specified new settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01002374
2375static void change_port_settings(struct tty_struct *tty,
2376 struct edgeport_port *edge_port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002378 struct device *dev = &edge_port->port->dev;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002379 struct edgeport_serial *edge_serial =
2380 usb_get_serial_data(edge_port->port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 int baud;
2382 unsigned cflag;
2383 __u8 mask = 0xff;
2384 __u8 lData;
2385 __u8 lParity;
2386 __u8 lStop;
2387 __u8 rxFlow;
2388 __u8 txFlow;
2389 int status;
2390
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002391 if (!edge_port->open &&
2392 !edge_port->openPending) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002393 dev_dbg(dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 return;
2395 }
2396
Alan Coxadc8d742012-07-14 15:31:47 +01002397 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
2399 switch (cflag & CSIZE) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002400 case CS5:
2401 lData = LCR_BITS_5; mask = 0x1f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002402 dev_dbg(dev, "%s - data bits = 5\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002403 break;
2404 case CS6:
2405 lData = LCR_BITS_6; mask = 0x3f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002406 dev_dbg(dev, "%s - data bits = 6\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002407 break;
2408 case CS7:
2409 lData = LCR_BITS_7; mask = 0x7f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002410 dev_dbg(dev, "%s - data bits = 7\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002411 break;
2412 default:
2413 case CS8:
2414 lData = LCR_BITS_8;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002415 dev_dbg(dev, "%s - data bits = 8\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002416 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
2418
2419 lParity = LCR_PAR_NONE;
2420 if (cflag & PARENB) {
2421 if (cflag & CMSPAR) {
2422 if (cflag & PARODD) {
2423 lParity = LCR_PAR_MARK;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002424 dev_dbg(dev, "%s - parity = mark\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 } else {
2426 lParity = LCR_PAR_SPACE;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002427 dev_dbg(dev, "%s - parity = space\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 }
2429 } else if (cflag & PARODD) {
2430 lParity = LCR_PAR_ODD;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002431 dev_dbg(dev, "%s - parity = odd\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 } else {
2433 lParity = LCR_PAR_EVEN;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002434 dev_dbg(dev, "%s - parity = even\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
2436 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002437 dev_dbg(dev, "%s - parity = none\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 }
2439
2440 if (cflag & CSTOPB) {
2441 lStop = LCR_STOP_2;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002442 dev_dbg(dev, "%s - stop bits = 2\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 } else {
2444 lStop = LCR_STOP_1;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002445 dev_dbg(dev, "%s - stop bits = 1\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 }
2447
2448 /* figure out the flow control settings */
2449 rxFlow = txFlow = 0x00;
2450 if (cflag & CRTSCTS) {
2451 rxFlow |= IOSP_RX_FLOW_RTS;
2452 txFlow |= IOSP_TX_FLOW_CTS;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002453 dev_dbg(dev, "%s - RTS/CTS is enabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002455 dev_dbg(dev, "%s - RTS/CTS is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
2457
Alan Cox03f0dbf2008-07-22 11:16:34 +01002458 /* if we are implementing XON/XOFF, set the start and stop character
2459 in the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 if (I_IXOFF(tty) || I_IXON(tty)) {
2461 unsigned char stop_char = STOP_CHAR(tty);
2462 unsigned char start_char = START_CHAR(tty);
2463
Geyslan G. Bem232dce82015-12-11 06:46:41 -03002464 if (!edge_serial->is_epic ||
2465 edge_serial->epic_descriptor.Supports.IOSPSetXChar) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002466 send_iosp_ext_cmd(edge_port,
2467 IOSP_CMD_SET_XON_CHAR, start_char);
2468 send_iosp_ext_cmd(edge_port,
2469 IOSP_CMD_SET_XOFF_CHAR, stop_char);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472 /* if we are implementing INBOUND XON/XOFF */
2473 if (I_IXOFF(tty)) {
2474 rxFlow |= IOSP_RX_FLOW_XON_XOFF;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002475 dev_dbg(dev, "%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2476 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002478 dev_dbg(dev, "%s - INBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 }
2480
2481 /* if we are implementing OUTBOUND XON/XOFF */
2482 if (I_IXON(tty)) {
2483 txFlow |= IOSP_TX_FLOW_XON_XOFF;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002484 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2485 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002487 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
2489 }
2490
2491 /* Set flow control to the configured value */
Geyslan G. Bem232dce82015-12-11 06:46:41 -03002492 if (!edge_serial->is_epic ||
2493 edge_serial->epic_descriptor.Supports.IOSPSetRxFlow)
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002494 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_RX_FLOW, rxFlow);
Geyslan G. Bem232dce82015-12-11 06:46:41 -03002495 if (!edge_serial->is_epic ||
2496 edge_serial->epic_descriptor.Supports.IOSPSetTxFlow)
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002497 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_TX_FLOW, txFlow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499
2500 edge_port->shadowLCR &= ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
2501 edge_port->shadowLCR |= (lData | lParity | lStop);
2502
2503 edge_port->validDataMask = mask;
2504
2505 /* Send the updated LCR value to the EdgePort */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002506 status = send_cmd_write_uart_register(edge_port, LCR,
2507 edge_port->shadowLCR);
2508 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511 /* set up the MCR register and send it to the EdgePort */
2512 edge_port->shadowMCR = MCR_MASTER_IE;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002513 if (cflag & CBAUD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 edge_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002515
2516 status = send_cmd_write_uart_register(edge_port, MCR,
2517 edge_port->shadowMCR);
2518 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 /* Determine divisor based on baud rate */
2522 baud = tty_get_baud_rate(tty);
2523 if (!baud) {
2524 /* pick a default, any default... */
2525 baud = 9600;
2526 }
2527
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002528 dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002529 status = send_cmd_write_baud_rate(edge_port, baud);
Alan Cox6ce073b2007-10-18 01:24:25 -07002530 if (status == -1) {
2531 /* Speed change was not possible - put back the old speed */
2532 baud = tty_termios_baud_rate(old_termios);
2533 tty_encode_baud_rate(tty, baud, baud);
2534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535}
2536
2537
2538/****************************************************************************
2539 * unicode_to_ascii
2540 * Turns a string from Unicode into ASCII.
2541 * Doesn't do a good job with any characters that are outside the normal
2542 * ASCII range, but it's only for debugging...
2543 * NOTE: expects the unicode in LE format
2544 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002545static void unicode_to_ascii(char *string, int buflen,
2546 __le16 *unicode, int unicode_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
2548 int i;
2549
Pete Zaitcevad933752006-05-22 21:49:44 -07002550 if (buflen <= 0) /* never happens, but... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return;
Pete Zaitcevad933752006-05-22 21:49:44 -07002552 --buflen; /* space for nul */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Pete Zaitcevad933752006-05-22 21:49:44 -07002554 for (i = 0; i < unicode_size; i++) {
2555 if (i >= buflen)
2556 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 string[i] = (char)(le16_to_cpu(unicode[i]));
Pete Zaitcevad933752006-05-22 21:49:44 -07002558 }
2559 string[i] = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560}
2561
2562
2563/****************************************************************************
2564 * get_manufacturing_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002565 * reads in the manufacturing descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 * structure.
2567 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002568static void get_manufacturing_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002570 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 int response;
2572
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002573 dev_dbg(dev, "getting manufacturer descriptor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Alan Cox03f0dbf2008-07-22 11:16:34 +01002575 response = rom_read(edge_serial->serial,
2576 (EDGE_MANUF_DESC_ADDR & 0xffff0000) >> 16,
2577 (__u16)(EDGE_MANUF_DESC_ADDR & 0x0000ffff),
2578 EDGE_MANUF_DESC_LEN,
2579 (__u8 *)(&edge_serial->manuf_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Alan Cox03f0dbf2008-07-22 11:16:34 +01002581 if (response < 1)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002582 dev_err(dev, "error in getting manufacturer descriptor\n");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002583 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 char string[30];
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002585 dev_dbg(dev, "**Manufacturer Descriptor\n");
2586 dev_dbg(dev, " RomSize: %dK\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002587 edge_serial->manuf_descriptor.RomSize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002588 dev_dbg(dev, " RamSize: %dK\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002589 edge_serial->manuf_descriptor.RamSize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002590 dev_dbg(dev, " CpuRev: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002591 edge_serial->manuf_descriptor.CpuRev);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002592 dev_dbg(dev, " BoardRev: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002593 edge_serial->manuf_descriptor.BoardRev);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002594 dev_dbg(dev, " NumPorts: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002595 edge_serial->manuf_descriptor.NumPorts);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002596 dev_dbg(dev, " DescDate: %d/%d/%d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002597 edge_serial->manuf_descriptor.DescDate[0],
2598 edge_serial->manuf_descriptor.DescDate[1],
2599 edge_serial->manuf_descriptor.DescDate[2]+1900);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002600 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002601 edge_serial->manuf_descriptor.SerialNumber,
2602 edge_serial->manuf_descriptor.SerNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002603 dev_dbg(dev, " SerialNumber: %s\n", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002604 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002605 edge_serial->manuf_descriptor.AssemblyNumber,
2606 edge_serial->manuf_descriptor.AssemblyNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002607 dev_dbg(dev, " AssemblyNumber: %s\n", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002608 unicode_to_ascii(string, sizeof(string),
Pete Zaitcevad933752006-05-22 21:49:44 -07002609 edge_serial->manuf_descriptor.OemAssyNumber,
2610 edge_serial->manuf_descriptor.OemAssyNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002611 dev_dbg(dev, " OemAssyNumber: %s\n", string);
2612 dev_dbg(dev, " UartType: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002613 edge_serial->manuf_descriptor.UartType);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002614 dev_dbg(dev, " IonPid: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002615 edge_serial->manuf_descriptor.IonPid);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002616 dev_dbg(dev, " IonConfig: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002617 edge_serial->manuf_descriptor.IonConfig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 }
2619}
2620
2621
2622/****************************************************************************
2623 * get_boot_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002624 * reads in the bootloader descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 * structure.
2626 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002627static void get_boot_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002629 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 int response;
2631
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002632 dev_dbg(dev, "getting boot descriptor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Alan Cox03f0dbf2008-07-22 11:16:34 +01002634 response = rom_read(edge_serial->serial,
2635 (EDGE_BOOT_DESC_ADDR & 0xffff0000) >> 16,
2636 (__u16)(EDGE_BOOT_DESC_ADDR & 0x0000ffff),
2637 EDGE_BOOT_DESC_LEN,
2638 (__u8 *)(&edge_serial->boot_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Alan Cox03f0dbf2008-07-22 11:16:34 +01002640 if (response < 1)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002641 dev_err(dev, "error in getting boot descriptor\n");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002642 else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002643 dev_dbg(dev, "**Boot Descriptor:\n");
2644 dev_dbg(dev, " BootCodeLength: %d\n",
2645 le16_to_cpu(edge_serial->boot_descriptor.BootCodeLength));
2646 dev_dbg(dev, " MajorVersion: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002647 edge_serial->boot_descriptor.MajorVersion);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002648 dev_dbg(dev, " MinorVersion: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002649 edge_serial->boot_descriptor.MinorVersion);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002650 dev_dbg(dev, " BuildNumber: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002651 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber));
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002652 dev_dbg(dev, " Capabilities: 0x%x\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002653 le16_to_cpu(edge_serial->boot_descriptor.Capabilities));
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002654 dev_dbg(dev, " UConfig0: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002655 edge_serial->boot_descriptor.UConfig0);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002656 dev_dbg(dev, " UConfig1: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002657 edge_serial->boot_descriptor.UConfig1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
2659}
2660
2661
2662/****************************************************************************
2663 * load_application_firmware
2664 * This is called to load the application firmware to the device
2665 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002666static void load_application_firmware(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002668 struct device *dev = &edge_serial->serial->dev->dev;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302669 const struct ihex_binrec *rec;
2670 const struct firmware *fw;
2671 const char *fw_name;
2672 const char *fw_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 int response;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302674 __u32 Operaddr;
2675 __u16 build;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 switch (edge_serial->product_info.iDownloadFile) {
2678 case EDGE_DOWNLOAD_FILE_I930:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302679 fw_info = "downloading firmware version (930)";
2680 fw_name = "edgeport/down.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 break;
2682
2683 case EDGE_DOWNLOAD_FILE_80251:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302684 fw_info = "downloading firmware version (80251)";
2685 fw_name = "edgeport/down2.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 break;
2687
2688 case EDGE_DOWNLOAD_FILE_NONE:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002689 dev_dbg(dev, "No download file specified, skipping download\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 return;
2691
2692 default:
2693 return;
2694 }
2695
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302696 response = request_ihex_firmware(&fw, fw_name,
2697 &edge_serial->serial->dev->dev);
2698 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002699 dev_err(dev, "Failed to load image \"%s\" err %d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302700 fw_name, response);
2701 return;
2702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302704 rec = (const struct ihex_binrec *)fw->data;
2705 build = (rec->data[2] << 8) | rec->data[3];
2706
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002707 dev_dbg(dev, "%s %d.%d.%d\n", fw_info, rec->data[0], rec->data[1], build);
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302708
Bjørn Mork271c1152011-01-17 14:19:37 +01002709 edge_serial->product_info.FirmwareMajorVersion = rec->data[0];
2710 edge_serial->product_info.FirmwareMinorVersion = rec->data[1];
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302711 edge_serial->product_info.FirmwareBuildNumber = cpu_to_le16(build);
2712
2713 for (rec = ihex_next_binrec(rec); rec;
2714 rec = ihex_next_binrec(rec)) {
2715 Operaddr = be32_to_cpu(rec->addr);
2716 response = sram_write(edge_serial->serial,
2717 Operaddr >> 16,
2718 Operaddr & 0xFFFF,
2719 be16_to_cpu(rec->len),
2720 &rec->data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 if (response < 0) {
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302722 dev_err(&edge_serial->serial->dev->dev,
2723 "sram_write failed (%x, %x, %d)\n",
2724 Operaddr >> 16, Operaddr & 0xFFFF,
2725 be16_to_cpu(rec->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 break;
2727 }
2728 }
2729
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002730 dev_dbg(dev, "sending exec_dl_code\n");
2731 response = usb_control_msg (edge_serial->serial->dev,
2732 usb_sndctrlpipe(edge_serial->serial->dev, 0),
2733 USB_REQUEST_ION_EXEC_DL_CODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 0x40, 0x4000, 0x0001, NULL, 0, 3000);
2735
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302736 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
2739
2740/****************************************************************************
2741 * edge_startup
2742 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002743static int edge_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744{
2745 struct edgeport_serial *edge_serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 struct usb_device *dev;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002747 struct device *ddev = &serial->dev->dev;
Johan Hovoldc27f3ef2012-10-17 13:34:57 +02002748 int i;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002749 int response;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002750 bool interrupt_in_found;
2751 bool bulk_in_found;
2752 bool bulk_out_found;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002753 static __u32 descriptor[3] = { EDGE_COMPATIBILITY_MASK0,
2754 EDGE_COMPATIBILITY_MASK1,
2755 EDGE_COMPATIBILITY_MASK2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
2757 dev = serial->dev;
2758
2759 /* create our private serial structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002760 edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002761 if (!edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 return -ENOMEM;
Johan Hovold10c642d2013-12-29 19:22:56 +01002763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 spin_lock_init(&edge_serial->es_lock);
2765 edge_serial->serial = serial;
2766 usb_set_serial_data(serial, edge_serial);
2767
2768 /* get the name for the device from the device */
Dan Carpenterf10718f2010-01-25 14:53:33 +03002769 i = usb_string(dev, dev->descriptor.iManufacturer,
Pete Zaitcevad933752006-05-22 21:49:44 -07002770 &edge_serial->name[0], MAX_NAME_LEN+1);
Dan Carpenterf10718f2010-01-25 14:53:33 +03002771 if (i < 0)
2772 i = 0;
Pete Zaitcevad933752006-05-22 21:49:44 -07002773 edge_serial->name[i++] = ' ';
Dan Carpenterf10718f2010-01-25 14:53:33 +03002774 usb_string(dev, dev->descriptor.iProduct,
Pete Zaitcevad933752006-05-22 21:49:44 -07002775 &edge_serial->name[i], MAX_NAME_LEN+2 - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 dev_info(&serial->dev->dev, "%s detected\n", edge_serial->name);
2778
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002779 /* Read the epic descriptor */
2780 if (get_epic_descriptor(edge_serial) <= 0) {
2781 /* memcpy descriptor to Supports structures */
2782 memcpy(&edge_serial->epic_descriptor.Supports, descriptor,
2783 sizeof(struct edge_compatibility_bits));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002785 /* get the manufacturing descriptor for this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002786 get_manufacturing_desc(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002788 /* get the boot descriptor */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002789 get_boot_desc(edge_serial);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002790
2791 get_product_info(edge_serial);
2792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 /* set the number of ports from the manufacturing description */
2795 /* serial->num_ports = serial->product_info.NumPorts; */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002796 if ((!edge_serial->is_epic) &&
2797 (edge_serial->product_info.NumPorts != serial->num_ports)) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002798 dev_warn(ddev,
2799 "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 -08002800 edge_serial->product_info.NumPorts,
2801 serial->num_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 }
2803
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002804 dev_dbg(ddev, "%s - time 1 %ld\n", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002806 /* If not an EPiC device */
2807 if (!edge_serial->is_epic) {
2808 /* now load the application firmware into this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002809 load_application_firmware(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002811 dev_dbg(ddev, "%s - time 2 %ld\n", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002813 /* Check current Edgeport EEPROM and update if necessary */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002814 update_edgeport_E2PROM(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002816 dev_dbg(ddev, "%s - time 3 %ld\n", __func__, jiffies);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002817
2818 /* set the configuration to use #1 */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002819/* dev_dbg(ddev, "set_configuration 1\n"); */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002820/* usb_set_configuration (dev, 1); */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002821 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002822 dev_dbg(ddev, " FirmwareMajorVersion %d.%d.%d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302823 edge_serial->product_info.FirmwareMajorVersion,
2824 edge_serial->product_info.FirmwareMinorVersion,
2825 le16_to_cpu(edge_serial->product_info.FirmwareBuildNumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Alan Cox03f0dbf2008-07-22 11:16:34 +01002827 /* we set up the pointers to the endpoints in the edge_open function,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 * as the structures aren't created yet. */
2829
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002830 response = 0;
2831
2832 if (edge_serial->is_epic) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002833 /* EPIC thing, set up our interrupt polling now and our read
2834 * urb, so that the device knows it really is connected. */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002835 interrupt_in_found = bulk_in_found = bulk_out_found = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002836 for (i = 0; i < serial->interface->altsetting[0]
2837 .desc.bNumEndpoints; ++i) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002838 struct usb_endpoint_descriptor *endpoint;
2839 int buffer_size;
2840
Alan Cox03f0dbf2008-07-22 11:16:34 +01002841 endpoint = &serial->interface->altsetting[0].
2842 endpoint[i].desc;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002843 buffer_size = usb_endpoint_maxp(endpoint);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002844 if (!interrupt_in_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002845 (usb_endpoint_is_int_in(endpoint))) {
2846 /* we found a interrupt in endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002847 dev_dbg(ddev, "found interrupt in\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002848
2849 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002850 edge_serial->interrupt_read_urb =
2851 usb_alloc_urb(0, GFP_KERNEL);
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002852 if (!edge_serial->interrupt_read_urb) {
2853 response = -ENOMEM;
2854 break;
2855 }
Johan Hovold10c642d2013-12-29 19:22:56 +01002856
Alan Cox03f0dbf2008-07-22 11:16:34 +01002857 edge_serial->interrupt_in_buffer =
2858 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002859 if (!edge_serial->interrupt_in_buffer) {
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002860 response = -ENOMEM;
2861 break;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002862 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002863 edge_serial->interrupt_in_endpoint =
2864 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002865
2866 /* set up our interrupt urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002867 usb_fill_int_urb(
2868 edge_serial->interrupt_read_urb,
2869 dev,
2870 usb_rcvintpipe(dev,
2871 endpoint->bEndpointAddress),
2872 edge_serial->interrupt_in_buffer,
2873 buffer_size,
2874 edge_interrupt_callback,
2875 edge_serial,
2876 endpoint->bInterval);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002877
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002878 interrupt_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002879 }
2880
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002881 if (!bulk_in_found &&
Alan Cox03f0dbf2008-07-22 11:16:34 +01002882 (usb_endpoint_is_bulk_in(endpoint))) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002883 /* we found a bulk in endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002884 dev_dbg(ddev, "found bulk in\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002885
2886 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002887 edge_serial->read_urb =
2888 usb_alloc_urb(0, GFP_KERNEL);
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002889 if (!edge_serial->read_urb) {
2890 response = -ENOMEM;
2891 break;
2892 }
Johan Hovold10c642d2013-12-29 19:22:56 +01002893
Alan Cox03f0dbf2008-07-22 11:16:34 +01002894 edge_serial->bulk_in_buffer =
2895 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002896 if (!edge_serial->bulk_in_buffer) {
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002897 response = -ENOMEM;
2898 break;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002899 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002900 edge_serial->bulk_in_endpoint =
2901 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002902
2903 /* set up our bulk in urb */
2904 usb_fill_bulk_urb(edge_serial->read_urb, dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +01002905 usb_rcvbulkpipe(dev,
2906 endpoint->bEndpointAddress),
2907 edge_serial->bulk_in_buffer,
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002908 usb_endpoint_maxp(endpoint),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002909 edge_bulk_in_callback,
2910 edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002911 bulk_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002912 }
2913
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002914 if (!bulk_out_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002915 (usb_endpoint_is_bulk_out(endpoint))) {
2916 /* we found a bulk out endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002917 dev_dbg(ddev, "found bulk out\n");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002918 edge_serial->bulk_out_endpoint =
2919 endpoint->bEndpointAddress;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002920 bulk_out_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002921 }
2922 }
2923
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002924 if (response || !interrupt_in_found || !bulk_in_found ||
2925 !bulk_out_found) {
2926 if (!response) {
2927 dev_err(ddev, "expected endpoints not found\n");
2928 response = -ENODEV;
2929 }
2930
2931 usb_free_urb(edge_serial->interrupt_read_urb);
2932 kfree(edge_serial->interrupt_in_buffer);
2933
2934 usb_free_urb(edge_serial->read_urb);
2935 kfree(edge_serial->bulk_in_buffer);
2936
2937 kfree(edge_serial);
2938
2939 return response;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002940 }
2941
2942 /* start interrupt read for this edgeport this interrupt will
2943 * continue as long as the edgeport is connected */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002944 response = usb_submit_urb(edge_serial->interrupt_read_urb,
2945 GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002946 if (response)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002947 dev_err(ddev, "%s - Error %d submitting control urb\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002948 __func__, response);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002949 }
2950 return response;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951}
2952
2953
2954/****************************************************************************
Alan Sternf9c99bb2009-06-02 11:53:55 -04002955 * edge_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 * This function is called whenever the device is removed from the usb bus.
2957 ****************************************************************************/
Alan Sternf9c99bb2009-06-02 11:53:55 -04002958static void edge_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959{
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002960 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 /* stop reads and writes on all ports */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002963 /* free up our endpoint stuff */
2964 if (edge_serial->is_epic) {
Oliver Neukum74ac07e2007-06-13 18:50:41 +02002965 usb_kill_urb(edge_serial->interrupt_read_urb);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002966 usb_free_urb(edge_serial->interrupt_read_urb);
2967 kfree(edge_serial->interrupt_in_buffer);
2968
Oliver Neukum74ac07e2007-06-13 18:50:41 +02002969 usb_kill_urb(edge_serial->read_urb);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002970 usb_free_urb(edge_serial->read_urb);
2971 kfree(edge_serial->bulk_in_buffer);
2972 }
Alan Sternf9c99bb2009-06-02 11:53:55 -04002973}
2974
2975
2976/****************************************************************************
2977 * edge_release
2978 * This function is called when the device structure is deallocated.
2979 ****************************************************************************/
2980static void edge_release(struct usb_serial *serial)
2981{
2982 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002983
2984 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985}
2986
Johan Hovoldc27f3ef2012-10-17 13:34:57 +02002987static int edge_port_probe(struct usb_serial_port *port)
2988{
2989 struct edgeport_port *edge_port;
2990
2991 edge_port = kzalloc(sizeof(*edge_port), GFP_KERNEL);
2992 if (!edge_port)
2993 return -ENOMEM;
2994
2995 spin_lock_init(&edge_port->ep_lock);
2996 edge_port->port = port;
2997
2998 usb_set_serial_port_data(port, edge_port);
2999
3000 return 0;
3001}
3002
3003static int edge_port_remove(struct usb_serial_port *port)
3004{
3005 struct edgeport_port *edge_port;
3006
3007 edge_port = usb_get_serial_port_data(port);
3008 kfree(edge_port);
3009
3010 return 0;
3011}
3012
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07003013module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Alan Cox03f0dbf2008-07-22 11:16:34 +01003015MODULE_AUTHOR(DRIVER_AUTHOR);
3016MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017MODULE_LICENSE("GPL");
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05303018MODULE_FIRMWARE("edgeport/boot.fw");
3019MODULE_FIRMWARE("edgeport/boot2.fw");
3020MODULE_FIRMWARE("edgeport/down.fw");
3021MODULE_FIRMWARE("edgeport/down2.fw");