blob: 38725fc8c2c8b7c4c6be2ab130c31c55abb3ac78 [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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080016#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>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070022#include <linux/usb/serial.h>
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080023
Németh Márton7d40d7e2010-01-10 15:34:24 +010024static const struct usb_device_id id_table[] = {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080025 { USB_DEVICE(0x0a99, 0x0001) }, /* Talon Technology device */
Ross Burton0eee6a22010-08-06 16:36:39 +010026 { USB_DEVICE(0x0df7, 0x0900) }, /* Mobile Action i-gotU */
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080027 { },
28};
29MODULE_DEVICE_TABLE(usb, id_table);
30
David Howells7d12e782006-10-05 14:55:46 +010031static void navman_read_int_callback(struct urb *urb)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080032{
33 struct usb_serial_port *port = urb->context;
34 unsigned char *data = urb->transfer_buffer;
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070035 int status = urb->status;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080036 int result;
37
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070038 switch (status) {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080039 case 0:
40 /* success */
41 break;
42 case -ECONNRESET:
43 case -ENOENT:
44 case -ESHUTDOWN:
45 /* this urb is terminated, clean up */
Greg Kroah-Hartman00c533f2012-05-15 16:27:25 -070046 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
47 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080048 return;
49 default:
Greg Kroah-Hartman00c533f2012-05-15 16:27:25 -070050 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
51 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080052 goto exit;
53 }
54
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +010055 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080056
Jiri Slaby2e124b42013-01-03 15:53:06 +010057 if (urb->actual_length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +010058 tty_insert_flip_string(&port->port, data, urb->actual_length);
Jiri Slaby2e124b42013-01-03 15:53:06 +010059 tty_flip_buffer_push(&port->port);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080060 }
61
62exit:
63 result = usb_submit_urb(urb, GFP_ATOMIC);
64 if (result)
65 dev_err(&urb->dev->dev,
66 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080067 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080068}
69
Alan Coxa509a7e2009-09-19 13:13:26 -070070static int navman_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080071{
72 int result = 0;
73
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080074 if (port->interrupt_in_urb) {
Greg Kroah-Hartman00c533f2012-05-15 16:27:25 -070075 dev_dbg(&port->dev, "%s - adding interrupt input for treo\n",
76 __func__);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080077 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
78 if (result)
79 dev_err(&port->dev,
80 "%s - failed submitting interrupt urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080081 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080082 }
83 return result;
84}
85
Alan Cox335f8512009-06-11 12:26:29 +010086static void navman_close(struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080087{
Mariusz Kozlowski9aac10f2006-11-08 15:36:46 +010088 usb_kill_urb(port->interrupt_in_urb);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080089}
90
Alan Cox95da3102008-07-22 11:09:07 +010091static int navman_write(struct tty_struct *tty, struct usb_serial_port *port,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080092 const unsigned char *buf, int count)
93{
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080094 /*
95 * This device can't write any data, only read from the device
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080096 */
Alan Coxa5b6f602008-04-08 17:16:06 +010097 return -EOPNOTSUPP;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080098}
99
100static struct usb_serial_driver navman_device = {
101 .driver = {
102 .owner = THIS_MODULE,
103 .name = "navman",
104 },
105 .id_table = id_table,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800106 .num_ports = 1,
107 .open = navman_open,
108 .close = navman_close,
109 .write = navman_write,
110 .read_int_callback = navman_read_int_callback,
111};
112
Alan Sternf667dda2012-02-23 14:57:18 -0500113static struct usb_serial_driver * const serial_drivers[] = {
114 &navman_device, NULL
115};
116
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700117module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800118
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800119MODULE_LICENSE("GPL");