blob: 54916d724145d683fb03e62a3a103016fa9c3b00 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Edgeport USB Serial Converter driver
3 *
4 * Copyright (C) 2000-2002 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 * EP/1 EP/2 EP/4 EP/21 EP/22 EP/221 EP/42 EP/421 WATCHPORT
14 *
15 * For questions or problems with this driver, contact Inside Out
16 * Networks technical support, or Peter Berger <pberger@brimson.com>,
17 * or Al Borchers <alborchers@steinerpoint.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel.h>
21#include <linux/jiffies.h>
22#include <linux/errno.h>
23#include <linux/init.h>
24#include <linux/slab.h>
25#include <linux/tty.h>
26#include <linux/tty_driver.h>
27#include <linux/tty_flip.h>
28#include <linux/module.h>
29#include <linux/spinlock.h>
Matthias Kaehlcke241ca642007-12-04 16:15:40 +010030#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/serial.h>
Johan Hovoldd733cec2010-05-19 00:01:37 +020032#include <linux/kfifo.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/ioctl.h>
Jaswinder Singhd12b2192008-07-04 23:06:09 +053034#include <linux/firmware.h>
Alan Cox2742fd82008-04-29 14:45:15 +010035#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070037#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "io_16654.h"
40#include "io_usbvend.h"
41#include "io_ti.h"
42
43/*
44 * Version Information
45 */
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -040046#define DRIVER_VERSION "v0.7mode043006"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com> and David Iacovelli"
48#define DRIVER_DESC "Edgeport USB Serial Driver"
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define EPROM_PAGE_SIZE 64
51
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* different hardware types */
54#define HARDWARE_TYPE_930 0
55#define HARDWARE_TYPE_TIUMP 1
56
Alan Cox2742fd82008-04-29 14:45:15 +010057/* IOCTL_PRIVATE_TI_GET_MODE Definitions */
58#define TI_MODE_CONFIGURING 0 /* Device has not entered start device */
59#define TI_MODE_BOOT 1 /* Staying in boot mode */
60#define TI_MODE_DOWNLOAD 2 /* Made it to download mode */
61#define TI_MODE_TRANSITIONING 3 /* Currently in boot mode but
62 transitioning to download mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/* read urb state */
65#define EDGE_READ_URB_RUNNING 0
66#define EDGE_READ_URB_STOPPING 1
67#define EDGE_READ_URB_STOPPED 2
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define EDGE_CLOSING_WAIT 4000 /* in .01 sec */
70
71#define EDGE_OUT_BUF_SIZE 1024
72
73
74/* Product information read from the Edgeport */
Alan Cox2742fd82008-04-29 14:45:15 +010075struct product_info {
76 int TiMode; /* Current TI Mode */
77 __u8 hardware_type; /* Type of hardware */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078} __attribute__((packed));
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080struct edgeport_port {
81 __u16 uart_base;
82 __u16 dma_address;
83 __u8 shadow_msr;
84 __u8 shadow_mcr;
85 __u8 shadow_lsr;
86 __u8 lsr_mask;
Martin Olsson19af5cd2009-04-23 11:37:37 +020087 __u32 ump_read_timeout; /* Number of milliseconds the UMP will
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 wait without data before completing
89 a read short */
90 int baud_rate;
91 int close_pending;
92 int lsr_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct async_icount icount;
94 wait_queue_head_t delta_msr_wait; /* for handling sleeping while
95 waiting for msr change to
96 happen */
97 struct edgeport_serial *edge_serial;
98 struct usb_serial_port *port;
Alan Cox2742fd82008-04-29 14:45:15 +010099 __u8 bUartMode; /* Port type, 0: RS232, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 spinlock_t ep_lock;
101 int ep_read_urb_state;
102 int ep_write_urb_in_use;
Johan Hovoldd733cec2010-05-19 00:01:37 +0200103 struct kfifo write_fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106struct edgeport_serial {
107 struct product_info product_info;
Alan Cox2742fd82008-04-29 14:45:15 +0100108 u8 TI_I2C_Type; /* Type of I2C in UMP */
109 u8 TiReadI2C; /* Set to TRUE if we have read the
110 I2c in Boot Mode */
Matthias Kaehlcke241ca642007-12-04 16:15:40 +0100111 struct mutex es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 int num_ports_open;
113 struct usb_serial *serial;
114};
115
116
117/* Devices that this driver supports */
Németh Márton7d40d7e2010-01-10 15:34:24 +0100118static const struct usb_device_id edgeport_1port_id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
120 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
121 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
122 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
123 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
124 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
125 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
126 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
127 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
128 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
129 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
130 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
131 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
132 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
133 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
134 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
135 { }
136};
137
Németh Márton7d40d7e2010-01-10 15:34:24 +0100138static const struct usb_device_id edgeport_2port_id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
140 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
141 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
142 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
143 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
144 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
145 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
146 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
147 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
148 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
149 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
150 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400151 /* The 4, 8 and 16 port devices show up as multiple 2 port devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400153 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
154 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
155 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
156 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 { }
158};
159
160/* Devices that this driver supports */
Németh Márton7d40d7e2010-01-10 15:34:24 +0100161static const struct usb_device_id id_table_combined[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
163 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
164 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
165 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
166 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
167 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
168 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
169 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
170 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
171 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
172 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
173 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
174 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
175 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
176 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
177 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
178 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
179 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
180 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
181 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
182 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
183 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
184 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
185 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
186 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
187 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
188 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
189 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
190 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400191 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
192 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
193 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
194 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 { }
196};
197
Alan Cox2742fd82008-04-29 14:45:15 +0100198MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530200static unsigned char OperationalMajorVersion;
201static unsigned char OperationalMinorVersion;
202static unsigned short OperationalBuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030204static bool debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static int closing_wait = EDGE_CLOSING_WAIT;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030207static bool ignore_cpu_rev;
Alan Cox2742fd82008-04-29 14:45:15 +0100208static int default_uart_mode; /* RS232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Alan Cox2742fd82008-04-29 14:45:15 +0100210static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
211 unsigned char *data, int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213static void stop_read(struct edgeport_port *edge_port);
214static int restart_read(struct edgeport_port *edge_port);
215
Alan Cox95da3102008-07-22 11:09:07 +0100216static void edge_set_termios(struct tty_struct *tty,
217 struct usb_serial_port *port, struct ktermios *old_termios);
218static void edge_send(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400220/* sysfs attributes */
221static int edge_create_sysfs_attrs(struct usb_serial_port *port);
222static int edge_remove_sysfs_attrs(struct usb_serial_port *port);
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Alan Cox2742fd82008-04-29 14:45:15 +0100225static int ti_vread_sync(struct usb_device *dev, __u8 request,
226 __u16 value, __u16 index, u8 *data, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 int status;
229
Alan Cox2742fd82008-04-29 14:45:15 +0100230 status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
231 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
232 value, index, data, size, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (status < 0)
234 return status;
235 if (status != size) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700236 dev_dbg(&dev->dev, "%s - wanted to write %d, but only wrote %d\n",
237 __func__, size, status);
Alan Cox2742fd82008-04-29 14:45:15 +0100238 return -ECOMM;
239 }
240 return 0;
241}
242
243static int ti_vsend_sync(struct usb_device *dev, __u8 request,
244 __u16 value, __u16 index, u8 *data, int size)
245{
246 int status;
247
248 status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
249 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
250 value, index, data, size, 1000);
251 if (status < 0)
252 return status;
253 if (status != size) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700254 dev_dbg(&dev->dev, "%s - wanted to write %d, but only wrote %d\n",
255 __func__, size, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return -ECOMM;
257 }
258 return 0;
259}
260
Alan Cox2742fd82008-04-29 14:45:15 +0100261static int send_cmd(struct usb_device *dev, __u8 command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 __u8 moduleid, __u16 value, u8 *data,
263 int size)
264{
Alan Cox2742fd82008-04-29 14:45:15 +0100265 return ti_vsend_sync(dev, command, value, moduleid, data, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268/* clear tx/rx buffers and fifo in TI UMP */
Alan Cox2742fd82008-04-29 14:45:15 +0100269static int purge_port(struct usb_serial_port *port, __u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 int port_number = port->number - port->serial->minor;
272
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700273 dev_dbg(&port->dev, "%s - port %d, mask %x\n", __func__, port_number, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Alan Cox2742fd82008-04-29 14:45:15 +0100275 return send_cmd(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 UMPC_PURGE_PORT,
277 (__u8)(UMPM_UART1_PORT + port_number),
278 mask,
279 NULL,
280 0);
281}
282
283/**
Alan Cox2742fd82008-04-29 14:45:15 +0100284 * read_download_mem - Read edgeport memory from TI chip
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * @dev: usb device pointer
286 * @start_address: Device CPU address at which to read
287 * @length: Length of above data
288 * @address_type: Can read both XDATA and I2C
289 * @buffer: pointer to input data buffer
290 */
Alan Cox2742fd82008-04-29 14:45:15 +0100291static int read_download_mem(struct usb_device *dev, int start_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int length, __u8 address_type, __u8 *buffer)
293{
294 int status = 0;
295 __u8 read_length;
296 __be16 be_start_address;
Alan Cox2742fd82008-04-29 14:45:15 +0100297
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700298 dev_dbg(&dev->dev, "%s - @ %x for %d\n", __func__, start_address, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /* Read in blocks of 64 bytes
301 * (TI firmware can't handle more than 64 byte reads)
302 */
303 while (length) {
304 if (length > 64)
Alan Cox2742fd82008-04-29 14:45:15 +0100305 read_length = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 else
307 read_length = (__u8)length;
308
309 if (read_length > 1) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700310 dev_dbg(&dev->dev, "%s - @ %x for %d\n", __func__, start_address, read_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
Alan Cox2742fd82008-04-29 14:45:15 +0100312 be_start_address = cpu_to_be16(start_address);
313 status = ti_vread_sync(dev, UMPC_MEMORY_READ,
314 (__u16)address_type,
315 (__force __u16)be_start_address,
316 buffer, read_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700319 dev_dbg(&dev->dev, "%s - ERROR %x\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return status;
321 }
322
Alan Cox2742fd82008-04-29 14:45:15 +0100323 if (read_length > 1)
Harvey Harrison441b62c2008-03-03 16:08:34 -0800324 usb_serial_debug_data(debug, &dev->dev, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 read_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /* Update pointers/length */
328 start_address += read_length;
329 buffer += read_length;
330 length -= read_length;
331 }
Alan Cox2742fd82008-04-29 14:45:15 +0100332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return status;
334}
335
Alan Cox2742fd82008-04-29 14:45:15 +0100336static int read_ram(struct usb_device *dev, int start_address,
337 int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Alan Cox2742fd82008-04-29 14:45:15 +0100339 return read_download_mem(dev, start_address, length,
340 DTK_ADDR_SPACE_XDATA, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343/* Read edgeport memory to a given block */
Alan Cox2742fd82008-04-29 14:45:15 +0100344static int read_boot_mem(struct edgeport_serial *serial,
345 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 int status = 0;
348 int i;
349
Alan Cox2742fd82008-04-29 14:45:15 +0100350 for (i = 0; i < length; i++) {
351 status = ti_vread_sync(serial->serial->dev,
352 UMPC_MEMORY_READ, serial->TI_I2C_Type,
353 (__u16)(start_address+i), &buffer[i], 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700355 dev_dbg(&serial->serial->dev->dev, "%s - ERROR %x\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return status;
357 }
358 }
359
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700360 dev_dbg(&serial->serial->dev->dev, "%s - start_address = %x, length = %d\n",
361 __func__, start_address, length);
Alan Cox2742fd82008-04-29 14:45:15 +0100362 usb_serial_debug_data(debug, &serial->serial->dev->dev,
363 __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 serial->TiReadI2C = 1;
366
367 return status;
368}
369
370/* Write given block to TI EPROM memory */
Alan Cox2742fd82008-04-29 14:45:15 +0100371static int write_boot_mem(struct edgeport_serial *serial,
372 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 int status = 0;
375 int i;
Johan Hovolde9305d22009-12-28 23:01:50 +0100376 u8 *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 /* Must do a read before write */
379 if (!serial->TiReadI2C) {
Johan Hovolde9305d22009-12-28 23:01:50 +0100380 temp = kmalloc(1, GFP_KERNEL);
381 if (!temp) {
382 dev_err(&serial->serial->dev->dev,
383 "%s - out of memory\n", __func__);
384 return -ENOMEM;
385 }
386 status = read_boot_mem(serial, 0, 1, temp);
387 kfree(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (status)
389 return status;
390 }
391
Alan Cox2742fd82008-04-29 14:45:15 +0100392 for (i = 0; i < length; ++i) {
393 status = ti_vsend_sync(serial->serial->dev,
394 UMPC_MEMORY_WRITE, buffer[i],
395 (__u16)(i + start_address), NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (status)
397 return status;
398 }
399
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700400 dev_dbg(&serial->serial->dev->dev, "%s - start_sddr = %x, length = %d\n", __func__, start_address, length);
Alan Cox2742fd82008-04-29 14:45:15 +0100401 usb_serial_debug_data(debug, &serial->serial->dev->dev,
402 __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 return status;
405}
406
407
408/* Write edgeport I2C memory to TI chip */
Alan Cox2742fd82008-04-29 14:45:15 +0100409static int write_i2c_mem(struct edgeport_serial *serial,
410 int start_address, int length, __u8 address_type, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700412 struct device *dev = &serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 int status = 0;
414 int write_length;
415 __be16 be_start_address;
416
417 /* We can only send a maximum of 1 aligned byte page at a time */
Alan Cox2742fd82008-04-29 14:45:15 +0100418
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300419 /* calculate the number of bytes left in the first page */
Alan Cox2742fd82008-04-29 14:45:15 +0100420 write_length = EPROM_PAGE_SIZE -
421 (start_address & (EPROM_PAGE_SIZE - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 if (write_length > length)
424 write_length = length;
425
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700426 dev_dbg(dev, "%s - BytesInFirstPage Addr = %x, length = %d\n",
427 __func__, start_address, write_length);
428 usb_serial_debug_data(debug, dev, __func__, write_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 /* Write first page */
Alan Cox2742fd82008-04-29 14:45:15 +0100431 be_start_address = cpu_to_be16(start_address);
432 status = ti_vsend_sync(serial->serial->dev,
433 UMPC_MEMORY_WRITE, (__u16)address_type,
434 (__force __u16)be_start_address,
435 buffer, write_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700437 dev_dbg(dev, "%s - ERROR %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return status;
439 }
440
441 length -= write_length;
442 start_address += write_length;
443 buffer += write_length;
444
Alan Cox2742fd82008-04-29 14:45:15 +0100445 /* We should be aligned now -- can write
446 max page size bytes at a time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 while (length) {
448 if (length > EPROM_PAGE_SIZE)
449 write_length = EPROM_PAGE_SIZE;
450 else
451 write_length = length;
452
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700453 dev_dbg(dev, "%s - Page Write Addr = %x, length = %d\n",
454 __func__, start_address, write_length);
455 usb_serial_debug_data(debug, dev, __func__, write_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /* Write next page */
Alan Cox2742fd82008-04-29 14:45:15 +0100458 be_start_address = cpu_to_be16(start_address);
459 status = ti_vsend_sync(serial->serial->dev, UMPC_MEMORY_WRITE,
460 (__u16)address_type,
461 (__force __u16)be_start_address,
462 buffer, write_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700464 dev_err(dev, "%s - ERROR %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return status;
466 }
Alan Cox2742fd82008-04-29 14:45:15 +0100467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 length -= write_length;
469 start_address += write_length;
470 buffer += write_length;
471 }
472 return status;
473}
474
475/* Examine the UMP DMA registers and LSR
Alan Cox2742fd82008-04-29 14:45:15 +0100476 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * Check the MSBit of the X and Y DMA byte count registers.
478 * A zero in this bit indicates that the TX DMA buffers are empty
479 * then check the TX Empty bit in the UART.
480 */
Alan Cox2742fd82008-04-29 14:45:15 +0100481static int tx_active(struct edgeport_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 int status;
484 struct out_endpoint_desc_block *oedb;
485 __u8 *lsr;
486 int bytes_left = 0;
487
Alan Cox2742fd82008-04-29 14:45:15 +0100488 oedb = kmalloc(sizeof(*oedb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (!oedb) {
Alan Cox2742fd82008-04-29 14:45:15 +0100490 dev_err(&port->port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return -ENOMEM;
492 }
493
Alan Cox2742fd82008-04-29 14:45:15 +0100494 lsr = kmalloc(1, GFP_KERNEL); /* Sigh, that's right, just one byte,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 as not all platforms can do DMA
496 from stack */
497 if (!lsr) {
498 kfree(oedb);
499 return -ENOMEM;
500 }
501 /* Read the DMA Count Registers */
Alan Cox2742fd82008-04-29 14:45:15 +0100502 status = read_ram(port->port->serial->dev, port->dma_address,
503 sizeof(*oedb), (void *)oedb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (status)
505 goto exit_is_tx_active;
506
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700507 dev_dbg(&port->port->dev, "%s - XByteCount 0x%X\n", __func__, oedb->XByteCount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /* and the LSR */
Alan Cox2742fd82008-04-29 14:45:15 +0100510 status = read_ram(port->port->serial->dev,
511 port->uart_base + UMPMEM_OFFS_UART_LSR, 1, lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if (status)
514 goto exit_is_tx_active;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700515 dev_dbg(&port->port->dev, "%s - LSR = 0x%X\n", __func__, *lsr);
Alan Cox2742fd82008-04-29 14:45:15 +0100516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* If either buffer has data or we are transmitting then return TRUE */
Alan Cox2742fd82008-04-29 14:45:15 +0100518 if ((oedb->XByteCount & 0x80) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 bytes_left += 64;
520
Alan Cox2742fd82008-04-29 14:45:15 +0100521 if ((*lsr & UMP_UART_LSR_TX_MASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 bytes_left += 1;
523
524 /* We return Not Active if we get any kind of error */
525exit_is_tx_active:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700526 dev_dbg(&port->port->dev, "%s - return %d\n", __func__, bytes_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 kfree(lsr);
529 kfree(oedb);
530 return bytes_left;
531}
532
Alan Cox2742fd82008-04-29 14:45:15 +0100533static void chase_port(struct edgeport_port *port, unsigned long timeout,
534 int flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 int baud_rate;
Alan Cox4a90f092008-10-13 10:39:46 +0100537 struct tty_struct *tty = tty_port_tty_get(&port->port->port);
Johan Hovoldaf581052012-03-26 20:31:38 +0200538 struct usb_serial *serial = port->port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 wait_queue_t wait;
540 unsigned long flags;
541
542 if (!timeout)
Alan Cox2742fd82008-04-29 14:45:15 +0100543 timeout = (HZ * EDGE_CLOSING_WAIT)/100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /* wait for data to drain from the buffer */
546 spin_lock_irqsave(&port->ep_lock, flags);
547 init_waitqueue_entry(&wait, current);
548 add_wait_queue(&tty->write_wait, &wait);
549 for (;;) {
550 set_current_state(TASK_INTERRUPTIBLE);
Johan Hovoldd733cec2010-05-19 00:01:37 +0200551 if (kfifo_len(&port->write_fifo) == 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 || timeout == 0 || signal_pending(current)
Johan Hovoldaf581052012-03-26 20:31:38 +0200553 || serial->disconnected)
Alan Cox2742fd82008-04-29 14:45:15 +0100554 /* disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 break;
556 spin_unlock_irqrestore(&port->ep_lock, flags);
557 timeout = schedule_timeout(timeout);
558 spin_lock_irqsave(&port->ep_lock, flags);
559 }
560 set_current_state(TASK_RUNNING);
561 remove_wait_queue(&tty->write_wait, &wait);
562 if (flush)
Johan Hovoldd733cec2010-05-19 00:01:37 +0200563 kfifo_reset_out(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 spin_unlock_irqrestore(&port->ep_lock, flags);
Alan Cox4a90f092008-10-13 10:39:46 +0100565 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /* wait for data to drain from the device */
568 timeout += jiffies;
569 while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
Johan Hovoldaf581052012-03-26 20:31:38 +0200570 && !serial->disconnected) {
Alan Cox2742fd82008-04-29 14:45:15 +0100571 /* not disconnected */
572 if (!tx_active(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 break;
574 msleep(10);
575 }
576
577 /* disconnected */
Johan Hovoldaf581052012-03-26 20:31:38 +0200578 if (serial->disconnected)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return;
580
581 /* wait one more character time, based on baud rate */
Alan Cox2742fd82008-04-29 14:45:15 +0100582 /* (tx_active doesn't seem to wait for the last byte) */
583 baud_rate = port->baud_rate;
584 if (baud_rate == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 baud_rate = 50;
Julia Lawalldfa5ec72008-03-04 15:25:11 -0800586 msleep(max(1, DIV_ROUND_UP(10000, baud_rate)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
Alan Cox2742fd82008-04-29 14:45:15 +0100589static int choose_config(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Alan Cox2742fd82008-04-29 14:45:15 +0100591 /*
592 * There may be multiple configurations on this device, in which case
593 * we would need to read and parse all of them to find out which one
594 * we want. However, we just support one config at this point,
595 * configuration # 1, which is Config Descriptor 0.
596 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700598 dev_dbg(&dev->dev, "%s - Number of Interfaces = %d\n",
599 __func__, dev->config->desc.bNumInterfaces);
600 dev_dbg(&dev->dev, "%s - MAX Power = %d\n",
601 __func__, dev->config->desc.bMaxPower * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (dev->config->desc.bNumInterfaces != 1) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700604 dev_err(&dev->dev, "%s - bNumInterfaces is not 1, ERROR!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return -ENODEV;
606 }
607
608 return 0;
609}
610
Alan Cox2742fd82008-04-29 14:45:15 +0100611static int read_rom(struct edgeport_serial *serial,
612 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 int status;
615
616 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
Alan Cox2742fd82008-04-29 14:45:15 +0100617 status = read_download_mem(serial->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 start_address,
619 length,
620 serial->TI_I2C_Type,
621 buffer);
622 } else {
Alan Cox2742fd82008-04-29 14:45:15 +0100623 status = read_boot_mem(serial, start_address, length,
624 buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return status;
627}
628
Alan Cox2742fd82008-04-29 14:45:15 +0100629static int write_rom(struct edgeport_serial *serial, int start_address,
630 int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 if (serial->product_info.TiMode == TI_MODE_BOOT)
Alan Cox2742fd82008-04-29 14:45:15 +0100633 return write_boot_mem(serial, start_address, length,
634 buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD)
Alan Cox2742fd82008-04-29 14:45:15 +0100637 return write_i2c_mem(serial, start_address, length,
638 serial->TI_I2C_Type, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return -EINVAL;
640}
641
642
643
644/* Read a descriptor header from I2C based on type */
Alan Cox2742fd82008-04-29 14:45:15 +0100645static int get_descriptor_addr(struct edgeport_serial *serial,
646 int desc_type, struct ti_i2c_desc *rom_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 int start_address;
649 int status;
650
651 /* Search for requested descriptor in I2C */
652 start_address = 2;
653 do {
Alan Cox2742fd82008-04-29 14:45:15 +0100654 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 start_address,
656 sizeof(struct ti_i2c_desc),
Alan Cox2742fd82008-04-29 14:45:15 +0100657 (__u8 *)rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (status)
659 return 0;
660
661 if (rom_desc->Type == desc_type)
662 return start_address;
663
Alan Cox2742fd82008-04-29 14:45:15 +0100664 start_address = start_address + sizeof(struct ti_i2c_desc)
665 + rom_desc->Size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 } while ((start_address < TI_MAX_I2C_SIZE) && rom_desc->Type);
Alan Cox2742fd82008-04-29 14:45:15 +0100668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 0;
670}
671
672/* Validate descriptor checksum */
Alan Cox2742fd82008-04-29 14:45:15 +0100673static int valid_csum(struct ti_i2c_desc *rom_desc, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 __u16 i;
676 __u8 cs = 0;
677
Alan Cox2742fd82008-04-29 14:45:15 +0100678 for (i = 0; i < rom_desc->Size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 cs = (__u8)(cs + buffer[i]);
Alan Cox2742fd82008-04-29 14:45:15 +0100680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (cs != rom_desc->CheckSum) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700682 pr_debug("%s - Mismatch %x - %x", __func__, rom_desc->CheckSum, cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -EINVAL;
684 }
685 return 0;
686}
687
688/* Make sure that the I2C image is good */
Alan Cox2742fd82008-04-29 14:45:15 +0100689static int check_i2c_image(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 struct device *dev = &serial->serial->dev->dev;
692 int status = 0;
693 struct ti_i2c_desc *rom_desc;
694 int start_address = 2;
695 __u8 *buffer;
696 __u16 ttype;
697
Alan Cox2742fd82008-04-29 14:45:15 +0100698 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (!rom_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +0100700 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return -ENOMEM;
702 }
Alan Cox2742fd82008-04-29 14:45:15 +0100703 buffer = kmalloc(TI_MAX_I2C_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +0100705 dev_err(dev, "%s - out of memory when allocating buffer\n",
706 __func__);
707 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -ENOMEM;
709 }
710
Alan Cox2742fd82008-04-29 14:45:15 +0100711 /* Read the first byte (Signature0) must be 0x52 or 0x10 */
712 status = read_rom(serial, 0, 1, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +0100714 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 if (*buffer != UMP5152 && *buffer != UMP3410) {
Alan Cox2742fd82008-04-29 14:45:15 +0100717 dev_err(dev, "%s - invalid buffer signature\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 status = -ENODEV;
Alan Cox2742fd82008-04-29 14:45:15 +0100719 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721
722 do {
Alan Cox2742fd82008-04-29 14:45:15 +0100723 /* Validate the I2C */
724 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 start_address,
726 sizeof(struct ti_i2c_desc),
727 (__u8 *)rom_desc);
728 if (status)
729 break;
730
Alan Cox2742fd82008-04-29 14:45:15 +0100731 if ((start_address + sizeof(struct ti_i2c_desc) +
732 rom_desc->Size) > TI_MAX_I2C_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 status = -ENODEV;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700734 dev_dbg(dev, "%s - structure too big, erroring out.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 break;
736 }
737
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700738 dev_dbg(dev, "%s Type = 0x%x\n", __func__, rom_desc->Type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Alan Cox2742fd82008-04-29 14:45:15 +0100740 /* Skip type 2 record */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 ttype = rom_desc->Type & 0x0f;
Alan Cox2742fd82008-04-29 14:45:15 +0100742 if (ttype != I2C_DESC_TYPE_FIRMWARE_BASIC
743 && ttype != I2C_DESC_TYPE_FIRMWARE_AUTO) {
744 /* Read the descriptor data */
745 status = read_rom(serial, start_address +
746 sizeof(struct ti_i2c_desc),
747 rom_desc->Size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (status)
749 break;
750
Alan Cox2742fd82008-04-29 14:45:15 +0100751 status = valid_csum(rom_desc, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (status)
753 break;
754 }
Alan Cox2742fd82008-04-29 14:45:15 +0100755 start_address = start_address + sizeof(struct ti_i2c_desc) +
756 rom_desc->Size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Alan Cox2742fd82008-04-29 14:45:15 +0100758 } while ((rom_desc->Type != I2C_DESC_TYPE_ION) &&
759 (start_address < TI_MAX_I2C_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Alan Cox2742fd82008-04-29 14:45:15 +0100761 if ((rom_desc->Type != I2C_DESC_TYPE_ION) ||
762 (start_address > TI_MAX_I2C_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 status = -ENODEV;
764
Alan Cox2742fd82008-04-29 14:45:15 +0100765out:
766 kfree(buffer);
767 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return status;
769}
770
Alan Cox2742fd82008-04-29 14:45:15 +0100771static int get_manuf_info(struct edgeport_serial *serial, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 int status;
774 int start_address;
775 struct ti_i2c_desc *rom_desc;
776 struct edge_ti_manuf_descriptor *desc;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700777 struct device *dev = &serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Alan Cox2742fd82008-04-29 14:45:15 +0100779 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (!rom_desc) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700781 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return -ENOMEM;
783 }
Alan Cox2742fd82008-04-29 14:45:15 +0100784 start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_ION,
785 rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (!start_address) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700788 dev_dbg(dev, "%s - Edge Descriptor not found in I2C\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 status = -ENODEV;
790 goto exit;
791 }
792
Alan Cox2742fd82008-04-29 14:45:15 +0100793 /* Read the descriptor data */
794 status = read_rom(serial, start_address+sizeof(struct ti_i2c_desc),
795 rom_desc->Size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (status)
797 goto exit;
Alan Cox2742fd82008-04-29 14:45:15 +0100798
799 status = valid_csum(rom_desc, buffer);
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 desc = (struct edge_ti_manuf_descriptor *)buffer;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700802 dev_dbg(dev, "%s - IonConfig 0x%x\n", __func__, desc->IonConfig);
803 dev_dbg(dev, "%s - Version %d\n", __func__, desc->Version);
804 dev_dbg(dev, "%s - Cpu/Board 0x%x\n", __func__, desc->CpuRev_BoardRev);
805 dev_dbg(dev, "%s - NumPorts %d\n", __func__, desc->NumPorts);
806 dev_dbg(dev, "%s - NumVirtualPorts %d\n", __func__, desc->NumVirtualPorts);
807 dev_dbg(dev, "%s - TotalPorts %d\n", __func__, desc->TotalPorts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809exit:
Alan Cox2742fd82008-04-29 14:45:15 +0100810 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return status;
812}
813
814/* Build firmware header used for firmware update */
Alan Cox2742fd82008-04-29 14:45:15 +0100815static int build_i2c_fw_hdr(__u8 *header, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 __u8 *buffer;
818 int buffer_size;
819 int i;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530820 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 __u8 cs = 0;
822 struct ti_i2c_desc *i2c_header;
823 struct ti_i2c_image_header *img_header;
824 struct ti_i2c_firmware_rec *firmware_rec;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530825 const struct firmware *fw;
826 const char *fw_name = "edgeport/down3.bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Alan Cox2742fd82008-04-29 14:45:15 +0100828 /* In order to update the I2C firmware we must change the type 2 record
829 * to type 0xF2. This will force the UMP to come up in Boot Mode.
830 * Then while in boot mode, the driver will download the latest
831 * firmware (padded to 15.5k) into the UMP ram. And finally when the
832 * device comes back up in download mode the driver will cause the new
833 * firmware to be copied from the UMP Ram to I2C and the firmware will
834 * update the record type from 0xf2 to 0x02.
835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Alan Cox2742fd82008-04-29 14:45:15 +0100837 /* Allocate a 15.5k buffer + 2 bytes for version number
838 * (Firmware Record) */
839 buffer_size = (((1024 * 16) - 512 ) +
840 sizeof(struct ti_i2c_firmware_rec));
841
842 buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +0100844 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return -ENOMEM;
846 }
Alan Cox2742fd82008-04-29 14:45:15 +0100847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 // Set entire image of 0xffs
Alan Cox2742fd82008-04-29 14:45:15 +0100849 memset(buffer, 0xff, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530851 err = request_firmware(&fw, fw_name, dev);
852 if (err) {
853 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
854 fw_name, err);
855 kfree(buffer);
856 return err;
857 }
858
859 /* Save Download Version Number */
860 OperationalMajorVersion = fw->data[0];
861 OperationalMinorVersion = fw->data[1];
862 OperationalBuildNumber = fw->data[2] | (fw->data[3] << 8);
863
Alan Cox2742fd82008-04-29 14:45:15 +0100864 /* Copy version number into firmware record */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 firmware_rec = (struct ti_i2c_firmware_rec *)buffer;
866
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530867 firmware_rec->Ver_Major = OperationalMajorVersion;
868 firmware_rec->Ver_Minor = OperationalMinorVersion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Alan Cox2742fd82008-04-29 14:45:15 +0100870 /* Pointer to fw_down memory image */
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530871 img_header = (struct ti_i2c_image_header *)&fw->data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Alan Cox2742fd82008-04-29 14:45:15 +0100873 memcpy(buffer + sizeof(struct ti_i2c_firmware_rec),
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530874 &fw->data[4 + sizeof(struct ti_i2c_image_header)],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 le16_to_cpu(img_header->Length));
876
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530877 release_firmware(fw);
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 for (i=0; i < buffer_size; i++) {
880 cs = (__u8)(cs + buffer[i]);
881 }
882
Alan Cox2742fd82008-04-29 14:45:15 +0100883 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Alan Cox2742fd82008-04-29 14:45:15 +0100885 /* Build new header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 i2c_header = (struct ti_i2c_desc *)header;
887 firmware_rec = (struct ti_i2c_firmware_rec*)i2c_header->Data;
Alan Cox2742fd82008-04-29 14:45:15 +0100888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 i2c_header->Type = I2C_DESC_TYPE_FIRMWARE_BLANK;
890 i2c_header->Size = (__u16)buffer_size;
891 i2c_header->CheckSum = cs;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530892 firmware_rec->Ver_Major = OperationalMajorVersion;
893 firmware_rec->Ver_Minor = OperationalMinorVersion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 return 0;
896}
897
898/* Try to figure out what type of I2c we have */
Alan Cox2742fd82008-04-29 14:45:15 +0100899static int i2c_type_bootmode(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700901 struct device *dev = &serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 int status;
Johan Hovolde9305d22009-12-28 23:01:50 +0100903 u8 *data;
904
905 data = kmalloc(1, GFP_KERNEL);
906 if (!data) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700907 dev_err(dev, "%s - out of memory\n", __func__);
Johan Hovolde9305d22009-12-28 23:01:50 +0100908 return -ENOMEM;
909 }
Alan Cox2742fd82008-04-29 14:45:15 +0100910
911 /* Try to read type 2 */
912 status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
Johan Hovolde9305d22009-12-28 23:01:50 +0100913 DTK_ADDR_SPACE_I2C_TYPE_II, 0, data, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700915 dev_dbg(dev, "%s - read 2 status error = %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700917 dev_dbg(dev, "%s - read 2 data = 0x%x\n", __func__, *data);
Johan Hovolde9305d22009-12-28 23:01:50 +0100918 if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700919 dev_dbg(dev, "%s - ROM_TYPE_II\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
Johan Hovolde9305d22009-12-28 23:01:50 +0100921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923
Alan Cox2742fd82008-04-29 14:45:15 +0100924 /* Try to read type 3 */
925 status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
Johan Hovolde9305d22009-12-28 23:01:50 +0100926 DTK_ADDR_SPACE_I2C_TYPE_III, 0, data, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700928 dev_dbg(dev, "%s - read 3 status error = %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700930 dev_dbg(dev, "%s - read 2 data = 0x%x\n", __func__, *data);
Johan Hovolde9305d22009-12-28 23:01:50 +0100931 if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700932 dev_dbg(dev, "%s - ROM_TYPE_III\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_III;
Johan Hovolde9305d22009-12-28 23:01:50 +0100934 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700937 dev_dbg(dev, "%s - Unknown\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
Johan Hovolde9305d22009-12-28 23:01:50 +0100939 status = -ENODEV;
940out:
941 kfree(data);
942 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Alan Cox2742fd82008-04-29 14:45:15 +0100945static int bulk_xfer(struct usb_serial *serial, void *buffer,
946 int length, int *num_sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 int status;
949
Alan Cox2742fd82008-04-29 14:45:15 +0100950 status = usb_bulk_msg(serial->dev,
951 usb_sndbulkpipe(serial->dev,
952 serial->port[0]->bulk_out_endpointAddress),
953 buffer, length, num_sent, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return status;
955}
956
957/* Download given firmware image to the device (IN BOOT MODE) */
Alan Cox2742fd82008-04-29 14:45:15 +0100958static int download_code(struct edgeport_serial *serial, __u8 *image,
959 int image_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
961 int status = 0;
962 int pos;
963 int transfer;
964 int done;
965
Alan Cox2742fd82008-04-29 14:45:15 +0100966 /* Transfer firmware image */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 for (pos = 0; pos < image_length; ) {
Alan Cox2742fd82008-04-29 14:45:15 +0100968 /* Read the next buffer from file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 transfer = image_length - pos;
970 if (transfer > EDGE_FW_BULK_MAX_PACKET_SIZE)
971 transfer = EDGE_FW_BULK_MAX_PACKET_SIZE;
972
Alan Cox2742fd82008-04-29 14:45:15 +0100973 /* Transfer data */
974 status = bulk_xfer(serial->serial, &image[pos],
975 transfer, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (status)
977 break;
Alan Cox2742fd82008-04-29 14:45:15 +0100978 /* Advance buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 pos += done;
980 }
981
982 return status;
983}
984
Alan Cox2742fd82008-04-29 14:45:15 +0100985/* FIXME!!! */
986static int config_boot_dev(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 return 0;
989}
990
Alan Cox2742fd82008-04-29 14:45:15 +0100991static int ti_cpu_rev(struct edge_ti_manuf_descriptor *desc)
992{
993 return TI_GET_CPU_REVISION(desc->CpuRev_BoardRev);
994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/**
997 * DownloadTIFirmware - Download run-time operating firmware to the TI5052
Alan Cox2742fd82008-04-29 14:45:15 +0100998 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 * This routine downloads the main operating code into the TI5052, using the
1000 * boot code already burned into E2PROM or ROM.
1001 */
Alan Cox2742fd82008-04-29 14:45:15 +01001002static int download_fw(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 struct device *dev = &serial->serial->dev->dev;
1005 int status = 0;
1006 int start_address;
1007 struct edge_ti_manuf_descriptor *ti_manuf_desc;
1008 struct usb_interface_descriptor *interface;
1009 int download_cur_ver;
1010 int download_new_ver;
1011
1012 /* This routine is entered by both the BOOT mode and the Download mode
1013 * We can determine which code is running by the reading the config
1014 * descriptor and if we have only one bulk pipe it is in boot mode
1015 */
1016 serial->product_info.hardware_type = HARDWARE_TYPE_TIUMP;
1017
1018 /* Default to type 2 i2c */
1019 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
1020
Alan Cox2742fd82008-04-29 14:45:15 +01001021 status = choose_config(serial->serial->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (status)
1023 return status;
1024
1025 interface = &serial->serial->interface->cur_altsetting->desc;
1026 if (!interface) {
Alan Cox2742fd82008-04-29 14:45:15 +01001027 dev_err(dev, "%s - no interface set, error!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return -ENODEV;
1029 }
1030
Alan Cox2742fd82008-04-29 14:45:15 +01001031 /*
1032 * Setup initial mode -- the default mode 0 is TI_MODE_CONFIGURING
1033 * if we have more than one endpoint we are definitely in download
1034 * mode
1035 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (interface->bNumEndpoints > 1)
1037 serial->product_info.TiMode = TI_MODE_DOWNLOAD;
1038 else
Alan Cox2742fd82008-04-29 14:45:15 +01001039 /* Otherwise we will remain in configuring mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 serial->product_info.TiMode = TI_MODE_CONFIGURING;
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 /********************************************************************/
1043 /* Download Mode */
1044 /********************************************************************/
1045 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
1046 struct ti_i2c_desc *rom_desc;
1047
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001048 dev_dbg(dev, "%s - RUNNING IN DOWNLOAD MODE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Alan Cox2742fd82008-04-29 14:45:15 +01001050 status = check_i2c_image(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001052 dev_dbg(dev, "%s - DOWNLOAD MODE -- BAD I2C\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return status;
1054 }
Alan Cox2742fd82008-04-29 14:45:15 +01001055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 /* Validate Hardware version number
1057 * Read Manufacturing Descriptor from TI Based Edgeport
1058 */
Alan Cox2742fd82008-04-29 14:45:15 +01001059 ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (!ti_manuf_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001061 dev_err(dev, "%s - out of memory.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return -ENOMEM;
1063 }
Alan Cox2742fd82008-04-29 14:45:15 +01001064 status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001066 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return status;
1068 }
1069
Alan Cox2742fd82008-04-29 14:45:15 +01001070 /* Check version number of ION descriptor */
1071 if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001072 dev_dbg(dev, "%s - Wrong CPU Rev %d (Must be 2)\n",
Alan Cox2742fd82008-04-29 14:45:15 +01001073 __func__, ti_cpu_rev(ti_manuf_desc));
1074 kfree(ti_manuf_desc);
1075 return -EINVAL;
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Alan Cox2742fd82008-04-29 14:45:15 +01001078 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (!rom_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001080 dev_err(dev, "%s - out of memory.\n", __func__);
1081 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return -ENOMEM;
1083 }
1084
Alan Cox2742fd82008-04-29 14:45:15 +01001085 /* Search for type 2 record (firmware record) */
1086 start_address = get_descriptor_addr(serial,
1087 I2C_DESC_TYPE_FIRMWARE_BASIC, rom_desc);
1088 if (start_address != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 struct ti_i2c_firmware_rec *firmware_version;
Johan Hovolde9305d22009-12-28 23:01:50 +01001090 u8 *record;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001092 dev_dbg(dev, "%s - Found Type FIRMWARE (Type 2) record\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Alan Cox2742fd82008-04-29 14:45:15 +01001094 firmware_version = kmalloc(sizeof(*firmware_version),
1095 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (!firmware_version) {
Alan Cox2742fd82008-04-29 14:45:15 +01001097 dev_err(dev, "%s - out of memory.\n", __func__);
1098 kfree(rom_desc);
1099 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return -ENOMEM;
1101 }
1102
Alan Cox2742fd82008-04-29 14:45:15 +01001103 /* Validate version number
1104 * Read the descriptor data
1105 */
1106 status = read_rom(serial, start_address +
1107 sizeof(struct ti_i2c_desc),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 sizeof(struct ti_i2c_firmware_rec),
1109 (__u8 *)firmware_version);
1110 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001111 kfree(firmware_version);
1112 kfree(rom_desc);
1113 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return status;
1115 }
1116
Alan Cox2742fd82008-04-29 14:45:15 +01001117 /* Check version number of download with current
1118 version in I2c */
1119 download_cur_ver = (firmware_version->Ver_Major << 8) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 (firmware_version->Ver_Minor);
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301121 download_new_ver = (OperationalMajorVersion << 8) +
1122 (OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001124 dev_dbg(dev, "%s - >> FW Versions Device %d.%d Driver %d.%d\n",
1125 __func__, firmware_version->Ver_Major,
1126 firmware_version->Ver_Minor,
1127 OperationalMajorVersion,
1128 OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Alan Cox2742fd82008-04-29 14:45:15 +01001130 /* Check if we have an old version in the I2C and
1131 update if necessary */
Greg Kroah-Hartman0827a9f2010-08-17 15:15:37 -07001132 if (download_cur_ver < download_new_ver) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001133 dev_dbg(dev, "%s - Update I2C dld from %d.%d to %d.%d\n",
1134 __func__,
1135 firmware_version->Ver_Major,
1136 firmware_version->Ver_Minor,
1137 OperationalMajorVersion,
1138 OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Johan Hovolde9305d22009-12-28 23:01:50 +01001140 record = kmalloc(1, GFP_KERNEL);
1141 if (!record) {
1142 dev_err(dev, "%s - out of memory.\n",
1143 __func__);
1144 kfree(firmware_version);
1145 kfree(rom_desc);
1146 kfree(ti_manuf_desc);
1147 return -ENOMEM;
1148 }
Alan Cox2742fd82008-04-29 14:45:15 +01001149 /* In order to update the I2C firmware we must
1150 * change the type 2 record to type 0xF2. This
1151 * will force the UMP to come up in Boot Mode.
1152 * Then while in boot mode, the driver will
1153 * download the latest firmware (padded to
1154 * 15.5k) into the UMP ram. Finally when the
1155 * device comes back up in download mode the
1156 * driver will cause the new firmware to be
1157 * copied from the UMP Ram to I2C and the
1158 * firmware will update the record type from
1159 * 0xf2 to 0x02.
1160 */
Johan Hovolde9305d22009-12-28 23:01:50 +01001161 *record = I2C_DESC_TYPE_FIRMWARE_BLANK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Alan Cox2742fd82008-04-29 14:45:15 +01001163 /* Change the I2C Firmware record type to
1164 0xf2 to trigger an update */
1165 status = write_rom(serial, start_address,
Johan Hovolde9305d22009-12-28 23:01:50 +01001166 sizeof(*record), record);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (status) {
Johan Hovolde9305d22009-12-28 23:01:50 +01001168 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001169 kfree(firmware_version);
1170 kfree(rom_desc);
1171 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return status;
1173 }
1174
Alan Cox2742fd82008-04-29 14:45:15 +01001175 /* verify the write -- must do this in order
1176 * for write to complete before we do the
1177 * hardware reset
1178 */
1179 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 start_address,
Johan Hovolde9305d22009-12-28 23:01:50 +01001181 sizeof(*record),
1182 record);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (status) {
Johan Hovolde9305d22009-12-28 23:01:50 +01001184 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001185 kfree(firmware_version);
1186 kfree(rom_desc);
1187 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return status;
1189 }
1190
Johan Hovolde9305d22009-12-28 23:01:50 +01001191 if (*record != I2C_DESC_TYPE_FIRMWARE_BLANK) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001192 dev_err(dev, "%s - error resetting device\n", __func__);
Johan Hovolde9305d22009-12-28 23:01:50 +01001193 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001194 kfree(firmware_version);
1195 kfree(rom_desc);
1196 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return -ENODEV;
1198 }
1199
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001200 dev_dbg(dev, "%s - HARDWARE RESET\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Alan Cox2742fd82008-04-29 14:45:15 +01001202 /* Reset UMP -- Back to BOOT MODE */
1203 status = ti_vsend_sync(serial->serial->dev,
1204 UMPC_HARDWARE_RESET,
1205 0, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001207 dev_dbg(dev, "%s - HARDWARE RESET return %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 /* return an error on purpose. */
Johan Hovolde9305d22009-12-28 23:01:50 +01001210 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001211 kfree(firmware_version);
1212 kfree(rom_desc);
1213 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return -ENODEV;
1215 }
Alan Cox2742fd82008-04-29 14:45:15 +01001216 kfree(firmware_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
Alan Cox2742fd82008-04-29 14:45:15 +01001218 /* Search for type 0xF2 record (firmware blank record) */
1219 else if ((start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_FIRMWARE_BLANK, rom_desc)) != 0) {
1220#define HEADER_SIZE (sizeof(struct ti_i2c_desc) + \
1221 sizeof(struct ti_i2c_firmware_rec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 __u8 *header;
1223 __u8 *vheader;
1224
Alan Cox2742fd82008-04-29 14:45:15 +01001225 header = kmalloc(HEADER_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (!header) {
Alan Cox2742fd82008-04-29 14:45:15 +01001227 dev_err(dev, "%s - out of memory.\n", __func__);
1228 kfree(rom_desc);
1229 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return -ENOMEM;
1231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Alan Cox2742fd82008-04-29 14:45:15 +01001233 vheader = kmalloc(HEADER_SIZE, GFP_KERNEL);
1234 if (!vheader) {
1235 dev_err(dev, "%s - out of memory.\n", __func__);
1236 kfree(header);
1237 kfree(rom_desc);
1238 kfree(ti_manuf_desc);
1239 return -ENOMEM;
1240 }
1241
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001242 dev_dbg(dev, "%s - Found Type BLANK FIRMWARE (Type F2) record\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001243
1244 /*
1245 * In order to update the I2C firmware we must change
1246 * the type 2 record to type 0xF2. This will force the
1247 * UMP to come up in Boot Mode. Then while in boot
1248 * mode, the driver will download the latest firmware
1249 * (padded to 15.5k) into the UMP ram. Finally when the
1250 * device comes back up in download mode the driver
1251 * will cause the new firmware to be copied from the
1252 * UMP Ram to I2C and the firmware will update the
1253 * record type from 0xf2 to 0x02.
1254 */
1255 status = build_i2c_fw_hdr(header, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001257 kfree(vheader);
1258 kfree(header);
1259 kfree(rom_desc);
1260 kfree(ti_manuf_desc);
Roel Kluinfd6e5bb2010-08-10 14:29:19 -07001261 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263
Alan Cox2742fd82008-04-29 14:45:15 +01001264 /* Update I2C with type 0xf2 record with correct
1265 size and checksum */
1266 status = write_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 start_address,
1268 HEADER_SIZE,
1269 header);
1270 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001271 kfree(vheader);
1272 kfree(header);
1273 kfree(rom_desc);
1274 kfree(ti_manuf_desc);
Roel Kluin9800eb32010-07-20 15:29:08 -07001275 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Alan Cox2742fd82008-04-29 14:45:15 +01001278 /* verify the write -- must do this in order for
1279 write to complete before we do the hardware reset */
1280 status = read_rom(serial, start_address,
1281 HEADER_SIZE, vheader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001284 dev_dbg(dev, "%s - can't read header back\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001285 kfree(vheader);
1286 kfree(header);
1287 kfree(rom_desc);
1288 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return status;
1290 }
1291 if (memcmp(vheader, header, HEADER_SIZE)) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001292 dev_dbg(dev, "%s - write download record failed\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001293 kfree(vheader);
1294 kfree(header);
1295 kfree(rom_desc);
1296 kfree(ti_manuf_desc);
Roel Kluin1e297092010-07-02 00:36:43 +02001297 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299
Alan Cox2742fd82008-04-29 14:45:15 +01001300 kfree(vheader);
1301 kfree(header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001303 dev_dbg(dev, "%s - Start firmware update\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Alan Cox2742fd82008-04-29 14:45:15 +01001305 /* Tell firmware to copy download image into I2C */
1306 status = ti_vsend_sync(serial->serial->dev,
1307 UMPC_COPY_DNLD_TO_I2C, 0, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001309 dev_dbg(dev, "%s - Update complete 0x%x\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001311 dev_err(dev,
1312 "%s - UMPC_COPY_DNLD_TO_I2C failed\n",
1313 __func__);
1314 kfree(rom_desc);
1315 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 return status;
1317 }
1318 }
1319
1320 // The device is running the download code
Alan Cox2742fd82008-04-29 14:45:15 +01001321 kfree(rom_desc);
1322 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324 }
1325
1326 /********************************************************************/
1327 /* Boot Mode */
1328 /********************************************************************/
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001329 dev_dbg(dev, "%s - RUNNING IN BOOT MODE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Alan Cox2742fd82008-04-29 14:45:15 +01001331 /* Configure the TI device so we can use the BULK pipes for download */
1332 status = config_boot_dev(serial->serial->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (status)
1334 return status;
1335
Alan Cox2742fd82008-04-29 14:45:15 +01001336 if (le16_to_cpu(serial->serial->dev->descriptor.idVendor)
1337 != USB_VENDOR_ID_ION) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001338 dev_dbg(dev, "%s - VID = 0x%x\n", __func__,
1339 le16_to_cpu(serial->serial->dev->descriptor.idVendor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
Alan Cox2742fd82008-04-29 14:45:15 +01001341 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343
Alan Cox2742fd82008-04-29 14:45:15 +01001344 /* We have an ION device (I2c Must be programmed)
1345 Determine I2C image type */
1346 if (i2c_type_bootmode(serial))
1347 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Alan Cox2742fd82008-04-29 14:45:15 +01001349 /* Check for ION Vendor ID and that the I2C is valid */
1350 if (!check_i2c_image(serial)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 struct ti_i2c_image_header *header;
1352 int i;
1353 __u8 cs = 0;
1354 __u8 *buffer;
1355 int buffer_size;
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301356 int err;
1357 const struct firmware *fw;
1358 const char *fw_name = "edgeport/down3.bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 /* Validate Hardware version number
1361 * Read Manufacturing Descriptor from TI Based Edgeport
1362 */
Alan Cox2742fd82008-04-29 14:45:15 +01001363 ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (!ti_manuf_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001365 dev_err(dev, "%s - out of memory.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return -ENOMEM;
1367 }
Alan Cox2742fd82008-04-29 14:45:15 +01001368 status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001370 kfree(ti_manuf_desc);
1371 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
1373
Alan Cox2742fd82008-04-29 14:45:15 +01001374 /* Check for version 2 */
1375 if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001376 dev_dbg(dev, "%s - Wrong CPU Rev %d (Must be 2)\n",
1377 __func__, ti_cpu_rev(ti_manuf_desc));
Alan Cox2742fd82008-04-29 14:45:15 +01001378 kfree(ti_manuf_desc);
1379 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381
Alan Cox2742fd82008-04-29 14:45:15 +01001382 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 /*
Alan Cox2742fd82008-04-29 14:45:15 +01001385 * In order to update the I2C firmware we must change the type
1386 * 2 record to type 0xF2. This will force the UMP to come up
1387 * in Boot Mode. Then while in boot mode, the driver will
1388 * download the latest firmware (padded to 15.5k) into the
1389 * UMP ram. Finally when the device comes back up in download
1390 * mode the driver will cause the new firmware to be copied
1391 * from the UMP Ram to I2C and the firmware will update the
1392 * record type from 0xf2 to 0x02.
1393 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 * Do we really have to copy the whole firmware image,
1395 * or could we do this in place!
1396 */
1397
Alan Cox2742fd82008-04-29 14:45:15 +01001398 /* Allocate a 15.5k buffer + 3 byte header */
1399 buffer_size = (((1024 * 16) - 512) +
1400 sizeof(struct ti_i2c_image_header));
1401 buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +01001403 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return -ENOMEM;
1405 }
Alan Cox2742fd82008-04-29 14:45:15 +01001406
1407 /* Initialize the buffer to 0xff (pad the buffer) */
1408 memset(buffer, 0xff, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301410 err = request_firmware(&fw, fw_name, dev);
1411 if (err) {
1412 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
1413 fw_name, err);
1414 kfree(buffer);
1415 return err;
1416 }
1417 memcpy(buffer, &fw->data[4], fw->size - 4);
1418 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Alan Cox2742fd82008-04-29 14:45:15 +01001420 for (i = sizeof(struct ti_i2c_image_header);
1421 i < buffer_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 cs = (__u8)(cs + buffer[i]);
1423 }
Alan Cox2742fd82008-04-29 14:45:15 +01001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 header = (struct ti_i2c_image_header *)buffer;
Alan Cox2742fd82008-04-29 14:45:15 +01001426
1427 /* update length and checksum after padding */
1428 header->Length = cpu_to_le16((__u16)(buffer_size -
1429 sizeof(struct ti_i2c_image_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 header->CheckSum = cs;
1431
Alan Cox2742fd82008-04-29 14:45:15 +01001432 /* Download the operational code */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001433 dev_dbg(dev, "%s - Downloading operational code image (TI UMP)\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001434 status = download_code(serial, buffer, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Alan Cox2742fd82008-04-29 14:45:15 +01001436 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001439 dev_dbg(dev, "%s - Error downloading operational code image\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return status;
1441 }
1442
Alan Cox2742fd82008-04-29 14:45:15 +01001443 /* Device will reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 serial->product_info.TiMode = TI_MODE_TRANSITIONING;
1445
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001446 dev_dbg(dev, "%s - Download successful -- Device rebooting...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 /* return an error on purpose */
1449 return -ENODEV;
1450 }
1451
Alan Cox2742fd82008-04-29 14:45:15 +01001452stayinbootmode:
1453 /* Eprom is invalid or blank stay in boot mode */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001454 dev_dbg(dev, "%s - STAYING IN BOOT MODE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 serial->product_info.TiMode = TI_MODE_BOOT;
1456
1457 return 0;
1458}
1459
1460
Alan Cox2742fd82008-04-29 14:45:15 +01001461static int ti_do_config(struct edgeport_port *port, int feature, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 int port_number = port->port->number - port->port->serial->minor;
Alan Cox2742fd82008-04-29 14:45:15 +01001464 on = !!on; /* 1 or 0 not bitmask */
1465 return send_cmd(port->port->serial->dev,
1466 feature, (__u8)(UMPM_UART1_PORT + port_number),
1467 on, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Alan Cox2742fd82008-04-29 14:45:15 +01001471static int restore_mcr(struct edgeport_port *port, __u8 mcr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473 int status = 0;
1474
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001475 dev_dbg(&port->port->dev, "%s - %x\n", __func__, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Alan Cox2742fd82008-04-29 14:45:15 +01001477 status = ti_do_config(port, UMPC_SET_CLR_DTR, mcr & MCR_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (status)
1479 return status;
Alan Cox2742fd82008-04-29 14:45:15 +01001480 status = ti_do_config(port, UMPC_SET_CLR_RTS, mcr & MCR_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (status)
1482 return status;
Alan Cox2742fd82008-04-29 14:45:15 +01001483 return ti_do_config(port, UMPC_SET_CLR_LOOPBACK, mcr & MCR_LOOPBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486/* Convert TI LSR to standard UART flags */
Alan Cox2742fd82008-04-29 14:45:15 +01001487static __u8 map_line_status(__u8 ti_lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 __u8 lsr = 0;
1490
1491#define MAP_FLAG(flagUmp, flagUart) \
1492 if (ti_lsr & flagUmp) \
1493 lsr |= flagUart;
1494
1495 MAP_FLAG(UMP_UART_LSR_OV_MASK, LSR_OVER_ERR) /* overrun */
1496 MAP_FLAG(UMP_UART_LSR_PE_MASK, LSR_PAR_ERR) /* parity error */
1497 MAP_FLAG(UMP_UART_LSR_FE_MASK, LSR_FRM_ERR) /* framing error */
1498 MAP_FLAG(UMP_UART_LSR_BR_MASK, LSR_BREAK) /* break detected */
Alan Cox2742fd82008-04-29 14:45:15 +01001499 MAP_FLAG(UMP_UART_LSR_RX_MASK, LSR_RX_AVAIL) /* rx data available */
1500 MAP_FLAG(UMP_UART_LSR_TX_MASK, LSR_TX_EMPTY) /* tx hold reg empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502#undef MAP_FLAG
1503
1504 return lsr;
1505}
1506
Alan Cox2742fd82008-04-29 14:45:15 +01001507static void handle_new_msr(struct edgeport_port *edge_port, __u8 msr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 struct async_icount *icount;
1510 struct tty_struct *tty;
1511
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001512 dev_dbg(&edge_port->port->dev, "%s - %02x\n", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Alan Cox2742fd82008-04-29 14:45:15 +01001514 if (msr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
1515 EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 icount = &edge_port->icount;
1517
1518 /* update input line counters */
1519 if (msr & EDGEPORT_MSR_DELTA_CTS)
1520 icount->cts++;
1521 if (msr & EDGEPORT_MSR_DELTA_DSR)
1522 icount->dsr++;
1523 if (msr & EDGEPORT_MSR_DELTA_CD)
1524 icount->dcd++;
1525 if (msr & EDGEPORT_MSR_DELTA_RI)
1526 icount->rng++;
Alan Cox2742fd82008-04-29 14:45:15 +01001527 wake_up_interruptible(&edge_port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529
1530 /* Save the new modem status */
1531 edge_port->shadow_msr = msr & 0xf0;
1532
Alan Cox4a90f092008-10-13 10:39:46 +01001533 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /* handle CTS flow control */
1535 if (tty && C_CRTSCTS(tty)) {
1536 if (msr & EDGEPORT_MSR_CTS) {
1537 tty->hw_stopped = 0;
1538 tty_wakeup(tty);
1539 } else {
1540 tty->hw_stopped = 1;
1541 }
1542 }
Alan Cox4a90f092008-10-13 10:39:46 +01001543 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
Alan Cox2742fd82008-04-29 14:45:15 +01001546static void handle_new_lsr(struct edgeport_port *edge_port, int lsr_data,
1547 __u8 lsr, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 struct async_icount *icount;
Alan Cox2742fd82008-04-29 14:45:15 +01001550 __u8 new_lsr = (__u8)(lsr & (__u8)(LSR_OVER_ERR | LSR_PAR_ERR |
1551 LSR_FRM_ERR | LSR_BREAK));
Alan Cox4a90f092008-10-13 10:39:46 +01001552 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001554 dev_dbg(&edge_port->port->dev, "%s - %02x\n", __func__, new_lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 edge_port->shadow_lsr = lsr;
1557
Alan Cox2742fd82008-04-29 14:45:15 +01001558 if (new_lsr & LSR_BREAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 /*
1560 * Parity and Framing errors only count if they
1561 * occur exclusive of a break being received.
1562 */
1563 new_lsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 /* Place LSR data byte into Rx buffer */
Alan Cox4a90f092008-10-13 10:39:46 +01001566 if (lsr_data) {
1567 tty = tty_port_tty_get(&edge_port->port->port);
1568 if (tty) {
1569 edge_tty_recv(&edge_port->port->dev, tty, &data, 1);
1570 tty_kref_put(tty);
1571 }
1572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 /* update input line counters */
1575 icount = &edge_port->icount;
1576 if (new_lsr & LSR_BREAK)
1577 icount->brk++;
1578 if (new_lsr & LSR_OVER_ERR)
1579 icount->overrun++;
1580 if (new_lsr & LSR_PAR_ERR)
1581 icount->parity++;
1582 if (new_lsr & LSR_FRM_ERR)
1583 icount->frame++;
1584}
1585
1586
Alan Cox2742fd82008-04-29 14:45:15 +01001587static void edge_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Ming Leicdc97792008-02-24 18:41:47 +08001589 struct edgeport_serial *edge_serial = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 struct usb_serial_port *port;
1591 struct edgeport_port *edge_port;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001592 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 unsigned char *data = urb->transfer_buffer;
1594 int length = urb->actual_length;
1595 int port_number;
1596 int function;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001597 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 __u8 lsr;
1599 __u8 msr;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001600 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001602 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 case 0:
1604 /* success */
1605 break;
1606 case -ECONNRESET:
1607 case -ENOENT:
1608 case -ESHUTDOWN:
1609 /* this urb is terminated, clean up */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001610 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001611 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return;
1613 default:
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001614 dev_err(&urb->dev->dev, "%s - nonzero urb status received: "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001615 "%d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 goto exit;
1617 }
1618
1619 if (!length) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001620 dev_dbg(&urb->dev->dev, "%s - no data in urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 goto exit;
1622 }
1623
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001624 dev = &edge_serial->serial->dev->dev;
1625 usb_serial_debug_data(debug, dev, __func__, length, data);
Alan Cox2742fd82008-04-29 14:45:15 +01001626
1627 if (length != 2) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001628 dev_dbg(dev, "%s - expecting packet of size 2, got %d\n", __func__, length);
Alan Cox2742fd82008-04-29 14:45:15 +01001629 goto exit;
1630 }
1631
1632 port_number = TIUMP_GET_PORT_FROM_CODE(data[0]);
1633 function = TIUMP_GET_FUNC_FROM_CODE(data[0]);
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001634 dev_dbg(dev, "%s - port_number %d, function %d, info 0x%x\n", __func__,
1635 port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 port = edge_serial->serial->port[port_number];
1637 edge_port = usb_get_serial_port_data(port);
1638 if (!edge_port) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001639 dev_dbg(dev, "%s - edge_port not found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return;
1641 }
1642 switch (function) {
1643 case TIUMP_INTERRUPT_CODE_LSR:
Alan Cox2742fd82008-04-29 14:45:15 +01001644 lsr = map_line_status(data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (lsr & UMP_UART_LSR_DATA_MASK) {
Alan Cox2742fd82008-04-29 14:45:15 +01001646 /* Save the LSR event for bulk read
1647 completion routine */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001648 dev_dbg(dev, "%s - LSR Event Port %u LSR Status = %02x\n",
1649 __func__, port_number, lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 edge_port->lsr_event = 1;
1651 edge_port->lsr_mask = lsr;
1652 } else {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001653 dev_dbg(dev, "%s - ===== Port %d LSR Status = %02x ======\n",
1654 __func__, port_number, lsr);
Alan Cox2742fd82008-04-29 14:45:15 +01001655 handle_new_lsr(edge_port, 0, lsr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657 break;
1658
Alan Cox2742fd82008-04-29 14:45:15 +01001659 case TIUMP_INTERRUPT_CODE_MSR: /* MSR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 /* Copy MSR from UMP */
1661 msr = data[1];
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001662 dev_dbg(dev, "%s - ===== Port %u MSR Status = %02x ======\n",
1663 __func__, port_number, msr);
Alan Cox2742fd82008-04-29 14:45:15 +01001664 handle_new_msr(edge_port, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
1666
1667 default:
Alan Cox2742fd82008-04-29 14:45:15 +01001668 dev_err(&urb->dev->dev,
1669 "%s - Unknown Interrupt code from UMP %x\n",
1670 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 break;
Alan Cox2742fd82008-04-29 14:45:15 +01001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
1674
1675exit:
Alan Cox2742fd82008-04-29 14:45:15 +01001676 retval = usb_submit_urb(urb, GFP_ATOMIC);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001677 if (retval)
Alan Cox2742fd82008-04-29 14:45:15 +01001678 dev_err(&urb->dev->dev,
1679 "%s - usb_submit_urb failed with result %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001680 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
Alan Cox2742fd82008-04-29 14:45:15 +01001683static void edge_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Ming Leicdc97792008-02-24 18:41:47 +08001685 struct edgeport_port *edge_port = urb->context;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001686 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 unsigned char *data = urb->transfer_buffer;
1688 struct tty_struct *tty;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001689 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 int port_number;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001691 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001693 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 case 0:
1695 /* success */
1696 break;
1697 case -ECONNRESET:
1698 case -ENOENT:
1699 case -ESHUTDOWN:
1700 /* this urb is terminated, clean up */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001701 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return;
1703 default:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001704 dev_err(&urb->dev->dev, "%s - nonzero read bulk status received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001707 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 goto exit;
1709
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001710 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001711 dev_err(&urb->dev->dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 return;
1713 }
1714
1715 port_number = edge_port->port->number - edge_port->port->serial->minor;
1716
1717 if (edge_port->lsr_event) {
1718 edge_port->lsr_event = 0;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001719 dev_dbg(dev, "%s ===== Port %u LSR Status = %02x, Data = %02x ======\n",
1720 __func__, port_number, edge_port->lsr_mask, *data);
Alan Cox2742fd82008-04-29 14:45:15 +01001721 handle_new_lsr(edge_port, 1, edge_port->lsr_mask, *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 /* Adjust buffer length/pointer */
1723 --urb->actual_length;
1724 ++data;
1725 }
1726
Alan Cox4a90f092008-10-13 10:39:46 +01001727 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (tty && urb->actual_length) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001729 usb_serial_debug_data(debug, dev, __func__, urb->actual_length, data);
Alan Cox2742fd82008-04-29 14:45:15 +01001730 if (edge_port->close_pending)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001731 dev_dbg(dev, "%s - close pending, dropping data on the floor\n",
Alan Cox2742fd82008-04-29 14:45:15 +01001732 __func__);
1733 else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001734 edge_tty_recv(dev, tty, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 edge_port->icount.rx += urb->actual_length;
1736 }
Alan Cox4a90f092008-10-13 10:39:46 +01001737 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739exit:
1740 /* continue read unless stopped */
1741 spin_lock(&edge_port->ep_lock);
Johan Hovold58330412011-11-06 19:06:28 +01001742 if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001743 retval = usb_submit_urb(urb, GFP_ATOMIC);
Johan Hovold58330412011-11-06 19:06:28 +01001744 else if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPED;
Johan Hovold58330412011-11-06 19:06:28 +01001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 spin_unlock(&edge_port->ep_lock);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001748 if (retval)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001749 dev_err(dev, "%s - usb_submit_urb failed with result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
Alan Cox2742fd82008-04-29 14:45:15 +01001752static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
1753 unsigned char *data, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Alan Cox2742fd82008-04-29 14:45:15 +01001755 int queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Alan Cox2742fd82008-04-29 14:45:15 +01001757 queued = tty_insert_flip_string(tty, data, length);
1758 if (queued < length)
1759 dev_err(dev, "%s - dropping data, %d bytes lost\n",
1760 __func__, length - queued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 tty_flip_buffer_push(tty);
1762}
1763
Alan Cox2742fd82008-04-29 14:45:15 +01001764static void edge_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Ming Leicdc97792008-02-24 18:41:47 +08001766 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001768 int status = urb->status;
Alan Cox4a90f092008-10-13 10:39:46 +01001769 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 edge_port->ep_write_urb_in_use = 0;
1772
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001773 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 case 0:
1775 /* success */
1776 break;
1777 case -ECONNRESET:
1778 case -ENOENT:
1779 case -ESHUTDOWN:
1780 /* this urb is terminated, clean up */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001781 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001782 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 return;
1784 default:
Johan Hovold22a416c2012-02-10 13:20:51 +01001785 dev_err_console(port, "%s - nonzero write bulk status "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001786 "received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
1788
1789 /* send any buffered data */
Alan Cox4a90f092008-10-13 10:39:46 +01001790 tty = tty_port_tty_get(&port->port);
1791 edge_send(tty);
1792 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793}
1794
Alan Coxa509a7e2009-09-19 13:13:26 -07001795static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796{
1797 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1798 struct edgeport_serial *edge_serial;
1799 struct usb_device *dev;
1800 struct urb *urb;
1801 int port_number;
1802 int status;
1803 u16 open_settings;
1804 u8 transaction_timeout;
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (edge_port == NULL)
1807 return -ENODEV;
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 port_number = port->number - port->serial->minor;
1810 switch (port_number) {
Alan Cox2742fd82008-04-29 14:45:15 +01001811 case 0:
1812 edge_port->uart_base = UMPMEM_BASE_UART1;
1813 edge_port->dma_address = UMPD_OEDB1_ADDRESS;
1814 break;
1815 case 1:
1816 edge_port->uart_base = UMPMEM_BASE_UART2;
1817 edge_port->dma_address = UMPD_OEDB2_ADDRESS;
1818 break;
1819 default:
1820 dev_err(&port->dev, "Unknown port number!!!\n");
1821 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001824 dev_dbg(&port->dev, "%s - port_number = %d, uart_base = %04x, dma_address = %04x\n",
1825 __func__, port_number, edge_port->uart_base, edge_port->dma_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 dev = port->serial->dev;
1828
Alan Cox2742fd82008-04-29 14:45:15 +01001829 memset(&(edge_port->icount), 0x00, sizeof(edge_port->icount));
1830 init_waitqueue_head(&edge_port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 /* turn off loopback */
Alan Cox2742fd82008-04-29 14:45:15 +01001833 status = ti_do_config(edge_port, UMPC_SET_CLR_LOOPBACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001835 dev_err(&port->dev,
1836 "%s - cannot send clear loopback command, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001837 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return status;
1839 }
Alan Cox2742fd82008-04-29 14:45:15 +01001840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 /* set up the port settings */
Alan Cox95da3102008-07-22 11:09:07 +01001842 if (tty)
Alan Cox4a90f092008-10-13 10:39:46 +01001843 edge_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 /* open up the port */
1846
1847 /* milliseconds to timeout for DMA transfer */
1848 transaction_timeout = 2;
1849
Alan Cox2742fd82008-04-29 14:45:15 +01001850 edge_port->ump_read_timeout =
1851 max(20, ((transaction_timeout * 3) / 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Alan Cox2742fd82008-04-29 14:45:15 +01001853 /* milliseconds to timeout for DMA transfer */
1854 open_settings = (u8)(UMP_DMA_MODE_CONTINOUS |
1855 UMP_PIPE_TRANS_TIMEOUT_ENA |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 (transaction_timeout << 2));
1857
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001858 dev_dbg(&port->dev, "%s - Sending UMPC_OPEN_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 /* Tell TI to open and start the port */
Alan Cox2742fd82008-04-29 14:45:15 +01001861 status = send_cmd(dev, UMPC_OPEN_PORT,
1862 (u8)(UMPM_UART1_PORT + port_number), open_settings, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001864 dev_err(&port->dev, "%s - cannot send open command, %d\n",
1865 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return status;
1867 }
1868
1869 /* Start the DMA? */
Alan Cox2742fd82008-04-29 14:45:15 +01001870 status = send_cmd(dev, UMPC_START_PORT,
1871 (u8)(UMPM_UART1_PORT + port_number), 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001873 dev_err(&port->dev, "%s - cannot send start DMA command, %d\n",
1874 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return status;
1876 }
1877
1878 /* Clear TX and RX buffers in UMP */
Alan Cox2742fd82008-04-29 14:45:15 +01001879 status = purge_port(port, UMP_PORT_DIR_OUT | UMP_PORT_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001881 dev_err(&port->dev,
1882 "%s - cannot send clear buffers command, %d\n",
1883 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 return status;
1885 }
1886
1887 /* Read Initial MSR */
Alan Cox2742fd82008-04-29 14:45:15 +01001888 status = ti_vread_sync(dev, UMPC_READ_MSR, 0,
1889 (__u16)(UMPM_UART1_PORT + port_number),
1890 &edge_port->shadow_msr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001892 dev_err(&port->dev, "%s - cannot send read MSR command, %d\n",
1893 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 return status;
1895 }
1896
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001897 dev_dbg(&port->dev, "ShadowMSR 0x%X\n", edge_port->shadow_msr);
Alan Cox2742fd82008-04-29 14:45:15 +01001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /* Set Initial MCR */
1900 edge_port->shadow_mcr = MCR_RTS | MCR_DTR;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001901 dev_dbg(&port->dev, "ShadowMCR 0x%X\n", edge_port->shadow_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 edge_serial = edge_port->edge_serial;
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001904 if (mutex_lock_interruptible(&edge_serial->es_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return -ERESTARTSYS;
1906 if (edge_serial->num_ports_open == 0) {
Alan Cox2742fd82008-04-29 14:45:15 +01001907 /* we are the first port to open, post the interrupt urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 urb = edge_serial->serial->port[0]->interrupt_in_urb;
1909 if (!urb) {
Alan Cox2742fd82008-04-29 14:45:15 +01001910 dev_err(&port->dev,
1911 "%s - no interrupt urb present, exiting\n",
1912 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 status = -EINVAL;
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001914 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 urb->context = edge_serial;
Alan Cox2742fd82008-04-29 14:45:15 +01001917 status = usb_submit_urb(urb, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001919 dev_err(&port->dev,
1920 "%s - usb_submit_urb failed with value %d\n",
1921 __func__, status);
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001922 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924 }
1925
1926 /*
1927 * reset the data toggle on the bulk endpoints to work around bug in
1928 * host controllers where things get out of sync some times
1929 */
Alan Cox2742fd82008-04-29 14:45:15 +01001930 usb_clear_halt(dev, port->write_urb->pipe);
1931 usb_clear_halt(dev, port->read_urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 /* start up our bulk read urb */
1934 urb = port->read_urb;
1935 if (!urb) {
Alan Cox2742fd82008-04-29 14:45:15 +01001936 dev_err(&port->dev, "%s - no read urb present, exiting\n",
1937 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 status = -EINVAL;
1939 goto unlink_int_urb;
1940 }
1941 edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 urb->context = edge_port;
Alan Cox2742fd82008-04-29 14:45:15 +01001943 status = usb_submit_urb(urb, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001945 dev_err(&port->dev,
1946 "%s - read bulk usb_submit_urb failed with value %d\n",
1947 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 goto unlink_int_urb;
1949 }
1950
1951 ++edge_serial->num_ports_open;
1952
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001953 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955unlink_int_urb:
1956 if (edge_port->edge_serial->num_ports_open == 0)
1957 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001958release_es_lock:
1959 mutex_unlock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return status;
1961}
1962
Alan Cox335f8512009-06-11 12:26:29 +01001963static void edge_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
1965 struct edgeport_serial *edge_serial;
1966 struct edgeport_port *edge_port;
Johan Hovoldaf581052012-03-26 20:31:38 +02001967 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 int port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 edge_serial = usb_get_serial_data(port->serial);
1971 edge_port = usb_get_serial_port_data(port);
Alan Cox2742fd82008-04-29 14:45:15 +01001972 if (edge_serial == NULL || edge_port == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return;
Alan Cox2742fd82008-04-29 14:45:15 +01001974
1975 /* The bulkreadcompletion routine will check
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 * this flag and dump add read data */
1977 edge_port->close_pending = 1;
1978
1979 /* chase the port close and flush */
Alan Cox2742fd82008-04-29 14:45:15 +01001980 chase_port(edge_port, (HZ * closing_wait) / 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 usb_kill_urb(port->read_urb);
1983 usb_kill_urb(port->write_urb);
1984 edge_port->ep_write_urb_in_use = 0;
1985
1986 /* assuming we can still talk to the device,
1987 * send a close port command to it */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001988 dev_dbg(&port->dev, "%s - send umpc_close_port\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 port_number = port->number - port->serial->minor;
Johan Hovoldaf581052012-03-26 20:31:38 +02001990
1991 mutex_lock(&serial->disc_mutex);
1992 if (!serial->disconnected) {
1993 send_cmd(serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 UMPC_CLOSE_PORT,
1995 (__u8)(UMPM_UART1_PORT + port_number),
1996 0,
1997 NULL,
1998 0);
Johan Hovoldaf581052012-03-26 20:31:38 +02001999 }
2000 mutex_unlock(&serial->disc_mutex);
2001
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002002 mutex_lock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 --edge_port->edge_serial->num_ports_open;
2004 if (edge_port->edge_serial->num_ports_open <= 0) {
2005 /* last port is now closed, let's shut down our interrupt urb */
2006 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
2007 edge_port->edge_serial->num_ports_open = 0;
2008 }
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002009 mutex_unlock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 edge_port->close_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
Alan Cox95da3102008-07-22 11:09:07 +01002013static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
2014 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 if (count == 0) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002019 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return 0;
2021 }
2022
2023 if (edge_port == NULL)
2024 return -ENODEV;
2025 if (edge_port->close_pending == 1)
2026 return -ENODEV;
2027
Johan Hovoldd733cec2010-05-19 00:01:37 +02002028 count = kfifo_in_locked(&edge_port->write_fifo, data, count,
2029 &edge_port->ep_lock);
Alan Cox95da3102008-07-22 11:09:07 +01002030 edge_send(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032 return count;
2033}
2034
Alan Cox95da3102008-07-22 11:09:07 +01002035static void edge_send(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
Alan Cox95da3102008-07-22 11:09:07 +01002037 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 int count, result;
2039 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 unsigned long flags;
2041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 spin_lock_irqsave(&edge_port->ep_lock, flags);
2043
2044 if (edge_port->ep_write_urb_in_use) {
2045 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2046 return;
2047 }
2048
Johan Hovoldd733cec2010-05-19 00:01:37 +02002049 count = kfifo_out(&edge_port->write_fifo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 port->write_urb->transfer_buffer,
2051 port->bulk_out_size);
2052
2053 if (count == 0) {
2054 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2055 return;
2056 }
2057
2058 edge_port->ep_write_urb_in_use = 1;
2059
2060 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2061
Alan Cox2742fd82008-04-29 14:45:15 +01002062 usb_serial_debug_data(debug, &port->dev, __func__, count,
2063 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +01002066 port->write_urb->transfer_buffer_length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 /* send the data out the bulk port */
2069 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
2070 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +01002071 dev_err_console(port,
Alan Cox2742fd82008-04-29 14:45:15 +01002072 "%s - failed submitting write urb, error %d\n",
2073 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 edge_port->ep_write_urb_in_use = 0;
Alan Cox2742fd82008-04-29 14:45:15 +01002075 /* TODO: reschedule edge_send */
2076 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 edge_port->icount.tx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 /* wakeup any process waiting for writes to complete */
2080 /* there is now more room in the buffer for new writes */
Alan Cox2742fd82008-04-29 14:45:15 +01002081 if (tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
2084
Alan Cox95da3102008-07-22 11:09:07 +01002085static int edge_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
Alan Cox95da3102008-07-22 11:09:07 +01002087 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2089 int room = 0;
2090 unsigned long flags;
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (edge_port == NULL)
Alan Cox2742fd82008-04-29 14:45:15 +01002093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (edge_port->close_pending == 1)
Alan Cox2742fd82008-04-29 14:45:15 +01002095 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 spin_lock_irqsave(&edge_port->ep_lock, flags);
Johan Hovoldd733cec2010-05-19 00:01:37 +02002098 room = kfifo_avail(&edge_port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2100
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002101 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return room;
2103}
2104
Alan Cox95da3102008-07-22 11:09:07 +01002105static int edge_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
Alan Cox95da3102008-07-22 11:09:07 +01002107 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2109 int chars = 0;
2110 unsigned long flags;
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (edge_port == NULL)
Alan Cox2742fd82008-04-29 14:45:15 +01002113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (edge_port->close_pending == 1)
Alan Cox2742fd82008-04-29 14:45:15 +01002115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 spin_lock_irqsave(&edge_port->ep_lock, flags);
Johan Hovoldd733cec2010-05-19 00:01:37 +02002118 chars = kfifo_len(&edge_port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2120
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002121 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 return chars;
2123}
2124
Alan Cox95da3102008-07-22 11:09:07 +01002125static void edge_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Alan Cox95da3102008-07-22 11:09:07 +01002127 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 int status;
2130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (edge_port == NULL)
2132 return;
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 /* if we are implementing XON/XOFF, send the stop character */
2135 if (I_IXOFF(tty)) {
2136 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01002137 status = edge_write(tty, port, &stop_char, 1);
2138 if (status <= 0) {
2139 dev_err(&port->dev, "%s - failed to write stop character, %d\n", __func__, status);
2140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
2142
2143 /* if we are implementing RTS/CTS, stop reads */
2144 /* and the Edgeport will clear the RTS line */
2145 if (C_CRTSCTS(tty))
2146 stop_read(edge_port);
2147
2148}
2149
Alan Cox95da3102008-07-22 11:09:07 +01002150static void edge_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
Alan Cox95da3102008-07-22 11:09:07 +01002152 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 int status;
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (edge_port == NULL)
2157 return;
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 /* if we are implementing XON/XOFF, send the start character */
2160 if (I_IXOFF(tty)) {
2161 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01002162 status = edge_write(tty, port, &start_char, 1);
2163 if (status <= 0) {
2164 dev_err(&port->dev, "%s - failed to write start character, %d\n", __func__, status);
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 /* if we are implementing RTS/CTS, restart reads */
2168 /* are the Edgeport will assert the RTS line */
2169 if (C_CRTSCTS(tty)) {
2170 status = restart_read(edge_port);
2171 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +01002172 dev_err(&port->dev,
2173 "%s - read bulk usb_submit_urb failed: %d\n",
2174 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 }
2176
2177}
2178
2179static void stop_read(struct edgeport_port *edge_port)
2180{
2181 unsigned long flags;
2182
2183 spin_lock_irqsave(&edge_port->ep_lock, flags);
2184
2185 if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
2186 edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPING;
2187 edge_port->shadow_mcr &= ~MCR_RTS;
2188
2189 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2190}
2191
2192static int restart_read(struct edgeport_port *edge_port)
2193{
2194 struct urb *urb;
2195 int status = 0;
2196 unsigned long flags;
2197
2198 spin_lock_irqsave(&edge_port->ep_lock, flags);
2199
2200 if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPED) {
2201 urb = edge_port->port->read_urb;
Oliver Neukumefdff602007-06-05 10:50:48 +02002202 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
2204 edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
2205 edge_port->shadow_mcr |= MCR_RTS;
2206
2207 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2208
2209 return status;
2210}
2211
Alan Cox95da3102008-07-22 11:09:07 +01002212static void change_port_settings(struct tty_struct *tty,
2213 struct edgeport_port *edge_port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002215 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 struct ump_uart_config *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 int baud;
2218 unsigned cflag;
2219 int status;
Alan Cox2742fd82008-04-29 14:45:15 +01002220 int port_number = edge_port->port->number -
2221 edge_port->port->serial->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002223 dev_dbg(dev, "%s - port %d\n", __func__, edge_port->port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Alan Cox95da3102008-07-22 11:09:07 +01002225 config = kmalloc (sizeof (*config), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (!config) {
Alan Cox2742fd82008-04-29 14:45:15 +01002227 *tty->termios = *old_termios;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002228 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return;
2230 }
2231
2232 cflag = tty->termios->c_cflag;
2233
2234 config->wFlags = 0;
2235
2236 /* These flags must be set */
2237 config->wFlags |= UMP_MASK_UART_FLAGS_RECEIVE_MS_INT;
2238 config->wFlags |= UMP_MASK_UART_FLAGS_AUTO_START_ON_ERR;
2239 config->bUartMode = (__u8)(edge_port->bUartMode);
2240
2241 switch (cflag & CSIZE) {
Alan Cox2742fd82008-04-29 14:45:15 +01002242 case CS5:
2243 config->bDataBits = UMP_UART_CHAR5BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002244 dev_dbg(dev, "%s - data bits = 5\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002245 break;
2246 case CS6:
2247 config->bDataBits = UMP_UART_CHAR6BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002248 dev_dbg(dev, "%s - data bits = 6\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002249 break;
2250 case CS7:
2251 config->bDataBits = UMP_UART_CHAR7BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002252 dev_dbg(dev, "%s - data bits = 7\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002253 break;
2254 default:
2255 case CS8:
2256 config->bDataBits = UMP_UART_CHAR8BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002257 dev_dbg(dev, "%s - data bits = 8\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 break;
2259 }
2260
2261 if (cflag & PARENB) {
2262 if (cflag & PARODD) {
2263 config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
2264 config->bParity = UMP_UART_ODDPARITY;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002265 dev_dbg(dev, "%s - parity = odd\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 } else {
2267 config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
2268 config->bParity = UMP_UART_EVENPARITY;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002269 dev_dbg(dev, "%s - parity = even\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 }
2271 } else {
Alan Cox2742fd82008-04-29 14:45:15 +01002272 config->bParity = UMP_UART_NOPARITY;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002273 dev_dbg(dev, "%s - parity = none\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
2275
2276 if (cflag & CSTOPB) {
2277 config->bStopBits = UMP_UART_STOPBIT2;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002278 dev_dbg(dev, "%s - stop bits = 2\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 } else {
2280 config->bStopBits = UMP_UART_STOPBIT1;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002281 dev_dbg(dev, "%s - stop bits = 1\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
2283
2284 /* figure out the flow control settings */
2285 if (cflag & CRTSCTS) {
2286 config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X_CTS_FLOW;
2287 config->wFlags |= UMP_MASK_UART_FLAGS_RTS_FLOW;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002288 dev_dbg(dev, "%s - RTS/CTS is enabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 } else {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002290 dev_dbg(dev, "%s - RTS/CTS is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 tty->hw_stopped = 0;
2292 restart_read(edge_port);
2293 }
2294
Alan Cox2742fd82008-04-29 14:45:15 +01002295 /* if we are implementing XON/XOFF, set the start and stop
2296 character in the device */
2297 config->cXon = START_CHAR(tty);
2298 config->cXoff = STOP_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Alan Cox2742fd82008-04-29 14:45:15 +01002300 /* if we are implementing INBOUND XON/XOFF */
2301 if (I_IXOFF(tty)) {
2302 config->wFlags |= UMP_MASK_UART_FLAGS_IN_X;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002303 dev_dbg(dev, "%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2304 __func__, config->cXon, config->cXoff);
Alan Cox2742fd82008-04-29 14:45:15 +01002305 } else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002306 dev_dbg(dev, "%s - INBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Alan Cox2742fd82008-04-29 14:45:15 +01002308 /* if we are implementing OUTBOUND XON/XOFF */
2309 if (I_IXON(tty)) {
2310 config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002311 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2312 __func__, config->cXon, config->cXoff);
Alan Cox2742fd82008-04-29 14:45:15 +01002313 } else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002314 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002316 tty->termios->c_cflag &= ~CMSPAR;
2317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 /* Round the baud rate */
2319 baud = tty_get_baud_rate(tty);
2320 if (!baud) {
2321 /* pick a default, any default... */
2322 baud = 9600;
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002323 } else
2324 tty_encode_baud_rate(tty, baud, baud);
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 edge_port->baud_rate = baud;
2327 config->wBaudRate = (__u16)((461550L + baud/2) / baud);
2328
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002329 /* FIXME: Recompute actual baud from divisor here */
2330
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002331 dev_dbg(dev, "%s - baud rate = %d, wBaudRate = %d\n", __func__, baud, config->wBaudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002333 dev_dbg(dev, "wBaudRate: %d\n", (int)(461550L / config->wBaudRate));
2334 dev_dbg(dev, "wFlags: 0x%x\n", config->wFlags);
2335 dev_dbg(dev, "bDataBits: %d\n", config->bDataBits);
2336 dev_dbg(dev, "bParity: %d\n", config->bParity);
2337 dev_dbg(dev, "bStopBits: %d\n", config->bStopBits);
2338 dev_dbg(dev, "cXon: %d\n", config->cXon);
2339 dev_dbg(dev, "cXoff: %d\n", config->cXoff);
2340 dev_dbg(dev, "bUartMode: %d\n", config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
2342 /* move the word values into big endian mode */
Alan Cox2742fd82008-04-29 14:45:15 +01002343 cpu_to_be16s(&config->wFlags);
2344 cpu_to_be16s(&config->wBaudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Alan Cox2742fd82008-04-29 14:45:15 +01002346 status = send_cmd(edge_port->port->serial->dev, UMPC_SET_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 (__u8)(UMPM_UART1_PORT + port_number),
Alan Cox2742fd82008-04-29 14:45:15 +01002348 0, (__u8 *)config, sizeof(*config));
2349 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002350 dev_dbg(dev, "%s - error %d when trying to write config to device\n",
2351 __func__, status);
Alan Cox2742fd82008-04-29 14:45:15 +01002352 kfree(config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
Alan Cox2e0ddd62008-07-22 11:12:33 +01002355static void edge_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +01002356 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
2358 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01002359 unsigned int cflag;
2360
2361 cflag = tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002363 dev_dbg(&port->dev, "%s - clfag %08x iflag %08x\n", __func__,
2364 tty->termios->c_cflag, tty->termios->c_iflag);
2365 dev_dbg(&port->dev, "%s - old clfag %08x old iflag %08x\n", __func__,
2366 old_termios->c_cflag, old_termios->c_iflag);
2367 dev_dbg(&port->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 if (edge_port == NULL)
2370 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 /* change the port settings to the new ones specified */
Alan Cox95da3102008-07-22 11:09:07 +01002372 change_port_settings(tty, edge_port, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
2374
Alan Cox20b9d172011-02-14 16:26:50 +00002375static int edge_tiocmset(struct tty_struct *tty,
Alan Cox2742fd82008-04-29 14:45:15 +01002376 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
Alan Cox95da3102008-07-22 11:09:07 +01002378 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2380 unsigned int mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002381 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Alan Cox3d71fe02008-02-20 21:38:32 +00002383 spin_lock_irqsave(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 mcr = edge_port->shadow_mcr;
2385 if (set & TIOCM_RTS)
2386 mcr |= MCR_RTS;
2387 if (set & TIOCM_DTR)
2388 mcr |= MCR_DTR;
2389 if (set & TIOCM_LOOP)
2390 mcr |= MCR_LOOPBACK;
2391
2392 if (clear & TIOCM_RTS)
2393 mcr &= ~MCR_RTS;
2394 if (clear & TIOCM_DTR)
2395 mcr &= ~MCR_DTR;
2396 if (clear & TIOCM_LOOP)
2397 mcr &= ~MCR_LOOPBACK;
2398
2399 edge_port->shadow_mcr = mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002400 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Alan Cox2742fd82008-04-29 14:45:15 +01002402 restore_mcr(edge_port, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return 0;
2404}
2405
Alan Cox60b33c12011-02-14 16:26:14 +00002406static int edge_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407{
Alan Cox95da3102008-07-22 11:09:07 +01002408 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2410 unsigned int result = 0;
2411 unsigned int msr;
2412 unsigned int mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002413 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Alan Cox3d71fe02008-02-20 21:38:32 +00002415 spin_lock_irqsave(&edge_port->ep_lock, flags);
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 msr = edge_port->shadow_msr;
2418 mcr = edge_port->shadow_mcr;
2419 result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
2420 | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
2421 | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
2422 | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
2423 | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
2424 | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
2425
2426
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002427 dev_dbg(&port->dev, "%s -- %x\n", __func__, result);
Alan Cox3d71fe02008-02-20 21:38:32 +00002428 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 return result;
2431}
2432
Alan Cox0bca1b92010-09-16 18:21:40 +01002433static int edge_get_icount(struct tty_struct *tty,
2434 struct serial_icounter_struct *icount)
2435{
2436 struct usb_serial_port *port = tty->driver_data;
2437 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2438 struct async_icount *ic = &edge_port->icount;
2439
2440 icount->cts = ic->cts;
2441 icount->dsr = ic->dsr;
2442 icount->rng = ic->rng;
2443 icount->dcd = ic->dcd;
2444 icount->tx = ic->tx;
2445 icount->rx = ic->rx;
2446 icount->frame = ic->frame;
2447 icount->parity = ic->parity;
2448 icount->overrun = ic->overrun;
2449 icount->brk = ic->brk;
2450 icount->buf_overrun = ic->buf_overrun;
2451 return 0;
2452}
2453
Alan Cox2742fd82008-04-29 14:45:15 +01002454static int get_serial_info(struct edgeport_port *edge_port,
2455 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456{
2457 struct serial_struct tmp;
2458
2459 if (!retinfo)
2460 return -EFAULT;
2461
2462 memset(&tmp, 0, sizeof(tmp));
2463
2464 tmp.type = PORT_16550A;
2465 tmp.line = edge_port->port->serial->minor;
2466 tmp.port = edge_port->port->number;
2467 tmp.irq = 0;
2468 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2469 tmp.xmit_fifo_size = edge_port->port->bulk_out_size;
2470 tmp.baud_base = 9600;
2471 tmp.close_delay = 5*HZ;
2472 tmp.closing_wait = closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
2474 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2475 return -EFAULT;
2476 return 0;
2477}
2478
Alan Cox00a0d0d2011-02-14 16:27:06 +00002479static int edge_ioctl(struct tty_struct *tty,
Alan Cox2742fd82008-04-29 14:45:15 +01002480 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
Alan Cox95da3102008-07-22 11:09:07 +01002482 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2484 struct async_icount cnow;
2485 struct async_icount cprev;
2486
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002487 dev_dbg(&port->dev, "%s - port %d, cmd = 0x%x\n", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489 switch (cmd) {
Alan Cox2742fd82008-04-29 14:45:15 +01002490 case TIOCGSERIAL:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002491 dev_dbg(&port->dev, "%s - TIOCGSERIAL\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002492 return get_serial_info(edge_port,
2493 (struct serial_struct __user *) arg);
2494 case TIOCMIWAIT:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002495 dev_dbg(&port->dev, "%s - TIOCMIWAIT\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002496 cprev = edge_port->icount;
2497 while (1) {
2498 interruptible_sleep_on(&edge_port->delta_msr_wait);
2499 /* see if a signal did it */
2500 if (signal_pending(current))
2501 return -ERESTARTSYS;
2502 cnow = edge_port->icount;
2503 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2504 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2505 return -EIO; /* no change => error */
2506 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2507 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2508 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2509 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 }
Alan Cox2742fd82008-04-29 14:45:15 +01002512 cprev = cnow;
2513 }
2514 /* not reached */
2515 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 return -ENOIOCTLCMD;
2518}
2519
Alan Cox95da3102008-07-22 11:09:07 +01002520static void edge_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
Alan Cox95da3102008-07-22 11:09:07 +01002522 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2524 int status;
Alan Cox2742fd82008-04-29 14:45:15 +01002525 int bv = 0; /* Off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 /* chase the port close */
Alan Cox2742fd82008-04-29 14:45:15 +01002528 chase_port(edge_port, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Alan Cox95da3102008-07-22 11:09:07 +01002530 if (break_state == -1)
Alan Cox2742fd82008-04-29 14:45:15 +01002531 bv = 1; /* On */
2532 status = ti_do_config(edge_port, UMPC_SET_CLR_BREAK, bv);
2533 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002534 dev_dbg(&port->dev, "%s - error %d sending break set/clear command.\n",
2535 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536}
2537
Alan Cox2742fd82008-04-29 14:45:15 +01002538static int edge_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
2540 struct edgeport_serial *edge_serial;
2541 struct edgeport_port *edge_port;
2542 struct usb_device *dev;
2543 int status;
2544 int i;
2545
2546 dev = serial->dev;
2547
2548 /* create our private serial structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002549 edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (edge_serial == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002551 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 return -ENOMEM;
2553 }
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002554 mutex_init(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 edge_serial->serial = serial;
2556 usb_set_serial_data(serial, edge_serial);
2557
Alan Cox2742fd82008-04-29 14:45:15 +01002558 status = download_fw(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01002560 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 return status;
2562 }
2563
2564 /* set up our port private structures */
2565 for (i = 0; i < serial->num_ports; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002566 edge_port = kzalloc(sizeof(struct edgeport_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 if (edge_port == NULL) {
Alan Cox2742fd82008-04-29 14:45:15 +01002568 dev_err(&serial->dev->dev, "%s - Out of memory\n",
2569 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 goto cleanup;
2571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 spin_lock_init(&edge_port->ep_lock);
Johan Hovoldd733cec2010-05-19 00:01:37 +02002573 if (kfifo_alloc(&edge_port->write_fifo, EDGE_OUT_BUF_SIZE,
2574 GFP_KERNEL)) {
Alan Cox2742fd82008-04-29 14:45:15 +01002575 dev_err(&serial->dev->dev, "%s - Out of memory\n",
2576 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 kfree(edge_port);
2578 goto cleanup;
2579 }
2580 edge_port->port = serial->port[i];
2581 edge_port->edge_serial = edge_serial;
2582 usb_set_serial_port_data(serial->port[i], edge_port);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002583 edge_port->bUartMode = default_uart_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 }
Alan Cox2742fd82008-04-29 14:45:15 +01002585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 return 0;
2587
2588cleanup:
Alan Cox2742fd82008-04-29 14:45:15 +01002589 for (--i; i >= 0; --i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 edge_port = usb_get_serial_port_data(serial->port[i]);
Johan Hovoldd733cec2010-05-19 00:01:37 +02002591 kfifo_free(&edge_port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 kfree(edge_port);
2593 usb_set_serial_port_data(serial->port[i], NULL);
2594 }
Alan Cox2742fd82008-04-29 14:45:15 +01002595 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 usb_set_serial_data(serial, NULL);
2597 return -ENOMEM;
2598}
2599
Alan Sternf9c99bb2009-06-02 11:53:55 -04002600static void edge_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Alan Sternf9c99bb2009-06-02 11:53:55 -04002602}
2603
2604static void edge_release(struct usb_serial *serial)
2605{
2606 int i;
2607 struct edgeport_port *edge_port;
2608
Alan Sternf9c99bb2009-06-02 11:53:55 -04002609 for (i = 0; i < serial->num_ports; ++i) {
2610 edge_port = usb_get_serial_port_data(serial->port[i]);
Johan Hovoldd733cec2010-05-19 00:01:37 +02002611 kfifo_free(&edge_port->write_fifo);
Jesper Juhl0d46c002007-07-16 22:17:25 +02002612 kfree(edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
Jesper Juhl0d46c002007-07-16 22:17:25 +02002614 kfree(usb_get_serial_data(serial));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615}
2616
2617
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002618/* Sysfs Attributes */
2619
2620static ssize_t show_uart_mode(struct device *dev,
2621 struct device_attribute *attr, char *buf)
2622{
2623 struct usb_serial_port *port = to_usb_serial_port(dev);
2624 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2625
2626 return sprintf(buf, "%d\n", edge_port->bUartMode);
2627}
2628
2629static ssize_t store_uart_mode(struct device *dev,
2630 struct device_attribute *attr, const char *valbuf, size_t count)
2631{
2632 struct usb_serial_port *port = to_usb_serial_port(dev);
2633 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2634 unsigned int v = simple_strtoul(valbuf, NULL, 0);
2635
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002636 dev_dbg(dev, "%s: setting uart_mode = %d\n", __func__, v);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002637
2638 if (v < 256)
2639 edge_port->bUartMode = v;
2640 else
Harvey Harrison441b62c2008-03-03 16:08:34 -08002641 dev_err(dev, "%s - uart_mode %d is invalid\n", __func__, v);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002642
2643 return count;
2644}
2645
Alan Cox2742fd82008-04-29 14:45:15 +01002646static DEVICE_ATTR(uart_mode, S_IWUSR | S_IRUGO, show_uart_mode,
2647 store_uart_mode);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002648
2649static int edge_create_sysfs_attrs(struct usb_serial_port *port)
2650{
2651 return device_create_file(&port->dev, &dev_attr_uart_mode);
2652}
2653
2654static int edge_remove_sysfs_attrs(struct usb_serial_port *port)
2655{
2656 device_remove_file(&port->dev, &dev_attr_uart_mode);
2657 return 0;
2658}
2659
2660
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07002661static struct usb_serial_driver edgeport_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002662 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002663 .owner = THIS_MODULE,
2664 .name = "edgeport_ti_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002665 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002666 .description = "Edgeport TI 1 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 .id_table = edgeport_1port_id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 .num_ports = 1,
2669 .open = edge_open,
2670 .close = edge_close,
2671 .throttle = edge_throttle,
2672 .unthrottle = edge_unthrottle,
2673 .attach = edge_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -04002674 .disconnect = edge_disconnect,
2675 .release = edge_release,
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002676 .port_probe = edge_create_sysfs_attrs,
Eric W. Biederman6d443d82012-01-13 21:32:06 -08002677 .port_remove = edge_remove_sysfs_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 .ioctl = edge_ioctl,
2679 .set_termios = edge_set_termios,
2680 .tiocmget = edge_tiocmget,
2681 .tiocmset = edge_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +01002682 .get_icount = edge_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 .write = edge_write,
2684 .write_room = edge_write_room,
2685 .chars_in_buffer = edge_chars_in_buffer,
2686 .break_ctl = edge_break,
2687 .read_int_callback = edge_interrupt_callback,
2688 .read_bulk_callback = edge_bulk_in_callback,
2689 .write_bulk_callback = edge_bulk_out_callback,
2690};
2691
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07002692static struct usb_serial_driver edgeport_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002693 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002694 .owner = THIS_MODULE,
2695 .name = "edgeport_ti_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002696 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002697 .description = "Edgeport TI 2 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 .id_table = edgeport_2port_id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 .num_ports = 2,
2700 .open = edge_open,
2701 .close = edge_close,
2702 .throttle = edge_throttle,
2703 .unthrottle = edge_unthrottle,
2704 .attach = edge_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -04002705 .disconnect = edge_disconnect,
2706 .release = edge_release,
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002707 .port_probe = edge_create_sysfs_attrs,
Eric W. Biederman6d443d82012-01-13 21:32:06 -08002708 .port_remove = edge_remove_sysfs_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 .ioctl = edge_ioctl,
2710 .set_termios = edge_set_termios,
2711 .tiocmget = edge_tiocmget,
2712 .tiocmset = edge_tiocmset,
2713 .write = edge_write,
2714 .write_room = edge_write_room,
2715 .chars_in_buffer = edge_chars_in_buffer,
2716 .break_ctl = edge_break,
2717 .read_int_callback = edge_interrupt_callback,
2718 .read_bulk_callback = edge_bulk_in_callback,
2719 .write_bulk_callback = edge_bulk_out_callback,
2720};
2721
Alan Stern7dbe2462012-02-23 14:56:57 -05002722static struct usb_serial_driver * const serial_drivers[] = {
2723 &edgeport_1port_device, &edgeport_2port_device, NULL
2724};
2725
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002726module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728MODULE_AUTHOR(DRIVER_AUTHOR);
2729MODULE_DESCRIPTION(DRIVER_DESC);
2730MODULE_LICENSE("GPL");
Jaswinder Singhd12b2192008-07-04 23:06:09 +05302731MODULE_FIRMWARE("edgeport/down3.bin");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
2733module_param(debug, bool, S_IRUGO | S_IWUSR);
2734MODULE_PARM_DESC(debug, "Debug enabled or not");
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736module_param(closing_wait, int, S_IRUGO | S_IWUSR);
2737MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs");
2738
2739module_param(ignore_cpu_rev, bool, S_IRUGO | S_IWUSR);
Alan Cox2742fd82008-04-29 14:45:15 +01002740MODULE_PARM_DESC(ignore_cpu_rev,
2741 "Ignore the cpu revision when connecting to a device");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002743module_param(default_uart_mode, int, S_IRUGO | S_IWUSR);
2744MODULE_PARM_DESC(default_uart_mode, "Default uart_mode, 0=RS232, ...");