blob: 464db17b53285b26ce42d15fe14eb281a4276665 [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;
Johan Hovoldb07e9302017-01-12 14:56:13 +0100495 struct edge_compatibility_descriptor *epic;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800496 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;
Johan Hovoldb07e9302017-01-12 14:56:13 +0100500
501 epic = kmalloc(sizeof(*epic), GFP_KERNEL);
502 if (!epic)
503 return -ENOMEM;
504
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800505 result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
506 USB_REQUEST_ION_GET_EPIC_DESC,
507 0xC0, 0x00, 0x00,
Johan Hovoldb07e9302017-01-12 14:56:13 +0100508 epic, sizeof(*epic),
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800509 300);
Johan Hovoldb07e9302017-01-12 14:56:13 +0100510 if (result == sizeof(*epic)) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800511 ep->is_epic = 1;
Johan Hovoldb07e9302017-01-12 14:56:13 +0100512 memcpy(&ep->epic_descriptor, epic, sizeof(*epic));
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800513 memset(product_info, 0, sizeof(struct edgeport_product_info));
514
Alan Cox03f0dbf2008-07-22 11:16:34 +0100515 product_info->NumPorts = epic->NumPorts;
516 product_info->ProdInfoVer = 0;
517 product_info->FirmwareMajorVersion = epic->MajorVersion;
518 product_info->FirmwareMinorVersion = epic->MinorVersion;
519 product_info->FirmwareBuildNumber = epic->BuildNumber;
520 product_info->iDownloadFile = epic->iDownloadFile;
521 product_info->EpicVer = epic->EpicVer;
522 product_info->Epic = epic->Supports;
523 product_info->ProductId = ION_DEVICE_ID_EDGEPORT_COMPATIBLE;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700524 dump_product_info(ep, product_info);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800525
526 bits = &ep->epic_descriptor.Supports;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700527 dev_dbg(dev, "**EPIC descriptor:\n");
528 dev_dbg(dev, " VendEnableSuspend: %s\n", bits->VendEnableSuspend ? "TRUE": "FALSE");
529 dev_dbg(dev, " IOSPOpen : %s\n", bits->IOSPOpen ? "TRUE": "FALSE");
530 dev_dbg(dev, " IOSPClose : %s\n", bits->IOSPClose ? "TRUE": "FALSE");
531 dev_dbg(dev, " IOSPChase : %s\n", bits->IOSPChase ? "TRUE": "FALSE");
532 dev_dbg(dev, " IOSPSetRxFlow : %s\n", bits->IOSPSetRxFlow ? "TRUE": "FALSE");
533 dev_dbg(dev, " IOSPSetTxFlow : %s\n", bits->IOSPSetTxFlow ? "TRUE": "FALSE");
534 dev_dbg(dev, " IOSPSetXChar : %s\n", bits->IOSPSetXChar ? "TRUE": "FALSE");
535 dev_dbg(dev, " IOSPRxCheck : %s\n", bits->IOSPRxCheck ? "TRUE": "FALSE");
536 dev_dbg(dev, " IOSPSetClrBreak : %s\n", bits->IOSPSetClrBreak ? "TRUE": "FALSE");
537 dev_dbg(dev, " IOSPWriteMCR : %s\n", bits->IOSPWriteMCR ? "TRUE": "FALSE");
538 dev_dbg(dev, " IOSPWriteLCR : %s\n", bits->IOSPWriteLCR ? "TRUE": "FALSE");
539 dev_dbg(dev, " IOSPSetBaudRate : %s\n", bits->IOSPSetBaudRate ? "TRUE": "FALSE");
540 dev_dbg(dev, " TrueEdgeport : %s\n", bits->TrueEdgeport ? "TRUE": "FALSE");
Johan Hovoldb07e9302017-01-12 14:56:13 +0100541
542 result = 0;
543 } else if (result >= 0) {
544 dev_warn(&serial->interface->dev, "short epic descriptor received: %d\n",
545 result);
546 result = -EIO;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800547 }
548
Johan Hovoldb07e9302017-01-12 14:56:13 +0100549 kfree(epic);
550
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -0800551 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554
555/************************************************************************/
556/************************************************************************/
557/* U S B C A L L B A C K F U N C T I O N S */
558/* U S B C A L L B A C K F U N C T I O N S */
559/************************************************************************/
560/************************************************************************/
561
562/*****************************************************************************
563 * edge_interrupt_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100564 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * interrupt endpoint.
566 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100567static void edge_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700569 struct edgeport_serial *edge_serial = urb->context;
570 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct edgeport_port *edge_port;
572 struct usb_serial_port *port;
573 unsigned char *data = urb->transfer_buffer;
574 int length = urb->actual_length;
575 int bytes_avail;
576 int position;
577 int txCredits;
578 int portNumber;
579 int result;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700580 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700582 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 case 0:
584 /* success */
585 break;
586 case -ECONNRESET:
587 case -ENOENT:
588 case -ESHUTDOWN:
589 /* this urb is terminated, clean up */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700590 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return;
592 default:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700593 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto exit;
595 }
596
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700597 dev = &edge_serial->serial->dev->dev;
598
Alan Cox03f0dbf2008-07-22 11:16:34 +0100599 /* process this interrupt-read even if there are no ports open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (length) {
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100601 usb_serial_debug_data(dev, __func__, length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (length > 1) {
604 bytes_avail = data[0] | (data[1] << 8);
605 if (bytes_avail) {
606 spin_lock(&edge_serial->es_lock);
607 edge_serial->rxBytesAvail += bytes_avail;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700608 dev_dbg(dev,
609 "%s - bytes_avail=%d, rxBytesAvail=%d, read_in_progress=%d\n",
610 __func__, bytes_avail,
611 edge_serial->rxBytesAvail,
612 edge_serial->read_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 if (edge_serial->rxBytesAvail > 0 &&
615 !edge_serial->read_in_progress) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700616 dev_dbg(dev, "%s - posting a read\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100617 edge_serial->read_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Alan Cox03f0dbf2008-07-22 11:16:34 +0100619 /* we have pending bytes on the
620 bulk in pipe, send a request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 result = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
622 if (result) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700623 dev_err(dev,
624 "%s - usb_submit_urb(read bulk) failed with result = %d\n",
625 __func__, result);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100626 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628 }
629 spin_unlock(&edge_serial->es_lock);
630 }
631 }
632 /* grab the txcredits for the ports if available */
633 position = 2;
634 portNumber = 0;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100635 while ((position < length) &&
636 (portNumber < edge_serial->serial->num_ports)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 txCredits = data[position] | (data[position+1] << 8);
638 if (txCredits) {
639 port = edge_serial->serial->port[portNumber];
640 edge_port = usb_get_serial_port_data(port);
641 if (edge_port->open) {
642 spin_lock(&edge_port->ep_lock);
643 edge_port->txCredits += txCredits;
644 spin_unlock(&edge_port->ep_lock);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700645 dev_dbg(dev, "%s - txcredits for port%d = %d\n",
646 __func__, portNumber,
647 edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Alan Cox03f0dbf2008-07-22 11:16:34 +0100649 /* tell the tty driver that something
650 has changed */
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100651 tty_port_tty_wakeup(&edge_port->port->port);
Alan Cox03f0dbf2008-07-22 11:16:34 +0100652 /* Since we have more credit, check
653 if more data can be sent */
654 send_more_port_data(edge_serial,
655 edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 }
658 position += 2;
659 ++portNumber;
660 }
661 }
662
663exit:
Alan Cox03f0dbf2008-07-22 11:16:34 +0100664 result = usb_submit_urb(urb, GFP_ATOMIC);
665 if (result)
666 dev_err(&urb->dev->dev,
667 "%s - Error %d submitting control urb\n",
668 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671
672/*****************************************************************************
673 * edge_bulk_in_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100674 * this is the callback function for when we have received data on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * bulk in endpoint.
676 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100677static void edge_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Ming Leicdc97792008-02-24 18:41:47 +0800679 struct edgeport_serial *edge_serial = urb->context;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700680 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700682 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 __u16 raw_data_length;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700684 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700686 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700687 dev_dbg(&urb->dev->dev, "%s - nonzero read bulk status received: %d\n",
688 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100689 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return;
691 }
692
693 if (urb->actual_length == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700694 dev_dbg(&urb->dev->dev, "%s - read bulk callback with no data\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100695 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return;
697 }
698
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700699 dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 raw_data_length = urb->actual_length;
701
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100702 usb_serial_debug_data(dev, __func__, raw_data_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 spin_lock(&edge_serial->es_lock);
705
706 /* decrement our rxBytes available by the number that we just got */
707 edge_serial->rxBytesAvail -= raw_data_length;
708
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700709 dev_dbg(dev, "%s - Received = %d, rxBytesAvail %d\n", __func__,
710 raw_data_length, edge_serial->rxBytesAvail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Alan Cox03f0dbf2008-07-22 11:16:34 +0100712 process_rcvd_data(edge_serial, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 /* check to see if there's any more data for us to read */
715 if (edge_serial->rxBytesAvail > 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700716 dev_dbg(dev, "%s - posting a read\n", __func__);
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700717 retval = usb_submit_urb(edge_serial->read_urb, GFP_ATOMIC);
718 if (retval) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700719 dev_err(dev,
720 "%s - usb_submit_urb(read bulk) failed, retval = %d\n",
721 __func__, retval);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100722 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100725 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727
728 spin_unlock(&edge_serial->es_lock);
729}
730
731
732/*****************************************************************************
733 * edge_bulk_out_data_callback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100734 * this is the callback function for when we have finished sending
735 * serial data on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100737static void edge_bulk_out_data_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Ming Leicdc97792008-02-24 18:41:47 +0800739 struct edgeport_port *edge_port = urb->context;
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700740 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Greg Kroah-Hartman2a393f52007-06-15 15:44:13 -0700742 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700743 dev_dbg(&urb->dev->dev,
744 "%s - nonzero write bulk status received: %d\n",
745 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
747
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100748 if (edge_port->open)
749 tty_port_tty_wakeup(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Alan Cox03f0dbf2008-07-22 11:16:34 +0100751 /* Release the Write URB */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100752 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Alan Cox03f0dbf2008-07-22 11:16:34 +0100754 /* Check if more data needs to be sent */
755 send_more_port_data((struct edgeport_serial *)
756 (usb_get_serial_data(edge_port->port->serial)), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759
760/*****************************************************************************
761 * BulkOutCmdCallback
Alan Cox03f0dbf2008-07-22 11:16:34 +0100762 * this is the callback function for when we have finished sending a
763 * command on the bulk out endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100765static void edge_bulk_out_cmd_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Ming Leicdc97792008-02-24 18:41:47 +0800767 struct edgeport_port *edge_port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 int status = urb->status;
769
Oliver Neukum96c706e2007-03-15 15:27:17 +0100770 atomic_dec(&CmdUrbs);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700771 dev_dbg(&urb->dev->dev, "%s - FREE URB %p (outstanding %d)\n",
772 __func__, urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774
775 /* clean up the transfer buffer */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -0700776 kfree(urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /* Free the command urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100779 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700782 dev_dbg(&urb->dev->dev,
783 "%s - nonzero write bulk status received: %d\n",
784 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return;
786 }
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /* tell the tty driver that something has changed */
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100789 if (edge_port->open)
790 tty_port_tty_wakeup(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /* we have completed the command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100793 edge_port->commandPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 wake_up(&edge_port->wait_command);
795}
796
797
798/*****************************************************************************
799 * Driver tty interface functions
800 *****************************************************************************/
801
802/*****************************************************************************
803 * SerialOpen
804 * this function is called by the tty driver when a port is opened
805 * If successful, we return 0
806 * Otherwise we return a negative error number.
807 *****************************************************************************/
Alan Coxa509a7e2009-09-19 13:13:26 -0700808static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700811 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 struct usb_serial *serial;
813 struct edgeport_serial *edge_serial;
814 int response;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (edge_port == NULL)
817 return -ENODEV;
818
Alan Cox03f0dbf2008-07-22 11:16:34 +0100819 /* see if we've set up our endpoint info yet (can't set it up
820 in edge_startup as the structures were not set up at that time.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 serial = port->serial;
822 edge_serial = usb_get_serial_data(serial);
Alan Cox95da3102008-07-22 11:09:07 +0100823 if (edge_serial == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (edge_serial->interrupt_in_buffer == NULL) {
826 struct usb_serial_port *port0 = serial->port[0];
Alan Cox03f0dbf2008-07-22 11:16:34 +0100827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100829 edge_serial->interrupt_in_buffer =
830 port0->interrupt_in_buffer;
831 edge_serial->interrupt_in_endpoint =
832 port0->interrupt_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 edge_serial->interrupt_read_urb = port0->interrupt_in_urb;
834 edge_serial->bulk_in_buffer = port0->bulk_in_buffer;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100835 edge_serial->bulk_in_endpoint =
836 port0->bulk_in_endpointAddress;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 edge_serial->read_urb = port0->read_urb;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100838 edge_serial->bulk_out_endpoint =
839 port0->bulk_out_endpointAddress;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* set up our interrupt urb */
842 usb_fill_int_urb(edge_serial->interrupt_read_urb,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100843 serial->dev,
844 usb_rcvintpipe(serial->dev,
845 port0->interrupt_in_endpointAddress),
846 port0->interrupt_in_buffer,
847 edge_serial->interrupt_read_urb->transfer_buffer_length,
848 edge_interrupt_callback, edge_serial,
849 edge_serial->interrupt_read_urb->interval);
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* set up our bulk in urb */
852 usb_fill_bulk_urb(edge_serial->read_urb, serial->dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100853 usb_rcvbulkpipe(serial->dev,
854 port0->bulk_in_endpointAddress),
855 port0->bulk_in_buffer,
856 edge_serial->read_urb->transfer_buffer_length,
857 edge_bulk_in_callback, edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100858 edge_serial->read_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 /* start interrupt read for this edgeport
Alan Cox03f0dbf2008-07-22 11:16:34 +0100861 * this interrupt will continue as long
862 * as the edgeport is connected */
863 response = usb_submit_urb(edge_serial->interrupt_read_urb,
864 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700866 dev_err(dev, "%s - Error %d submitting control urb\n",
867 __func__, response);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 }
Alan Cox03f0dbf2008-07-22 11:16:34 +0100870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /* initialize our wait queues */
872 init_waitqueue_head(&edge_port->wait_open);
873 init_waitqueue_head(&edge_port->wait_chase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 init_waitqueue_head(&edge_port->wait_command);
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /* initialize our port settings */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100877 edge_port->txCredits = 0; /* Can't send any data yet */
878 /* Must always set this bit to enable ints! */
879 edge_port->shadowMCR = MCR_MASTER_IE;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100880 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 /* send a open port command */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100883 edge_port->openPending = true;
884 edge_port->open = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100885 response = send_iosp_ext_cmd(edge_port, IOSP_CMD_OPEN_PORT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (response < 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700888 dev_err(dev, "%s - error sending open port command\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100889 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return -ENODEV;
891 }
892
893 /* now wait for the port to be completely opened */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100894 wait_event_timeout(edge_port->wait_open, !edge_port->openPending,
895 OPEN_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100897 if (!edge_port->open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 /* open timed out */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700899 dev_dbg(dev, "%s - open timedout\n", __func__);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100900 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return -ENODEV;
902 }
903
904 /* create the txfifo */
905 edge_port->txfifo.head = 0;
906 edge_port->txfifo.tail = 0;
907 edge_port->txfifo.count = 0;
908 edge_port->txfifo.size = edge_port->maxTxCredits;
Alan Cox03f0dbf2008-07-22 11:16:34 +0100909 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 if (!edge_port->txfifo.fifo) {
Alan Cox335f8512009-06-11 12:26:29 +0100912 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return -ENOMEM;
914 }
915
916 /* Allocate a URB for the write */
Alan Cox03f0dbf2008-07-22 11:16:34 +0100917 edge_port->write_urb = usb_alloc_urb(0, GFP_KERNEL);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100918 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (!edge_port->write_urb) {
Alan Cox335f8512009-06-11 12:26:29 +0100921 edge_close(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return -ENOMEM;
923 }
924
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700925 dev_dbg(dev, "%s - Initialize TX fifo to %d bytes\n",
926 __func__, edge_port->maxTxCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 return 0;
929}
930
931
932/************************************************************************
933 *
934 * block_until_chase_response
935 *
936 * This function will block the close until one of the following:
937 * 1. Response to our Chase comes from Edgeport
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800938 * 2. A timeout of 10 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 * (1K of Edgeport data @ 2400 baud ==> 4 sec to empty)
940 *
941 ************************************************************************/
942static void block_until_chase_response(struct edgeport_port *edge_port)
943{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700944 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 DEFINE_WAIT(wait);
946 __u16 lastCredits;
947 int timeout = 1*HZ;
948 int loop = 10;
949
950 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100951 /* Save Last credits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 lastCredits = edge_port->txCredits;
953
Alan Cox03f0dbf2008-07-22 11:16:34 +0100954 /* Did we get our Chase response */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100955 if (!edge_port->chaseResponsePending) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700956 dev_dbg(dev, "%s - Got Chase Response\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Alan Cox03f0dbf2008-07-22 11:16:34 +0100958 /* did we get all of our credit back? */
959 if (edge_port->txCredits == edge_port->maxTxCredits) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700960 dev_dbg(dev, "%s - Got all credits\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return;
962 }
963 }
964
Alan Cox03f0dbf2008-07-22 11:16:34 +0100965 /* Block the thread for a while */
966 prepare_to_wait(&edge_port->wait_chase, &wait,
967 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 schedule_timeout(timeout);
969 finish_wait(&edge_port->wait_chase, &wait);
970
971 if (lastCredits == edge_port->txCredits) {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100972 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 loop--;
974 if (loop == 0) {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +0100975 edge_port->chaseResponsePending = false;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700976 dev_dbg(dev, "%s - Chase TIMEOUT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return;
978 }
979 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +0100980 /* Reset timeout value back to 10 seconds */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -0700981 dev_dbg(dev, "%s - Last %d, Current %d\n", __func__,
Alan Cox03f0dbf2008-07-22 11:16:34 +0100982 lastCredits, edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 loop = 10;
984 }
985 }
986}
987
988
989/************************************************************************
990 *
991 * block_until_tx_empty
992 *
993 * This function will block the close until one of the following:
994 * 1. TX count are 0
995 * 2. The edgeport has stopped
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800996 * 3. A timeout of 3 seconds without activity has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 *
998 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +0100999static void block_until_tx_empty(struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001001 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 DEFINE_WAIT(wait);
1003 struct TxFifo *fifo = &edge_port->txfifo;
1004 __u32 lastCount;
1005 int timeout = HZ/10;
1006 int loop = 30;
1007
1008 while (1) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001009 /* Save Last count */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 lastCount = fifo->count;
1011
Alan Cox03f0dbf2008-07-22 11:16:34 +01001012 /* Is the Edgeport Buffer empty? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (lastCount == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001014 dev_dbg(dev, "%s - TX Buffer Empty\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return;
1016 }
1017
Alan Cox03f0dbf2008-07-22 11:16:34 +01001018 /* Block the thread for a while */
1019 prepare_to_wait(&edge_port->wait_chase, &wait,
1020 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 schedule_timeout(timeout);
1022 finish_wait(&edge_port->wait_chase, &wait);
1023
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001024 dev_dbg(dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (lastCount == fifo->count) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001027 /* No activity.. count down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 loop--;
1029 if (loop == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001030 dev_dbg(dev, "%s - TIMEOUT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return;
1032 }
1033 } else {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001034 /* Reset timeout value back to seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 loop = 30;
1036 }
1037 }
1038}
1039
1040
1041/*****************************************************************************
1042 * edge_close
1043 * this function is called by the tty driver when a port is closed
1044 *****************************************************************************/
Alan Cox335f8512009-06-11 12:26:29 +01001045static void edge_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 struct edgeport_serial *edge_serial;
1048 struct edgeport_port *edge_port;
1049 int status;
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 edge_serial = usb_get_serial_data(port->serial);
1052 edge_port = usb_get_serial_port_data(port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001053 if (edge_serial == NULL || edge_port == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001055
1056 /* block until tx is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 block_until_tx_empty(edge_port);
1058
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001059 edge_port->closePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001061 if (!edge_serial->is_epic ||
1062 edge_serial->epic_descriptor.Supports.IOSPChase) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001063 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001064 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001066 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CHASE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001067 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
1068 if (status == 0)
1069 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001070 block_until_chase_response(edge_port);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001071 else
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001072 edge_port->chaseResponsePending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001075 if (!edge_serial->is_epic ||
1076 edge_serial->epic_descriptor.Supports.IOSPClose) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001077 /* close the port */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001078 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CLOSE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001079 send_iosp_ext_cmd(edge_port, IOSP_CMD_CLOSE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Alan Cox03f0dbf2008-07-22 11:16:34 +01001082 /* port->close = true; */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001083 edge_port->closePending = false;
1084 edge_port->open = false;
1085 edge_port->openPending = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Mariusz Kozlowski9a25f442006-11-08 15:36:29 +01001087 usb_kill_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 if (edge_port->write_urb) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001090 /* if this urb had a transfer buffer already
1091 (old transfer) free it */
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001092 kfree(edge_port->write_urb->transfer_buffer);
1093 usb_free_urb(edge_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 edge_port->write_urb = NULL;
1095 }
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001096 kfree(edge_port->txfifo.fifo);
1097 edge_port->txfifo.fifo = NULL;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001098}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100/*****************************************************************************
1101 * SerialWrite
Alan Cox03f0dbf2008-07-22 11:16:34 +01001102 * this function is called by the tty driver when data should be written
1103 * to the port.
1104 * If successful, we return the number of bytes written, otherwise we
1105 * return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001107static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
1108 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1111 struct TxFifo *fifo;
1112 int copySize;
1113 int bytesleft;
1114 int firsthalf;
1115 int secondhalf;
1116 unsigned long flags;
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (edge_port == NULL)
1119 return -ENODEV;
1120
Alan Cox03f0dbf2008-07-22 11:16:34 +01001121 /* get a pointer to the Tx fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 fifo = &edge_port->txfifo;
1123
1124 spin_lock_irqsave(&edge_port->ep_lock, flags);
1125
Alan Cox03f0dbf2008-07-22 11:16:34 +01001126 /* calculate number of bytes to put in fifo */
1127 copySize = min((unsigned int)count,
1128 (edge_port->txCredits - fifo->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001130 dev_dbg(&port->dev, "%s of %d byte(s) Fifo room %d -- will copy %d bytes\n",
1131 __func__, count, edge_port->txCredits - fifo->count, copySize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Alan Cox03f0dbf2008-07-22 11:16:34 +01001133 /* catch writes of 0 bytes which the tty driver likes to give us,
1134 and when txCredits is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (copySize == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001136 dev_dbg(&port->dev, "%s - copySize = Zero\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 goto finish_write;
1138 }
1139
Alan Cox03f0dbf2008-07-22 11:16:34 +01001140 /* queue the data
1141 * since we can never overflow the buffer we do not have to check for a
1142 * full condition
1143 *
1144 * the copy is done is two parts -- first fill to the end of the buffer
1145 * then copy the reset from the start of the buffer
1146 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 bytesleft = fifo->size - fifo->head;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001148 firsthalf = min(bytesleft, copySize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001149 dev_dbg(&port->dev, "%s - copy %d bytes of %d into fifo \n", __func__,
1150 firsthalf, bytesleft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 /* now copy our data */
1153 memcpy(&fifo->fifo[fifo->head], data, firsthalf);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001154 usb_serial_debug_data(&port->dev, __func__, firsthalf, &fifo->fifo[fifo->head]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Alan Cox03f0dbf2008-07-22 11:16:34 +01001156 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 fifo->head += firsthalf;
1158 fifo->count += firsthalf;
1159
Alan Cox03f0dbf2008-07-22 11:16:34 +01001160 /* wrap the index */
1161 if (fifo->head == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 fifo->head = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 secondhalf = copySize-firsthalf;
1165
1166 if (secondhalf) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001167 dev_dbg(&port->dev, "%s - copy rest of data %d\n", __func__, secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 memcpy(&fifo->fifo[fifo->head], &data[firsthalf], secondhalf);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001169 usb_serial_debug_data(&port->dev, __func__, secondhalf, &fifo->fifo[fifo->head]);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001170 /* update the index and size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 fifo->count += secondhalf;
1172 fifo->head += secondhalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001173 /* No need to check for wrap since we can not get to end of
1174 * the fifo in this part
1175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
1178finish_write:
1179 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1180
Alan Cox03f0dbf2008-07-22 11:16:34 +01001181 send_more_port_data((struct edgeport_serial *)
1182 usb_get_serial_data(port->serial), edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001184 dev_dbg(&port->dev, "%s wrote %d byte(s) TxCredits %d, Fifo %d\n",
1185 __func__, copySize, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Alan Cox03f0dbf2008-07-22 11:16:34 +01001187 return copySize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
1190
1191/************************************************************************
1192 *
1193 * send_more_port_data()
1194 *
1195 * This routine attempts to write additional UART transmit data
1196 * to a port over the USB bulk pipe. It is called (1) when new
1197 * data has been written to a port's TxBuffer from higher layers
1198 * (2) when the peripheral sends us additional TxCredits indicating
1199 * that it can accept more Tx data for a given port; and (3) when
1200 * a bulk write completes successfully and we want to see if we
1201 * can transmit more.
1202 *
1203 ************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001204static void send_more_port_data(struct edgeport_serial *edge_serial,
1205 struct edgeport_port *edge_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
1207 struct TxFifo *fifo = &edge_port->txfifo;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001208 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 struct urb *urb;
1210 unsigned char *buffer;
1211 int status;
1212 int count;
1213 int bytesleft;
1214 int firsthalf;
1215 int secondhalf;
1216 unsigned long flags;
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 spin_lock_irqsave(&edge_port->ep_lock, flags);
1219
1220 if (edge_port->write_in_progress ||
1221 !edge_port->open ||
1222 (fifo->count == 0)) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001223 dev_dbg(dev, "%s EXIT - fifo %d, PendingWrite = %d\n",
1224 __func__, fifo->count, edge_port->write_in_progress);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 goto exit_send;
1226 }
1227
Alan Cox03f0dbf2008-07-22 11:16:34 +01001228 /* since the amount of data in the fifo will always fit into the
1229 * edgeport buffer we do not need to check the write length
1230 *
1231 * Do we have enough credits for this port to make it worthwhile
1232 * to bother queueing a write. If it's too small, say a few bytes,
1233 * it's better to wait for more credits so we can do a larger write.
1234 */
1235 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 -07001236 dev_dbg(dev, "%s Not enough credit - fifo %d TxCredit %d\n",
1237 __func__, fifo->count, edge_port->txCredits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 goto exit_send;
1239 }
1240
Alan Cox03f0dbf2008-07-22 11:16:34 +01001241 /* lock this write */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001242 edge_port->write_in_progress = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Alan Cox03f0dbf2008-07-22 11:16:34 +01001244 /* get a pointer to the write_urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 urb = edge_port->write_urb;
1246
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07001247 /* make sure transfer buffer is freed */
1248 kfree(urb->transfer_buffer);
1249 urb->transfer_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Alan Cox03f0dbf2008-07-22 11:16:34 +01001251 /* build the data header for the buffer and port that we are about
1252 to send out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 count = fifo->count;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001254 buffer = kmalloc(count+2, GFP_ATOMIC);
Johan Hovold10c642d2013-12-29 19:22:56 +01001255 if (!buffer) {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001256 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 goto exit_send;
1258 }
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001259 buffer[0] = IOSP_BUILD_DATA_HDR1(edge_port->port->port_number, count);
1260 buffer[1] = IOSP_BUILD_DATA_HDR2(edge_port->port->port_number, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 /* now copy our data */
1263 bytesleft = fifo->size - fifo->tail;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001264 firsthalf = min(bytesleft, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 memcpy(&buffer[2], &fifo->fifo[fifo->tail], firsthalf);
1266 fifo->tail += firsthalf;
1267 fifo->count -= firsthalf;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001268 if (fifo->tail == fifo->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 fifo->tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 secondhalf = count-firsthalf;
1272 if (secondhalf) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001273 memcpy(&buffer[2+firsthalf], &fifo->fifo[fifo->tail],
1274 secondhalf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 fifo->tail += secondhalf;
1276 fifo->count -= secondhalf;
1277 }
1278
1279 if (count)
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001280 usb_serial_debug_data(&edge_port->port->dev, __func__, count, &buffer[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /* fill up the urb with all of our data and submit it */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001283 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
1284 usb_sndbulkpipe(edge_serial->serial->dev,
1285 edge_serial->bulk_out_endpoint),
1286 buffer, count+2,
1287 edge_bulk_out_data_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 /* decrement the number of credits we have by the number we just sent */
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 status = usb_submit_urb(urb, GFP_ATOMIC);
1294 if (status) {
1295 /* something went wrong */
Johan Hovold22a416c2012-02-10 13:20:51 +01001296 dev_err_console(edge_port->port,
Alan Cox03f0dbf2008-07-22 11:16:34 +01001297 "%s - usb_submit_urb(write bulk) failed, status = %d, data lost\n",
1298 __func__, status);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001299 edge_port->write_in_progress = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 /* revert the credits as something bad happened. */
1302 edge_port->txCredits += count;
Johan Hovoldd36a7712013-03-21 12:37:07 +01001303 edge_port->port->icount.tx -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001305 dev_dbg(dev, "%s wrote %d byte(s) TxCredit %d, Fifo %d\n",
1306 __func__, count, edge_port->txCredits, fifo->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308exit_send:
1309 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1310}
1311
1312
1313/*****************************************************************************
1314 * edge_write_room
Alan Cox03f0dbf2008-07-22 11:16:34 +01001315 * this function is called by the tty driver when it wants to know how
1316 * many bytes of data we can accept for a specific port. If successful,
1317 * we return the amount of room that we have for this port (the txCredits)
1318 * otherwise we return a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001320static int edge_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Alan Cox95da3102008-07-22 11:09:07 +01001322 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1324 int room;
1325 unsigned long flags;
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001328 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001329 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001333 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
Alan Cox03f0dbf2008-07-22 11:16:34 +01001337 /* total of both buffers is still txCredit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 spin_lock_irqsave(&edge_port->ep_lock, flags);
1339 room = edge_port->txCredits - edge_port->txfifo.count;
1340 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1341
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001342 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return room;
1344}
1345
1346
1347/*****************************************************************************
1348 * edge_chars_in_buffer
Alan Cox03f0dbf2008-07-22 11:16:34 +01001349 * this function is called by the tty driver when it wants to know how
1350 * many bytes of data we currently have outstanding in the port (data that
1351 * has been written, but hasn't made it out the port yet)
1352 * If successful, we return the number of bytes left to be written in the
1353 * system,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 * Otherwise we return a negative error number.
1355 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001356static int edge_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Alan Cox95da3102008-07-22 11:09:07 +01001358 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1360 int num_chars;
1361 unsigned long flags;
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (edge_port == NULL)
Alan Coxd76f2f42008-07-22 11:16:42 +01001364 return 0;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001365 if (edge_port->closePending)
Alan Coxd76f2f42008-07-22 11:16:42 +01001366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001369 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Alan Coxd76f2f42008-07-22 11:16:42 +01001370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
1372
1373 spin_lock_irqsave(&edge_port->ep_lock, flags);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001374 num_chars = edge_port->maxTxCredits - edge_port->txCredits +
1375 edge_port->txfifo.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1377 if (num_chars) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001378 dev_dbg(&port->dev, "%s - returns %d\n", __func__, num_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380
1381 return num_chars;
1382}
1383
1384
1385/*****************************************************************************
1386 * SerialThrottle
1387 * this function is called by the tty driver when it wants to stop the data
1388 * being read from the port.
1389 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001390static void edge_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Alan Cox95da3102008-07-22 11:09:07 +01001392 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 int status;
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (edge_port == NULL)
1397 return;
1398
1399 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001400 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return;
1402 }
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /* if we are implementing XON/XOFF, send the stop character */
1405 if (I_IXOFF(tty)) {
1406 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001407 status = edge_write(tty, port, &stop_char, 1);
1408 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
1411
1412 /* if we are implementing RTS/CTS, toggle that line */
Peter Hurley9db276f2016-01-10 20:36:15 -08001413 if (C_CRTSCTS(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 edge_port->shadowMCR &= ~MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001415 status = send_cmd_write_uart_register(edge_port, MCR,
1416 edge_port->shadowMCR);
1417 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
1422
1423/*****************************************************************************
1424 * edge_unthrottle
Alan Cox03f0dbf2008-07-22 11:16:34 +01001425 * this function is called by the tty driver when it wants to resume the
1426 * data being read from the port (called after SerialThrottle is called)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001428static void edge_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Alan Cox95da3102008-07-22 11:09:07 +01001430 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 int status;
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 if (edge_port == NULL)
1435 return;
1436
1437 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001438 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return;
1440 }
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 /* if we are implementing XON/XOFF, send the start character */
1443 if (I_IXOFF(tty)) {
1444 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001445 status = edge_write(tty, port, &start_char, 1);
1446 if (status <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 /* if we are implementing RTS/CTS, toggle that line */
Peter Hurley9db276f2016-01-10 20:36:15 -08001450 if (C_CRTSCTS(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 edge_port->shadowMCR |= MCR_RTS;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001452 send_cmd_write_uart_register(edge_port, MCR,
1453 edge_port->shadowMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
1457
1458/*****************************************************************************
1459 * SerialSetTermios
Alan Cox03f0dbf2008-07-22 11:16:34 +01001460 * this function is called by the tty driver when it wants to change
1461 * the termios structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001463static void edge_set_termios(struct tty_struct *tty,
1464 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
1466 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 unsigned int cflag;
1468
Alan Coxadc8d742012-07-14 15:31:47 +01001469 cflag = tty->termios.c_cflag;
Linus Torvaldsd9a80742012-10-01 13:23:01 -07001470 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 -07001471 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 -07001472
1473 if (edge_port == NULL)
1474 return;
1475
1476 if (!edge_port->open) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001477 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return;
1479 }
1480
1481 /* change the port settings to the new ones specified */
Alan Cox95da3102008-07-22 11:09:07 +01001482 change_port_settings(tty, edge_port, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485
1486/*****************************************************************************
1487 * get_lsr_info - get line status register info
1488 *
1489 * Purpose: Let user call ioctl() to get info when the UART physically
1490 * is emptied. On bus types like RS485, the transmitter must
1491 * release the bus after transmitting. This must be done when
1492 * the transmit shift register is empty, not be done when the
1493 * transmit holding register is empty. This functionality
Alan Cox03f0dbf2008-07-22 11:16:34 +01001494 * allows an RS485 driver to be written in user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001496static int get_lsr_info(struct edgeport_port *edge_port,
1497 unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 unsigned int result = 0;
1500 unsigned long flags;
1501
1502 spin_lock_irqsave(&edge_port->ep_lock, flags);
1503 if (edge_port->maxTxCredits == edge_port->txCredits &&
1504 edge_port->txfifo.count == 0) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001505 dev_dbg(&edge_port->port->dev, "%s -- Empty\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 result = TIOCSER_TEMT;
1507 }
1508 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
1509
1510 if (copy_to_user(value, &result, sizeof(int)))
1511 return -EFAULT;
1512 return 0;
1513}
1514
Alan Cox20b9d172011-02-14 16:26:50 +00001515static int edge_tiocmset(struct tty_struct *tty,
Alan Cox03f0dbf2008-07-22 11:16:34 +01001516 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Alan Cox95da3102008-07-22 11:09:07 +01001518 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1520 unsigned int mcr;
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 mcr = edge_port->shadowMCR;
1523 if (set & TIOCM_RTS)
1524 mcr |= MCR_RTS;
1525 if (set & TIOCM_DTR)
1526 mcr |= MCR_DTR;
1527 if (set & TIOCM_LOOP)
1528 mcr |= MCR_LOOPBACK;
1529
1530 if (clear & TIOCM_RTS)
1531 mcr &= ~MCR_RTS;
1532 if (clear & TIOCM_DTR)
1533 mcr &= ~MCR_DTR;
1534 if (clear & TIOCM_LOOP)
1535 mcr &= ~MCR_LOOPBACK;
1536
1537 edge_port->shadowMCR = mcr;
1538
1539 send_cmd_write_uart_register(edge_port, MCR, edge_port->shadowMCR);
1540
1541 return 0;
1542}
1543
Alan Cox60b33c12011-02-14 16:26:14 +00001544static int edge_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Alan Cox95da3102008-07-22 11:09:07 +01001546 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1548 unsigned int result = 0;
1549 unsigned int msr;
1550 unsigned int mcr;
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 msr = edge_port->shadowMSR;
1553 mcr = edge_port->shadowMCR;
1554 result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
1555 | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
1556 | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
1557 | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
1558 | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
1559 | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 return result;
1562}
1563
Alan Cox03f0dbf2008-07-22 11:16:34 +01001564static int get_serial_info(struct edgeport_port *edge_port,
1565 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
1567 struct serial_struct tmp;
1568
1569 if (!retinfo)
1570 return -EFAULT;
1571
1572 memset(&tmp, 0, sizeof(tmp));
1573
1574 tmp.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001575 tmp.line = edge_port->port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001576 tmp.port = edge_port->port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 tmp.irq = 0;
1578 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
1579 tmp.xmit_fifo_size = edge_port->maxTxCredits;
1580 tmp.baud_base = 9600;
1581 tmp.close_delay = 5*HZ;
1582 tmp.closing_wait = 30*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1585 return -EFAULT;
1586 return 0;
1587}
1588
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590/*****************************************************************************
1591 * SerialIoctl
1592 * this function handles any ioctl calls to the driver
1593 *****************************************************************************/
Alan Cox00a0d0d2011-02-14 16:27:06 +00001594static int edge_ioctl(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +01001595 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Alan Cox95da3102008-07-22 11:09:07 +01001597 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 DEFINE_WAIT(wait);
1599 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 switch (cmd) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001602 case TIOCSERGETLSR:
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001603 dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001604 return get_lsr_info(edge_port, (unsigned int __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Alan Cox03f0dbf2008-07-22 11:16:34 +01001606 case TIOCGSERIAL:
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001607 dev_dbg(&port->dev, "%s TIOCGSERIAL\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001608 return get_serial_info(edge_port, (struct serial_struct __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 return -ENOIOCTLCMD;
1611}
1612
1613
1614/*****************************************************************************
1615 * SerialBreak
1616 * this function sends a break to the port
1617 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001618static void edge_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Alan Cox95da3102008-07-22 11:09:07 +01001620 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001622 struct edgeport_serial *edge_serial = usb_get_serial_data(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 int status;
1624
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001625 if (!edge_serial->is_epic ||
1626 edge_serial->epic_descriptor.Supports.IOSPChase) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001627 /* flush and chase */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001628 edge_port->chaseResponsePending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001630 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CHASE_PORT\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001631 status = send_iosp_ext_cmd(edge_port, IOSP_CMD_CHASE_PORT, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001632 if (status == 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001633 /* block until chase finished */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001634 block_until_chase_response(edge_port);
1635 } else {
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001636 edge_port->chaseResponsePending = false;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
Geyslan G. Bem232dce82015-12-11 06:46:41 -03001640 if (!edge_serial->is_epic ||
1641 edge_serial->epic_descriptor.Supports.IOSPSetClrBreak) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001642 if (break_state == -1) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001643 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_SET_BREAK\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001644 status = send_iosp_ext_cmd(edge_port,
1645 IOSP_CMD_SET_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001646 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001647 dev_dbg(&port->dev, "%s - Sending IOSP_CMD_CLEAR_BREAK\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001648 status = send_iosp_ext_cmd(edge_port,
1649 IOSP_CMD_CLEAR_BREAK, 0);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08001650 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01001651 if (status)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001652 dev_dbg(&port->dev, "%s - error sending break set/clear command.\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01001653 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
1657
1658/*****************************************************************************
1659 * process_rcvd_data
1660 * this function handles the data received on the bulk in pipe.
1661 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001662static void process_rcvd_data(struct edgeport_serial *edge_serial,
1663 unsigned char *buffer, __u16 bufferLength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001665 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 struct usb_serial_port *port;
1667 struct edgeport_port *edge_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 __u16 lastBufferLength;
1669 __u16 rxLen;
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 lastBufferLength = bufferLength + 1;
1672
1673 while (bufferLength > 0) {
1674 /* failsafe incase we get a message that we don't understand */
1675 if (lastBufferLength == bufferLength) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001676 dev_dbg(dev, "%s - stuck in loop, exiting it.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 break;
1678 }
1679 lastBufferLength = bufferLength;
1680
1681 switch (edge_serial->rxState) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001682 case EXPECT_HDR1:
1683 edge_serial->rxHeader1 = *buffer;
1684 ++buffer;
1685 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Alan Cox03f0dbf2008-07-22 11:16:34 +01001687 if (bufferLength == 0) {
1688 edge_serial->rxState = EXPECT_HDR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001690 }
1691 /* otherwise, drop on through */
1692 case EXPECT_HDR2:
1693 edge_serial->rxHeader2 = *buffer;
1694 ++buffer;
1695 --bufferLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001697 dev_dbg(dev, "%s - Hdr1=%02X Hdr2=%02X\n", __func__,
1698 edge_serial->rxHeader1, edge_serial->rxHeader2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001699 /* Process depending on whether this header is
1700 * data or status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Alan Cox03f0dbf2008-07-22 11:16:34 +01001702 if (IS_CMD_STAT_HDR(edge_serial->rxHeader1)) {
1703 /* Decode this status header and go to
1704 * EXPECT_HDR1 (if we can process the status
1705 * with only 2 bytes), or go to EXPECT_HDR3 to
1706 * get the third byte. */
1707 edge_serial->rxPort =
1708 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1709 edge_serial->rxStatusCode =
1710 IOSP_GET_STATUS_CODE(
1711 edge_serial->rxHeader1);
1712
1713 if (!IOSP_STATUS_IS_2BYTE(
1714 edge_serial->rxStatusCode)) {
1715 /* This status needs additional bytes.
1716 * Save what we have and then wait for
1717 * more data.
1718 */
1719 edge_serial->rxStatusParam
1720 = edge_serial->rxHeader2;
1721 edge_serial->rxState = EXPECT_HDR3;
1722 break;
1723 }
1724 /* We have all the header bytes, process the
1725 status now */
1726 process_rcvd_status(edge_serial,
1727 edge_serial->rxHeader2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 edge_serial->rxState = EXPECT_HDR1;
1729 break;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001730 } else {
1731 edge_serial->rxPort =
1732 IOSP_GET_HDR_PORT(edge_serial->rxHeader1);
1733 edge_serial->rxBytesRemaining =
1734 IOSP_GET_HDR_DATA_LEN(
1735 edge_serial->rxHeader1,
1736 edge_serial->rxHeader2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001737 dev_dbg(dev, "%s - Data for Port %u Len %u\n",
1738 __func__,
1739 edge_serial->rxPort,
1740 edge_serial->rxBytesRemaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Alan Cox03f0dbf2008-07-22 11:16:34 +01001742 /* ASSERT(DevExt->RxPort < DevExt->NumPorts);
1743 * ASSERT(DevExt->RxBytesRemaining <
1744 * IOSP_MAX_DATA_LENGTH);
1745 */
1746
1747 if (bufferLength == 0) {
1748 edge_serial->rxState = EXPECT_DATA;
1749 break;
1750 }
1751 /* Else, drop through */
1752 }
1753 case EXPECT_DATA: /* Expect data */
1754 if (bufferLength < edge_serial->rxBytesRemaining) {
1755 rxLen = bufferLength;
1756 /* Expect data to start next buffer */
1757 edge_serial->rxState = EXPECT_DATA;
1758 } else {
1759 /* BufLen >= RxBytesRemaining */
1760 rxLen = edge_serial->rxBytesRemaining;
1761 /* Start another header next time */
1762 edge_serial->rxState = EXPECT_HDR1;
1763 }
1764
1765 bufferLength -= rxLen;
1766 edge_serial->rxBytesRemaining -= rxLen;
1767
1768 /* spit this data back into the tty driver if this
1769 port is open */
1770 if (rxLen) {
1771 port = edge_serial->serial->port[
1772 edge_serial->rxPort];
1773 edge_port = usb_get_serial_port_data(port);
1774 if (edge_port->open) {
Jiri Slaby2e124b42013-01-03 15:53:06 +01001775 dev_dbg(dev, "%s - Sending %d bytes to TTY for port %d\n",
1776 __func__, rxLen,
1777 edge_serial->rxPort);
1778 edge_tty_recv(edge_port->port, buffer,
1779 rxLen);
Johan Hovoldd36a7712013-03-21 12:37:07 +01001780 edge_port->port->icount.rx += rxLen;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001781 }
1782 buffer += rxLen;
1783 }
1784 break;
1785
1786 case EXPECT_HDR3: /* Expect 3rd byte of status header */
1787 edge_serial->rxHeader3 = *buffer;
1788 ++buffer;
1789 --bufferLength;
1790
1791 /* We have all the header bytes, process the
1792 status now */
1793 process_rcvd_status(edge_serial,
1794 edge_serial->rxStatusParam,
1795 edge_serial->rxHeader3);
1796 edge_serial->rxState = EXPECT_HDR1;
1797 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799 }
1800}
1801
1802
1803/*****************************************************************************
1804 * process_rcvd_status
Alan Cox03f0dbf2008-07-22 11:16:34 +01001805 * this function handles the any status messages received on the
1806 * bulk in pipe.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001808static void process_rcvd_status(struct edgeport_serial *edge_serial,
1809 __u8 byte2, __u8 byte3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
1811 struct usb_serial_port *port;
1812 struct edgeport_port *edge_port;
Alan Cox4a90f092008-10-13 10:39:46 +01001813 struct tty_struct *tty;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001814 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 __u8 code = edge_serial->rxStatusCode;
1816
1817 /* switch the port pointer to the one being currently talked about */
1818 port = edge_serial->serial->port[edge_serial->rxPort];
1819 edge_port = usb_get_serial_port_data(port);
1820 if (edge_port == NULL) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001821 dev_err(&edge_serial->serial->dev->dev,
1822 "%s - edge_port == NULL for port %d\n",
1823 __func__, edge_serial->rxPort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return;
1825 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001826 dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 if (code == IOSP_EXT_STATUS) {
1829 switch (byte2) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001830 case IOSP_EXT_STATUS_CHASE_RSP:
1831 /* we want to do EXT status regardless of port
1832 * open/closed */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001833 dev_dbg(dev, "%s - Port %u EXT CHASE_RSP Data = %02x\n",
1834 __func__, edge_serial->rxPort, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001835 /* Currently, the only EXT_STATUS is Chase, so process
1836 * here instead of one more call to one more subroutine
1837 * If/when more EXT_STATUS, there'll be more work to do
1838 * Also, we currently clear flag and close the port
1839 * regardless of content of above's Byte3.
1840 * We could choose to do something else when Byte3 says
1841 * Timeout on Chase from Edgeport, like wait longer in
1842 * block_until_chase_response, but for now we don't.
1843 */
1844 edge_port->chaseResponsePending = false;
1845 wake_up(&edge_port->wait_chase);
1846 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Alan Cox03f0dbf2008-07-22 11:16:34 +01001848 case IOSP_EXT_STATUS_RX_CHECK_RSP:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001849 dev_dbg(dev, "%s ========== Port %u CHECK_RSP Sequence = %02x =============\n",
1850 __func__, edge_serial->rxPort, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001851 /* Port->RxCheckRsp = true; */
1852 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854 }
1855
1856 if (code == IOSP_STATUS_OPEN_RSP) {
1857 edge_port->txCredits = GET_TX_BUFFER_SIZE(byte3);
1858 edge_port->maxTxCredits = edge_port->txCredits;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001859 dev_dbg(dev, "%s - Port %u Open Response Initial MSR = %02x TxBufferSize = %d\n",
1860 __func__, edge_serial->rxPort, byte2, edge_port->txCredits);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001861 handle_new_msr(edge_port, byte2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Alan Cox03f0dbf2008-07-22 11:16:34 +01001863 /* send the current line settings to the port so we are
1864 in sync with any further termios calls */
Alan Cox4a90f092008-10-13 10:39:46 +01001865 tty = tty_port_tty_get(&edge_port->port->port);
1866 if (tty) {
1867 change_port_settings(tty,
Alan Coxadc8d742012-07-14 15:31:47 +01001868 edge_port, &tty->termios);
Alan Cox4a90f092008-10-13 10:39:46 +01001869 tty_kref_put(tty);
1870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 /* we have completed the open */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01001873 edge_port->openPending = false;
1874 edge_port->open = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 wake_up(&edge_port->wait_open);
1876 return;
1877 }
1878
Alan Cox03f0dbf2008-07-22 11:16:34 +01001879 /* If port is closed, silently discard all rcvd status. We can
1880 * have cases where buffered status is received AFTER the close
1881 * port command is sent to the Edgeport.
1882 */
1883 if (!edge_port->open || edge_port->closePending)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 switch (code) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001887 /* Not currently sent by Edgeport */
1888 case IOSP_STATUS_LSR:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001889 dev_dbg(dev, "%s - Port %u LSR Status = %02x\n",
1890 __func__, edge_serial->rxPort, byte2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001891 handle_new_lsr(edge_port, false, byte2, 0);
1892 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Alan Cox03f0dbf2008-07-22 11:16:34 +01001894 case IOSP_STATUS_LSR_DATA:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001895 dev_dbg(dev, "%s - Port %u LSR Status = %02x, Data = %02x\n",
1896 __func__, edge_serial->rxPort, byte2, byte3);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001897 /* byte2 is LSR Register */
1898 /* byte3 is broken data byte */
1899 handle_new_lsr(edge_port, true, byte2, byte3);
1900 break;
1901 /*
1902 * case IOSP_EXT_4_STATUS:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001903 * dev_dbg(dev, "%s - Port %u LSR Status = %02x Data = %02x\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01001904 * __func__, edge_serial->rxPort, byte2, byte3);
1905 * break;
1906 */
1907 case IOSP_STATUS_MSR:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001908 dev_dbg(dev, "%s - Port %u MSR Status = %02x\n",
1909 __func__, edge_serial->rxPort, byte2);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001910 /*
1911 * Process this new modem status and generate appropriate
1912 * events, etc, based on the new status. This routine
1913 * also saves the MSR in Port->ShadowMsr.
1914 */
1915 handle_new_msr(edge_port, byte2);
1916 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Alan Cox03f0dbf2008-07-22 11:16:34 +01001918 default:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07001919 dev_dbg(dev, "%s - Unrecognized IOSP status code %u\n", __func__, code);
Alan Cox03f0dbf2008-07-22 11:16:34 +01001920 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923
1924
1925/*****************************************************************************
1926 * edge_tty_recv
1927 * this function passes data on to the tty flip buffer
1928 *****************************************************************************/
Jiri Slaby2e124b42013-01-03 15:53:06 +01001929static void edge_tty_recv(struct usb_serial_port *port, unsigned char *data,
1930 int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
1932 int cnt;
1933
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001934 cnt = tty_insert_flip_string(&port->port, data, length);
Alan Coxa108bfc2010-02-18 16:44:01 +00001935 if (cnt < length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001936 dev_err(&port->dev, "%s - dropping data, %d bytes lost\n",
Alan Coxa108bfc2010-02-18 16:44:01 +00001937 __func__, length - cnt);
1938 }
1939 data += cnt;
1940 length -= cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Jiri Slaby2e124b42013-01-03 15:53:06 +01001942 tty_flip_buffer_push(&port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944
1945
1946/*****************************************************************************
1947 * handle_new_msr
1948 * this function handles any change to the msr register for a port.
1949 *****************************************************************************/
1950static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr)
1951{
1952 struct async_icount *icount;
1953
Alan Cox03f0dbf2008-07-22 11:16:34 +01001954 if (newMsr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
1955 EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
Johan Hovoldd36a7712013-03-21 12:37:07 +01001956 icount = &edge_port->port->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 /* update input line counters */
Alan Cox03f0dbf2008-07-22 11:16:34 +01001959 if (newMsr & EDGEPORT_MSR_DELTA_CTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 icount->cts++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001961 if (newMsr & EDGEPORT_MSR_DELTA_DSR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 icount->dsr++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001963 if (newMsr & EDGEPORT_MSR_DELTA_CD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 icount->dcd++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01001965 if (newMsr & EDGEPORT_MSR_DELTA_RI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 icount->rng++;
Johan Hovold8b8070d2013-03-21 12:37:08 +01001967 wake_up_interruptible(&edge_port->port->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969
1970 /* Save the new modem status */
1971 edge_port->shadowMSR = newMsr & 0xf0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
1974
1975/*****************************************************************************
1976 * handle_new_lsr
1977 * this function handles any change to the lsr register for a port.
1978 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01001979static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
1980 __u8 lsr, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
Alan Cox03f0dbf2008-07-22 11:16:34 +01001982 __u8 newLsr = (__u8) (lsr & (__u8)
1983 (LSR_OVER_ERR | LSR_PAR_ERR | LSR_FRM_ERR | LSR_BREAK));
1984 struct async_icount *icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 edge_port->shadowLSR = lsr;
1987
1988 if (newLsr & LSR_BREAK) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01001989 /*
1990 * Parity and Framing errors only count if they
1991 * occur exclusive of a break being
1992 * received.
1993 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 newLsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
1995 }
1996
1997 /* Place LSR data byte into Rx buffer */
Jiri Slaby2e124b42013-01-03 15:53:06 +01001998 if (lsrData)
1999 edge_tty_recv(edge_port->port, &data, 1);
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 /* update input line counters */
Johan Hovoldd36a7712013-03-21 12:37:07 +01002002 icount = &edge_port->port->icount;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002003 if (newLsr & LSR_BREAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 icount->brk++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002005 if (newLsr & LSR_OVER_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 icount->overrun++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002007 if (newLsr & LSR_PAR_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 icount->parity++;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002009 if (newLsr & LSR_FRM_ERR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 icount->frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
2013
2014/****************************************************************************
2015 * sram_write
Alan Cox03f0dbf2008-07-22 11:16:34 +01002016 * writes a number of bytes to the Edgeport device's sram starting at the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 * given address.
2018 * If successful returns the number of bytes written, otherwise it returns
2019 * a negative error number of the problem.
2020 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002021static int sram_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2022 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
2024 int result;
2025 __u16 current_length;
2026 unsigned char *transfer_buffer;
2027
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002028 dev_dbg(&serial->dev->dev, "%s - %x, %x, %d\n", __func__, extAddr, addr, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Alan Cox03f0dbf2008-07-22 11:16:34 +01002030 transfer_buffer = kmalloc(64, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002031 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /* need to split these writes up into 64 byte chunks */
2035 result = 0;
2036 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002037 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002039 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002041
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002042/* dev_dbg(&serial->dev->dev, "%s - writing %x, %x, %d\n", __func__, extAddr, addr, current_length); */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002043 memcpy(transfer_buffer, data, current_length);
2044 result = usb_control_msg(serial->dev,
2045 usb_sndctrlpipe(serial->dev, 0),
2046 USB_REQUEST_ION_WRITE_RAM,
2047 0x40, addr, extAddr, transfer_buffer,
2048 current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (result < 0)
2050 break;
2051 length -= current_length;
2052 addr += current_length;
2053 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Alan Cox03f0dbf2008-07-22 11:16:34 +01002056 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 return result;
2058}
2059
2060
2061/****************************************************************************
2062 * rom_write
2063 * writes a number of bytes to the Edgeport device's ROM starting at the
2064 * given address.
2065 * If successful returns the number of bytes written, otherwise it returns
2066 * a negative error number of the problem.
2067 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002068static int rom_write(struct usb_serial *serial, __u16 extAddr, __u16 addr,
2069 __u16 length, const __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
2071 int result;
2072 __u16 current_length;
2073 unsigned char *transfer_buffer;
2074
Alan Cox03f0dbf2008-07-22 11:16:34 +01002075 transfer_buffer = kmalloc(64, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002076 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 /* need to split these writes up into 64 byte chunks */
2080 result = 0;
2081 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002082 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002084 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002086 memcpy(transfer_buffer, data, current_length);
2087 result = usb_control_msg(serial->dev,
2088 usb_sndctrlpipe(serial->dev, 0),
2089 USB_REQUEST_ION_WRITE_ROM, 0x40,
2090 addr, extAddr,
2091 transfer_buffer, current_length, 300);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (result < 0)
2093 break;
2094 length -= current_length;
2095 addr += current_length;
2096 data += current_length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Alan Cox03f0dbf2008-07-22 11:16:34 +01002099 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 return result;
2101}
2102
2103
2104/****************************************************************************
2105 * rom_read
2106 * reads a number of bytes from the Edgeport device starting at the given
2107 * address.
Johan Hovold6fa44d42017-01-12 14:56:14 +01002108 * Returns zero on success or a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002110static int rom_read(struct usb_serial *serial, __u16 extAddr,
2111 __u16 addr, __u16 length, __u8 *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
2113 int result;
2114 __u16 current_length;
2115 unsigned char *transfer_buffer;
2116
Alan Cox03f0dbf2008-07-22 11:16:34 +01002117 transfer_buffer = kmalloc(64, GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002118 if (!transfer_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 /* need to split these reads up into 64 byte chunks */
2122 result = 0;
2123 while (length > 0) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002124 if (length > 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 current_length = 64;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002126 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 current_length = length;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002128 result = usb_control_msg(serial->dev,
2129 usb_rcvctrlpipe(serial->dev, 0),
2130 USB_REQUEST_ION_READ_ROM,
2131 0xC0, addr, extAddr, transfer_buffer,
2132 current_length, 300);
Johan Hovold6fa44d42017-01-12 14:56:14 +01002133 if (result < current_length) {
2134 if (result >= 0)
2135 result = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 break;
Johan Hovold6fa44d42017-01-12 14:56:14 +01002137 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002138 memcpy(data, transfer_buffer, current_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 length -= current_length;
2140 addr += current_length;
2141 data += current_length;
Johan Hovold6fa44d42017-01-12 14:56:14 +01002142
2143 result = 0;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Alan Cox03f0dbf2008-07-22 11:16:34 +01002146 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 return result;
2148}
2149
2150
2151/****************************************************************************
2152 * send_iosp_ext_cmd
2153 * Is used to send a IOSP message to the Edgeport device
2154 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002155static int send_iosp_ext_cmd(struct edgeport_port *edge_port,
2156 __u8 command, __u8 param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
2158 unsigned char *buffer;
2159 unsigned char *currentCommand;
2160 int length = 0;
2161 int status = 0;
2162
Alan Cox03f0dbf2008-07-22 11:16:34 +01002163 buffer = kmalloc(10, GFP_ATOMIC);
Johan Hovold10c642d2013-12-29 19:22:56 +01002164 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 currentCommand = buffer;
2168
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002169 MAKE_CMD_EXT_CMD(&currentCommand, &length, edge_port->port->port_number,
2170 command, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Alan Cox03f0dbf2008-07-22 11:16:34 +01002172 status = write_cmd_usb(edge_port, buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 if (status) {
2174 /* something bad happened, let's free up the memory */
2175 kfree(buffer);
2176 }
2177
2178 return status;
2179}
2180
2181
2182/*****************************************************************************
2183 * write_cmd_usb
2184 * this function writes the given buffer out to the bulk write endpoint.
2185 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002186static int write_cmd_usb(struct edgeport_port *edge_port,
2187 unsigned char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002189 struct edgeport_serial *edge_serial =
2190 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002191 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 int status = 0;
2193 struct urb *urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01002195 usb_serial_debug_data(dev, __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 /* Allocate our next urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002198 urb = usb_alloc_urb(0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 if (!urb)
2200 return -ENOMEM;
2201
Oliver Neukum96c706e2007-03-15 15:27:17 +01002202 atomic_inc(&CmdUrbs);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002203 dev_dbg(dev, "%s - ALLOCATE URB %p (outstanding %d)\n",
2204 __func__, urb, atomic_read(&CmdUrbs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Alan Cox03f0dbf2008-07-22 11:16:34 +01002206 usb_fill_bulk_urb(urb, edge_serial->serial->dev,
2207 usb_sndbulkpipe(edge_serial->serial->dev,
2208 edge_serial->bulk_out_endpoint),
2209 buffer, length, edge_bulk_out_cmd_callback, edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002211 edge_port->commandPending = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 status = usb_submit_urb(urb, GFP_ATOMIC);
2213
2214 if (status) {
2215 /* something went wrong */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002216 dev_err(dev, "%s - usb_submit_urb(write command) failed, status = %d\n",
2217 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 usb_kill_urb(urb);
2219 usb_free_urb(urb);
Oliver Neukum96c706e2007-03-15 15:27:17 +01002220 atomic_dec(&CmdUrbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 return status;
2222 }
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224#if 0
Alan Cox03f0dbf2008-07-22 11:16:34 +01002225 wait_event(&edge_port->wait_command, !edge_port->commandPending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002227 if (edge_port->commandPending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 /* command timed out */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002229 dev_dbg(dev, "%s - command timed out\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 status = -EINVAL;
2231 }
2232#endif
2233 return status;
2234}
2235
2236
2237/*****************************************************************************
2238 * send_cmd_write_baud_rate
2239 * this function sends the proper command to change the baud rate of the
2240 * specified port.
2241 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002242static int send_cmd_write_baud_rate(struct edgeport_port *edge_port,
2243 int baudRate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002245 struct edgeport_serial *edge_serial =
2246 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002247 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 unsigned char *cmdBuffer;
2249 unsigned char *currCmd;
2250 int cmdLen = 0;
2251 int divisor;
2252 int status;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002253 u32 number = edge_port->port->port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Adam Kropelinbc71e472007-07-29 11:03:29 -04002255 if (edge_serial->is_epic &&
2256 !edge_serial->epic_descriptor.Supports.IOSPSetBaudRate) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002257 dev_dbg(dev, "SendCmdWriteBaudRate - NOT Setting baud rate for port, baud = %d\n",
2258 baudRate);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002259 return 0;
2260 }
2261
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002262 dev_dbg(dev, "%s - baud = %d\n", __func__, baudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002264 status = calc_baud_rate_divisor(dev, baudRate, &divisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (status) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002266 dev_err(dev, "%s - bad baud rate\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 return status;
2268 }
2269
Alan Cox03f0dbf2008-07-22 11:16:34 +01002270 /* Alloc memory for the string of commands. */
2271 cmdBuffer = kmalloc(0x100, GFP_ATOMIC);
Johan Hovold10c642d2013-12-29 19:22:56 +01002272 if (!cmdBuffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return -ENOMEM;
Johan Hovold10c642d2013-12-29 19:22:56 +01002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 currCmd = cmdBuffer;
2276
Alan Cox03f0dbf2008-07-22 11:16:34 +01002277 /* Enable access to divisor latch */
2278 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR, LCR_DL_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Alan Cox03f0dbf2008-07-22 11:16:34 +01002280 /* Write the divisor itself */
2281 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLL, LOW8(divisor));
2282 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, DLM, HIGH8(divisor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Alan Cox03f0dbf2008-07-22 11:16:34 +01002284 /* Restore original value to disable access to divisor latch */
2285 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, number, LCR,
2286 edge_port->shadowLCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Alan Cox03f0dbf2008-07-22 11:16:34 +01002288 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (status) {
2290 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002291 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293
2294 return status;
2295}
2296
2297
2298/*****************************************************************************
2299 * calc_baud_rate_divisor
2300 * this function calculates the proper baud rate divisor for the specified
2301 * baud rate.
2302 *****************************************************************************/
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002303static int calc_baud_rate_divisor(struct device *dev, int baudrate, int *divisor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
2305 int i;
2306 __u16 custom;
2307
Tobias Klauser52950ed2005-12-11 16:20:08 +01002308 for (i = 0; i < ARRAY_SIZE(divisor_table); i++) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002309 if (divisor_table[i].BaudRate == baudrate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 *divisor = divisor_table[i].Divisor;
2311 return 0;
2312 }
2313 }
2314
Alan Cox03f0dbf2008-07-22 11:16:34 +01002315 /* We have tried all of the standard baud rates
2316 * lets try to calculate the divisor for this baud rate
2317 * Make sure the baud rate is reasonable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 if (baudrate > 50 && baudrate < 230400) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002319 /* get divisor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 custom = (__u16)((230400L + baudrate/2) / baudrate);
2321
2322 *divisor = custom;
2323
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002324 dev_dbg(dev, "%s - Baud %d = %d\n", __func__, baudrate, custom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 return 0;
2326 }
2327
2328 return -1;
2329}
2330
2331
2332/*****************************************************************************
2333 * send_cmd_write_uart_register
Anand Gadiyarfd589a82009-07-16 17:13:03 +02002334 * this function builds up a uart register message and sends to the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 *****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002336static int send_cmd_write_uart_register(struct edgeport_port *edge_port,
2337 __u8 regNum, __u8 regValue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338{
Alan Cox03f0dbf2008-07-22 11:16:34 +01002339 struct edgeport_serial *edge_serial =
2340 usb_get_serial_data(edge_port->port->serial);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002341 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 unsigned char *cmdBuffer;
2343 unsigned char *currCmd;
2344 unsigned long cmdLen = 0;
2345 int status;
2346
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002347 dev_dbg(dev, "%s - write to %s register 0x%02x\n",
2348 (regNum == MCR) ? "MCR" : "LCR", __func__, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Adam Kropelinbc71e472007-07-29 11:03:29 -04002350 if (edge_serial->is_epic &&
2351 !edge_serial->epic_descriptor.Supports.IOSPWriteMCR &&
2352 regNum == MCR) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002353 dev_dbg(dev, "SendCmdWriteUartReg - Not writing to MCR Register\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002354 return 0;
2355 }
2356
Adam Kropelinbc71e472007-07-29 11:03:29 -04002357 if (edge_serial->is_epic &&
2358 !edge_serial->epic_descriptor.Supports.IOSPWriteLCR &&
2359 regNum == LCR) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002360 dev_dbg(dev, "SendCmdWriteUartReg - Not writing to LCR Register\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002361 return 0;
2362 }
2363
Alan Cox03f0dbf2008-07-22 11:16:34 +01002364 /* Alloc memory for the string of commands. */
2365 cmdBuffer = kmalloc(0x10, GFP_ATOMIC);
2366 if (cmdBuffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 currCmd = cmdBuffer;
2370
Alan Cox03f0dbf2008-07-22 11:16:34 +01002371 /* Build a cmd in the buffer to write the given register */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002372 MAKE_CMD_WRITE_REG(&currCmd, &cmdLen, edge_port->port->port_number,
2373 regNum, regValue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 status = write_cmd_usb(edge_port, cmdBuffer, cmdLen);
2376 if (status) {
2377 /* something bad happened, let's free up the memory */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002378 kfree(cmdBuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
2380
2381 return status;
2382}
2383
2384
2385/*****************************************************************************
2386 * change_port_settings
Alan Cox03f0dbf2008-07-22 11:16:34 +01002387 * This routine is called to set the UART on the device to match the
2388 * specified new settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01002390
2391static void change_port_settings(struct tty_struct *tty,
2392 struct edgeport_port *edge_port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002394 struct device *dev = &edge_port->port->dev;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002395 struct edgeport_serial *edge_serial =
2396 usb_get_serial_data(edge_port->port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 int baud;
2398 unsigned cflag;
2399 __u8 mask = 0xff;
2400 __u8 lData;
2401 __u8 lParity;
2402 __u8 lStop;
2403 __u8 rxFlow;
2404 __u8 txFlow;
2405 int status;
2406
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002407 if (!edge_port->open &&
2408 !edge_port->openPending) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002409 dev_dbg(dev, "%s - port not opened\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 return;
2411 }
2412
Alan Coxadc8d742012-07-14 15:31:47 +01002413 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415 switch (cflag & CSIZE) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002416 case CS5:
2417 lData = LCR_BITS_5; mask = 0x1f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002418 dev_dbg(dev, "%s - data bits = 5\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002419 break;
2420 case CS6:
2421 lData = LCR_BITS_6; mask = 0x3f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002422 dev_dbg(dev, "%s - data bits = 6\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002423 break;
2424 case CS7:
2425 lData = LCR_BITS_7; mask = 0x7f;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002426 dev_dbg(dev, "%s - data bits = 7\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002427 break;
2428 default:
2429 case CS8:
2430 lData = LCR_BITS_8;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002431 dev_dbg(dev, "%s - data bits = 8\n", __func__);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002432 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 }
2434
2435 lParity = LCR_PAR_NONE;
2436 if (cflag & PARENB) {
2437 if (cflag & CMSPAR) {
2438 if (cflag & PARODD) {
2439 lParity = LCR_PAR_MARK;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002440 dev_dbg(dev, "%s - parity = mark\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 } else {
2442 lParity = LCR_PAR_SPACE;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002443 dev_dbg(dev, "%s - parity = space\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 }
2445 } else if (cflag & PARODD) {
2446 lParity = LCR_PAR_ODD;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002447 dev_dbg(dev, "%s - parity = odd\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 } else {
2449 lParity = LCR_PAR_EVEN;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002450 dev_dbg(dev, "%s - parity = even\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 }
2452 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002453 dev_dbg(dev, "%s - parity = none\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
2455
2456 if (cflag & CSTOPB) {
2457 lStop = LCR_STOP_2;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002458 dev_dbg(dev, "%s - stop bits = 2\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 } else {
2460 lStop = LCR_STOP_1;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002461 dev_dbg(dev, "%s - stop bits = 1\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463
2464 /* figure out the flow control settings */
2465 rxFlow = txFlow = 0x00;
2466 if (cflag & CRTSCTS) {
2467 rxFlow |= IOSP_RX_FLOW_RTS;
2468 txFlow |= IOSP_TX_FLOW_CTS;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002469 dev_dbg(dev, "%s - RTS/CTS is enabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002471 dev_dbg(dev, "%s - RTS/CTS is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
2473
Alan Cox03f0dbf2008-07-22 11:16:34 +01002474 /* if we are implementing XON/XOFF, set the start and stop character
2475 in the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (I_IXOFF(tty) || I_IXON(tty)) {
2477 unsigned char stop_char = STOP_CHAR(tty);
2478 unsigned char start_char = START_CHAR(tty);
2479
Geyslan G. Bem232dce82015-12-11 06:46:41 -03002480 if (!edge_serial->is_epic ||
2481 edge_serial->epic_descriptor.Supports.IOSPSetXChar) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002482 send_iosp_ext_cmd(edge_port,
2483 IOSP_CMD_SET_XON_CHAR, start_char);
2484 send_iosp_ext_cmd(edge_port,
2485 IOSP_CMD_SET_XOFF_CHAR, stop_char);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488 /* if we are implementing INBOUND XON/XOFF */
2489 if (I_IXOFF(tty)) {
2490 rxFlow |= IOSP_RX_FLOW_XON_XOFF;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002491 dev_dbg(dev, "%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2492 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002494 dev_dbg(dev, "%s - INBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 }
2496
2497 /* if we are implementing OUTBOUND XON/XOFF */
2498 if (I_IXON(tty)) {
2499 txFlow |= IOSP_TX_FLOW_XON_XOFF;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002500 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2501 __func__, start_char, stop_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002503 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 }
2505 }
2506
2507 /* Set flow control to the configured value */
Geyslan G. Bem232dce82015-12-11 06:46:41 -03002508 if (!edge_serial->is_epic ||
2509 edge_serial->epic_descriptor.Supports.IOSPSetRxFlow)
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002510 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_RX_FLOW, rxFlow);
Geyslan G. Bem232dce82015-12-11 06:46:41 -03002511 if (!edge_serial->is_epic ||
2512 edge_serial->epic_descriptor.Supports.IOSPSetTxFlow)
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002513 send_iosp_ext_cmd(edge_port, IOSP_CMD_SET_TX_FLOW, txFlow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515
2516 edge_port->shadowLCR &= ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
2517 edge_port->shadowLCR |= (lData | lParity | lStop);
2518
2519 edge_port->validDataMask = mask;
2520
2521 /* Send the updated LCR value to the EdgePort */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002522 status = send_cmd_write_uart_register(edge_port, LCR,
2523 edge_port->shadowLCR);
2524 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 /* set up the MCR register and send it to the EdgePort */
2528 edge_port->shadowMCR = MCR_MASTER_IE;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002529 if (cflag & CBAUD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 edge_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002531
2532 status = send_cmd_write_uart_register(edge_port, MCR,
2533 edge_port->shadowMCR);
2534 if (status != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 /* Determine divisor based on baud rate */
2538 baud = tty_get_baud_rate(tty);
2539 if (!baud) {
2540 /* pick a default, any default... */
2541 baud = 9600;
2542 }
2543
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002544 dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud);
Alan Cox03f0dbf2008-07-22 11:16:34 +01002545 status = send_cmd_write_baud_rate(edge_port, baud);
Alan Cox6ce073b2007-10-18 01:24:25 -07002546 if (status == -1) {
2547 /* Speed change was not possible - put back the old speed */
2548 baud = tty_termios_baud_rate(old_termios);
2549 tty_encode_baud_rate(tty, baud, baud);
2550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551}
2552
2553
2554/****************************************************************************
2555 * unicode_to_ascii
2556 * Turns a string from Unicode into ASCII.
2557 * Doesn't do a good job with any characters that are outside the normal
2558 * ASCII range, but it's only for debugging...
2559 * NOTE: expects the unicode in LE format
2560 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002561static void unicode_to_ascii(char *string, int buflen,
2562 __le16 *unicode, int unicode_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
2564 int i;
2565
Pete Zaitcevad933752006-05-22 21:49:44 -07002566 if (buflen <= 0) /* never happens, but... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 return;
Pete Zaitcevad933752006-05-22 21:49:44 -07002568 --buflen; /* space for nul */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Pete Zaitcevad933752006-05-22 21:49:44 -07002570 for (i = 0; i < unicode_size; i++) {
2571 if (i >= buflen)
2572 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 string[i] = (char)(le16_to_cpu(unicode[i]));
Pete Zaitcevad933752006-05-22 21:49:44 -07002574 }
2575 string[i] = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576}
2577
2578
2579/****************************************************************************
2580 * get_manufacturing_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002581 * reads in the manufacturing descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 * structure.
2583 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002584static void get_manufacturing_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002586 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 int response;
2588
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002589 dev_dbg(dev, "getting manufacturer descriptor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Alan Cox03f0dbf2008-07-22 11:16:34 +01002591 response = rom_read(edge_serial->serial,
2592 (EDGE_MANUF_DESC_ADDR & 0xffff0000) >> 16,
2593 (__u16)(EDGE_MANUF_DESC_ADDR & 0x0000ffff),
2594 EDGE_MANUF_DESC_LEN,
2595 (__u8 *)(&edge_serial->manuf_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
Johan Hovold6fa44d42017-01-12 14:56:14 +01002597 if (response < 0) {
2598 dev_err(dev, "error in getting manufacturer descriptor: %d\n",
2599 response);
2600 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 char string[30];
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002602 dev_dbg(dev, "**Manufacturer Descriptor\n");
2603 dev_dbg(dev, " RomSize: %dK\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002604 edge_serial->manuf_descriptor.RomSize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002605 dev_dbg(dev, " RamSize: %dK\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002606 edge_serial->manuf_descriptor.RamSize);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002607 dev_dbg(dev, " CpuRev: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002608 edge_serial->manuf_descriptor.CpuRev);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002609 dev_dbg(dev, " BoardRev: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002610 edge_serial->manuf_descriptor.BoardRev);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002611 dev_dbg(dev, " NumPorts: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002612 edge_serial->manuf_descriptor.NumPorts);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002613 dev_dbg(dev, " DescDate: %d/%d/%d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002614 edge_serial->manuf_descriptor.DescDate[0],
2615 edge_serial->manuf_descriptor.DescDate[1],
2616 edge_serial->manuf_descriptor.DescDate[2]+1900);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002617 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002618 edge_serial->manuf_descriptor.SerialNumber,
2619 edge_serial->manuf_descriptor.SerNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002620 dev_dbg(dev, " SerialNumber: %s\n", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002621 unicode_to_ascii(string, sizeof(string),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002622 edge_serial->manuf_descriptor.AssemblyNumber,
2623 edge_serial->manuf_descriptor.AssemblyNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002624 dev_dbg(dev, " AssemblyNumber: %s\n", string);
Pete Zaitcev4bc203d2006-06-06 18:18:33 -07002625 unicode_to_ascii(string, sizeof(string),
Pete Zaitcevad933752006-05-22 21:49:44 -07002626 edge_serial->manuf_descriptor.OemAssyNumber,
2627 edge_serial->manuf_descriptor.OemAssyNumLength/2);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002628 dev_dbg(dev, " OemAssyNumber: %s\n", string);
2629 dev_dbg(dev, " UartType: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002630 edge_serial->manuf_descriptor.UartType);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002631 dev_dbg(dev, " IonPid: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002632 edge_serial->manuf_descriptor.IonPid);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002633 dev_dbg(dev, " IonConfig: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002634 edge_serial->manuf_descriptor.IonConfig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
2636}
2637
2638
2639/****************************************************************************
2640 * get_boot_desc
Alan Cox03f0dbf2008-07-22 11:16:34 +01002641 * reads in the bootloader descriptor and stores it into the serial
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 * structure.
2643 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002644static void get_boot_desc(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002646 struct device *dev = &edge_serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 int response;
2648
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002649 dev_dbg(dev, "getting boot descriptor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Alan Cox03f0dbf2008-07-22 11:16:34 +01002651 response = rom_read(edge_serial->serial,
2652 (EDGE_BOOT_DESC_ADDR & 0xffff0000) >> 16,
2653 (__u16)(EDGE_BOOT_DESC_ADDR & 0x0000ffff),
2654 EDGE_BOOT_DESC_LEN,
2655 (__u8 *)(&edge_serial->boot_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Johan Hovold6fa44d42017-01-12 14:56:14 +01002657 if (response < 0) {
2658 dev_err(dev, "error in getting boot descriptor: %d\n",
2659 response);
2660 } else {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002661 dev_dbg(dev, "**Boot Descriptor:\n");
2662 dev_dbg(dev, " BootCodeLength: %d\n",
2663 le16_to_cpu(edge_serial->boot_descriptor.BootCodeLength));
2664 dev_dbg(dev, " MajorVersion: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002665 edge_serial->boot_descriptor.MajorVersion);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002666 dev_dbg(dev, " MinorVersion: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002667 edge_serial->boot_descriptor.MinorVersion);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002668 dev_dbg(dev, " BuildNumber: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002669 le16_to_cpu(edge_serial->boot_descriptor.BuildNumber));
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002670 dev_dbg(dev, " Capabilities: 0x%x\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002671 le16_to_cpu(edge_serial->boot_descriptor.Capabilities));
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002672 dev_dbg(dev, " UConfig0: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002673 edge_serial->boot_descriptor.UConfig0);
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002674 dev_dbg(dev, " UConfig1: %d\n",
Alan Cox03f0dbf2008-07-22 11:16:34 +01002675 edge_serial->boot_descriptor.UConfig1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 }
2677}
2678
2679
2680/****************************************************************************
2681 * load_application_firmware
2682 * This is called to load the application firmware to the device
2683 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002684static void load_application_firmware(struct edgeport_serial *edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002686 struct device *dev = &edge_serial->serial->dev->dev;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302687 const struct ihex_binrec *rec;
2688 const struct firmware *fw;
2689 const char *fw_name;
2690 const char *fw_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 int response;
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302692 __u32 Operaddr;
2693 __u16 build;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695 switch (edge_serial->product_info.iDownloadFile) {
2696 case EDGE_DOWNLOAD_FILE_I930:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302697 fw_info = "downloading firmware version (930)";
2698 fw_name = "edgeport/down.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 break;
2700
2701 case EDGE_DOWNLOAD_FILE_80251:
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302702 fw_info = "downloading firmware version (80251)";
2703 fw_name = "edgeport/down2.fw";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 break;
2705
2706 case EDGE_DOWNLOAD_FILE_NONE:
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002707 dev_dbg(dev, "No download file specified, skipping download\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return;
2709
2710 default:
2711 return;
2712 }
2713
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302714 response = request_ihex_firmware(&fw, fw_name,
2715 &edge_serial->serial->dev->dev);
2716 if (response) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002717 dev_err(dev, "Failed to load image \"%s\" err %d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302718 fw_name, response);
2719 return;
2720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302722 rec = (const struct ihex_binrec *)fw->data;
2723 build = (rec->data[2] << 8) | rec->data[3];
2724
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002725 dev_dbg(dev, "%s %d.%d.%d\n", fw_info, rec->data[0], rec->data[1], build);
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302726
Bjørn Mork271c1152011-01-17 14:19:37 +01002727 edge_serial->product_info.FirmwareMajorVersion = rec->data[0];
2728 edge_serial->product_info.FirmwareMinorVersion = rec->data[1];
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302729 edge_serial->product_info.FirmwareBuildNumber = cpu_to_le16(build);
2730
2731 for (rec = ihex_next_binrec(rec); rec;
2732 rec = ihex_next_binrec(rec)) {
2733 Operaddr = be32_to_cpu(rec->addr);
2734 response = sram_write(edge_serial->serial,
2735 Operaddr >> 16,
2736 Operaddr & 0xFFFF,
2737 be16_to_cpu(rec->len),
2738 &rec->data[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 if (response < 0) {
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302740 dev_err(&edge_serial->serial->dev->dev,
2741 "sram_write failed (%x, %x, %d)\n",
2742 Operaddr >> 16, Operaddr & 0xFFFF,
2743 be16_to_cpu(rec->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 break;
2745 }
2746 }
2747
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002748 dev_dbg(dev, "sending exec_dl_code\n");
2749 response = usb_control_msg (edge_serial->serial->dev,
2750 usb_sndctrlpipe(edge_serial->serial->dev, 0),
2751 USB_REQUEST_ION_EXEC_DL_CODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 0x40, 0x4000, 0x0001, NULL, 0, 3000);
2753
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302754 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755}
2756
2757
2758/****************************************************************************
2759 * edge_startup
2760 ****************************************************************************/
Alan Cox03f0dbf2008-07-22 11:16:34 +01002761static int edge_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762{
2763 struct edgeport_serial *edge_serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 struct usb_device *dev;
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002765 struct device *ddev = &serial->dev->dev;
Johan Hovoldc27f3ef2012-10-17 13:34:57 +02002766 int i;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002767 int response;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002768 bool interrupt_in_found;
2769 bool bulk_in_found;
2770 bool bulk_out_found;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002771 static __u32 descriptor[3] = { EDGE_COMPATIBILITY_MASK0,
2772 EDGE_COMPATIBILITY_MASK1,
2773 EDGE_COMPATIBILITY_MASK2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Johan Hovold65914ee2017-01-03 16:39:42 +01002775 if (serial->num_bulk_in < 1 || serial->num_interrupt_in < 1) {
2776 dev_err(&serial->interface->dev, "missing endpoints\n");
2777 return -ENODEV;
2778 }
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 dev = serial->dev;
2781
2782 /* create our private serial structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002783 edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
Johan Hovold10c642d2013-12-29 19:22:56 +01002784 if (!edge_serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 return -ENOMEM;
Johan Hovold10c642d2013-12-29 19:22:56 +01002786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 spin_lock_init(&edge_serial->es_lock);
2788 edge_serial->serial = serial;
2789 usb_set_serial_data(serial, edge_serial);
2790
2791 /* get the name for the device from the device */
Dan Carpenterf10718f2010-01-25 14:53:33 +03002792 i = usb_string(dev, dev->descriptor.iManufacturer,
Pete Zaitcevad933752006-05-22 21:49:44 -07002793 &edge_serial->name[0], MAX_NAME_LEN+1);
Dan Carpenterf10718f2010-01-25 14:53:33 +03002794 if (i < 0)
2795 i = 0;
Pete Zaitcevad933752006-05-22 21:49:44 -07002796 edge_serial->name[i++] = ' ';
Dan Carpenterf10718f2010-01-25 14:53:33 +03002797 usb_string(dev, dev->descriptor.iProduct,
Pete Zaitcevad933752006-05-22 21:49:44 -07002798 &edge_serial->name[i], MAX_NAME_LEN+2 - i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800 dev_info(&serial->dev->dev, "%s detected\n", edge_serial->name);
2801
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002802 /* Read the epic descriptor */
Johan Hovoldb07e9302017-01-12 14:56:13 +01002803 if (get_epic_descriptor(edge_serial) < 0) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002804 /* memcpy descriptor to Supports structures */
2805 memcpy(&edge_serial->epic_descriptor.Supports, descriptor,
2806 sizeof(struct edge_compatibility_bits));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002808 /* get the manufacturing descriptor for this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002809 get_manufacturing_desc(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002811 /* get the boot descriptor */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002812 get_boot_desc(edge_serial);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002813
2814 get_product_info(edge_serial);
2815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
2817 /* set the number of ports from the manufacturing description */
2818 /* serial->num_ports = serial->product_info.NumPorts; */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002819 if ((!edge_serial->is_epic) &&
2820 (edge_serial->product_info.NumPorts != serial->num_ports)) {
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002821 dev_warn(ddev,
2822 "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 -08002823 edge_serial->product_info.NumPorts,
2824 serial->num_ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 }
2826
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002827 dev_dbg(ddev, "%s - time 1 %ld\n", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002829 /* If not an EPiC device */
2830 if (!edge_serial->is_epic) {
2831 /* now load the application firmware into this device */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002832 load_application_firmware(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002834 dev_dbg(ddev, "%s - time 2 %ld\n", __func__, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002836 /* Check current Edgeport EEPROM and update if necessary */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002837 update_edgeport_E2PROM(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002839 dev_dbg(ddev, "%s - time 3 %ld\n", __func__, jiffies);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002840
2841 /* set the configuration to use #1 */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002842/* dev_dbg(ddev, "set_configuration 1\n"); */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002843/* usb_set_configuration (dev, 1); */
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002844 }
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002845 dev_dbg(ddev, " FirmwareMajorVersion %d.%d.%d\n",
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05302846 edge_serial->product_info.FirmwareMajorVersion,
2847 edge_serial->product_info.FirmwareMinorVersion,
2848 le16_to_cpu(edge_serial->product_info.FirmwareBuildNumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Alan Cox03f0dbf2008-07-22 11:16:34 +01002850 /* we set up the pointers to the endpoints in the edge_open function,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 * as the structures aren't created yet. */
2852
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002853 response = 0;
2854
2855 if (edge_serial->is_epic) {
Alan Cox03f0dbf2008-07-22 11:16:34 +01002856 /* EPIC thing, set up our interrupt polling now and our read
2857 * urb, so that the device knows it really is connected. */
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002858 interrupt_in_found = bulk_in_found = bulk_out_found = false;
Alan Cox03f0dbf2008-07-22 11:16:34 +01002859 for (i = 0; i < serial->interface->altsetting[0]
2860 .desc.bNumEndpoints; ++i) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002861 struct usb_endpoint_descriptor *endpoint;
2862 int buffer_size;
2863
Alan Cox03f0dbf2008-07-22 11:16:34 +01002864 endpoint = &serial->interface->altsetting[0].
2865 endpoint[i].desc;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002866 buffer_size = usb_endpoint_maxp(endpoint);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002867 if (!interrupt_in_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002868 (usb_endpoint_is_int_in(endpoint))) {
2869 /* we found a interrupt in endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002870 dev_dbg(ddev, "found interrupt in\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002871
2872 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002873 edge_serial->interrupt_read_urb =
2874 usb_alloc_urb(0, GFP_KERNEL);
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002875 if (!edge_serial->interrupt_read_urb) {
2876 response = -ENOMEM;
2877 break;
2878 }
Johan Hovold10c642d2013-12-29 19:22:56 +01002879
Alan Cox03f0dbf2008-07-22 11:16:34 +01002880 edge_serial->interrupt_in_buffer =
2881 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002882 if (!edge_serial->interrupt_in_buffer) {
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002883 response = -ENOMEM;
2884 break;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002885 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002886 edge_serial->interrupt_in_endpoint =
2887 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002888
2889 /* set up our interrupt urb */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002890 usb_fill_int_urb(
2891 edge_serial->interrupt_read_urb,
2892 dev,
2893 usb_rcvintpipe(dev,
2894 endpoint->bEndpointAddress),
2895 edge_serial->interrupt_in_buffer,
2896 buffer_size,
2897 edge_interrupt_callback,
2898 edge_serial,
2899 endpoint->bInterval);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002900
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002901 interrupt_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002902 }
2903
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002904 if (!bulk_in_found &&
Alan Cox03f0dbf2008-07-22 11:16:34 +01002905 (usb_endpoint_is_bulk_in(endpoint))) {
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002906 /* we found a bulk in endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002907 dev_dbg(ddev, "found bulk in\n");
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002908
2909 /* not set up yet, so do it now */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002910 edge_serial->read_urb =
2911 usb_alloc_urb(0, GFP_KERNEL);
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002912 if (!edge_serial->read_urb) {
2913 response = -ENOMEM;
2914 break;
2915 }
Johan Hovold10c642d2013-12-29 19:22:56 +01002916
Alan Cox03f0dbf2008-07-22 11:16:34 +01002917 edge_serial->bulk_in_buffer =
2918 kmalloc(buffer_size, GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002919 if (!edge_serial->bulk_in_buffer) {
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002920 response = -ENOMEM;
2921 break;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002922 }
Alan Cox03f0dbf2008-07-22 11:16:34 +01002923 edge_serial->bulk_in_endpoint =
2924 endpoint->bEndpointAddress;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002925
2926 /* set up our bulk in urb */
2927 usb_fill_bulk_urb(edge_serial->read_urb, dev,
Alan Cox03f0dbf2008-07-22 11:16:34 +01002928 usb_rcvbulkpipe(dev,
2929 endpoint->bEndpointAddress),
2930 edge_serial->bulk_in_buffer,
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002931 usb_endpoint_maxp(endpoint),
Alan Cox03f0dbf2008-07-22 11:16:34 +01002932 edge_bulk_in_callback,
2933 edge_serial);
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002934 bulk_in_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002935 }
2936
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002937 if (!bulk_out_found &&
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002938 (usb_endpoint_is_bulk_out(endpoint))) {
2939 /* we found a bulk out endpoint */
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002940 dev_dbg(ddev, "found bulk out\n");
Alan Cox03f0dbf2008-07-22 11:16:34 +01002941 edge_serial->bulk_out_endpoint =
2942 endpoint->bEndpointAddress;
Richard Knutssoncb8eaa82007-03-17 01:35:53 +01002943 bulk_out_found = true;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002944 }
2945 }
2946
Johan Hovoldc5c0c552016-05-08 20:07:56 +02002947 if (response || !interrupt_in_found || !bulk_in_found ||
2948 !bulk_out_found) {
2949 if (!response) {
2950 dev_err(ddev, "expected endpoints not found\n");
2951 response = -ENODEV;
2952 }
2953
2954 usb_free_urb(edge_serial->interrupt_read_urb);
2955 kfree(edge_serial->interrupt_in_buffer);
2956
2957 usb_free_urb(edge_serial->read_urb);
2958 kfree(edge_serial->bulk_in_buffer);
2959
2960 kfree(edge_serial);
2961
2962 return response;
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002963 }
2964
2965 /* start interrupt read for this edgeport this interrupt will
2966 * continue as long as the edgeport is connected */
Alan Cox03f0dbf2008-07-22 11:16:34 +01002967 response = usb_submit_urb(edge_serial->interrupt_read_urb,
2968 GFP_KERNEL);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002969 if (response)
Greg Kroah-Hartman984f6862012-09-18 01:33:23 -07002970 dev_err(ddev, "%s - Error %d submitting control urb\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002971 __func__, response);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002972 }
2973 return response;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974}
2975
2976
2977/****************************************************************************
Alan Sternf9c99bb2009-06-02 11:53:55 -04002978 * edge_disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 * This function is called whenever the device is removed from the usb bus.
2980 ****************************************************************************/
Alan Sternf9c99bb2009-06-02 11:53:55 -04002981static void edge_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982{
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002983 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002985 if (edge_serial->is_epic) {
Oliver Neukum74ac07e2007-06-13 18:50:41 +02002986 usb_kill_urb(edge_serial->interrupt_read_urb);
Oliver Neukum74ac07e2007-06-13 18:50:41 +02002987 usb_kill_urb(edge_serial->read_urb);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002988 }
Alan Sternf9c99bb2009-06-02 11:53:55 -04002989}
2990
2991
2992/****************************************************************************
2993 * edge_release
2994 * This function is called when the device structure is deallocated.
2995 ****************************************************************************/
2996static void edge_release(struct usb_serial *serial)
2997{
2998 struct edgeport_serial *edge_serial = usb_get_serial_data(serial);
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08002999
Johan Hovoldc8d62952016-05-08 20:07:57 +02003000 if (edge_serial->is_epic) {
3001 usb_kill_urb(edge_serial->interrupt_read_urb);
3002 usb_free_urb(edge_serial->interrupt_read_urb);
3003 kfree(edge_serial->interrupt_in_buffer);
3004
3005 usb_kill_urb(edge_serial->read_urb);
3006 usb_free_urb(edge_serial->read_urb);
3007 kfree(edge_serial->bulk_in_buffer);
3008 }
3009
Greg Kroah-Hartman6e8cf772007-01-18 00:20:19 -08003010 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011}
3012
Johan Hovoldc27f3ef2012-10-17 13:34:57 +02003013static int edge_port_probe(struct usb_serial_port *port)
3014{
3015 struct edgeport_port *edge_port;
3016
3017 edge_port = kzalloc(sizeof(*edge_port), GFP_KERNEL);
3018 if (!edge_port)
3019 return -ENOMEM;
3020
3021 spin_lock_init(&edge_port->ep_lock);
3022 edge_port->port = port;
3023
3024 usb_set_serial_port_data(port, edge_port);
3025
3026 return 0;
3027}
3028
3029static int edge_port_remove(struct usb_serial_port *port)
3030{
3031 struct edgeport_port *edge_port;
3032
3033 edge_port = usb_get_serial_port_data(port);
3034 kfree(edge_port);
3035
3036 return 0;
3037}
3038
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07003039module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Alan Cox03f0dbf2008-07-22 11:16:34 +01003041MODULE_AUTHOR(DRIVER_AUTHOR);
3042MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043MODULE_LICENSE("GPL");
Jaswinder Singh5b9ea932008-07-03 17:00:23 +05303044MODULE_FIRMWARE("edgeport/boot.fw");
3045MODULE_FIRMWARE("edgeport/boot2.fw");
3046MODULE_FIRMWARE("edgeport/down.fw");
3047MODULE_FIRMWARE("edgeport/down2.fw");