blob: bcdcbb822705fd952863dcd5d041abef4d8daad3 [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 Cox95da3102008-07-22 11:09:07 +010083static int navman_open(struct tty_struct *tty,
84 struct usb_serial_port *port, struct file *filp)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080085{
86 int result = 0;
87
Harvey Harrison441b62c2008-03-03 16:08:34 -080088 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080089
90 if (port->interrupt_in_urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -080091 dbg("%s - adding interrupt input for treo", __func__);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080092 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
93 if (result)
94 dev_err(&port->dev,
95 "%s - failed submitting interrupt urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080096 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080097 }
98 return result;
99}
100
Alan Cox95da3102008-07-22 11:09:07 +0100101static void navman_close(struct tty_struct *tty,
102 struct usb_serial_port *port, struct file *filp)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800103{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800104 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800105
Mariusz Kozlowski9aac10f2006-11-08 15:36:46 +0100106 usb_kill_urb(port->interrupt_in_urb);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800107}
108
Alan Cox95da3102008-07-22 11:09:07 +0100109static int navman_write(struct tty_struct *tty, struct usb_serial_port *port,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800110 const unsigned char *buf, int count)
111{
Harvey Harrison441b62c2008-03-03 16:08:34 -0800112 dbg("%s - port %d", __func__, port->number);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800113
114 /*
115 * This device can't write any data, only read from the device
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800116 */
Alan Coxa5b6f602008-04-08 17:16:06 +0100117 return -EOPNOTSUPP;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800118}
119
120static struct usb_serial_driver navman_device = {
121 .driver = {
122 .owner = THIS_MODULE,
123 .name = "navman",
124 },
125 .id_table = id_table,
Johannes Hölzld9b1b782006-12-17 21:50:24 +0100126 .usb_driver = &navman_driver,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800127 .num_ports = 1,
128 .open = navman_open,
129 .close = navman_close,
130 .write = navman_write,
131 .read_int_callback = navman_read_int_callback,
132};
133
134static int __init navman_init(void)
135{
136 int retval;
137
138 retval = usb_serial_register(&navman_device);
139 if (retval)
140 return retval;
141 retval = usb_register(&navman_driver);
142 if (retval)
143 usb_serial_deregister(&navman_device);
144 return retval;
145}
146
147static void __exit navman_exit(void)
148{
149 usb_deregister(&navman_driver);
150 usb_serial_deregister(&navman_device);
151}
152
153module_init(navman_init);
154module_exit(navman_exit);
155MODULE_LICENSE("GPL");
156
157module_param(debug, bool, S_IRUGO | S_IWUSR);
158MODULE_PARM_DESC(debug, "Debug enabled or not");