1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * USB Serial "Simple" driver 4 * 5 * Copyright (C) 2001-2006,2008,2013 Greg Kroah-Hartman <greg@kroah.com> 6 * Copyright (C) 2005 Arthur Huillet (ahuillet@users.sf.net) 7 * Copyright (C) 2005 Thomas Hergenhahn <thomas.hergenhahn@suse.de> 8 * Copyright (C) 2009 Outpost Embedded, LLC 9 * Copyright (C) 2010 Zilogic Systems <code@zilogic.com> 10 * Copyright (C) 2013 Wei Shuai <cpuwolf@gmail.com> 11 * Copyright (C) 2013 Linux Foundation 12 * 13 * This program is free software; you can redistribute it and/or 14 * modify it under the terms of the GNU General Public License version 15 * 2 as published by the Free Software Foundation. 16 */ 17 18 #include <linux/kernel.h> 19 #include <linux/tty.h> 20 #include <linux/module.h> 21 #include <linux/usb.h> 22 #include <linux/usb/serial.h> 23 24 #define DEVICE_N(vendor, IDS, nport) \ 25 static const struct usb_device_id vendor##_id_table[] = { \ 26 IDS(), \ 27 { }, \ 28 }; \ 29 static struct usb_serial_driver vendor##_device = { \ 30 .driver = { \ 31 .owner = THIS_MODULE, \ 32 .name = #vendor, \ 33 }, \ 34 .id_table = vendor##_id_table, \ 35 .num_ports = nport, \ 36 }; 37 38 #define DEVICE(vendor, IDS) DEVICE_N(vendor, IDS, 1) 39 40 /* Medtronic CareLink USB driver */ 41 #define CARELINK_IDS() \ 42 { USB_DEVICE(0x0a21, 0x8001) } /* MMT-7305WW */ 43 DEVICE(carelink, CARELINK_IDS); 44 45 /* ZIO Motherboard USB driver */ 46 #define ZIO_IDS() \ 47 { USB_DEVICE(0x1CBE, 0x0103) } 48 DEVICE(zio, ZIO_IDS); 49 50 /* Funsoft Serial USB driver */ 51 #define FUNSOFT_IDS() \ 52 { USB_DEVICE(0x1404, 0xcddc) } 53 DEVICE(funsoft, FUNSOFT_IDS); 54 55 /* Infineon Flashloader driver */ 56 #define FLASHLOADER_IDS() \ 57 { USB_DEVICE_INTERFACE_CLASS(0x058b, 0x0041, USB_CLASS_CDC_DATA) }, \ 58 { USB_DEVICE(0x8087, 0x0716) }, \ 59 { USB_DEVICE(0x8087, 0x0801) } 60 DEVICE(flashloader, FLASHLOADER_IDS); 61 62 /* Google Serial USB SubClass */ 63 #define GOOGLE_IDS() \ 64 { USB_VENDOR_AND_INTERFACE_INFO(0x18d1, \ 65 USB_CLASS_VENDOR_SPEC, \ 66 0x50, \ 67 0x01) } 68 DEVICE(google, GOOGLE_IDS); 69 70 /* ViVOpay USB Serial Driver */ 71 #define VIVOPAY_IDS() \ 72 { USB_DEVICE(0x1d5f, 0x1004) } /* ViVOpay 8800 */ 73 DEVICE(vivopay, VIVOPAY_IDS); 74 75 /* Motorola USB Phone driver */ 76 #define MOTO_IDS() \ 77 { USB_DEVICE(0x05c6, 0x3197) }, /* unknown Motorola phone */ \ 78 { USB_DEVICE(0x0c44, 0x0022) }, /* unknown Motorola phone */ \ 79 { USB_DEVICE(0x22b8, 0x2a64) }, /* Motorola KRZR K1m */ \ 80 { USB_DEVICE(0x22b8, 0x2c84) }, /* Motorola VE240 phone */ \ 81 { USB_DEVICE(0x22b8, 0x2c64) } /* Motorola V950 phone */ 82 DEVICE(moto_modem, MOTO_IDS); 83 84 /* Novatel Wireless GPS driver */ 85 #define NOVATEL_IDS() \ 86 { USB_DEVICE(0x09d7, 0x0100) } /* NovAtel FlexPack GPS */ 87 DEVICE_N(novatel_gps, NOVATEL_IDS, 3); 88 89 /* HP4x (48/49) Generic Serial driver */ 90 #define HP4X_IDS() \ 91 { USB_DEVICE(0x03f0, 0x0121) } 92 DEVICE(hp4x, HP4X_IDS); 93 94 /* Suunto ANT+ USB Driver */ 95 #define SUUNTO_IDS() \ 96 { USB_DEVICE(0x0fcf, 0x1008) }, \ 97 { USB_DEVICE(0x0fcf, 0x1009) } /* Dynastream ANT USB-m Stick */ 98 DEVICE(suunto, SUUNTO_IDS); 99 100 /* Siemens USB/MPI adapter */ 101 #define SIEMENS_IDS() \ 102 { USB_DEVICE(0x908, 0x0004) } 103 DEVICE(siemens_mpi, SIEMENS_IDS); 104 105 /* All of the above structures mushed into two lists */ 106 static struct usb_serial_driver * const serial_drivers[] = { 107 &carelink_device, 108 &zio_device, 109 &funsoft_device, 110 &flashloader_device, 111 &google_device, 112 &vivopay_device, 113 &moto_modem_device, 114 &novatel_gps_device, 115 &hp4x_device, 116 &suunto_device, 117 &siemens_mpi_device, 118 NULL 119 }; 120 121 static const struct usb_device_id id_table[] = { 122 CARELINK_IDS(), 123 ZIO_IDS(), 124 FUNSOFT_IDS(), 125 FLASHLOADER_IDS(), 126 GOOGLE_IDS(), 127 VIVOPAY_IDS(), 128 MOTO_IDS(), 129 NOVATEL_IDS(), 130 HP4X_IDS(), 131 SUUNTO_IDS(), 132 SIEMENS_IDS(), 133 { }, 134 }; 135 MODULE_DEVICE_TABLE(usb, id_table); 136 137 module_usb_serial_driver(serial_drivers, id_table); 138 MODULE_LICENSE("GPL"); 139