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/tty.h>
18 #include <linux/tty_flip.h>
19 #include <linux/module.h>
20 #include <linux/usb.h>
21 #include <linux/usb/serial.h>
23 static const struct usb_device_id id_table
[] = {
24 { USB_DEVICE(0x0a99, 0x0001) }, /* Talon Technology device */
25 { USB_DEVICE(0x0df7, 0x0900) }, /* Mobile Action i-gotU */
28 MODULE_DEVICE_TABLE(usb
, id_table
);
30 static void navman_read_int_callback(struct urb
*urb
)
32 struct usb_serial_port
*port
= urb
->context
;
33 unsigned char *data
= urb
->transfer_buffer
;
34 int status
= urb
->status
;
44 /* this urb is terminated, clean up */
45 dev_dbg(&port
->dev
, "%s - urb shutting down with status: %d\n",
49 dev_dbg(&port
->dev
, "%s - nonzero urb status received: %d\n",
54 usb_serial_debug_data(&port
->dev
, __func__
, urb
->actual_length
, data
);
56 if (urb
->actual_length
) {
57 tty_insert_flip_string(&port
->port
, data
, urb
->actual_length
);
58 tty_flip_buffer_push(&port
->port
);
62 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
64 dev_err(&urb
->dev
->dev
,
65 "%s - Error %d submitting interrupt urb\n",
69 static int navman_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
73 if (port
->interrupt_in_urb
) {
74 dev_dbg(&port
->dev
, "%s - adding interrupt input for treo\n",
76 result
= usb_submit_urb(port
->interrupt_in_urb
, GFP_KERNEL
);
79 "%s - failed submitting interrupt urb, error %d\n",
85 static void navman_close(struct usb_serial_port
*port
)
87 usb_kill_urb(port
->interrupt_in_urb
);
90 static int navman_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
91 const unsigned char *buf
, int count
)
94 * This device can't write any data, only read from the device
99 static struct usb_serial_driver navman_device
= {
101 .owner
= THIS_MODULE
,
104 .id_table
= id_table
,
107 .close
= navman_close
,
108 .write
= navman_write
,
109 .read_int_callback
= navman_read_int_callback
,
112 static struct usb_serial_driver
* const serial_drivers
[] = {
116 module_usb_serial_driver(serial_drivers
, id_table
);
118 MODULE_LICENSE("GPL");