blob: 6f12bbc51fc9635f5a0e8c86a2e9ba09a8cb7b15 [file] [log] [blame]
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -08001/*
2 * Navman Serial USB driver
3 *
4 * Copyright (C) 2006 Greg Kroah-Hartman <gregkh@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
Alan Coxa5b6f602008-04-08 17:16:06 +01009 *
10 * TODO:
11 * Add termios method that uses copy_hw but also kills all echo
12 * flags as the navman is rx only so cannot echo.
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080013 */
14
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080016#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/tty.h>
19#include <linux/tty_flip.h>
20#include <linux/module.h>
21#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070022#include <linux/usb/serial.h>
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080023
Rusty Russell90ab5ee2012-01-13 09:32:20 +103024static bool debug;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080025
Németh Márton7d40d7e2010-01-10 15:34:24 +010026static const struct usb_device_id id_table[] = {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080027 { USB_DEVICE(0x0a99, 0x0001) }, /* Talon Technology device */
Ross Burton0eee6a22010-08-06 16:36:39 +010028 { USB_DEVICE(0x0df7, 0x0900) }, /* Mobile Action i-gotU */
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080029 { },
30};
31MODULE_DEVICE_TABLE(usb, id_table);
32
33static struct usb_driver navman_driver = {
34 .name = "navman",
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080035 .id_table = id_table,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080036};
37
David Howells7d12e782006-10-05 14:55:46 +010038static void navman_read_int_callback(struct urb *urb)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080039{
40 struct usb_serial_port *port = urb->context;
41 unsigned char *data = urb->transfer_buffer;
42 struct tty_struct *tty;
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070043 int status = urb->status;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080044 int result;
45
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070046 switch (status) {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080047 case 0:
48 /* success */
49 break;
50 case -ECONNRESET:
51 case -ENOENT:
52 case -ESHUTDOWN:
53 /* this urb is terminated, clean up */
54 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080055 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080056 return;
57 default:
58 dbg("%s - nonzero urb status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080059 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080060 goto exit;
61 }
62
Harvey Harrison441b62c2008-03-03 16:08:34 -080063 usb_serial_debug_data(debug, &port->dev, __func__,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080064 urb->actual_length, data);
65
Alan Cox4a90f092008-10-13 10:39:46 +010066 tty = tty_port_tty_get(&port->port);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080067 if (tty && urb->actual_length) {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080068 tty_insert_flip_string(tty, data, urb->actual_length);
69 tty_flip_buffer_push(tty);
70 }
Alan Cox4a90f092008-10-13 10:39:46 +010071 tty_kref_put(tty);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080072
73exit:
74 result = usb_submit_urb(urb, GFP_ATOMIC);
75 if (result)
76 dev_err(&urb->dev->dev,
77 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080078 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080079}
80
Alan Coxa509a7e2009-09-19 13:13:26 -070081static int navman_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080082{
83 int result = 0;
84
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080085 if (port->interrupt_in_urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -080086 dbg("%s - adding interrupt input for treo", __func__);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080087 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
88 if (result)
89 dev_err(&port->dev,
90 "%s - failed submitting interrupt urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080091 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080092 }
93 return result;
94}
95
Alan Cox335f8512009-06-11 12:26:29 +010096static void navman_close(struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080097{
Mariusz Kozlowski9aac10f2006-11-08 15:36:46 +010098 usb_kill_urb(port->interrupt_in_urb);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080099}
100
Alan Cox95da3102008-07-22 11:09:07 +0100101static int navman_write(struct tty_struct *tty, struct usb_serial_port *port,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800102 const unsigned char *buf, int count)
103{
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800104 /*
105 * This device can't write any data, only read from the device
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800106 */
Alan Coxa5b6f602008-04-08 17:16:06 +0100107 return -EOPNOTSUPP;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800108}
109
110static struct usb_serial_driver navman_device = {
111 .driver = {
112 .owner = THIS_MODULE,
113 .name = "navman",
114 },
115 .id_table = id_table,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800116 .num_ports = 1,
117 .open = navman_open,
118 .close = navman_close,
119 .write = navman_write,
120 .read_int_callback = navman_read_int_callback,
121};
122
Alan Sternf667dda2012-02-23 14:57:18 -0500123static struct usb_serial_driver * const serial_drivers[] = {
124 &navman_device, NULL
125};
126
Greg Kroah-Hartman78365ea2012-02-28 13:12:14 -0800127module_usb_serial_driver(navman_driver, serial_drivers);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800128
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800129MODULE_LICENSE("GPL");
130
131module_param(debug, bool, S_IRUGO | S_IWUSR);
132MODULE_PARM_DESC(debug, "Debug enabled or not");