diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
commit | ada47b5fe13d89735805b566185f4885f5a3f750 (patch) | |
tree | 644b88f8a71896307d71438e9b3af49126ffb22b /drivers/usb/serial/qcaux.c | |
parent | 43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff) | |
parent | 3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff) |
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
Diffstat (limited to 'drivers/usb/serial/qcaux.c')
-rw-r--r-- | drivers/usb/serial/qcaux.c | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/drivers/usb/serial/qcaux.c b/drivers/usb/serial/qcaux.c new file mode 100644 index 000000000000..7e3bea23600b --- /dev/null +++ b/drivers/usb/serial/qcaux.c | |||
@@ -0,0 +1,106 @@ | |||
1 | /* | ||
2 | * Qualcomm USB Auxiliary Serial Port driver | ||
3 | * | ||
4 | * Copyright (C) 2008 Greg Kroah-Hartman <greg@kroah.com> | ||
5 | * Copyright (C) 2010 Dan Williams <dcbw@redhat.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * Devices listed here usually provide a CDC ACM port on which normal modem | ||
12 | * AT commands and PPP can be used. But when that port is in-use by PPP it | ||
13 | * cannot be used simultaneously for status or signal strength. Instead, the | ||
14 | * ports here can be queried for that information using the Qualcomm DM | ||
15 | * protocol. | ||
16 | */ | ||
17 | |||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/init.h> | ||
20 | #include <linux/tty.h> | ||
21 | #include <linux/module.h> | ||
22 | #include <linux/usb.h> | ||
23 | #include <linux/usb/serial.h> | ||
24 | |||
25 | /* NOTE: for now, only use this driver for devices that provide a CDC-ACM port | ||
26 | * for normal AT commands, but also provide secondary USB interfaces for the | ||
27 | * QCDM-capable ports. Devices that do not provide a CDC-ACM port should | ||
28 | * probably be driven by option.ko. | ||
29 | */ | ||
30 | |||
31 | /* UTStarcom/Pantech/Curitel devices */ | ||
32 | #define UTSTARCOM_VENDOR_ID 0x106c | ||
33 | #define UTSTARCOM_PRODUCT_PC5740 0x3701 | ||
34 | #define UTSTARCOM_PRODUCT_PC5750 0x3702 /* aka Pantech PX-500 */ | ||
35 | #define UTSTARCOM_PRODUCT_UM150 0x3711 | ||
36 | #define UTSTARCOM_PRODUCT_UM175_V1 0x3712 | ||
37 | #define UTSTARCOM_PRODUCT_UM175_V2 0x3714 | ||
38 | #define UTSTARCOM_PRODUCT_UM175_ALLTEL 0x3715 | ||
39 | |||
40 | /* CMOTECH devices */ | ||
41 | #define CMOTECH_VENDOR_ID 0x16d8 | ||
42 | #define CMOTECH_PRODUCT_CDU550 0x5553 | ||
43 | #define CMOTECH_PRODUCT_CDX650 0x6512 | ||
44 | |||
45 | /* LG devices */ | ||
46 | #define LG_VENDOR_ID 0x1004 | ||
47 | #define LG_PRODUCT_VX4400_6000 0x6000 /* VX4400/VX6000/Rumor */ | ||
48 | |||
49 | /* Sanyo devices */ | ||
50 | #define SANYO_VENDOR_ID 0x0474 | ||
51 | #define SANYO_PRODUCT_KATANA_LX 0x0754 /* SCP-3800 (Katana LX) */ | ||
52 | |||
53 | static struct usb_device_id id_table[] = { | ||
54 | { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_PC5740, 0xff, 0x00, 0x00) }, | ||
55 | { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_PC5750, 0xff, 0x00, 0x00) }, | ||
56 | { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM150, 0xff, 0x00, 0x00) }, | ||
57 | { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM175_V1, 0xff, 0x00, 0x00) }, | ||
58 | { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM175_V2, 0xff, 0x00, 0x00) }, | ||
59 | { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, UTSTARCOM_PRODUCT_UM175_ALLTEL, 0xff, 0x00, 0x00) }, | ||
60 | { USB_DEVICE_AND_INTERFACE_INFO(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CDU550, 0xff, 0xff, 0x00) }, | ||
61 | { USB_DEVICE_AND_INTERFACE_INFO(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CDX650, 0xff, 0xff, 0x00) }, | ||
62 | { USB_DEVICE_AND_INTERFACE_INFO(LG_VENDOR_ID, LG_PRODUCT_VX4400_6000, 0xff, 0xff, 0x00) }, | ||
63 | { USB_DEVICE_AND_INTERFACE_INFO(SANYO_VENDOR_ID, SANYO_PRODUCT_KATANA_LX, 0xff, 0xff, 0x00) }, | ||
64 | { }, | ||
65 | }; | ||
66 | MODULE_DEVICE_TABLE(usb, id_table); | ||
67 | |||
68 | static struct usb_driver qcaux_driver = { | ||
69 | .name = "qcaux", | ||
70 | .probe = usb_serial_probe, | ||
71 | .disconnect = usb_serial_disconnect, | ||
72 | .id_table = id_table, | ||
73 | .no_dynamic_id = 1, | ||
74 | }; | ||
75 | |||
76 | static struct usb_serial_driver qcaux_device = { | ||
77 | .driver = { | ||
78 | .owner = THIS_MODULE, | ||
79 | .name = "qcaux", | ||
80 | }, | ||
81 | .id_table = id_table, | ||
82 | .num_ports = 1, | ||
83 | }; | ||
84 | |||
85 | static int __init qcaux_init(void) | ||
86 | { | ||
87 | int retval; | ||
88 | |||
89 | retval = usb_serial_register(&qcaux_device); | ||
90 | if (retval) | ||
91 | return retval; | ||
92 | retval = usb_register(&qcaux_driver); | ||
93 | if (retval) | ||
94 | usb_serial_deregister(&qcaux_device); | ||
95 | return retval; | ||
96 | } | ||
97 | |||
98 | static void __exit qcaux_exit(void) | ||
99 | { | ||
100 | usb_deregister(&qcaux_driver); | ||
101 | usb_serial_deregister(&qcaux_device); | ||
102 | } | ||
103 | |||
104 | module_init(qcaux_init); | ||
105 | module_exit(qcaux_exit); | ||
106 | MODULE_LICENSE("GPL"); | ||