2 * Navman Serial USB driver
4 * Copyright (C) 2006 Greg Kroah-Hartman <gregkh@suse.de>
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.
11 * Add termios method that uses copy_hw but also kills all echo
12 * flags as the navman is rx only so cannot echo.
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>
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 */
31 MODULE_DEVICE_TABLE(usb
, id_table
);
33 static void navman_read_int_callback(struct urb
*urb
)
35 struct usb_serial_port
*port
= urb
->context
;
36 unsigned char *data
= urb
->transfer_buffer
;
37 struct tty_struct
*tty
;
38 int status
= urb
->status
;
48 /* this urb is terminated, clean up */
49 dev_dbg(&port
->dev
, "%s - urb shutting down with status: %d\n",
53 dev_dbg(&port
->dev
, "%s - nonzero urb status received: %d\n",
58 usb_serial_debug_data(debug
, &port
->dev
, __func__
,
59 urb
->actual_length
, data
);
61 tty
= tty_port_tty_get(&port
->port
);
62 if (tty
&& urb
->actual_length
) {
63 tty_insert_flip_string(tty
, data
, urb
->actual_length
);
64 tty_flip_buffer_push(tty
);
69 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
71 dev_err(&urb
->dev
->dev
,
72 "%s - Error %d submitting interrupt urb\n",
76 static int navman_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
80 if (port
->interrupt_in_urb
) {
81 dev_dbg(&port
->dev
, "%s - adding interrupt input for treo\n",
83 result
= usb_submit_urb(port
->interrupt_in_urb
, GFP_KERNEL
);
86 "%s - failed submitting interrupt urb, error %d\n",
92 static void navman_close(struct usb_serial_port
*port
)
94 usb_kill_urb(port
->interrupt_in_urb
);
97 static int navman_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
98 const unsigned char *buf
, int count
)
101 * This device can't write any data, only read from the device
106 static struct usb_serial_driver navman_device
= {
108 .owner
= THIS_MODULE
,
111 .id_table
= id_table
,
114 .close
= navman_close
,
115 .write
= navman_write
,
116 .read_int_callback
= navman_read_int_callback
,
119 static struct usb_serial_driver
* const serial_drivers
[] = {
123 module_usb_serial_driver(serial_drivers
, id_table
);
125 MODULE_LICENSE("GPL");
127 module_param(debug
, bool, S_IRUGO
| S_IWUSR
);
128 MODULE_PARM_DESC(debug
, "Debug enabled or not");