103ee2515SGreg Kroah-Hartman /* 24cc27bd6SCraig Shelley * Silicon Laboratories CP210x USB to RS232 serial adaptor driver 303ee2515SGreg Kroah-Hartman * 403ee2515SGreg Kroah-Hartman * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk) 503ee2515SGreg Kroah-Hartman * 603ee2515SGreg Kroah-Hartman * This program is free software; you can redistribute it and/or 703ee2515SGreg Kroah-Hartman * modify it under the terms of the GNU General Public License version 803ee2515SGreg Kroah-Hartman * 2 as published by the Free Software Foundation. 903ee2515SGreg Kroah-Hartman * 1003ee2515SGreg Kroah-Hartman * Support to set flow control line levels using TIOCMGET and TIOCMSET 1103ee2515SGreg Kroah-Hartman * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow 1203ee2515SGreg Kroah-Hartman * control thanks to Munir Nassar nassarmu@real-time.com 1303ee2515SGreg Kroah-Hartman * 1403ee2515SGreg Kroah-Hartman */ 1503ee2515SGreg Kroah-Hartman 1603ee2515SGreg Kroah-Hartman #include <linux/kernel.h> 1703ee2515SGreg Kroah-Hartman #include <linux/errno.h> 1803ee2515SGreg Kroah-Hartman #include <linux/slab.h> 1903ee2515SGreg Kroah-Hartman #include <linux/tty.h> 2003ee2515SGreg Kroah-Hartman #include <linux/tty_flip.h> 2103ee2515SGreg Kroah-Hartman #include <linux/module.h> 2203ee2515SGreg Kroah-Hartman #include <linux/moduleparam.h> 2303ee2515SGreg Kroah-Hartman #include <linux/usb.h> 2403ee2515SGreg Kroah-Hartman #include <linux/uaccess.h> 2503ee2515SGreg Kroah-Hartman #include <linux/usb/serial.h> 2603ee2515SGreg Kroah-Hartman 274cc27bd6SCraig Shelley #define DRIVER_DESC "Silicon Labs CP210x RS232 serial adaptor driver" 2803ee2515SGreg Kroah-Hartman 2903ee2515SGreg Kroah-Hartman /* 3003ee2515SGreg Kroah-Hartman * Function Prototypes 3103ee2515SGreg Kroah-Hartman */ 32a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *); 334cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *); 344f2ab888SJohan Hovold static void cp210x_get_termios(struct tty_struct *, struct usb_serial_port *); 354cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port, 36d2ad67b3SVomLehn unsigned int *cflagp, unsigned int *baudp); 37e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *, 38e5990874SJohan Hovold struct ktermios *); 394cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *, 4003ee2515SGreg Kroah-Hartman struct ktermios*); 4160b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *); 4220b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int); 4320b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 44d2ad67b3SVomLehn unsigned int, unsigned int); 454cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int); 464cc27bd6SCraig Shelley static int cp210x_startup(struct usb_serial *); 47a5360a53SPreston Fick static void cp210x_release(struct usb_serial *); 48d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on); 4903ee2515SGreg Kroah-Hartman 507d40d7e8SNémeth Márton static const struct usb_device_id id_table[] = { 512f1136d1SDJ Delorie { USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */ 5203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */ 5303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 545b22a32eSA E Lawrence { USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 55b7c7cbc8SCraig Shelley { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */ 5690625070SLuiz Angelo Daros de Luca { USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */ 5703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */ 58b7c7cbc8SCraig Shelley { USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */ 59a6f03312SLennart Sorensen { USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */ 60eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */ 61eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */ 6203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */ 6303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */ 6403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */ 658de7f4daSLuis Llorente Campo { USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */ 6603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */ 6703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */ 6803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */ 69b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */ 700601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */ 710601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */ 7203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */ 7303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */ 74eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */ 75eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */ 7603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */ 7703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */ 7803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */ 79eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */ 8003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */ 815bbfa6f4SMikko Tuumanen { USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */ 8203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */ 8303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */ 8403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */ 8503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */ 8603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */ 878bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */ 8803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */ 8903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */ 90a57e82a1SSteve Conklin { USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */ 910bf7a81cSJason Detring { USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */ 9203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */ 933fcc8f96SCraig Shelley { USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */ 94eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */ 9503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */ 9603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */ 9708e87d0dSMalte Schröder { USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */ 9803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */ 99eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */ 10003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */ 10103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */ 10203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */ 103bd07c551SAlan Cox { USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */ 104b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */ 10503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ 10603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */ 10725985edcSLucas De Marchi { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */ 10872b30079STristan Bruns { USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */ 109c851e83fSFlorian Fainelli { USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */ 110b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */ 11103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */ 1128bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */ 11303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */ 114faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */ 1158bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */ 116faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */ 117d23bac9fSAlex Stephens { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */ 118541e05ecSCraig Shelley { USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */ 1194eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */ 1204eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */ 121356fe44fSMarkus Becker { USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */ 1224eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */ 1234eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */ 1241ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8856) }, /* CEL EM357 ZigBee USB Stick - LR */ 1251ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8857) }, /* CEL EM357 ZigBee USB Stick */ 12676811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */ 12776811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */ 128bfc2d7dfSJoe Savage { USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */ 1291ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8977) }, /* CEL MeshWorks DevKit Device */ 130c735ed74SMark Edwards { USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */ 131*df72d588SJohn D. Blair { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */ 13203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ 13303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ 134a5360a53SPreston Fick { USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */ 135a5360a53SPreston Fick { USB_DEVICE(0x10C4, 0xEA80) }, /* Silicon Labs factory default */ 136eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */ 13703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */ 13803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */ 13903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */ 14003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */ 14103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */ 142b7c7cbc8SCraig Shelley { USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */ 14303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */ 144b7c7cbc8SCraig Shelley { USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */ 1453fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */ 1463fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */ 14703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */ 1483fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */ 1493fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */ 1503fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */ 1513fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */ 152675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */ 153675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */ 15403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */ 155356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */ 156356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */ 157356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */ 158356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */ 159c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */ 160c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */ 161541e05ecSCraig Shelley { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */ 162541e05ecSCraig Shelley { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ 163541e05ecSCraig Shelley { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ 164b579fa52SBarry Grussling { USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */ 165b9326057SAndras Kovacs { USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */ 16635cc83eaSNathaniel Ting { USB_DEVICE(0x1BA4, 0x0002) }, /* Silicon Labs 358x factory default */ 16793ad03d6SAnders Larsen { USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */ 168dee80ad1SAndreas Bomholtz { USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */ 1693fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */ 1703fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */ 171be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */ 172be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */ 173be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */ 174be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */ 175be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */ 176be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */ 177be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */ 178be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */ 179be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */ 180be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */ 181be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */ 182be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */ 183be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */ 184be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */ 185be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */ 186be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */ 187be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */ 188be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */ 189be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */ 190791b7d7cSRenato Caldas { USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */ 1913fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */ 1923fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */ 193541e05ecSCraig Shelley { USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */ 19403ee2515SGreg Kroah-Hartman { } /* Terminating Entry */ 19503ee2515SGreg Kroah-Hartman }; 19603ee2515SGreg Kroah-Hartman 19703ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table); 19803ee2515SGreg Kroah-Hartman 1994295fe77SJohan Hovold struct cp210x_serial_private { 200a5360a53SPreston Fick __u8 bInterfaceNumber; 201a5360a53SPreston Fick }; 202a5360a53SPreston Fick 2034cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = { 20403ee2515SGreg Kroah-Hartman .driver = { 20503ee2515SGreg Kroah-Hartman .owner = THIS_MODULE, 2064cc27bd6SCraig Shelley .name = "cp210x", 20703ee2515SGreg Kroah-Hartman }, 20803ee2515SGreg Kroah-Hartman .id_table = id_table, 20903ee2515SGreg Kroah-Hartman .num_ports = 1, 210aea006b9SJohan Hovold .bulk_in_size = 256, 211d4e598f6SJohan Hovold .bulk_out_size = 256, 2124cc27bd6SCraig Shelley .open = cp210x_open, 2134cc27bd6SCraig Shelley .close = cp210x_close, 2144cc27bd6SCraig Shelley .break_ctl = cp210x_break_ctl, 2154cc27bd6SCraig Shelley .set_termios = cp210x_set_termios, 2164cc27bd6SCraig Shelley .tiocmget = cp210x_tiocmget, 2174cc27bd6SCraig Shelley .tiocmset = cp210x_tiocmset, 2184cc27bd6SCraig Shelley .attach = cp210x_startup, 219a5360a53SPreston Fick .release = cp210x_release, 220d14fc1a7SLibor Pechacek .dtr_rts = cp210x_dtr_rts 22103ee2515SGreg Kroah-Hartman }; 22203ee2515SGreg Kroah-Hartman 22308a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = { 22408a4f6bcSAlan Stern &cp210x_device, NULL 22508a4f6bcSAlan Stern }; 22608a4f6bcSAlan Stern 22703ee2515SGreg Kroah-Hartman /* Config request types */ 22832445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE 0x41 22932445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST 0xc1 23032445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE 0x40 23132445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST 0xc0 23203ee2515SGreg Kroah-Hartman 23393ef1f1fSCraig Shelley /* Config request codes */ 23493ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE 0x00 23593ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV 0x01 23693ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV 0x02 23793ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL 0x03 23893ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL 0x04 23993ef1f1fSCraig Shelley #define CP210X_SET_BREAK 0x05 24093ef1f1fSCraig Shelley #define CP210X_IMM_CHAR 0x06 24193ef1f1fSCraig Shelley #define CP210X_SET_MHS 0x07 24293ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS 0x08 24393ef1f1fSCraig Shelley #define CP210X_SET_XON 0x09 24493ef1f1fSCraig Shelley #define CP210X_SET_XOFF 0x0A 24593ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK 0x0B 24693ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK 0x0C 24793ef1f1fSCraig Shelley #define CP210X_SET_CHAR 0x0D 24893ef1f1fSCraig Shelley #define CP210X_GET_CHARS 0x0E 24993ef1f1fSCraig Shelley #define CP210X_GET_PROPS 0x0F 25093ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS 0x10 25193ef1f1fSCraig Shelley #define CP210X_RESET 0x11 25293ef1f1fSCraig Shelley #define CP210X_PURGE 0x12 25393ef1f1fSCraig Shelley #define CP210X_SET_FLOW 0x13 25493ef1f1fSCraig Shelley #define CP210X_GET_FLOW 0x14 25593ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS 0x15 25693ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE 0x16 25793ef1f1fSCraig Shelley #define CP210X_SET_CHARS 0x19 2587f482fc8SPreston Fick #define CP210X_GET_BAUDRATE 0x1D 2597f482fc8SPreston Fick #define CP210X_SET_BAUDRATE 0x1E 26003ee2515SGreg Kroah-Hartman 26193ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */ 26203ee2515SGreg Kroah-Hartman #define UART_ENABLE 0x0001 26303ee2515SGreg Kroah-Hartman #define UART_DISABLE 0x0000 26403ee2515SGreg Kroah-Hartman 26593ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */ 26603ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ 0x384000 26703ee2515SGreg Kroah-Hartman 26893ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */ 26903ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK 0X0f00 27003ee2515SGreg Kroah-Hartman #define BITS_DATA_5 0X0500 27103ee2515SGreg Kroah-Hartman #define BITS_DATA_6 0X0600 27203ee2515SGreg Kroah-Hartman #define BITS_DATA_7 0X0700 27303ee2515SGreg Kroah-Hartman #define BITS_DATA_8 0X0800 27403ee2515SGreg Kroah-Hartman #define BITS_DATA_9 0X0900 27503ee2515SGreg Kroah-Hartman 27603ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK 0x00f0 27703ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE 0x0000 27803ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD 0x0010 27903ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN 0x0020 28003ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK 0x0030 28103ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE 0x0040 28203ee2515SGreg Kroah-Hartman 28303ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK 0x000f 28403ee2515SGreg Kroah-Hartman #define BITS_STOP_1 0x0000 28503ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5 0x0001 28603ee2515SGreg Kroah-Hartman #define BITS_STOP_2 0x0002 28703ee2515SGreg Kroah-Hartman 28893ef1f1fSCraig Shelley /* CP210X_SET_BREAK */ 28972916791SCraig Shelley #define BREAK_ON 0x0001 29072916791SCraig Shelley #define BREAK_OFF 0x0000 29103ee2515SGreg Kroah-Hartman 29293ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */ 29303ee2515SGreg Kroah-Hartman #define CONTROL_DTR 0x0001 29403ee2515SGreg Kroah-Hartman #define CONTROL_RTS 0x0002 29503ee2515SGreg Kroah-Hartman #define CONTROL_CTS 0x0010 29603ee2515SGreg Kroah-Hartman #define CONTROL_DSR 0x0020 29703ee2515SGreg Kroah-Hartman #define CONTROL_RING 0x0040 29803ee2515SGreg Kroah-Hartman #define CONTROL_DCD 0x0080 29903ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR 0x0100 30003ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS 0x0200 30103ee2515SGreg Kroah-Hartman 30203ee2515SGreg Kroah-Hartman /* 3034cc27bd6SCraig Shelley * cp210x_get_config 3044cc27bd6SCraig Shelley * Reads from the CP210x configuration registers 30503ee2515SGreg Kroah-Hartman * 'size' is specified in bytes. 30603ee2515SGreg Kroah-Hartman * 'data' is a pointer to a pre-allocated array of integers large 30703ee2515SGreg Kroah-Hartman * enough to hold 'size' bytes (with 4 bytes to each integer) 30803ee2515SGreg Kroah-Hartman */ 3094cc27bd6SCraig Shelley static int cp210x_get_config(struct usb_serial_port *port, u8 request, 31003ee2515SGreg Kroah-Hartman unsigned int *data, int size) 31103ee2515SGreg Kroah-Hartman { 31203ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 3134295fe77SJohan Hovold struct cp210x_serial_private *spriv = usb_get_serial_data(serial); 31403ee2515SGreg Kroah-Hartman __le32 *buf; 31503ee2515SGreg Kroah-Hartman int result, i, length; 31603ee2515SGreg Kroah-Hartman 31703ee2515SGreg Kroah-Hartman /* Number of integers required to contain the array */ 31803ee2515SGreg Kroah-Hartman length = (((size - 1) | 3) + 1) / 4; 31903ee2515SGreg Kroah-Hartman 32003ee2515SGreg Kroah-Hartman buf = kcalloc(length, sizeof(__le32), GFP_KERNEL); 32110c642d0SJohan Hovold if (!buf) 32203ee2515SGreg Kroah-Hartman return -ENOMEM; 32303ee2515SGreg Kroah-Hartman 32403ee2515SGreg Kroah-Hartman /* Issue the request, attempting to read 'size' bytes */ 32503ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 32632445605SPreston Fick request, REQTYPE_INTERFACE_TO_HOST, 0x0000, 3274295fe77SJohan Hovold spriv->bInterfaceNumber, buf, size, 3282d5733fcSYuri Matylitski USB_CTRL_GET_TIMEOUT); 32903ee2515SGreg Kroah-Hartman 33003ee2515SGreg Kroah-Hartman /* Convert data into an array of integers */ 33103ee2515SGreg Kroah-Hartman for (i = 0; i < length; i++) 33203ee2515SGreg Kroah-Hartman data[i] = le32_to_cpu(buf[i]); 33303ee2515SGreg Kroah-Hartman 33403ee2515SGreg Kroah-Hartman kfree(buf); 33503ee2515SGreg Kroah-Hartman 33603ee2515SGreg Kroah-Hartman if (result != size) { 337660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - Unable to send config request, request=0x%x size=%d result=%d\n", 33803ee2515SGreg Kroah-Hartman __func__, request, size, result); 3392479e2a9SJohan Hovold if (result > 0) 3402479e2a9SJohan Hovold result = -EPROTO; 3412479e2a9SJohan Hovold 3422479e2a9SJohan Hovold return result; 34303ee2515SGreg Kroah-Hartman } 34403ee2515SGreg Kroah-Hartman 34503ee2515SGreg Kroah-Hartman return 0; 34603ee2515SGreg Kroah-Hartman } 34703ee2515SGreg Kroah-Hartman 34803ee2515SGreg Kroah-Hartman /* 3494cc27bd6SCraig Shelley * cp210x_set_config 3504cc27bd6SCraig Shelley * Writes to the CP210x configuration registers 35103ee2515SGreg Kroah-Hartman * Values less than 16 bits wide are sent directly 35203ee2515SGreg Kroah-Hartman * 'size' is specified in bytes. 35303ee2515SGreg Kroah-Hartman */ 3544cc27bd6SCraig Shelley static int cp210x_set_config(struct usb_serial_port *port, u8 request, 35503ee2515SGreg Kroah-Hartman unsigned int *data, int size) 35603ee2515SGreg Kroah-Hartman { 35703ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 3584295fe77SJohan Hovold struct cp210x_serial_private *spriv = usb_get_serial_data(serial); 35903ee2515SGreg Kroah-Hartman __le32 *buf; 36003ee2515SGreg Kroah-Hartman int result, i, length; 36103ee2515SGreg Kroah-Hartman 36203ee2515SGreg Kroah-Hartman /* Number of integers required to contain the array */ 36303ee2515SGreg Kroah-Hartman length = (((size - 1) | 3) + 1) / 4; 36403ee2515SGreg Kroah-Hartman 36503ee2515SGreg Kroah-Hartman buf = kmalloc(length * sizeof(__le32), GFP_KERNEL); 36610c642d0SJohan Hovold if (!buf) 36703ee2515SGreg Kroah-Hartman return -ENOMEM; 36803ee2515SGreg Kroah-Hartman 36903ee2515SGreg Kroah-Hartman /* Array of integers into bytes */ 37003ee2515SGreg Kroah-Hartman for (i = 0; i < length; i++) 37103ee2515SGreg Kroah-Hartman buf[i] = cpu_to_le32(data[i]); 37203ee2515SGreg Kroah-Hartman 37303ee2515SGreg Kroah-Hartman if (size > 2) { 37403ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, 37503ee2515SGreg Kroah-Hartman usb_sndctrlpipe(serial->dev, 0), 37632445605SPreston Fick request, REQTYPE_HOST_TO_INTERFACE, 0x0000, 3774295fe77SJohan Hovold spriv->bInterfaceNumber, buf, size, 3782d5733fcSYuri Matylitski USB_CTRL_SET_TIMEOUT); 37903ee2515SGreg Kroah-Hartman } else { 38003ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, 38103ee2515SGreg Kroah-Hartman usb_sndctrlpipe(serial->dev, 0), 38232445605SPreston Fick request, REQTYPE_HOST_TO_INTERFACE, data[0], 3834295fe77SJohan Hovold spriv->bInterfaceNumber, NULL, 0, 3842d5733fcSYuri Matylitski USB_CTRL_SET_TIMEOUT); 38503ee2515SGreg Kroah-Hartman } 38603ee2515SGreg Kroah-Hartman 38703ee2515SGreg Kroah-Hartman kfree(buf); 38803ee2515SGreg Kroah-Hartman 38903ee2515SGreg Kroah-Hartman if ((size > 2 && result != size) || result < 0) { 390660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - Unable to send request, request=0x%x size=%d result=%d\n", 39103ee2515SGreg Kroah-Hartman __func__, request, size, result); 3922479e2a9SJohan Hovold if (result > 0) 3932479e2a9SJohan Hovold result = -EPROTO; 3942479e2a9SJohan Hovold 3952479e2a9SJohan Hovold return result; 39603ee2515SGreg Kroah-Hartman } 39703ee2515SGreg Kroah-Hartman 39803ee2515SGreg Kroah-Hartman return 0; 39903ee2515SGreg Kroah-Hartman } 40003ee2515SGreg Kroah-Hartman 40103ee2515SGreg Kroah-Hartman /* 4024cc27bd6SCraig Shelley * cp210x_set_config_single 4034cc27bd6SCraig Shelley * Convenience function for calling cp210x_set_config on single data values 40403ee2515SGreg Kroah-Hartman * without requiring an integer pointer 40503ee2515SGreg Kroah-Hartman */ 4064cc27bd6SCraig Shelley static inline int cp210x_set_config_single(struct usb_serial_port *port, 40703ee2515SGreg Kroah-Hartman u8 request, unsigned int data) 40803ee2515SGreg Kroah-Hartman { 4094cc27bd6SCraig Shelley return cp210x_set_config(port, request, &data, 2); 41003ee2515SGreg Kroah-Hartman } 41103ee2515SGreg Kroah-Hartman 41203ee2515SGreg Kroah-Hartman /* 4134cc27bd6SCraig Shelley * cp210x_quantise_baudrate 41403ee2515SGreg Kroah-Hartman * Quantises the baud rate as per AN205 Table 1 41503ee2515SGreg Kroah-Hartman */ 4164f2ab888SJohan Hovold static unsigned int cp210x_quantise_baudrate(unsigned int baud) 4174f2ab888SJohan Hovold { 418be125d9cSJohan Hovold if (baud <= 300) 419be125d9cSJohan Hovold baud = 300; 42003ee2515SGreg Kroah-Hartman else if (baud <= 600) baud = 600; 42103ee2515SGreg Kroah-Hartman else if (baud <= 1200) baud = 1200; 42203ee2515SGreg Kroah-Hartman else if (baud <= 1800) baud = 1800; 42303ee2515SGreg Kroah-Hartman else if (baud <= 2400) baud = 2400; 42403ee2515SGreg Kroah-Hartman else if (baud <= 4000) baud = 4000; 42503ee2515SGreg Kroah-Hartman else if (baud <= 4803) baud = 4800; 42603ee2515SGreg Kroah-Hartman else if (baud <= 7207) baud = 7200; 42703ee2515SGreg Kroah-Hartman else if (baud <= 9612) baud = 9600; 42803ee2515SGreg Kroah-Hartman else if (baud <= 14428) baud = 14400; 42903ee2515SGreg Kroah-Hartman else if (baud <= 16062) baud = 16000; 43003ee2515SGreg Kroah-Hartman else if (baud <= 19250) baud = 19200; 43103ee2515SGreg Kroah-Hartman else if (baud <= 28912) baud = 28800; 43203ee2515SGreg Kroah-Hartman else if (baud <= 38601) baud = 38400; 43303ee2515SGreg Kroah-Hartman else if (baud <= 51558) baud = 51200; 43403ee2515SGreg Kroah-Hartman else if (baud <= 56280) baud = 56000; 43503ee2515SGreg Kroah-Hartman else if (baud <= 58053) baud = 57600; 43603ee2515SGreg Kroah-Hartman else if (baud <= 64111) baud = 64000; 43703ee2515SGreg Kroah-Hartman else if (baud <= 77608) baud = 76800; 43803ee2515SGreg Kroah-Hartman else if (baud <= 117028) baud = 115200; 43903ee2515SGreg Kroah-Hartman else if (baud <= 129347) baud = 128000; 44003ee2515SGreg Kroah-Hartman else if (baud <= 156868) baud = 153600; 44103ee2515SGreg Kroah-Hartman else if (baud <= 237832) baud = 230400; 44203ee2515SGreg Kroah-Hartman else if (baud <= 254234) baud = 250000; 44303ee2515SGreg Kroah-Hartman else if (baud <= 273066) baud = 256000; 44403ee2515SGreg Kroah-Hartman else if (baud <= 491520) baud = 460800; 44503ee2515SGreg Kroah-Hartman else if (baud <= 567138) baud = 500000; 44603ee2515SGreg Kroah-Hartman else if (baud <= 670254) baud = 576000; 447d1620ca9SJohan Hovold else if (baud < 1000000) 448d1620ca9SJohan Hovold baud = 921600; 449d1620ca9SJohan Hovold else if (baud > 2000000) 450d1620ca9SJohan Hovold baud = 2000000; 45103ee2515SGreg Kroah-Hartman return baud; 45203ee2515SGreg Kroah-Hartman } 45303ee2515SGreg Kroah-Hartman 454a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port) 45503ee2515SGreg Kroah-Hartman { 45603ee2515SGreg Kroah-Hartman int result; 45703ee2515SGreg Kroah-Hartman 4582479e2a9SJohan Hovold result = cp210x_set_config_single(port, CP210X_IFC_ENABLE, 4592479e2a9SJohan Hovold UART_ENABLE); 4602479e2a9SJohan Hovold if (result) { 4612479e2a9SJohan Hovold dev_err(&port->dev, "%s - Unable to enable UART\n", __func__); 4622479e2a9SJohan Hovold return result; 46303ee2515SGreg Kroah-Hartman } 46403ee2515SGreg Kroah-Hartman 46503ee2515SGreg Kroah-Hartman /* Configure the termios structure */ 4664cc27bd6SCraig Shelley cp210x_get_termios(tty, port); 46755b2afbbSJohan Hovold 468cdc32fd6SJohan Hovold /* The baud rate must be initialised on cp2104 */ 469cdc32fd6SJohan Hovold if (tty) 470cdc32fd6SJohan Hovold cp210x_change_speed(tty, port, NULL); 471cdc32fd6SJohan Hovold 47255b2afbbSJohan Hovold return usb_serial_generic_open(tty, port); 47303ee2515SGreg Kroah-Hartman } 47403ee2515SGreg Kroah-Hartman 4754cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port) 47603ee2515SGreg Kroah-Hartman { 477f26788daSJohan Hovold usb_serial_generic_close(port); 4784cc27bd6SCraig Shelley cp210x_set_config_single(port, CP210X_IFC_ENABLE, UART_DISABLE); 47903ee2515SGreg Kroah-Hartman } 48003ee2515SGreg Kroah-Hartman 48103ee2515SGreg Kroah-Hartman /* 4824cc27bd6SCraig Shelley * cp210x_get_termios 48303ee2515SGreg Kroah-Hartman * Reads the baud rate, data bits, parity, stop bits and flow control mode 48403ee2515SGreg Kroah-Hartman * from the device, corrects any unsupported values, and configures the 48503ee2515SGreg Kroah-Hartman * termios structure to reflect the state of the device 48603ee2515SGreg Kroah-Hartman */ 4874cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *tty, 488d2ad67b3SVomLehn struct usb_serial_port *port) 48903ee2515SGreg Kroah-Hartman { 490d2ad67b3SVomLehn unsigned int baud; 491d2ad67b3SVomLehn 492d2ad67b3SVomLehn if (tty) { 4934cc27bd6SCraig Shelley cp210x_get_termios_port(tty->driver_data, 494adc8d746SAlan Cox &tty->termios.c_cflag, &baud); 495d2ad67b3SVomLehn tty_encode_baud_rate(tty, baud, baud); 4964f2ab888SJohan Hovold } else { 497d2ad67b3SVomLehn unsigned int cflag; 498d2ad67b3SVomLehn cflag = 0; 4994cc27bd6SCraig Shelley cp210x_get_termios_port(port, &cflag, &baud); 500d2ad67b3SVomLehn } 501d2ad67b3SVomLehn } 502d2ad67b3SVomLehn 503d2ad67b3SVomLehn /* 5044cc27bd6SCraig Shelley * cp210x_get_termios_port 5054cc27bd6SCraig Shelley * This is the heart of cp210x_get_termios which always uses a &usb_serial_port. 506d2ad67b3SVomLehn */ 5074cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port, 508d2ad67b3SVomLehn unsigned int *cflagp, unsigned int *baudp) 509d2ad67b3SVomLehn { 510660f3b14SGreg Kroah-Hartman struct device *dev = &port->dev; 51103ee2515SGreg Kroah-Hartman unsigned int cflag, modem_ctl[4]; 51203ee2515SGreg Kroah-Hartman unsigned int baud; 51303ee2515SGreg Kroah-Hartman unsigned int bits; 51403ee2515SGreg Kroah-Hartman 5157f482fc8SPreston Fick cp210x_get_config(port, CP210X_GET_BAUDRATE, &baud, 4); 51603ee2515SGreg Kroah-Hartman 517660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud); 518d2ad67b3SVomLehn *baudp = baud; 51903ee2515SGreg Kroah-Hartman 520d2ad67b3SVomLehn cflag = *cflagp; 52103ee2515SGreg Kroah-Hartman 5224cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 52303ee2515SGreg Kroah-Hartman cflag &= ~CSIZE; 52403ee2515SGreg Kroah-Hartman switch (bits & BITS_DATA_MASK) { 52503ee2515SGreg Kroah-Hartman case BITS_DATA_5: 526660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 5\n", __func__); 52703ee2515SGreg Kroah-Hartman cflag |= CS5; 52803ee2515SGreg Kroah-Hartman break; 52903ee2515SGreg Kroah-Hartman case BITS_DATA_6: 530660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 6\n", __func__); 53103ee2515SGreg Kroah-Hartman cflag |= CS6; 53203ee2515SGreg Kroah-Hartman break; 53303ee2515SGreg Kroah-Hartman case BITS_DATA_7: 534660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 7\n", __func__); 53503ee2515SGreg Kroah-Hartman cflag |= CS7; 53603ee2515SGreg Kroah-Hartman break; 53703ee2515SGreg Kroah-Hartman case BITS_DATA_8: 538660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 8\n", __func__); 53903ee2515SGreg Kroah-Hartman cflag |= CS8; 54003ee2515SGreg Kroah-Hartman break; 54103ee2515SGreg Kroah-Hartman case BITS_DATA_9: 542660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 9 (not supported, using 8 data bits)\n", __func__); 54303ee2515SGreg Kroah-Hartman cflag |= CS8; 54403ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 54503ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 5464cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 54703ee2515SGreg Kroah-Hartman break; 54803ee2515SGreg Kroah-Hartman default: 549660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown number of data bits, using 8\n", __func__); 55003ee2515SGreg Kroah-Hartman cflag |= CS8; 55103ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 55203ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 5534cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 55403ee2515SGreg Kroah-Hartman break; 55503ee2515SGreg Kroah-Hartman } 55603ee2515SGreg Kroah-Hartman 55703ee2515SGreg Kroah-Hartman switch (bits & BITS_PARITY_MASK) { 55803ee2515SGreg Kroah-Hartman case BITS_PARITY_NONE: 559660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = NONE\n", __func__); 56003ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 56103ee2515SGreg Kroah-Hartman break; 56203ee2515SGreg Kroah-Hartman case BITS_PARITY_ODD: 563660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = ODD\n", __func__); 56403ee2515SGreg Kroah-Hartman cflag |= (PARENB|PARODD); 56503ee2515SGreg Kroah-Hartman break; 56603ee2515SGreg Kroah-Hartman case BITS_PARITY_EVEN: 567660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = EVEN\n", __func__); 56803ee2515SGreg Kroah-Hartman cflag &= ~PARODD; 56903ee2515SGreg Kroah-Hartman cflag |= PARENB; 57003ee2515SGreg Kroah-Hartman break; 57103ee2515SGreg Kroah-Hartman case BITS_PARITY_MARK: 572660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = MARK\n", __func__); 5734b6181caSRoland Koebler cflag |= (PARENB|PARODD|CMSPAR); 57403ee2515SGreg Kroah-Hartman break; 57503ee2515SGreg Kroah-Hartman case BITS_PARITY_SPACE: 576660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = SPACE\n", __func__); 5774b6181caSRoland Koebler cflag &= ~PARODD; 5784b6181caSRoland Koebler cflag |= (PARENB|CMSPAR); 57903ee2515SGreg Kroah-Hartman break; 58003ee2515SGreg Kroah-Hartman default: 581660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown parity mode, disabling parity\n", __func__); 58203ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 58303ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 5844cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 58503ee2515SGreg Kroah-Hartman break; 58603ee2515SGreg Kroah-Hartman } 58703ee2515SGreg Kroah-Hartman 58803ee2515SGreg Kroah-Hartman cflag &= ~CSTOPB; 58903ee2515SGreg Kroah-Hartman switch (bits & BITS_STOP_MASK) { 59003ee2515SGreg Kroah-Hartman case BITS_STOP_1: 591660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1\n", __func__); 59203ee2515SGreg Kroah-Hartman break; 59303ee2515SGreg Kroah-Hartman case BITS_STOP_1_5: 594660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1.5 (not supported, using 1 stop bit)\n", __func__); 59503ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 5964cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 59703ee2515SGreg Kroah-Hartman break; 59803ee2515SGreg Kroah-Hartman case BITS_STOP_2: 599660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 2\n", __func__); 60003ee2515SGreg Kroah-Hartman cflag |= CSTOPB; 60103ee2515SGreg Kroah-Hartman break; 60203ee2515SGreg Kroah-Hartman default: 603660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown number of stop bits, using 1 stop bit\n", __func__); 60403ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 6054cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 60603ee2515SGreg Kroah-Hartman break; 60703ee2515SGreg Kroah-Hartman } 60803ee2515SGreg Kroah-Hartman 6094cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_FLOW, modem_ctl, 16); 61003ee2515SGreg Kroah-Hartman if (modem_ctl[0] & 0x0008) { 611660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__); 61203ee2515SGreg Kroah-Hartman cflag |= CRTSCTS; 61303ee2515SGreg Kroah-Hartman } else { 614660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = NONE\n", __func__); 61503ee2515SGreg Kroah-Hartman cflag &= ~CRTSCTS; 61603ee2515SGreg Kroah-Hartman } 61703ee2515SGreg Kroah-Hartman 618d2ad67b3SVomLehn *cflagp = cflag; 61903ee2515SGreg Kroah-Hartman } 62003ee2515SGreg Kroah-Hartman 621e5990874SJohan Hovold /* 622e5990874SJohan Hovold * CP2101 supports the following baud rates: 623e5990874SJohan Hovold * 624e5990874SJohan Hovold * 300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800, 625e5990874SJohan Hovold * 38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600 626e5990874SJohan Hovold * 627e5990874SJohan Hovold * CP2102 and CP2103 support the following additional rates: 628e5990874SJohan Hovold * 629e5990874SJohan Hovold * 4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000, 630e5990874SJohan Hovold * 576000 631e5990874SJohan Hovold * 632e5990874SJohan Hovold * The device will map a requested rate to a supported one, but the result 633e5990874SJohan Hovold * of requests for rates greater than 1053257 is undefined (see AN205). 634e5990874SJohan Hovold * 635e5990874SJohan Hovold * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud, 636e5990874SJohan Hovold * respectively, with an error less than 1%. The actual rates are determined 637e5990874SJohan Hovold * by 638e5990874SJohan Hovold * 639e5990874SJohan Hovold * div = round(freq / (2 x prescale x request)) 640e5990874SJohan Hovold * actual = freq / (2 x prescale x div) 641e5990874SJohan Hovold * 642e5990874SJohan Hovold * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps 643e5990874SJohan Hovold * or 1 otherwise. 644e5990874SJohan Hovold * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1 645e5990874SJohan Hovold * otherwise. 646e5990874SJohan Hovold */ 647e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty, 648e5990874SJohan Hovold struct usb_serial_port *port, struct ktermios *old_termios) 649e5990874SJohan Hovold { 650e5990874SJohan Hovold u32 baud; 651e5990874SJohan Hovold 652adc8d746SAlan Cox baud = tty->termios.c_ospeed; 653e5990874SJohan Hovold 654d1620ca9SJohan Hovold /* This maps the requested rate to a rate valid on cp2102 or cp2103, 655d1620ca9SJohan Hovold * or to an arbitrary rate in [1M,2M]. 656e5990874SJohan Hovold * 657e5990874SJohan Hovold * NOTE: B0 is not implemented. 658e5990874SJohan Hovold */ 659e5990874SJohan Hovold baud = cp210x_quantise_baudrate(baud); 660e5990874SJohan Hovold 661660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud); 662e5990874SJohan Hovold if (cp210x_set_config(port, CP210X_SET_BAUDRATE, &baud, 663e5990874SJohan Hovold sizeof(baud))) { 664e5990874SJohan Hovold dev_warn(&port->dev, "failed to set baud rate to %u\n", baud); 665e5990874SJohan Hovold if (old_termios) 666e5990874SJohan Hovold baud = old_termios->c_ospeed; 667e5990874SJohan Hovold else 668e5990874SJohan Hovold baud = 9600; 669e5990874SJohan Hovold } 670e5990874SJohan Hovold 671e5990874SJohan Hovold tty_encode_baud_rate(tty, baud, baud); 672e5990874SJohan Hovold } 673e5990874SJohan Hovold 6744cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty, 67503ee2515SGreg Kroah-Hartman struct usb_serial_port *port, struct ktermios *old_termios) 67603ee2515SGreg Kroah-Hartman { 677660f3b14SGreg Kroah-Hartman struct device *dev = &port->dev; 67803ee2515SGreg Kroah-Hartman unsigned int cflag, old_cflag; 67934b76fcaSJohan Hovold unsigned int bits; 68003ee2515SGreg Kroah-Hartman unsigned int modem_ctl[4]; 68103ee2515SGreg Kroah-Hartman 682adc8d746SAlan Cox cflag = tty->termios.c_cflag; 68303ee2515SGreg Kroah-Hartman old_cflag = old_termios->c_cflag; 68403ee2515SGreg Kroah-Hartman 685adc8d746SAlan Cox if (tty->termios.c_ospeed != old_termios->c_ospeed) 686e5990874SJohan Hovold cp210x_change_speed(tty, port, old_termios); 68703ee2515SGreg Kroah-Hartman 68803ee2515SGreg Kroah-Hartman /* If the number of data bits is to be updated */ 68903ee2515SGreg Kroah-Hartman if ((cflag & CSIZE) != (old_cflag & CSIZE)) { 6904cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 69103ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 69203ee2515SGreg Kroah-Hartman switch (cflag & CSIZE) { 69303ee2515SGreg Kroah-Hartman case CS5: 69403ee2515SGreg Kroah-Hartman bits |= BITS_DATA_5; 695660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 5\n", __func__); 69603ee2515SGreg Kroah-Hartman break; 69703ee2515SGreg Kroah-Hartman case CS6: 69803ee2515SGreg Kroah-Hartman bits |= BITS_DATA_6; 699660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 6\n", __func__); 70003ee2515SGreg Kroah-Hartman break; 70103ee2515SGreg Kroah-Hartman case CS7: 70203ee2515SGreg Kroah-Hartman bits |= BITS_DATA_7; 703660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 7\n", __func__); 70403ee2515SGreg Kroah-Hartman break; 70503ee2515SGreg Kroah-Hartman case CS8: 70603ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 707660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 8\n", __func__); 70803ee2515SGreg Kroah-Hartman break; 70903ee2515SGreg Kroah-Hartman /*case CS9: 71003ee2515SGreg Kroah-Hartman bits |= BITS_DATA_9; 711660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 9\n", __func__); 71203ee2515SGreg Kroah-Hartman break;*/ 71303ee2515SGreg Kroah-Hartman default: 714660f3b14SGreg Kroah-Hartman dev_dbg(dev, "cp210x driver does not support the number of bits requested, using 8 bit mode\n"); 71503ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 71603ee2515SGreg Kroah-Hartman break; 71703ee2515SGreg Kroah-Hartman } 7184cc27bd6SCraig Shelley if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2)) 719660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Number of data bits requested not supported by device\n"); 72003ee2515SGreg Kroah-Hartman } 72103ee2515SGreg Kroah-Hartman 7224b6181caSRoland Koebler if ((cflag & (PARENB|PARODD|CMSPAR)) != 7234b6181caSRoland Koebler (old_cflag & (PARENB|PARODD|CMSPAR))) { 7244cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 72503ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 72603ee2515SGreg Kroah-Hartman if (cflag & PARENB) { 7274b6181caSRoland Koebler if (cflag & CMSPAR) { 7284b6181caSRoland Koebler if (cflag & PARODD) { 7294b6181caSRoland Koebler bits |= BITS_PARITY_MARK; 730660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = MARK\n", __func__); 7314b6181caSRoland Koebler } else { 7324b6181caSRoland Koebler bits |= BITS_PARITY_SPACE; 733660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = SPACE\n", __func__); 7344b6181caSRoland Koebler } 7354b6181caSRoland Koebler } else { 73603ee2515SGreg Kroah-Hartman if (cflag & PARODD) { 73703ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_ODD; 738660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = ODD\n", __func__); 73903ee2515SGreg Kroah-Hartman } else { 74003ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_EVEN; 741660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = EVEN\n", __func__); 74203ee2515SGreg Kroah-Hartman } 74303ee2515SGreg Kroah-Hartman } 7444b6181caSRoland Koebler } 7454cc27bd6SCraig Shelley if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2)) 746660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Parity mode not supported by device\n"); 74703ee2515SGreg Kroah-Hartman } 74803ee2515SGreg Kroah-Hartman 74903ee2515SGreg Kroah-Hartman if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { 7504cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 75103ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 75203ee2515SGreg Kroah-Hartman if (cflag & CSTOPB) { 75303ee2515SGreg Kroah-Hartman bits |= BITS_STOP_2; 754660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 2\n", __func__); 75503ee2515SGreg Kroah-Hartman } else { 75603ee2515SGreg Kroah-Hartman bits |= BITS_STOP_1; 757660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1\n", __func__); 75803ee2515SGreg Kroah-Hartman } 7594cc27bd6SCraig Shelley if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2)) 760660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Number of stop bits requested not supported by device\n"); 76103ee2515SGreg Kroah-Hartman } 76203ee2515SGreg Kroah-Hartman 76303ee2515SGreg Kroah-Hartman if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) { 7644cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_FLOW, modem_ctl, 16); 765660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - read modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x\n", 76603ee2515SGreg Kroah-Hartman __func__, modem_ctl[0], modem_ctl[1], 76703ee2515SGreg Kroah-Hartman modem_ctl[2], modem_ctl[3]); 76803ee2515SGreg Kroah-Hartman 76903ee2515SGreg Kroah-Hartman if (cflag & CRTSCTS) { 77003ee2515SGreg Kroah-Hartman modem_ctl[0] &= ~0x7B; 77103ee2515SGreg Kroah-Hartman modem_ctl[0] |= 0x09; 77203ee2515SGreg Kroah-Hartman modem_ctl[1] = 0x80; 773660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__); 77403ee2515SGreg Kroah-Hartman } else { 77503ee2515SGreg Kroah-Hartman modem_ctl[0] &= ~0x7B; 77603ee2515SGreg Kroah-Hartman modem_ctl[0] |= 0x01; 77703ee2515SGreg Kroah-Hartman modem_ctl[1] |= 0x40; 778660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = NONE\n", __func__); 77903ee2515SGreg Kroah-Hartman } 78003ee2515SGreg Kroah-Hartman 781660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - write modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x\n", 78203ee2515SGreg Kroah-Hartman __func__, modem_ctl[0], modem_ctl[1], 78303ee2515SGreg Kroah-Hartman modem_ctl[2], modem_ctl[3]); 7844cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_FLOW, modem_ctl, 16); 78503ee2515SGreg Kroah-Hartman } 78603ee2515SGreg Kroah-Hartman 78703ee2515SGreg Kroah-Hartman } 78803ee2515SGreg Kroah-Hartman 78920b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty, 79003ee2515SGreg Kroah-Hartman unsigned int set, unsigned int clear) 79103ee2515SGreg Kroah-Hartman { 79203ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 79320b9d177SAlan Cox return cp210x_tiocmset_port(port, set, clear); 794d2ad67b3SVomLehn } 795d2ad67b3SVomLehn 79620b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 797d2ad67b3SVomLehn unsigned int set, unsigned int clear) 798d2ad67b3SVomLehn { 79903ee2515SGreg Kroah-Hartman unsigned int control = 0; 80003ee2515SGreg Kroah-Hartman 80103ee2515SGreg Kroah-Hartman if (set & TIOCM_RTS) { 80203ee2515SGreg Kroah-Hartman control |= CONTROL_RTS; 80303ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 80403ee2515SGreg Kroah-Hartman } 80503ee2515SGreg Kroah-Hartman if (set & TIOCM_DTR) { 80603ee2515SGreg Kroah-Hartman control |= CONTROL_DTR; 80703ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 80803ee2515SGreg Kroah-Hartman } 80903ee2515SGreg Kroah-Hartman if (clear & TIOCM_RTS) { 81003ee2515SGreg Kroah-Hartman control &= ~CONTROL_RTS; 81103ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 81203ee2515SGreg Kroah-Hartman } 81303ee2515SGreg Kroah-Hartman if (clear & TIOCM_DTR) { 81403ee2515SGreg Kroah-Hartman control &= ~CONTROL_DTR; 81503ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 81603ee2515SGreg Kroah-Hartman } 81703ee2515SGreg Kroah-Hartman 818660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control); 81903ee2515SGreg Kroah-Hartman 8204cc27bd6SCraig Shelley return cp210x_set_config(port, CP210X_SET_MHS, &control, 2); 82103ee2515SGreg Kroah-Hartman } 82203ee2515SGreg Kroah-Hartman 823d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on) 824d94c7bd4SAlan Cox { 825d94c7bd4SAlan Cox if (on) 82620b9d177SAlan Cox cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0); 827d94c7bd4SAlan Cox else 82820b9d177SAlan Cox cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS); 829d94c7bd4SAlan Cox } 830d94c7bd4SAlan Cox 83160b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty) 83203ee2515SGreg Kroah-Hartman { 83303ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 83403ee2515SGreg Kroah-Hartman unsigned int control; 83503ee2515SGreg Kroah-Hartman int result; 83603ee2515SGreg Kroah-Hartman 8374cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_MDMSTS, &control, 1); 83803ee2515SGreg Kroah-Hartman 83903ee2515SGreg Kroah-Hartman result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0) 84003ee2515SGreg Kroah-Hartman |((control & CONTROL_RTS) ? TIOCM_RTS : 0) 84103ee2515SGreg Kroah-Hartman |((control & CONTROL_CTS) ? TIOCM_CTS : 0) 84203ee2515SGreg Kroah-Hartman |((control & CONTROL_DSR) ? TIOCM_DSR : 0) 84303ee2515SGreg Kroah-Hartman |((control & CONTROL_RING)? TIOCM_RI : 0) 84403ee2515SGreg Kroah-Hartman |((control & CONTROL_DCD) ? TIOCM_CD : 0); 84503ee2515SGreg Kroah-Hartman 846660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control); 84703ee2515SGreg Kroah-Hartman 84803ee2515SGreg Kroah-Hartman return result; 84903ee2515SGreg Kroah-Hartman } 85003ee2515SGreg Kroah-Hartman 8514cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state) 85203ee2515SGreg Kroah-Hartman { 85303ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 85403ee2515SGreg Kroah-Hartman unsigned int state; 85503ee2515SGreg Kroah-Hartman 85603ee2515SGreg Kroah-Hartman if (break_state == 0) 85703ee2515SGreg Kroah-Hartman state = BREAK_OFF; 85803ee2515SGreg Kroah-Hartman else 85903ee2515SGreg Kroah-Hartman state = BREAK_ON; 860660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - turning break %s\n", __func__, 86103ee2515SGreg Kroah-Hartman state == BREAK_OFF ? "off" : "on"); 8624cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_BREAK, &state, 2); 86303ee2515SGreg Kroah-Hartman } 86403ee2515SGreg Kroah-Hartman 8654cc27bd6SCraig Shelley static int cp210x_startup(struct usb_serial *serial) 86603ee2515SGreg Kroah-Hartman { 8674295fe77SJohan Hovold struct usb_host_interface *cur_altsetting; 8684295fe77SJohan Hovold struct cp210x_serial_private *spriv; 869a5360a53SPreston Fick 8704295fe77SJohan Hovold spriv = kzalloc(sizeof(*spriv), GFP_KERNEL); 8714295fe77SJohan Hovold if (!spriv) 872a5360a53SPreston Fick return -ENOMEM; 873a5360a53SPreston Fick 8744295fe77SJohan Hovold cur_altsetting = serial->interface->cur_altsetting; 8754295fe77SJohan Hovold spriv->bInterfaceNumber = cur_altsetting->desc.bInterfaceNumber; 876a5360a53SPreston Fick 8774295fe77SJohan Hovold usb_set_serial_data(serial, spriv); 878a5360a53SPreston Fick 87903ee2515SGreg Kroah-Hartman return 0; 88003ee2515SGreg Kroah-Hartman } 88103ee2515SGreg Kroah-Hartman 882a5360a53SPreston Fick static void cp210x_release(struct usb_serial *serial) 883a5360a53SPreston Fick { 8844295fe77SJohan Hovold struct cp210x_serial_private *spriv; 885a5360a53SPreston Fick 8864295fe77SJohan Hovold spriv = usb_get_serial_data(serial); 8874295fe77SJohan Hovold kfree(spriv); 888a5360a53SPreston Fick } 889a5360a53SPreston Fick 89068e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table); 89103ee2515SGreg Kroah-Hartman 89203ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC); 89303ee2515SGreg Kroah-Hartman MODULE_LICENSE("GPL"); 894