blob: cfd155e2b6a2baf8ad56d730ab3b0f497d129bef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * USB ConnectTech WhiteHEAT driver
3 *
4 * Copyright (C) 2002
5 * Connect Tech Inc.
6 *
7 * Copyright (C) 1999 - 2001
8 * Greg Kroah-Hartman (greg@kroah.com)
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
Alan Cox80359a92008-07-22 11:09:16 +010015 * See Documentation/usb/usb-serial.txt for more information on using this
16 * driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel.h>
20#include <linux/errno.h>
21#include <linux/init.h>
22#include <linux/slab.h>
23#include <linux/tty.h>
24#include <linux/tty_driver.h>
25#include <linux/tty_flip.h>
26#include <linux/module.h>
27#include <linux/spinlock.h>
Oliver Neukum08a2b3b2007-05-24 13:52:51 +020028#include <linux/mutex.h>
Alan Cox80359a92008-07-22 11:09:16 +010029#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/termbits.h>
31#include <linux/usb.h>
32#include <linux/serial_reg.h>
33#include <linux/serial.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070034#include <linux/usb/serial.h>
Rene Buergelcc183e22012-09-18 09:00:41 +020035#include <linux/usb/ezusb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "whiteheat.h" /* WhiteHEAT specific commands */
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#ifndef CMSPAR
39#define CMSPAR 0
40#endif
41
42/*
43 * Version Information
44 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Stuart MacDonald <stuartm@connecttech.com>"
46#define DRIVER_DESC "USB ConnectTech WhiteHEAT driver"
47
48#define CONNECT_TECH_VENDOR_ID 0x0710
49#define CONNECT_TECH_FAKE_WHITE_HEAT_ID 0x0001
50#define CONNECT_TECH_WHITE_HEAT_ID 0x8001
51
52/*
53 ID tables for whiteheat are unusual, because we want to different
54 things for different versions of the device. Eventually, this
55 will be doable from a single table. But, for now, we define two
56 separate ID tables, and then a third table that combines them
57 just for the purpose of exporting the autoloading information.
58*/
Németh Márton7d40d7e2010-01-10 15:34:24 +010059static const struct usb_device_id id_table_std[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_WHITE_HEAT_ID) },
61 { } /* Terminating entry */
62};
63
Németh Márton7d40d7e2010-01-10 15:34:24 +010064static const struct usb_device_id id_table_prerenumeration[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_FAKE_WHITE_HEAT_ID) },
66 { } /* Terminating entry */
67};
68
Németh Márton7d40d7e2010-01-10 15:34:24 +010069static const struct usb_device_id id_table_combined[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_WHITE_HEAT_ID) },
71 { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_FAKE_WHITE_HEAT_ID) },
72 { } /* Terminating entry */
73};
74
Alan Cox80359a92008-07-22 11:09:16 +010075MODULE_DEVICE_TABLE(usb, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* function prototypes for the Connect Tech WhiteHEAT prerenumeration device */
Alan Cox80359a92008-07-22 11:09:16 +010079static int whiteheat_firmware_download(struct usb_serial *serial,
80 const struct usb_device_id *id);
81static int whiteheat_firmware_attach(struct usb_serial *serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/* function prototypes for the Connect Tech WhiteHEAT serial converter */
Alan Cox80359a92008-07-22 11:09:16 +010084static int whiteheat_attach(struct usb_serial *serial);
Alan Sternf9c99bb2009-06-02 11:53:55 -040085static void whiteheat_release(struct usb_serial *serial);
Alan Cox80359a92008-07-22 11:09:16 +010086static int whiteheat_open(struct tty_struct *tty,
Alan Coxa509a7e2009-09-19 13:13:26 -070087 struct usb_serial_port *port);
Alan Cox335f8512009-06-11 12:26:29 +010088static void whiteheat_close(struct usb_serial_port *port);
Alan Cox00a0d0d2011-02-14 16:27:06 +000089static int whiteheat_ioctl(struct tty_struct *tty,
Alan Cox80359a92008-07-22 11:09:16 +010090 unsigned int cmd, unsigned long arg);
91static void whiteheat_set_termios(struct tty_struct *tty,
92 struct usb_serial_port *port, struct ktermios *old);
Alan Cox60b33c12011-02-14 16:26:14 +000093static int whiteheat_tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +000094static int whiteheat_tiocmset(struct tty_struct *tty,
Alan Cox80359a92008-07-22 11:09:16 +010095 unsigned int set, unsigned int clear);
96static void whiteheat_break_ctl(struct tty_struct *tty, int break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -070098static struct usb_serial_driver whiteheat_fake_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -070099 .driver = {
100 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700101 .name = "whiteheatnofirm",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700102 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700103 .description = "Connect Tech - WhiteHEAT - (prerenumeration)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .id_table = id_table_prerenumeration,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .num_ports = 1,
106 .probe = whiteheat_firmware_download,
107 .attach = whiteheat_firmware_attach,
108};
109
Greg Kroah-Hartmanea653702005-06-20 21:15:16 -0700110static struct usb_serial_driver whiteheat_device = {
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700111 .driver = {
112 .owner = THIS_MODULE,
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700113 .name = "whiteheat",
Greg Kroah-Hartman18fcac32005-06-20 21:15:16 -0700114 },
Greg Kroah-Hartman269bda12005-06-20 21:15:16 -0700115 .description = "Connect Tech - WhiteHEAT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .id_table = id_table_std,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .num_ports = 4,
118 .attach = whiteheat_attach,
Alan Sternf9c99bb2009-06-02 11:53:55 -0400119 .release = whiteheat_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .open = whiteheat_open,
121 .close = whiteheat_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .ioctl = whiteheat_ioctl,
123 .set_termios = whiteheat_set_termios,
124 .break_ctl = whiteheat_break_ctl,
125 .tiocmget = whiteheat_tiocmget,
126 .tiocmset = whiteheat_tiocmset,
Johan Hovold5c0c7582012-03-22 16:50:55 +0100127 .throttle = usb_serial_generic_throttle,
128 .unthrottle = usb_serial_generic_unthrottle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
Alan Stern29618e92012-02-23 14:57:32 -0500131static struct usb_serial_driver * const serial_drivers[] = {
132 &whiteheat_fake_device, &whiteheat_device, NULL
133};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135struct whiteheat_command_private {
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200136 struct mutex mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 __u8 port_running;
138 __u8 command_finished;
Alan Cox80359a92008-07-22 11:09:16 +0100139 wait_queue_head_t wait_command; /* for handling sleeping whilst
140 waiting for a command to
141 finish */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 __u8 result_buffer[64];
143};
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145struct whiteheat_private {
Alan Coxa5b6f602008-04-08 17:16:06 +0100146 __u8 mcr; /* FIXME: no locking on mcr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149
150/* local function prototypes */
151static int start_command_port(struct usb_serial *serial);
152static void stop_command_port(struct usb_serial *serial);
David Howells7d12e782006-10-05 14:55:46 +0100153static void command_port_write_callback(struct urb *urb);
154static void command_port_read_callback(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Alan Cox80359a92008-07-22 11:09:16 +0100156static int firm_send_command(struct usb_serial_port *port, __u8 command,
157 __u8 *data, __u8 datasize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static int firm_open(struct usb_serial_port *port);
159static int firm_close(struct usb_serial_port *port);
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700160static void firm_setup_port(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static int firm_set_rts(struct usb_serial_port *port, __u8 onoff);
162static int firm_set_dtr(struct usb_serial_port *port, __u8 onoff);
163static int firm_set_break(struct usb_serial_port *port, __u8 onoff);
164static int firm_purge(struct usb_serial_port *port, __u8 rxtx);
165static int firm_get_dtr_rts(struct usb_serial_port *port);
166static int firm_report_tx_done(struct usb_serial_port *port);
167
168
169#define COMMAND_PORT 4
170#define COMMAND_TIMEOUT (2*HZ) /* 2 second timeout for a command */
171#define COMMAND_TIMEOUT_MS 2000
172#define CLOSING_DELAY (30 * HZ)
173
174
175/*****************************************************************************
176 * Connect Tech's White Heat prerenumeration driver functions
177 *****************************************************************************/
178
179/* steps to download the firmware to the WhiteHEAT device:
180 - hold the reset (by writing to the reset bit of the CPUCS register)
181 - download the VEND_AX.HEX file to the chip using VENDOR_REQUEST-ANCHOR_LOAD
182 - release the reset (by writing to the CPUCS register)
183 - download the WH.HEX file for all addresses greater than 0x1b3f using
184 VENDOR_REQUEST-ANCHOR_EXTERNAL_RAM_LOAD
185 - hold the reset
186 - download the WH.HEX file for all addresses less than 0x1b40 using
187 VENDOR_REQUEST_ANCHOR_LOAD
188 - release the reset
189 - device renumerated itself and comes up as new device id with all
190 firmware download completed.
191*/
Alan Cox80359a92008-07-22 11:09:16 +0100192static int whiteheat_firmware_download(struct usb_serial *serial,
193 const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Rene Buergel8d733e22012-09-18 09:02:01 +0200195 int response;
David Woodhouseec6752f2008-05-31 01:35:29 +0300196
Rene Buergel8d733e22012-09-18 09:02:01 +0200197 response = ezusb_fx1_ihex_firmware_download(serial->dev, "whiteheat_loader.fw");
198 if (response >= 0) {
199 response = ezusb_fx1_ihex_firmware_download(serial->dev, "whiteheat.fw");
200 if (response >= 0)
201 return 0;
David Woodhouseec6752f2008-05-31 01:35:29 +0300202 }
Rene Buergel8d733e22012-09-18 09:02:01 +0200203 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206
Alan Cox80359a92008-07-22 11:09:16 +0100207static int whiteheat_firmware_attach(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 /* We want this device to fail to have a driver assigned to it */
210 return 1;
211}
212
213
214/*****************************************************************************
215 * Connect Tech's White Heat serial driver functions
216 *****************************************************************************/
Alan Cox80359a92008-07-22 11:09:16 +0100217static int whiteheat_attach(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 struct usb_serial_port *command_port;
220 struct whiteheat_command_private *command_info;
221 struct usb_serial_port *port;
222 struct whiteheat_private *info;
223 struct whiteheat_hw_info *hw_info;
224 int pipe;
225 int ret;
226 int alen;
227 __u8 *command;
228 __u8 *result;
229 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 command_port = serial->port[COMMAND_PORT];
232
Alan Cox80359a92008-07-22 11:09:16 +0100233 pipe = usb_sndbulkpipe(serial->dev,
234 command_port->bulk_out_endpointAddress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 command = kmalloc(2, GFP_KERNEL);
236 if (!command)
237 goto no_command_buffer;
238 command[0] = WHITEHEAT_GET_HW_INFO;
239 command[1] = 0;
Alan Cox80359a92008-07-22 11:09:16 +0100240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 result = kmalloc(sizeof(*hw_info) + 1, GFP_KERNEL);
242 if (!result)
243 goto no_result_buffer;
244 /*
245 * When the module is reloaded the firmware is still there and
246 * the endpoints are still in the usb core unchanged. This is the
Alan Cox80359a92008-07-22 11:09:16 +0100247 * unlinking bug in disguise. Same for the call below.
248 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 usb_clear_halt(serial->dev, pipe);
Alan Cox80359a92008-07-22 11:09:16 +0100250 ret = usb_bulk_msg(serial->dev, pipe, command, 2,
251 &alen, COMMAND_TIMEOUT_MS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (ret) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700253 dev_err(&serial->dev->dev, "%s: Couldn't send command [%d]\n",
254 serial->type->description, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 goto no_firmware;
Stuart MacDonald09fd6bc2006-05-31 13:28:40 -0400256 } else if (alen != 2) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700257 dev_err(&serial->dev->dev, "%s: Send command incomplete [%d]\n",
258 serial->type->description, alen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 goto no_firmware;
260 }
261
Alan Cox80359a92008-07-22 11:09:16 +0100262 pipe = usb_rcvbulkpipe(serial->dev,
263 command_port->bulk_in_endpointAddress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* See the comment on the usb_clear_halt() above */
265 usb_clear_halt(serial->dev, pipe);
Alan Cox80359a92008-07-22 11:09:16 +0100266 ret = usb_bulk_msg(serial->dev, pipe, result,
267 sizeof(*hw_info) + 1, &alen, COMMAND_TIMEOUT_MS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (ret) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700269 dev_err(&serial->dev->dev, "%s: Couldn't get results [%d]\n",
270 serial->type->description, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 goto no_firmware;
Stuart MacDonald09fd6bc2006-05-31 13:28:40 -0400272 } else if (alen != sizeof(*hw_info) + 1) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700273 dev_err(&serial->dev->dev, "%s: Get results incomplete [%d]\n",
274 serial->type->description, alen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto no_firmware;
276 } else if (result[0] != command[0]) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700277 dev_err(&serial->dev->dev, "%s: Command failed [%d]\n",
278 serial->type->description, result[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 goto no_firmware;
280 }
281
282 hw_info = (struct whiteheat_hw_info *)&result[1];
283
Johan Hovolda6765cb2012-03-22 16:50:54 +0100284 dev_info(&serial->dev->dev, "%s: Firmware v%d.%02d\n",
285 serial->type->description,
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -0700286 hw_info->sw_major_rev, hw_info->sw_minor_rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 for (i = 0; i < serial->num_ports; i++) {
289 port = serial->port[i];
290
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800291 info = kmalloc(sizeof(struct whiteheat_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (info == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700293 dev_err(&port->dev,
294 "%s: Out of memory for port structures\n",
295 serial->type->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 goto no_private;
297 }
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 info->mcr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 usb_set_serial_port_data(port, info);
302 }
303
Alan Cox80359a92008-07-22 11:09:16 +0100304 command_info = kmalloc(sizeof(struct whiteheat_command_private),
305 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (command_info == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700307 dev_err(&serial->dev->dev,
308 "%s: Out of memory for port structures\n",
309 serial->type->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 goto no_command_private;
311 }
312
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200313 mutex_init(&command_info->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 command_info->port_running = 0;
315 init_waitqueue_head(&command_info->wait_command);
316 usb_set_serial_port_data(command_port, command_info);
317 command_port->write_urb->complete = command_port_write_callback;
318 command_port->read_urb->complete = command_port_read_callback;
319 kfree(result);
320 kfree(command);
321
322 return 0;
323
324no_firmware:
325 /* Firmware likely not running */
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700326 dev_err(&serial->dev->dev,
327 "%s: Unable to retrieve firmware version, try replugging\n",
328 serial->type->description);
329 dev_err(&serial->dev->dev,
330 "%s: If the firmware is not running (status led not blinking)\n",
331 serial->type->description);
332 dev_err(&serial->dev->dev,
333 "%s: please contact support@connecttech.com\n",
334 serial->type->description);
Jesper Juhl67ca0282006-04-23 19:59:23 +0200335 kfree(result);
Johan Hovoldc1291972012-10-25 10:29:01 +0200336 kfree(command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return -ENODEV;
338
339no_command_private:
340 for (i = serial->num_ports - 1; i >= 0; i--) {
341 port = serial->port[i];
342 info = usb_get_serial_port_data(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 kfree(info);
344no_private:
345 ;
346 }
347 kfree(result);
348no_result_buffer:
349 kfree(command);
350no_command_buffer:
351 return -ENOMEM;
352}
353
354
Alan Sternf9c99bb2009-06-02 11:53:55 -0400355static void whiteheat_release(struct usb_serial *serial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct usb_serial_port *command_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct whiteheat_private *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int i;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /* free up our private data for our command port */
362 command_port = serial->port[COMMAND_PORT];
Alan Cox80359a92008-07-22 11:09:16 +0100363 kfree(usb_get_serial_port_data(command_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 for (i = 0; i < serial->num_ports; i++) {
Johan Hovold5c0c7582012-03-22 16:50:55 +0100366 info = usb_get_serial_port_data(serial->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 kfree(info);
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Alan Coxa509a7e2009-09-19 13:13:26 -0700371static int whiteheat_open(struct tty_struct *tty, struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Johan Hovold5c0c7582012-03-22 16:50:55 +0100373 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 retval = start_command_port(port->serial);
376 if (retval)
377 goto exit;
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /* send an open port command */
380 retval = firm_open(port);
381 if (retval) {
382 stop_command_port(port->serial);
383 goto exit;
384 }
385
386 retval = firm_purge(port, WHITEHEAT_PURGE_RX | WHITEHEAT_PURGE_TX);
387 if (retval) {
388 firm_close(port);
389 stop_command_port(port->serial);
390 goto exit;
391 }
392
Alan Cox72e27412008-07-22 11:09:29 +0100393 if (tty)
394 firm_setup_port(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /* Work around HCD bugs */
397 usb_clear_halt(port->serial->dev, port->read_urb->pipe);
398 usb_clear_halt(port->serial->dev, port->write_urb->pipe);
399
Johan Hovold5c0c7582012-03-22 16:50:55 +0100400 retval = usb_serial_generic_open(tty, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 firm_close(port);
403 stop_command_port(port->serial);
404 goto exit;
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return retval;
408}
409
410
Alan Cox335f8512009-06-11 12:26:29 +0100411static void whiteheat_close(struct usb_serial_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 firm_report_tx_done(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 firm_close(port);
415
Johan Hovold5c0c7582012-03-22 16:50:55 +0100416 usb_serial_generic_close(port);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 stop_command_port(port->serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Alan Cox60b33c12011-02-14 16:26:14 +0000421static int whiteheat_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Alan Cox95da3102008-07-22 11:09:07 +0100423 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct whiteheat_private *info = usb_get_serial_port_data(port);
425 unsigned int modem_signals = 0;
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 firm_get_dtr_rts(port);
428 if (info->mcr & UART_MCR_DTR)
429 modem_signals |= TIOCM_DTR;
430 if (info->mcr & UART_MCR_RTS)
431 modem_signals |= TIOCM_RTS;
432
433 return modem_signals;
434}
435
Alan Cox20b9d172011-02-14 16:26:50 +0000436static int whiteheat_tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 unsigned int set, unsigned int clear)
438{
Alan Cox95da3102008-07-22 11:09:07 +0100439 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 struct whiteheat_private *info = usb_get_serial_port_data(port);
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (set & TIOCM_RTS)
443 info->mcr |= UART_MCR_RTS;
444 if (set & TIOCM_DTR)
445 info->mcr |= UART_MCR_DTR;
446
447 if (clear & TIOCM_RTS)
448 info->mcr &= ~UART_MCR_RTS;
449 if (clear & TIOCM_DTR)
450 info->mcr &= ~UART_MCR_DTR;
451
452 firm_set_dtr(port, info->mcr & UART_MCR_DTR);
453 firm_set_rts(port, info->mcr & UART_MCR_RTS);
454 return 0;
455}
456
457
Alan Cox00a0d0d2011-02-14 16:27:06 +0000458static int whiteheat_ioctl(struct tty_struct *tty,
Alan Cox80359a92008-07-22 11:09:16 +0100459 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Alan Cox95da3102008-07-22 11:09:07 +0100461 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct serial_struct serstruct;
463 void __user *user_arg = (void __user *)arg;
464
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700465 dev_dbg(&port->dev, "%s - cmd 0x%.4x\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 switch (cmd) {
Alan Cox80359a92008-07-22 11:09:16 +0100468 case TIOCGSERIAL:
469 memset(&serstruct, 0, sizeof(serstruct));
470 serstruct.type = PORT_16654;
471 serstruct.line = port->serial->minor;
472 serstruct.port = port->number;
473 serstruct.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
Johan Hovold5c0c7582012-03-22 16:50:55 +0100474 serstruct.xmit_fifo_size = kfifo_size(&port->write_fifo);
Alan Cox80359a92008-07-22 11:09:16 +0100475 serstruct.custom_divisor = 0;
476 serstruct.baud_base = 460800;
477 serstruct.close_delay = CLOSING_DELAY;
478 serstruct.closing_wait = CLOSING_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Alan Cox80359a92008-07-22 11:09:16 +0100480 if (copy_to_user(user_arg, &serstruct, sizeof(serstruct)))
481 return -EFAULT;
482 break;
483 default:
484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 return -ENOIOCTLCMD;
488}
489
490
Alan Cox80359a92008-07-22 11:09:16 +0100491static void whiteheat_set_termios(struct tty_struct *tty,
492 struct usb_serial_port *port, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Alan Cox95da3102008-07-22 11:09:07 +0100494 firm_setup_port(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Alan Cox80359a92008-07-22 11:09:16 +0100497static void whiteheat_break_ctl(struct tty_struct *tty, int break_state)
498{
Alan Cox95da3102008-07-22 11:09:07 +0100499 struct usb_serial_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 firm_set_break(port, break_state);
501}
502
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/*****************************************************************************
505 * Connect Tech's White Heat callback routines
506 *****************************************************************************/
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200507static void command_port_write_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Greg Kroah-Hartman05400012007-06-15 15:44:13 -0700509 int status = urb->status;
510
Greg Kroah-Hartman05400012007-06-15 15:44:13 -0700511 if (status) {
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700512 dev_dbg(&urb->dev->dev, "nonzero urb status: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return;
514 }
515}
516
517
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200518static void command_port_read_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Ming Leicdc97792008-02-24 18:41:47 +0800520 struct usb_serial_port *command_port = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct whiteheat_command_private *command_info;
Greg Kroah-Hartman05400012007-06-15 15:44:13 -0700522 int status = urb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 unsigned char *data = urb->transfer_buffer;
524 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 command_info = usb_get_serial_port_data(command_port);
527 if (!command_info) {
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700528 dev_dbg(&urb->dev->dev, "%s - command_info is NULL, exiting.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return;
530 }
Greg Kroah-Hartman05400012007-06-15 15:44:13 -0700531 if (status) {
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700532 dev_dbg(&urb->dev->dev, "%s - nonzero urb status: %d\n", __func__, status);
Greg Kroah-Hartman05400012007-06-15 15:44:13 -0700533 if (status != -ENOENT)
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200534 command_info->command_finished = WHITEHEAT_CMD_FAILURE;
535 wake_up(&command_info->wait_command);
536 return;
537 }
538
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100539 usb_serial_debug_data(&command_port->dev, __func__, urb->actual_length, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 if (data[0] == WHITEHEAT_CMD_COMPLETE) {
542 command_info->command_finished = WHITEHEAT_CMD_COMPLETE;
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200543 wake_up(&command_info->wait_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 } else if (data[0] == WHITEHEAT_CMD_FAILURE) {
545 command_info->command_finished = WHITEHEAT_CMD_FAILURE;
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200546 wake_up(&command_info->wait_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 } else if (data[0] == WHITEHEAT_EVENT) {
Alan Cox80359a92008-07-22 11:09:16 +0100548 /* These are unsolicited reports from the firmware, hence no
549 waiting command to wakeup */
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700550 dev_dbg(&urb->dev->dev, "%s - event received\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 } else if (data[0] == WHITEHEAT_GET_DTR_RTS) {
Alan Cox80359a92008-07-22 11:09:16 +0100552 memcpy(command_info->result_buffer, &data[1],
553 urb->actual_length - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 command_info->command_finished = WHITEHEAT_CMD_COMPLETE;
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200555 wake_up(&command_info->wait_command);
Alan Cox80359a92008-07-22 11:09:16 +0100556 } else
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700557 dev_dbg(&urb->dev->dev, "%s - bad reply from firmware\n", __func__);
Alan Cox80359a92008-07-22 11:09:16 +0100558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /* Continue trying to always read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 result = usb_submit_urb(command_port->read_urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (result)
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700562 dev_dbg(&urb->dev->dev, "%s - failed resubmitting read urb, error %d\n",
Alan Cox80359a92008-07-22 11:09:16 +0100563 __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567/*****************************************************************************
568 * Connect Tech's White Heat firmware interface
569 *****************************************************************************/
Alan Cox80359a92008-07-22 11:09:16 +0100570static int firm_send_command(struct usb_serial_port *port, __u8 command,
571 __u8 *data, __u8 datasize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 struct usb_serial_port *command_port;
574 struct whiteheat_command_private *command_info;
575 struct whiteheat_private *info;
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700576 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 __u8 *transfer_buffer;
578 int retval = 0;
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200579 int t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700581 dev_dbg(dev, "%s - command %d\n", __func__, command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 command_port = port->serial->port[COMMAND_PORT];
584 command_info = usb_get_serial_port_data(command_port);
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200585 mutex_lock(&command_info->mutex);
Richard Knutsson38c3cb52007-03-26 22:00:28 -0800586 command_info->command_finished = false;
Alan Cox80359a92008-07-22 11:09:16 +0100587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 transfer_buffer = (__u8 *)command_port->write_urb->transfer_buffer;
589 transfer_buffer[0] = command;
Alan Cox80359a92008-07-22 11:09:16 +0100590 memcpy(&transfer_buffer[1], data, datasize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 command_port->write_urb->transfer_buffer_length = datasize + 1;
Alan Cox80359a92008-07-22 11:09:16 +0100592 retval = usb_submit_urb(command_port->write_urb, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (retval) {
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700594 dev_dbg(dev, "%s - submit urb failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto exit;
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 /* wait for the command to complete */
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200599 t = wait_event_timeout(command_info->wait_command,
Richard Knutsson38c3cb52007-03-26 22:00:28 -0800600 (bool)command_info->command_finished, COMMAND_TIMEOUT);
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200601 if (!t)
602 usb_kill_urb(command_port->write_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Richard Knutsson38c3cb52007-03-26 22:00:28 -0800604 if (command_info->command_finished == false) {
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700605 dev_dbg(dev, "%s - command timed out.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 retval = -ETIMEDOUT;
607 goto exit;
608 }
609
610 if (command_info->command_finished == WHITEHEAT_CMD_FAILURE) {
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700611 dev_dbg(dev, "%s - command failed.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 retval = -EIO;
613 goto exit;
614 }
615
616 if (command_info->command_finished == WHITEHEAT_CMD_COMPLETE) {
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700617 dev_dbg(dev, "%s - command completed.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 switch (command) {
Alan Cox80359a92008-07-22 11:09:16 +0100619 case WHITEHEAT_GET_DTR_RTS:
620 info = usb_get_serial_port_data(port);
621 memcpy(&info->mcr, command_info->result_buffer,
622 sizeof(struct whiteheat_dr_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 break;
624 }
625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626exit:
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200627 mutex_unlock(&command_info->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return retval;
629}
630
631
Alan Cox80359a92008-07-22 11:09:16 +0100632static int firm_open(struct usb_serial_port *port)
633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct whiteheat_simple open_command;
635
636 open_command.port = port->number - port->serial->minor + 1;
Alan Cox80359a92008-07-22 11:09:16 +0100637 return firm_send_command(port, WHITEHEAT_OPEN,
638 (__u8 *)&open_command, sizeof(open_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641
Alan Cox80359a92008-07-22 11:09:16 +0100642static int firm_close(struct usb_serial_port *port)
643{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct whiteheat_simple close_command;
645
646 close_command.port = port->number - port->serial->minor + 1;
Alan Cox80359a92008-07-22 11:09:16 +0100647 return firm_send_command(port, WHITEHEAT_CLOSE,
648 (__u8 *)&close_command, sizeof(close_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
651
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700652static void firm_setup_port(struct tty_struct *tty)
Alan Cox80359a92008-07-22 11:09:16 +0100653{
Alan Cox95da3102008-07-22 11:09:07 +0100654 struct usb_serial_port *port = tty->driver_data;
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700655 struct device *dev = &port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 struct whiteheat_port_settings port_settings;
Alan Coxadc8d742012-07-14 15:31:47 +0100657 unsigned int cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 port_settings.port = port->number + 1;
660
661 /* get the byte size */
662 switch (cflag & CSIZE) {
Alan Cox80359a92008-07-22 11:09:16 +0100663 case CS5: port_settings.bits = 5; break;
664 case CS6: port_settings.bits = 6; break;
665 case CS7: port_settings.bits = 7; break;
666 default:
667 case CS8: port_settings.bits = 8; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700669 dev_dbg(dev, "%s - data bits = %d\n", __func__, port_settings.bits);
Alan Cox80359a92008-07-22 11:09:16 +0100670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /* determine the parity */
672 if (cflag & PARENB)
673 if (cflag & CMSPAR)
674 if (cflag & PARODD)
675 port_settings.parity = WHITEHEAT_PAR_MARK;
676 else
677 port_settings.parity = WHITEHEAT_PAR_SPACE;
678 else
679 if (cflag & PARODD)
680 port_settings.parity = WHITEHEAT_PAR_ODD;
681 else
682 port_settings.parity = WHITEHEAT_PAR_EVEN;
683 else
684 port_settings.parity = WHITEHEAT_PAR_NONE;
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700685 dev_dbg(dev, "%s - parity = %c\n", __func__, port_settings.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 /* figure out the stop bits requested */
688 if (cflag & CSTOPB)
689 port_settings.stop = 2;
690 else
691 port_settings.stop = 1;
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700692 dev_dbg(dev, "%s - stop bits = %d\n", __func__, port_settings.stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /* figure out the flow control settings */
695 if (cflag & CRTSCTS)
Alan Cox80359a92008-07-22 11:09:16 +0100696 port_settings.hflow = (WHITEHEAT_HFLOW_CTS |
697 WHITEHEAT_HFLOW_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 else
699 port_settings.hflow = WHITEHEAT_HFLOW_NONE;
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700700 dev_dbg(dev, "%s - hardware flow control = %s %s %s %s\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 (port_settings.hflow & WHITEHEAT_HFLOW_CTS) ? "CTS" : "",
702 (port_settings.hflow & WHITEHEAT_HFLOW_RTS) ? "RTS" : "",
703 (port_settings.hflow & WHITEHEAT_HFLOW_DSR) ? "DSR" : "",
704 (port_settings.hflow & WHITEHEAT_HFLOW_DTR) ? "DTR" : "");
Alan Cox80359a92008-07-22 11:09:16 +0100705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* determine software flow control */
Alan Cox95da3102008-07-22 11:09:07 +0100707 if (I_IXOFF(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 port_settings.sflow = WHITEHEAT_SFLOW_RXTX;
709 else
710 port_settings.sflow = WHITEHEAT_SFLOW_NONE;
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700711 dev_dbg(dev, "%s - software flow control = %c\n", __func__, port_settings.sflow);
Alan Cox80359a92008-07-22 11:09:16 +0100712
Alan Cox95da3102008-07-22 11:09:07 +0100713 port_settings.xon = START_CHAR(tty);
714 port_settings.xoff = STOP_CHAR(tty);
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700715 dev_dbg(dev, "%s - XON = %2x, XOFF = %2x\n", __func__, port_settings.xon, port_settings.xoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /* get the baud rate wanted */
Alan Cox95da3102008-07-22 11:09:07 +0100718 port_settings.baud = tty_get_baud_rate(tty);
Greg Kroah-Hartman255b7032012-09-14 11:50:35 -0700719 dev_dbg(dev, "%s - baud rate = %d\n", __func__, port_settings.baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Alan Cox01d1df22007-10-18 01:24:23 -0700721 /* fixme: should set validated settings */
Alan Cox95da3102008-07-22 11:09:07 +0100722 tty_encode_baud_rate(tty, port_settings.baud, port_settings.baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /* handle any settings that aren't specified in the tty structure */
724 port_settings.lloop = 0;
Alan Cox80359a92008-07-22 11:09:16 +0100725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /* now send the message to the device */
Alan Coxfe1ae7f2009-09-19 13:13:33 -0700727 firm_send_command(port, WHITEHEAT_SETUP_PORT,
Alan Cox80359a92008-07-22 11:09:16 +0100728 (__u8 *)&port_settings, sizeof(port_settings));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
731
Alan Cox80359a92008-07-22 11:09:16 +0100732static int firm_set_rts(struct usb_serial_port *port, __u8 onoff)
733{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 struct whiteheat_set_rdb rts_command;
735
736 rts_command.port = port->number - port->serial->minor + 1;
737 rts_command.state = onoff;
Alan Cox80359a92008-07-22 11:09:16 +0100738 return firm_send_command(port, WHITEHEAT_SET_RTS,
739 (__u8 *)&rts_command, sizeof(rts_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742
Alan Cox80359a92008-07-22 11:09:16 +0100743static int firm_set_dtr(struct usb_serial_port *port, __u8 onoff)
744{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 struct whiteheat_set_rdb dtr_command;
746
747 dtr_command.port = port->number - port->serial->minor + 1;
748 dtr_command.state = onoff;
Alan Cox72e27412008-07-22 11:09:29 +0100749 return firm_send_command(port, WHITEHEAT_SET_DTR,
Alan Cox80359a92008-07-22 11:09:16 +0100750 (__u8 *)&dtr_command, sizeof(dtr_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
753
Alan Cox80359a92008-07-22 11:09:16 +0100754static int firm_set_break(struct usb_serial_port *port, __u8 onoff)
755{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 struct whiteheat_set_rdb break_command;
757
758 break_command.port = port->number - port->serial->minor + 1;
759 break_command.state = onoff;
Alan Cox72e27412008-07-22 11:09:29 +0100760 return firm_send_command(port, WHITEHEAT_SET_BREAK,
Alan Cox80359a92008-07-22 11:09:16 +0100761 (__u8 *)&break_command, sizeof(break_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764
Alan Cox80359a92008-07-22 11:09:16 +0100765static int firm_purge(struct usb_serial_port *port, __u8 rxtx)
766{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct whiteheat_purge purge_command;
768
769 purge_command.port = port->number - port->serial->minor + 1;
770 purge_command.what = rxtx;
Alan Cox80359a92008-07-22 11:09:16 +0100771 return firm_send_command(port, WHITEHEAT_PURGE,
772 (__u8 *)&purge_command, sizeof(purge_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775
Alan Cox80359a92008-07-22 11:09:16 +0100776static int firm_get_dtr_rts(struct usb_serial_port *port)
777{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct whiteheat_simple get_dr_command;
779
780 get_dr_command.port = port->number - port->serial->minor + 1;
Alan Cox80359a92008-07-22 11:09:16 +0100781 return firm_send_command(port, WHITEHEAT_GET_DTR_RTS,
782 (__u8 *)&get_dr_command, sizeof(get_dr_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785
Alan Cox80359a92008-07-22 11:09:16 +0100786static int firm_report_tx_done(struct usb_serial_port *port)
787{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct whiteheat_simple close_command;
789
790 close_command.port = port->number - port->serial->minor + 1;
Alan Cox80359a92008-07-22 11:09:16 +0100791 return firm_send_command(port, WHITEHEAT_REPORT_TX_DONE,
792 (__u8 *)&close_command, sizeof(close_command));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795
796/*****************************************************************************
797 * Connect Tech's White Heat utility functions
798 *****************************************************************************/
799static int start_command_port(struct usb_serial *serial)
800{
801 struct usb_serial_port *command_port;
802 struct whiteheat_command_private *command_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 int retval = 0;
Alan Cox80359a92008-07-22 11:09:16 +0100804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 command_port = serial->port[COMMAND_PORT];
806 command_info = usb_get_serial_port_data(command_port);
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200807 mutex_lock(&command_info->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (!command_info->port_running) {
809 /* Work around HCD bugs */
810 usb_clear_halt(serial->dev, command_port->read_urb->pipe);
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 retval = usb_submit_urb(command_port->read_urb, GFP_KERNEL);
813 if (retval) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700814 dev_err(&serial->dev->dev,
815 "%s - failed submitting read urb, error %d\n",
816 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 goto exit;
818 }
819 }
820 command_info->port_running++;
821
822exit:
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200823 mutex_unlock(&command_info->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return retval;
825}
826
827
828static void stop_command_port(struct usb_serial *serial)
829{
830 struct usb_serial_port *command_port;
831 struct whiteheat_command_private *command_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 command_port = serial->port[COMMAND_PORT];
834 command_info = usb_get_serial_port_data(command_port);
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200835 mutex_lock(&command_info->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 command_info->port_running--;
837 if (!command_info->port_running)
838 usb_kill_urb(command_port->read_urb);
Oliver Neukum08a2b3b2007-05-24 13:52:51 +0200839 mutex_unlock(&command_info->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700842module_usb_serial_driver(serial_drivers, id_table_combined);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Alan Cox80359a92008-07-22 11:09:16 +0100844MODULE_AUTHOR(DRIVER_AUTHOR);
845MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846MODULE_LICENSE("GPL");
847
David Woodhouseec6752f2008-05-31 01:35:29 +0300848MODULE_FIRMWARE("whiteheat.fw");
849MODULE_FIRMWARE("whiteheat_loader.fw");