]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/usb/serial/navman.c
USB: serial: remove usb_serial_probe call in all drivers
[karo-tx-linux.git] / drivers / usb / serial / navman.c
1 /*
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.
9  *
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.
13  */
14
15 #include <linux/gfp.h>
16 #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>
22 #include <linux/usb/serial.h>
23
24 static bool debug;
25
26 static const struct usb_device_id id_table[] = {
27         { USB_DEVICE(0x0a99, 0x0001) }, /* Talon Technology device */
28         { USB_DEVICE(0x0df7, 0x0900) }, /* Mobile Action i-gotU */
29         { },
30 };
31 MODULE_DEVICE_TABLE(usb, id_table);
32
33 static struct usb_driver navman_driver = {
34         .name =         "navman",
35         .disconnect =   usb_serial_disconnect,
36         .id_table =     id_table,
37 };
38
39 static void navman_read_int_callback(struct urb *urb)
40 {
41         struct usb_serial_port *port = urb->context;
42         unsigned char *data = urb->transfer_buffer;
43         struct tty_struct *tty;
44         int status = urb->status;
45         int result;
46
47         switch (status) {
48         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",
56                     __func__, status);
57                 return;
58         default:
59                 dbg("%s - nonzero urb status received: %d",
60                     __func__, status);
61                 goto exit;
62         }
63
64         usb_serial_debug_data(debug, &port->dev, __func__,
65                               urb->actual_length, data);
66
67         tty = tty_port_tty_get(&port->port);
68         if (tty && urb->actual_length) {
69                 tty_insert_flip_string(tty, data, urb->actual_length);
70                 tty_flip_buffer_push(tty);
71         }
72         tty_kref_put(tty);
73
74 exit:
75         result = usb_submit_urb(urb, GFP_ATOMIC);
76         if (result)
77                 dev_err(&urb->dev->dev,
78                         "%s - Error %d submitting interrupt urb\n",
79                         __func__, result);
80 }
81
82 static int navman_open(struct tty_struct *tty, struct usb_serial_port *port)
83 {
84         int result = 0;
85
86         if (port->interrupt_in_urb) {
87                 dbg("%s - adding interrupt input for treo", __func__);
88                 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
89                 if (result)
90                         dev_err(&port->dev,
91                                 "%s - failed submitting interrupt urb, error %d\n",
92                                 __func__, result);
93         }
94         return result;
95 }
96
97 static void navman_close(struct usb_serial_port *port)
98 {
99         usb_kill_urb(port->interrupt_in_urb);
100 }
101
102 static int navman_write(struct tty_struct *tty, struct usb_serial_port *port,
103                         const unsigned char *buf, int count)
104 {
105         /*
106          * This device can't write any data, only read from the device
107          */
108         return -EOPNOTSUPP;
109 }
110
111 static struct usb_serial_driver navman_device = {
112         .driver = {
113                 .owner =        THIS_MODULE,
114                 .name =         "navman",
115         },
116         .id_table =             id_table,
117         .num_ports =            1,
118         .open =                 navman_open,
119         .close =                navman_close,
120         .write =                navman_write,
121         .read_int_callback =    navman_read_int_callback,
122 };
123
124 static struct usb_serial_driver * const serial_drivers[] = {
125         &navman_device, NULL
126 };
127
128 module_usb_serial_driver(navman_driver, serial_drivers);
129
130 MODULE_LICENSE("GPL");
131
132 module_param(debug, bool, S_IRUGO | S_IWUSR);
133 MODULE_PARM_DESC(debug, "Debug enabled or not");