blob: 60023c2d2a317008d7aab0c78bd5120f77b1597c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static int closing_wait = EDGE_CLOSING_WAIT;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030205static bool ignore_cpu_rev;
Alan Cox2742fd82008-04-29 14:45:15 +0100206static int default_uart_mode; /* RS232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Alan Cox2742fd82008-04-29 14:45:15 +0100208static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
209 unsigned char *data, int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211static void stop_read(struct edgeport_port *edge_port);
212static int restart_read(struct edgeport_port *edge_port);
213
Alan Cox95da3102008-07-22 11:09:07 +0100214static void edge_set_termios(struct tty_struct *tty,
215 struct usb_serial_port *port, struct ktermios *old_termios);
216static void edge_send(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400218/* sysfs attributes */
219static int edge_create_sysfs_attrs(struct usb_serial_port *port);
220static int edge_remove_sysfs_attrs(struct usb_serial_port *port);
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Alan Cox2742fd82008-04-29 14:45:15 +0100223static int ti_vread_sync(struct usb_device *dev, __u8 request,
224 __u16 value, __u16 index, u8 *data, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 int status;
227
Alan Cox2742fd82008-04-29 14:45:15 +0100228 status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
229 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
230 value, index, data, size, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (status < 0)
232 return status;
233 if (status != size) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700234 dev_dbg(&dev->dev, "%s - wanted to write %d, but only wrote %d\n",
235 __func__, size, status);
Alan Cox2742fd82008-04-29 14:45:15 +0100236 return -ECOMM;
237 }
238 return 0;
239}
240
241static int ti_vsend_sync(struct usb_device *dev, __u8 request,
242 __u16 value, __u16 index, u8 *data, int size)
243{
244 int status;
245
246 status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
247 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
248 value, index, data, size, 1000);
249 if (status < 0)
250 return status;
251 if (status != size) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700252 dev_dbg(&dev->dev, "%s - wanted to write %d, but only wrote %d\n",
253 __func__, size, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return -ECOMM;
255 }
256 return 0;
257}
258
Alan Cox2742fd82008-04-29 14:45:15 +0100259static int send_cmd(struct usb_device *dev, __u8 command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 __u8 moduleid, __u16 value, u8 *data,
261 int size)
262{
Alan Cox2742fd82008-04-29 14:45:15 +0100263 return ti_vsend_sync(dev, command, value, moduleid, data, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266/* clear tx/rx buffers and fifo in TI UMP */
Alan Cox2742fd82008-04-29 14:45:15 +0100267static int purge_port(struct usb_serial_port *port, __u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 int port_number = port->number - port->serial->minor;
270
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700271 dev_dbg(&port->dev, "%s - port %d, mask %x\n", __func__, port_number, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Alan Cox2742fd82008-04-29 14:45:15 +0100273 return send_cmd(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 UMPC_PURGE_PORT,
275 (__u8)(UMPM_UART1_PORT + port_number),
276 mask,
277 NULL,
278 0);
279}
280
281/**
Alan Cox2742fd82008-04-29 14:45:15 +0100282 * read_download_mem - Read edgeport memory from TI chip
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 * @dev: usb device pointer
284 * @start_address: Device CPU address at which to read
285 * @length: Length of above data
286 * @address_type: Can read both XDATA and I2C
287 * @buffer: pointer to input data buffer
288 */
Alan Cox2742fd82008-04-29 14:45:15 +0100289static int read_download_mem(struct usb_device *dev, int start_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 int length, __u8 address_type, __u8 *buffer)
291{
292 int status = 0;
293 __u8 read_length;
294 __be16 be_start_address;
Alan Cox2742fd82008-04-29 14:45:15 +0100295
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700296 dev_dbg(&dev->dev, "%s - @ %x for %d\n", __func__, start_address, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* Read in blocks of 64 bytes
299 * (TI firmware can't handle more than 64 byte reads)
300 */
301 while (length) {
302 if (length > 64)
Alan Cox2742fd82008-04-29 14:45:15 +0100303 read_length = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 else
305 read_length = (__u8)length;
306
307 if (read_length > 1) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700308 dev_dbg(&dev->dev, "%s - @ %x for %d\n", __func__, start_address, read_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Alan Cox2742fd82008-04-29 14:45:15 +0100310 be_start_address = cpu_to_be16(start_address);
311 status = ti_vread_sync(dev, UMPC_MEMORY_READ,
312 (__u16)address_type,
313 (__force __u16)be_start_address,
314 buffer, read_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700317 dev_dbg(&dev->dev, "%s - ERROR %x\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return status;
319 }
320
Alan Cox2742fd82008-04-29 14:45:15 +0100321 if (read_length > 1)
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100322 usb_serial_debug_data(&dev->dev, __func__, read_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* Update pointers/length */
325 start_address += read_length;
326 buffer += read_length;
327 length -= read_length;
328 }
Alan Cox2742fd82008-04-29 14:45:15 +0100329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return status;
331}
332
Alan Cox2742fd82008-04-29 14:45:15 +0100333static int read_ram(struct usb_device *dev, int start_address,
334 int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Alan Cox2742fd82008-04-29 14:45:15 +0100336 return read_download_mem(dev, start_address, length,
337 DTK_ADDR_SPACE_XDATA, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/* Read edgeport memory to a given block */
Alan Cox2742fd82008-04-29 14:45:15 +0100341static int read_boot_mem(struct edgeport_serial *serial,
342 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 int status = 0;
345 int i;
346
Alan Cox2742fd82008-04-29 14:45:15 +0100347 for (i = 0; i < length; i++) {
348 status = ti_vread_sync(serial->serial->dev,
349 UMPC_MEMORY_READ, serial->TI_I2C_Type,
350 (__u16)(start_address+i), &buffer[i], 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700352 dev_dbg(&serial->serial->dev->dev, "%s - ERROR %x\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return status;
354 }
355 }
356
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700357 dev_dbg(&serial->serial->dev->dev, "%s - start_address = %x, length = %d\n",
358 __func__, start_address, length);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100359 usb_serial_debug_data(&serial->serial->dev->dev, __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 serial->TiReadI2C = 1;
362
363 return status;
364}
365
366/* Write given block to TI EPROM memory */
Alan Cox2742fd82008-04-29 14:45:15 +0100367static int write_boot_mem(struct edgeport_serial *serial,
368 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 int status = 0;
371 int i;
Johan Hovolde9305d22009-12-28 23:01:50 +0100372 u8 *temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* Must do a read before write */
375 if (!serial->TiReadI2C) {
Johan Hovolde9305d22009-12-28 23:01:50 +0100376 temp = kmalloc(1, GFP_KERNEL);
377 if (!temp) {
378 dev_err(&serial->serial->dev->dev,
379 "%s - out of memory\n", __func__);
380 return -ENOMEM;
381 }
382 status = read_boot_mem(serial, 0, 1, temp);
383 kfree(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (status)
385 return status;
386 }
387
Alan Cox2742fd82008-04-29 14:45:15 +0100388 for (i = 0; i < length; ++i) {
389 status = ti_vsend_sync(serial->serial->dev,
390 UMPC_MEMORY_WRITE, buffer[i],
391 (__u16)(i + start_address), NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (status)
393 return status;
394 }
395
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700396 dev_dbg(&serial->serial->dev->dev, "%s - start_sddr = %x, length = %d\n", __func__, start_address, length);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100397 usb_serial_debug_data(&serial->serial->dev->dev, __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 return status;
400}
401
402
403/* Write edgeport I2C memory to TI chip */
Alan Cox2742fd82008-04-29 14:45:15 +0100404static int write_i2c_mem(struct edgeport_serial *serial,
405 int start_address, int length, __u8 address_type, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700407 struct device *dev = &serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 int status = 0;
409 int write_length;
410 __be16 be_start_address;
411
412 /* We can only send a maximum of 1 aligned byte page at a time */
Alan Cox2742fd82008-04-29 14:45:15 +0100413
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300414 /* calculate the number of bytes left in the first page */
Alan Cox2742fd82008-04-29 14:45:15 +0100415 write_length = EPROM_PAGE_SIZE -
416 (start_address & (EPROM_PAGE_SIZE - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 if (write_length > length)
419 write_length = length;
420
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700421 dev_dbg(dev, "%s - BytesInFirstPage Addr = %x, length = %d\n",
422 __func__, start_address, write_length);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100423 usb_serial_debug_data(dev, __func__, write_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 /* Write first page */
Alan Cox2742fd82008-04-29 14:45:15 +0100426 be_start_address = cpu_to_be16(start_address);
427 status = ti_vsend_sync(serial->serial->dev,
428 UMPC_MEMORY_WRITE, (__u16)address_type,
429 (__force __u16)be_start_address,
430 buffer, write_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700432 dev_dbg(dev, "%s - ERROR %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return status;
434 }
435
436 length -= write_length;
437 start_address += write_length;
438 buffer += write_length;
439
Alan Cox2742fd82008-04-29 14:45:15 +0100440 /* We should be aligned now -- can write
441 max page size bytes at a time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 while (length) {
443 if (length > EPROM_PAGE_SIZE)
444 write_length = EPROM_PAGE_SIZE;
445 else
446 write_length = length;
447
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700448 dev_dbg(dev, "%s - Page Write Addr = %x, length = %d\n",
449 __func__, start_address, write_length);
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100450 usb_serial_debug_data(dev, __func__, write_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 /* Write next page */
Alan Cox2742fd82008-04-29 14:45:15 +0100453 be_start_address = cpu_to_be16(start_address);
454 status = ti_vsend_sync(serial->serial->dev, UMPC_MEMORY_WRITE,
455 (__u16)address_type,
456 (__force __u16)be_start_address,
457 buffer, write_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700459 dev_err(dev, "%s - ERROR %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return status;
461 }
Alan Cox2742fd82008-04-29 14:45:15 +0100462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 length -= write_length;
464 start_address += write_length;
465 buffer += write_length;
466 }
467 return status;
468}
469
470/* Examine the UMP DMA registers and LSR
Alan Cox2742fd82008-04-29 14:45:15 +0100471 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * Check the MSBit of the X and Y DMA byte count registers.
473 * A zero in this bit indicates that the TX DMA buffers are empty
474 * then check the TX Empty bit in the UART.
475 */
Alan Cox2742fd82008-04-29 14:45:15 +0100476static int tx_active(struct edgeport_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 int status;
479 struct out_endpoint_desc_block *oedb;
480 __u8 *lsr;
481 int bytes_left = 0;
482
Alan Cox2742fd82008-04-29 14:45:15 +0100483 oedb = kmalloc(sizeof(*oedb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (!oedb) {
Alan Cox2742fd82008-04-29 14:45:15 +0100485 dev_err(&port->port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return -ENOMEM;
487 }
488
Alan Cox2742fd82008-04-29 14:45:15 +0100489 lsr = kmalloc(1, GFP_KERNEL); /* Sigh, that's right, just one byte,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 as not all platforms can do DMA
491 from stack */
492 if (!lsr) {
493 kfree(oedb);
494 return -ENOMEM;
495 }
496 /* Read the DMA Count Registers */
Alan Cox2742fd82008-04-29 14:45:15 +0100497 status = read_ram(port->port->serial->dev, port->dma_address,
498 sizeof(*oedb), (void *)oedb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (status)
500 goto exit_is_tx_active;
501
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700502 dev_dbg(&port->port->dev, "%s - XByteCount 0x%X\n", __func__, oedb->XByteCount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* and the LSR */
Alan Cox2742fd82008-04-29 14:45:15 +0100505 status = read_ram(port->port->serial->dev,
506 port->uart_base + UMPMEM_OFFS_UART_LSR, 1, lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if (status)
509 goto exit_is_tx_active;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700510 dev_dbg(&port->port->dev, "%s - LSR = 0x%X\n", __func__, *lsr);
Alan Cox2742fd82008-04-29 14:45:15 +0100511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* If either buffer has data or we are transmitting then return TRUE */
Alan Cox2742fd82008-04-29 14:45:15 +0100513 if ((oedb->XByteCount & 0x80) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 bytes_left += 64;
515
Alan Cox2742fd82008-04-29 14:45:15 +0100516 if ((*lsr & UMP_UART_LSR_TX_MASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 bytes_left += 1;
518
519 /* We return Not Active if we get any kind of error */
520exit_is_tx_active:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700521 dev_dbg(&port->port->dev, "%s - return %d\n", __func__, bytes_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 kfree(lsr);
524 kfree(oedb);
525 return bytes_left;
526}
527
Alan Cox2742fd82008-04-29 14:45:15 +0100528static void chase_port(struct edgeport_port *port, unsigned long timeout,
529 int flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 int baud_rate;
Alan Cox4a90f092008-10-13 10:39:46 +0100532 struct tty_struct *tty = tty_port_tty_get(&port->port->port);
Johan Hovoldaf581052012-03-26 20:31:38 +0200533 struct usb_serial *serial = port->port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 wait_queue_t wait;
535 unsigned long flags;
536
537 if (!timeout)
Alan Cox2742fd82008-04-29 14:45:15 +0100538 timeout = (HZ * EDGE_CLOSING_WAIT)/100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* wait for data to drain from the buffer */
541 spin_lock_irqsave(&port->ep_lock, flags);
542 init_waitqueue_entry(&wait, current);
543 add_wait_queue(&tty->write_wait, &wait);
544 for (;;) {
545 set_current_state(TASK_INTERRUPTIBLE);
Johan Hovoldd733cec2010-05-19 00:01:37 +0200546 if (kfifo_len(&port->write_fifo) == 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 || timeout == 0 || signal_pending(current)
Johan Hovoldaf581052012-03-26 20:31:38 +0200548 || serial->disconnected)
Alan Cox2742fd82008-04-29 14:45:15 +0100549 /* disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551 spin_unlock_irqrestore(&port->ep_lock, flags);
552 timeout = schedule_timeout(timeout);
553 spin_lock_irqsave(&port->ep_lock, flags);
554 }
555 set_current_state(TASK_RUNNING);
556 remove_wait_queue(&tty->write_wait, &wait);
557 if (flush)
Johan Hovoldd733cec2010-05-19 00:01:37 +0200558 kfifo_reset_out(&port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 spin_unlock_irqrestore(&port->ep_lock, flags);
Alan Cox4a90f092008-10-13 10:39:46 +0100560 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 /* wait for data to drain from the device */
563 timeout += jiffies;
564 while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
Johan Hovoldaf581052012-03-26 20:31:38 +0200565 && !serial->disconnected) {
Alan Cox2742fd82008-04-29 14:45:15 +0100566 /* not disconnected */
567 if (!tx_active(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
569 msleep(10);
570 }
571
572 /* disconnected */
Johan Hovoldaf581052012-03-26 20:31:38 +0200573 if (serial->disconnected)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return;
575
576 /* wait one more character time, based on baud rate */
Alan Cox2742fd82008-04-29 14:45:15 +0100577 /* (tx_active doesn't seem to wait for the last byte) */
578 baud_rate = port->baud_rate;
579 if (baud_rate == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 baud_rate = 50;
Julia Lawalldfa5ec72008-03-04 15:25:11 -0800581 msleep(max(1, DIV_ROUND_UP(10000, baud_rate)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Alan Cox2742fd82008-04-29 14:45:15 +0100584static int choose_config(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Alan Cox2742fd82008-04-29 14:45:15 +0100586 /*
587 * There may be multiple configurations on this device, in which case
588 * we would need to read and parse all of them to find out which one
589 * we want. However, we just support one config at this point,
590 * configuration # 1, which is Config Descriptor 0.
591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700593 dev_dbg(&dev->dev, "%s - Number of Interfaces = %d\n",
594 __func__, dev->config->desc.bNumInterfaces);
595 dev_dbg(&dev->dev, "%s - MAX Power = %d\n",
596 __func__, dev->config->desc.bMaxPower * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 if (dev->config->desc.bNumInterfaces != 1) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700599 dev_err(&dev->dev, "%s - bNumInterfaces is not 1, ERROR!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return -ENODEV;
601 }
602
603 return 0;
604}
605
Alan Cox2742fd82008-04-29 14:45:15 +0100606static int read_rom(struct edgeport_serial *serial,
607 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 int status;
610
611 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
Alan Cox2742fd82008-04-29 14:45:15 +0100612 status = read_download_mem(serial->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 start_address,
614 length,
615 serial->TI_I2C_Type,
616 buffer);
617 } else {
Alan Cox2742fd82008-04-29 14:45:15 +0100618 status = read_boot_mem(serial, start_address, length,
619 buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return status;
622}
623
Alan Cox2742fd82008-04-29 14:45:15 +0100624static int write_rom(struct edgeport_serial *serial, int start_address,
625 int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 if (serial->product_info.TiMode == TI_MODE_BOOT)
Alan Cox2742fd82008-04-29 14:45:15 +0100628 return write_boot_mem(serial, start_address, length,
629 buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD)
Alan Cox2742fd82008-04-29 14:45:15 +0100632 return write_i2c_mem(serial, start_address, length,
633 serial->TI_I2C_Type, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return -EINVAL;
635}
636
637
638
639/* Read a descriptor header from I2C based on type */
Alan Cox2742fd82008-04-29 14:45:15 +0100640static int get_descriptor_addr(struct edgeport_serial *serial,
641 int desc_type, struct ti_i2c_desc *rom_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 int start_address;
644 int status;
645
646 /* Search for requested descriptor in I2C */
647 start_address = 2;
648 do {
Alan Cox2742fd82008-04-29 14:45:15 +0100649 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 start_address,
651 sizeof(struct ti_i2c_desc),
Alan Cox2742fd82008-04-29 14:45:15 +0100652 (__u8 *)rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (status)
654 return 0;
655
656 if (rom_desc->Type == desc_type)
657 return start_address;
658
Alan Cox2742fd82008-04-29 14:45:15 +0100659 start_address = start_address + sizeof(struct ti_i2c_desc)
660 + rom_desc->Size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 } while ((start_address < TI_MAX_I2C_SIZE) && rom_desc->Type);
Alan Cox2742fd82008-04-29 14:45:15 +0100663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return 0;
665}
666
667/* Validate descriptor checksum */
Alan Cox2742fd82008-04-29 14:45:15 +0100668static int valid_csum(struct ti_i2c_desc *rom_desc, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 __u16 i;
671 __u8 cs = 0;
672
Alan Cox2742fd82008-04-29 14:45:15 +0100673 for (i = 0; i < rom_desc->Size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 cs = (__u8)(cs + buffer[i]);
Alan Cox2742fd82008-04-29 14:45:15 +0100675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (cs != rom_desc->CheckSum) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700677 pr_debug("%s - Mismatch %x - %x", __func__, rom_desc->CheckSum, cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return -EINVAL;
679 }
680 return 0;
681}
682
683/* Make sure that the I2C image is good */
Alan Cox2742fd82008-04-29 14:45:15 +0100684static int check_i2c_image(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 struct device *dev = &serial->serial->dev->dev;
687 int status = 0;
688 struct ti_i2c_desc *rom_desc;
689 int start_address = 2;
690 __u8 *buffer;
691 __u16 ttype;
692
Alan Cox2742fd82008-04-29 14:45:15 +0100693 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (!rom_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +0100695 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return -ENOMEM;
697 }
Alan Cox2742fd82008-04-29 14:45:15 +0100698 buffer = kmalloc(TI_MAX_I2C_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +0100700 dev_err(dev, "%s - out of memory when allocating buffer\n",
701 __func__);
702 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return -ENOMEM;
704 }
705
Alan Cox2742fd82008-04-29 14:45:15 +0100706 /* Read the first byte (Signature0) must be 0x52 or 0x10 */
707 status = read_rom(serial, 0, 1, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +0100709 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (*buffer != UMP5152 && *buffer != UMP3410) {
Alan Cox2742fd82008-04-29 14:45:15 +0100712 dev_err(dev, "%s - invalid buffer signature\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 status = -ENODEV;
Alan Cox2742fd82008-04-29 14:45:15 +0100714 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
717 do {
Alan Cox2742fd82008-04-29 14:45:15 +0100718 /* Validate the I2C */
719 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 start_address,
721 sizeof(struct ti_i2c_desc),
722 (__u8 *)rom_desc);
723 if (status)
724 break;
725
Alan Cox2742fd82008-04-29 14:45:15 +0100726 if ((start_address + sizeof(struct ti_i2c_desc) +
727 rom_desc->Size) > TI_MAX_I2C_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 status = -ENODEV;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700729 dev_dbg(dev, "%s - structure too big, erroring out.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 break;
731 }
732
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700733 dev_dbg(dev, "%s Type = 0x%x\n", __func__, rom_desc->Type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Alan Cox2742fd82008-04-29 14:45:15 +0100735 /* Skip type 2 record */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 ttype = rom_desc->Type & 0x0f;
Alan Cox2742fd82008-04-29 14:45:15 +0100737 if (ttype != I2C_DESC_TYPE_FIRMWARE_BASIC
738 && ttype != I2C_DESC_TYPE_FIRMWARE_AUTO) {
739 /* Read the descriptor data */
740 status = read_rom(serial, start_address +
741 sizeof(struct ti_i2c_desc),
742 rom_desc->Size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (status)
744 break;
745
Alan Cox2742fd82008-04-29 14:45:15 +0100746 status = valid_csum(rom_desc, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (status)
748 break;
749 }
Alan Cox2742fd82008-04-29 14:45:15 +0100750 start_address = start_address + sizeof(struct ti_i2c_desc) +
751 rom_desc->Size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Alan Cox2742fd82008-04-29 14:45:15 +0100753 } while ((rom_desc->Type != I2C_DESC_TYPE_ION) &&
754 (start_address < TI_MAX_I2C_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Alan Cox2742fd82008-04-29 14:45:15 +0100756 if ((rom_desc->Type != I2C_DESC_TYPE_ION) ||
757 (start_address > TI_MAX_I2C_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 status = -ENODEV;
759
Alan Cox2742fd82008-04-29 14:45:15 +0100760out:
761 kfree(buffer);
762 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return status;
764}
765
Alan Cox2742fd82008-04-29 14:45:15 +0100766static int get_manuf_info(struct edgeport_serial *serial, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 int status;
769 int start_address;
770 struct ti_i2c_desc *rom_desc;
771 struct edge_ti_manuf_descriptor *desc;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700772 struct device *dev = &serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Alan Cox2742fd82008-04-29 14:45:15 +0100774 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!rom_desc) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700776 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return -ENOMEM;
778 }
Alan Cox2742fd82008-04-29 14:45:15 +0100779 start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_ION,
780 rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (!start_address) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700783 dev_dbg(dev, "%s - Edge Descriptor not found in I2C\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 status = -ENODEV;
785 goto exit;
786 }
787
Alan Cox2742fd82008-04-29 14:45:15 +0100788 /* Read the descriptor data */
789 status = read_rom(serial, start_address+sizeof(struct ti_i2c_desc),
790 rom_desc->Size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (status)
792 goto exit;
Alan Cox2742fd82008-04-29 14:45:15 +0100793
794 status = valid_csum(rom_desc, buffer);
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 desc = (struct edge_ti_manuf_descriptor *)buffer;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700797 dev_dbg(dev, "%s - IonConfig 0x%x\n", __func__, desc->IonConfig);
798 dev_dbg(dev, "%s - Version %d\n", __func__, desc->Version);
799 dev_dbg(dev, "%s - Cpu/Board 0x%x\n", __func__, desc->CpuRev_BoardRev);
800 dev_dbg(dev, "%s - NumPorts %d\n", __func__, desc->NumPorts);
801 dev_dbg(dev, "%s - NumVirtualPorts %d\n", __func__, desc->NumVirtualPorts);
802 dev_dbg(dev, "%s - TotalPorts %d\n", __func__, desc->TotalPorts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804exit:
Alan Cox2742fd82008-04-29 14:45:15 +0100805 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return status;
807}
808
809/* Build firmware header used for firmware update */
Alan Cox2742fd82008-04-29 14:45:15 +0100810static int build_i2c_fw_hdr(__u8 *header, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 __u8 *buffer;
813 int buffer_size;
814 int i;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530815 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 __u8 cs = 0;
817 struct ti_i2c_desc *i2c_header;
818 struct ti_i2c_image_header *img_header;
819 struct ti_i2c_firmware_rec *firmware_rec;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530820 const struct firmware *fw;
821 const char *fw_name = "edgeport/down3.bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Alan Cox2742fd82008-04-29 14:45:15 +0100823 /* In order to update the I2C firmware we must change the type 2 record
824 * to type 0xF2. This will force the UMP to come up in Boot Mode.
825 * Then while in boot mode, the driver will download the latest
826 * firmware (padded to 15.5k) into the UMP ram. And finally when the
827 * device comes back up in download mode the driver will cause the new
828 * firmware to be copied from the UMP Ram to I2C and the firmware will
829 * update the record type from 0xf2 to 0x02.
830 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Alan Cox2742fd82008-04-29 14:45:15 +0100832 /* Allocate a 15.5k buffer + 2 bytes for version number
833 * (Firmware Record) */
834 buffer_size = (((1024 * 16) - 512 ) +
835 sizeof(struct ti_i2c_firmware_rec));
836
837 buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +0100839 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return -ENOMEM;
841 }
Alan Cox2742fd82008-04-29 14:45:15 +0100842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 // Set entire image of 0xffs
Alan Cox2742fd82008-04-29 14:45:15 +0100844 memset(buffer, 0xff, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530846 err = request_firmware(&fw, fw_name, dev);
847 if (err) {
Greg Kroah-Hartmand9bb03d2012-09-18 16:59:23 +0100848 dev_err(dev, "Failed to load image \"%s\" err %d\n",
849 fw_name, err);
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530850 kfree(buffer);
851 return err;
852 }
853
854 /* Save Download Version Number */
855 OperationalMajorVersion = fw->data[0];
856 OperationalMinorVersion = fw->data[1];
857 OperationalBuildNumber = fw->data[2] | (fw->data[3] << 8);
858
Alan Cox2742fd82008-04-29 14:45:15 +0100859 /* Copy version number into firmware record */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 firmware_rec = (struct ti_i2c_firmware_rec *)buffer;
861
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530862 firmware_rec->Ver_Major = OperationalMajorVersion;
863 firmware_rec->Ver_Minor = OperationalMinorVersion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Alan Cox2742fd82008-04-29 14:45:15 +0100865 /* Pointer to fw_down memory image */
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530866 img_header = (struct ti_i2c_image_header *)&fw->data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Alan Cox2742fd82008-04-29 14:45:15 +0100868 memcpy(buffer + sizeof(struct ti_i2c_firmware_rec),
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530869 &fw->data[4 + sizeof(struct ti_i2c_image_header)],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 le16_to_cpu(img_header->Length));
871
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530872 release_firmware(fw);
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 for (i=0; i < buffer_size; i++) {
875 cs = (__u8)(cs + buffer[i]);
876 }
877
Alan Cox2742fd82008-04-29 14:45:15 +0100878 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Alan Cox2742fd82008-04-29 14:45:15 +0100880 /* Build new header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 i2c_header = (struct ti_i2c_desc *)header;
882 firmware_rec = (struct ti_i2c_firmware_rec*)i2c_header->Data;
Alan Cox2742fd82008-04-29 14:45:15 +0100883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 i2c_header->Type = I2C_DESC_TYPE_FIRMWARE_BLANK;
885 i2c_header->Size = (__u16)buffer_size;
886 i2c_header->CheckSum = cs;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530887 firmware_rec->Ver_Major = OperationalMajorVersion;
888 firmware_rec->Ver_Minor = OperationalMinorVersion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 return 0;
891}
892
893/* Try to figure out what type of I2c we have */
Alan Cox2742fd82008-04-29 14:45:15 +0100894static int i2c_type_bootmode(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700896 struct device *dev = &serial->serial->dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 int status;
Johan Hovolde9305d22009-12-28 23:01:50 +0100898 u8 *data;
899
900 data = kmalloc(1, GFP_KERNEL);
901 if (!data) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700902 dev_err(dev, "%s - out of memory\n", __func__);
Johan Hovolde9305d22009-12-28 23:01:50 +0100903 return -ENOMEM;
904 }
Alan Cox2742fd82008-04-29 14:45:15 +0100905
906 /* Try to read type 2 */
907 status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
Johan Hovolde9305d22009-12-28 23:01:50 +0100908 DTK_ADDR_SPACE_I2C_TYPE_II, 0, data, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700910 dev_dbg(dev, "%s - read 2 status error = %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700912 dev_dbg(dev, "%s - read 2 data = 0x%x\n", __func__, *data);
Johan Hovolde9305d22009-12-28 23:01:50 +0100913 if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700914 dev_dbg(dev, "%s - ROM_TYPE_II\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
Johan Hovolde9305d22009-12-28 23:01:50 +0100916 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918
Alan Cox2742fd82008-04-29 14:45:15 +0100919 /* Try to read type 3 */
920 status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
Johan Hovolde9305d22009-12-28 23:01:50 +0100921 DTK_ADDR_SPACE_I2C_TYPE_III, 0, data, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700923 dev_dbg(dev, "%s - read 3 status error = %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700925 dev_dbg(dev, "%s - read 2 data = 0x%x\n", __func__, *data);
Johan Hovolde9305d22009-12-28 23:01:50 +0100926 if ((!status) && (*data == UMP5152 || *data == UMP3410)) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700927 dev_dbg(dev, "%s - ROM_TYPE_III\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_III;
Johan Hovolde9305d22009-12-28 23:01:50 +0100929 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -0700932 dev_dbg(dev, "%s - Unknown\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
Johan Hovolde9305d22009-12-28 23:01:50 +0100934 status = -ENODEV;
935out:
936 kfree(data);
937 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Alan Cox2742fd82008-04-29 14:45:15 +0100940static int bulk_xfer(struct usb_serial *serial, void *buffer,
941 int length, int *num_sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 int status;
944
Alan Cox2742fd82008-04-29 14:45:15 +0100945 status = usb_bulk_msg(serial->dev,
946 usb_sndbulkpipe(serial->dev,
947 serial->port[0]->bulk_out_endpointAddress),
948 buffer, length, num_sent, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return status;
950}
951
952/* Download given firmware image to the device (IN BOOT MODE) */
Alan Cox2742fd82008-04-29 14:45:15 +0100953static int download_code(struct edgeport_serial *serial, __u8 *image,
954 int image_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 int status = 0;
957 int pos;
958 int transfer;
959 int done;
960
Alan Cox2742fd82008-04-29 14:45:15 +0100961 /* Transfer firmware image */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 for (pos = 0; pos < image_length; ) {
Alan Cox2742fd82008-04-29 14:45:15 +0100963 /* Read the next buffer from file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 transfer = image_length - pos;
965 if (transfer > EDGE_FW_BULK_MAX_PACKET_SIZE)
966 transfer = EDGE_FW_BULK_MAX_PACKET_SIZE;
967
Alan Cox2742fd82008-04-29 14:45:15 +0100968 /* Transfer data */
969 status = bulk_xfer(serial->serial, &image[pos],
970 transfer, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (status)
972 break;
Alan Cox2742fd82008-04-29 14:45:15 +0100973 /* Advance buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 pos += done;
975 }
976
977 return status;
978}
979
Alan Cox2742fd82008-04-29 14:45:15 +0100980/* FIXME!!! */
981static int config_boot_dev(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 return 0;
984}
985
Alan Cox2742fd82008-04-29 14:45:15 +0100986static int ti_cpu_rev(struct edge_ti_manuf_descriptor *desc)
987{
988 return TI_GET_CPU_REVISION(desc->CpuRev_BoardRev);
989}
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991/**
992 * DownloadTIFirmware - Download run-time operating firmware to the TI5052
Alan Cox2742fd82008-04-29 14:45:15 +0100993 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * This routine downloads the main operating code into the TI5052, using the
995 * boot code already burned into E2PROM or ROM.
996 */
Alan Cox2742fd82008-04-29 14:45:15 +0100997static int download_fw(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 struct device *dev = &serial->serial->dev->dev;
1000 int status = 0;
1001 int start_address;
1002 struct edge_ti_manuf_descriptor *ti_manuf_desc;
1003 struct usb_interface_descriptor *interface;
1004 int download_cur_ver;
1005 int download_new_ver;
1006
1007 /* This routine is entered by both the BOOT mode and the Download mode
1008 * We can determine which code is running by the reading the config
1009 * descriptor and if we have only one bulk pipe it is in boot mode
1010 */
1011 serial->product_info.hardware_type = HARDWARE_TYPE_TIUMP;
1012
1013 /* Default to type 2 i2c */
1014 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
1015
Alan Cox2742fd82008-04-29 14:45:15 +01001016 status = choose_config(serial->serial->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (status)
1018 return status;
1019
1020 interface = &serial->serial->interface->cur_altsetting->desc;
1021 if (!interface) {
Alan Cox2742fd82008-04-29 14:45:15 +01001022 dev_err(dev, "%s - no interface set, error!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return -ENODEV;
1024 }
1025
Alan Cox2742fd82008-04-29 14:45:15 +01001026 /*
1027 * Setup initial mode -- the default mode 0 is TI_MODE_CONFIGURING
1028 * if we have more than one endpoint we are definitely in download
1029 * mode
1030 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (interface->bNumEndpoints > 1)
1032 serial->product_info.TiMode = TI_MODE_DOWNLOAD;
1033 else
Alan Cox2742fd82008-04-29 14:45:15 +01001034 /* Otherwise we will remain in configuring mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 serial->product_info.TiMode = TI_MODE_CONFIGURING;
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /********************************************************************/
1038 /* Download Mode */
1039 /********************************************************************/
1040 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
1041 struct ti_i2c_desc *rom_desc;
1042
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001043 dev_dbg(dev, "%s - RUNNING IN DOWNLOAD MODE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Alan Cox2742fd82008-04-29 14:45:15 +01001045 status = check_i2c_image(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001047 dev_dbg(dev, "%s - DOWNLOAD MODE -- BAD I2C\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return status;
1049 }
Alan Cox2742fd82008-04-29 14:45:15 +01001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 /* Validate Hardware version number
1052 * Read Manufacturing Descriptor from TI Based Edgeport
1053 */
Alan Cox2742fd82008-04-29 14:45:15 +01001054 ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (!ti_manuf_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001056 dev_err(dev, "%s - out of memory.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return -ENOMEM;
1058 }
Alan Cox2742fd82008-04-29 14:45:15 +01001059 status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001061 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return status;
1063 }
1064
Alan Cox2742fd82008-04-29 14:45:15 +01001065 /* Check version number of ION descriptor */
1066 if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001067 dev_dbg(dev, "%s - Wrong CPU Rev %d (Must be 2)\n",
Alan Cox2742fd82008-04-29 14:45:15 +01001068 __func__, ti_cpu_rev(ti_manuf_desc));
1069 kfree(ti_manuf_desc);
1070 return -EINVAL;
1071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Alan Cox2742fd82008-04-29 14:45:15 +01001073 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (!rom_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001075 dev_err(dev, "%s - out of memory.\n", __func__);
1076 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return -ENOMEM;
1078 }
1079
Alan Cox2742fd82008-04-29 14:45:15 +01001080 /* Search for type 2 record (firmware record) */
1081 start_address = get_descriptor_addr(serial,
1082 I2C_DESC_TYPE_FIRMWARE_BASIC, rom_desc);
1083 if (start_address != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 struct ti_i2c_firmware_rec *firmware_version;
Johan Hovolde9305d22009-12-28 23:01:50 +01001085 u8 *record;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001087 dev_dbg(dev, "%s - Found Type FIRMWARE (Type 2) record\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Alan Cox2742fd82008-04-29 14:45:15 +01001089 firmware_version = kmalloc(sizeof(*firmware_version),
1090 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!firmware_version) {
Alan Cox2742fd82008-04-29 14:45:15 +01001092 dev_err(dev, "%s - out of memory.\n", __func__);
1093 kfree(rom_desc);
1094 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return -ENOMEM;
1096 }
1097
Alan Cox2742fd82008-04-29 14:45:15 +01001098 /* Validate version number
1099 * Read the descriptor data
1100 */
1101 status = read_rom(serial, start_address +
1102 sizeof(struct ti_i2c_desc),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 sizeof(struct ti_i2c_firmware_rec),
1104 (__u8 *)firmware_version);
1105 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001106 kfree(firmware_version);
1107 kfree(rom_desc);
1108 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return status;
1110 }
1111
Alan Cox2742fd82008-04-29 14:45:15 +01001112 /* Check version number of download with current
1113 version in I2c */
1114 download_cur_ver = (firmware_version->Ver_Major << 8) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 (firmware_version->Ver_Minor);
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301116 download_new_ver = (OperationalMajorVersion << 8) +
1117 (OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001119 dev_dbg(dev, "%s - >> FW Versions Device %d.%d Driver %d.%d\n",
1120 __func__, firmware_version->Ver_Major,
1121 firmware_version->Ver_Minor,
1122 OperationalMajorVersion,
1123 OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Alan Cox2742fd82008-04-29 14:45:15 +01001125 /* Check if we have an old version in the I2C and
1126 update if necessary */
Greg Kroah-Hartman0827a9f2010-08-17 15:15:37 -07001127 if (download_cur_ver < download_new_ver) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001128 dev_dbg(dev, "%s - Update I2C dld from %d.%d to %d.%d\n",
1129 __func__,
1130 firmware_version->Ver_Major,
1131 firmware_version->Ver_Minor,
1132 OperationalMajorVersion,
1133 OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Johan Hovolde9305d22009-12-28 23:01:50 +01001135 record = kmalloc(1, GFP_KERNEL);
1136 if (!record) {
1137 dev_err(dev, "%s - out of memory.\n",
1138 __func__);
1139 kfree(firmware_version);
1140 kfree(rom_desc);
1141 kfree(ti_manuf_desc);
1142 return -ENOMEM;
1143 }
Alan Cox2742fd82008-04-29 14:45:15 +01001144 /* In order to update the I2C firmware we must
1145 * change the type 2 record to type 0xF2. This
1146 * will force the UMP to come up in Boot Mode.
1147 * Then while in boot mode, the driver will
1148 * download the latest firmware (padded to
1149 * 15.5k) into the UMP ram. Finally when the
1150 * device comes back up in download mode the
1151 * driver will cause the new firmware to be
1152 * copied from the UMP Ram to I2C and the
1153 * firmware will update the record type from
1154 * 0xf2 to 0x02.
1155 */
Johan Hovolde9305d22009-12-28 23:01:50 +01001156 *record = I2C_DESC_TYPE_FIRMWARE_BLANK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Alan Cox2742fd82008-04-29 14:45:15 +01001158 /* Change the I2C Firmware record type to
1159 0xf2 to trigger an update */
1160 status = write_rom(serial, start_address,
Johan Hovolde9305d22009-12-28 23:01:50 +01001161 sizeof(*record), record);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (status) {
Johan Hovolde9305d22009-12-28 23:01:50 +01001163 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001164 kfree(firmware_version);
1165 kfree(rom_desc);
1166 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return status;
1168 }
1169
Alan Cox2742fd82008-04-29 14:45:15 +01001170 /* verify the write -- must do this in order
1171 * for write to complete before we do the
1172 * hardware reset
1173 */
1174 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 start_address,
Johan Hovolde9305d22009-12-28 23:01:50 +01001176 sizeof(*record),
1177 record);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (status) {
Johan Hovolde9305d22009-12-28 23:01:50 +01001179 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001180 kfree(firmware_version);
1181 kfree(rom_desc);
1182 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return status;
1184 }
1185
Johan Hovolde9305d22009-12-28 23:01:50 +01001186 if (*record != I2C_DESC_TYPE_FIRMWARE_BLANK) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001187 dev_err(dev, "%s - error resetting device\n", __func__);
Johan Hovolde9305d22009-12-28 23:01:50 +01001188 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001189 kfree(firmware_version);
1190 kfree(rom_desc);
1191 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return -ENODEV;
1193 }
1194
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001195 dev_dbg(dev, "%s - HARDWARE RESET\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Alan Cox2742fd82008-04-29 14:45:15 +01001197 /* Reset UMP -- Back to BOOT MODE */
1198 status = ti_vsend_sync(serial->serial->dev,
1199 UMPC_HARDWARE_RESET,
1200 0, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001202 dev_dbg(dev, "%s - HARDWARE RESET return %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 /* return an error on purpose. */
Johan Hovolde9305d22009-12-28 23:01:50 +01001205 kfree(record);
Alan Cox2742fd82008-04-29 14:45:15 +01001206 kfree(firmware_version);
1207 kfree(rom_desc);
1208 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return -ENODEV;
1210 }
Alan Cox2742fd82008-04-29 14:45:15 +01001211 kfree(firmware_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
Alan Cox2742fd82008-04-29 14:45:15 +01001213 /* Search for type 0xF2 record (firmware blank record) */
1214 else if ((start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_FIRMWARE_BLANK, rom_desc)) != 0) {
1215#define HEADER_SIZE (sizeof(struct ti_i2c_desc) + \
1216 sizeof(struct ti_i2c_firmware_rec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 __u8 *header;
1218 __u8 *vheader;
1219
Alan Cox2742fd82008-04-29 14:45:15 +01001220 header = kmalloc(HEADER_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (!header) {
Alan Cox2742fd82008-04-29 14:45:15 +01001222 dev_err(dev, "%s - out of memory.\n", __func__);
1223 kfree(rom_desc);
1224 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return -ENOMEM;
1226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Alan Cox2742fd82008-04-29 14:45:15 +01001228 vheader = kmalloc(HEADER_SIZE, GFP_KERNEL);
1229 if (!vheader) {
1230 dev_err(dev, "%s - out of memory.\n", __func__);
1231 kfree(header);
1232 kfree(rom_desc);
1233 kfree(ti_manuf_desc);
1234 return -ENOMEM;
1235 }
1236
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001237 dev_dbg(dev, "%s - Found Type BLANK FIRMWARE (Type F2) record\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001238
1239 /*
1240 * In order to update the I2C firmware we must change
1241 * the type 2 record to type 0xF2. This will force the
1242 * UMP to come up in Boot Mode. Then while in boot
1243 * mode, the driver will download the latest firmware
1244 * (padded to 15.5k) into the UMP ram. Finally when the
1245 * device comes back up in download mode the driver
1246 * will cause the new firmware to be copied from the
1247 * UMP Ram to I2C and the firmware will update the
1248 * record type from 0xf2 to 0x02.
1249 */
1250 status = build_i2c_fw_hdr(header, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001252 kfree(vheader);
1253 kfree(header);
1254 kfree(rom_desc);
1255 kfree(ti_manuf_desc);
Roel Kluinfd6e5bb2010-08-10 14:29:19 -07001256 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258
Alan Cox2742fd82008-04-29 14:45:15 +01001259 /* Update I2C with type 0xf2 record with correct
1260 size and checksum */
1261 status = write_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 start_address,
1263 HEADER_SIZE,
1264 header);
1265 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001266 kfree(vheader);
1267 kfree(header);
1268 kfree(rom_desc);
1269 kfree(ti_manuf_desc);
Roel Kluin9800eb32010-07-20 15:29:08 -07001270 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272
Alan Cox2742fd82008-04-29 14:45:15 +01001273 /* verify the write -- must do this in order for
1274 write to complete before we do the hardware reset */
1275 status = read_rom(serial, start_address,
1276 HEADER_SIZE, vheader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001279 dev_dbg(dev, "%s - can't read header back\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001280 kfree(vheader);
1281 kfree(header);
1282 kfree(rom_desc);
1283 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return status;
1285 }
1286 if (memcmp(vheader, header, HEADER_SIZE)) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001287 dev_dbg(dev, "%s - write download record failed\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001288 kfree(vheader);
1289 kfree(header);
1290 kfree(rom_desc);
1291 kfree(ti_manuf_desc);
Roel Kluin1e297092010-07-02 00:36:43 +02001292 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
1294
Alan Cox2742fd82008-04-29 14:45:15 +01001295 kfree(vheader);
1296 kfree(header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001298 dev_dbg(dev, "%s - Start firmware update\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Alan Cox2742fd82008-04-29 14:45:15 +01001300 /* Tell firmware to copy download image into I2C */
1301 status = ti_vsend_sync(serial->serial->dev,
1302 UMPC_COPY_DNLD_TO_I2C, 0, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001304 dev_dbg(dev, "%s - Update complete 0x%x\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001306 dev_err(dev,
1307 "%s - UMPC_COPY_DNLD_TO_I2C failed\n",
1308 __func__);
1309 kfree(rom_desc);
1310 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return status;
1312 }
1313 }
1314
1315 // The device is running the download code
Alan Cox2742fd82008-04-29 14:45:15 +01001316 kfree(rom_desc);
1317 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return 0;
1319 }
1320
1321 /********************************************************************/
1322 /* Boot Mode */
1323 /********************************************************************/
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001324 dev_dbg(dev, "%s - RUNNING IN BOOT MODE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Alan Cox2742fd82008-04-29 14:45:15 +01001326 /* Configure the TI device so we can use the BULK pipes for download */
1327 status = config_boot_dev(serial->serial->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (status)
1329 return status;
1330
Alan Cox2742fd82008-04-29 14:45:15 +01001331 if (le16_to_cpu(serial->serial->dev->descriptor.idVendor)
1332 != USB_VENDOR_ID_ION) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001333 dev_dbg(dev, "%s - VID = 0x%x\n", __func__,
1334 le16_to_cpu(serial->serial->dev->descriptor.idVendor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
Alan Cox2742fd82008-04-29 14:45:15 +01001336 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338
Alan Cox2742fd82008-04-29 14:45:15 +01001339 /* We have an ION device (I2c Must be programmed)
1340 Determine I2C image type */
1341 if (i2c_type_bootmode(serial))
1342 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Alan Cox2742fd82008-04-29 14:45:15 +01001344 /* Check for ION Vendor ID and that the I2C is valid */
1345 if (!check_i2c_image(serial)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct ti_i2c_image_header *header;
1347 int i;
1348 __u8 cs = 0;
1349 __u8 *buffer;
1350 int buffer_size;
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301351 int err;
1352 const struct firmware *fw;
1353 const char *fw_name = "edgeport/down3.bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 /* Validate Hardware version number
1356 * Read Manufacturing Descriptor from TI Based Edgeport
1357 */
Alan Cox2742fd82008-04-29 14:45:15 +01001358 ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 if (!ti_manuf_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001360 dev_err(dev, "%s - out of memory.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -ENOMEM;
1362 }
Alan Cox2742fd82008-04-29 14:45:15 +01001363 status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001365 kfree(ti_manuf_desc);
1366 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
Alan Cox2742fd82008-04-29 14:45:15 +01001369 /* Check for version 2 */
1370 if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001371 dev_dbg(dev, "%s - Wrong CPU Rev %d (Must be 2)\n",
1372 __func__, ti_cpu_rev(ti_manuf_desc));
Alan Cox2742fd82008-04-29 14:45:15 +01001373 kfree(ti_manuf_desc);
1374 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376
Alan Cox2742fd82008-04-29 14:45:15 +01001377 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 /*
Alan Cox2742fd82008-04-29 14:45:15 +01001380 * In order to update the I2C firmware we must change the type
1381 * 2 record to type 0xF2. This will force the UMP to come up
1382 * in Boot Mode. Then while in boot mode, the driver will
1383 * download the latest firmware (padded to 15.5k) into the
1384 * UMP ram. Finally when the device comes back up in download
1385 * mode the driver will cause the new firmware to be copied
1386 * from the UMP Ram to I2C and the firmware will update the
1387 * record type from 0xf2 to 0x02.
1388 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 * Do we really have to copy the whole firmware image,
1390 * or could we do this in place!
1391 */
1392
Alan Cox2742fd82008-04-29 14:45:15 +01001393 /* Allocate a 15.5k buffer + 3 byte header */
1394 buffer_size = (((1024 * 16) - 512) +
1395 sizeof(struct ti_i2c_image_header));
1396 buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +01001398 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -ENOMEM;
1400 }
Alan Cox2742fd82008-04-29 14:45:15 +01001401
1402 /* Initialize the buffer to 0xff (pad the buffer) */
1403 memset(buffer, 0xff, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301405 err = request_firmware(&fw, fw_name, dev);
1406 if (err) {
Greg Kroah-Hartmand9bb03d2012-09-18 16:59:23 +01001407 dev_err(dev, "Failed to load image \"%s\" err %d\n",
1408 fw_name, err);
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301409 kfree(buffer);
1410 return err;
1411 }
1412 memcpy(buffer, &fw->data[4], fw->size - 4);
1413 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Alan Cox2742fd82008-04-29 14:45:15 +01001415 for (i = sizeof(struct ti_i2c_image_header);
1416 i < buffer_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 cs = (__u8)(cs + buffer[i]);
1418 }
Alan Cox2742fd82008-04-29 14:45:15 +01001419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 header = (struct ti_i2c_image_header *)buffer;
Alan Cox2742fd82008-04-29 14:45:15 +01001421
1422 /* update length and checksum after padding */
1423 header->Length = cpu_to_le16((__u16)(buffer_size -
1424 sizeof(struct ti_i2c_image_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 header->CheckSum = cs;
1426
Alan Cox2742fd82008-04-29 14:45:15 +01001427 /* Download the operational code */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001428 dev_dbg(dev, "%s - Downloading operational code image (TI UMP)\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01001429 status = download_code(serial, buffer, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Alan Cox2742fd82008-04-29 14:45:15 +01001431 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 if (status) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001434 dev_dbg(dev, "%s - Error downloading operational code image\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return status;
1436 }
1437
Alan Cox2742fd82008-04-29 14:45:15 +01001438 /* Device will reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 serial->product_info.TiMode = TI_MODE_TRANSITIONING;
1440
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001441 dev_dbg(dev, "%s - Download successful -- Device rebooting...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 /* return an error on purpose */
1444 return -ENODEV;
1445 }
1446
Alan Cox2742fd82008-04-29 14:45:15 +01001447stayinbootmode:
1448 /* Eprom is invalid or blank stay in boot mode */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001449 dev_dbg(dev, "%s - STAYING IN BOOT MODE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 serial->product_info.TiMode = TI_MODE_BOOT;
1451
1452 return 0;
1453}
1454
1455
Alan Cox2742fd82008-04-29 14:45:15 +01001456static int ti_do_config(struct edgeport_port *port, int feature, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
1458 int port_number = port->port->number - port->port->serial->minor;
Alan Cox2742fd82008-04-29 14:45:15 +01001459 on = !!on; /* 1 or 0 not bitmask */
1460 return send_cmd(port->port->serial->dev,
1461 feature, (__u8)(UMPM_UART1_PORT + port_number),
1462 on, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Alan Cox2742fd82008-04-29 14:45:15 +01001466static int restore_mcr(struct edgeport_port *port, __u8 mcr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 int status = 0;
1469
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001470 dev_dbg(&port->port->dev, "%s - %x\n", __func__, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Alan Cox2742fd82008-04-29 14:45:15 +01001472 status = ti_do_config(port, UMPC_SET_CLR_DTR, mcr & MCR_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (status)
1474 return status;
Alan Cox2742fd82008-04-29 14:45:15 +01001475 status = ti_do_config(port, UMPC_SET_CLR_RTS, mcr & MCR_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (status)
1477 return status;
Alan Cox2742fd82008-04-29 14:45:15 +01001478 return ti_do_config(port, UMPC_SET_CLR_LOOPBACK, mcr & MCR_LOOPBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481/* Convert TI LSR to standard UART flags */
Alan Cox2742fd82008-04-29 14:45:15 +01001482static __u8 map_line_status(__u8 ti_lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
1484 __u8 lsr = 0;
1485
1486#define MAP_FLAG(flagUmp, flagUart) \
1487 if (ti_lsr & flagUmp) \
1488 lsr |= flagUart;
1489
1490 MAP_FLAG(UMP_UART_LSR_OV_MASK, LSR_OVER_ERR) /* overrun */
1491 MAP_FLAG(UMP_UART_LSR_PE_MASK, LSR_PAR_ERR) /* parity error */
1492 MAP_FLAG(UMP_UART_LSR_FE_MASK, LSR_FRM_ERR) /* framing error */
1493 MAP_FLAG(UMP_UART_LSR_BR_MASK, LSR_BREAK) /* break detected */
Alan Cox2742fd82008-04-29 14:45:15 +01001494 MAP_FLAG(UMP_UART_LSR_RX_MASK, LSR_RX_AVAIL) /* rx data available */
1495 MAP_FLAG(UMP_UART_LSR_TX_MASK, LSR_TX_EMPTY) /* tx hold reg empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497#undef MAP_FLAG
1498
1499 return lsr;
1500}
1501
Alan Cox2742fd82008-04-29 14:45:15 +01001502static void handle_new_msr(struct edgeport_port *edge_port, __u8 msr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504 struct async_icount *icount;
1505 struct tty_struct *tty;
1506
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001507 dev_dbg(&edge_port->port->dev, "%s - %02x\n", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Alan Cox2742fd82008-04-29 14:45:15 +01001509 if (msr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
1510 EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 icount = &edge_port->icount;
1512
1513 /* update input line counters */
1514 if (msr & EDGEPORT_MSR_DELTA_CTS)
1515 icount->cts++;
1516 if (msr & EDGEPORT_MSR_DELTA_DSR)
1517 icount->dsr++;
1518 if (msr & EDGEPORT_MSR_DELTA_CD)
1519 icount->dcd++;
1520 if (msr & EDGEPORT_MSR_DELTA_RI)
1521 icount->rng++;
Alan Cox2742fd82008-04-29 14:45:15 +01001522 wake_up_interruptible(&edge_port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
1525 /* Save the new modem status */
1526 edge_port->shadow_msr = msr & 0xf0;
1527
Alan Cox4a90f092008-10-13 10:39:46 +01001528 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* handle CTS flow control */
1530 if (tty && C_CRTSCTS(tty)) {
1531 if (msr & EDGEPORT_MSR_CTS) {
1532 tty->hw_stopped = 0;
1533 tty_wakeup(tty);
1534 } else {
1535 tty->hw_stopped = 1;
1536 }
1537 }
Alan Cox4a90f092008-10-13 10:39:46 +01001538 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Alan Cox2742fd82008-04-29 14:45:15 +01001541static void handle_new_lsr(struct edgeport_port *edge_port, int lsr_data,
1542 __u8 lsr, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct async_icount *icount;
Alan Cox2742fd82008-04-29 14:45:15 +01001545 __u8 new_lsr = (__u8)(lsr & (__u8)(LSR_OVER_ERR | LSR_PAR_ERR |
1546 LSR_FRM_ERR | LSR_BREAK));
Alan Cox4a90f092008-10-13 10:39:46 +01001547 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001549 dev_dbg(&edge_port->port->dev, "%s - %02x\n", __func__, new_lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 edge_port->shadow_lsr = lsr;
1552
Alan Cox2742fd82008-04-29 14:45:15 +01001553 if (new_lsr & LSR_BREAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /*
1555 * Parity and Framing errors only count if they
1556 * occur exclusive of a break being received.
1557 */
1558 new_lsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 /* Place LSR data byte into Rx buffer */
Alan Cox4a90f092008-10-13 10:39:46 +01001561 if (lsr_data) {
1562 tty = tty_port_tty_get(&edge_port->port->port);
1563 if (tty) {
1564 edge_tty_recv(&edge_port->port->dev, tty, &data, 1);
1565 tty_kref_put(tty);
1566 }
1567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 /* update input line counters */
1570 icount = &edge_port->icount;
1571 if (new_lsr & LSR_BREAK)
1572 icount->brk++;
1573 if (new_lsr & LSR_OVER_ERR)
1574 icount->overrun++;
1575 if (new_lsr & LSR_PAR_ERR)
1576 icount->parity++;
1577 if (new_lsr & LSR_FRM_ERR)
1578 icount->frame++;
1579}
1580
1581
Alan Cox2742fd82008-04-29 14:45:15 +01001582static void edge_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
Ming Leicdc97792008-02-24 18:41:47 +08001584 struct edgeport_serial *edge_serial = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 struct usb_serial_port *port;
1586 struct edgeport_port *edge_port;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001587 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 unsigned char *data = urb->transfer_buffer;
1589 int length = urb->actual_length;
1590 int port_number;
1591 int function;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001592 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 __u8 lsr;
1594 __u8 msr;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001595 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001597 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 case 0:
1599 /* success */
1600 break;
1601 case -ECONNRESET:
1602 case -ENOENT:
1603 case -ESHUTDOWN:
1604 /* this urb is terminated, clean up */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001605 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001606 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return;
1608 default:
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001609 dev_err(&urb->dev->dev, "%s - nonzero urb status received: "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001610 "%d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 goto exit;
1612 }
1613
1614 if (!length) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001615 dev_dbg(&urb->dev->dev, "%s - no data in urb\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 goto exit;
1617 }
1618
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001619 dev = &edge_serial->serial->dev->dev;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001620 usb_serial_debug_data(dev, __func__, length, data);
Alan Cox2742fd82008-04-29 14:45:15 +01001621
1622 if (length != 2) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001623 dev_dbg(dev, "%s - expecting packet of size 2, got %d\n", __func__, length);
Alan Cox2742fd82008-04-29 14:45:15 +01001624 goto exit;
1625 }
1626
1627 port_number = TIUMP_GET_PORT_FROM_CODE(data[0]);
1628 function = TIUMP_GET_FUNC_FROM_CODE(data[0]);
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001629 dev_dbg(dev, "%s - port_number %d, function %d, info 0x%x\n", __func__,
1630 port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 port = edge_serial->serial->port[port_number];
1632 edge_port = usb_get_serial_port_data(port);
1633 if (!edge_port) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001634 dev_dbg(dev, "%s - edge_port not found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return;
1636 }
1637 switch (function) {
1638 case TIUMP_INTERRUPT_CODE_LSR:
Alan Cox2742fd82008-04-29 14:45:15 +01001639 lsr = map_line_status(data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (lsr & UMP_UART_LSR_DATA_MASK) {
Alan Cox2742fd82008-04-29 14:45:15 +01001641 /* Save the LSR event for bulk read
1642 completion routine */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001643 dev_dbg(dev, "%s - LSR Event Port %u LSR Status = %02x\n",
1644 __func__, port_number, lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 edge_port->lsr_event = 1;
1646 edge_port->lsr_mask = lsr;
1647 } else {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001648 dev_dbg(dev, "%s - ===== Port %d LSR Status = %02x ======\n",
1649 __func__, port_number, lsr);
Alan Cox2742fd82008-04-29 14:45:15 +01001650 handle_new_lsr(edge_port, 0, lsr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
1652 break;
1653
Alan Cox2742fd82008-04-29 14:45:15 +01001654 case TIUMP_INTERRUPT_CODE_MSR: /* MSR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 /* Copy MSR from UMP */
1656 msr = data[1];
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001657 dev_dbg(dev, "%s - ===== Port %u MSR Status = %02x ======\n",
1658 __func__, port_number, msr);
Alan Cox2742fd82008-04-29 14:45:15 +01001659 handle_new_msr(edge_port, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 break;
1661
1662 default:
Alan Cox2742fd82008-04-29 14:45:15 +01001663 dev_err(&urb->dev->dev,
1664 "%s - Unknown Interrupt code from UMP %x\n",
1665 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 break;
Alan Cox2742fd82008-04-29 14:45:15 +01001667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669
1670exit:
Alan Cox2742fd82008-04-29 14:45:15 +01001671 retval = usb_submit_urb(urb, GFP_ATOMIC);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001672 if (retval)
Alan Cox2742fd82008-04-29 14:45:15 +01001673 dev_err(&urb->dev->dev,
1674 "%s - usb_submit_urb failed with result %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001675 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
Alan Cox2742fd82008-04-29 14:45:15 +01001678static void edge_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Ming Leicdc97792008-02-24 18:41:47 +08001680 struct edgeport_port *edge_port = urb->context;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001681 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 unsigned char *data = urb->transfer_buffer;
1683 struct tty_struct *tty;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001684 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int port_number;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001686 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001688 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 case 0:
1690 /* success */
1691 break;
1692 case -ECONNRESET:
1693 case -ENOENT:
1694 case -ESHUTDOWN:
1695 /* this urb is terminated, clean up */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001696 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return;
1698 default:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001699 dev_err(&urb->dev->dev, "%s - nonzero read bulk status received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
1701
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001702 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 goto exit;
1704
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001705 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001706 dev_err(&urb->dev->dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return;
1708 }
1709
1710 port_number = edge_port->port->number - edge_port->port->serial->minor;
1711
1712 if (edge_port->lsr_event) {
1713 edge_port->lsr_event = 0;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001714 dev_dbg(dev, "%s ===== Port %u LSR Status = %02x, Data = %02x ======\n",
1715 __func__, port_number, edge_port->lsr_mask, *data);
Alan Cox2742fd82008-04-29 14:45:15 +01001716 handle_new_lsr(edge_port, 1, edge_port->lsr_mask, *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 /* Adjust buffer length/pointer */
1718 --urb->actual_length;
1719 ++data;
1720 }
1721
Alan Cox4a90f092008-10-13 10:39:46 +01001722 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (tty && urb->actual_length) {
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01001724 usb_serial_debug_data(dev, __func__, urb->actual_length, data);
Alan Cox2742fd82008-04-29 14:45:15 +01001725 if (edge_port->close_pending)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001726 dev_dbg(dev, "%s - close pending, dropping data on the floor\n",
Alan Cox2742fd82008-04-29 14:45:15 +01001727 __func__);
1728 else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001729 edge_tty_recv(dev, tty, data, urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 edge_port->icount.rx += urb->actual_length;
1731 }
Alan Cox4a90f092008-10-13 10:39:46 +01001732 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734exit:
1735 /* continue read unless stopped */
1736 spin_lock(&edge_port->ep_lock);
Johan Hovold58330412011-11-06 19:06:28 +01001737 if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001738 retval = usb_submit_urb(urb, GFP_ATOMIC);
Johan Hovold58330412011-11-06 19:06:28 +01001739 else if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPING)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPED;
Johan Hovold58330412011-11-06 19:06:28 +01001741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 spin_unlock(&edge_port->ep_lock);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001743 if (retval)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001744 dev_err(dev, "%s - usb_submit_urb failed with result %d\n", __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
Alan Cox2742fd82008-04-29 14:45:15 +01001747static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
1748 unsigned char *data, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Alan Cox2742fd82008-04-29 14:45:15 +01001750 int queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Alan Cox2742fd82008-04-29 14:45:15 +01001752 queued = tty_insert_flip_string(tty, data, length);
1753 if (queued < length)
1754 dev_err(dev, "%s - dropping data, %d bytes lost\n",
1755 __func__, length - queued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 tty_flip_buffer_push(tty);
1757}
1758
Alan Cox2742fd82008-04-29 14:45:15 +01001759static void edge_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Ming Leicdc97792008-02-24 18:41:47 +08001761 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001763 int status = urb->status;
Alan Cox4a90f092008-10-13 10:39:46 +01001764 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 edge_port->ep_write_urb_in_use = 0;
1767
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001768 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 case 0:
1770 /* success */
1771 break;
1772 case -ECONNRESET:
1773 case -ENOENT:
1774 case -ESHUTDOWN:
1775 /* this urb is terminated, clean up */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001776 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001777 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 return;
1779 default:
Johan Hovold22a416c2012-02-10 13:20:51 +01001780 dev_err_console(port, "%s - nonzero write bulk status "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001781 "received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783
1784 /* send any buffered data */
Alan Cox4a90f092008-10-13 10:39:46 +01001785 tty = tty_port_tty_get(&port->port);
1786 edge_send(tty);
1787 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788}
1789
Alan Coxa509a7e2009-09-19 13:13:26 -07001790static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1793 struct edgeport_serial *edge_serial;
1794 struct usb_device *dev;
1795 struct urb *urb;
1796 int port_number;
1797 int status;
1798 u16 open_settings;
1799 u8 transaction_timeout;
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (edge_port == NULL)
1802 return -ENODEV;
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 port_number = port->number - port->serial->minor;
1805 switch (port_number) {
Alan Cox2742fd82008-04-29 14:45:15 +01001806 case 0:
1807 edge_port->uart_base = UMPMEM_BASE_UART1;
1808 edge_port->dma_address = UMPD_OEDB1_ADDRESS;
1809 break;
1810 case 1:
1811 edge_port->uart_base = UMPMEM_BASE_UART2;
1812 edge_port->dma_address = UMPD_OEDB2_ADDRESS;
1813 break;
1814 default:
1815 dev_err(&port->dev, "Unknown port number!!!\n");
1816 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001819 dev_dbg(&port->dev, "%s - port_number = %d, uart_base = %04x, dma_address = %04x\n",
1820 __func__, port_number, edge_port->uart_base, edge_port->dma_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 dev = port->serial->dev;
1823
Alan Cox2742fd82008-04-29 14:45:15 +01001824 memset(&(edge_port->icount), 0x00, sizeof(edge_port->icount));
1825 init_waitqueue_head(&edge_port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 /* turn off loopback */
Alan Cox2742fd82008-04-29 14:45:15 +01001828 status = ti_do_config(edge_port, UMPC_SET_CLR_LOOPBACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001830 dev_err(&port->dev,
1831 "%s - cannot send clear loopback command, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001832 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return status;
1834 }
Alan Cox2742fd82008-04-29 14:45:15 +01001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 /* set up the port settings */
Alan Cox95da3102008-07-22 11:09:07 +01001837 if (tty)
Alan Coxadc8d742012-07-14 15:31:47 +01001838 edge_set_termios(tty, port, &tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 /* open up the port */
1841
1842 /* milliseconds to timeout for DMA transfer */
1843 transaction_timeout = 2;
1844
Alan Cox2742fd82008-04-29 14:45:15 +01001845 edge_port->ump_read_timeout =
1846 max(20, ((transaction_timeout * 3) / 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Alan Cox2742fd82008-04-29 14:45:15 +01001848 /* milliseconds to timeout for DMA transfer */
1849 open_settings = (u8)(UMP_DMA_MODE_CONTINOUS |
1850 UMP_PIPE_TRANS_TIMEOUT_ENA |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 (transaction_timeout << 2));
1852
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001853 dev_dbg(&port->dev, "%s - Sending UMPC_OPEN_PORT\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 /* Tell TI to open and start the port */
Alan Cox2742fd82008-04-29 14:45:15 +01001856 status = send_cmd(dev, UMPC_OPEN_PORT,
1857 (u8)(UMPM_UART1_PORT + port_number), open_settings, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001859 dev_err(&port->dev, "%s - cannot send open command, %d\n",
1860 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return status;
1862 }
1863
1864 /* Start the DMA? */
Alan Cox2742fd82008-04-29 14:45:15 +01001865 status = send_cmd(dev, UMPC_START_PORT,
1866 (u8)(UMPM_UART1_PORT + port_number), 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001868 dev_err(&port->dev, "%s - cannot send start DMA command, %d\n",
1869 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return status;
1871 }
1872
1873 /* Clear TX and RX buffers in UMP */
Alan Cox2742fd82008-04-29 14:45:15 +01001874 status = purge_port(port, UMP_PORT_DIR_OUT | UMP_PORT_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001876 dev_err(&port->dev,
1877 "%s - cannot send clear buffers command, %d\n",
1878 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return status;
1880 }
1881
1882 /* Read Initial MSR */
Alan Cox2742fd82008-04-29 14:45:15 +01001883 status = ti_vread_sync(dev, UMPC_READ_MSR, 0,
1884 (__u16)(UMPM_UART1_PORT + port_number),
1885 &edge_port->shadow_msr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001887 dev_err(&port->dev, "%s - cannot send read MSR command, %d\n",
1888 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return status;
1890 }
1891
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001892 dev_dbg(&port->dev, "ShadowMSR 0x%X\n", edge_port->shadow_msr);
Alan Cox2742fd82008-04-29 14:45:15 +01001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* Set Initial MCR */
1895 edge_port->shadow_mcr = MCR_RTS | MCR_DTR;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001896 dev_dbg(&port->dev, "ShadowMCR 0x%X\n", edge_port->shadow_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 edge_serial = edge_port->edge_serial;
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001899 if (mutex_lock_interruptible(&edge_serial->es_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 return -ERESTARTSYS;
1901 if (edge_serial->num_ports_open == 0) {
Alan Cox2742fd82008-04-29 14:45:15 +01001902 /* we are the first port to open, post the interrupt urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 urb = edge_serial->serial->port[0]->interrupt_in_urb;
1904 if (!urb) {
Alan Cox2742fd82008-04-29 14:45:15 +01001905 dev_err(&port->dev,
1906 "%s - no interrupt urb present, exiting\n",
1907 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 status = -EINVAL;
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001909 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 urb->context = edge_serial;
Alan Cox2742fd82008-04-29 14:45:15 +01001912 status = usb_submit_urb(urb, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001914 dev_err(&port->dev,
1915 "%s - usb_submit_urb failed with value %d\n",
1916 __func__, status);
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001917 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919 }
1920
1921 /*
1922 * reset the data toggle on the bulk endpoints to work around bug in
1923 * host controllers where things get out of sync some times
1924 */
Alan Cox2742fd82008-04-29 14:45:15 +01001925 usb_clear_halt(dev, port->write_urb->pipe);
1926 usb_clear_halt(dev, port->read_urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 /* start up our bulk read urb */
1929 urb = port->read_urb;
1930 if (!urb) {
Alan Cox2742fd82008-04-29 14:45:15 +01001931 dev_err(&port->dev, "%s - no read urb present, exiting\n",
1932 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 status = -EINVAL;
1934 goto unlink_int_urb;
1935 }
1936 edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 urb->context = edge_port;
Alan Cox2742fd82008-04-29 14:45:15 +01001938 status = usb_submit_urb(urb, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001940 dev_err(&port->dev,
1941 "%s - read bulk usb_submit_urb failed with value %d\n",
1942 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 goto unlink_int_urb;
1944 }
1945
1946 ++edge_serial->num_ports_open;
1947
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001948 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950unlink_int_urb:
1951 if (edge_port->edge_serial->num_ports_open == 0)
1952 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001953release_es_lock:
1954 mutex_unlock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return status;
1956}
1957
Alan Cox335f8512009-06-11 12:26:29 +01001958static void edge_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
1960 struct edgeport_serial *edge_serial;
1961 struct edgeport_port *edge_port;
Johan Hovoldaf581052012-03-26 20:31:38 +02001962 struct usb_serial *serial = port->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 int port_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 edge_serial = usb_get_serial_data(port->serial);
1966 edge_port = usb_get_serial_port_data(port);
Alan Cox2742fd82008-04-29 14:45:15 +01001967 if (edge_serial == NULL || edge_port == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return;
Alan Cox2742fd82008-04-29 14:45:15 +01001969
1970 /* The bulkreadcompletion routine will check
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 * this flag and dump add read data */
1972 edge_port->close_pending = 1;
1973
1974 /* chase the port close and flush */
Alan Cox2742fd82008-04-29 14:45:15 +01001975 chase_port(edge_port, (HZ * closing_wait) / 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 usb_kill_urb(port->read_urb);
1978 usb_kill_urb(port->write_urb);
1979 edge_port->ep_write_urb_in_use = 0;
1980
1981 /* assuming we can still talk to the device,
1982 * send a close port command to it */
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07001983 dev_dbg(&port->dev, "%s - send umpc_close_port\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 port_number = port->number - port->serial->minor;
Johan Hovoldaf581052012-03-26 20:31:38 +02001985
1986 mutex_lock(&serial->disc_mutex);
1987 if (!serial->disconnected) {
1988 send_cmd(serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 UMPC_CLOSE_PORT,
1990 (__u8)(UMPM_UART1_PORT + port_number),
1991 0,
1992 NULL,
1993 0);
Johan Hovoldaf581052012-03-26 20:31:38 +02001994 }
1995 mutex_unlock(&serial->disc_mutex);
1996
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001997 mutex_lock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 --edge_port->edge_serial->num_ports_open;
1999 if (edge_port->edge_serial->num_ports_open <= 0) {
2000 /* last port is now closed, let's shut down our interrupt urb */
2001 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
2002 edge_port->edge_serial->num_ports_open = 0;
2003 }
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002004 mutex_unlock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 edge_port->close_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
2007
Alan Cox95da3102008-07-22 11:09:07 +01002008static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
2009 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
2011 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (count == 0) {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002014 dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return 0;
2016 }
2017
2018 if (edge_port == NULL)
2019 return -ENODEV;
2020 if (edge_port->close_pending == 1)
2021 return -ENODEV;
2022
Johan Hovoldd733cec2010-05-19 00:01:37 +02002023 count = kfifo_in_locked(&edge_port->write_fifo, data, count,
2024 &edge_port->ep_lock);
Alan Cox95da3102008-07-22 11:09:07 +01002025 edge_send(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 return count;
2028}
2029
Alan Cox95da3102008-07-22 11:09:07 +01002030static void edge_send(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Alan Cox95da3102008-07-22 11:09:07 +01002032 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 int count, result;
2034 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 unsigned long flags;
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 spin_lock_irqsave(&edge_port->ep_lock, flags);
2038
2039 if (edge_port->ep_write_urb_in_use) {
2040 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2041 return;
2042 }
2043
Johan Hovoldd733cec2010-05-19 00:01:37 +02002044 count = kfifo_out(&edge_port->write_fifo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 port->write_urb->transfer_buffer,
2046 port->bulk_out_size);
2047
2048 if (count == 0) {
2049 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2050 return;
2051 }
2052
2053 edge_port->ep_write_urb_in_use = 1;
2054
2055 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2056
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +01002057 usb_serial_debug_data(&port->dev, __func__, count, port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059 /* set up our urb */
Johan Hovoldfd119612011-11-06 19:06:30 +01002060 port->write_urb->transfer_buffer_length = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 /* send the data out the bulk port */
2063 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
2064 if (result) {
Johan Hovold22a416c2012-02-10 13:20:51 +01002065 dev_err_console(port,
Alan Cox2742fd82008-04-29 14:45:15 +01002066 "%s - failed submitting write urb, error %d\n",
2067 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 edge_port->ep_write_urb_in_use = 0;
Alan Cox2742fd82008-04-29 14:45:15 +01002069 /* TODO: reschedule edge_send */
2070 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 edge_port->icount.tx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 /* wakeup any process waiting for writes to complete */
2074 /* there is now more room in the buffer for new writes */
Alan Cox2742fd82008-04-29 14:45:15 +01002075 if (tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
Alan Cox95da3102008-07-22 11:09:07 +01002079static int edge_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Alan Cox95da3102008-07-22 11:09:07 +01002081 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2083 int room = 0;
2084 unsigned long flags;
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (edge_port == NULL)
Alan Cox2742fd82008-04-29 14:45:15 +01002087 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (edge_port->close_pending == 1)
Alan Cox2742fd82008-04-29 14:45:15 +01002089 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 spin_lock_irqsave(&edge_port->ep_lock, flags);
Johan Hovoldd733cec2010-05-19 00:01:37 +02002092 room = kfifo_avail(&edge_port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2094
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002095 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return room;
2097}
2098
Alan Cox95da3102008-07-22 11:09:07 +01002099static int edge_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Alan Cox95da3102008-07-22 11:09:07 +01002101 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2103 int chars = 0;
2104 unsigned long flags;
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (edge_port == NULL)
Alan Cox2742fd82008-04-29 14:45:15 +01002107 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 if (edge_port->close_pending == 1)
Alan Cox2742fd82008-04-29 14:45:15 +01002109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111 spin_lock_irqsave(&edge_port->ep_lock, flags);
Johan Hovoldd733cec2010-05-19 00:01:37 +02002112 chars = kfifo_len(&edge_port->write_fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2114
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002115 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 return chars;
2117}
2118
Alan Cox95da3102008-07-22 11:09:07 +01002119static void edge_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Alan Cox95da3102008-07-22 11:09:07 +01002121 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 int status;
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 if (edge_port == NULL)
2126 return;
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 /* if we are implementing XON/XOFF, send the stop character */
2129 if (I_IXOFF(tty)) {
2130 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01002131 status = edge_write(tty, port, &stop_char, 1);
2132 if (status <= 0) {
2133 dev_err(&port->dev, "%s - failed to write stop character, %d\n", __func__, status);
2134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
2136
2137 /* if we are implementing RTS/CTS, stop reads */
2138 /* and the Edgeport will clear the RTS line */
2139 if (C_CRTSCTS(tty))
2140 stop_read(edge_port);
2141
2142}
2143
Alan Cox95da3102008-07-22 11:09:07 +01002144static void edge_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
Alan Cox95da3102008-07-22 11:09:07 +01002146 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 int status;
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (edge_port == NULL)
2151 return;
2152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 /* if we are implementing XON/XOFF, send the start character */
2154 if (I_IXOFF(tty)) {
2155 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01002156 status = edge_write(tty, port, &start_char, 1);
2157 if (status <= 0) {
2158 dev_err(&port->dev, "%s - failed to write start character, %d\n", __func__, status);
2159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 /* if we are implementing RTS/CTS, restart reads */
2162 /* are the Edgeport will assert the RTS line */
2163 if (C_CRTSCTS(tty)) {
2164 status = restart_read(edge_port);
2165 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +01002166 dev_err(&port->dev,
2167 "%s - read bulk usb_submit_urb failed: %d\n",
2168 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170
2171}
2172
2173static void stop_read(struct edgeport_port *edge_port)
2174{
2175 unsigned long flags;
2176
2177 spin_lock_irqsave(&edge_port->ep_lock, flags);
2178
2179 if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
2180 edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPING;
2181 edge_port->shadow_mcr &= ~MCR_RTS;
2182
2183 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2184}
2185
2186static int restart_read(struct edgeport_port *edge_port)
2187{
2188 struct urb *urb;
2189 int status = 0;
2190 unsigned long flags;
2191
2192 spin_lock_irqsave(&edge_port->ep_lock, flags);
2193
2194 if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPED) {
2195 urb = edge_port->port->read_urb;
Oliver Neukumefdff602007-06-05 10:50:48 +02002196 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198 edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
2199 edge_port->shadow_mcr |= MCR_RTS;
2200
2201 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2202
2203 return status;
2204}
2205
Alan Cox95da3102008-07-22 11:09:07 +01002206static void change_port_settings(struct tty_struct *tty,
2207 struct edgeport_port *edge_port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002209 struct device *dev = &edge_port->port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 struct ump_uart_config *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 int baud;
2212 unsigned cflag;
2213 int status;
Alan Cox2742fd82008-04-29 14:45:15 +01002214 int port_number = edge_port->port->number -
2215 edge_port->port->serial->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002217 dev_dbg(dev, "%s - port %d\n", __func__, edge_port->port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Alan Cox95da3102008-07-22 11:09:07 +01002219 config = kmalloc (sizeof (*config), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 if (!config) {
Alan Coxadc8d742012-07-14 15:31:47 +01002221 tty->termios = *old_termios;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002222 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 return;
2224 }
2225
Alan Coxadc8d742012-07-14 15:31:47 +01002226 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 config->wFlags = 0;
2229
2230 /* These flags must be set */
2231 config->wFlags |= UMP_MASK_UART_FLAGS_RECEIVE_MS_INT;
2232 config->wFlags |= UMP_MASK_UART_FLAGS_AUTO_START_ON_ERR;
2233 config->bUartMode = (__u8)(edge_port->bUartMode);
2234
2235 switch (cflag & CSIZE) {
Alan Cox2742fd82008-04-29 14:45:15 +01002236 case CS5:
2237 config->bDataBits = UMP_UART_CHAR5BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002238 dev_dbg(dev, "%s - data bits = 5\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002239 break;
2240 case CS6:
2241 config->bDataBits = UMP_UART_CHAR6BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002242 dev_dbg(dev, "%s - data bits = 6\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002243 break;
2244 case CS7:
2245 config->bDataBits = UMP_UART_CHAR7BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002246 dev_dbg(dev, "%s - data bits = 7\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002247 break;
2248 default:
2249 case CS8:
2250 config->bDataBits = UMP_UART_CHAR8BITS;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002251 dev_dbg(dev, "%s - data bits = 8\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 break;
2253 }
2254
2255 if (cflag & PARENB) {
2256 if (cflag & PARODD) {
2257 config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
2258 config->bParity = UMP_UART_ODDPARITY;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002259 dev_dbg(dev, "%s - parity = odd\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 } else {
2261 config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
2262 config->bParity = UMP_UART_EVENPARITY;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002263 dev_dbg(dev, "%s - parity = even\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265 } else {
Alan Cox2742fd82008-04-29 14:45:15 +01002266 config->bParity = UMP_UART_NOPARITY;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002267 dev_dbg(dev, "%s - parity = none\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 }
2269
2270 if (cflag & CSTOPB) {
2271 config->bStopBits = UMP_UART_STOPBIT2;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002272 dev_dbg(dev, "%s - stop bits = 2\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 } else {
2274 config->bStopBits = UMP_UART_STOPBIT1;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002275 dev_dbg(dev, "%s - stop bits = 1\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
2277
2278 /* figure out the flow control settings */
2279 if (cflag & CRTSCTS) {
2280 config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X_CTS_FLOW;
2281 config->wFlags |= UMP_MASK_UART_FLAGS_RTS_FLOW;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002282 dev_dbg(dev, "%s - RTS/CTS is enabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 } else {
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002284 dev_dbg(dev, "%s - RTS/CTS is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 tty->hw_stopped = 0;
2286 restart_read(edge_port);
2287 }
2288
Alan Cox2742fd82008-04-29 14:45:15 +01002289 /* if we are implementing XON/XOFF, set the start and stop
2290 character in the device */
2291 config->cXon = START_CHAR(tty);
2292 config->cXoff = STOP_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Alan Cox2742fd82008-04-29 14:45:15 +01002294 /* if we are implementing INBOUND XON/XOFF */
2295 if (I_IXOFF(tty)) {
2296 config->wFlags |= UMP_MASK_UART_FLAGS_IN_X;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002297 dev_dbg(dev, "%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2298 __func__, config->cXon, config->cXoff);
Alan Cox2742fd82008-04-29 14:45:15 +01002299 } else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002300 dev_dbg(dev, "%s - INBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Alan Cox2742fd82008-04-29 14:45:15 +01002302 /* if we are implementing OUTBOUND XON/XOFF */
2303 if (I_IXON(tty)) {
2304 config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X;
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002305 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x\n",
2306 __func__, config->cXon, config->cXoff);
Alan Cox2742fd82008-04-29 14:45:15 +01002307 } else
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002308 dev_dbg(dev, "%s - OUTBOUND XON/XOFF is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Alan Coxadc8d742012-07-14 15:31:47 +01002310 tty->termios.c_cflag &= ~CMSPAR;
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 /* Round the baud rate */
2313 baud = tty_get_baud_rate(tty);
2314 if (!baud) {
2315 /* pick a default, any default... */
2316 baud = 9600;
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002317 } else
2318 tty_encode_baud_rate(tty, baud, baud);
2319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 edge_port->baud_rate = baud;
2321 config->wBaudRate = (__u16)((461550L + baud/2) / baud);
2322
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002323 /* FIXME: Recompute actual baud from divisor here */
2324
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002325 dev_dbg(dev, "%s - baud rate = %d, wBaudRate = %d\n", __func__, baud, config->wBaudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002327 dev_dbg(dev, "wBaudRate: %d\n", (int)(461550L / config->wBaudRate));
2328 dev_dbg(dev, "wFlags: 0x%x\n", config->wFlags);
2329 dev_dbg(dev, "bDataBits: %d\n", config->bDataBits);
2330 dev_dbg(dev, "bParity: %d\n", config->bParity);
2331 dev_dbg(dev, "bStopBits: %d\n", config->bStopBits);
2332 dev_dbg(dev, "cXon: %d\n", config->cXon);
2333 dev_dbg(dev, "cXoff: %d\n", config->cXoff);
2334 dev_dbg(dev, "bUartMode: %d\n", config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336 /* move the word values into big endian mode */
Alan Cox2742fd82008-04-29 14:45:15 +01002337 cpu_to_be16s(&config->wFlags);
2338 cpu_to_be16s(&config->wBaudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Alan Cox2742fd82008-04-29 14:45:15 +01002340 status = send_cmd(edge_port->port->serial->dev, UMPC_SET_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 (__u8)(UMPM_UART1_PORT + port_number),
Alan Cox2742fd82008-04-29 14:45:15 +01002342 0, (__u8 *)config, sizeof(*config));
2343 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002344 dev_dbg(dev, "%s - error %d when trying to write config to device\n",
2345 __func__, status);
Alan Cox2742fd82008-04-29 14:45:15 +01002346 kfree(config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
Alan Cox2e0ddd62008-07-22 11:12:33 +01002349static void edge_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +01002350 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
2352 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01002353 unsigned int cflag;
2354
Alan Coxadc8d742012-07-14 15:31:47 +01002355 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002357 dev_dbg(&port->dev, "%s - clfag %08x iflag %08x\n", __func__,
Linus Torvaldsd9a80742012-10-01 13:23:01 -07002358 tty->termios.c_cflag, tty->termios.c_iflag);
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002359 dev_dbg(&port->dev, "%s - old clfag %08x old iflag %08x\n", __func__,
2360 old_termios->c_cflag, old_termios->c_iflag);
2361 dev_dbg(&port->dev, "%s - port %d\n", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 if (edge_port == NULL)
2364 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 /* change the port settings to the new ones specified */
Alan Cox95da3102008-07-22 11:09:07 +01002366 change_port_settings(tty, edge_port, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
Alan Cox20b9d172011-02-14 16:26:50 +00002369static int edge_tiocmset(struct tty_struct *tty,
Alan Cox2742fd82008-04-29 14:45:15 +01002370 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Alan Cox95da3102008-07-22 11:09:07 +01002372 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2374 unsigned int mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002375 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Alan Cox3d71fe02008-02-20 21:38:32 +00002377 spin_lock_irqsave(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 mcr = edge_port->shadow_mcr;
2379 if (set & TIOCM_RTS)
2380 mcr |= MCR_RTS;
2381 if (set & TIOCM_DTR)
2382 mcr |= MCR_DTR;
2383 if (set & TIOCM_LOOP)
2384 mcr |= MCR_LOOPBACK;
2385
2386 if (clear & TIOCM_RTS)
2387 mcr &= ~MCR_RTS;
2388 if (clear & TIOCM_DTR)
2389 mcr &= ~MCR_DTR;
2390 if (clear & TIOCM_LOOP)
2391 mcr &= ~MCR_LOOPBACK;
2392
2393 edge_port->shadow_mcr = mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002394 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Alan Cox2742fd82008-04-29 14:45:15 +01002396 restore_mcr(edge_port, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 return 0;
2398}
2399
Alan Cox60b33c12011-02-14 16:26:14 +00002400static int edge_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
Alan Cox95da3102008-07-22 11:09:07 +01002402 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2404 unsigned int result = 0;
2405 unsigned int msr;
2406 unsigned int mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002407 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Alan Cox3d71fe02008-02-20 21:38:32 +00002409 spin_lock_irqsave(&edge_port->ep_lock, flags);
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 msr = edge_port->shadow_msr;
2412 mcr = edge_port->shadow_mcr;
2413 result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
2414 | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
2415 | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
2416 | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
2417 | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
2418 | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
2419
2420
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002421 dev_dbg(&port->dev, "%s -- %x\n", __func__, result);
Alan Cox3d71fe02008-02-20 21:38:32 +00002422 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 return result;
2425}
2426
Alan Cox0bca1b92010-09-16 18:21:40 +01002427static int edge_get_icount(struct tty_struct *tty,
2428 struct serial_icounter_struct *icount)
2429{
2430 struct usb_serial_port *port = tty->driver_data;
2431 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2432 struct async_icount *ic = &edge_port->icount;
2433
2434 icount->cts = ic->cts;
2435 icount->dsr = ic->dsr;
2436 icount->rng = ic->rng;
2437 icount->dcd = ic->dcd;
2438 icount->tx = ic->tx;
2439 icount->rx = ic->rx;
2440 icount->frame = ic->frame;
2441 icount->parity = ic->parity;
2442 icount->overrun = ic->overrun;
2443 icount->brk = ic->brk;
2444 icount->buf_overrun = ic->buf_overrun;
2445 return 0;
2446}
2447
Alan Cox2742fd82008-04-29 14:45:15 +01002448static int get_serial_info(struct edgeport_port *edge_port,
2449 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
2451 struct serial_struct tmp;
2452
2453 if (!retinfo)
2454 return -EFAULT;
2455
2456 memset(&tmp, 0, sizeof(tmp));
2457
2458 tmp.type = PORT_16550A;
2459 tmp.line = edge_port->port->serial->minor;
2460 tmp.port = edge_port->port->number;
2461 tmp.irq = 0;
2462 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2463 tmp.xmit_fifo_size = edge_port->port->bulk_out_size;
2464 tmp.baud_base = 9600;
2465 tmp.close_delay = 5*HZ;
2466 tmp.closing_wait = closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2469 return -EFAULT;
2470 return 0;
2471}
2472
Alan Cox00a0d0d2011-02-14 16:27:06 +00002473static int edge_ioctl(struct tty_struct *tty,
Alan Cox2742fd82008-04-29 14:45:15 +01002474 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
Alan Cox95da3102008-07-22 11:09:07 +01002476 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2478 struct async_icount cnow;
2479 struct async_icount cprev;
2480
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002481 dev_dbg(&port->dev, "%s - port %d, cmd = 0x%x\n", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
2483 switch (cmd) {
Alan Cox2742fd82008-04-29 14:45:15 +01002484 case TIOCGSERIAL:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002485 dev_dbg(&port->dev, "%s - TIOCGSERIAL\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002486 return get_serial_info(edge_port,
2487 (struct serial_struct __user *) arg);
2488 case TIOCMIWAIT:
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002489 dev_dbg(&port->dev, "%s - TIOCMIWAIT\n", __func__);
Alan Cox2742fd82008-04-29 14:45:15 +01002490 cprev = edge_port->icount;
2491 while (1) {
2492 interruptible_sleep_on(&edge_port->delta_msr_wait);
2493 /* see if a signal did it */
2494 if (signal_pending(current))
2495 return -ERESTARTSYS;
2496 cnow = edge_port->icount;
2497 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2498 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2499 return -EIO; /* no change => error */
2500 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2501 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2502 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2503 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2504 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 }
Alan Cox2742fd82008-04-29 14:45:15 +01002506 cprev = cnow;
2507 }
2508 /* not reached */
2509 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 return -ENOIOCTLCMD;
2512}
2513
Alan Cox95da3102008-07-22 11:09:07 +01002514static void edge_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515{
Alan Cox95da3102008-07-22 11:09:07 +01002516 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2518 int status;
Alan Cox2742fd82008-04-29 14:45:15 +01002519 int bv = 0; /* Off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 /* chase the port close */
Alan Cox2742fd82008-04-29 14:45:15 +01002522 chase_port(edge_port, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Alan Cox95da3102008-07-22 11:09:07 +01002524 if (break_state == -1)
Alan Cox2742fd82008-04-29 14:45:15 +01002525 bv = 1; /* On */
2526 status = ti_do_config(edge_port, UMPC_SET_CLR_BREAK, bv);
2527 if (status)
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002528 dev_dbg(&port->dev, "%s - error %d sending break set/clear command.\n",
2529 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
2531
Alan Cox2742fd82008-04-29 14:45:15 +01002532static int edge_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
2534 struct edgeport_serial *edge_serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 /* create our private serial structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002538 edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 if (edge_serial == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002540 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 return -ENOMEM;
2542 }
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002543 mutex_init(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 edge_serial->serial = serial;
2545 usb_set_serial_data(serial, edge_serial);
2546
Alan Cox2742fd82008-04-29 14:45:15 +01002547 status = download_fw(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01002549 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 return status;
2551 }
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554}
2555
Alan Sternf9c99bb2009-06-02 11:53:55 -04002556static void edge_disconnect(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Alan Sternf9c99bb2009-06-02 11:53:55 -04002558}
2559
2560static void edge_release(struct usb_serial *serial)
2561{
Jesper Juhl0d46c002007-07-16 22:17:25 +02002562 kfree(usb_get_serial_data(serial));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563}
2564
Johan Hovold00361532012-10-17 13:34:58 +02002565static int edge_port_probe(struct usb_serial_port *port)
2566{
2567 struct edgeport_port *edge_port;
2568 int ret;
2569
2570 edge_port = kzalloc(sizeof(*edge_port), GFP_KERNEL);
2571 if (!edge_port)
2572 return -ENOMEM;
2573
2574 ret = kfifo_alloc(&edge_port->write_fifo, EDGE_OUT_BUF_SIZE,
2575 GFP_KERNEL);
2576 if (ret) {
2577 kfree(edge_port);
2578 return -ENOMEM;
2579 }
2580
Johan Hovold00361532012-10-17 13:34:58 +02002581 spin_lock_init(&edge_port->ep_lock);
2582 edge_port->port = port;
2583 edge_port->edge_serial = usb_get_serial_data(port->serial);
2584 edge_port->bUartMode = default_uart_mode;
2585
2586 usb_set_serial_port_data(port, edge_port);
2587
Johan Hovold5d8c61b2012-10-18 11:43:28 +02002588 ret = edge_create_sysfs_attrs(port);
2589 if (ret) {
2590 kfifo_free(&edge_port->write_fifo);
2591 kfree(edge_port);
2592 return ret;
2593 }
2594
Johan Hovold00361532012-10-17 13:34:58 +02002595 return 0;
2596}
2597
2598static int edge_port_remove(struct usb_serial_port *port)
2599{
2600 struct edgeport_port *edge_port;
2601
2602 edge_port = usb_get_serial_port_data(port);
2603
2604 edge_remove_sysfs_attrs(port);
2605 kfifo_free(&edge_port->write_fifo);
2606 kfree(edge_port);
2607
2608 return 0;
2609}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002611/* Sysfs Attributes */
2612
2613static ssize_t show_uart_mode(struct device *dev,
2614 struct device_attribute *attr, char *buf)
2615{
2616 struct usb_serial_port *port = to_usb_serial_port(dev);
2617 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2618
2619 return sprintf(buf, "%d\n", edge_port->bUartMode);
2620}
2621
2622static ssize_t store_uart_mode(struct device *dev,
2623 struct device_attribute *attr, const char *valbuf, size_t count)
2624{
2625 struct usb_serial_port *port = to_usb_serial_port(dev);
2626 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2627 unsigned int v = simple_strtoul(valbuf, NULL, 0);
2628
Greg Kroah-Hartman67e6da72012-09-14 16:58:58 -07002629 dev_dbg(dev, "%s: setting uart_mode = %d\n", __func__, v);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002630
2631 if (v < 256)
2632 edge_port->bUartMode = v;
2633 else
Harvey Harrison441b62c2008-03-03 16:08:34 -08002634 dev_err(dev, "%s - uart_mode %d is invalid\n", __func__, v);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002635
2636 return count;
2637}
2638
Alan Cox2742fd82008-04-29 14:45:15 +01002639static DEVICE_ATTR(uart_mode, S_IWUSR | S_IRUGO, show_uart_mode,
2640 store_uart_mode);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002641
2642static int edge_create_sysfs_attrs(struct usb_serial_port *port)
2643{
2644 return device_create_file(&port->dev, &dev_attr_uart_mode);
2645}
2646
2647static int edge_remove_sysfs_attrs(struct usb_serial_port *port)
2648{
2649 device_remove_file(&port->dev, &dev_attr_uart_mode);
2650 return 0;
2651}
2652
2653
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07002654static struct usb_serial_driver edgeport_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002655 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002656 .owner = THIS_MODULE,
2657 .name = "edgeport_ti_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002658 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002659 .description = "Edgeport TI 1 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 .id_table = edgeport_1port_id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 .num_ports = 1,
2662 .open = edge_open,
2663 .close = edge_close,
2664 .throttle = edge_throttle,
2665 .unthrottle = edge_unthrottle,
2666 .attach = edge_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -04002667 .disconnect = edge_disconnect,
2668 .release = edge_release,
Johan Hovold00361532012-10-17 13:34:58 +02002669 .port_probe = edge_port_probe,
2670 .port_remove = edge_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 .ioctl = edge_ioctl,
2672 .set_termios = edge_set_termios,
2673 .tiocmget = edge_tiocmget,
2674 .tiocmset = edge_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +01002675 .get_icount = edge_get_icount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 .write = edge_write,
2677 .write_room = edge_write_room,
2678 .chars_in_buffer = edge_chars_in_buffer,
2679 .break_ctl = edge_break,
2680 .read_int_callback = edge_interrupt_callback,
2681 .read_bulk_callback = edge_bulk_in_callback,
2682 .write_bulk_callback = edge_bulk_out_callback,
2683};
2684
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07002685static struct usb_serial_driver edgeport_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002686 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002687 .owner = THIS_MODULE,
2688 .name = "edgeport_ti_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002689 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002690 .description = "Edgeport TI 2 port adapter",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 .id_table = edgeport_2port_id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 .num_ports = 2,
2693 .open = edge_open,
2694 .close = edge_close,
2695 .throttle = edge_throttle,
2696 .unthrottle = edge_unthrottle,
2697 .attach = edge_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -04002698 .disconnect = edge_disconnect,
2699 .release = edge_release,
Johan Hovold00361532012-10-17 13:34:58 +02002700 .port_probe = edge_port_probe,
2701 .port_remove = edge_port_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 .ioctl = edge_ioctl,
2703 .set_termios = edge_set_termios,
2704 .tiocmget = edge_tiocmget,
2705 .tiocmset = edge_tiocmset,
2706 .write = edge_write,
2707 .write_room = edge_write_room,
2708 .chars_in_buffer = edge_chars_in_buffer,
2709 .break_ctl = edge_break,
2710 .read_int_callback = edge_interrupt_callback,
2711 .read_bulk_callback = edge_bulk_in_callback,
2712 .write_bulk_callback = edge_bulk_out_callback,
2713};
2714
Alan Stern7dbe2462012-02-23 14:56:57 -05002715static struct usb_serial_driver * const serial_drivers[] = {
2716 &edgeport_1port_device, &edgeport_2port_device, NULL
2717};
2718
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002719module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721MODULE_AUTHOR(DRIVER_AUTHOR);
2722MODULE_DESCRIPTION(DRIVER_DESC);
2723MODULE_LICENSE("GPL");
Jaswinder Singhd12b2192008-07-04 23:06:09 +05302724MODULE_FIRMWARE("edgeport/down3.bin");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726module_param(closing_wait, int, S_IRUGO | S_IWUSR);
2727MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs");
2728
2729module_param(ignore_cpu_rev, bool, S_IRUGO | S_IWUSR);
Alan Cox2742fd82008-04-29 14:45:15 +01002730MODULE_PARM_DESC(ignore_cpu_rev,
2731 "Ignore the cpu revision when connecting to a device");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002733module_param(default_uart_mode, int, S_IRUGO | S_IWUSR);
2734MODULE_PARM_DESC(default_uart_mode, "Default uart_mode, 0=RS232, ...");