blob: d95452cc076d22ff0d4ae71d761069f4040a863c [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 */
Greg Kroah-Hartman00c533f2012-05-15 16:27:25 -070049 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
50 __func__, status);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080051 return;
52 default:
Greg Kroah-Hartman00c533f2012-05-15 16:27:25 -070053 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
54 __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) {
Greg Kroah-Hartman00c533f2012-05-15 16:27:25 -070081 dev_dbg(&port->dev, "%s - adding interrupt input for treo\n",
82 __func__);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080083 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
84 if (result)
85 dev_err(&port->dev,
86 "%s - failed submitting interrupt urb, error %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -080087 __func__, result);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080088 }
89 return result;
90}
91
Alan Cox335f8512009-06-11 12:26:29 +010092static void navman_close(struct usb_serial_port *port)
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080093{
Mariusz Kozlowski9aac10f2006-11-08 15:36:46 +010094 usb_kill_urb(port->interrupt_in_urb);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080095}
96
Alan Cox95da3102008-07-22 11:09:07 +010097static int navman_write(struct tty_struct *tty, struct usb_serial_port *port,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -080098 const unsigned char *buf, int count)
99{
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800100 /*
101 * This device can't write any data, only read from the device
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800102 */
Alan Coxa5b6f602008-04-08 17:16:06 +0100103 return -EOPNOTSUPP;
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800104}
105
106static struct usb_serial_driver navman_device = {
107 .driver = {
108 .owner = THIS_MODULE,
109 .name = "navman",
110 },
111 .id_table = id_table,
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800112 .num_ports = 1,
113 .open = navman_open,
114 .close = navman_close,
115 .write = navman_write,
116 .read_int_callback = navman_read_int_callback,
117};
118
Alan Sternf667dda2012-02-23 14:57:18 -0500119static struct usb_serial_driver * const serial_drivers[] = {
120 &navman_device, NULL
121};
122
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700123module_usb_serial_driver(serial_drivers, id_table);
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800124
Greg Kroah-Hartmane9a66c62006-03-17 17:40:08 -0800125MODULE_LICENSE("GPL");
126
127module_param(debug, bool, S_IRUGO | S_IWUSR);
128MODULE_PARM_DESC(debug, "Debug enabled or not");