blob: 7a09e8a07907b2c1eace351d35829444a6d39ad3 [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
Rusty Russell90ab5ee2012-01-13 09:32:20 +103024static bool debug;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080025
Németh Márton7d40d7e2010-01-10 15:34:24 +010026static const struct usb_device_id id_table[] = {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080027 { USB_DEVICE(0x0a99, 0x0001) }, /* Talon Technology device */
Ross Burton0eee6a22010-08-06 16:36:39 +010028 { USB_DEVICE(0x0df7, 0x0900) }, /* Mobile Action i-gotU */
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080029 { },
30};
31MODULE_DEVICE_TABLE(usb, id_table);
32
David Howells7d12e782006-10-05 14:55:46 +010033static void navman_read_int_callback(struct urb *urb)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080034{
35 struct usb_serial_port *port = urb->context;
36 unsigned char *data = urb->transfer_buffer;
37 struct tty_struct *tty;
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070038 int status = urb->status;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080039 int result;
40
Greg Kroah-Hartman9965d612007-06-15 15:44:13 -070041 switch (status) {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080042 case 0:
43 /* success */
44 break;
45 case -ECONNRESET:
46 case -ENOENT:
47 case -ESHUTDOWN:
48 /* this urb is terminated, clean up */
49 dbg("%s - urb shutting down with status: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080050 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080051 return;
52 default:
53 dbg("%s - nonzero urb status received: %d",
Harvey Harrison441b62c2008-03-03 16:08:34 -080054 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080055 goto exit;
56 }
57
Harvey Harrison441b62c2008-03-03 16:08:34 -080058 usb_serial_debug_data(debug, &port->dev, __func__,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080059 urb->actual_length, data);
60
Alan Cox4a90f092008-10-13 10:39:46 +010061 tty = tty_port_tty_get(&port->port);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080062 if (tty && urb->actual_length) {
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080063 tty_insert_flip_string(tty, data, urb->actual_length);
64 tty_flip_buffer_push(tty);
65 }
Alan Cox4a90f092008-10-13 10:39:46 +010066 tty_kref_put(tty);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080067
68exit:
69 result = usb_submit_urb(urb, GFP_ATOMIC);
70 if (result)
71 dev_err(&urb->dev->dev,
72 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080073 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080074}
75
Alan Coxa509a7e2009-09-19 13:13:26 -070076static int navman_open(struct tty_struct *tty, struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080077{
78 int result = 0;
79
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080080 if (port->interrupt_in_urb) {
Harvey Harrison441b62c2008-03-03 16:08:34 -080081 dbg("%s - adding interrupt input for treo", __func__);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080082 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
83 if (result)
84 dev_err(&port->dev,
85 "%s - failed submitting interrupt urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080086 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080087 }
88 return result;
89}
90
Alan Cox335f8512009-06-11 12:26:29 +010091static void navman_close(struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080092{
Mariusz Kozlowski9aac10f2006-11-08 15:36:46 +010093 usb_kill_urb(port->interrupt_in_urb);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080094}
95
Alan Cox95da3102008-07-22 11:09:07 +010096static int navman_write(struct tty_struct *tty, struct usb_serial_port *port,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080097 const unsigned char *buf, int count)
98{
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080099 /*
100 * This device can't write any data, only read from the device
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800101 */
Alan Coxa5b6f602008-04-08 17:16:06 +0100102 return -EOPNOTSUPP;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800103}
104
105static struct usb_serial_driver navman_device = {
106 .driver = {
107 .owner = THIS_MODULE,
108 .name = "navman",
109 },
110 .id_table = id_table,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800111 .num_ports = 1,
112 .open = navman_open,
113 .close = navman_close,
114 .write = navman_write,
115 .read_int_callback = navman_read_int_callback,
116};
117
Alan Sternf667dda2012-02-23 14:57:18 -0500118static struct usb_serial_driver * const serial_drivers[] = {
119 &navman_device, NULL
120};
121
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700122module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800123
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800124MODULE_LICENSE("GPL");
125
126module_param(debug, bool, S_IRUGO | S_IWUSR);
127MODULE_PARM_DESC(debug, "Debug enabled or not");