blob: 5ceaa4c6be0901de3cbe2305ae3775904fec701c [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
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/tty.h>
18#include <linux/tty_flip.h>
19#include <linux/module.h>
20#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070021#include <linux/usb/serial.h>
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080022
23static int debug;
24
25static struct usb_device_id id_table [] = {
26 { USB_DEVICE(0x0a99, 0x0001) }, /* Talon Technology device */
27 { },
28};
29MODULE_DEVICE_TABLE(usb, id_table);
30
31static struct usb_driver navman_driver = {
32 .name = "navman",
33 .probe = usb_serial_probe,
34 .disconnect = usb_serial_disconnect,
35 .id_table = id_table,
36 .no_dynamic_id = 1,
37};
38
David Howells7d12e782006-10-05 14:55:46 +010039static void navman_read_int_callback(struct urb *urb)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080040{
41 struct usb_serial_port *port = urb->context;
42 unsigned char *data = urb->transfer_buffer;
43 struct tty_struct *tty;
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070044 int status = urb->status;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080045 int result;
46
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070047 switch (status) {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080048 case 0:
49 /* success */
50 break;
51 case -ECONNRESET:
52 case -ENOENT:
53 case -ESHUTDOWN:
54 /* this urb is terminated, clean up */
55 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080056 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080057 return;
58 default:
59 dbg("%s - nonzero urb status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080060 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080061 goto exit;
62 }
63
Harvey Harrison441b62c2008-03-03 16:08:34 -080064 usb_serial_debug_data(debug, &port->dev, __func__,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080065 urb->actual_length, data);
66
Alan Cox4a90f092008-10-13 10:39:46 +010067 tty = tty_port_tty_get(&port->port);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080068 if (tty && urb->actual_length) {
69 tty_buffer_request_room(tty, urb->actual_length);
70 tty_insert_flip_string(tty, data, urb->actual_length);
71 tty_flip_buffer_push(tty);
72 }
Alan Cox4a90f092008-10-13 10:39:46 +010073 tty_kref_put(tty);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080074
75exit:
76 result = usb_submit_urb(urb, GFP_ATOMIC);
77 if (result)
78 dev_err(&urb->dev->dev,
79 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080080 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080081}
82
Alan Coxa509a7e2009-09-19 13:13:26 -070083static int navman_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080084{
85 int result = 0;
86
Harvey Harrison441b62c2008-03-03 16:08:34 -080087 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080088
89 if (port->interrupt_in_urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -080090 dbg("%s - adding interrupt input for treo", __func__);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080091 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
92 if (result)
93 dev_err(&port->dev,
94 "%s - failed submitting interrupt urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080095 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080096 }
97 return result;
98}
99
Alan Cox335f8512009-06-11 12:26:29 +0100100static void navman_close(struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800101{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800102 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800103
Mariusz Kozlowski9aac10f2006-11-08 15:36:46 +0100104 usb_kill_urb(port->interrupt_in_urb);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800105}
106
Alan Cox95da3102008-07-22 11:09:07 +0100107static int navman_write(struct tty_struct *tty, struct usb_serial_port *port,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800108 const unsigned char *buf, int count)
109{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800110 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800111
112 /*
113 * This device can't write any data, only read from the device
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800114 */
Alan Coxa5b6f602008-04-08 17:16:06 +0100115 return -EOPNOTSUPP;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800116}
117
118static struct usb_serial_driver navman_device = {
119 .driver = {
120 .owner = THIS_MODULE,
121 .name = "navman",
122 },
123 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100124 .usb_driver = &navman_driver,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800125 .num_ports = 1,
126 .open = navman_open,
127 .close = navman_close,
128 .write = navman_write,
129 .read_int_callback = navman_read_int_callback,
130};
131
132static int __init navman_init(void)
133{
134 int retval;
135
136 retval = usb_serial_register(&navman_device);
137 if (retval)
138 return retval;
139 retval = usb_register(&navman_driver);
140 if (retval)
141 usb_serial_deregister(&navman_device);
142 return retval;
143}
144
145static void __exit navman_exit(void)
146{
147 usb_deregister(&navman_driver);
148 usb_serial_deregister(&navman_device);
149}
150
151module_init(navman_init);
152module_exit(navman_exit);
153MODULE_LICENSE("GPL");
154
155module_param(debug, bool, S_IRUGO | S_IWUSR);
156MODULE_PARM_DESC(debug, "Debug enabled or not");