blob: 541dd8e6e7a2a232ea826587efdfab136c75f82b [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>.
18 *
19 * Version history:
20 *
Alan Cox2742fd82008-04-29 14:45:15 +010021 * July 11, 2002 Removed 4 port device structure since all TI UMP
22 * chips have only 2 ports
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * David Iacovelli (davidi@ionetworks.com)
24 *
25 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/kernel.h>
28#include <linux/jiffies.h>
29#include <linux/errno.h>
30#include <linux/init.h>
31#include <linux/slab.h>
32#include <linux/tty.h>
33#include <linux/tty_driver.h>
34#include <linux/tty_flip.h>
35#include <linux/module.h>
36#include <linux/spinlock.h>
Matthias Kaehlcke241ca642007-12-04 16:15:40 +010037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/serial.h>
39#include <linux/ioctl.h>
Jaswinder Singhd12b2192008-07-04 23:06:09 +053040#include <linux/firmware.h>
Alan Cox2742fd82008-04-29 14:45:15 +010041#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070043#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "io_16654.h"
46#include "io_usbvend.h"
47#include "io_ti.h"
48
49/*
50 * Version Information
51 */
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -040052#define DRIVER_VERSION "v0.7mode043006"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com> and David Iacovelli"
54#define DRIVER_DESC "Edgeport USB Serial Driver"
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define EPROM_PAGE_SIZE 64
57
58
59struct edgeport_uart_buf_desc {
Alan Cox2742fd82008-04-29 14:45:15 +010060 __u32 count; /* Number of bytes currently in buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
63/* different hardware types */
64#define HARDWARE_TYPE_930 0
65#define HARDWARE_TYPE_TIUMP 1
66
Alan Cox2742fd82008-04-29 14:45:15 +010067/* IOCTL_PRIVATE_TI_GET_MODE Definitions */
68#define TI_MODE_CONFIGURING 0 /* Device has not entered start device */
69#define TI_MODE_BOOT 1 /* Staying in boot mode */
70#define TI_MODE_DOWNLOAD 2 /* Made it to download mode */
71#define TI_MODE_TRANSITIONING 3 /* Currently in boot mode but
72 transitioning to download mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* read urb state */
75#define EDGE_READ_URB_RUNNING 0
76#define EDGE_READ_URB_STOPPING 1
77#define EDGE_READ_URB_STOPPED 2
78
79#define EDGE_LOW_LATENCY 1
80#define EDGE_CLOSING_WAIT 4000 /* in .01 sec */
81
82#define EDGE_OUT_BUF_SIZE 1024
83
84
85/* Product information read from the Edgeport */
Alan Cox2742fd82008-04-29 14:45:15 +010086struct product_info {
87 int TiMode; /* Current TI Mode */
88 __u8 hardware_type; /* Type of hardware */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089} __attribute__((packed));
90
91/* circular buffer */
92struct edge_buf {
93 unsigned int buf_size;
94 char *buf_buf;
95 char *buf_get;
96 char *buf_put;
97};
98
99struct edgeport_port {
100 __u16 uart_base;
101 __u16 dma_address;
102 __u8 shadow_msr;
103 __u8 shadow_mcr;
104 __u8 shadow_lsr;
105 __u8 lsr_mask;
106 __u32 ump_read_timeout; /* Number of miliseconds the UMP will
107 wait without data before completing
108 a read short */
109 int baud_rate;
110 int close_pending;
111 int lsr_event;
112 struct edgeport_uart_buf_desc tx;
113 struct async_icount icount;
114 wait_queue_head_t delta_msr_wait; /* for handling sleeping while
115 waiting for msr change to
116 happen */
117 struct edgeport_serial *edge_serial;
118 struct usb_serial_port *port;
Alan Cox2742fd82008-04-29 14:45:15 +0100119 __u8 bUartMode; /* Port type, 0: RS232, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 spinlock_t ep_lock;
121 int ep_read_urb_state;
122 int ep_write_urb_in_use;
123 struct edge_buf *ep_out_buf;
124};
125
126struct edgeport_serial {
127 struct product_info product_info;
Alan Cox2742fd82008-04-29 14:45:15 +0100128 u8 TI_I2C_Type; /* Type of I2C in UMP */
129 u8 TiReadI2C; /* Set to TRUE if we have read the
130 I2c in Boot Mode */
Matthias Kaehlcke241ca642007-12-04 16:15:40 +0100131 struct mutex es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int num_ports_open;
133 struct usb_serial *serial;
134};
135
136
137/* Devices that this driver supports */
138static struct usb_device_id edgeport_1port_id_table [] = {
139 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
140 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
141 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
142 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
143 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
144 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
145 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
146 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
147 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
148 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
149 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
150 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
151 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
152 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
153 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
154 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
155 { }
156};
157
158static struct usb_device_id edgeport_2port_id_table [] = {
159 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
160 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
161 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
162 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
163 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
164 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
165 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
166 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
167 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
168 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
169 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
170 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400171 /* The 4, 8 and 16 port devices show up as multiple 2 port devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400173 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
174 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
175 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
176 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 { }
178};
179
180/* Devices that this driver supports */
181static struct usb_device_id id_table_combined [] = {
182 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_1) },
183 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1) },
184 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_TI3410_EDGEPORT_1I) },
185 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROXIMITY) },
186 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOTION) },
187 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_MOISTURE) },
188 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_TEMPERATURE) },
189 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_HUMIDITY) },
190 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_POWER) },
191 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_LIGHT) },
192 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_RADIATION) },
193 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_DISTANCE) },
194 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_ACCELERATION) },
195 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_WP_PROX_DIST) },
196 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_HP4CD) },
197 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_PLUS_PWR_PCI) },
198 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2) },
199 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2C) },
200 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_2I) },
201 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_421) },
202 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21) },
203 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_42) },
204 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4) },
205 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4I) },
206 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22I) },
207 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_221C) },
208 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_22C) },
209 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_21C) },
210 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_4S) },
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400211 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8) },
212 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_8S) },
213 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416) },
214 { USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_TI_EDGEPORT_416B) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 { }
216};
217
Alan Cox2742fd82008-04-29 14:45:15 +0100218MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220static struct usb_driver io_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .name = "io_ti",
222 .probe = usb_serial_probe,
223 .disconnect = usb_serial_disconnect,
224 .id_table = id_table_combined,
Greg Kroah-Hartmanba9dc652005-11-16 13:41:28 -0800225 .no_dynamic_id = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
228
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530229static unsigned char OperationalMajorVersion;
230static unsigned char OperationalMinorVersion;
231static unsigned short OperationalBuildNumber;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233static int debug;
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235static int low_latency = EDGE_LOW_LATENCY;
236static int closing_wait = EDGE_CLOSING_WAIT;
Alan Cox2742fd82008-04-29 14:45:15 +0100237static int ignore_cpu_rev;
238static int default_uart_mode; /* RS232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Alan Cox2742fd82008-04-29 14:45:15 +0100240static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
241 unsigned char *data, int length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243static void stop_read(struct edgeport_port *edge_port);
244static int restart_read(struct edgeport_port *edge_port);
245
Alan Cox95da3102008-07-22 11:09:07 +0100246static void edge_set_termios(struct tty_struct *tty,
247 struct usb_serial_port *port, struct ktermios *old_termios);
248static void edge_send(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -0400250/* sysfs attributes */
251static int edge_create_sysfs_attrs(struct usb_serial_port *port);
252static int edge_remove_sysfs_attrs(struct usb_serial_port *port);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/* circular buffer */
255static struct edge_buf *edge_buf_alloc(unsigned int size);
256static void edge_buf_free(struct edge_buf *eb);
257static void edge_buf_clear(struct edge_buf *eb);
258static unsigned int edge_buf_data_avail(struct edge_buf *eb);
259static unsigned int edge_buf_space_avail(struct edge_buf *eb);
260static unsigned int edge_buf_put(struct edge_buf *eb, const char *buf,
261 unsigned int count);
262static unsigned int edge_buf_get(struct edge_buf *eb, char *buf,
263 unsigned int count);
264
265
Alan Cox2742fd82008-04-29 14:45:15 +0100266static int ti_vread_sync(struct usb_device *dev, __u8 request,
267 __u16 value, __u16 index, u8 *data, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 int status;
270
Alan Cox2742fd82008-04-29 14:45:15 +0100271 status = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
272 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN),
273 value, index, data, size, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (status < 0)
275 return status;
276 if (status != size) {
Alan Cox2742fd82008-04-29 14:45:15 +0100277 dbg("%s - wanted to write %d, but only wrote %d",
278 __func__, size, status);
279 return -ECOMM;
280 }
281 return 0;
282}
283
284static int ti_vsend_sync(struct usb_device *dev, __u8 request,
285 __u16 value, __u16 index, u8 *data, int size)
286{
287 int status;
288
289 status = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
290 (USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT),
291 value, index, data, size, 1000);
292 if (status < 0)
293 return status;
294 if (status != size) {
295 dbg("%s - wanted to write %d, but only wrote %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800296 __func__, size, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return -ECOMM;
298 }
299 return 0;
300}
301
Alan Cox2742fd82008-04-29 14:45:15 +0100302static int send_cmd(struct usb_device *dev, __u8 command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 __u8 moduleid, __u16 value, u8 *data,
304 int size)
305{
Alan Cox2742fd82008-04-29 14:45:15 +0100306 return ti_vsend_sync(dev, command, value, moduleid, data, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309/* clear tx/rx buffers and fifo in TI UMP */
Alan Cox2742fd82008-04-29 14:45:15 +0100310static int purge_port(struct usb_serial_port *port, __u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 int port_number = port->number - port->serial->minor;
313
Alan Cox2742fd82008-04-29 14:45:15 +0100314 dbg("%s - port %d, mask %x", __func__, port_number, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Alan Cox2742fd82008-04-29 14:45:15 +0100316 return send_cmd(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 UMPC_PURGE_PORT,
318 (__u8)(UMPM_UART1_PORT + port_number),
319 mask,
320 NULL,
321 0);
322}
323
324/**
Alan Cox2742fd82008-04-29 14:45:15 +0100325 * read_download_mem - Read edgeport memory from TI chip
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * @dev: usb device pointer
327 * @start_address: Device CPU address at which to read
328 * @length: Length of above data
329 * @address_type: Can read both XDATA and I2C
330 * @buffer: pointer to input data buffer
331 */
Alan Cox2742fd82008-04-29 14:45:15 +0100332static int read_download_mem(struct usb_device *dev, int start_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 int length, __u8 address_type, __u8 *buffer)
334{
335 int status = 0;
336 __u8 read_length;
337 __be16 be_start_address;
Alan Cox2742fd82008-04-29 14:45:15 +0100338
339 dbg("%s - @ %x for %d", __func__, start_address, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 /* Read in blocks of 64 bytes
342 * (TI firmware can't handle more than 64 byte reads)
343 */
344 while (length) {
345 if (length > 64)
Alan Cox2742fd82008-04-29 14:45:15 +0100346 read_length = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 else
348 read_length = (__u8)length;
349
350 if (read_length > 1) {
Alan Cox2742fd82008-04-29 14:45:15 +0100351 dbg("%s - @ %x for %d", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 start_address, read_length);
353 }
Alan Cox2742fd82008-04-29 14:45:15 +0100354 be_start_address = cpu_to_be16(start_address);
355 status = ti_vread_sync(dev, UMPC_MEMORY_READ,
356 (__u16)address_type,
357 (__force __u16)be_start_address,
358 buffer, read_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +0100361 dbg("%s - ERROR %x", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return status;
363 }
364
Alan Cox2742fd82008-04-29 14:45:15 +0100365 if (read_length > 1)
Harvey Harrison441b62c2008-03-03 16:08:34 -0800366 usb_serial_debug_data(debug, &dev->dev, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 read_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* Update pointers/length */
370 start_address += read_length;
371 buffer += read_length;
372 length -= read_length;
373 }
Alan Cox2742fd82008-04-29 14:45:15 +0100374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return status;
376}
377
Alan Cox2742fd82008-04-29 14:45:15 +0100378static int read_ram(struct usb_device *dev, int start_address,
379 int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Alan Cox2742fd82008-04-29 14:45:15 +0100381 return read_download_mem(dev, start_address, length,
382 DTK_ADDR_SPACE_XDATA, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385/* Read edgeport memory to a given block */
Alan Cox2742fd82008-04-29 14:45:15 +0100386static int read_boot_mem(struct edgeport_serial *serial,
387 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 int status = 0;
390 int i;
391
Alan Cox2742fd82008-04-29 14:45:15 +0100392 for (i = 0; i < length; i++) {
393 status = ti_vread_sync(serial->serial->dev,
394 UMPC_MEMORY_READ, serial->TI_I2C_Type,
395 (__u16)(start_address+i), &buffer[i], 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +0100397 dbg("%s - ERROR %x", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return status;
399 }
400 }
401
Alan Cox2742fd82008-04-29 14:45:15 +0100402 dbg("%s - start_address = %x, length = %d",
403 __func__, start_address, length);
404 usb_serial_debug_data(debug, &serial->serial->dev->dev,
405 __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 serial->TiReadI2C = 1;
408
409 return status;
410}
411
412/* Write given block to TI EPROM memory */
Alan Cox2742fd82008-04-29 14:45:15 +0100413static int write_boot_mem(struct edgeport_serial *serial,
414 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 int status = 0;
417 int i;
418 __u8 temp;
419
420 /* Must do a read before write */
421 if (!serial->TiReadI2C) {
Alan Cox2742fd82008-04-29 14:45:15 +0100422 status = read_boot_mem(serial, 0, 1, &temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (status)
424 return status;
425 }
426
Alan Cox2742fd82008-04-29 14:45:15 +0100427 for (i = 0; i < length; ++i) {
428 status = ti_vsend_sync(serial->serial->dev,
429 UMPC_MEMORY_WRITE, buffer[i],
430 (__u16)(i + start_address), NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (status)
432 return status;
433 }
434
Alan Cox2742fd82008-04-29 14:45:15 +0100435 dbg("%s - start_sddr = %x, length = %d",
436 __func__, start_address, length);
437 usb_serial_debug_data(debug, &serial->serial->dev->dev,
438 __func__, length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 return status;
441}
442
443
444/* Write edgeport I2C memory to TI chip */
Alan Cox2742fd82008-04-29 14:45:15 +0100445static int write_i2c_mem(struct edgeport_serial *serial,
446 int start_address, int length, __u8 address_type, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 int status = 0;
449 int write_length;
450 __be16 be_start_address;
451
452 /* We can only send a maximum of 1 aligned byte page at a time */
Alan Cox2742fd82008-04-29 14:45:15 +0100453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* calulate the number of bytes left in the first page */
Alan Cox2742fd82008-04-29 14:45:15 +0100455 write_length = EPROM_PAGE_SIZE -
456 (start_address & (EPROM_PAGE_SIZE - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if (write_length > length)
459 write_length = length;
460
Alan Cox2742fd82008-04-29 14:45:15 +0100461 dbg("%s - BytesInFirstPage Addr = %x, length = %d",
462 __func__, start_address, write_length);
463 usb_serial_debug_data(debug, &serial->serial->dev->dev,
464 __func__, write_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /* Write first page */
Alan Cox2742fd82008-04-29 14:45:15 +0100467 be_start_address = cpu_to_be16(start_address);
468 status = ti_vsend_sync(serial->serial->dev,
469 UMPC_MEMORY_WRITE, (__u16)address_type,
470 (__force __u16)be_start_address,
471 buffer, write_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +0100473 dbg("%s - ERROR %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return status;
475 }
476
477 length -= write_length;
478 start_address += write_length;
479 buffer += write_length;
480
Alan Cox2742fd82008-04-29 14:45:15 +0100481 /* We should be aligned now -- can write
482 max page size bytes at a time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 while (length) {
484 if (length > EPROM_PAGE_SIZE)
485 write_length = EPROM_PAGE_SIZE;
486 else
487 write_length = length;
488
Alan Cox2742fd82008-04-29 14:45:15 +0100489 dbg("%s - Page Write Addr = %x, length = %d",
490 __func__, start_address, write_length);
491 usb_serial_debug_data(debug, &serial->serial->dev->dev,
492 __func__, write_length, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /* Write next page */
Alan Cox2742fd82008-04-29 14:45:15 +0100495 be_start_address = cpu_to_be16(start_address);
496 status = ti_vsend_sync(serial->serial->dev, UMPC_MEMORY_WRITE,
497 (__u16)address_type,
498 (__force __u16)be_start_address,
499 buffer, write_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +0100501 dev_err(&serial->serial->dev->dev, "%s - ERROR %d\n",
502 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return status;
504 }
Alan Cox2742fd82008-04-29 14:45:15 +0100505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 length -= write_length;
507 start_address += write_length;
508 buffer += write_length;
509 }
510 return status;
511}
512
513/* Examine the UMP DMA registers and LSR
Alan Cox2742fd82008-04-29 14:45:15 +0100514 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * Check the MSBit of the X and Y DMA byte count registers.
516 * A zero in this bit indicates that the TX DMA buffers are empty
517 * then check the TX Empty bit in the UART.
518 */
Alan Cox2742fd82008-04-29 14:45:15 +0100519static int tx_active(struct edgeport_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 int status;
522 struct out_endpoint_desc_block *oedb;
523 __u8 *lsr;
524 int bytes_left = 0;
525
Alan Cox2742fd82008-04-29 14:45:15 +0100526 oedb = kmalloc(sizeof(*oedb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (!oedb) {
Alan Cox2742fd82008-04-29 14:45:15 +0100528 dev_err(&port->port->dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return -ENOMEM;
530 }
531
Alan Cox2742fd82008-04-29 14:45:15 +0100532 lsr = kmalloc(1, GFP_KERNEL); /* Sigh, that's right, just one byte,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 as not all platforms can do DMA
534 from stack */
535 if (!lsr) {
536 kfree(oedb);
537 return -ENOMEM;
538 }
539 /* Read the DMA Count Registers */
Alan Cox2742fd82008-04-29 14:45:15 +0100540 status = read_ram(port->port->serial->dev, port->dma_address,
541 sizeof(*oedb), (void *)oedb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (status)
543 goto exit_is_tx_active;
544
Alan Cox2742fd82008-04-29 14:45:15 +0100545 dbg("%s - XByteCount 0x%X", __func__, oedb->XByteCount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* and the LSR */
Alan Cox2742fd82008-04-29 14:45:15 +0100548 status = read_ram(port->port->serial->dev,
549 port->uart_base + UMPMEM_OFFS_UART_LSR, 1, lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if (status)
552 goto exit_is_tx_active;
Alan Cox2742fd82008-04-29 14:45:15 +0100553 dbg("%s - LSR = 0x%X", __func__, *lsr);
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* If either buffer has data or we are transmitting then return TRUE */
Alan Cox2742fd82008-04-29 14:45:15 +0100556 if ((oedb->XByteCount & 0x80) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 bytes_left += 64;
558
Alan Cox2742fd82008-04-29 14:45:15 +0100559 if ((*lsr & UMP_UART_LSR_TX_MASK) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 bytes_left += 1;
561
562 /* We return Not Active if we get any kind of error */
563exit_is_tx_active:
Alan Cox2742fd82008-04-29 14:45:15 +0100564 dbg("%s - return %d", __func__, bytes_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 kfree(lsr);
567 kfree(oedb);
568 return bytes_left;
569}
570
Alan Cox2742fd82008-04-29 14:45:15 +0100571static void chase_port(struct edgeport_port *port, unsigned long timeout,
572 int flush)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
574 int baud_rate;
Alan Cox4a90f092008-10-13 10:39:46 +0100575 struct tty_struct *tty = tty_port_tty_get(&port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 wait_queue_t wait;
577 unsigned long flags;
578
579 if (!timeout)
Alan Cox2742fd82008-04-29 14:45:15 +0100580 timeout = (HZ * EDGE_CLOSING_WAIT)/100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 /* wait for data to drain from the buffer */
583 spin_lock_irqsave(&port->ep_lock, flags);
584 init_waitqueue_entry(&wait, current);
585 add_wait_queue(&tty->write_wait, &wait);
586 for (;;) {
587 set_current_state(TASK_INTERRUPTIBLE);
588 if (edge_buf_data_avail(port->ep_out_buf) == 0
589 || timeout == 0 || signal_pending(current)
Alan Cox2742fd82008-04-29 14:45:15 +0100590 || !usb_get_intfdata(port->port->serial->interface))
591 /* disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593 spin_unlock_irqrestore(&port->ep_lock, flags);
594 timeout = schedule_timeout(timeout);
595 spin_lock_irqsave(&port->ep_lock, flags);
596 }
597 set_current_state(TASK_RUNNING);
598 remove_wait_queue(&tty->write_wait, &wait);
599 if (flush)
600 edge_buf_clear(port->ep_out_buf);
601 spin_unlock_irqrestore(&port->ep_lock, flags);
Alan Cox4a90f092008-10-13 10:39:46 +0100602 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 /* wait for data to drain from the device */
605 timeout += jiffies;
606 while ((long)(jiffies - timeout) < 0 && !signal_pending(current)
Alan Cox2742fd82008-04-29 14:45:15 +0100607 && usb_get_intfdata(port->port->serial->interface)) {
608 /* not disconnected */
609 if (!tx_active(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 break;
611 msleep(10);
612 }
613
614 /* disconnected */
615 if (!usb_get_intfdata(port->port->serial->interface))
616 return;
617
618 /* wait one more character time, based on baud rate */
Alan Cox2742fd82008-04-29 14:45:15 +0100619 /* (tx_active doesn't seem to wait for the last byte) */
620 baud_rate = port->baud_rate;
621 if (baud_rate == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 baud_rate = 50;
Julia Lawalldfa5ec72008-03-04 15:25:11 -0800623 msleep(max(1, DIV_ROUND_UP(10000, baud_rate)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Alan Cox2742fd82008-04-29 14:45:15 +0100626static int choose_config(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Alan Cox2742fd82008-04-29 14:45:15 +0100628 /*
629 * There may be multiple configurations on this device, in which case
630 * we would need to read and parse all of them to find out which one
631 * we want. However, we just support one config at this point,
632 * configuration # 1, which is Config Descriptor 0.
633 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Alan Cox2742fd82008-04-29 14:45:15 +0100635 dbg("%s - Number of Interfaces = %d",
636 __func__, dev->config->desc.bNumInterfaces);
637 dbg("%s - MAX Power = %d",
638 __func__, dev->config->desc.bMaxPower * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 if (dev->config->desc.bNumInterfaces != 1) {
Alan Cox2742fd82008-04-29 14:45:15 +0100641 dev_err(&dev->dev, "%s - bNumInterfaces is not 1, ERROR!\n",
642 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -ENODEV;
644 }
645
646 return 0;
647}
648
Alan Cox2742fd82008-04-29 14:45:15 +0100649static int read_rom(struct edgeport_serial *serial,
650 int start_address, int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 int status;
653
654 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
Alan Cox2742fd82008-04-29 14:45:15 +0100655 status = read_download_mem(serial->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 start_address,
657 length,
658 serial->TI_I2C_Type,
659 buffer);
660 } else {
Alan Cox2742fd82008-04-29 14:45:15 +0100661 status = read_boot_mem(serial, start_address, length,
662 buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return status;
665}
666
Alan Cox2742fd82008-04-29 14:45:15 +0100667static int write_rom(struct edgeport_serial *serial, int start_address,
668 int length, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 if (serial->product_info.TiMode == TI_MODE_BOOT)
Alan Cox2742fd82008-04-29 14:45:15 +0100671 return write_boot_mem(serial, start_address, length,
672 buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD)
Alan Cox2742fd82008-04-29 14:45:15 +0100675 return write_i2c_mem(serial, start_address, length,
676 serial->TI_I2C_Type, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return -EINVAL;
678}
679
680
681
682/* Read a descriptor header from I2C based on type */
Alan Cox2742fd82008-04-29 14:45:15 +0100683static int get_descriptor_addr(struct edgeport_serial *serial,
684 int desc_type, struct ti_i2c_desc *rom_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 int start_address;
687 int status;
688
689 /* Search for requested descriptor in I2C */
690 start_address = 2;
691 do {
Alan Cox2742fd82008-04-29 14:45:15 +0100692 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 start_address,
694 sizeof(struct ti_i2c_desc),
Alan Cox2742fd82008-04-29 14:45:15 +0100695 (__u8 *)rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (status)
697 return 0;
698
699 if (rom_desc->Type == desc_type)
700 return start_address;
701
Alan Cox2742fd82008-04-29 14:45:15 +0100702 start_address = start_address + sizeof(struct ti_i2c_desc)
703 + rom_desc->Size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 } while ((start_address < TI_MAX_I2C_SIZE) && rom_desc->Type);
Alan Cox2742fd82008-04-29 14:45:15 +0100706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708}
709
710/* Validate descriptor checksum */
Alan Cox2742fd82008-04-29 14:45:15 +0100711static int valid_csum(struct ti_i2c_desc *rom_desc, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 __u16 i;
714 __u8 cs = 0;
715
Alan Cox2742fd82008-04-29 14:45:15 +0100716 for (i = 0; i < rom_desc->Size; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 cs = (__u8)(cs + buffer[i]);
Alan Cox2742fd82008-04-29 14:45:15 +0100718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (cs != rom_desc->CheckSum) {
Alan Cox2742fd82008-04-29 14:45:15 +0100720 dbg("%s - Mismatch %x - %x", __func__, rom_desc->CheckSum, cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return -EINVAL;
722 }
723 return 0;
724}
725
726/* Make sure that the I2C image is good */
Alan Cox2742fd82008-04-29 14:45:15 +0100727static int check_i2c_image(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct device *dev = &serial->serial->dev->dev;
730 int status = 0;
731 struct ti_i2c_desc *rom_desc;
732 int start_address = 2;
733 __u8 *buffer;
734 __u16 ttype;
735
Alan Cox2742fd82008-04-29 14:45:15 +0100736 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!rom_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +0100738 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -ENOMEM;
740 }
Alan Cox2742fd82008-04-29 14:45:15 +0100741 buffer = kmalloc(TI_MAX_I2C_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +0100743 dev_err(dev, "%s - out of memory when allocating buffer\n",
744 __func__);
745 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -ENOMEM;
747 }
748
Alan Cox2742fd82008-04-29 14:45:15 +0100749 /* Read the first byte (Signature0) must be 0x52 or 0x10 */
750 status = read_rom(serial, 0, 1, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +0100752 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 if (*buffer != UMP5152 && *buffer != UMP3410) {
Alan Cox2742fd82008-04-29 14:45:15 +0100755 dev_err(dev, "%s - invalid buffer signature\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 status = -ENODEV;
Alan Cox2742fd82008-04-29 14:45:15 +0100757 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759
760 do {
Alan Cox2742fd82008-04-29 14:45:15 +0100761 /* Validate the I2C */
762 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 start_address,
764 sizeof(struct ti_i2c_desc),
765 (__u8 *)rom_desc);
766 if (status)
767 break;
768
Alan Cox2742fd82008-04-29 14:45:15 +0100769 if ((start_address + sizeof(struct ti_i2c_desc) +
770 rom_desc->Size) > TI_MAX_I2C_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 status = -ENODEV;
Alan Cox2742fd82008-04-29 14:45:15 +0100772 dbg("%s - structure too big, erroring out.", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 break;
774 }
775
Alan Cox2742fd82008-04-29 14:45:15 +0100776 dbg("%s Type = 0x%x", __func__, rom_desc->Type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Alan Cox2742fd82008-04-29 14:45:15 +0100778 /* Skip type 2 record */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 ttype = rom_desc->Type & 0x0f;
Alan Cox2742fd82008-04-29 14:45:15 +0100780 if (ttype != I2C_DESC_TYPE_FIRMWARE_BASIC
781 && ttype != I2C_DESC_TYPE_FIRMWARE_AUTO) {
782 /* Read the descriptor data */
783 status = read_rom(serial, start_address +
784 sizeof(struct ti_i2c_desc),
785 rom_desc->Size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (status)
787 break;
788
Alan Cox2742fd82008-04-29 14:45:15 +0100789 status = valid_csum(rom_desc, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (status)
791 break;
792 }
Alan Cox2742fd82008-04-29 14:45:15 +0100793 start_address = start_address + sizeof(struct ti_i2c_desc) +
794 rom_desc->Size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Alan Cox2742fd82008-04-29 14:45:15 +0100796 } while ((rom_desc->Type != I2C_DESC_TYPE_ION) &&
797 (start_address < TI_MAX_I2C_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Alan Cox2742fd82008-04-29 14:45:15 +0100799 if ((rom_desc->Type != I2C_DESC_TYPE_ION) ||
800 (start_address > TI_MAX_I2C_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 status = -ENODEV;
802
Alan Cox2742fd82008-04-29 14:45:15 +0100803out:
804 kfree(buffer);
805 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return status;
807}
808
Alan Cox2742fd82008-04-29 14:45:15 +0100809static int get_manuf_info(struct edgeport_serial *serial, __u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 int status;
812 int start_address;
813 struct ti_i2c_desc *rom_desc;
814 struct edge_ti_manuf_descriptor *desc;
815
Alan Cox2742fd82008-04-29 14:45:15 +0100816 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (!rom_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +0100818 dev_err(&serial->serial->dev->dev, "%s - out of memory\n",
819 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return -ENOMEM;
821 }
Alan Cox2742fd82008-04-29 14:45:15 +0100822 start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_ION,
823 rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (!start_address) {
Alan Cox2742fd82008-04-29 14:45:15 +0100826 dbg("%s - Edge Descriptor not found in I2C", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 status = -ENODEV;
828 goto exit;
829 }
830
Alan Cox2742fd82008-04-29 14:45:15 +0100831 /* Read the descriptor data */
832 status = read_rom(serial, start_address+sizeof(struct ti_i2c_desc),
833 rom_desc->Size, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (status)
835 goto exit;
Alan Cox2742fd82008-04-29 14:45:15 +0100836
837 status = valid_csum(rom_desc, buffer);
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 desc = (struct edge_ti_manuf_descriptor *)buffer;
Alan Cox2742fd82008-04-29 14:45:15 +0100840 dbg("%s - IonConfig 0x%x", __func__, desc->IonConfig);
841 dbg("%s - Version %d", __func__, desc->Version);
842 dbg("%s - Cpu/Board 0x%x", __func__, desc->CpuRev_BoardRev);
843 dbg("%s - NumPorts %d", __func__, desc->NumPorts);
844 dbg("%s - NumVirtualPorts %d", __func__, desc->NumVirtualPorts);
845 dbg("%s - TotalPorts %d", __func__, desc->TotalPorts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847exit:
Alan Cox2742fd82008-04-29 14:45:15 +0100848 kfree(rom_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return status;
850}
851
852/* Build firmware header used for firmware update */
Alan Cox2742fd82008-04-29 14:45:15 +0100853static int build_i2c_fw_hdr(__u8 *header, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 __u8 *buffer;
856 int buffer_size;
857 int i;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530858 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 __u8 cs = 0;
860 struct ti_i2c_desc *i2c_header;
861 struct ti_i2c_image_header *img_header;
862 struct ti_i2c_firmware_rec *firmware_rec;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530863 const struct firmware *fw;
864 const char *fw_name = "edgeport/down3.bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Alan Cox2742fd82008-04-29 14:45:15 +0100866 /* In order to update the I2C firmware we must change the type 2 record
867 * to type 0xF2. This will force the UMP to come up in Boot Mode.
868 * Then while in boot mode, the driver will download the latest
869 * firmware (padded to 15.5k) into the UMP ram. And finally when the
870 * device comes back up in download mode the driver will cause the new
871 * firmware to be copied from the UMP Ram to I2C and the firmware will
872 * update the record type from 0xf2 to 0x02.
873 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Alan Cox2742fd82008-04-29 14:45:15 +0100875 /* Allocate a 15.5k buffer + 2 bytes for version number
876 * (Firmware Record) */
877 buffer_size = (((1024 * 16) - 512 ) +
878 sizeof(struct ti_i2c_firmware_rec));
879
880 buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +0100882 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return -ENOMEM;
884 }
Alan Cox2742fd82008-04-29 14:45:15 +0100885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 // Set entire image of 0xffs
Alan Cox2742fd82008-04-29 14:45:15 +0100887 memset(buffer, 0xff, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530889 err = request_firmware(&fw, fw_name, dev);
890 if (err) {
891 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
892 fw_name, err);
893 kfree(buffer);
894 return err;
895 }
896
897 /* Save Download Version Number */
898 OperationalMajorVersion = fw->data[0];
899 OperationalMinorVersion = fw->data[1];
900 OperationalBuildNumber = fw->data[2] | (fw->data[3] << 8);
901
Alan Cox2742fd82008-04-29 14:45:15 +0100902 /* Copy version number into firmware record */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 firmware_rec = (struct ti_i2c_firmware_rec *)buffer;
904
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530905 firmware_rec->Ver_Major = OperationalMajorVersion;
906 firmware_rec->Ver_Minor = OperationalMinorVersion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Alan Cox2742fd82008-04-29 14:45:15 +0100908 /* Pointer to fw_down memory image */
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530909 img_header = (struct ti_i2c_image_header *)&fw->data[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Alan Cox2742fd82008-04-29 14:45:15 +0100911 memcpy(buffer + sizeof(struct ti_i2c_firmware_rec),
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530912 &fw->data[4 + sizeof(struct ti_i2c_image_header)],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 le16_to_cpu(img_header->Length));
914
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530915 release_firmware(fw);
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 for (i=0; i < buffer_size; i++) {
918 cs = (__u8)(cs + buffer[i]);
919 }
920
Alan Cox2742fd82008-04-29 14:45:15 +0100921 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Alan Cox2742fd82008-04-29 14:45:15 +0100923 /* Build new header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 i2c_header = (struct ti_i2c_desc *)header;
925 firmware_rec = (struct ti_i2c_firmware_rec*)i2c_header->Data;
Alan Cox2742fd82008-04-29 14:45:15 +0100926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 i2c_header->Type = I2C_DESC_TYPE_FIRMWARE_BLANK;
928 i2c_header->Size = (__u16)buffer_size;
929 i2c_header->CheckSum = cs;
Jaswinder Singhd12b2192008-07-04 23:06:09 +0530930 firmware_rec->Ver_Major = OperationalMajorVersion;
931 firmware_rec->Ver_Minor = OperationalMinorVersion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 return 0;
934}
935
936/* Try to figure out what type of I2c we have */
Alan Cox2742fd82008-04-29 14:45:15 +0100937static int i2c_type_bootmode(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
939 int status;
940 __u8 data;
Alan Cox2742fd82008-04-29 14:45:15 +0100941
942 /* Try to read type 2 */
943 status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
944 DTK_ADDR_SPACE_I2C_TYPE_II, 0, &data, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +0100946 dbg("%s - read 2 status error = %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 else
Alan Cox2742fd82008-04-29 14:45:15 +0100948 dbg("%s - read 2 data = 0x%x", __func__, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if ((!status) && (data == UMP5152 || data == UMP3410)) {
Alan Cox2742fd82008-04-29 14:45:15 +0100950 dbg("%s - ROM_TYPE_II", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
952 return 0;
953 }
954
Alan Cox2742fd82008-04-29 14:45:15 +0100955 /* Try to read type 3 */
956 status = ti_vread_sync(serial->serial->dev, UMPC_MEMORY_READ,
957 DTK_ADDR_SPACE_I2C_TYPE_III, 0, &data, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +0100959 dbg("%s - read 3 status error = %d", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 else
Alan Cox2742fd82008-04-29 14:45:15 +0100961 dbg("%s - read 2 data = 0x%x", __func__, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if ((!status) && (data == UMP5152 || data == UMP3410)) {
Alan Cox2742fd82008-04-29 14:45:15 +0100963 dbg("%s - ROM_TYPE_III", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_III;
965 return 0;
966 }
967
Alan Cox2742fd82008-04-29 14:45:15 +0100968 dbg("%s - Unknown", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
970 return -ENODEV;
971}
972
Alan Cox2742fd82008-04-29 14:45:15 +0100973static int bulk_xfer(struct usb_serial *serial, void *buffer,
974 int length, int *num_sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 int status;
977
Alan Cox2742fd82008-04-29 14:45:15 +0100978 status = usb_bulk_msg(serial->dev,
979 usb_sndbulkpipe(serial->dev,
980 serial->port[0]->bulk_out_endpointAddress),
981 buffer, length, num_sent, 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return status;
983}
984
985/* Download given firmware image to the device (IN BOOT MODE) */
Alan Cox2742fd82008-04-29 14:45:15 +0100986static int download_code(struct edgeport_serial *serial, __u8 *image,
987 int image_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 int status = 0;
990 int pos;
991 int transfer;
992 int done;
993
Alan Cox2742fd82008-04-29 14:45:15 +0100994 /* Transfer firmware image */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 for (pos = 0; pos < image_length; ) {
Alan Cox2742fd82008-04-29 14:45:15 +0100996 /* Read the next buffer from file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 transfer = image_length - pos;
998 if (transfer > EDGE_FW_BULK_MAX_PACKET_SIZE)
999 transfer = EDGE_FW_BULK_MAX_PACKET_SIZE;
1000
Alan Cox2742fd82008-04-29 14:45:15 +01001001 /* Transfer data */
1002 status = bulk_xfer(serial->serial, &image[pos],
1003 transfer, &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (status)
1005 break;
Alan Cox2742fd82008-04-29 14:45:15 +01001006 /* Advance buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 pos += done;
1008 }
1009
1010 return status;
1011}
1012
Alan Cox2742fd82008-04-29 14:45:15 +01001013/* FIXME!!! */
1014static int config_boot_dev(struct usb_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 return 0;
1017}
1018
Alan Cox2742fd82008-04-29 14:45:15 +01001019static int ti_cpu_rev(struct edge_ti_manuf_descriptor *desc)
1020{
1021 return TI_GET_CPU_REVISION(desc->CpuRev_BoardRev);
1022}
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/**
1025 * DownloadTIFirmware - Download run-time operating firmware to the TI5052
Alan Cox2742fd82008-04-29 14:45:15 +01001026 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 * This routine downloads the main operating code into the TI5052, using the
1028 * boot code already burned into E2PROM or ROM.
1029 */
Alan Cox2742fd82008-04-29 14:45:15 +01001030static int download_fw(struct edgeport_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
1032 struct device *dev = &serial->serial->dev->dev;
1033 int status = 0;
1034 int start_address;
1035 struct edge_ti_manuf_descriptor *ti_manuf_desc;
1036 struct usb_interface_descriptor *interface;
1037 int download_cur_ver;
1038 int download_new_ver;
1039
1040 /* This routine is entered by both the BOOT mode and the Download mode
1041 * We can determine which code is running by the reading the config
1042 * descriptor and if we have only one bulk pipe it is in boot mode
1043 */
1044 serial->product_info.hardware_type = HARDWARE_TYPE_TIUMP;
1045
1046 /* Default to type 2 i2c */
1047 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
1048
Alan Cox2742fd82008-04-29 14:45:15 +01001049 status = choose_config(serial->serial->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (status)
1051 return status;
1052
1053 interface = &serial->serial->interface->cur_altsetting->desc;
1054 if (!interface) {
Alan Cox2742fd82008-04-29 14:45:15 +01001055 dev_err(dev, "%s - no interface set, error!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return -ENODEV;
1057 }
1058
Alan Cox2742fd82008-04-29 14:45:15 +01001059 /*
1060 * Setup initial mode -- the default mode 0 is TI_MODE_CONFIGURING
1061 * if we have more than one endpoint we are definitely in download
1062 * mode
1063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (interface->bNumEndpoints > 1)
1065 serial->product_info.TiMode = TI_MODE_DOWNLOAD;
1066 else
Alan Cox2742fd82008-04-29 14:45:15 +01001067 /* Otherwise we will remain in configuring mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 serial->product_info.TiMode = TI_MODE_CONFIGURING;
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /********************************************************************/
1071 /* Download Mode */
1072 /********************************************************************/
1073 if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
1074 struct ti_i2c_desc *rom_desc;
1075
Andrew Morton9544e832008-02-04 23:57:50 -08001076 dbg("%s - RUNNING IN DOWNLOAD MODE", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Alan Cox2742fd82008-04-29 14:45:15 +01001078 status = check_i2c_image(serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (status) {
Andrew Morton9544e832008-02-04 23:57:50 -08001080 dbg("%s - DOWNLOAD MODE -- BAD I2C", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return status;
1082 }
Alan Cox2742fd82008-04-29 14:45:15 +01001083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 /* Validate Hardware version number
1085 * Read Manufacturing Descriptor from TI Based Edgeport
1086 */
Alan Cox2742fd82008-04-29 14:45:15 +01001087 ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (!ti_manuf_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001089 dev_err(dev, "%s - out of memory.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return -ENOMEM;
1091 }
Alan Cox2742fd82008-04-29 14:45:15 +01001092 status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001094 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return status;
1096 }
1097
Alan Cox2742fd82008-04-29 14:45:15 +01001098 /* Check version number of ION descriptor */
1099 if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
1100 dbg("%s - Wrong CPU Rev %d (Must be 2)",
1101 __func__, ti_cpu_rev(ti_manuf_desc));
1102 kfree(ti_manuf_desc);
1103 return -EINVAL;
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Alan Cox2742fd82008-04-29 14:45:15 +01001106 rom_desc = kmalloc(sizeof(*rom_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (!rom_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001108 dev_err(dev, "%s - out of memory.\n", __func__);
1109 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return -ENOMEM;
1111 }
1112
Alan Cox2742fd82008-04-29 14:45:15 +01001113 /* Search for type 2 record (firmware record) */
1114 start_address = get_descriptor_addr(serial,
1115 I2C_DESC_TYPE_FIRMWARE_BASIC, rom_desc);
1116 if (start_address != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 struct ti_i2c_firmware_rec *firmware_version;
1118 __u8 record;
1119
Alan Cox2742fd82008-04-29 14:45:15 +01001120 dbg("%s - Found Type FIRMWARE (Type 2) record",
1121 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Alan Cox2742fd82008-04-29 14:45:15 +01001123 firmware_version = kmalloc(sizeof(*firmware_version),
1124 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (!firmware_version) {
Alan Cox2742fd82008-04-29 14:45:15 +01001126 dev_err(dev, "%s - out of memory.\n", __func__);
1127 kfree(rom_desc);
1128 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return -ENOMEM;
1130 }
1131
Alan Cox2742fd82008-04-29 14:45:15 +01001132 /* Validate version number
1133 * Read the descriptor data
1134 */
1135 status = read_rom(serial, start_address +
1136 sizeof(struct ti_i2c_desc),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 sizeof(struct ti_i2c_firmware_rec),
1138 (__u8 *)firmware_version);
1139 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001140 kfree(firmware_version);
1141 kfree(rom_desc);
1142 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return status;
1144 }
1145
Alan Cox2742fd82008-04-29 14:45:15 +01001146 /* Check version number of download with current
1147 version in I2c */
1148 download_cur_ver = (firmware_version->Ver_Major << 8) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 (firmware_version->Ver_Minor);
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301150 download_new_ver = (OperationalMajorVersion << 8) +
1151 (OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Alan Cox2742fd82008-04-29 14:45:15 +01001153 dbg("%s - >> FW Versions Device %d.%d Driver %d.%d",
1154 __func__,
1155 firmware_version->Ver_Major,
1156 firmware_version->Ver_Minor,
1157 OperationalMajorVersion,
1158 OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Alan Cox2742fd82008-04-29 14:45:15 +01001160 /* Check if we have an old version in the I2C and
1161 update if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (download_cur_ver != download_new_ver) {
Alan Cox2742fd82008-04-29 14:45:15 +01001163 dbg("%s - Update I2C dld from %d.%d to %d.%d",
1164 __func__,
1165 firmware_version->Ver_Major,
1166 firmware_version->Ver_Minor,
1167 OperationalMajorVersion,
1168 OperationalMinorVersion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Alan Cox2742fd82008-04-29 14:45:15 +01001170 /* In order to update the I2C firmware we must
1171 * change the type 2 record to type 0xF2. This
1172 * will force the UMP to come up in Boot Mode.
1173 * Then while in boot mode, the driver will
1174 * download the latest firmware (padded to
1175 * 15.5k) into the UMP ram. Finally when the
1176 * device comes back up in download mode the
1177 * driver will cause the new firmware to be
1178 * copied from the UMP Ram to I2C and the
1179 * firmware will update the record type from
1180 * 0xf2 to 0x02.
1181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 record = I2C_DESC_TYPE_FIRMWARE_BLANK;
1183
Alan Cox2742fd82008-04-29 14:45:15 +01001184 /* Change the I2C Firmware record type to
1185 0xf2 to trigger an update */
1186 status = write_rom(serial, start_address,
1187 sizeof(record), &record);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (status) {
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 status;
1193 }
1194
Alan Cox2742fd82008-04-29 14:45:15 +01001195 /* verify the write -- must do this in order
1196 * for write to complete before we do the
1197 * hardware reset
1198 */
1199 status = read_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 start_address,
1201 sizeof(record),
1202 &record);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001204 kfree(firmware_version);
1205 kfree(rom_desc);
1206 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return status;
1208 }
1209
1210 if (record != I2C_DESC_TYPE_FIRMWARE_BLANK) {
Alan Cox2742fd82008-04-29 14:45:15 +01001211 dev_err(dev,
1212 "%s - error resetting device\n",
1213 __func__);
1214 kfree(firmware_version);
1215 kfree(rom_desc);
1216 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return -ENODEV;
1218 }
1219
Alan Cox2742fd82008-04-29 14:45:15 +01001220 dbg("%s - HARDWARE RESET", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Alan Cox2742fd82008-04-29 14:45:15 +01001222 /* Reset UMP -- Back to BOOT MODE */
1223 status = ti_vsend_sync(serial->serial->dev,
1224 UMPC_HARDWARE_RESET,
1225 0, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Alan Cox2742fd82008-04-29 14:45:15 +01001227 dbg("%s - HARDWARE RESET return %d",
1228 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 /* return an error on purpose. */
Alan Cox2742fd82008-04-29 14:45:15 +01001231 kfree(firmware_version);
1232 kfree(rom_desc);
1233 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return -ENODEV;
1235 }
Alan Cox2742fd82008-04-29 14:45:15 +01001236 kfree(firmware_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
Alan Cox2742fd82008-04-29 14:45:15 +01001238 /* Search for type 0xF2 record (firmware blank record) */
1239 else if ((start_address = get_descriptor_addr(serial, I2C_DESC_TYPE_FIRMWARE_BLANK, rom_desc)) != 0) {
1240#define HEADER_SIZE (sizeof(struct ti_i2c_desc) + \
1241 sizeof(struct ti_i2c_firmware_rec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 __u8 *header;
1243 __u8 *vheader;
1244
Alan Cox2742fd82008-04-29 14:45:15 +01001245 header = kmalloc(HEADER_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (!header) {
Alan Cox2742fd82008-04-29 14:45:15 +01001247 dev_err(dev, "%s - out of memory.\n", __func__);
1248 kfree(rom_desc);
1249 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return -ENOMEM;
1251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Alan Cox2742fd82008-04-29 14:45:15 +01001253 vheader = kmalloc(HEADER_SIZE, GFP_KERNEL);
1254 if (!vheader) {
1255 dev_err(dev, "%s - out of memory.\n", __func__);
1256 kfree(header);
1257 kfree(rom_desc);
1258 kfree(ti_manuf_desc);
1259 return -ENOMEM;
1260 }
1261
1262 dbg("%s - Found Type BLANK FIRMWARE (Type F2) record",
1263 __func__);
1264
1265 /*
1266 * In order to update the I2C firmware we must change
1267 * the type 2 record to type 0xF2. This will force the
1268 * UMP to come up in Boot Mode. Then while in boot
1269 * mode, the driver will download the latest firmware
1270 * (padded to 15.5k) into the UMP ram. Finally when the
1271 * device comes back up in download mode the driver
1272 * will cause the new firmware to be copied from the
1273 * UMP Ram to I2C and the firmware will update the
1274 * record type from 0xf2 to 0x02.
1275 */
1276 status = build_i2c_fw_hdr(header, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001278 kfree(vheader);
1279 kfree(header);
1280 kfree(rom_desc);
1281 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return status;
1283 }
1284
Alan Cox2742fd82008-04-29 14:45:15 +01001285 /* Update I2C with type 0xf2 record with correct
1286 size and checksum */
1287 status = write_rom(serial,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 start_address,
1289 HEADER_SIZE,
1290 header);
1291 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001292 kfree(vheader);
1293 kfree(header);
1294 kfree(rom_desc);
1295 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return status;
1297 }
1298
Alan Cox2742fd82008-04-29 14:45:15 +01001299 /* verify the write -- must do this in order for
1300 write to complete before we do the hardware reset */
1301 status = read_rom(serial, start_address,
1302 HEADER_SIZE, vheader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001305 dbg("%s - can't read header back", __func__);
1306 kfree(vheader);
1307 kfree(header);
1308 kfree(rom_desc);
1309 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return status;
1311 }
1312 if (memcmp(vheader, header, HEADER_SIZE)) {
Alan Cox2742fd82008-04-29 14:45:15 +01001313 dbg("%s - write download record failed",
1314 __func__);
1315 kfree(vheader);
1316 kfree(header);
1317 kfree(rom_desc);
1318 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return status;
1320 }
1321
Alan Cox2742fd82008-04-29 14:45:15 +01001322 kfree(vheader);
1323 kfree(header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Alan Cox2742fd82008-04-29 14:45:15 +01001325 dbg("%s - Start firmware update", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Alan Cox2742fd82008-04-29 14:45:15 +01001327 /* Tell firmware to copy download image into I2C */
1328 status = ti_vsend_sync(serial->serial->dev,
1329 UMPC_COPY_DNLD_TO_I2C, 0, 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Alan Cox2742fd82008-04-29 14:45:15 +01001331 dbg("%s - Update complete 0x%x", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001333 dev_err(dev,
1334 "%s - UMPC_COPY_DNLD_TO_I2C failed\n",
1335 __func__);
1336 kfree(rom_desc);
1337 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return status;
1339 }
1340 }
1341
1342 // The device is running the download code
Alan Cox2742fd82008-04-29 14:45:15 +01001343 kfree(rom_desc);
1344 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return 0;
1346 }
1347
1348 /********************************************************************/
1349 /* Boot Mode */
1350 /********************************************************************/
Andrew Morton9544e832008-02-04 23:57:50 -08001351 dbg("%s - RUNNING IN BOOT MODE", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Alan Cox2742fd82008-04-29 14:45:15 +01001353 /* Configure the TI device so we can use the BULK pipes for download */
1354 status = config_boot_dev(serial->serial->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (status)
1356 return status;
1357
Alan Cox2742fd82008-04-29 14:45:15 +01001358 if (le16_to_cpu(serial->serial->dev->descriptor.idVendor)
1359 != USB_VENDOR_ID_ION) {
1360 dbg("%s - VID = 0x%x", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 le16_to_cpu(serial->serial->dev->descriptor.idVendor));
1362 serial->TI_I2C_Type = DTK_ADDR_SPACE_I2C_TYPE_II;
Alan Cox2742fd82008-04-29 14:45:15 +01001363 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
1365
Alan Cox2742fd82008-04-29 14:45:15 +01001366 /* We have an ION device (I2c Must be programmed)
1367 Determine I2C image type */
1368 if (i2c_type_bootmode(serial))
1369 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Alan Cox2742fd82008-04-29 14:45:15 +01001371 /* Check for ION Vendor ID and that the I2C is valid */
1372 if (!check_i2c_image(serial)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 struct ti_i2c_image_header *header;
1374 int i;
1375 __u8 cs = 0;
1376 __u8 *buffer;
1377 int buffer_size;
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301378 int err;
1379 const struct firmware *fw;
1380 const char *fw_name = "edgeport/down3.bin";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 /* Validate Hardware version number
1383 * Read Manufacturing Descriptor from TI Based Edgeport
1384 */
Alan Cox2742fd82008-04-29 14:45:15 +01001385 ti_manuf_desc = kmalloc(sizeof(*ti_manuf_desc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (!ti_manuf_desc) {
Alan Cox2742fd82008-04-29 14:45:15 +01001387 dev_err(dev, "%s - out of memory.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 return -ENOMEM;
1389 }
Alan Cox2742fd82008-04-29 14:45:15 +01001390 status = get_manuf_info(serial, (__u8 *)ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001392 kfree(ti_manuf_desc);
1393 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395
Alan Cox2742fd82008-04-29 14:45:15 +01001396 /* Check for version 2 */
1397 if (!ignore_cpu_rev && ti_cpu_rev(ti_manuf_desc) < 2) {
1398 dbg("%s - Wrong CPU Rev %d (Must be 2)",
1399 __func__, ti_cpu_rev(ti_manuf_desc));
1400 kfree(ti_manuf_desc);
1401 goto stayinbootmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
1403
Alan Cox2742fd82008-04-29 14:45:15 +01001404 kfree(ti_manuf_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 /*
Alan Cox2742fd82008-04-29 14:45:15 +01001407 * In order to update the I2C firmware we must change the type
1408 * 2 record to type 0xF2. This will force the UMP to come up
1409 * in Boot Mode. Then while in boot mode, the driver will
1410 * download the latest firmware (padded to 15.5k) into the
1411 * UMP ram. Finally when the device comes back up in download
1412 * mode the driver will cause the new firmware to be copied
1413 * from the UMP Ram to I2C and the firmware will update the
1414 * record type from 0xf2 to 0x02.
1415 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * Do we really have to copy the whole firmware image,
1417 * or could we do this in place!
1418 */
1419
Alan Cox2742fd82008-04-29 14:45:15 +01001420 /* Allocate a 15.5k buffer + 3 byte header */
1421 buffer_size = (((1024 * 16) - 512) +
1422 sizeof(struct ti_i2c_image_header));
1423 buffer = kmalloc(buffer_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (!buffer) {
Alan Cox2742fd82008-04-29 14:45:15 +01001425 dev_err(dev, "%s - out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return -ENOMEM;
1427 }
Alan Cox2742fd82008-04-29 14:45:15 +01001428
1429 /* Initialize the buffer to 0xff (pad the buffer) */
1430 memset(buffer, 0xff, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Jaswinder Singhd12b2192008-07-04 23:06:09 +05301432 err = request_firmware(&fw, fw_name, dev);
1433 if (err) {
1434 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
1435 fw_name, err);
1436 kfree(buffer);
1437 return err;
1438 }
1439 memcpy(buffer, &fw->data[4], fw->size - 4);
1440 release_firmware(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Alan Cox2742fd82008-04-29 14:45:15 +01001442 for (i = sizeof(struct ti_i2c_image_header);
1443 i < buffer_size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 cs = (__u8)(cs + buffer[i]);
1445 }
Alan Cox2742fd82008-04-29 14:45:15 +01001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 header = (struct ti_i2c_image_header *)buffer;
Alan Cox2742fd82008-04-29 14:45:15 +01001448
1449 /* update length and checksum after padding */
1450 header->Length = cpu_to_le16((__u16)(buffer_size -
1451 sizeof(struct ti_i2c_image_header)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 header->CheckSum = cs;
1453
Alan Cox2742fd82008-04-29 14:45:15 +01001454 /* Download the operational code */
1455 dbg("%s - Downloading operational code image (TI UMP)",
1456 __func__);
1457 status = download_code(serial, buffer, buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Alan Cox2742fd82008-04-29 14:45:15 +01001459 kfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001462 dbg("%s - Error downloading operational code image",
1463 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return status;
1465 }
1466
Alan Cox2742fd82008-04-29 14:45:15 +01001467 /* Device will reboot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 serial->product_info.TiMode = TI_MODE_TRANSITIONING;
1469
Alan Cox2742fd82008-04-29 14:45:15 +01001470 dbg("%s - Download successful -- Device rebooting...",
1471 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /* return an error on purpose */
1474 return -ENODEV;
1475 }
1476
Alan Cox2742fd82008-04-29 14:45:15 +01001477stayinbootmode:
1478 /* Eprom is invalid or blank stay in boot mode */
Andrew Morton9544e832008-02-04 23:57:50 -08001479 dbg("%s - STAYING IN BOOT MODE", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 serial->product_info.TiMode = TI_MODE_BOOT;
1481
1482 return 0;
1483}
1484
1485
Alan Cox2742fd82008-04-29 14:45:15 +01001486static int ti_do_config(struct edgeport_port *port, int feature, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488 int port_number = port->port->number - port->port->serial->minor;
Alan Cox2742fd82008-04-29 14:45:15 +01001489 on = !!on; /* 1 or 0 not bitmask */
1490 return send_cmd(port->port->serial->dev,
1491 feature, (__u8)(UMPM_UART1_PORT + port_number),
1492 on, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Alan Cox2742fd82008-04-29 14:45:15 +01001496static int restore_mcr(struct edgeport_port *port, __u8 mcr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 int status = 0;
1499
Alan Cox2742fd82008-04-29 14:45:15 +01001500 dbg("%s - %x", __func__, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Alan Cox2742fd82008-04-29 14:45:15 +01001502 status = ti_do_config(port, UMPC_SET_CLR_DTR, mcr & MCR_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (status)
1504 return status;
Alan Cox2742fd82008-04-29 14:45:15 +01001505 status = ti_do_config(port, UMPC_SET_CLR_RTS, mcr & MCR_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (status)
1507 return status;
Alan Cox2742fd82008-04-29 14:45:15 +01001508 return ti_do_config(port, UMPC_SET_CLR_LOOPBACK, mcr & MCR_LOOPBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511/* Convert TI LSR to standard UART flags */
Alan Cox2742fd82008-04-29 14:45:15 +01001512static __u8 map_line_status(__u8 ti_lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
1514 __u8 lsr = 0;
1515
1516#define MAP_FLAG(flagUmp, flagUart) \
1517 if (ti_lsr & flagUmp) \
1518 lsr |= flagUart;
1519
1520 MAP_FLAG(UMP_UART_LSR_OV_MASK, LSR_OVER_ERR) /* overrun */
1521 MAP_FLAG(UMP_UART_LSR_PE_MASK, LSR_PAR_ERR) /* parity error */
1522 MAP_FLAG(UMP_UART_LSR_FE_MASK, LSR_FRM_ERR) /* framing error */
1523 MAP_FLAG(UMP_UART_LSR_BR_MASK, LSR_BREAK) /* break detected */
Alan Cox2742fd82008-04-29 14:45:15 +01001524 MAP_FLAG(UMP_UART_LSR_RX_MASK, LSR_RX_AVAIL) /* rx data available */
1525 MAP_FLAG(UMP_UART_LSR_TX_MASK, LSR_TX_EMPTY) /* tx hold reg empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527#undef MAP_FLAG
1528
1529 return lsr;
1530}
1531
Alan Cox2742fd82008-04-29 14:45:15 +01001532static void handle_new_msr(struct edgeport_port *edge_port, __u8 msr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534 struct async_icount *icount;
1535 struct tty_struct *tty;
1536
Alan Cox2742fd82008-04-29 14:45:15 +01001537 dbg("%s - %02x", __func__, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Alan Cox2742fd82008-04-29 14:45:15 +01001539 if (msr & (EDGEPORT_MSR_DELTA_CTS | EDGEPORT_MSR_DELTA_DSR |
1540 EDGEPORT_MSR_DELTA_RI | EDGEPORT_MSR_DELTA_CD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 icount = &edge_port->icount;
1542
1543 /* update input line counters */
1544 if (msr & EDGEPORT_MSR_DELTA_CTS)
1545 icount->cts++;
1546 if (msr & EDGEPORT_MSR_DELTA_DSR)
1547 icount->dsr++;
1548 if (msr & EDGEPORT_MSR_DELTA_CD)
1549 icount->dcd++;
1550 if (msr & EDGEPORT_MSR_DELTA_RI)
1551 icount->rng++;
Alan Cox2742fd82008-04-29 14:45:15 +01001552 wake_up_interruptible(&edge_port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554
1555 /* Save the new modem status */
1556 edge_port->shadow_msr = msr & 0xf0;
1557
Alan Cox4a90f092008-10-13 10:39:46 +01001558 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 /* handle CTS flow control */
1560 if (tty && C_CRTSCTS(tty)) {
1561 if (msr & EDGEPORT_MSR_CTS) {
1562 tty->hw_stopped = 0;
1563 tty_wakeup(tty);
1564 } else {
1565 tty->hw_stopped = 1;
1566 }
1567 }
Alan Cox4a90f092008-10-13 10:39:46 +01001568 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 return;
1571}
1572
Alan Cox2742fd82008-04-29 14:45:15 +01001573static void handle_new_lsr(struct edgeport_port *edge_port, int lsr_data,
1574 __u8 lsr, __u8 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 struct async_icount *icount;
Alan Cox2742fd82008-04-29 14:45:15 +01001577 __u8 new_lsr = (__u8)(lsr & (__u8)(LSR_OVER_ERR | LSR_PAR_ERR |
1578 LSR_FRM_ERR | LSR_BREAK));
Alan Cox4a90f092008-10-13 10:39:46 +01001579 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Alan Cox2742fd82008-04-29 14:45:15 +01001581 dbg("%s - %02x", __func__, new_lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 edge_port->shadow_lsr = lsr;
1584
Alan Cox2742fd82008-04-29 14:45:15 +01001585 if (new_lsr & LSR_BREAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 /*
1587 * Parity and Framing errors only count if they
1588 * occur exclusive of a break being received.
1589 */
1590 new_lsr &= (__u8)(LSR_OVER_ERR | LSR_BREAK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 /* Place LSR data byte into Rx buffer */
Alan Cox4a90f092008-10-13 10:39:46 +01001593 if (lsr_data) {
1594 tty = tty_port_tty_get(&edge_port->port->port);
1595 if (tty) {
1596 edge_tty_recv(&edge_port->port->dev, tty, &data, 1);
1597 tty_kref_put(tty);
1598 }
1599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /* update input line counters */
1602 icount = &edge_port->icount;
1603 if (new_lsr & LSR_BREAK)
1604 icount->brk++;
1605 if (new_lsr & LSR_OVER_ERR)
1606 icount->overrun++;
1607 if (new_lsr & LSR_PAR_ERR)
1608 icount->parity++;
1609 if (new_lsr & LSR_FRM_ERR)
1610 icount->frame++;
1611}
1612
1613
Alan Cox2742fd82008-04-29 14:45:15 +01001614static void edge_interrupt_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
Ming Leicdc97792008-02-24 18:41:47 +08001616 struct edgeport_serial *edge_serial = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 struct usb_serial_port *port;
1618 struct edgeport_port *edge_port;
1619 unsigned char *data = urb->transfer_buffer;
1620 int length = urb->actual_length;
1621 int port_number;
1622 int function;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001623 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 __u8 lsr;
1625 __u8 msr;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001626 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Harvey Harrison441b62c2008-03-03 16:08:34 -08001628 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001630 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 case 0:
1632 /* success */
1633 break;
1634 case -ECONNRESET:
1635 case -ENOENT:
1636 case -ESHUTDOWN:
1637 /* this urb is terminated, clean up */
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001638 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001639 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return;
1641 default:
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001642 dev_err(&urb->dev->dev, "%s - nonzero urb status received: "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001643 "%d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 goto exit;
1645 }
1646
1647 if (!length) {
Alan Cox2742fd82008-04-29 14:45:15 +01001648 dbg("%s - no data in urb", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 goto exit;
1650 }
1651
Alan Cox2742fd82008-04-29 14:45:15 +01001652 usb_serial_debug_data(debug, &edge_serial->serial->dev->dev,
1653 __func__, length, data);
1654
1655 if (length != 2) {
1656 dbg("%s - expecting packet of size 2, got %d",
1657 __func__, length);
1658 goto exit;
1659 }
1660
1661 port_number = TIUMP_GET_PORT_FROM_CODE(data[0]);
1662 function = TIUMP_GET_FUNC_FROM_CODE(data[0]);
1663 dbg("%s - port_number %d, function %d, info 0x%x",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001664 __func__, port_number, function, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 port = edge_serial->serial->port[port_number];
1666 edge_port = usb_get_serial_port_data(port);
1667 if (!edge_port) {
Alan Cox2742fd82008-04-29 14:45:15 +01001668 dbg("%s - edge_port not found", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return;
1670 }
1671 switch (function) {
1672 case TIUMP_INTERRUPT_CODE_LSR:
Alan Cox2742fd82008-04-29 14:45:15 +01001673 lsr = map_line_status(data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (lsr & UMP_UART_LSR_DATA_MASK) {
Alan Cox2742fd82008-04-29 14:45:15 +01001675 /* Save the LSR event for bulk read
1676 completion routine */
1677 dbg("%s - LSR Event Port %u LSR Status = %02x",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001678 __func__, port_number, lsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 edge_port->lsr_event = 1;
1680 edge_port->lsr_mask = lsr;
1681 } else {
Alan Cox2742fd82008-04-29 14:45:15 +01001682 dbg("%s - ===== Port %d LSR Status = %02x ======",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001683 __func__, port_number, lsr);
Alan Cox2742fd82008-04-29 14:45:15 +01001684 handle_new_lsr(edge_port, 0, lsr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686 break;
1687
Alan Cox2742fd82008-04-29 14:45:15 +01001688 case TIUMP_INTERRUPT_CODE_MSR: /* MSR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 /* Copy MSR from UMP */
1690 msr = data[1];
Alan Cox2742fd82008-04-29 14:45:15 +01001691 dbg("%s - ===== Port %u MSR Status = %02x ======\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001692 __func__, port_number, msr);
Alan Cox2742fd82008-04-29 14:45:15 +01001693 handle_new_msr(edge_port, msr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 break;
1695
1696 default:
Alan Cox2742fd82008-04-29 14:45:15 +01001697 dev_err(&urb->dev->dev,
1698 "%s - Unknown Interrupt code from UMP %x\n",
1699 __func__, data[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 break;
Alan Cox2742fd82008-04-29 14:45:15 +01001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703
1704exit:
Alan Cox2742fd82008-04-29 14:45:15 +01001705 retval = usb_submit_urb(urb, GFP_ATOMIC);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001706 if (retval)
Alan Cox2742fd82008-04-29 14:45:15 +01001707 dev_err(&urb->dev->dev,
1708 "%s - usb_submit_urb failed with result %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001709 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710}
1711
Alan Cox2742fd82008-04-29 14:45:15 +01001712static void edge_bulk_in_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Ming Leicdc97792008-02-24 18:41:47 +08001714 struct edgeport_port *edge_port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 unsigned char *data = urb->transfer_buffer;
1716 struct tty_struct *tty;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001717 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 int port_number;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001719 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Harvey Harrison441b62c2008-03-03 16:08:34 -08001721 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001723 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 case 0:
1725 /* success */
1726 break;
1727 case -ECONNRESET:
1728 case -ENOENT:
1729 case -ESHUTDOWN:
1730 /* this urb is terminated, clean up */
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001731 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001732 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return;
1734 default:
Alan Cox2742fd82008-04-29 14:45:15 +01001735 dev_err(&urb->dev->dev,
1736 "%s - nonzero read bulk status received: %d\n",
1737 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
1739
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001740 if (status == -EPIPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 goto exit;
1742
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001743 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001744 dev_err(&urb->dev->dev, "%s - stopping read!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return;
1746 }
1747
1748 port_number = edge_port->port->number - edge_port->port->serial->minor;
1749
1750 if (edge_port->lsr_event) {
1751 edge_port->lsr_event = 0;
Alan Cox2742fd82008-04-29 14:45:15 +01001752 dbg("%s ===== Port %u LSR Status = %02x, Data = %02x ======",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001753 __func__, port_number, edge_port->lsr_mask, *data);
Alan Cox2742fd82008-04-29 14:45:15 +01001754 handle_new_lsr(edge_port, 1, edge_port->lsr_mask, *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 /* Adjust buffer length/pointer */
1756 --urb->actual_length;
1757 ++data;
1758 }
1759
Alan Cox4a90f092008-10-13 10:39:46 +01001760 tty = tty_port_tty_get(&edge_port->port->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (tty && urb->actual_length) {
Alan Cox2742fd82008-04-29 14:45:15 +01001762 usb_serial_debug_data(debug, &edge_port->port->dev,
1763 __func__, urb->actual_length, data);
1764 if (edge_port->close_pending)
1765 dbg("%s - close pending, dropping data on the floor",
1766 __func__);
1767 else
1768 edge_tty_recv(&edge_port->port->dev, tty, data,
1769 urb->actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 edge_port->icount.rx += urb->actual_length;
1771 }
Alan Cox4a90f092008-10-13 10:39:46 +01001772 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774exit:
1775 /* continue read unless stopped */
1776 spin_lock(&edge_port->ep_lock);
1777 if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING) {
1778 urb->dev = edge_port->port->serial->dev;
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001779 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 } else if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPING) {
1781 edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPED;
1782 }
1783 spin_unlock(&edge_port->ep_lock);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001784 if (retval)
Alan Cox2742fd82008-04-29 14:45:15 +01001785 dev_err(&urb->dev->dev,
1786 "%s - usb_submit_urb failed with result %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001787 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788}
1789
Alan Cox2742fd82008-04-29 14:45:15 +01001790static void edge_tty_recv(struct device *dev, struct tty_struct *tty,
1791 unsigned char *data, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
Alan Cox2742fd82008-04-29 14:45:15 +01001793 int queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Alan Cox2742fd82008-04-29 14:45:15 +01001795 tty_buffer_request_room(tty, length);
1796 queued = tty_insert_flip_string(tty, data, length);
1797 if (queued < length)
1798 dev_err(dev, "%s - dropping data, %d bytes lost\n",
1799 __func__, length - queued);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 tty_flip_buffer_push(tty);
1801}
1802
Alan Cox2742fd82008-04-29 14:45:15 +01001803static void edge_bulk_out_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Ming Leicdc97792008-02-24 18:41:47 +08001805 struct usb_serial_port *port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001807 int status = urb->status;
Alan Cox4a90f092008-10-13 10:39:46 +01001808 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Alan Cox2742fd82008-04-29 14:45:15 +01001810 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 edge_port->ep_write_urb_in_use = 0;
1813
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001814 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 case 0:
1816 /* success */
1817 break;
1818 case -ECONNRESET:
1819 case -ENOENT:
1820 case -ESHUTDOWN:
1821 /* this urb is terminated, clean up */
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001822 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001823 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return;
1825 default:
Greg Kroah-Hartmanee337c22007-06-15 15:44:13 -07001826 dev_err(&urb->dev->dev, "%s - nonzero write bulk status "
Harvey Harrison441b62c2008-03-03 16:08:34 -08001827 "received: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829
1830 /* send any buffered data */
Alan Cox4a90f092008-10-13 10:39:46 +01001831 tty = tty_port_tty_get(&port->port);
1832 edge_send(tty);
1833 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
Alan Cox95da3102008-07-22 11:09:07 +01001836static int edge_open(struct tty_struct *tty,
1837 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
1839 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
1840 struct edgeport_serial *edge_serial;
1841 struct usb_device *dev;
1842 struct urb *urb;
1843 int port_number;
1844 int status;
1845 u16 open_settings;
1846 u8 transaction_timeout;
1847
Harvey Harrison441b62c2008-03-03 16:08:34 -08001848 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 if (edge_port == NULL)
1851 return -ENODEV;
1852
Alan Cox95da3102008-07-22 11:09:07 +01001853 if (tty)
1854 tty->low_latency = low_latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 port_number = port->number - port->serial->minor;
1857 switch (port_number) {
Alan Cox2742fd82008-04-29 14:45:15 +01001858 case 0:
1859 edge_port->uart_base = UMPMEM_BASE_UART1;
1860 edge_port->dma_address = UMPD_OEDB1_ADDRESS;
1861 break;
1862 case 1:
1863 edge_port->uart_base = UMPMEM_BASE_UART2;
1864 edge_port->dma_address = UMPD_OEDB2_ADDRESS;
1865 break;
1866 default:
1867 dev_err(&port->dev, "Unknown port number!!!\n");
1868 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870
Alan Cox2742fd82008-04-29 14:45:15 +01001871 dbg("%s - port_number = %d, uart_base = %04x, dma_address = %04x",
1872 __func__, port_number, edge_port->uart_base,
1873 edge_port->dma_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 dev = port->serial->dev;
1876
Alan Cox2742fd82008-04-29 14:45:15 +01001877 memset(&(edge_port->icount), 0x00, sizeof(edge_port->icount));
1878 init_waitqueue_head(&edge_port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880 /* turn off loopback */
Alan Cox2742fd82008-04-29 14:45:15 +01001881 status = ti_do_config(edge_port, UMPC_SET_CLR_LOOPBACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001883 dev_err(&port->dev,
1884 "%s - cannot send clear loopback command, %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -08001885 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return status;
1887 }
Alan Cox2742fd82008-04-29 14:45:15 +01001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 /* set up the port settings */
Alan Cox95da3102008-07-22 11:09:07 +01001890 if (tty)
Alan Cox4a90f092008-10-13 10:39:46 +01001891 edge_set_termios(tty, port, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 /* open up the port */
1894
1895 /* milliseconds to timeout for DMA transfer */
1896 transaction_timeout = 2;
1897
Alan Cox2742fd82008-04-29 14:45:15 +01001898 edge_port->ump_read_timeout =
1899 max(20, ((transaction_timeout * 3) / 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Alan Cox2742fd82008-04-29 14:45:15 +01001901 /* milliseconds to timeout for DMA transfer */
1902 open_settings = (u8)(UMP_DMA_MODE_CONTINOUS |
1903 UMP_PIPE_TRANS_TIMEOUT_ENA |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 (transaction_timeout << 2));
1905
Alan Cox2742fd82008-04-29 14:45:15 +01001906 dbg("%s - Sending UMPC_OPEN_PORT", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 /* Tell TI to open and start the port */
Alan Cox2742fd82008-04-29 14:45:15 +01001909 status = send_cmd(dev, UMPC_OPEN_PORT,
1910 (u8)(UMPM_UART1_PORT + port_number), open_settings, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001912 dev_err(&port->dev, "%s - cannot send open command, %d\n",
1913 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 return status;
1915 }
1916
1917 /* Start the DMA? */
Alan Cox2742fd82008-04-29 14:45:15 +01001918 status = send_cmd(dev, UMPC_START_PORT,
1919 (u8)(UMPM_UART1_PORT + port_number), 0, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001921 dev_err(&port->dev, "%s - cannot send start DMA command, %d\n",
1922 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return status;
1924 }
1925
1926 /* Clear TX and RX buffers in UMP */
Alan Cox2742fd82008-04-29 14:45:15 +01001927 status = purge_port(port, UMP_PORT_DIR_OUT | UMP_PORT_DIR_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001929 dev_err(&port->dev,
1930 "%s - cannot send clear buffers command, %d\n",
1931 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return status;
1933 }
1934
1935 /* Read Initial MSR */
Alan Cox2742fd82008-04-29 14:45:15 +01001936 status = ti_vread_sync(dev, UMPC_READ_MSR, 0,
1937 (__u16)(UMPM_UART1_PORT + port_number),
1938 &edge_port->shadow_msr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001940 dev_err(&port->dev, "%s - cannot send read MSR command, %d\n",
1941 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return status;
1943 }
1944
Alan Cox2742fd82008-04-29 14:45:15 +01001945 dbg("ShadowMSR 0x%X", edge_port->shadow_msr);
1946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /* Set Initial MCR */
1948 edge_port->shadow_mcr = MCR_RTS | MCR_DTR;
Alan Cox2742fd82008-04-29 14:45:15 +01001949 dbg("ShadowMCR 0x%X", edge_port->shadow_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 edge_serial = edge_port->edge_serial;
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001952 if (mutex_lock_interruptible(&edge_serial->es_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return -ERESTARTSYS;
1954 if (edge_serial->num_ports_open == 0) {
Alan Cox2742fd82008-04-29 14:45:15 +01001955 /* we are the first port to open, post the interrupt urb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 urb = edge_serial->serial->port[0]->interrupt_in_urb;
1957 if (!urb) {
Alan Cox2742fd82008-04-29 14:45:15 +01001958 dev_err(&port->dev,
1959 "%s - no interrupt urb present, exiting\n",
1960 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 status = -EINVAL;
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001962 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964 urb->complete = edge_interrupt_callback;
1965 urb->context = edge_serial;
1966 urb->dev = dev;
Alan Cox2742fd82008-04-29 14:45:15 +01001967 status = usb_submit_urb(urb, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001969 dev_err(&port->dev,
1970 "%s - usb_submit_urb failed with value %d\n",
1971 __func__, status);
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01001972 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 }
1974 }
1975
1976 /*
1977 * reset the data toggle on the bulk endpoints to work around bug in
1978 * host controllers where things get out of sync some times
1979 */
Alan Cox2742fd82008-04-29 14:45:15 +01001980 usb_clear_halt(dev, port->write_urb->pipe);
1981 usb_clear_halt(dev, port->read_urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 /* start up our bulk read urb */
1984 urb = port->read_urb;
1985 if (!urb) {
Alan Cox2742fd82008-04-29 14:45:15 +01001986 dev_err(&port->dev, "%s - no read urb present, exiting\n",
1987 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 status = -EINVAL;
1989 goto unlink_int_urb;
1990 }
1991 edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
1992 urb->complete = edge_bulk_in_callback;
1993 urb->context = edge_port;
1994 urb->dev = dev;
Alan Cox2742fd82008-04-29 14:45:15 +01001995 status = usb_submit_urb(urb, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01001997 dev_err(&port->dev,
1998 "%s - read bulk usb_submit_urb failed with value %d\n",
1999 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 goto unlink_int_urb;
2001 }
2002
2003 ++edge_serial->num_ports_open;
2004
Harvey Harrison441b62c2008-03-03 16:08:34 -08002005 dbg("%s - exited", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002007 goto release_es_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009unlink_int_urb:
2010 if (edge_port->edge_serial->num_ports_open == 0)
2011 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002012release_es_lock:
2013 mutex_unlock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return status;
2015}
2016
Alan Cox95da3102008-07-22 11:09:07 +01002017static void edge_close(struct tty_struct *tty,
2018 struct usb_serial_port *port, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
2020 struct edgeport_serial *edge_serial;
2021 struct edgeport_port *edge_port;
2022 int port_number;
2023 int status;
2024
Harvey Harrison441b62c2008-03-03 16:08:34 -08002025 dbg("%s - port %d", __func__, port->number);
Alan Cox2742fd82008-04-29 14:45:15 +01002026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 edge_serial = usb_get_serial_data(port->serial);
2028 edge_port = usb_get_serial_port_data(port);
Alan Cox2742fd82008-04-29 14:45:15 +01002029 if (edge_serial == NULL || edge_port == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 return;
Alan Cox2742fd82008-04-29 14:45:15 +01002031
2032 /* The bulkreadcompletion routine will check
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 * this flag and dump add read data */
2034 edge_port->close_pending = 1;
2035
2036 /* chase the port close and flush */
Alan Cox2742fd82008-04-29 14:45:15 +01002037 chase_port(edge_port, (HZ * closing_wait) / 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 usb_kill_urb(port->read_urb);
2040 usb_kill_urb(port->write_urb);
2041 edge_port->ep_write_urb_in_use = 0;
2042
2043 /* assuming we can still talk to the device,
2044 * send a close port command to it */
Harvey Harrison441b62c2008-03-03 16:08:34 -08002045 dbg("%s - send umpc_close_port", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 port_number = port->number - port->serial->minor;
Alan Cox2742fd82008-04-29 14:45:15 +01002047 status = send_cmd(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 UMPC_CLOSE_PORT,
2049 (__u8)(UMPM_UART1_PORT + port_number),
2050 0,
2051 NULL,
2052 0);
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002053 mutex_lock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 --edge_port->edge_serial->num_ports_open;
2055 if (edge_port->edge_serial->num_ports_open <= 0) {
2056 /* last port is now closed, let's shut down our interrupt urb */
2057 usb_kill_urb(port->serial->port[0]->interrupt_in_urb);
2058 edge_port->edge_serial->num_ports_open = 0;
2059 }
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002060 mutex_unlock(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 edge_port->close_pending = 0;
2062
Harvey Harrison441b62c2008-03-03 16:08:34 -08002063 dbg("%s - exited", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
Alan Cox95da3102008-07-22 11:09:07 +01002066static int edge_write(struct tty_struct *tty, struct usb_serial_port *port,
2067 const unsigned char *data, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
2069 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2070 unsigned long flags;
2071
Harvey Harrison441b62c2008-03-03 16:08:34 -08002072 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002075 dbg("%s - write request of 0 bytes", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return 0;
2077 }
2078
2079 if (edge_port == NULL)
2080 return -ENODEV;
2081 if (edge_port->close_pending == 1)
2082 return -ENODEV;
2083
2084 spin_lock_irqsave(&edge_port->ep_lock, flags);
2085 count = edge_buf_put(edge_port->ep_out_buf, data, count);
2086 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2087
Alan Cox95da3102008-07-22 11:09:07 +01002088 edge_send(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 return count;
2091}
2092
Alan Cox95da3102008-07-22 11:09:07 +01002093static void edge_send(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Alan Cox95da3102008-07-22 11:09:07 +01002095 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 int count, result;
2097 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 unsigned long flags;
2099
2100
Harvey Harrison441b62c2008-03-03 16:08:34 -08002101 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 spin_lock_irqsave(&edge_port->ep_lock, flags);
2104
2105 if (edge_port->ep_write_urb_in_use) {
2106 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2107 return;
2108 }
2109
2110 count = edge_buf_get(edge_port->ep_out_buf,
2111 port->write_urb->transfer_buffer,
2112 port->bulk_out_size);
2113
2114 if (count == 0) {
2115 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2116 return;
2117 }
2118
2119 edge_port->ep_write_urb_in_use = 1;
2120
2121 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2122
Alan Cox2742fd82008-04-29 14:45:15 +01002123 usb_serial_debug_data(debug, &port->dev, __func__, count,
2124 port->write_urb->transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 /* set up our urb */
Alan Cox2742fd82008-04-29 14:45:15 +01002127 usb_fill_bulk_urb(port->write_urb, port->serial->dev,
2128 usb_sndbulkpipe(port->serial->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 port->bulk_out_endpointAddress),
2130 port->write_urb->transfer_buffer, count,
2131 edge_bulk_out_callback,
2132 port);
2133
2134 /* send the data out the bulk port */
2135 result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
2136 if (result) {
Alan Cox2742fd82008-04-29 14:45:15 +01002137 dev_err(&port->dev,
2138 "%s - failed submitting write urb, error %d\n",
2139 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 edge_port->ep_write_urb_in_use = 0;
Alan Cox2742fd82008-04-29 14:45:15 +01002141 /* TODO: reschedule edge_send */
2142 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 edge_port->icount.tx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /* wakeup any process waiting for writes to complete */
2146 /* there is now more room in the buffer for new writes */
Alan Cox2742fd82008-04-29 14:45:15 +01002147 if (tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
Alan Cox95da3102008-07-22 11:09:07 +01002151static int edge_write_room(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Alan Cox95da3102008-07-22 11:09:07 +01002153 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2155 int room = 0;
2156 unsigned long flags;
2157
Harvey Harrison441b62c2008-03-03 16:08:34 -08002158 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 if (edge_port == NULL)
Alan Cox2742fd82008-04-29 14:45:15 +01002161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 if (edge_port->close_pending == 1)
Alan Cox2742fd82008-04-29 14:45:15 +01002163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 spin_lock_irqsave(&edge_port->ep_lock, flags);
2166 room = edge_buf_space_avail(edge_port->ep_out_buf);
2167 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2168
Harvey Harrison441b62c2008-03-03 16:08:34 -08002169 dbg("%s - returns %d", __func__, room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return room;
2171}
2172
Alan Cox95da3102008-07-22 11:09:07 +01002173static int edge_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Alan Cox95da3102008-07-22 11:09:07 +01002175 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2177 int chars = 0;
2178 unsigned long flags;
2179
Harvey Harrison441b62c2008-03-03 16:08:34 -08002180 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 if (edge_port == NULL)
Alan Cox2742fd82008-04-29 14:45:15 +01002183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (edge_port->close_pending == 1)
Alan Cox2742fd82008-04-29 14:45:15 +01002185 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 spin_lock_irqsave(&edge_port->ep_lock, flags);
2188 chars = edge_buf_data_avail(edge_port->ep_out_buf);
2189 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2190
Alan Cox2742fd82008-04-29 14:45:15 +01002191 dbg("%s - returns %d", __func__, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return chars;
2193}
2194
Alan Cox95da3102008-07-22 11:09:07 +01002195static void edge_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Alan Cox95da3102008-07-22 11:09:07 +01002197 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 int status;
2200
Harvey Harrison441b62c2008-03-03 16:08:34 -08002201 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 if (edge_port == NULL)
2204 return;
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 /* if we are implementing XON/XOFF, send the stop character */
2207 if (I_IXOFF(tty)) {
2208 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01002209 status = edge_write(tty, port, &stop_char, 1);
2210 if (status <= 0) {
2211 dev_err(&port->dev, "%s - failed to write stop character, %d\n", __func__, status);
2212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 }
2214
2215 /* if we are implementing RTS/CTS, stop reads */
2216 /* and the Edgeport will clear the RTS line */
2217 if (C_CRTSCTS(tty))
2218 stop_read(edge_port);
2219
2220}
2221
Alan Cox95da3102008-07-22 11:09:07 +01002222static void edge_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
Alan Cox95da3102008-07-22 11:09:07 +01002224 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 int status;
2227
Harvey Harrison441b62c2008-03-03 16:08:34 -08002228 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 if (edge_port == NULL)
2231 return;
2232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 /* if we are implementing XON/XOFF, send the start character */
2234 if (I_IXOFF(tty)) {
2235 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01002236 status = edge_write(tty, port, &start_char, 1);
2237 if (status <= 0) {
2238 dev_err(&port->dev, "%s - failed to write start character, %d\n", __func__, status);
2239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 /* if we are implementing RTS/CTS, restart reads */
2242 /* are the Edgeport will assert the RTS line */
2243 if (C_CRTSCTS(tty)) {
2244 status = restart_read(edge_port);
2245 if (status)
Alan Cox2742fd82008-04-29 14:45:15 +01002246 dev_err(&port->dev,
2247 "%s - read bulk usb_submit_urb failed: %d\n",
2248 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 }
2250
2251}
2252
2253static void stop_read(struct edgeport_port *edge_port)
2254{
2255 unsigned long flags;
2256
2257 spin_lock_irqsave(&edge_port->ep_lock, flags);
2258
2259 if (edge_port->ep_read_urb_state == EDGE_READ_URB_RUNNING)
2260 edge_port->ep_read_urb_state = EDGE_READ_URB_STOPPING;
2261 edge_port->shadow_mcr &= ~MCR_RTS;
2262
2263 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2264}
2265
2266static int restart_read(struct edgeport_port *edge_port)
2267{
2268 struct urb *urb;
2269 int status = 0;
2270 unsigned long flags;
2271
2272 spin_lock_irqsave(&edge_port->ep_lock, flags);
2273
2274 if (edge_port->ep_read_urb_state == EDGE_READ_URB_STOPPED) {
2275 urb = edge_port->port->read_urb;
2276 urb->complete = edge_bulk_in_callback;
2277 urb->context = edge_port;
2278 urb->dev = edge_port->port->serial->dev;
Oliver Neukumefdff602007-06-05 10:50:48 +02002279 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281 edge_port->ep_read_urb_state = EDGE_READ_URB_RUNNING;
2282 edge_port->shadow_mcr |= MCR_RTS;
2283
2284 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
2285
2286 return status;
2287}
2288
Alan Cox95da3102008-07-22 11:09:07 +01002289static void change_port_settings(struct tty_struct *tty,
2290 struct edgeport_port *edge_port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
2292 struct ump_uart_config *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 int baud;
2294 unsigned cflag;
2295 int status;
Alan Cox2742fd82008-04-29 14:45:15 +01002296 int port_number = edge_port->port->number -
2297 edge_port->port->serial->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Harvey Harrison441b62c2008-03-03 16:08:34 -08002299 dbg("%s - port %d", __func__, edge_port->port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Alan Cox95da3102008-07-22 11:09:07 +01002301 config = kmalloc (sizeof (*config), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 if (!config) {
Alan Cox2742fd82008-04-29 14:45:15 +01002303 *tty->termios = *old_termios;
2304 dev_err(&edge_port->port->dev, "%s - out of memory\n",
2305 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return;
2307 }
2308
2309 cflag = tty->termios->c_cflag;
2310
2311 config->wFlags = 0;
2312
2313 /* These flags must be set */
2314 config->wFlags |= UMP_MASK_UART_FLAGS_RECEIVE_MS_INT;
2315 config->wFlags |= UMP_MASK_UART_FLAGS_AUTO_START_ON_ERR;
2316 config->bUartMode = (__u8)(edge_port->bUartMode);
2317
2318 switch (cflag & CSIZE) {
Alan Cox2742fd82008-04-29 14:45:15 +01002319 case CS5:
2320 config->bDataBits = UMP_UART_CHAR5BITS;
2321 dbg("%s - data bits = 5", __func__);
2322 break;
2323 case CS6:
2324 config->bDataBits = UMP_UART_CHAR6BITS;
2325 dbg("%s - data bits = 6", __func__);
2326 break;
2327 case CS7:
2328 config->bDataBits = UMP_UART_CHAR7BITS;
2329 dbg("%s - data bits = 7", __func__);
2330 break;
2331 default:
2332 case CS8:
2333 config->bDataBits = UMP_UART_CHAR8BITS;
2334 dbg("%s - data bits = 8", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 break;
2336 }
2337
2338 if (cflag & PARENB) {
2339 if (cflag & PARODD) {
2340 config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
2341 config->bParity = UMP_UART_ODDPARITY;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002342 dbg("%s - parity = odd", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 } else {
2344 config->wFlags |= UMP_MASK_UART_FLAGS_PARITY;
2345 config->bParity = UMP_UART_EVENPARITY;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002346 dbg("%s - parity = even", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
2348 } else {
Alan Cox2742fd82008-04-29 14:45:15 +01002349 config->bParity = UMP_UART_NOPARITY;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002350 dbg("%s - parity = none", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 }
2352
2353 if (cflag & CSTOPB) {
2354 config->bStopBits = UMP_UART_STOPBIT2;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002355 dbg("%s - stop bits = 2", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 } else {
2357 config->bStopBits = UMP_UART_STOPBIT1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002358 dbg("%s - stop bits = 1", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 }
2360
2361 /* figure out the flow control settings */
2362 if (cflag & CRTSCTS) {
2363 config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X_CTS_FLOW;
2364 config->wFlags |= UMP_MASK_UART_FLAGS_RTS_FLOW;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002365 dbg("%s - RTS/CTS is enabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002367 dbg("%s - RTS/CTS is disabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 tty->hw_stopped = 0;
2369 restart_read(edge_port);
2370 }
2371
Alan Cox2742fd82008-04-29 14:45:15 +01002372 /* if we are implementing XON/XOFF, set the start and stop
2373 character in the device */
2374 config->cXon = START_CHAR(tty);
2375 config->cXoff = STOP_CHAR(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Alan Cox2742fd82008-04-29 14:45:15 +01002377 /* if we are implementing INBOUND XON/XOFF */
2378 if (I_IXOFF(tty)) {
2379 config->wFlags |= UMP_MASK_UART_FLAGS_IN_X;
2380 dbg("%s - INBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
2381 __func__, config->cXon, config->cXoff);
2382 } else
2383 dbg("%s - INBOUND XON/XOFF is disabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Alan Cox2742fd82008-04-29 14:45:15 +01002385 /* if we are implementing OUTBOUND XON/XOFF */
2386 if (I_IXON(tty)) {
2387 config->wFlags |= UMP_MASK_UART_FLAGS_OUT_X;
2388 dbg("%s - OUTBOUND XON/XOFF is enabled, XON = %2x, XOFF = %2x",
2389 __func__, config->cXon, config->cXoff);
2390 } else
2391 dbg("%s - OUTBOUND XON/XOFF is disabled", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002393 tty->termios->c_cflag &= ~CMSPAR;
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 /* Round the baud rate */
2396 baud = tty_get_baud_rate(tty);
2397 if (!baud) {
2398 /* pick a default, any default... */
2399 baud = 9600;
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002400 } else
2401 tty_encode_baud_rate(tty, baud, baud);
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 edge_port->baud_rate = baud;
2404 config->wBaudRate = (__u16)((461550L + baud/2) / baud);
2405
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002406 /* FIXME: Recompute actual baud from divisor here */
2407
Alan Cox2742fd82008-04-29 14:45:15 +01002408 dbg("%s - baud rate = %d, wBaudRate = %d", __func__, baud,
2409 config->wBaudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Alan Cox2742fd82008-04-29 14:45:15 +01002411 dbg("wBaudRate: %d", (int)(461550L / config->wBaudRate));
2412 dbg("wFlags: 0x%x", config->wFlags);
2413 dbg("bDataBits: %d", config->bDataBits);
2414 dbg("bParity: %d", config->bParity);
2415 dbg("bStopBits: %d", config->bStopBits);
2416 dbg("cXon: %d", config->cXon);
2417 dbg("cXoff: %d", config->cXoff);
2418 dbg("bUartMode: %d", config->bUartMode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420 /* move the word values into big endian mode */
Alan Cox2742fd82008-04-29 14:45:15 +01002421 cpu_to_be16s(&config->wFlags);
2422 cpu_to_be16s(&config->wBaudRate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Alan Cox2742fd82008-04-29 14:45:15 +01002424 status = send_cmd(edge_port->port->serial->dev, UMPC_SET_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 (__u8)(UMPM_UART1_PORT + port_number),
Alan Cox2742fd82008-04-29 14:45:15 +01002426 0, (__u8 *)config, sizeof(*config));
2427 if (status)
2428 dbg("%s - error %d when trying to write config to device",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002429 __func__, status);
Alan Cox2742fd82008-04-29 14:45:15 +01002430 kfree(config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return;
2432}
2433
Alan Cox2e0ddd62008-07-22 11:12:33 +01002434static void edge_set_termios(struct tty_struct *tty,
Alan Cox95da3102008-07-22 11:09:07 +01002435 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
2437 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
Alan Cox95da3102008-07-22 11:09:07 +01002438 unsigned int cflag;
2439
2440 cflag = tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Harvey Harrison441b62c2008-03-03 16:08:34 -08002442 dbg("%s - clfag %08x iflag %08x", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 tty->termios->c_cflag, tty->termios->c_iflag);
Harvey Harrison441b62c2008-03-03 16:08:34 -08002444 dbg("%s - old clfag %08x old iflag %08x", __func__,
Alan Coxd5f5bcd2008-01-03 16:57:33 +00002445 old_termios->c_cflag, old_termios->c_iflag);
Harvey Harrison441b62c2008-03-03 16:08:34 -08002446 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448 if (edge_port == NULL)
2449 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 /* change the port settings to the new ones specified */
Alan Cox95da3102008-07-22 11:09:07 +01002451 change_port_settings(tty, edge_port, old_termios);
2452 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453}
2454
Alan Cox95da3102008-07-22 11:09:07 +01002455static int edge_tiocmset(struct tty_struct *tty, struct file *file,
Alan Cox2742fd82008-04-29 14:45:15 +01002456 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457{
Alan Cox95da3102008-07-22 11:09:07 +01002458 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2460 unsigned int mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002461 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Harvey Harrison441b62c2008-03-03 16:08:34 -08002463 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Alan Cox3d71fe02008-02-20 21:38:32 +00002465 spin_lock_irqsave(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 mcr = edge_port->shadow_mcr;
2467 if (set & TIOCM_RTS)
2468 mcr |= MCR_RTS;
2469 if (set & TIOCM_DTR)
2470 mcr |= MCR_DTR;
2471 if (set & TIOCM_LOOP)
2472 mcr |= MCR_LOOPBACK;
2473
2474 if (clear & TIOCM_RTS)
2475 mcr &= ~MCR_RTS;
2476 if (clear & TIOCM_DTR)
2477 mcr &= ~MCR_DTR;
2478 if (clear & TIOCM_LOOP)
2479 mcr &= ~MCR_LOOPBACK;
2480
2481 edge_port->shadow_mcr = mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002482 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Alan Cox2742fd82008-04-29 14:45:15 +01002484 restore_mcr(edge_port, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 return 0;
2486}
2487
Alan Cox95da3102008-07-22 11:09:07 +01002488static int edge_tiocmget(struct tty_struct *tty, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
Alan Cox95da3102008-07-22 11:09:07 +01002490 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2492 unsigned int result = 0;
2493 unsigned int msr;
2494 unsigned int mcr;
Alan Cox3d71fe02008-02-20 21:38:32 +00002495 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Harvey Harrison441b62c2008-03-03 16:08:34 -08002497 dbg("%s - port %d", __func__, port->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Alan Cox3d71fe02008-02-20 21:38:32 +00002499 spin_lock_irqsave(&edge_port->ep_lock, flags);
2500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 msr = edge_port->shadow_msr;
2502 mcr = edge_port->shadow_mcr;
2503 result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
2504 | ((mcr & MCR_RTS) ? TIOCM_RTS: 0) /* 0x004 */
2505 | ((msr & EDGEPORT_MSR_CTS) ? TIOCM_CTS: 0) /* 0x020 */
2506 | ((msr & EDGEPORT_MSR_CD) ? TIOCM_CAR: 0) /* 0x040 */
2507 | ((msr & EDGEPORT_MSR_RI) ? TIOCM_RI: 0) /* 0x080 */
2508 | ((msr & EDGEPORT_MSR_DSR) ? TIOCM_DSR: 0); /* 0x100 */
2509
2510
Harvey Harrison441b62c2008-03-03 16:08:34 -08002511 dbg("%s -- %x", __func__, result);
Alan Cox3d71fe02008-02-20 21:38:32 +00002512 spin_unlock_irqrestore(&edge_port->ep_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514 return result;
2515}
2516
Alan Cox2742fd82008-04-29 14:45:15 +01002517static int get_serial_info(struct edgeport_port *edge_port,
2518 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
2520 struct serial_struct tmp;
2521
2522 if (!retinfo)
2523 return -EFAULT;
2524
2525 memset(&tmp, 0, sizeof(tmp));
2526
2527 tmp.type = PORT_16550A;
2528 tmp.line = edge_port->port->serial->minor;
2529 tmp.port = edge_port->port->number;
2530 tmp.irq = 0;
2531 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2532 tmp.xmit_fifo_size = edge_port->port->bulk_out_size;
2533 tmp.baud_base = 9600;
2534 tmp.close_delay = 5*HZ;
2535 tmp.closing_wait = closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2538 return -EFAULT;
2539 return 0;
2540}
2541
Alan Cox95da3102008-07-22 11:09:07 +01002542static int edge_ioctl(struct tty_struct *tty, struct file *file,
Alan Cox2742fd82008-04-29 14:45:15 +01002543 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544{
Alan Cox95da3102008-07-22 11:09:07 +01002545 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2547 struct async_icount cnow;
2548 struct async_icount cprev;
2549
Harvey Harrison441b62c2008-03-03 16:08:34 -08002550 dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552 switch (cmd) {
Alan Cox2742fd82008-04-29 14:45:15 +01002553 case TIOCGSERIAL:
2554 dbg("%s - (%d) TIOCGSERIAL", __func__, port->number);
2555 return get_serial_info(edge_port,
2556 (struct serial_struct __user *) arg);
2557 case TIOCMIWAIT:
2558 dbg("%s - (%d) TIOCMIWAIT", __func__, port->number);
2559 cprev = edge_port->icount;
2560 while (1) {
2561 interruptible_sleep_on(&edge_port->delta_msr_wait);
2562 /* see if a signal did it */
2563 if (signal_pending(current))
2564 return -ERESTARTSYS;
2565 cnow = edge_port->icount;
2566 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2567 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2568 return -EIO; /* no change => error */
2569 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2570 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2571 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2572 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 }
Alan Cox2742fd82008-04-29 14:45:15 +01002575 cprev = cnow;
2576 }
2577 /* not reached */
2578 break;
2579 case TIOCGICOUNT:
2580 dbg("%s - (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
2581 port->number, edge_port->icount.rx, edge_port->icount.tx);
2582 if (copy_to_user((void __user *)arg, &edge_port->icount,
2583 sizeof(edge_port->icount)))
2584 return -EFAULT;
2585 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return -ENOIOCTLCMD;
2588}
2589
Alan Cox95da3102008-07-22 11:09:07 +01002590static void edge_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
Alan Cox95da3102008-07-22 11:09:07 +01002592 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2594 int status;
Alan Cox2742fd82008-04-29 14:45:15 +01002595 int bv = 0; /* Off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
Alan Cox95da3102008-07-22 11:09:07 +01002597 dbg("%s - state = %d", __func__, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 /* chase the port close */
Alan Cox2742fd82008-04-29 14:45:15 +01002600 chase_port(edge_port, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Alan Cox95da3102008-07-22 11:09:07 +01002602 if (break_state == -1)
Alan Cox2742fd82008-04-29 14:45:15 +01002603 bv = 1; /* On */
2604 status = ti_do_config(edge_port, UMPC_SET_CLR_BREAK, bv);
2605 if (status)
2606 dbg("%s - error %d sending break set/clear command.",
Harvey Harrison441b62c2008-03-03 16:08:34 -08002607 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608}
2609
Alan Cox2742fd82008-04-29 14:45:15 +01002610static int edge_startup(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
2612 struct edgeport_serial *edge_serial;
2613 struct edgeport_port *edge_port;
2614 struct usb_device *dev;
2615 int status;
2616 int i;
2617
2618 dev = serial->dev;
2619
2620 /* create our private serial structure */
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002621 edge_serial = kzalloc(sizeof(struct edgeport_serial), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (edge_serial == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002623 dev_err(&serial->dev->dev, "%s - Out of memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 return -ENOMEM;
2625 }
Matthias Kaehlcke241ca642007-12-04 16:15:40 +01002626 mutex_init(&edge_serial->es_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 edge_serial->serial = serial;
2628 usb_set_serial_data(serial, edge_serial);
2629
Alan Cox2742fd82008-04-29 14:45:15 +01002630 status = download_fw(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 if (status) {
Alan Cox2742fd82008-04-29 14:45:15 +01002632 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 return status;
2634 }
2635
2636 /* set up our port private structures */
2637 for (i = 0; i < serial->num_ports; ++i) {
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +01002638 edge_port = kzalloc(sizeof(struct edgeport_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 if (edge_port == NULL) {
Alan Cox2742fd82008-04-29 14:45:15 +01002640 dev_err(&serial->dev->dev, "%s - Out of memory\n",
2641 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 goto cleanup;
2643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 spin_lock_init(&edge_port->ep_lock);
2645 edge_port->ep_out_buf = edge_buf_alloc(EDGE_OUT_BUF_SIZE);
2646 if (edge_port->ep_out_buf == NULL) {
Alan Cox2742fd82008-04-29 14:45:15 +01002647 dev_err(&serial->dev->dev, "%s - Out of memory\n",
2648 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 kfree(edge_port);
2650 goto cleanup;
2651 }
2652 edge_port->port = serial->port[i];
2653 edge_port->edge_serial = edge_serial;
2654 usb_set_serial_port_data(serial->port[i], edge_port);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002655 edge_port->bUartMode = default_uart_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 }
Alan Cox2742fd82008-04-29 14:45:15 +01002657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 return 0;
2659
2660cleanup:
Alan Cox2742fd82008-04-29 14:45:15 +01002661 for (--i; i >= 0; --i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 edge_port = usb_get_serial_port_data(serial->port[i]);
2663 edge_buf_free(edge_port->ep_out_buf);
2664 kfree(edge_port);
2665 usb_set_serial_port_data(serial->port[i], NULL);
2666 }
Alan Cox2742fd82008-04-29 14:45:15 +01002667 kfree(edge_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 usb_set_serial_data(serial, NULL);
2669 return -ENOMEM;
2670}
2671
Alan Cox2742fd82008-04-29 14:45:15 +01002672static void edge_shutdown(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673{
2674 int i;
2675 struct edgeport_port *edge_port;
2676
Alan Cox2742fd82008-04-29 14:45:15 +01002677 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Jesper Juhl0d46c002007-07-16 22:17:25 +02002679 for (i = 0; i < serial->num_ports; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 edge_port = usb_get_serial_port_data(serial->port[i]);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002681 edge_remove_sysfs_attrs(edge_port->port);
Jesper Juhl0d46c002007-07-16 22:17:25 +02002682 edge_buf_free(edge_port->ep_out_buf);
2683 kfree(edge_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 usb_set_serial_port_data(serial->port[i], NULL);
2685 }
Jesper Juhl0d46c002007-07-16 22:17:25 +02002686 kfree(usb_get_serial_data(serial));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 usb_set_serial_data(serial, NULL);
2688}
2689
2690
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002691/* Sysfs Attributes */
2692
2693static ssize_t show_uart_mode(struct device *dev,
2694 struct device_attribute *attr, char *buf)
2695{
2696 struct usb_serial_port *port = to_usb_serial_port(dev);
2697 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2698
2699 return sprintf(buf, "%d\n", edge_port->bUartMode);
2700}
2701
2702static ssize_t store_uart_mode(struct device *dev,
2703 struct device_attribute *attr, const char *valbuf, size_t count)
2704{
2705 struct usb_serial_port *port = to_usb_serial_port(dev);
2706 struct edgeport_port *edge_port = usb_get_serial_port_data(port);
2707 unsigned int v = simple_strtoul(valbuf, NULL, 0);
2708
Harvey Harrison441b62c2008-03-03 16:08:34 -08002709 dbg("%s: setting uart_mode = %d", __func__, v);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002710
2711 if (v < 256)
2712 edge_port->bUartMode = v;
2713 else
Harvey Harrison441b62c2008-03-03 16:08:34 -08002714 dev_err(dev, "%s - uart_mode %d is invalid\n", __func__, v);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002715
2716 return count;
2717}
2718
Alan Cox2742fd82008-04-29 14:45:15 +01002719static DEVICE_ATTR(uart_mode, S_IWUSR | S_IRUGO, show_uart_mode,
2720 store_uart_mode);
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002721
2722static int edge_create_sysfs_attrs(struct usb_serial_port *port)
2723{
2724 return device_create_file(&port->dev, &dev_attr_uart_mode);
2725}
2726
2727static int edge_remove_sysfs_attrs(struct usb_serial_port *port)
2728{
2729 device_remove_file(&port->dev, &dev_attr_uart_mode);
2730 return 0;
2731}
2732
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734/* Circular Buffer */
2735
2736/*
2737 * edge_buf_alloc
2738 *
2739 * Allocate a circular buffer and all associated memory.
2740 */
2741
2742static struct edge_buf *edge_buf_alloc(unsigned int size)
2743{
2744 struct edge_buf *eb;
2745
2746
2747 if (size == 0)
2748 return NULL;
2749
Robert P. J. Day5cbded52006-12-13 00:35:56 -08002750 eb = kmalloc(sizeof(struct edge_buf), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 if (eb == NULL)
2752 return NULL;
2753
2754 eb->buf_buf = kmalloc(size, GFP_KERNEL);
2755 if (eb->buf_buf == NULL) {
2756 kfree(eb);
2757 return NULL;
2758 }
2759
2760 eb->buf_size = size;
2761 eb->buf_get = eb->buf_put = eb->buf_buf;
2762
2763 return eb;
2764}
2765
2766
2767/*
2768 * edge_buf_free
2769 *
2770 * Free the buffer and all associated memory.
2771 */
2772
Adrian Bunk3d485862005-11-20 23:56:11 +01002773static void edge_buf_free(struct edge_buf *eb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774{
Jesper Juhl1bc3c9e2005-04-18 17:39:34 -07002775 if (eb) {
2776 kfree(eb->buf_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 kfree(eb);
2778 }
2779}
2780
2781
2782/*
2783 * edge_buf_clear
2784 *
2785 * Clear out all data in the circular buffer.
2786 */
2787
2788static void edge_buf_clear(struct edge_buf *eb)
2789{
Alan Cox2742fd82008-04-29 14:45:15 +01002790 if (eb != NULL)
2791 eb->buf_get = eb->buf_put;
2792 /* equivalent to a get of all data available */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793}
2794
2795
2796/*
2797 * edge_buf_data_avail
2798 *
2799 * Return the number of bytes of data available in the circular
2800 * buffer.
2801 */
2802
2803static unsigned int edge_buf_data_avail(struct edge_buf *eb)
2804{
Alan Cox2742fd82008-04-29 14:45:15 +01002805 if (eb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return 0;
Alan Cox2742fd82008-04-29 14:45:15 +01002807 return ((eb->buf_size + eb->buf_put - eb->buf_get) % eb->buf_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808}
2809
2810
2811/*
2812 * edge_buf_space_avail
2813 *
2814 * Return the number of bytes of space available in the circular
2815 * buffer.
2816 */
2817
2818static unsigned int edge_buf_space_avail(struct edge_buf *eb)
2819{
Alan Cox2742fd82008-04-29 14:45:15 +01002820 if (eb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 return 0;
Alan Cox2742fd82008-04-29 14:45:15 +01002822 return ((eb->buf_size + eb->buf_get - eb->buf_put - 1) % eb->buf_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
2825
2826/*
2827 * edge_buf_put
2828 *
2829 * Copy data data from a user buffer and put it into the circular buffer.
2830 * Restrict to the amount of space available.
2831 *
2832 * Return the number of bytes copied.
2833 */
2834
2835static unsigned int edge_buf_put(struct edge_buf *eb, const char *buf,
2836 unsigned int count)
2837{
2838 unsigned int len;
2839
2840
2841 if (eb == NULL)
2842 return 0;
2843
2844 len = edge_buf_space_avail(eb);
2845 if (count > len)
2846 count = len;
2847
2848 if (count == 0)
2849 return 0;
2850
2851 len = eb->buf_buf + eb->buf_size - eb->buf_put;
2852 if (count > len) {
2853 memcpy(eb->buf_put, buf, len);
2854 memcpy(eb->buf_buf, buf+len, count - len);
2855 eb->buf_put = eb->buf_buf + count - len;
2856 } else {
2857 memcpy(eb->buf_put, buf, count);
2858 if (count < len)
2859 eb->buf_put += count;
2860 else /* count == len */
2861 eb->buf_put = eb->buf_buf;
2862 }
2863
2864 return count;
2865}
2866
2867
2868/*
2869 * edge_buf_get
2870 *
2871 * Get data from the circular buffer and copy to the given buffer.
2872 * Restrict to the amount of data available.
2873 *
2874 * Return the number of bytes copied.
2875 */
2876
2877static unsigned int edge_buf_get(struct edge_buf *eb, char *buf,
2878 unsigned int count)
2879{
2880 unsigned int len;
2881
2882
2883 if (eb == NULL)
2884 return 0;
2885
2886 len = edge_buf_data_avail(eb);
2887 if (count > len)
2888 count = len;
2889
2890 if (count == 0)
2891 return 0;
2892
2893 len = eb->buf_buf + eb->buf_size - eb->buf_get;
2894 if (count > len) {
2895 memcpy(buf, eb->buf_get, len);
2896 memcpy(buf+len, eb->buf_buf, count - len);
2897 eb->buf_get = eb->buf_buf + count - len;
2898 } else {
2899 memcpy(buf, eb->buf_get, count);
2900 if (count < len)
2901 eb->buf_get += count;
2902 else /* count == len */
2903 eb->buf_get = eb->buf_buf;
2904 }
2905
2906 return count;
2907}
2908
2909
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07002910static struct usb_serial_driver edgeport_1port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002911 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002912 .owner = THIS_MODULE,
2913 .name = "edgeport_ti_1",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002914 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002915 .description = "Edgeport TI 1 port adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002916 .usb_driver = &io_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 .id_table = edgeport_1port_id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 .num_ports = 1,
2919 .open = edge_open,
2920 .close = edge_close,
2921 .throttle = edge_throttle,
2922 .unthrottle = edge_unthrottle,
2923 .attach = edge_startup,
2924 .shutdown = edge_shutdown,
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002925 .port_probe = edge_create_sysfs_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 .ioctl = edge_ioctl,
2927 .set_termios = edge_set_termios,
2928 .tiocmget = edge_tiocmget,
2929 .tiocmset = edge_tiocmset,
2930 .write = edge_write,
2931 .write_room = edge_write_room,
2932 .chars_in_buffer = edge_chars_in_buffer,
2933 .break_ctl = edge_break,
2934 .read_int_callback = edge_interrupt_callback,
2935 .read_bulk_callback = edge_bulk_in_callback,
2936 .write_bulk_callback = edge_bulk_out_callback,
2937};
2938
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -07002939static struct usb_serial_driver edgeport_2port_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002940 .driver = {
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002941 .owner = THIS_MODULE,
2942 .name = "edgeport_ti_2",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -07002943 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -07002944 .description = "Edgeport TI 2 port adapter",
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002945 .usb_driver = &io_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 .id_table = edgeport_2port_id_table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 .num_ports = 2,
2948 .open = edge_open,
2949 .close = edge_close,
2950 .throttle = edge_throttle,
2951 .unthrottle = edge_unthrottle,
2952 .attach = edge_startup,
2953 .shutdown = edge_shutdown,
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04002954 .port_probe = edge_create_sysfs_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 .ioctl = edge_ioctl,
2956 .set_termios = edge_set_termios,
2957 .tiocmget = edge_tiocmget,
2958 .tiocmset = edge_tiocmset,
2959 .write = edge_write,
2960 .write_room = edge_write_room,
2961 .chars_in_buffer = edge_chars_in_buffer,
2962 .break_ctl = edge_break,
2963 .read_int_callback = edge_interrupt_callback,
2964 .read_bulk_callback = edge_bulk_in_callback,
2965 .write_bulk_callback = edge_bulk_out_callback,
2966};
2967
2968
2969static int __init edgeport_init(void)
2970{
2971 int retval;
2972 retval = usb_serial_register(&edgeport_1port_device);
2973 if (retval)
2974 goto failed_1port_device_register;
2975 retval = usb_serial_register(&edgeport_2port_device);
2976 if (retval)
2977 goto failed_2port_device_register;
2978 retval = usb_register(&io_driver);
Alan Cox2742fd82008-04-29 14:45:15 +01002979 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 goto failed_usb_register;
2981 info(DRIVER_DESC " " DRIVER_VERSION);
2982 return 0;
2983failed_usb_register:
2984 usb_serial_deregister(&edgeport_2port_device);
2985failed_2port_device_register:
2986 usb_serial_deregister(&edgeport_1port_device);
2987failed_1port_device_register:
2988 return retval;
2989}
2990
Alan Cox2742fd82008-04-29 14:45:15 +01002991static void __exit edgeport_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
Alan Cox2742fd82008-04-29 14:45:15 +01002993 usb_deregister(&io_driver);
2994 usb_serial_deregister(&edgeport_1port_device);
2995 usb_serial_deregister(&edgeport_2port_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
2997
2998module_init(edgeport_init);
2999module_exit(edgeport_exit);
3000
3001/* Module information */
3002MODULE_AUTHOR(DRIVER_AUTHOR);
3003MODULE_DESCRIPTION(DRIVER_DESC);
3004MODULE_LICENSE("GPL");
Jaswinder Singhd12b2192008-07-04 23:06:09 +05303005MODULE_FIRMWARE("edgeport/down3.bin");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
3007module_param(debug, bool, S_IRUGO | S_IWUSR);
3008MODULE_PARM_DESC(debug, "Debug enabled or not");
3009
3010module_param(low_latency, bool, S_IRUGO | S_IWUSR);
3011MODULE_PARM_DESC(low_latency, "Low latency enabled or not");
3012
3013module_param(closing_wait, int, S_IRUGO | S_IWUSR);
3014MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs");
3015
3016module_param(ignore_cpu_rev, bool, S_IRUGO | S_IWUSR);
Alan Cox2742fd82008-04-29 14:45:15 +01003017MODULE_PARM_DESC(ignore_cpu_rev,
3018 "Ignore the cpu revision when connecting to a device");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Martin K. Petersenfc4cbd72007-05-22 15:57:04 -04003020module_param(default_uart_mode, int, S_IRUGO | S_IWUSR);
3021MODULE_PARM_DESC(default_uart_mode, "Default uart_mode, 0=RS232, ...");