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> 26cf5276ceSMartyn Welch #include <linux/gpio/driver.h> 27cf5276ceSMartyn Welch #include <linux/bitops.h> 28cf5276ceSMartyn Welch #include <linux/mutex.h> 2903ee2515SGreg Kroah-Hartman 304cc27bd6SCraig Shelley #define DRIVER_DESC "Silicon Labs CP210x RS232 serial adaptor driver" 3103ee2515SGreg Kroah-Hartman 3203ee2515SGreg Kroah-Hartman /* 3303ee2515SGreg Kroah-Hartman * Function Prototypes 3403ee2515SGreg Kroah-Hartman */ 35a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *); 364cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *); 374f2ab888SJohan Hovold static void cp210x_get_termios(struct tty_struct *, struct usb_serial_port *); 384cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port, 39d2ad67b3SVomLehn unsigned int *cflagp, unsigned int *baudp); 40e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *, 41e5990874SJohan Hovold struct ktermios *); 424cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *, 4303ee2515SGreg Kroah-Hartman struct ktermios*); 446f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port); 4560b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *); 4620b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int); 4720b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 48d2ad67b3SVomLehn unsigned int, unsigned int); 494cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int); 50cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *); 51cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *); 52cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *); 53e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *); 54e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *); 55d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on); 5603ee2515SGreg Kroah-Hartman 577d40d7e8SNémeth Márton static const struct usb_device_id id_table[] = { 582f1136d1SDJ Delorie { USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */ 5903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */ 6003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 615b22a32eSA E Lawrence { USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 62b7c7cbc8SCraig Shelley { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */ 6390625070SLuiz Angelo Daros de Luca { USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */ 6403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */ 65b7c7cbc8SCraig Shelley { USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */ 66a6f03312SLennart Sorensen { USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */ 67eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */ 68eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */ 6903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */ 7003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */ 7103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */ 728de7f4daSLuis Llorente Campo { USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */ 7303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */ 7403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */ 7503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */ 76b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */ 770601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */ 780601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */ 7903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */ 8003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */ 81eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */ 82eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */ 8303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */ 8403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */ 8503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */ 86eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */ 8703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */ 885bbfa6f4SMikko Tuumanen { USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */ 8903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */ 9003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */ 9103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */ 9203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */ 9303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */ 948bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */ 9503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */ 9603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */ 97a57e82a1SSteve Conklin { USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */ 980bf7a81cSJason Detring { USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */ 9903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */ 1003fcc8f96SCraig Shelley { USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */ 101eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */ 10203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */ 10303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */ 10408e87d0dSMalte Schröder { USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */ 10503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */ 106eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */ 10703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */ 108f487c54dSPeter Dedecker { USB_DEVICE(0x10C4, 0x81D7) }, /* IAI Corp. RCB-CV-USB USB to RS485 Adaptor */ 10903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */ 11003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */ 111bd07c551SAlan Cox { USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */ 112b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */ 11303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ 11403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */ 11525985edcSLucas De Marchi { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */ 11672b30079STristan Bruns { USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */ 117c851e83fSFlorian Fainelli { USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */ 118613ac23aSJasem Mutlaq { USB_DEVICE(0x10C4, 0x82F4) }, /* Starizona MicroTouch */ 119b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */ 12003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */ 1218bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */ 12203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */ 123faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */ 1248bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */ 125faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */ 126d23bac9fSAlex Stephens { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */ 127decc5360SKyle Jones { USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */ 128541e05ecSCraig Shelley { USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */ 129613ac23aSJasem Mutlaq { USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */ 1304eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */ 1314eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */ 132356fe44fSMarkus Becker { USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */ 1334eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */ 1344eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */ 1351ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8856) }, /* CEL EM357 ZigBee USB Stick - LR */ 1361ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8857) }, /* CEL EM357 ZigBee USB Stick */ 13776811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */ 13876811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */ 139bfc2d7dfSJoe Savage { USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */ 1401ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8977) }, /* CEL MeshWorks DevKit Device */ 141c735ed74SMark Edwards { USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */ 142df72d588SJohn D. Blair { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */ 14303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ 14403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ 145a5360a53SPreston Fick { USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */ 146eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */ 14703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */ 14803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */ 14903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */ 15003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */ 15103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */ 152b7c7cbc8SCraig Shelley { USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */ 1531d377f4dSMike Manning { USB_DEVICE(0x12B8, 0xEC60) }, /* Link G4 ECU */ 1541d377f4dSMike Manning { USB_DEVICE(0x12B8, 0xEC62) }, /* Link G4+ ECU */ 15503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */ 156b7c7cbc8SCraig Shelley { USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */ 1573fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */ 1583fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */ 15903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */ 1603fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */ 1613fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */ 1623fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */ 1633fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */ 164675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */ 165675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */ 16603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */ 167356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */ 168356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */ 169356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */ 170356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */ 171c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */ 172c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */ 173541e05ecSCraig Shelley { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */ 174541e05ecSCraig Shelley { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ 175541e05ecSCraig Shelley { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ 176f7d7f59aSOliver Freyermuth { USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */ 1776627ae19SKen Lin { USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */ 1786627ae19SKen Lin { USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */ 179cddc9434SMartyn Welch { USB_DEVICE(0x1901, 0x0194) }, /* GE Healthcare Remote Alarm Box */ 1803c4c615dSVittorio Alfieri { USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */ 181b579fa52SBarry Grussling { USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */ 182b9326057SAndras Kovacs { USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */ 18335cc83eaSNathaniel Ting { USB_DEVICE(0x1BA4, 0x0002) }, /* Silicon Labs 358x factory default */ 18493ad03d6SAnders Larsen { USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */ 185dee80ad1SAndreas Bomholtz { USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */ 1863fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */ 1873fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */ 188be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */ 189be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */ 190be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */ 191be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */ 192be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */ 193be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */ 194be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */ 195be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */ 196be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */ 197be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */ 198be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */ 199be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */ 200be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */ 201be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */ 202be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */ 203be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */ 204be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */ 205be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */ 206be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */ 207f98a7aa8SPeter Sanford { USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */ 208791b7d7cSRenato Caldas { USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */ 2093fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */ 2103fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */ 211541e05ecSCraig Shelley { USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */ 21203ee2515SGreg Kroah-Hartman { } /* Terminating Entry */ 21303ee2515SGreg Kroah-Hartman }; 21403ee2515SGreg Kroah-Hartman 21503ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table); 21603ee2515SGreg Kroah-Hartman 217cf5276ceSMartyn Welch struct cp210x_serial_private { 218cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 219cf5276ceSMartyn Welch struct gpio_chip gc; 220cf5276ceSMartyn Welch u8 config; 221cf5276ceSMartyn Welch u8 gpio_mode; 222*6b7271d2SJohan Hovold bool gpio_registered; 223cf5276ceSMartyn Welch #endif 224cf5276ceSMartyn Welch u8 partnum; 225cf5276ceSMartyn Welch }; 226cf5276ceSMartyn Welch 227e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private { 228a5360a53SPreston Fick __u8 bInterfaceNumber; 229d0bf1ff0SKonstantin Shkolnyy bool has_swapped_line_ctl; 230a5360a53SPreston Fick }; 231a5360a53SPreston Fick 2324cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = { 23303ee2515SGreg Kroah-Hartman .driver = { 23403ee2515SGreg Kroah-Hartman .owner = THIS_MODULE, 2354cc27bd6SCraig Shelley .name = "cp210x", 23603ee2515SGreg Kroah-Hartman }, 23703ee2515SGreg Kroah-Hartman .id_table = id_table, 23803ee2515SGreg Kroah-Hartman .num_ports = 1, 239aea006b9SJohan Hovold .bulk_in_size = 256, 240d4e598f6SJohan Hovold .bulk_out_size = 256, 2414cc27bd6SCraig Shelley .open = cp210x_open, 2424cc27bd6SCraig Shelley .close = cp210x_close, 2434cc27bd6SCraig Shelley .break_ctl = cp210x_break_ctl, 2444cc27bd6SCraig Shelley .set_termios = cp210x_set_termios, 2456f923a01SKonstantin Shkolnyy .tx_empty = cp210x_tx_empty, 2464cc27bd6SCraig Shelley .tiocmget = cp210x_tiocmget, 2474cc27bd6SCraig Shelley .tiocmset = cp210x_tiocmset, 248cf5276ceSMartyn Welch .attach = cp210x_attach, 249cf5276ceSMartyn Welch .disconnect = cp210x_disconnect, 250cf5276ceSMartyn Welch .release = cp210x_release, 251e2ae67a3SKonstantin Shkolnyy .port_probe = cp210x_port_probe, 252e2ae67a3SKonstantin Shkolnyy .port_remove = cp210x_port_remove, 253d14fc1a7SLibor Pechacek .dtr_rts = cp210x_dtr_rts 25403ee2515SGreg Kroah-Hartman }; 25503ee2515SGreg Kroah-Hartman 25608a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = { 25708a4f6bcSAlan Stern &cp210x_device, NULL 25808a4f6bcSAlan Stern }; 25908a4f6bcSAlan Stern 26003ee2515SGreg Kroah-Hartman /* Config request types */ 26132445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE 0x41 26232445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST 0xc1 26332445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE 0x40 26432445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST 0xc0 26503ee2515SGreg Kroah-Hartman 26693ef1f1fSCraig Shelley /* Config request codes */ 26793ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE 0x00 26893ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV 0x01 26993ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV 0x02 27093ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL 0x03 27193ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL 0x04 27293ef1f1fSCraig Shelley #define CP210X_SET_BREAK 0x05 27393ef1f1fSCraig Shelley #define CP210X_IMM_CHAR 0x06 27493ef1f1fSCraig Shelley #define CP210X_SET_MHS 0x07 27593ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS 0x08 27693ef1f1fSCraig Shelley #define CP210X_SET_XON 0x09 27793ef1f1fSCraig Shelley #define CP210X_SET_XOFF 0x0A 27893ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK 0x0B 27993ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK 0x0C 28093ef1f1fSCraig Shelley #define CP210X_SET_CHAR 0x0D 28193ef1f1fSCraig Shelley #define CP210X_GET_CHARS 0x0E 28293ef1f1fSCraig Shelley #define CP210X_GET_PROPS 0x0F 28393ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS 0x10 28493ef1f1fSCraig Shelley #define CP210X_RESET 0x11 28593ef1f1fSCraig Shelley #define CP210X_PURGE 0x12 28693ef1f1fSCraig Shelley #define CP210X_SET_FLOW 0x13 28793ef1f1fSCraig Shelley #define CP210X_GET_FLOW 0x14 28893ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS 0x15 28993ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE 0x16 29093ef1f1fSCraig Shelley #define CP210X_SET_CHARS 0x19 2917f482fc8SPreston Fick #define CP210X_GET_BAUDRATE 0x1D 2927f482fc8SPreston Fick #define CP210X_SET_BAUDRATE 0x1E 293cf5276ceSMartyn Welch #define CP210X_VENDOR_SPECIFIC 0xFF 29403ee2515SGreg Kroah-Hartman 29593ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */ 29603ee2515SGreg Kroah-Hartman #define UART_ENABLE 0x0001 29703ee2515SGreg Kroah-Hartman #define UART_DISABLE 0x0000 29803ee2515SGreg Kroah-Hartman 29993ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */ 30003ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ 0x384000 30103ee2515SGreg Kroah-Hartman 30293ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */ 30303ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK 0X0f00 30403ee2515SGreg Kroah-Hartman #define BITS_DATA_5 0X0500 30503ee2515SGreg Kroah-Hartman #define BITS_DATA_6 0X0600 30603ee2515SGreg Kroah-Hartman #define BITS_DATA_7 0X0700 30703ee2515SGreg Kroah-Hartman #define BITS_DATA_8 0X0800 30803ee2515SGreg Kroah-Hartman #define BITS_DATA_9 0X0900 30903ee2515SGreg Kroah-Hartman 31003ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK 0x00f0 31103ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE 0x0000 31203ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD 0x0010 31303ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN 0x0020 31403ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK 0x0030 31503ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE 0x0040 31603ee2515SGreg Kroah-Hartman 31703ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK 0x000f 31803ee2515SGreg Kroah-Hartman #define BITS_STOP_1 0x0000 31903ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5 0x0001 32003ee2515SGreg Kroah-Hartman #define BITS_STOP_2 0x0002 32103ee2515SGreg Kroah-Hartman 32293ef1f1fSCraig Shelley /* CP210X_SET_BREAK */ 32372916791SCraig Shelley #define BREAK_ON 0x0001 32472916791SCraig Shelley #define BREAK_OFF 0x0000 32503ee2515SGreg Kroah-Hartman 32693ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */ 32703ee2515SGreg Kroah-Hartman #define CONTROL_DTR 0x0001 32803ee2515SGreg Kroah-Hartman #define CONTROL_RTS 0x0002 32903ee2515SGreg Kroah-Hartman #define CONTROL_CTS 0x0010 33003ee2515SGreg Kroah-Hartman #define CONTROL_DSR 0x0020 33103ee2515SGreg Kroah-Hartman #define CONTROL_RING 0x0040 33203ee2515SGreg Kroah-Hartman #define CONTROL_DCD 0x0080 33303ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR 0x0100 33403ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS 0x0200 33503ee2515SGreg Kroah-Hartman 336cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC values */ 337cf5276ceSMartyn Welch #define CP210X_READ_LATCH 0x00C2 338cf5276ceSMartyn Welch #define CP210X_GET_PARTNUM 0x370B 339cf5276ceSMartyn Welch #define CP210X_GET_PORTCONFIG 0x370C 340cf5276ceSMartyn Welch #define CP210X_GET_DEVICEMODE 0x3711 341cf5276ceSMartyn Welch #define CP210X_WRITE_LATCH 0x37E1 342cf5276ceSMartyn Welch 343cf5276ceSMartyn Welch /* Part number definitions */ 344cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2101 0x01 345cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2102 0x02 346cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2103 0x03 347cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2104 0x04 348cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2105 0x05 349cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2108 0x08 350cf5276ceSMartyn Welch 3516f923a01SKonstantin Shkolnyy /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */ 3526f923a01SKonstantin Shkolnyy struct cp210x_comm_status { 3536f923a01SKonstantin Shkolnyy __le32 ulErrors; 3546f923a01SKonstantin Shkolnyy __le32 ulHoldReasons; 3556f923a01SKonstantin Shkolnyy __le32 ulAmountInInQueue; 3566f923a01SKonstantin Shkolnyy __le32 ulAmountInOutQueue; 3576f923a01SKonstantin Shkolnyy u8 bEofReceived; 3586f923a01SKonstantin Shkolnyy u8 bWaitForImmediate; 3596f923a01SKonstantin Shkolnyy u8 bReserved; 3606f923a01SKonstantin Shkolnyy } __packed; 3616f923a01SKonstantin Shkolnyy 36203ee2515SGreg Kroah-Hartman /* 363ebfb319bSKonstantin Shkolnyy * CP210X_PURGE - 16 bits passed in wValue of USB request. 364ebfb319bSKonstantin Shkolnyy * SiLabs app note AN571 gives a strange description of the 4 bits: 365ebfb319bSKonstantin Shkolnyy * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive. 366ebfb319bSKonstantin Shkolnyy * writing 1 to all, however, purges cp2108 well enough to avoid the hang. 367ebfb319bSKonstantin Shkolnyy */ 368ebfb319bSKonstantin Shkolnyy #define PURGE_ALL 0x000f 369ebfb319bSKonstantin Shkolnyy 3709034389cSKonstantin Shkolnyy /* CP210X_GET_FLOW/CP210X_SET_FLOW read/write these 0x10 bytes */ 3719034389cSKonstantin Shkolnyy struct cp210x_flow_ctl { 3729034389cSKonstantin Shkolnyy __le32 ulControlHandshake; 3739034389cSKonstantin Shkolnyy __le32 ulFlowReplace; 3749034389cSKonstantin Shkolnyy __le32 ulXonLimit; 3759034389cSKonstantin Shkolnyy __le32 ulXoffLimit; 3769034389cSKonstantin Shkolnyy } __packed; 3779034389cSKonstantin Shkolnyy 3789034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulControlHandshake */ 3799034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_MASK GENMASK(1, 0) 3809034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_SHIFT(_mode) (_mode) 3819034389cSKonstantin Shkolnyy #define CP210X_SERIAL_CTS_HANDSHAKE BIT(3) 3829034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_HANDSHAKE BIT(4) 3839034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DCD_HANDSHAKE BIT(5) 3849034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_SENSITIVITY BIT(6) 3859034389cSKonstantin Shkolnyy 3869034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulControlHandshake::CP210X_SERIAL_DTR_MASK */ 3879034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_INACTIVE 0 3889034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_ACTIVE 1 3899034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_FLOW_CTL 2 3909034389cSKonstantin Shkolnyy 3919034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulFlowReplace */ 3929034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_TRANSMIT BIT(0) 3939034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_RECEIVE BIT(1) 3949034389cSKonstantin Shkolnyy #define CP210X_SERIAL_ERROR_CHAR BIT(2) 3959034389cSKonstantin Shkolnyy #define CP210X_SERIAL_NULL_STRIPPING BIT(3) 3969034389cSKonstantin Shkolnyy #define CP210X_SERIAL_BREAK_CHAR BIT(4) 3979034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_MASK GENMASK(7, 6) 3989034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_SHIFT(_mode) (_mode << 6) 3999034389cSKonstantin Shkolnyy #define CP210X_SERIAL_XOFF_CONTINUE BIT(31) 4009034389cSKonstantin Shkolnyy 4019034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulFlowReplace::CP210X_SERIAL_RTS_MASK */ 4029034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_INACTIVE 0 4039034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_ACTIVE 1 4049034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_FLOW_CTL 2 4059034389cSKonstantin Shkolnyy 406cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_GET_DEVICEMODE call reads these 0x2 bytes. */ 407cf5276ceSMartyn Welch struct cp210x_pin_mode { 408cf5276ceSMartyn Welch u8 eci; 409cf5276ceSMartyn Welch u8 sci; 410cf5276ceSMartyn Welch } __packed; 411cf5276ceSMartyn Welch 412cf5276ceSMartyn Welch #define CP210X_PIN_MODE_MODEM 0 413cf5276ceSMartyn Welch #define CP210X_PIN_MODE_GPIO BIT(0) 414cf5276ceSMartyn Welch 415cf5276ceSMartyn Welch /* 416cf5276ceSMartyn Welch * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xf bytes. 417cf5276ceSMartyn Welch * Structure needs padding due to unused/unspecified bytes. 418cf5276ceSMartyn Welch */ 419cf5276ceSMartyn Welch struct cp210x_config { 420cf5276ceSMartyn Welch __le16 gpio_mode; 421cf5276ceSMartyn Welch u8 __pad0[2]; 422cf5276ceSMartyn Welch __le16 reset_state; 423cf5276ceSMartyn Welch u8 __pad1[4]; 424cf5276ceSMartyn Welch __le16 suspend_state; 425cf5276ceSMartyn Welch u8 sci_cfg; 426cf5276ceSMartyn Welch u8 eci_cfg; 427cf5276ceSMartyn Welch u8 device_cfg; 428cf5276ceSMartyn Welch } __packed; 429cf5276ceSMartyn Welch 430cf5276ceSMartyn Welch /* GPIO modes */ 431cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_OFFSET 9 432cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_MASK GENMASK(11, 9) 433cf5276ceSMartyn Welch 434cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_OFFSET 2 435cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_MASK GENMASK(3, 2) 436cf5276ceSMartyn Welch 437cf5276ceSMartyn Welch /* CP2105 port configuration values */ 438cf5276ceSMartyn Welch #define CP2105_GPIO0_TXLED_MODE BIT(0) 439cf5276ceSMartyn Welch #define CP2105_GPIO1_RXLED_MODE BIT(1) 440cf5276ceSMartyn Welch #define CP2105_GPIO1_RS485_MODE BIT(2) 441cf5276ceSMartyn Welch 442cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x2 bytes. */ 443cf5276ceSMartyn Welch struct cp210x_gpio_write { 444cf5276ceSMartyn Welch u8 mask; 445cf5276ceSMartyn Welch u8 state; 446cf5276ceSMartyn Welch } __packed; 447cf5276ceSMartyn Welch 448cf5276ceSMartyn Welch /* 449cf5276ceSMartyn Welch * Helper to get interface number when we only have struct usb_serial. 450cf5276ceSMartyn Welch */ 451cf5276ceSMartyn Welch static u8 cp210x_interface_num(struct usb_serial *serial) 452cf5276ceSMartyn Welch { 453cf5276ceSMartyn Welch struct usb_host_interface *cur_altsetting; 454cf5276ceSMartyn Welch 455cf5276ceSMartyn Welch cur_altsetting = serial->interface->cur_altsetting; 456cf5276ceSMartyn Welch 457cf5276ceSMartyn Welch return cur_altsetting->desc.bInterfaceNumber; 458cf5276ceSMartyn Welch } 459cf5276ceSMartyn Welch 46003ee2515SGreg Kroah-Hartman /* 46119165b2bSKonstantin Shkolnyy * Reads a variable-sized block of CP210X_ registers, identified by req. 46219165b2bSKonstantin Shkolnyy * Returns data into buf in native USB byte order. 46303ee2515SGreg Kroah-Hartman */ 46419165b2bSKonstantin Shkolnyy static int cp210x_read_reg_block(struct usb_serial_port *port, u8 req, 46519165b2bSKonstantin Shkolnyy void *buf, int bufsize) 46603ee2515SGreg Kroah-Hartman { 46703ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 468e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 46919165b2bSKonstantin Shkolnyy void *dmabuf; 47019165b2bSKonstantin Shkolnyy int result; 47103ee2515SGreg Kroah-Hartman 47219165b2bSKonstantin Shkolnyy dmabuf = kmalloc(bufsize, GFP_KERNEL); 47319165b2bSKonstantin Shkolnyy if (!dmabuf) { 47419165b2bSKonstantin Shkolnyy /* 47519165b2bSKonstantin Shkolnyy * FIXME Some callers don't bother to check for error, 47619165b2bSKonstantin Shkolnyy * at least give them consistent junk until they are fixed 47719165b2bSKonstantin Shkolnyy */ 47819165b2bSKonstantin Shkolnyy memset(buf, 0, bufsize); 47903ee2515SGreg Kroah-Hartman return -ENOMEM; 48019165b2bSKonstantin Shkolnyy } 48103ee2515SGreg Kroah-Hartman 48203ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 48319165b2bSKonstantin Shkolnyy req, REQTYPE_INTERFACE_TO_HOST, 0, 48419165b2bSKonstantin Shkolnyy port_priv->bInterfaceNumber, dmabuf, bufsize, 48519165b2bSKonstantin Shkolnyy USB_CTRL_SET_TIMEOUT); 48619165b2bSKonstantin Shkolnyy if (result == bufsize) { 48719165b2bSKonstantin Shkolnyy memcpy(buf, dmabuf, bufsize); 48819165b2bSKonstantin Shkolnyy result = 0; 48919165b2bSKonstantin Shkolnyy } else { 49019165b2bSKonstantin Shkolnyy dev_err(&port->dev, "failed get req 0x%x size %d status: %d\n", 49119165b2bSKonstantin Shkolnyy req, bufsize, result); 49219165b2bSKonstantin Shkolnyy if (result >= 0) 4930407f1ceSJohan Hovold result = -EIO; 4942479e2a9SJohan Hovold 49519165b2bSKonstantin Shkolnyy /* 49619165b2bSKonstantin Shkolnyy * FIXME Some callers don't bother to check for error, 49719165b2bSKonstantin Shkolnyy * at least give them consistent junk until they are fixed 49819165b2bSKonstantin Shkolnyy */ 49919165b2bSKonstantin Shkolnyy memset(buf, 0, bufsize); 50019165b2bSKonstantin Shkolnyy } 50119165b2bSKonstantin Shkolnyy 50219165b2bSKonstantin Shkolnyy kfree(dmabuf); 50319165b2bSKonstantin Shkolnyy 5042479e2a9SJohan Hovold return result; 50503ee2515SGreg Kroah-Hartman } 50603ee2515SGreg Kroah-Hartman 50719165b2bSKonstantin Shkolnyy /* 508fe1b07e9SKonstantin Shkolnyy * Reads any 32-bit CP210X_ register identified by req. 509fe1b07e9SKonstantin Shkolnyy */ 510fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u32_reg(struct usb_serial_port *port, u8 req, u32 *val) 511fe1b07e9SKonstantin Shkolnyy { 512fe1b07e9SKonstantin Shkolnyy __le32 le32_val; 513fe1b07e9SKonstantin Shkolnyy int err; 514fe1b07e9SKonstantin Shkolnyy 515fe1b07e9SKonstantin Shkolnyy err = cp210x_read_reg_block(port, req, &le32_val, sizeof(le32_val)); 516fe1b07e9SKonstantin Shkolnyy if (err) { 517fe1b07e9SKonstantin Shkolnyy /* 518fe1b07e9SKonstantin Shkolnyy * FIXME Some callers don't bother to check for error, 519fe1b07e9SKonstantin Shkolnyy * at least give them consistent junk until they are fixed 520fe1b07e9SKonstantin Shkolnyy */ 521fe1b07e9SKonstantin Shkolnyy *val = 0; 522fe1b07e9SKonstantin Shkolnyy return err; 523fe1b07e9SKonstantin Shkolnyy } 524fe1b07e9SKonstantin Shkolnyy 525fe1b07e9SKonstantin Shkolnyy *val = le32_to_cpu(le32_val); 526fe1b07e9SKonstantin Shkolnyy 52703ee2515SGreg Kroah-Hartman return 0; 52803ee2515SGreg Kroah-Hartman } 52903ee2515SGreg Kroah-Hartman 53003ee2515SGreg Kroah-Hartman /* 53119165b2bSKonstantin Shkolnyy * Reads any 16-bit CP210X_ register identified by req. 53203ee2515SGreg Kroah-Hartman */ 53319165b2bSKonstantin Shkolnyy static int cp210x_read_u16_reg(struct usb_serial_port *port, u8 req, u16 *val) 53419165b2bSKonstantin Shkolnyy { 53519165b2bSKonstantin Shkolnyy __le16 le16_val; 53619165b2bSKonstantin Shkolnyy int err; 53719165b2bSKonstantin Shkolnyy 53819165b2bSKonstantin Shkolnyy err = cp210x_read_reg_block(port, req, &le16_val, sizeof(le16_val)); 53919165b2bSKonstantin Shkolnyy if (err) 54019165b2bSKonstantin Shkolnyy return err; 54119165b2bSKonstantin Shkolnyy 54219165b2bSKonstantin Shkolnyy *val = le16_to_cpu(le16_val); 543fe1b07e9SKonstantin Shkolnyy 54419165b2bSKonstantin Shkolnyy return 0; 54519165b2bSKonstantin Shkolnyy } 54619165b2bSKonstantin Shkolnyy 54719165b2bSKonstantin Shkolnyy /* 548fe1b07e9SKonstantin Shkolnyy * Reads any 8-bit CP210X_ register identified by req. 549fe1b07e9SKonstantin Shkolnyy */ 550fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u8_reg(struct usb_serial_port *port, u8 req, u8 *val) 551fe1b07e9SKonstantin Shkolnyy { 552fe1b07e9SKonstantin Shkolnyy return cp210x_read_reg_block(port, req, val, sizeof(*val)); 553fe1b07e9SKonstantin Shkolnyy } 554fe1b07e9SKonstantin Shkolnyy 555fe1b07e9SKonstantin Shkolnyy /* 556cf5276ceSMartyn Welch * Reads a variable-sized vendor block of CP210X_ registers, identified by val. 557cf5276ceSMartyn Welch * Returns data into buf in native USB byte order. 558cf5276ceSMartyn Welch */ 559cf5276ceSMartyn Welch static int cp210x_read_vendor_block(struct usb_serial *serial, u8 type, u16 val, 560cf5276ceSMartyn Welch void *buf, int bufsize) 561cf5276ceSMartyn Welch { 562cf5276ceSMartyn Welch void *dmabuf; 563cf5276ceSMartyn Welch int result; 564cf5276ceSMartyn Welch 565cf5276ceSMartyn Welch dmabuf = kmalloc(bufsize, GFP_KERNEL); 566cf5276ceSMartyn Welch if (!dmabuf) 567cf5276ceSMartyn Welch return -ENOMEM; 568cf5276ceSMartyn Welch 569cf5276ceSMartyn Welch result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 570cf5276ceSMartyn Welch CP210X_VENDOR_SPECIFIC, type, val, 571cf5276ceSMartyn Welch cp210x_interface_num(serial), dmabuf, bufsize, 572cf5276ceSMartyn Welch USB_CTRL_GET_TIMEOUT); 573cf5276ceSMartyn Welch if (result == bufsize) { 574cf5276ceSMartyn Welch memcpy(buf, dmabuf, bufsize); 575cf5276ceSMartyn Welch result = 0; 576cf5276ceSMartyn Welch } else { 577cf5276ceSMartyn Welch dev_err(&serial->interface->dev, 578cf5276ceSMartyn Welch "failed to get vendor val 0x%04x size %d: %d\n", val, 579cf5276ceSMartyn Welch bufsize, result); 580cf5276ceSMartyn Welch if (result >= 0) 581cf5276ceSMartyn Welch result = -EIO; 582cf5276ceSMartyn Welch } 583cf5276ceSMartyn Welch 584cf5276ceSMartyn Welch kfree(dmabuf); 585cf5276ceSMartyn Welch 586cf5276ceSMartyn Welch return result; 587cf5276ceSMartyn Welch } 588cf5276ceSMartyn Welch 589cf5276ceSMartyn Welch /* 59019165b2bSKonstantin Shkolnyy * Writes any 16-bit CP210X_ register (req) whose value is passed 59119165b2bSKonstantin Shkolnyy * entirely in the wValue field of the USB request. 59219165b2bSKonstantin Shkolnyy */ 59319165b2bSKonstantin Shkolnyy static int cp210x_write_u16_reg(struct usb_serial_port *port, u8 req, u16 val) 59403ee2515SGreg Kroah-Hartman { 59503ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 596e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 59719165b2bSKonstantin Shkolnyy int result; 59803ee2515SGreg Kroah-Hartman 59919165b2bSKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 60019165b2bSKonstantin Shkolnyy req, REQTYPE_HOST_TO_INTERFACE, val, 601e2ae67a3SKonstantin Shkolnyy port_priv->bInterfaceNumber, NULL, 0, 6022d5733fcSYuri Matylitski USB_CTRL_SET_TIMEOUT); 60319165b2bSKonstantin Shkolnyy if (result < 0) { 60419165b2bSKonstantin Shkolnyy dev_err(&port->dev, "failed set request 0x%x status: %d\n", 60519165b2bSKonstantin Shkolnyy req, result); 60603ee2515SGreg Kroah-Hartman } 60703ee2515SGreg Kroah-Hartman 6082479e2a9SJohan Hovold return result; 60903ee2515SGreg Kroah-Hartman } 61003ee2515SGreg Kroah-Hartman 61103ee2515SGreg Kroah-Hartman /* 612fe1b07e9SKonstantin Shkolnyy * Writes a variable-sized block of CP210X_ registers, identified by req. 613fe1b07e9SKonstantin Shkolnyy * Data in buf must be in native USB byte order. 614fe1b07e9SKonstantin Shkolnyy */ 615fe1b07e9SKonstantin Shkolnyy static int cp210x_write_reg_block(struct usb_serial_port *port, u8 req, 616fe1b07e9SKonstantin Shkolnyy void *buf, int bufsize) 617fe1b07e9SKonstantin Shkolnyy { 618fe1b07e9SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 619fe1b07e9SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 620fe1b07e9SKonstantin Shkolnyy void *dmabuf; 621fe1b07e9SKonstantin Shkolnyy int result; 622fe1b07e9SKonstantin Shkolnyy 623d6c4dc3bSMuhammad Falak R Wani dmabuf = kmemdup(buf, bufsize, GFP_KERNEL); 624fe1b07e9SKonstantin Shkolnyy if (!dmabuf) 625fe1b07e9SKonstantin Shkolnyy return -ENOMEM; 626fe1b07e9SKonstantin Shkolnyy 627fe1b07e9SKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 628fe1b07e9SKonstantin Shkolnyy req, REQTYPE_HOST_TO_INTERFACE, 0, 629fe1b07e9SKonstantin Shkolnyy port_priv->bInterfaceNumber, dmabuf, bufsize, 630fe1b07e9SKonstantin Shkolnyy USB_CTRL_SET_TIMEOUT); 631fe1b07e9SKonstantin Shkolnyy 632fe1b07e9SKonstantin Shkolnyy kfree(dmabuf); 633fe1b07e9SKonstantin Shkolnyy 634fe1b07e9SKonstantin Shkolnyy if (result == bufsize) { 635fe1b07e9SKonstantin Shkolnyy result = 0; 636fe1b07e9SKonstantin Shkolnyy } else { 637fe1b07e9SKonstantin Shkolnyy dev_err(&port->dev, "failed set req 0x%x size %d status: %d\n", 638fe1b07e9SKonstantin Shkolnyy req, bufsize, result); 639fe1b07e9SKonstantin Shkolnyy if (result >= 0) 6400407f1ceSJohan Hovold result = -EIO; 641fe1b07e9SKonstantin Shkolnyy } 642fe1b07e9SKonstantin Shkolnyy 643fe1b07e9SKonstantin Shkolnyy return result; 64403ee2515SGreg Kroah-Hartman } 64503ee2515SGreg Kroah-Hartman 64603ee2515SGreg Kroah-Hartman /* 647fe1b07e9SKonstantin Shkolnyy * Writes any 32-bit CP210X_ register identified by req. 64803ee2515SGreg Kroah-Hartman */ 649fe1b07e9SKonstantin Shkolnyy static int cp210x_write_u32_reg(struct usb_serial_port *port, u8 req, u32 val) 65003ee2515SGreg Kroah-Hartman { 651fe1b07e9SKonstantin Shkolnyy __le32 le32_val; 652fe1b07e9SKonstantin Shkolnyy 653fe1b07e9SKonstantin Shkolnyy le32_val = cpu_to_le32(val); 654fe1b07e9SKonstantin Shkolnyy 655fe1b07e9SKonstantin Shkolnyy return cp210x_write_reg_block(port, req, &le32_val, sizeof(le32_val)); 65603ee2515SGreg Kroah-Hartman } 65703ee2515SGreg Kroah-Hartman 658cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 659cf5276ceSMartyn Welch /* 660cf5276ceSMartyn Welch * Writes a variable-sized vendor block of CP210X_ registers, identified by val. 661cf5276ceSMartyn Welch * Data in buf must be in native USB byte order. 662cf5276ceSMartyn Welch */ 663cf5276ceSMartyn Welch static int cp210x_write_vendor_block(struct usb_serial *serial, u8 type, 664cf5276ceSMartyn Welch u16 val, void *buf, int bufsize) 665cf5276ceSMartyn Welch { 666cf5276ceSMartyn Welch void *dmabuf; 667cf5276ceSMartyn Welch int result; 668cf5276ceSMartyn Welch 669cf5276ceSMartyn Welch dmabuf = kmemdup(buf, bufsize, GFP_KERNEL); 670cf5276ceSMartyn Welch if (!dmabuf) 671cf5276ceSMartyn Welch return -ENOMEM; 672cf5276ceSMartyn Welch 673cf5276ceSMartyn Welch result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 674cf5276ceSMartyn Welch CP210X_VENDOR_SPECIFIC, type, val, 675cf5276ceSMartyn Welch cp210x_interface_num(serial), dmabuf, bufsize, 676cf5276ceSMartyn Welch USB_CTRL_SET_TIMEOUT); 677cf5276ceSMartyn Welch 678cf5276ceSMartyn Welch kfree(dmabuf); 679cf5276ceSMartyn Welch 680cf5276ceSMartyn Welch if (result == bufsize) { 681cf5276ceSMartyn Welch result = 0; 682cf5276ceSMartyn Welch } else { 683cf5276ceSMartyn Welch dev_err(&serial->interface->dev, 684cf5276ceSMartyn Welch "failed to set vendor val 0x%04x size %d: %d\n", val, 685cf5276ceSMartyn Welch bufsize, result); 686cf5276ceSMartyn Welch if (result >= 0) 687cf5276ceSMartyn Welch result = -EIO; 688cf5276ceSMartyn Welch } 689cf5276ceSMartyn Welch 690cf5276ceSMartyn Welch return result; 691cf5276ceSMartyn Welch } 692cf5276ceSMartyn Welch #endif 693cf5276ceSMartyn Welch 69403ee2515SGreg Kroah-Hartman /* 695d0bf1ff0SKonstantin Shkolnyy * Detect CP2108 GET_LINE_CTL bug and activate workaround. 696d0bf1ff0SKonstantin Shkolnyy * Write a known good value 0x800, read it back. 697d0bf1ff0SKonstantin Shkolnyy * If it comes back swapped the bug is detected. 698d0bf1ff0SKonstantin Shkolnyy * Preserve the original register value. 699d0bf1ff0SKonstantin Shkolnyy */ 700d0bf1ff0SKonstantin Shkolnyy static int cp210x_detect_swapped_line_ctl(struct usb_serial_port *port) 701d0bf1ff0SKonstantin Shkolnyy { 702d0bf1ff0SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 70319165b2bSKonstantin Shkolnyy u16 line_ctl_save; 70419165b2bSKonstantin Shkolnyy u16 line_ctl_test; 705d0bf1ff0SKonstantin Shkolnyy int err; 706d0bf1ff0SKonstantin Shkolnyy 70719165b2bSKonstantin Shkolnyy err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_save); 708d0bf1ff0SKonstantin Shkolnyy if (err) 709d0bf1ff0SKonstantin Shkolnyy return err; 710d0bf1ff0SKonstantin Shkolnyy 71119165b2bSKonstantin Shkolnyy err = cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, 0x800); 712d0bf1ff0SKonstantin Shkolnyy if (err) 713d0bf1ff0SKonstantin Shkolnyy return err; 714d0bf1ff0SKonstantin Shkolnyy 71519165b2bSKonstantin Shkolnyy err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_test); 716d0bf1ff0SKonstantin Shkolnyy if (err) 717d0bf1ff0SKonstantin Shkolnyy return err; 718d0bf1ff0SKonstantin Shkolnyy 719d0bf1ff0SKonstantin Shkolnyy if (line_ctl_test == 8) { 720d0bf1ff0SKonstantin Shkolnyy port_priv->has_swapped_line_ctl = true; 72119165b2bSKonstantin Shkolnyy line_ctl_save = swab16(line_ctl_save); 722d0bf1ff0SKonstantin Shkolnyy } 723d0bf1ff0SKonstantin Shkolnyy 72419165b2bSKonstantin Shkolnyy return cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, line_ctl_save); 725d0bf1ff0SKonstantin Shkolnyy } 726d0bf1ff0SKonstantin Shkolnyy 727d0bf1ff0SKonstantin Shkolnyy /* 72819165b2bSKonstantin Shkolnyy * Must always be called instead of cp210x_read_u16_reg(CP210X_GET_LINE_CTL) 729d0bf1ff0SKonstantin Shkolnyy * to workaround cp2108 bug and get correct value. 730d0bf1ff0SKonstantin Shkolnyy */ 73119165b2bSKonstantin Shkolnyy static int cp210x_get_line_ctl(struct usb_serial_port *port, u16 *ctl) 732d0bf1ff0SKonstantin Shkolnyy { 733d0bf1ff0SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 734d0bf1ff0SKonstantin Shkolnyy int err; 735d0bf1ff0SKonstantin Shkolnyy 73619165b2bSKonstantin Shkolnyy err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, ctl); 737d0bf1ff0SKonstantin Shkolnyy if (err) 738d0bf1ff0SKonstantin Shkolnyy return err; 739d0bf1ff0SKonstantin Shkolnyy 740d0bf1ff0SKonstantin Shkolnyy /* Workaround swapped bytes in 16-bit value from CP210X_GET_LINE_CTL */ 741d0bf1ff0SKonstantin Shkolnyy if (port_priv->has_swapped_line_ctl) 74219165b2bSKonstantin Shkolnyy *ctl = swab16(*ctl); 743d0bf1ff0SKonstantin Shkolnyy 744d0bf1ff0SKonstantin Shkolnyy return 0; 745d0bf1ff0SKonstantin Shkolnyy } 746d0bf1ff0SKonstantin Shkolnyy 747d0bf1ff0SKonstantin Shkolnyy /* 7484cc27bd6SCraig Shelley * cp210x_quantise_baudrate 74903ee2515SGreg Kroah-Hartman * Quantises the baud rate as per AN205 Table 1 75003ee2515SGreg Kroah-Hartman */ 7514f2ab888SJohan Hovold static unsigned int cp210x_quantise_baudrate(unsigned int baud) 7524f2ab888SJohan Hovold { 753be125d9cSJohan Hovold if (baud <= 300) 754be125d9cSJohan Hovold baud = 300; 75503ee2515SGreg Kroah-Hartman else if (baud <= 600) baud = 600; 75603ee2515SGreg Kroah-Hartman else if (baud <= 1200) baud = 1200; 75703ee2515SGreg Kroah-Hartman else if (baud <= 1800) baud = 1800; 75803ee2515SGreg Kroah-Hartman else if (baud <= 2400) baud = 2400; 75903ee2515SGreg Kroah-Hartman else if (baud <= 4000) baud = 4000; 76003ee2515SGreg Kroah-Hartman else if (baud <= 4803) baud = 4800; 76103ee2515SGreg Kroah-Hartman else if (baud <= 7207) baud = 7200; 76203ee2515SGreg Kroah-Hartman else if (baud <= 9612) baud = 9600; 76303ee2515SGreg Kroah-Hartman else if (baud <= 14428) baud = 14400; 76403ee2515SGreg Kroah-Hartman else if (baud <= 16062) baud = 16000; 76503ee2515SGreg Kroah-Hartman else if (baud <= 19250) baud = 19200; 76603ee2515SGreg Kroah-Hartman else if (baud <= 28912) baud = 28800; 76703ee2515SGreg Kroah-Hartman else if (baud <= 38601) baud = 38400; 76803ee2515SGreg Kroah-Hartman else if (baud <= 51558) baud = 51200; 76903ee2515SGreg Kroah-Hartman else if (baud <= 56280) baud = 56000; 77003ee2515SGreg Kroah-Hartman else if (baud <= 58053) baud = 57600; 77103ee2515SGreg Kroah-Hartman else if (baud <= 64111) baud = 64000; 77203ee2515SGreg Kroah-Hartman else if (baud <= 77608) baud = 76800; 77303ee2515SGreg Kroah-Hartman else if (baud <= 117028) baud = 115200; 77403ee2515SGreg Kroah-Hartman else if (baud <= 129347) baud = 128000; 77503ee2515SGreg Kroah-Hartman else if (baud <= 156868) baud = 153600; 77603ee2515SGreg Kroah-Hartman else if (baud <= 237832) baud = 230400; 77703ee2515SGreg Kroah-Hartman else if (baud <= 254234) baud = 250000; 77803ee2515SGreg Kroah-Hartman else if (baud <= 273066) baud = 256000; 77903ee2515SGreg Kroah-Hartman else if (baud <= 491520) baud = 460800; 78003ee2515SGreg Kroah-Hartman else if (baud <= 567138) baud = 500000; 78103ee2515SGreg Kroah-Hartman else if (baud <= 670254) baud = 576000; 782d1620ca9SJohan Hovold else if (baud < 1000000) 783d1620ca9SJohan Hovold baud = 921600; 784d1620ca9SJohan Hovold else if (baud > 2000000) 785d1620ca9SJohan Hovold baud = 2000000; 78603ee2515SGreg Kroah-Hartman return baud; 78703ee2515SGreg Kroah-Hartman } 78803ee2515SGreg Kroah-Hartman 789a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port) 79003ee2515SGreg Kroah-Hartman { 79103ee2515SGreg Kroah-Hartman int result; 79203ee2515SGreg Kroah-Hartman 79319165b2bSKonstantin Shkolnyy result = cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_ENABLE); 7942479e2a9SJohan Hovold if (result) { 7952479e2a9SJohan Hovold dev_err(&port->dev, "%s - Unable to enable UART\n", __func__); 7962479e2a9SJohan Hovold return result; 79703ee2515SGreg Kroah-Hartman } 79803ee2515SGreg Kroah-Hartman 79903ee2515SGreg Kroah-Hartman /* Configure the termios structure */ 8004cc27bd6SCraig Shelley cp210x_get_termios(tty, port); 80155b2afbbSJohan Hovold 802cdc32fd6SJohan Hovold /* The baud rate must be initialised on cp2104 */ 803cdc32fd6SJohan Hovold if (tty) 804cdc32fd6SJohan Hovold cp210x_change_speed(tty, port, NULL); 805cdc32fd6SJohan Hovold 80655b2afbbSJohan Hovold return usb_serial_generic_open(tty, port); 80703ee2515SGreg Kroah-Hartman } 80803ee2515SGreg Kroah-Hartman 8094cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port) 81003ee2515SGreg Kroah-Hartman { 811f26788daSJohan Hovold usb_serial_generic_close(port); 812ebfb319bSKonstantin Shkolnyy 813ebfb319bSKonstantin Shkolnyy /* Clear both queues; cp2108 needs this to avoid an occasional hang */ 81419165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_PURGE, PURGE_ALL); 815ebfb319bSKonstantin Shkolnyy 81619165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE); 81703ee2515SGreg Kroah-Hartman } 81803ee2515SGreg Kroah-Hartman 81903ee2515SGreg Kroah-Hartman /* 8206f923a01SKonstantin Shkolnyy * Read how many bytes are waiting in the TX queue. 8216f923a01SKonstantin Shkolnyy */ 8226f923a01SKonstantin Shkolnyy static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port, 8236f923a01SKonstantin Shkolnyy u32 *count) 8246f923a01SKonstantin Shkolnyy { 8256f923a01SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 8266f923a01SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 8276f923a01SKonstantin Shkolnyy struct cp210x_comm_status *sts; 8286f923a01SKonstantin Shkolnyy int result; 8296f923a01SKonstantin Shkolnyy 8306f923a01SKonstantin Shkolnyy sts = kmalloc(sizeof(*sts), GFP_KERNEL); 8316f923a01SKonstantin Shkolnyy if (!sts) 8326f923a01SKonstantin Shkolnyy return -ENOMEM; 8336f923a01SKonstantin Shkolnyy 8346f923a01SKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 8356f923a01SKonstantin Shkolnyy CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST, 8366f923a01SKonstantin Shkolnyy 0, port_priv->bInterfaceNumber, sts, sizeof(*sts), 8376f923a01SKonstantin Shkolnyy USB_CTRL_GET_TIMEOUT); 8386f923a01SKonstantin Shkolnyy if (result == sizeof(*sts)) { 8396f923a01SKonstantin Shkolnyy *count = le32_to_cpu(sts->ulAmountInOutQueue); 8406f923a01SKonstantin Shkolnyy result = 0; 8416f923a01SKonstantin Shkolnyy } else { 8426f923a01SKonstantin Shkolnyy dev_err(&port->dev, "failed to get comm status: %d\n", result); 8436f923a01SKonstantin Shkolnyy if (result >= 0) 8440407f1ceSJohan Hovold result = -EIO; 8456f923a01SKonstantin Shkolnyy } 8466f923a01SKonstantin Shkolnyy 8476f923a01SKonstantin Shkolnyy kfree(sts); 8486f923a01SKonstantin Shkolnyy 8496f923a01SKonstantin Shkolnyy return result; 8506f923a01SKonstantin Shkolnyy } 8516f923a01SKonstantin Shkolnyy 8526f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port) 8536f923a01SKonstantin Shkolnyy { 8546f923a01SKonstantin Shkolnyy int err; 8556f923a01SKonstantin Shkolnyy u32 count; 8566f923a01SKonstantin Shkolnyy 8576f923a01SKonstantin Shkolnyy err = cp210x_get_tx_queue_byte_count(port, &count); 8586f923a01SKonstantin Shkolnyy if (err) 8596f923a01SKonstantin Shkolnyy return true; 8606f923a01SKonstantin Shkolnyy 8616f923a01SKonstantin Shkolnyy return !count; 8626f923a01SKonstantin Shkolnyy } 8636f923a01SKonstantin Shkolnyy 8646f923a01SKonstantin Shkolnyy /* 8654cc27bd6SCraig Shelley * cp210x_get_termios 86603ee2515SGreg Kroah-Hartman * Reads the baud rate, data bits, parity, stop bits and flow control mode 86703ee2515SGreg Kroah-Hartman * from the device, corrects any unsupported values, and configures the 86803ee2515SGreg Kroah-Hartman * termios structure to reflect the state of the device 86903ee2515SGreg Kroah-Hartman */ 8704cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *tty, 871d2ad67b3SVomLehn struct usb_serial_port *port) 87203ee2515SGreg Kroah-Hartman { 873d2ad67b3SVomLehn unsigned int baud; 874d2ad67b3SVomLehn 875d2ad67b3SVomLehn if (tty) { 8764cc27bd6SCraig Shelley cp210x_get_termios_port(tty->driver_data, 877adc8d746SAlan Cox &tty->termios.c_cflag, &baud); 878d2ad67b3SVomLehn tty_encode_baud_rate(tty, baud, baud); 8794f2ab888SJohan Hovold } else { 880d2ad67b3SVomLehn unsigned int cflag; 881d2ad67b3SVomLehn cflag = 0; 8824cc27bd6SCraig Shelley cp210x_get_termios_port(port, &cflag, &baud); 883d2ad67b3SVomLehn } 884d2ad67b3SVomLehn } 885d2ad67b3SVomLehn 886d2ad67b3SVomLehn /* 8874cc27bd6SCraig Shelley * cp210x_get_termios_port 8884cc27bd6SCraig Shelley * This is the heart of cp210x_get_termios which always uses a &usb_serial_port. 889d2ad67b3SVomLehn */ 8904cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port, 891d2ad67b3SVomLehn unsigned int *cflagp, unsigned int *baudp) 892d2ad67b3SVomLehn { 893660f3b14SGreg Kroah-Hartman struct device *dev = &port->dev; 8947084fa86SKonstantin Shkolnyy unsigned int cflag; 8959034389cSKonstantin Shkolnyy struct cp210x_flow_ctl flow_ctl; 896fe1b07e9SKonstantin Shkolnyy u32 baud; 89719165b2bSKonstantin Shkolnyy u16 bits; 8989034389cSKonstantin Shkolnyy u32 ctl_hs; 89903ee2515SGreg Kroah-Hartman 900fe1b07e9SKonstantin Shkolnyy cp210x_read_u32_reg(port, CP210X_GET_BAUDRATE, &baud); 90103ee2515SGreg Kroah-Hartman 902660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud); 903d2ad67b3SVomLehn *baudp = baud; 90403ee2515SGreg Kroah-Hartman 905d2ad67b3SVomLehn cflag = *cflagp; 90603ee2515SGreg Kroah-Hartman 907d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 90803ee2515SGreg Kroah-Hartman cflag &= ~CSIZE; 90903ee2515SGreg Kroah-Hartman switch (bits & BITS_DATA_MASK) { 91003ee2515SGreg Kroah-Hartman case BITS_DATA_5: 911660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 5\n", __func__); 91203ee2515SGreg Kroah-Hartman cflag |= CS5; 91303ee2515SGreg Kroah-Hartman break; 91403ee2515SGreg Kroah-Hartman case BITS_DATA_6: 915660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 6\n", __func__); 91603ee2515SGreg Kroah-Hartman cflag |= CS6; 91703ee2515SGreg Kroah-Hartman break; 91803ee2515SGreg Kroah-Hartman case BITS_DATA_7: 919660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 7\n", __func__); 92003ee2515SGreg Kroah-Hartman cflag |= CS7; 92103ee2515SGreg Kroah-Hartman break; 92203ee2515SGreg Kroah-Hartman case BITS_DATA_8: 923660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 8\n", __func__); 92403ee2515SGreg Kroah-Hartman cflag |= CS8; 92503ee2515SGreg Kroah-Hartman break; 92603ee2515SGreg Kroah-Hartman case BITS_DATA_9: 927660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 9 (not supported, using 8 data bits)\n", __func__); 92803ee2515SGreg Kroah-Hartman cflag |= CS8; 92903ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 93003ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 93119165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 93203ee2515SGreg Kroah-Hartman break; 93303ee2515SGreg Kroah-Hartman default: 934660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown number of data bits, using 8\n", __func__); 93503ee2515SGreg Kroah-Hartman cflag |= CS8; 93603ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 93703ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 93819165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 93903ee2515SGreg Kroah-Hartman break; 94003ee2515SGreg Kroah-Hartman } 94103ee2515SGreg Kroah-Hartman 94203ee2515SGreg Kroah-Hartman switch (bits & BITS_PARITY_MASK) { 94303ee2515SGreg Kroah-Hartman case BITS_PARITY_NONE: 944660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = NONE\n", __func__); 94503ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 94603ee2515SGreg Kroah-Hartman break; 94703ee2515SGreg Kroah-Hartman case BITS_PARITY_ODD: 948660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = ODD\n", __func__); 94903ee2515SGreg Kroah-Hartman cflag |= (PARENB|PARODD); 95003ee2515SGreg Kroah-Hartman break; 95103ee2515SGreg Kroah-Hartman case BITS_PARITY_EVEN: 952660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = EVEN\n", __func__); 95303ee2515SGreg Kroah-Hartman cflag &= ~PARODD; 95403ee2515SGreg Kroah-Hartman cflag |= PARENB; 95503ee2515SGreg Kroah-Hartman break; 95603ee2515SGreg Kroah-Hartman case BITS_PARITY_MARK: 957660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = MARK\n", __func__); 9584b6181caSRoland Koebler cflag |= (PARENB|PARODD|CMSPAR); 95903ee2515SGreg Kroah-Hartman break; 96003ee2515SGreg Kroah-Hartman case BITS_PARITY_SPACE: 961660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = SPACE\n", __func__); 9624b6181caSRoland Koebler cflag &= ~PARODD; 9634b6181caSRoland Koebler cflag |= (PARENB|CMSPAR); 96403ee2515SGreg Kroah-Hartman break; 96503ee2515SGreg Kroah-Hartman default: 966660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown parity mode, disabling parity\n", __func__); 96703ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 96803ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 96919165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 97003ee2515SGreg Kroah-Hartman break; 97103ee2515SGreg Kroah-Hartman } 97203ee2515SGreg Kroah-Hartman 97303ee2515SGreg Kroah-Hartman cflag &= ~CSTOPB; 97403ee2515SGreg Kroah-Hartman switch (bits & BITS_STOP_MASK) { 97503ee2515SGreg Kroah-Hartman case BITS_STOP_1: 976660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1\n", __func__); 97703ee2515SGreg Kroah-Hartman break; 97803ee2515SGreg Kroah-Hartman case BITS_STOP_1_5: 979660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1.5 (not supported, using 1 stop bit)\n", __func__); 98003ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 98119165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 98203ee2515SGreg Kroah-Hartman break; 98303ee2515SGreg Kroah-Hartman case BITS_STOP_2: 984660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 2\n", __func__); 98503ee2515SGreg Kroah-Hartman cflag |= CSTOPB; 98603ee2515SGreg Kroah-Hartman break; 98703ee2515SGreg Kroah-Hartman default: 988660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown number of stop bits, using 1 stop bit\n", __func__); 98903ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 99019165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 99103ee2515SGreg Kroah-Hartman break; 99203ee2515SGreg Kroah-Hartman } 99303ee2515SGreg Kroah-Hartman 9949034389cSKonstantin Shkolnyy cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl, 9959034389cSKonstantin Shkolnyy sizeof(flow_ctl)); 9969034389cSKonstantin Shkolnyy ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake); 9979034389cSKonstantin Shkolnyy if (ctl_hs & CP210X_SERIAL_CTS_HANDSHAKE) { 998660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__); 99903ee2515SGreg Kroah-Hartman cflag |= CRTSCTS; 100003ee2515SGreg Kroah-Hartman } else { 1001660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = NONE\n", __func__); 100203ee2515SGreg Kroah-Hartman cflag &= ~CRTSCTS; 100303ee2515SGreg Kroah-Hartman } 100403ee2515SGreg Kroah-Hartman 1005d2ad67b3SVomLehn *cflagp = cflag; 100603ee2515SGreg Kroah-Hartman } 100703ee2515SGreg Kroah-Hartman 1008e5990874SJohan Hovold /* 1009e5990874SJohan Hovold * CP2101 supports the following baud rates: 1010e5990874SJohan Hovold * 1011e5990874SJohan Hovold * 300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800, 1012e5990874SJohan Hovold * 38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600 1013e5990874SJohan Hovold * 1014e5990874SJohan Hovold * CP2102 and CP2103 support the following additional rates: 1015e5990874SJohan Hovold * 1016e5990874SJohan Hovold * 4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000, 1017e5990874SJohan Hovold * 576000 1018e5990874SJohan Hovold * 1019e5990874SJohan Hovold * The device will map a requested rate to a supported one, but the result 1020e5990874SJohan Hovold * of requests for rates greater than 1053257 is undefined (see AN205). 1021e5990874SJohan Hovold * 1022e5990874SJohan Hovold * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud, 1023e5990874SJohan Hovold * respectively, with an error less than 1%. The actual rates are determined 1024e5990874SJohan Hovold * by 1025e5990874SJohan Hovold * 1026e5990874SJohan Hovold * div = round(freq / (2 x prescale x request)) 1027e5990874SJohan Hovold * actual = freq / (2 x prescale x div) 1028e5990874SJohan Hovold * 1029e5990874SJohan Hovold * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps 1030e5990874SJohan Hovold * or 1 otherwise. 1031e5990874SJohan Hovold * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1 1032e5990874SJohan Hovold * otherwise. 1033e5990874SJohan Hovold */ 1034e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty, 1035e5990874SJohan Hovold struct usb_serial_port *port, struct ktermios *old_termios) 1036e5990874SJohan Hovold { 1037e5990874SJohan Hovold u32 baud; 1038e5990874SJohan Hovold 1039adc8d746SAlan Cox baud = tty->termios.c_ospeed; 1040e5990874SJohan Hovold 1041d1620ca9SJohan Hovold /* This maps the requested rate to a rate valid on cp2102 or cp2103, 1042d1620ca9SJohan Hovold * or to an arbitrary rate in [1M,2M]. 1043e5990874SJohan Hovold * 1044e5990874SJohan Hovold * NOTE: B0 is not implemented. 1045e5990874SJohan Hovold */ 1046e5990874SJohan Hovold baud = cp210x_quantise_baudrate(baud); 1047e5990874SJohan Hovold 1048660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud); 1049fe1b07e9SKonstantin Shkolnyy if (cp210x_write_u32_reg(port, CP210X_SET_BAUDRATE, baud)) { 1050e5990874SJohan Hovold dev_warn(&port->dev, "failed to set baud rate to %u\n", baud); 1051e5990874SJohan Hovold if (old_termios) 1052e5990874SJohan Hovold baud = old_termios->c_ospeed; 1053e5990874SJohan Hovold else 1054e5990874SJohan Hovold baud = 9600; 1055e5990874SJohan Hovold } 1056e5990874SJohan Hovold 1057e5990874SJohan Hovold tty_encode_baud_rate(tty, baud, baud); 1058e5990874SJohan Hovold } 1059e5990874SJohan Hovold 10604cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty, 106103ee2515SGreg Kroah-Hartman struct usb_serial_port *port, struct ktermios *old_termios) 106203ee2515SGreg Kroah-Hartman { 1063660f3b14SGreg Kroah-Hartman struct device *dev = &port->dev; 106403ee2515SGreg Kroah-Hartman unsigned int cflag, old_cflag; 106519165b2bSKonstantin Shkolnyy u16 bits; 106603ee2515SGreg Kroah-Hartman 1067adc8d746SAlan Cox cflag = tty->termios.c_cflag; 106803ee2515SGreg Kroah-Hartman old_cflag = old_termios->c_cflag; 106903ee2515SGreg Kroah-Hartman 1070adc8d746SAlan Cox if (tty->termios.c_ospeed != old_termios->c_ospeed) 1071e5990874SJohan Hovold cp210x_change_speed(tty, port, old_termios); 107203ee2515SGreg Kroah-Hartman 107303ee2515SGreg Kroah-Hartman /* If the number of data bits is to be updated */ 107403ee2515SGreg Kroah-Hartman if ((cflag & CSIZE) != (old_cflag & CSIZE)) { 1075d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 107603ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 107703ee2515SGreg Kroah-Hartman switch (cflag & CSIZE) { 107803ee2515SGreg Kroah-Hartman case CS5: 107903ee2515SGreg Kroah-Hartman bits |= BITS_DATA_5; 1080660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 5\n", __func__); 108103ee2515SGreg Kroah-Hartman break; 108203ee2515SGreg Kroah-Hartman case CS6: 108303ee2515SGreg Kroah-Hartman bits |= BITS_DATA_6; 1084660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 6\n", __func__); 108503ee2515SGreg Kroah-Hartman break; 108603ee2515SGreg Kroah-Hartman case CS7: 108703ee2515SGreg Kroah-Hartman bits |= BITS_DATA_7; 1088660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 7\n", __func__); 108903ee2515SGreg Kroah-Hartman break; 109003ee2515SGreg Kroah-Hartman case CS8: 1091c2b33559SJohan Hovold default: 109203ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 1093660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 8\n", __func__); 109403ee2515SGreg Kroah-Hartman break; 109503ee2515SGreg Kroah-Hartman } 109619165b2bSKonstantin Shkolnyy if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits)) 1097660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Number of data bits requested not supported by device\n"); 109803ee2515SGreg Kroah-Hartman } 109903ee2515SGreg Kroah-Hartman 11004b6181caSRoland Koebler if ((cflag & (PARENB|PARODD|CMSPAR)) != 11014b6181caSRoland Koebler (old_cflag & (PARENB|PARODD|CMSPAR))) { 1102d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 110303ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 110403ee2515SGreg Kroah-Hartman if (cflag & PARENB) { 11054b6181caSRoland Koebler if (cflag & CMSPAR) { 11064b6181caSRoland Koebler if (cflag & PARODD) { 11074b6181caSRoland Koebler bits |= BITS_PARITY_MARK; 1108660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = MARK\n", __func__); 11094b6181caSRoland Koebler } else { 11104b6181caSRoland Koebler bits |= BITS_PARITY_SPACE; 1111660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = SPACE\n", __func__); 11124b6181caSRoland Koebler } 11134b6181caSRoland Koebler } else { 111403ee2515SGreg Kroah-Hartman if (cflag & PARODD) { 111503ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_ODD; 1116660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = ODD\n", __func__); 111703ee2515SGreg Kroah-Hartman } else { 111803ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_EVEN; 1119660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = EVEN\n", __func__); 112003ee2515SGreg Kroah-Hartman } 112103ee2515SGreg Kroah-Hartman } 11224b6181caSRoland Koebler } 112319165b2bSKonstantin Shkolnyy if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits)) 1124660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Parity mode not supported by device\n"); 112503ee2515SGreg Kroah-Hartman } 112603ee2515SGreg Kroah-Hartman 112703ee2515SGreg Kroah-Hartman if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { 1128d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 112903ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 113003ee2515SGreg Kroah-Hartman if (cflag & CSTOPB) { 113103ee2515SGreg Kroah-Hartman bits |= BITS_STOP_2; 1132660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 2\n", __func__); 113303ee2515SGreg Kroah-Hartman } else { 113403ee2515SGreg Kroah-Hartman bits |= BITS_STOP_1; 1135660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1\n", __func__); 113603ee2515SGreg Kroah-Hartman } 113719165b2bSKonstantin Shkolnyy if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits)) 1138660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Number of stop bits requested not supported by device\n"); 113903ee2515SGreg Kroah-Hartman } 114003ee2515SGreg Kroah-Hartman 114103ee2515SGreg Kroah-Hartman if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) { 11429034389cSKonstantin Shkolnyy struct cp210x_flow_ctl flow_ctl; 11439034389cSKonstantin Shkolnyy u32 ctl_hs; 11449034389cSKonstantin Shkolnyy u32 flow_repl; 11457084fa86SKonstantin Shkolnyy 11469034389cSKonstantin Shkolnyy cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl, 11479034389cSKonstantin Shkolnyy sizeof(flow_ctl)); 11489034389cSKonstantin Shkolnyy ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake); 11499034389cSKonstantin Shkolnyy flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace); 11509034389cSKonstantin Shkolnyy dev_dbg(dev, "%s - read ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n", 11519034389cSKonstantin Shkolnyy __func__, ctl_hs, flow_repl); 11527084fa86SKonstantin Shkolnyy 1153ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DSR_HANDSHAKE; 1154ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DCD_HANDSHAKE; 1155ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DSR_SENSITIVITY; 1156ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DTR_MASK; 1157ab5701adSKonstantin Shkolnyy ctl_hs |= CP210X_SERIAL_DTR_SHIFT(CP210X_SERIAL_DTR_ACTIVE); 115803ee2515SGreg Kroah-Hartman if (cflag & CRTSCTS) { 11599034389cSKonstantin Shkolnyy ctl_hs |= CP210X_SERIAL_CTS_HANDSHAKE; 1160ab5701adSKonstantin Shkolnyy 1161ab5701adSKonstantin Shkolnyy flow_repl &= ~CP210X_SERIAL_RTS_MASK; 11629034389cSKonstantin Shkolnyy flow_repl |= CP210X_SERIAL_RTS_SHIFT( 11639034389cSKonstantin Shkolnyy CP210X_SERIAL_RTS_FLOW_CTL); 1164660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__); 116503ee2515SGreg Kroah-Hartman } else { 1166ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_CTS_HANDSHAKE; 1167ab5701adSKonstantin Shkolnyy 1168ab5701adSKonstantin Shkolnyy flow_repl &= ~CP210X_SERIAL_RTS_MASK; 11699034389cSKonstantin Shkolnyy flow_repl |= CP210X_SERIAL_RTS_SHIFT( 11709034389cSKonstantin Shkolnyy CP210X_SERIAL_RTS_ACTIVE); 1171660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = NONE\n", __func__); 117203ee2515SGreg Kroah-Hartman } 117303ee2515SGreg Kroah-Hartman 11749034389cSKonstantin Shkolnyy dev_dbg(dev, "%s - write ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n", 11759034389cSKonstantin Shkolnyy __func__, ctl_hs, flow_repl); 11769034389cSKonstantin Shkolnyy flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs); 11779034389cSKonstantin Shkolnyy flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl); 11789034389cSKonstantin Shkolnyy cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl, 11799034389cSKonstantin Shkolnyy sizeof(flow_ctl)); 118003ee2515SGreg Kroah-Hartman } 118103ee2515SGreg Kroah-Hartman 118203ee2515SGreg Kroah-Hartman } 118303ee2515SGreg Kroah-Hartman 118420b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty, 118503ee2515SGreg Kroah-Hartman unsigned int set, unsigned int clear) 118603ee2515SGreg Kroah-Hartman { 118703ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 118820b9d177SAlan Cox return cp210x_tiocmset_port(port, set, clear); 1189d2ad67b3SVomLehn } 1190d2ad67b3SVomLehn 119120b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 1192d2ad67b3SVomLehn unsigned int set, unsigned int clear) 1193d2ad67b3SVomLehn { 119419165b2bSKonstantin Shkolnyy u16 control = 0; 119503ee2515SGreg Kroah-Hartman 119603ee2515SGreg Kroah-Hartman if (set & TIOCM_RTS) { 119703ee2515SGreg Kroah-Hartman control |= CONTROL_RTS; 119803ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 119903ee2515SGreg Kroah-Hartman } 120003ee2515SGreg Kroah-Hartman if (set & TIOCM_DTR) { 120103ee2515SGreg Kroah-Hartman control |= CONTROL_DTR; 120203ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 120303ee2515SGreg Kroah-Hartman } 120403ee2515SGreg Kroah-Hartman if (clear & TIOCM_RTS) { 120503ee2515SGreg Kroah-Hartman control &= ~CONTROL_RTS; 120603ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 120703ee2515SGreg Kroah-Hartman } 120803ee2515SGreg Kroah-Hartman if (clear & TIOCM_DTR) { 120903ee2515SGreg Kroah-Hartman control &= ~CONTROL_DTR; 121003ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 121103ee2515SGreg Kroah-Hartman } 121203ee2515SGreg Kroah-Hartman 1213660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control); 121403ee2515SGreg Kroah-Hartman 121519165b2bSKonstantin Shkolnyy return cp210x_write_u16_reg(port, CP210X_SET_MHS, control); 121603ee2515SGreg Kroah-Hartman } 121703ee2515SGreg Kroah-Hartman 1218d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on) 1219d94c7bd4SAlan Cox { 1220d94c7bd4SAlan Cox if (on) 122120b9d177SAlan Cox cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0); 1222d94c7bd4SAlan Cox else 122320b9d177SAlan Cox cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS); 1224d94c7bd4SAlan Cox } 1225d94c7bd4SAlan Cox 122660b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty) 122703ee2515SGreg Kroah-Hartman { 122803ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 1229fe1b07e9SKonstantin Shkolnyy u8 control; 123003ee2515SGreg Kroah-Hartman int result; 123103ee2515SGreg Kroah-Hartman 1232fe1b07e9SKonstantin Shkolnyy cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control); 123303ee2515SGreg Kroah-Hartman 123403ee2515SGreg Kroah-Hartman result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0) 123503ee2515SGreg Kroah-Hartman |((control & CONTROL_RTS) ? TIOCM_RTS : 0) 123603ee2515SGreg Kroah-Hartman |((control & CONTROL_CTS) ? TIOCM_CTS : 0) 123703ee2515SGreg Kroah-Hartman |((control & CONTROL_DSR) ? TIOCM_DSR : 0) 123803ee2515SGreg Kroah-Hartman |((control & CONTROL_RING)? TIOCM_RI : 0) 123903ee2515SGreg Kroah-Hartman |((control & CONTROL_DCD) ? TIOCM_CD : 0); 124003ee2515SGreg Kroah-Hartman 1241660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control); 124203ee2515SGreg Kroah-Hartman 124303ee2515SGreg Kroah-Hartman return result; 124403ee2515SGreg Kroah-Hartman } 124503ee2515SGreg Kroah-Hartman 12464cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state) 124703ee2515SGreg Kroah-Hartman { 124803ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 124919165b2bSKonstantin Shkolnyy u16 state; 125003ee2515SGreg Kroah-Hartman 125103ee2515SGreg Kroah-Hartman if (break_state == 0) 125203ee2515SGreg Kroah-Hartman state = BREAK_OFF; 125303ee2515SGreg Kroah-Hartman else 125403ee2515SGreg Kroah-Hartman state = BREAK_ON; 1255660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - turning break %s\n", __func__, 125603ee2515SGreg Kroah-Hartman state == BREAK_OFF ? "off" : "on"); 125719165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_BREAK, state); 125803ee2515SGreg Kroah-Hartman } 125903ee2515SGreg Kroah-Hartman 1260cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 1261cf5276ceSMartyn Welch static int cp210x_gpio_request(struct gpio_chip *gc, unsigned int offset) 1262cf5276ceSMartyn Welch { 1263cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1264cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1265cf5276ceSMartyn Welch 1266cf5276ceSMartyn Welch switch (offset) { 1267cf5276ceSMartyn Welch case 0: 1268cf5276ceSMartyn Welch if (priv->config & CP2105_GPIO0_TXLED_MODE) 1269cf5276ceSMartyn Welch return -ENODEV; 1270cf5276ceSMartyn Welch break; 1271cf5276ceSMartyn Welch case 1: 1272cf5276ceSMartyn Welch if (priv->config & (CP2105_GPIO1_RXLED_MODE | 1273cf5276ceSMartyn Welch CP2105_GPIO1_RS485_MODE)) 1274cf5276ceSMartyn Welch return -ENODEV; 1275cf5276ceSMartyn Welch break; 1276cf5276ceSMartyn Welch } 1277cf5276ceSMartyn Welch 1278cf5276ceSMartyn Welch return 0; 1279cf5276ceSMartyn Welch } 1280cf5276ceSMartyn Welch 1281cf5276ceSMartyn Welch static int cp210x_gpio_get(struct gpio_chip *gc, unsigned int gpio) 1282cf5276ceSMartyn Welch { 1283cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1284cf5276ceSMartyn Welch int result; 1285cf5276ceSMartyn Welch u8 buf; 1286cf5276ceSMartyn Welch 1287cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_INTERFACE_TO_HOST, 1288cf5276ceSMartyn Welch CP210X_READ_LATCH, &buf, sizeof(buf)); 1289cf5276ceSMartyn Welch if (result < 0) 1290cf5276ceSMartyn Welch return result; 1291cf5276ceSMartyn Welch 1292cf5276ceSMartyn Welch return !!(buf & BIT(gpio)); 1293cf5276ceSMartyn Welch } 1294cf5276ceSMartyn Welch 1295cf5276ceSMartyn Welch static void cp210x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value) 1296cf5276ceSMartyn Welch { 1297cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1298cf5276ceSMartyn Welch struct cp210x_gpio_write buf; 1299cf5276ceSMartyn Welch 1300cf5276ceSMartyn Welch if (value == 1) 1301cf5276ceSMartyn Welch buf.state = BIT(gpio); 1302cf5276ceSMartyn Welch else 1303cf5276ceSMartyn Welch buf.state = 0; 1304cf5276ceSMartyn Welch 1305cf5276ceSMartyn Welch buf.mask = BIT(gpio); 1306cf5276ceSMartyn Welch 1307cf5276ceSMartyn Welch cp210x_write_vendor_block(serial, REQTYPE_HOST_TO_INTERFACE, 1308cf5276ceSMartyn Welch CP210X_WRITE_LATCH, &buf, sizeof(buf)); 1309cf5276ceSMartyn Welch } 1310cf5276ceSMartyn Welch 1311cf5276ceSMartyn Welch static int cp210x_gpio_direction_get(struct gpio_chip *gc, unsigned int gpio) 1312cf5276ceSMartyn Welch { 1313cf5276ceSMartyn Welch /* Hardware does not support an input mode */ 1314cf5276ceSMartyn Welch return 0; 1315cf5276ceSMartyn Welch } 1316cf5276ceSMartyn Welch 1317cf5276ceSMartyn Welch static int cp210x_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio) 1318cf5276ceSMartyn Welch { 1319cf5276ceSMartyn Welch /* Hardware does not support an input mode */ 1320cf5276ceSMartyn Welch return -ENOTSUPP; 1321cf5276ceSMartyn Welch } 1322cf5276ceSMartyn Welch 1323cf5276ceSMartyn Welch static int cp210x_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio, 1324cf5276ceSMartyn Welch int value) 1325cf5276ceSMartyn Welch { 1326cf5276ceSMartyn Welch return 0; 1327cf5276ceSMartyn Welch } 1328cf5276ceSMartyn Welch 1329cf5276ceSMartyn Welch static int cp210x_gpio_set_single_ended(struct gpio_chip *gc, unsigned int gpio, 1330cf5276ceSMartyn Welch enum single_ended_mode mode) 1331cf5276ceSMartyn Welch { 1332cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1333cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1334cf5276ceSMartyn Welch 1335cf5276ceSMartyn Welch /* Succeed only if in correct mode (this can't be set at runtime) */ 1336cf5276ceSMartyn Welch if ((mode == LINE_MODE_PUSH_PULL) && (priv->gpio_mode & BIT(gpio))) 1337cf5276ceSMartyn Welch return 0; 1338cf5276ceSMartyn Welch 1339cf5276ceSMartyn Welch if ((mode == LINE_MODE_OPEN_DRAIN) && !(priv->gpio_mode & BIT(gpio))) 1340cf5276ceSMartyn Welch return 0; 1341cf5276ceSMartyn Welch 1342cf5276ceSMartyn Welch return -ENOTSUPP; 1343cf5276ceSMartyn Welch } 1344cf5276ceSMartyn Welch 1345cf5276ceSMartyn Welch /* 1346cf5276ceSMartyn Welch * This function is for configuring GPIO using shared pins, where other signals 1347cf5276ceSMartyn Welch * are made unavailable by configuring the use of GPIO. This is believed to be 1348cf5276ceSMartyn Welch * only applicable to the cp2105 at this point, the other devices supported by 1349cf5276ceSMartyn Welch * this driver that provide GPIO do so in a way that does not impact other 1350cf5276ceSMartyn Welch * signals and are thus expected to have very different initialisation. 1351cf5276ceSMartyn Welch */ 1352cf5276ceSMartyn Welch static int cp2105_shared_gpio_init(struct usb_serial *serial) 1353cf5276ceSMartyn Welch { 1354cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1355cf5276ceSMartyn Welch struct cp210x_pin_mode mode; 1356cf5276ceSMartyn Welch struct cp210x_config config; 1357cf5276ceSMartyn Welch u8 intf_num = cp210x_interface_num(serial); 1358cf5276ceSMartyn Welch int result; 1359cf5276ceSMartyn Welch 1360cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1361cf5276ceSMartyn Welch CP210X_GET_DEVICEMODE, &mode, 1362cf5276ceSMartyn Welch sizeof(mode)); 1363cf5276ceSMartyn Welch if (result < 0) 1364cf5276ceSMartyn Welch return result; 1365cf5276ceSMartyn Welch 1366cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1367cf5276ceSMartyn Welch CP210X_GET_PORTCONFIG, &config, 1368cf5276ceSMartyn Welch sizeof(config)); 1369cf5276ceSMartyn Welch if (result < 0) 1370cf5276ceSMartyn Welch return result; 1371cf5276ceSMartyn Welch 1372cf5276ceSMartyn Welch /* 2 banks of GPIO - One for the pins taken from each serial port */ 1373cf5276ceSMartyn Welch if (intf_num == 0) { 1374cf5276ceSMartyn Welch if (mode.eci == CP210X_PIN_MODE_MODEM) 1375cf5276ceSMartyn Welch return 0; 1376cf5276ceSMartyn Welch 1377cf5276ceSMartyn Welch priv->config = config.eci_cfg; 1378cf5276ceSMartyn Welch priv->gpio_mode = (u8)((le16_to_cpu(config.gpio_mode) & 1379cf5276ceSMartyn Welch CP210X_ECI_GPIO_MODE_MASK) >> 1380cf5276ceSMartyn Welch CP210X_ECI_GPIO_MODE_OFFSET); 1381cf5276ceSMartyn Welch priv->gc.ngpio = 2; 1382cf5276ceSMartyn Welch } else if (intf_num == 1) { 1383cf5276ceSMartyn Welch if (mode.sci == CP210X_PIN_MODE_MODEM) 1384cf5276ceSMartyn Welch return 0; 1385cf5276ceSMartyn Welch 1386cf5276ceSMartyn Welch priv->config = config.sci_cfg; 1387cf5276ceSMartyn Welch priv->gpio_mode = (u8)((le16_to_cpu(config.gpio_mode) & 1388cf5276ceSMartyn Welch CP210X_SCI_GPIO_MODE_MASK) >> 1389cf5276ceSMartyn Welch CP210X_SCI_GPIO_MODE_OFFSET); 1390cf5276ceSMartyn Welch priv->gc.ngpio = 3; 1391cf5276ceSMartyn Welch } else { 1392cf5276ceSMartyn Welch return -ENODEV; 1393cf5276ceSMartyn Welch } 1394cf5276ceSMartyn Welch 1395cf5276ceSMartyn Welch priv->gc.label = "cp210x"; 1396cf5276ceSMartyn Welch priv->gc.request = cp210x_gpio_request; 1397cf5276ceSMartyn Welch priv->gc.get_direction = cp210x_gpio_direction_get; 1398cf5276ceSMartyn Welch priv->gc.direction_input = cp210x_gpio_direction_input; 1399cf5276ceSMartyn Welch priv->gc.direction_output = cp210x_gpio_direction_output; 1400cf5276ceSMartyn Welch priv->gc.get = cp210x_gpio_get; 1401cf5276ceSMartyn Welch priv->gc.set = cp210x_gpio_set; 1402cf5276ceSMartyn Welch priv->gc.set_single_ended = cp210x_gpio_set_single_ended; 1403cf5276ceSMartyn Welch priv->gc.owner = THIS_MODULE; 1404cf5276ceSMartyn Welch priv->gc.parent = &serial->interface->dev; 1405cf5276ceSMartyn Welch priv->gc.base = -1; 1406cf5276ceSMartyn Welch priv->gc.can_sleep = true; 1407cf5276ceSMartyn Welch 1408cf5276ceSMartyn Welch result = gpiochip_add_data(&priv->gc, serial); 1409cf5276ceSMartyn Welch if (!result) 1410*6b7271d2SJohan Hovold priv->gpio_registered = true; 1411cf5276ceSMartyn Welch 1412cf5276ceSMartyn Welch return result; 1413cf5276ceSMartyn Welch } 1414cf5276ceSMartyn Welch 1415cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial) 1416cf5276ceSMartyn Welch { 1417cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1418cf5276ceSMartyn Welch 1419cf5276ceSMartyn Welch if (priv->gpio_registered) { 1420cf5276ceSMartyn Welch gpiochip_remove(&priv->gc); 1421*6b7271d2SJohan Hovold priv->gpio_registered = false; 1422cf5276ceSMartyn Welch } 1423cf5276ceSMartyn Welch } 1424cf5276ceSMartyn Welch 1425cf5276ceSMartyn Welch #else 1426cf5276ceSMartyn Welch 1427cf5276ceSMartyn Welch static int cp2105_shared_gpio_init(struct usb_serial *serial) 1428cf5276ceSMartyn Welch { 1429cf5276ceSMartyn Welch return 0; 1430cf5276ceSMartyn Welch } 1431cf5276ceSMartyn Welch 1432cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial) 1433cf5276ceSMartyn Welch { 1434cf5276ceSMartyn Welch /* Nothing to do */ 1435cf5276ceSMartyn Welch } 1436cf5276ceSMartyn Welch 1437cf5276ceSMartyn Welch #endif 1438cf5276ceSMartyn Welch 1439e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *port) 144003ee2515SGreg Kroah-Hartman { 1441e2ae67a3SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 1442e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv; 1443d0bf1ff0SKonstantin Shkolnyy int ret; 1444a5360a53SPreston Fick 1445e2ae67a3SKonstantin Shkolnyy port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL); 1446e2ae67a3SKonstantin Shkolnyy if (!port_priv) 1447a5360a53SPreston Fick return -ENOMEM; 1448a5360a53SPreston Fick 1449cf5276ceSMartyn Welch port_priv->bInterfaceNumber = cp210x_interface_num(serial); 1450a5360a53SPreston Fick 1451e2ae67a3SKonstantin Shkolnyy usb_set_serial_port_data(port, port_priv); 1452a5360a53SPreston Fick 1453d0bf1ff0SKonstantin Shkolnyy ret = cp210x_detect_swapped_line_ctl(port); 1454d0bf1ff0SKonstantin Shkolnyy if (ret) { 1455d0bf1ff0SKonstantin Shkolnyy kfree(port_priv); 1456d0bf1ff0SKonstantin Shkolnyy return ret; 1457d0bf1ff0SKonstantin Shkolnyy } 145803ee2515SGreg Kroah-Hartman 145903ee2515SGreg Kroah-Hartman return 0; 146003ee2515SGreg Kroah-Hartman } 146103ee2515SGreg Kroah-Hartman 1462e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *port) 1463a5360a53SPreston Fick { 1464e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv; 1465a5360a53SPreston Fick 1466e2ae67a3SKonstantin Shkolnyy port_priv = usb_get_serial_port_data(port); 1467e2ae67a3SKonstantin Shkolnyy kfree(port_priv); 1468e2ae67a3SKonstantin Shkolnyy 1469e2ae67a3SKonstantin Shkolnyy return 0; 1470a5360a53SPreston Fick } 1471a5360a53SPreston Fick 1472cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *serial) 1473cf5276ceSMartyn Welch { 1474cf5276ceSMartyn Welch int result; 1475cf5276ceSMartyn Welch struct cp210x_serial_private *priv; 1476cf5276ceSMartyn Welch 1477cf5276ceSMartyn Welch priv = kzalloc(sizeof(*priv), GFP_KERNEL); 1478cf5276ceSMartyn Welch if (!priv) 1479cf5276ceSMartyn Welch return -ENOMEM; 1480cf5276ceSMartyn Welch 1481cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1482cf5276ceSMartyn Welch CP210X_GET_PARTNUM, &priv->partnum, 1483cf5276ceSMartyn Welch sizeof(priv->partnum)); 1484cf5276ceSMartyn Welch if (result < 0) 1485cf5276ceSMartyn Welch goto err_free_priv; 1486cf5276ceSMartyn Welch 1487cf5276ceSMartyn Welch usb_set_serial_data(serial, priv); 1488cf5276ceSMartyn Welch 1489cf5276ceSMartyn Welch if (priv->partnum == CP210X_PARTNUM_CP2105) { 1490cf5276ceSMartyn Welch result = cp2105_shared_gpio_init(serial); 1491cf5276ceSMartyn Welch if (result < 0) { 1492cf5276ceSMartyn Welch dev_err(&serial->interface->dev, 1493cf5276ceSMartyn Welch "GPIO initialisation failed, continuing without GPIO support\n"); 1494cf5276ceSMartyn Welch } 1495cf5276ceSMartyn Welch } 1496cf5276ceSMartyn Welch 1497cf5276ceSMartyn Welch return 0; 1498cf5276ceSMartyn Welch err_free_priv: 1499cf5276ceSMartyn Welch kfree(priv); 1500cf5276ceSMartyn Welch 1501cf5276ceSMartyn Welch return result; 1502cf5276ceSMartyn Welch } 1503cf5276ceSMartyn Welch 1504cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *serial) 1505cf5276ceSMartyn Welch { 1506cf5276ceSMartyn Welch cp210x_gpio_remove(serial); 1507cf5276ceSMartyn Welch } 1508cf5276ceSMartyn Welch 1509cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *serial) 1510cf5276ceSMartyn Welch { 1511cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1512cf5276ceSMartyn Welch 1513cf5276ceSMartyn Welch cp210x_gpio_remove(serial); 1514cf5276ceSMartyn Welch 1515cf5276ceSMartyn Welch kfree(priv); 1516cf5276ceSMartyn Welch } 1517cf5276ceSMartyn Welch 151868e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table); 151903ee2515SGreg Kroah-Hartman 152003ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC); 152103ee2515SGreg Kroah-Hartman MODULE_LICENSE("GPL"); 1522