15fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 203ee2515SGreg Kroah-Hartman /* 34cc27bd6SCraig Shelley * Silicon Laboratories CP210x USB to RS232 serial adaptor driver 403ee2515SGreg Kroah-Hartman * 503ee2515SGreg Kroah-Hartman * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk) 603ee2515SGreg Kroah-Hartman * 703ee2515SGreg Kroah-Hartman * Support to set flow control line levels using TIOCMGET and TIOCMSET 803ee2515SGreg Kroah-Hartman * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow 903ee2515SGreg Kroah-Hartman * control thanks to Munir Nassar nassarmu@real-time.com 1003ee2515SGreg Kroah-Hartman * 1103ee2515SGreg Kroah-Hartman */ 1203ee2515SGreg Kroah-Hartman 1303ee2515SGreg Kroah-Hartman #include <linux/kernel.h> 1403ee2515SGreg Kroah-Hartman #include <linux/errno.h> 1503ee2515SGreg Kroah-Hartman #include <linux/slab.h> 1603ee2515SGreg Kroah-Hartman #include <linux/tty.h> 1703ee2515SGreg Kroah-Hartman #include <linux/tty_flip.h> 1803ee2515SGreg Kroah-Hartman #include <linux/module.h> 1903ee2515SGreg Kroah-Hartman #include <linux/moduleparam.h> 2003ee2515SGreg Kroah-Hartman #include <linux/usb.h> 2103ee2515SGreg Kroah-Hartman #include <linux/uaccess.h> 2203ee2515SGreg Kroah-Hartman #include <linux/usb/serial.h> 23cf5276ceSMartyn Welch #include <linux/gpio/driver.h> 24cf5276ceSMartyn Welch #include <linux/bitops.h> 25cf5276ceSMartyn Welch #include <linux/mutex.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, 36009615abSGeert Uytterhoeven tcflag_t *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*); 416f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port); 4260b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *); 4320b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *, unsigned int, unsigned int); 4420b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 45d2ad67b3SVomLehn unsigned int, unsigned int); 464cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int); 47cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *); 48cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *); 49cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *); 50e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *); 51e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *); 52d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on); 5303ee2515SGreg Kroah-Hartman 547d40d7e8SNémeth Márton static const struct usb_device_id id_table[] = { 552f1136d1SDJ Delorie { USB_DEVICE(0x045B, 0x0053) }, /* Renesas RX610 RX-Stick */ 5603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */ 5703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 585b22a32eSA E Lawrence { USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 59b7c7cbc8SCraig Shelley { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */ 6090625070SLuiz Angelo Daros de Luca { USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */ 6103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */ 62b7c7cbc8SCraig Shelley { USB_DEVICE(0x08FD, 0x000A) }, /* Digianswer A/S , ZigBee/802.15.4 MAC Device */ 63a6f03312SLennart Sorensen { USB_DEVICE(0x0908, 0x01FF) }, /* Siemens RUGGEDCOM USB Serial Console */ 64dd9d3d86SIvan Mironov { USB_DEVICE(0x0B00, 0x3070) }, /* Ingenico 3070 */ 65eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1100) }, /* MEI (TM) Cashflow-SC Bill/Voucher Acceptor */ 66eefd9029SCraig Shelley { USB_DEVICE(0x0BED, 0x1101) }, /* MEI series 2000 Combo Acceptor */ 6703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */ 6803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */ 6903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */ 708de7f4daSLuis Llorente Campo { USB_DEVICE(0x0FDE, 0xCA05) }, /* OWL Wireless Electricity Monitor CM-160 */ 7103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */ 7203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */ 7303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */ 74b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */ 750601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */ 760601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */ 7703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */ 7803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */ 79eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x8044) }, /* Cygnal Debug Adapter */ 80eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */ 8103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */ 8203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */ 83a595ecddSGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8056) }, /* Lorenz Messtechnik devices */ 8403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */ 85eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */ 8603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */ 875bbfa6f4SMikko Tuumanen { USB_DEVICE(0x10C4, 0x80C4) }, /* Cygnal Integrated Products, Inc., Optris infrared thermometer */ 8803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */ 8903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */ 9003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */ 9103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */ 9203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */ 938bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */ 9403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */ 9503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */ 96a57e82a1SSteve Conklin { USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */ 970bf7a81cSJason Detring { USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */ 9803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */ 993fcc8f96SCraig Shelley { USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */ 10024160628SJohan Hovold { USB_DEVICE(0x10C4, 0x817C) }, /* CESINEL MEDCAL N Power Quality Monitor */ 10124160628SJohan Hovold { USB_DEVICE(0x10C4, 0x817D) }, /* CESINEL MEDCAL NT Power Quality Monitor */ 10224160628SJohan Hovold { USB_DEVICE(0x10C4, 0x817E) }, /* CESINEL MEDCAL S Power Quality Monitor */ 103eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */ 10403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */ 10503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */ 10608e87d0dSMalte Schröder { USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */ 10703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */ 108eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */ 10903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */ 110f487c54dSPeter Dedecker { USB_DEVICE(0x10C4, 0x81D7) }, /* IAI Corp. RCB-CV-USB USB to RS485 Adaptor */ 11103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */ 11203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */ 113bd07c551SAlan Cox { USB_DEVICE(0x10C4, 0x81E8) }, /* Zephyr Bioharness */ 114b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */ 11503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ 11603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */ 11725985edcSLucas De Marchi { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demonstration module */ 11872b30079STristan Bruns { USB_DEVICE(0x10C4, 0x8281) }, /* Nanotec Plug & Drive */ 119c851e83fSFlorian Fainelli { USB_DEVICE(0x10C4, 0x8293) }, /* Telegesis ETRX2USB */ 12024160628SJohan Hovold { USB_DEVICE(0x10C4, 0x82EF) }, /* CESINEL FALCO 6105 AC Power Supply */ 12124160628SJohan Hovold { USB_DEVICE(0x10C4, 0x82F1) }, /* CESINEL MEDCAL EFD Earth Fault Detector */ 12224160628SJohan Hovold { USB_DEVICE(0x10C4, 0x82F2) }, /* CESINEL MEDCAL ST Network Analyzer */ 123613ac23aSJasem Mutlaq { USB_DEVICE(0x10C4, 0x82F4) }, /* Starizona MicroTouch */ 124b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */ 12503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */ 1268bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */ 12703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */ 128347bc8cbSGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x83AA) }, /* Mark-10 Digital Force Gauge */ 129faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x83D8) }, /* DekTec DTA Plus VHF/UHF Booster/Attenuator */ 1308bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */ 131faea63f7SCraig Shelley { USB_DEVICE(0x10C4, 0x8418) }, /* IRZ Automation Teleport SG-10 GSM/GPRS Modem */ 132d23bac9fSAlex Stephens { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */ 133decc5360SKyle Jones { USB_DEVICE(0x10C4, 0x8470) }, /* Juniper Networks BX Series System Console */ 134541e05ecSCraig Shelley { USB_DEVICE(0x10C4, 0x8477) }, /* Balluff RFID */ 135613ac23aSJasem Mutlaq { USB_DEVICE(0x10C4, 0x84B6) }, /* Starizona Hyperion */ 13624160628SJohan Hovold { USB_DEVICE(0x10C4, 0x851E) }, /* CESINEL MEDCAL PT Network Analyzer */ 13743074132SDiego Elio Pettenò { USB_DEVICE(0x10C4, 0x85A7) }, /* LifeScan OneTouch Verio IQ */ 13824160628SJohan Hovold { USB_DEVICE(0x10C4, 0x85B8) }, /* CESINEL ReCon T Energy Logger */ 1394eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */ 1404eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */ 141356fe44fSMarkus Becker { USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */ 1424eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */ 1434eff0b40SCraig Shelley { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */ 1441ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8856) }, /* CEL EM357 ZigBee USB Stick - LR */ 1451ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8857) }, /* CEL EM357 ZigBee USB Stick */ 14676811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */ 14776811569SSami Rahman { USB_DEVICE(0x10C4, 0x88A5) }, /* Planet Innovation Ingeni ZigBee USB Device */ 14824160628SJohan Hovold { USB_DEVICE(0x10C4, 0x88FB) }, /* CESINEL MEDCAL STII Network Analyzer */ 14924160628SJohan Hovold { USB_DEVICE(0x10C4, 0x8938) }, /* CESINEL MEDCAL S II Network Analyzer */ 150bfc2d7dfSJoe Savage { USB_DEVICE(0x10C4, 0x8946) }, /* Ketra N1 Wireless Interface */ 1512ab13292SPaul Jakma { USB_DEVICE(0x10C4, 0x8962) }, /* Brim Brothers charging dock */ 1521ae78a48SDavid Peterson { USB_DEVICE(0x10C4, 0x8977) }, /* CEL MeshWorks DevKit Device */ 153c735ed74SMark Edwards { USB_DEVICE(0x10C4, 0x8998) }, /* KCF Technologies PRN */ 15424160628SJohan Hovold { USB_DEVICE(0x10C4, 0x89A4) }, /* CESINEL FTBC Flexible Thyristor Bridge Controller */ 155367b160fSOlli Salonen { USB_DEVICE(0x10C4, 0x89FB) }, /* Qivicon ZigBee USB Radio Stick */ 156df72d588SJohn D. Blair { USB_DEVICE(0x10C4, 0x8A2A) }, /* HubZ dual ZigBee and Z-Wave dongle */ 157fd90f73aSJeremie Rapin { USB_DEVICE(0x10C4, 0x8A5E) }, /* CEL EM3588 ZigBee USB Stick Long Range */ 1589585e340SStefan Triller { USB_DEVICE(0x10C4, 0x8B34) }, /* Qivicon ZigBee USB Radio Stick */ 15903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ 16003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ 1612f839823SKaroly Pados { USB_DEVICE(0x10C4, 0xEA63) }, /* Silicon Labs Windows Update (CP2101-4/CP2102N) */ 162a5360a53SPreston Fick { USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */ 163eefd9029SCraig Shelley { USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */ 1642f839823SKaroly Pados { USB_DEVICE(0x10C4, 0xEA7A) }, /* Silicon Labs Windows Update (CP2105) */ 1652f839823SKaroly Pados { USB_DEVICE(0x10C4, 0xEA7B) }, /* Silicon Labs Windows Update (CP2108) */ 16603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */ 16703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */ 16803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */ 16903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */ 17003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */ 171b7c7cbc8SCraig Shelley { USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */ 1721d377f4dSMike Manning { USB_DEVICE(0x12B8, 0xEC60) }, /* Link G4 ECU */ 1731d377f4dSMike Manning { USB_DEVICE(0x12B8, 0xEC62) }, /* Link G4+ ECU */ 17403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */ 175b7c7cbc8SCraig Shelley { USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */ 1761f1e82f7SJohan Hovold { USB_DEVICE(0x155A, 0x1006) }, /* ELDAT Easywave RX09 */ 1773fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0201) }, /* Clipsal 5500PACA C-Bus Pascal Automation Controller */ 1783fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0301) }, /* Clipsal 5800PC C-Bus Wireless PC Interface */ 17903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */ 1803fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0304) }, /* Clipsal 5000CT2 C-Bus Black and White Touchscreen */ 1813fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0305) }, /* Clipsal C-5000CT2 C-Bus Spectrum Colour Touchscreen */ 1823fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0401) }, /* Clipsal L51xx C-Bus Architectural Dimmer */ 1833fcc8f96SCraig Shelley { USB_DEVICE(0x166A, 0x0101) }, /* Clipsal 5560884 C-Bus Multi-room Audio Matrix Switcher */ 184675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B0) }, /* Lunatico Seletek */ 185675af708SMichiel vd Garde { USB_DEVICE(0x16C0, 0x09B1) }, /* Lunatico Seletek */ 18603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */ 187356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0010) }, /* W-IE-NE-R Plein & Baus GmbH PL512 Power Supply */ 188356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */ 189356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */ 190356c5a48SAlessio Igor Bogani { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */ 191c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */ 192c6c1e449SBruno Thomsen { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */ 193541e05ecSCraig Shelley { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */ 194541e05ecSCraig Shelley { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ 195541e05ecSCraig Shelley { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ 196f7d7f59aSOliver Freyermuth { USB_DEVICE(0x18EF, 0xE025) }, /* ELV Marble Sound Board 1 */ 197d14ac576SChristian Holl { USB_DEVICE(0x18EF, 0xE030) }, /* ELV ALC 8xxx Battery Charger */ 198c496ad83SAndreas Engel { USB_DEVICE(0x18EF, 0xE032) }, /* ELV TFD500 Data Logger */ 1996627ae19SKen Lin { USB_DEVICE(0x1901, 0x0190) }, /* GE B850 CP2105 Recorder interface */ 2006627ae19SKen Lin { USB_DEVICE(0x1901, 0x0193) }, /* GE B650 CP2104 PMC interface */ 201cddc9434SMartyn Welch { USB_DEVICE(0x1901, 0x0194) }, /* GE Healthcare Remote Alarm Box */ 2029a593656SKen Lin { USB_DEVICE(0x1901, 0x0195) }, /* GE B850/B650/B450 CP2104 DP UART interface */ 2039a593656SKen Lin { USB_DEVICE(0x1901, 0x0196) }, /* GE B850 CP2105 DP UART interface */ 2043c4c615dSVittorio Alfieri { USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */ 205b579fa52SBarry Grussling { USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */ 206b9326057SAndras Kovacs { USB_DEVICE(0x1B1C, 0x1C00) }, /* Corsair USB Dongle */ 20735cc83eaSNathaniel Ting { USB_DEVICE(0x1BA4, 0x0002) }, /* Silicon Labs 358x factory default */ 20893ad03d6SAnders Larsen { USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */ 209dee80ad1SAndreas Bomholtz { USB_DEVICE(0x1D6F, 0x0010) }, /* Seluxit ApS RF Dongle */ 2103fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */ 2113fcc8f96SCraig Shelley { USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */ 212be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */ 213be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */ 214be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */ 215be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */ 216be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */ 217be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */ 218be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */ 219be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */ 220be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */ 221be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */ 222be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */ 223be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */ 224be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */ 225be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */ 226be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */ 227be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */ 228be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */ 229be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */ 230be3101c2SMatwey V. Kornilov { USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */ 231f98a7aa8SPeter Sanford { USB_DEVICE(0x2626, 0xEA60) }, /* Aruba Networks 7xxx USB Serial Console */ 232791b7d7cSRenato Caldas { USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */ 2333fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */ 2343fcc8f96SCraig Shelley { USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */ 2351e23aaceSKyle Roeschley { USB_DEVICE(0x3923, 0x7A0B) }, /* National Instruments USB Serial Console */ 236541e05ecSCraig Shelley { USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */ 23703ee2515SGreg Kroah-Hartman { } /* Terminating Entry */ 23803ee2515SGreg Kroah-Hartman }; 23903ee2515SGreg Kroah-Hartman 24003ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table); 24103ee2515SGreg Kroah-Hartman 242cf5276ceSMartyn Welch struct cp210x_serial_private { 243cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 244cf5276ceSMartyn Welch struct gpio_chip gc; 2456b7271d2SJohan Hovold bool gpio_registered; 246c8acfe0aSKaroly Pados u8 gpio_pushpull; 247c8acfe0aSKaroly Pados u8 gpio_altfunc; 248c8acfe0aSKaroly Pados u8 gpio_input; 249cf5276ceSMartyn Welch #endif 250cf5276ceSMartyn Welch u8 partnum; 25185bc2d91SJohanna Abrahamsson speed_t min_speed; 252d4706c05SJohan Hovold speed_t max_speed; 2537aecd7fcSJohan Hovold bool use_actual_rate; 254cf5276ceSMartyn Welch }; 255cf5276ceSMartyn Welch 256e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private { 257a5360a53SPreston Fick __u8 bInterfaceNumber; 258d0bf1ff0SKonstantin Shkolnyy bool has_swapped_line_ctl; 259a5360a53SPreston Fick }; 260a5360a53SPreston Fick 2614cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = { 26203ee2515SGreg Kroah-Hartman .driver = { 26303ee2515SGreg Kroah-Hartman .owner = THIS_MODULE, 2644cc27bd6SCraig Shelley .name = "cp210x", 26503ee2515SGreg Kroah-Hartman }, 26603ee2515SGreg Kroah-Hartman .id_table = id_table, 26703ee2515SGreg Kroah-Hartman .num_ports = 1, 268aea006b9SJohan Hovold .bulk_in_size = 256, 269d4e598f6SJohan Hovold .bulk_out_size = 256, 2704cc27bd6SCraig Shelley .open = cp210x_open, 2714cc27bd6SCraig Shelley .close = cp210x_close, 2724cc27bd6SCraig Shelley .break_ctl = cp210x_break_ctl, 2734cc27bd6SCraig Shelley .set_termios = cp210x_set_termios, 2746f923a01SKonstantin Shkolnyy .tx_empty = cp210x_tx_empty, 2754387b3dbSBrant Merryman .throttle = usb_serial_generic_throttle, 2764387b3dbSBrant Merryman .unthrottle = usb_serial_generic_unthrottle, 2774cc27bd6SCraig Shelley .tiocmget = cp210x_tiocmget, 2784cc27bd6SCraig Shelley .tiocmset = cp210x_tiocmset, 279cf5276ceSMartyn Welch .attach = cp210x_attach, 280cf5276ceSMartyn Welch .disconnect = cp210x_disconnect, 281cf5276ceSMartyn Welch .release = cp210x_release, 282e2ae67a3SKonstantin Shkolnyy .port_probe = cp210x_port_probe, 283e2ae67a3SKonstantin Shkolnyy .port_remove = cp210x_port_remove, 284d14fc1a7SLibor Pechacek .dtr_rts = cp210x_dtr_rts 28503ee2515SGreg Kroah-Hartman }; 28603ee2515SGreg Kroah-Hartman 28708a4f6bcSAlan Stern static struct usb_serial_driver * const serial_drivers[] = { 28808a4f6bcSAlan Stern &cp210x_device, NULL 28908a4f6bcSAlan Stern }; 29008a4f6bcSAlan Stern 29103ee2515SGreg Kroah-Hartman /* Config request types */ 29232445605SPreston Fick #define REQTYPE_HOST_TO_INTERFACE 0x41 29332445605SPreston Fick #define REQTYPE_INTERFACE_TO_HOST 0xc1 29432445605SPreston Fick #define REQTYPE_HOST_TO_DEVICE 0x40 29532445605SPreston Fick #define REQTYPE_DEVICE_TO_HOST 0xc0 29603ee2515SGreg Kroah-Hartman 29793ef1f1fSCraig Shelley /* Config request codes */ 29893ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE 0x00 29993ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV 0x01 30093ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV 0x02 30193ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL 0x03 30293ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL 0x04 30393ef1f1fSCraig Shelley #define CP210X_SET_BREAK 0x05 30493ef1f1fSCraig Shelley #define CP210X_IMM_CHAR 0x06 30593ef1f1fSCraig Shelley #define CP210X_SET_MHS 0x07 30693ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS 0x08 30793ef1f1fSCraig Shelley #define CP210X_SET_XON 0x09 30893ef1f1fSCraig Shelley #define CP210X_SET_XOFF 0x0A 30993ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK 0x0B 31093ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK 0x0C 31193ef1f1fSCraig Shelley #define CP210X_SET_CHAR 0x0D 31293ef1f1fSCraig Shelley #define CP210X_GET_CHARS 0x0E 31393ef1f1fSCraig Shelley #define CP210X_GET_PROPS 0x0F 31493ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS 0x10 31593ef1f1fSCraig Shelley #define CP210X_RESET 0x11 31693ef1f1fSCraig Shelley #define CP210X_PURGE 0x12 31793ef1f1fSCraig Shelley #define CP210X_SET_FLOW 0x13 31893ef1f1fSCraig Shelley #define CP210X_GET_FLOW 0x14 31993ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS 0x15 32093ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE 0x16 32193ef1f1fSCraig Shelley #define CP210X_SET_CHARS 0x19 3227f482fc8SPreston Fick #define CP210X_GET_BAUDRATE 0x1D 3237f482fc8SPreston Fick #define CP210X_SET_BAUDRATE 0x1E 324cf5276ceSMartyn Welch #define CP210X_VENDOR_SPECIFIC 0xFF 32503ee2515SGreg Kroah-Hartman 32693ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */ 32703ee2515SGreg Kroah-Hartman #define UART_ENABLE 0x0001 32803ee2515SGreg Kroah-Hartman #define UART_DISABLE 0x0000 32903ee2515SGreg Kroah-Hartman 33093ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */ 33103ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ 0x384000 33203ee2515SGreg Kroah-Hartman 33393ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */ 33403ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK 0X0f00 33503ee2515SGreg Kroah-Hartman #define BITS_DATA_5 0X0500 33603ee2515SGreg Kroah-Hartman #define BITS_DATA_6 0X0600 33703ee2515SGreg Kroah-Hartman #define BITS_DATA_7 0X0700 33803ee2515SGreg Kroah-Hartman #define BITS_DATA_8 0X0800 33903ee2515SGreg Kroah-Hartman #define BITS_DATA_9 0X0900 34003ee2515SGreg Kroah-Hartman 34103ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK 0x00f0 34203ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE 0x0000 34303ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD 0x0010 34403ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN 0x0020 34503ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK 0x0030 34603ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE 0x0040 34703ee2515SGreg Kroah-Hartman 34803ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK 0x000f 34903ee2515SGreg Kroah-Hartman #define BITS_STOP_1 0x0000 35003ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5 0x0001 35103ee2515SGreg Kroah-Hartman #define BITS_STOP_2 0x0002 35203ee2515SGreg Kroah-Hartman 35393ef1f1fSCraig Shelley /* CP210X_SET_BREAK */ 35472916791SCraig Shelley #define BREAK_ON 0x0001 35572916791SCraig Shelley #define BREAK_OFF 0x0000 35603ee2515SGreg Kroah-Hartman 35793ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */ 35803ee2515SGreg Kroah-Hartman #define CONTROL_DTR 0x0001 35903ee2515SGreg Kroah-Hartman #define CONTROL_RTS 0x0002 36003ee2515SGreg Kroah-Hartman #define CONTROL_CTS 0x0010 36103ee2515SGreg Kroah-Hartman #define CONTROL_DSR 0x0020 36203ee2515SGreg Kroah-Hartman #define CONTROL_RING 0x0040 36303ee2515SGreg Kroah-Hartman #define CONTROL_DCD 0x0080 36403ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR 0x0100 36503ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS 0x0200 36603ee2515SGreg Kroah-Hartman 367cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC values */ 368c8acfe0aSKaroly Pados #define CP210X_READ_2NCONFIG 0x000E 369cf5276ceSMartyn Welch #define CP210X_READ_LATCH 0x00C2 370cf5276ceSMartyn Welch #define CP210X_GET_PARTNUM 0x370B 371cf5276ceSMartyn Welch #define CP210X_GET_PORTCONFIG 0x370C 372cf5276ceSMartyn Welch #define CP210X_GET_DEVICEMODE 0x3711 373cf5276ceSMartyn Welch #define CP210X_WRITE_LATCH 0x37E1 374cf5276ceSMartyn Welch 375cf5276ceSMartyn Welch /* Part number definitions */ 376cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2101 0x01 377cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2102 0x02 378cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2103 0x03 379cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2104 0x04 380cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2105 0x05 381cf5276ceSMartyn Welch #define CP210X_PARTNUM_CP2108 0x08 3826f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN28 0x20 3836f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN24 0x21 3846f0bcf72SKaroly Pados #define CP210X_PARTNUM_CP2102N_QFN20 0x22 3857eac35eaSSebastian Frei #define CP210X_PARTNUM_UNKNOWN 0xFF 386cf5276ceSMartyn Welch 3876f923a01SKonstantin Shkolnyy /* CP210X_GET_COMM_STATUS returns these 0x13 bytes */ 3886f923a01SKonstantin Shkolnyy struct cp210x_comm_status { 3896f923a01SKonstantin Shkolnyy __le32 ulErrors; 3906f923a01SKonstantin Shkolnyy __le32 ulHoldReasons; 3916f923a01SKonstantin Shkolnyy __le32 ulAmountInInQueue; 3926f923a01SKonstantin Shkolnyy __le32 ulAmountInOutQueue; 3936f923a01SKonstantin Shkolnyy u8 bEofReceived; 3946f923a01SKonstantin Shkolnyy u8 bWaitForImmediate; 3956f923a01SKonstantin Shkolnyy u8 bReserved; 3966f923a01SKonstantin Shkolnyy } __packed; 3976f923a01SKonstantin Shkolnyy 39803ee2515SGreg Kroah-Hartman /* 399ebfb319bSKonstantin Shkolnyy * CP210X_PURGE - 16 bits passed in wValue of USB request. 400ebfb319bSKonstantin Shkolnyy * SiLabs app note AN571 gives a strange description of the 4 bits: 401ebfb319bSKonstantin Shkolnyy * bit 0 or bit 2 clears the transmit queue and 1 or 3 receive. 402ebfb319bSKonstantin Shkolnyy * writing 1 to all, however, purges cp2108 well enough to avoid the hang. 403ebfb319bSKonstantin Shkolnyy */ 404ebfb319bSKonstantin Shkolnyy #define PURGE_ALL 0x000f 405ebfb319bSKonstantin Shkolnyy 4069034389cSKonstantin Shkolnyy /* CP210X_GET_FLOW/CP210X_SET_FLOW read/write these 0x10 bytes */ 4079034389cSKonstantin Shkolnyy struct cp210x_flow_ctl { 4089034389cSKonstantin Shkolnyy __le32 ulControlHandshake; 4099034389cSKonstantin Shkolnyy __le32 ulFlowReplace; 4109034389cSKonstantin Shkolnyy __le32 ulXonLimit; 4119034389cSKonstantin Shkolnyy __le32 ulXoffLimit; 4129034389cSKonstantin Shkolnyy } __packed; 4139034389cSKonstantin Shkolnyy 4149034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulControlHandshake */ 4159034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_MASK GENMASK(1, 0) 4169034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_SHIFT(_mode) (_mode) 4179034389cSKonstantin Shkolnyy #define CP210X_SERIAL_CTS_HANDSHAKE BIT(3) 4189034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_HANDSHAKE BIT(4) 4199034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DCD_HANDSHAKE BIT(5) 4209034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DSR_SENSITIVITY BIT(6) 4219034389cSKonstantin Shkolnyy 4229034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulControlHandshake::CP210X_SERIAL_DTR_MASK */ 4239034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_INACTIVE 0 4249034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_ACTIVE 1 4259034389cSKonstantin Shkolnyy #define CP210X_SERIAL_DTR_FLOW_CTL 2 4269034389cSKonstantin Shkolnyy 4279034389cSKonstantin Shkolnyy /* cp210x_flow_ctl::ulFlowReplace */ 4289034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_TRANSMIT BIT(0) 4299034389cSKonstantin Shkolnyy #define CP210X_SERIAL_AUTO_RECEIVE BIT(1) 4309034389cSKonstantin Shkolnyy #define CP210X_SERIAL_ERROR_CHAR BIT(2) 4319034389cSKonstantin Shkolnyy #define CP210X_SERIAL_NULL_STRIPPING BIT(3) 4329034389cSKonstantin Shkolnyy #define CP210X_SERIAL_BREAK_CHAR BIT(4) 4339034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_MASK GENMASK(7, 6) 4349034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_SHIFT(_mode) (_mode << 6) 4359034389cSKonstantin Shkolnyy #define CP210X_SERIAL_XOFF_CONTINUE BIT(31) 4369034389cSKonstantin Shkolnyy 4379034389cSKonstantin Shkolnyy /* values for cp210x_flow_ctl::ulFlowReplace::CP210X_SERIAL_RTS_MASK */ 4389034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_INACTIVE 0 4399034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_ACTIVE 1 4409034389cSKonstantin Shkolnyy #define CP210X_SERIAL_RTS_FLOW_CTL 2 4419034389cSKonstantin Shkolnyy 442cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_GET_DEVICEMODE call reads these 0x2 bytes. */ 443cf5276ceSMartyn Welch struct cp210x_pin_mode { 444cf5276ceSMartyn Welch u8 eci; 445cf5276ceSMartyn Welch u8 sci; 446cf5276ceSMartyn Welch } __packed; 447cf5276ceSMartyn Welch 448cf5276ceSMartyn Welch #define CP210X_PIN_MODE_MODEM 0 449cf5276ceSMartyn Welch #define CP210X_PIN_MODE_GPIO BIT(0) 450cf5276ceSMartyn Welch 451cf5276ceSMartyn Welch /* 45215fb84b7SIcenowy Zheng * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xf bytes 45315fb84b7SIcenowy Zheng * on a CP2105 chip. Structure needs padding due to unused/unspecified bytes. 454cf5276ceSMartyn Welch */ 45515fb84b7SIcenowy Zheng struct cp210x_dual_port_config { 456cf5276ceSMartyn Welch __le16 gpio_mode; 457cf5276ceSMartyn Welch u8 __pad0[2]; 458cf5276ceSMartyn Welch __le16 reset_state; 459cf5276ceSMartyn Welch u8 __pad1[4]; 460cf5276ceSMartyn Welch __le16 suspend_state; 461cf5276ceSMartyn Welch u8 sci_cfg; 462cf5276ceSMartyn Welch u8 eci_cfg; 463cf5276ceSMartyn Welch u8 device_cfg; 464cf5276ceSMartyn Welch } __packed; 465cf5276ceSMartyn Welch 46615fb84b7SIcenowy Zheng /* 46715fb84b7SIcenowy Zheng * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0xd bytes 46815fb84b7SIcenowy Zheng * on a CP2104 chip. Structure needs padding due to unused/unspecified bytes. 46915fb84b7SIcenowy Zheng */ 47015fb84b7SIcenowy Zheng struct cp210x_single_port_config { 47115fb84b7SIcenowy Zheng __le16 gpio_mode; 47215fb84b7SIcenowy Zheng u8 __pad0[2]; 47315fb84b7SIcenowy Zheng __le16 reset_state; 47415fb84b7SIcenowy Zheng u8 __pad1[4]; 47515fb84b7SIcenowy Zheng __le16 suspend_state; 47615fb84b7SIcenowy Zheng u8 device_cfg; 47715fb84b7SIcenowy Zheng } __packed; 47815fb84b7SIcenowy Zheng 479cf5276ceSMartyn Welch /* GPIO modes */ 480cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_OFFSET 9 481cf5276ceSMartyn Welch #define CP210X_SCI_GPIO_MODE_MASK GENMASK(11, 9) 482cf5276ceSMartyn Welch 483cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_OFFSET 2 484cf5276ceSMartyn Welch #define CP210X_ECI_GPIO_MODE_MASK GENMASK(3, 2) 485cf5276ceSMartyn Welch 48615fb84b7SIcenowy Zheng #define CP210X_GPIO_MODE_OFFSET 8 48715fb84b7SIcenowy Zheng #define CP210X_GPIO_MODE_MASK GENMASK(11, 8) 48815fb84b7SIcenowy Zheng 489cf5276ceSMartyn Welch /* CP2105 port configuration values */ 490cf5276ceSMartyn Welch #define CP2105_GPIO0_TXLED_MODE BIT(0) 491cf5276ceSMartyn Welch #define CP2105_GPIO1_RXLED_MODE BIT(1) 492cf5276ceSMartyn Welch #define CP2105_GPIO1_RS485_MODE BIT(2) 493cf5276ceSMartyn Welch 49415fb84b7SIcenowy Zheng /* CP2104 port configuration values */ 49515fb84b7SIcenowy Zheng #define CP2104_GPIO0_TXLED_MODE BIT(0) 49615fb84b7SIcenowy Zheng #define CP2104_GPIO1_RXLED_MODE BIT(1) 49715fb84b7SIcenowy Zheng #define CP2104_GPIO2_RS485_MODE BIT(2) 49815fb84b7SIcenowy Zheng 499c8acfe0aSKaroly Pados /* CP2102N configuration array indices */ 500c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_CONFIG_VERSION_IDX 2 501c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_MODE_IDX 581 502c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_RSTLATCH_IDX 587 503c8acfe0aSKaroly Pados #define CP210X_2NCONFIG_GPIO_CONTROL_IDX 600 504c8acfe0aSKaroly Pados 505cf5276ceSMartyn Welch /* CP210X_VENDOR_SPECIFIC, CP210X_WRITE_LATCH call writes these 0x2 bytes. */ 506cf5276ceSMartyn Welch struct cp210x_gpio_write { 507cf5276ceSMartyn Welch u8 mask; 508cf5276ceSMartyn Welch u8 state; 509cf5276ceSMartyn Welch } __packed; 510cf5276ceSMartyn Welch 511cf5276ceSMartyn Welch /* 512cf5276ceSMartyn Welch * Helper to get interface number when we only have struct usb_serial. 513cf5276ceSMartyn Welch */ 514cf5276ceSMartyn Welch static u8 cp210x_interface_num(struct usb_serial *serial) 515cf5276ceSMartyn Welch { 516cf5276ceSMartyn Welch struct usb_host_interface *cur_altsetting; 517cf5276ceSMartyn Welch 518cf5276ceSMartyn Welch cur_altsetting = serial->interface->cur_altsetting; 519cf5276ceSMartyn Welch 520cf5276ceSMartyn Welch return cur_altsetting->desc.bInterfaceNumber; 521cf5276ceSMartyn Welch } 522cf5276ceSMartyn Welch 52303ee2515SGreg Kroah-Hartman /* 52419165b2bSKonstantin Shkolnyy * Reads a variable-sized block of CP210X_ registers, identified by req. 52519165b2bSKonstantin Shkolnyy * Returns data into buf in native USB byte order. 52603ee2515SGreg Kroah-Hartman */ 52719165b2bSKonstantin Shkolnyy static int cp210x_read_reg_block(struct usb_serial_port *port, u8 req, 52819165b2bSKonstantin Shkolnyy void *buf, int bufsize) 52903ee2515SGreg Kroah-Hartman { 53003ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 531e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 53219165b2bSKonstantin Shkolnyy void *dmabuf; 53319165b2bSKonstantin Shkolnyy int result; 53403ee2515SGreg Kroah-Hartman 53519165b2bSKonstantin Shkolnyy dmabuf = kmalloc(bufsize, GFP_KERNEL); 53619165b2bSKonstantin Shkolnyy if (!dmabuf) { 53719165b2bSKonstantin Shkolnyy /* 53819165b2bSKonstantin Shkolnyy * FIXME Some callers don't bother to check for error, 53919165b2bSKonstantin Shkolnyy * at least give them consistent junk until they are fixed 54019165b2bSKonstantin Shkolnyy */ 54119165b2bSKonstantin Shkolnyy memset(buf, 0, bufsize); 54203ee2515SGreg Kroah-Hartman return -ENOMEM; 54319165b2bSKonstantin Shkolnyy } 54403ee2515SGreg Kroah-Hartman 54503ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 54619165b2bSKonstantin Shkolnyy req, REQTYPE_INTERFACE_TO_HOST, 0, 54719165b2bSKonstantin Shkolnyy port_priv->bInterfaceNumber, dmabuf, bufsize, 54819165b2bSKonstantin Shkolnyy USB_CTRL_SET_TIMEOUT); 54919165b2bSKonstantin Shkolnyy if (result == bufsize) { 55019165b2bSKonstantin Shkolnyy memcpy(buf, dmabuf, bufsize); 55119165b2bSKonstantin Shkolnyy result = 0; 55219165b2bSKonstantin Shkolnyy } else { 55319165b2bSKonstantin Shkolnyy dev_err(&port->dev, "failed get req 0x%x size %d status: %d\n", 55419165b2bSKonstantin Shkolnyy req, bufsize, result); 55519165b2bSKonstantin Shkolnyy if (result >= 0) 5560407f1ceSJohan Hovold result = -EIO; 5572479e2a9SJohan Hovold 55819165b2bSKonstantin Shkolnyy /* 55919165b2bSKonstantin Shkolnyy * FIXME Some callers don't bother to check for error, 56019165b2bSKonstantin Shkolnyy * at least give them consistent junk until they are fixed 56119165b2bSKonstantin Shkolnyy */ 56219165b2bSKonstantin Shkolnyy memset(buf, 0, bufsize); 56319165b2bSKonstantin Shkolnyy } 56419165b2bSKonstantin Shkolnyy 56519165b2bSKonstantin Shkolnyy kfree(dmabuf); 56619165b2bSKonstantin Shkolnyy 5672479e2a9SJohan Hovold return result; 56803ee2515SGreg Kroah-Hartman } 56903ee2515SGreg Kroah-Hartman 57019165b2bSKonstantin Shkolnyy /* 571fe1b07e9SKonstantin Shkolnyy * Reads any 32-bit CP210X_ register identified by req. 572fe1b07e9SKonstantin Shkolnyy */ 573fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u32_reg(struct usb_serial_port *port, u8 req, u32 *val) 574fe1b07e9SKonstantin Shkolnyy { 575fe1b07e9SKonstantin Shkolnyy __le32 le32_val; 576fe1b07e9SKonstantin Shkolnyy int err; 577fe1b07e9SKonstantin Shkolnyy 578fe1b07e9SKonstantin Shkolnyy err = cp210x_read_reg_block(port, req, &le32_val, sizeof(le32_val)); 579fe1b07e9SKonstantin Shkolnyy if (err) { 580fe1b07e9SKonstantin Shkolnyy /* 581fe1b07e9SKonstantin Shkolnyy * FIXME Some callers don't bother to check for error, 582fe1b07e9SKonstantin Shkolnyy * at least give them consistent junk until they are fixed 583fe1b07e9SKonstantin Shkolnyy */ 584fe1b07e9SKonstantin Shkolnyy *val = 0; 585fe1b07e9SKonstantin Shkolnyy return err; 586fe1b07e9SKonstantin Shkolnyy } 587fe1b07e9SKonstantin Shkolnyy 588fe1b07e9SKonstantin Shkolnyy *val = le32_to_cpu(le32_val); 589fe1b07e9SKonstantin Shkolnyy 59003ee2515SGreg Kroah-Hartman return 0; 59103ee2515SGreg Kroah-Hartman } 59203ee2515SGreg Kroah-Hartman 59303ee2515SGreg Kroah-Hartman /* 59419165b2bSKonstantin Shkolnyy * Reads any 16-bit CP210X_ register identified by req. 59503ee2515SGreg Kroah-Hartman */ 59619165b2bSKonstantin Shkolnyy static int cp210x_read_u16_reg(struct usb_serial_port *port, u8 req, u16 *val) 59719165b2bSKonstantin Shkolnyy { 59819165b2bSKonstantin Shkolnyy __le16 le16_val; 59919165b2bSKonstantin Shkolnyy int err; 60019165b2bSKonstantin Shkolnyy 60119165b2bSKonstantin Shkolnyy err = cp210x_read_reg_block(port, req, &le16_val, sizeof(le16_val)); 60219165b2bSKonstantin Shkolnyy if (err) 60319165b2bSKonstantin Shkolnyy return err; 60419165b2bSKonstantin Shkolnyy 60519165b2bSKonstantin Shkolnyy *val = le16_to_cpu(le16_val); 606fe1b07e9SKonstantin Shkolnyy 60719165b2bSKonstantin Shkolnyy return 0; 60819165b2bSKonstantin Shkolnyy } 60919165b2bSKonstantin Shkolnyy 61019165b2bSKonstantin Shkolnyy /* 611fe1b07e9SKonstantin Shkolnyy * Reads any 8-bit CP210X_ register identified by req. 612fe1b07e9SKonstantin Shkolnyy */ 613fe1b07e9SKonstantin Shkolnyy static int cp210x_read_u8_reg(struct usb_serial_port *port, u8 req, u8 *val) 614fe1b07e9SKonstantin Shkolnyy { 615fe1b07e9SKonstantin Shkolnyy return cp210x_read_reg_block(port, req, val, sizeof(*val)); 616fe1b07e9SKonstantin Shkolnyy } 617fe1b07e9SKonstantin Shkolnyy 618fe1b07e9SKonstantin Shkolnyy /* 619cf5276ceSMartyn Welch * Reads a variable-sized vendor block of CP210X_ registers, identified by val. 620cf5276ceSMartyn Welch * Returns data into buf in native USB byte order. 621cf5276ceSMartyn Welch */ 622cf5276ceSMartyn Welch static int cp210x_read_vendor_block(struct usb_serial *serial, u8 type, u16 val, 623cf5276ceSMartyn Welch void *buf, int bufsize) 624cf5276ceSMartyn Welch { 625cf5276ceSMartyn Welch void *dmabuf; 626cf5276ceSMartyn Welch int result; 627cf5276ceSMartyn Welch 628cf5276ceSMartyn Welch dmabuf = kmalloc(bufsize, GFP_KERNEL); 629cf5276ceSMartyn Welch if (!dmabuf) 630cf5276ceSMartyn Welch return -ENOMEM; 631cf5276ceSMartyn Welch 632cf5276ceSMartyn Welch result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 633cf5276ceSMartyn Welch CP210X_VENDOR_SPECIFIC, type, val, 634cf5276ceSMartyn Welch cp210x_interface_num(serial), dmabuf, bufsize, 635cf5276ceSMartyn Welch USB_CTRL_GET_TIMEOUT); 636cf5276ceSMartyn Welch if (result == bufsize) { 637cf5276ceSMartyn Welch memcpy(buf, dmabuf, bufsize); 638cf5276ceSMartyn Welch result = 0; 639cf5276ceSMartyn Welch } else { 640cf5276ceSMartyn Welch dev_err(&serial->interface->dev, 641cf5276ceSMartyn Welch "failed to get vendor val 0x%04x size %d: %d\n", val, 642cf5276ceSMartyn Welch bufsize, result); 643cf5276ceSMartyn Welch if (result >= 0) 644cf5276ceSMartyn Welch result = -EIO; 645cf5276ceSMartyn Welch } 646cf5276ceSMartyn Welch 647cf5276ceSMartyn Welch kfree(dmabuf); 648cf5276ceSMartyn Welch 649cf5276ceSMartyn Welch return result; 650cf5276ceSMartyn Welch } 651cf5276ceSMartyn Welch 652cf5276ceSMartyn Welch /* 65319165b2bSKonstantin Shkolnyy * Writes any 16-bit CP210X_ register (req) whose value is passed 65419165b2bSKonstantin Shkolnyy * entirely in the wValue field of the USB request. 65519165b2bSKonstantin Shkolnyy */ 65619165b2bSKonstantin Shkolnyy static int cp210x_write_u16_reg(struct usb_serial_port *port, u8 req, u16 val) 65703ee2515SGreg Kroah-Hartman { 65803ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 659e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 66019165b2bSKonstantin Shkolnyy int result; 66103ee2515SGreg Kroah-Hartman 66219165b2bSKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 66319165b2bSKonstantin Shkolnyy req, REQTYPE_HOST_TO_INTERFACE, val, 664e2ae67a3SKonstantin Shkolnyy port_priv->bInterfaceNumber, NULL, 0, 6652d5733fcSYuri Matylitski USB_CTRL_SET_TIMEOUT); 66619165b2bSKonstantin Shkolnyy if (result < 0) { 66719165b2bSKonstantin Shkolnyy dev_err(&port->dev, "failed set request 0x%x status: %d\n", 66819165b2bSKonstantin Shkolnyy req, result); 66903ee2515SGreg Kroah-Hartman } 67003ee2515SGreg Kroah-Hartman 6712479e2a9SJohan Hovold return result; 67203ee2515SGreg Kroah-Hartman } 67303ee2515SGreg Kroah-Hartman 67403ee2515SGreg Kroah-Hartman /* 675fe1b07e9SKonstantin Shkolnyy * Writes a variable-sized block of CP210X_ registers, identified by req. 676fe1b07e9SKonstantin Shkolnyy * Data in buf must be in native USB byte order. 677fe1b07e9SKonstantin Shkolnyy */ 678fe1b07e9SKonstantin Shkolnyy static int cp210x_write_reg_block(struct usb_serial_port *port, u8 req, 679fe1b07e9SKonstantin Shkolnyy void *buf, int bufsize) 680fe1b07e9SKonstantin Shkolnyy { 681fe1b07e9SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 682fe1b07e9SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 683fe1b07e9SKonstantin Shkolnyy void *dmabuf; 684fe1b07e9SKonstantin Shkolnyy int result; 685fe1b07e9SKonstantin Shkolnyy 686d6c4dc3bSMuhammad Falak R Wani dmabuf = kmemdup(buf, bufsize, GFP_KERNEL); 687fe1b07e9SKonstantin Shkolnyy if (!dmabuf) 688fe1b07e9SKonstantin Shkolnyy return -ENOMEM; 689fe1b07e9SKonstantin Shkolnyy 690fe1b07e9SKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 691fe1b07e9SKonstantin Shkolnyy req, REQTYPE_HOST_TO_INTERFACE, 0, 692fe1b07e9SKonstantin Shkolnyy port_priv->bInterfaceNumber, dmabuf, bufsize, 693fe1b07e9SKonstantin Shkolnyy USB_CTRL_SET_TIMEOUT); 694fe1b07e9SKonstantin Shkolnyy 695fe1b07e9SKonstantin Shkolnyy kfree(dmabuf); 696fe1b07e9SKonstantin Shkolnyy 697fe1b07e9SKonstantin Shkolnyy if (result == bufsize) { 698fe1b07e9SKonstantin Shkolnyy result = 0; 699fe1b07e9SKonstantin Shkolnyy } else { 700fe1b07e9SKonstantin Shkolnyy dev_err(&port->dev, "failed set req 0x%x size %d status: %d\n", 701fe1b07e9SKonstantin Shkolnyy req, bufsize, result); 702fe1b07e9SKonstantin Shkolnyy if (result >= 0) 7030407f1ceSJohan Hovold result = -EIO; 704fe1b07e9SKonstantin Shkolnyy } 705fe1b07e9SKonstantin Shkolnyy 706fe1b07e9SKonstantin Shkolnyy return result; 70703ee2515SGreg Kroah-Hartman } 70803ee2515SGreg Kroah-Hartman 70903ee2515SGreg Kroah-Hartman /* 710fe1b07e9SKonstantin Shkolnyy * Writes any 32-bit CP210X_ register identified by req. 71103ee2515SGreg Kroah-Hartman */ 712fe1b07e9SKonstantin Shkolnyy static int cp210x_write_u32_reg(struct usb_serial_port *port, u8 req, u32 val) 71303ee2515SGreg Kroah-Hartman { 714fe1b07e9SKonstantin Shkolnyy __le32 le32_val; 715fe1b07e9SKonstantin Shkolnyy 716fe1b07e9SKonstantin Shkolnyy le32_val = cpu_to_le32(val); 717fe1b07e9SKonstantin Shkolnyy 718fe1b07e9SKonstantin Shkolnyy return cp210x_write_reg_block(port, req, &le32_val, sizeof(le32_val)); 71903ee2515SGreg Kroah-Hartman } 72003ee2515SGreg Kroah-Hartman 721cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 722cf5276ceSMartyn Welch /* 723cf5276ceSMartyn Welch * Writes a variable-sized vendor block of CP210X_ registers, identified by val. 724cf5276ceSMartyn Welch * Data in buf must be in native USB byte order. 725cf5276ceSMartyn Welch */ 726cf5276ceSMartyn Welch static int cp210x_write_vendor_block(struct usb_serial *serial, u8 type, 727cf5276ceSMartyn Welch u16 val, void *buf, int bufsize) 728cf5276ceSMartyn Welch { 729cf5276ceSMartyn Welch void *dmabuf; 730cf5276ceSMartyn Welch int result; 731cf5276ceSMartyn Welch 732cf5276ceSMartyn Welch dmabuf = kmemdup(buf, bufsize, GFP_KERNEL); 733cf5276ceSMartyn Welch if (!dmabuf) 734cf5276ceSMartyn Welch return -ENOMEM; 735cf5276ceSMartyn Welch 736cf5276ceSMartyn Welch result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), 737cf5276ceSMartyn Welch CP210X_VENDOR_SPECIFIC, type, val, 738cf5276ceSMartyn Welch cp210x_interface_num(serial), dmabuf, bufsize, 739cf5276ceSMartyn Welch USB_CTRL_SET_TIMEOUT); 740cf5276ceSMartyn Welch 741cf5276ceSMartyn Welch kfree(dmabuf); 742cf5276ceSMartyn Welch 743cf5276ceSMartyn Welch if (result == bufsize) { 744cf5276ceSMartyn Welch result = 0; 745cf5276ceSMartyn Welch } else { 746cf5276ceSMartyn Welch dev_err(&serial->interface->dev, 747cf5276ceSMartyn Welch "failed to set vendor val 0x%04x size %d: %d\n", val, 748cf5276ceSMartyn Welch bufsize, result); 749cf5276ceSMartyn Welch if (result >= 0) 750cf5276ceSMartyn Welch result = -EIO; 751cf5276ceSMartyn Welch } 752cf5276ceSMartyn Welch 753cf5276ceSMartyn Welch return result; 754cf5276ceSMartyn Welch } 755cf5276ceSMartyn Welch #endif 756cf5276ceSMartyn Welch 75703ee2515SGreg Kroah-Hartman /* 758d0bf1ff0SKonstantin Shkolnyy * Detect CP2108 GET_LINE_CTL bug and activate workaround. 759d0bf1ff0SKonstantin Shkolnyy * Write a known good value 0x800, read it back. 760d0bf1ff0SKonstantin Shkolnyy * If it comes back swapped the bug is detected. 761d0bf1ff0SKonstantin Shkolnyy * Preserve the original register value. 762d0bf1ff0SKonstantin Shkolnyy */ 763d0bf1ff0SKonstantin Shkolnyy static int cp210x_detect_swapped_line_ctl(struct usb_serial_port *port) 764d0bf1ff0SKonstantin Shkolnyy { 765d0bf1ff0SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 76619165b2bSKonstantin Shkolnyy u16 line_ctl_save; 76719165b2bSKonstantin Shkolnyy u16 line_ctl_test; 768d0bf1ff0SKonstantin Shkolnyy int err; 769d0bf1ff0SKonstantin Shkolnyy 77019165b2bSKonstantin Shkolnyy err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_save); 771d0bf1ff0SKonstantin Shkolnyy if (err) 772d0bf1ff0SKonstantin Shkolnyy return err; 773d0bf1ff0SKonstantin Shkolnyy 77419165b2bSKonstantin Shkolnyy err = cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, 0x800); 775d0bf1ff0SKonstantin Shkolnyy if (err) 776d0bf1ff0SKonstantin Shkolnyy return err; 777d0bf1ff0SKonstantin Shkolnyy 77819165b2bSKonstantin Shkolnyy err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, &line_ctl_test); 779d0bf1ff0SKonstantin Shkolnyy if (err) 780d0bf1ff0SKonstantin Shkolnyy return err; 781d0bf1ff0SKonstantin Shkolnyy 782d0bf1ff0SKonstantin Shkolnyy if (line_ctl_test == 8) { 783d0bf1ff0SKonstantin Shkolnyy port_priv->has_swapped_line_ctl = true; 78419165b2bSKonstantin Shkolnyy line_ctl_save = swab16(line_ctl_save); 785d0bf1ff0SKonstantin Shkolnyy } 786d0bf1ff0SKonstantin Shkolnyy 78719165b2bSKonstantin Shkolnyy return cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, line_ctl_save); 788d0bf1ff0SKonstantin Shkolnyy } 789d0bf1ff0SKonstantin Shkolnyy 790d0bf1ff0SKonstantin Shkolnyy /* 79119165b2bSKonstantin Shkolnyy * Must always be called instead of cp210x_read_u16_reg(CP210X_GET_LINE_CTL) 792d0bf1ff0SKonstantin Shkolnyy * to workaround cp2108 bug and get correct value. 793d0bf1ff0SKonstantin Shkolnyy */ 79419165b2bSKonstantin Shkolnyy static int cp210x_get_line_ctl(struct usb_serial_port *port, u16 *ctl) 795d0bf1ff0SKonstantin Shkolnyy { 796d0bf1ff0SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 797d0bf1ff0SKonstantin Shkolnyy int err; 798d0bf1ff0SKonstantin Shkolnyy 79919165b2bSKonstantin Shkolnyy err = cp210x_read_u16_reg(port, CP210X_GET_LINE_CTL, ctl); 800d0bf1ff0SKonstantin Shkolnyy if (err) 801d0bf1ff0SKonstantin Shkolnyy return err; 802d0bf1ff0SKonstantin Shkolnyy 803d0bf1ff0SKonstantin Shkolnyy /* Workaround swapped bytes in 16-bit value from CP210X_GET_LINE_CTL */ 804d0bf1ff0SKonstantin Shkolnyy if (port_priv->has_swapped_line_ctl) 80519165b2bSKonstantin Shkolnyy *ctl = swab16(*ctl); 806d0bf1ff0SKonstantin Shkolnyy 807d0bf1ff0SKonstantin Shkolnyy return 0; 808d0bf1ff0SKonstantin Shkolnyy } 809d0bf1ff0SKonstantin Shkolnyy 810a509a7e4SAlan Cox static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port) 81103ee2515SGreg Kroah-Hartman { 81203ee2515SGreg Kroah-Hartman int result; 81303ee2515SGreg Kroah-Hartman 81419165b2bSKonstantin Shkolnyy result = cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_ENABLE); 8152479e2a9SJohan Hovold if (result) { 8162479e2a9SJohan Hovold dev_err(&port->dev, "%s - Unable to enable UART\n", __func__); 8172479e2a9SJohan Hovold return result; 81803ee2515SGreg Kroah-Hartman } 81903ee2515SGreg Kroah-Hartman 82003ee2515SGreg Kroah-Hartman /* Configure the termios structure */ 8214cc27bd6SCraig Shelley cp210x_get_termios(tty, port); 82255b2afbbSJohan Hovold 823cdc32fd6SJohan Hovold /* The baud rate must be initialised on cp2104 */ 824cdc32fd6SJohan Hovold if (tty) 825cdc32fd6SJohan Hovold cp210x_change_speed(tty, port, NULL); 826cdc32fd6SJohan Hovold 82755b2afbbSJohan Hovold return usb_serial_generic_open(tty, port); 82803ee2515SGreg Kroah-Hartman } 82903ee2515SGreg Kroah-Hartman 8304cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port) 83103ee2515SGreg Kroah-Hartman { 832f26788daSJohan Hovold usb_serial_generic_close(port); 833ebfb319bSKonstantin Shkolnyy 834ebfb319bSKonstantin Shkolnyy /* Clear both queues; cp2108 needs this to avoid an occasional hang */ 83519165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_PURGE, PURGE_ALL); 836ebfb319bSKonstantin Shkolnyy 83719165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_IFC_ENABLE, UART_DISABLE); 83803ee2515SGreg Kroah-Hartman } 83903ee2515SGreg Kroah-Hartman 84003ee2515SGreg Kroah-Hartman /* 8416f923a01SKonstantin Shkolnyy * Read how many bytes are waiting in the TX queue. 8426f923a01SKonstantin Shkolnyy */ 8436f923a01SKonstantin Shkolnyy static int cp210x_get_tx_queue_byte_count(struct usb_serial_port *port, 8446f923a01SKonstantin Shkolnyy u32 *count) 8456f923a01SKonstantin Shkolnyy { 8466f923a01SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 8476f923a01SKonstantin Shkolnyy struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); 8486f923a01SKonstantin Shkolnyy struct cp210x_comm_status *sts; 8496f923a01SKonstantin Shkolnyy int result; 8506f923a01SKonstantin Shkolnyy 8516f923a01SKonstantin Shkolnyy sts = kmalloc(sizeof(*sts), GFP_KERNEL); 8526f923a01SKonstantin Shkolnyy if (!sts) 8536f923a01SKonstantin Shkolnyy return -ENOMEM; 8546f923a01SKonstantin Shkolnyy 8556f923a01SKonstantin Shkolnyy result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 8566f923a01SKonstantin Shkolnyy CP210X_GET_COMM_STATUS, REQTYPE_INTERFACE_TO_HOST, 8576f923a01SKonstantin Shkolnyy 0, port_priv->bInterfaceNumber, sts, sizeof(*sts), 8586f923a01SKonstantin Shkolnyy USB_CTRL_GET_TIMEOUT); 8596f923a01SKonstantin Shkolnyy if (result == sizeof(*sts)) { 8606f923a01SKonstantin Shkolnyy *count = le32_to_cpu(sts->ulAmountInOutQueue); 8616f923a01SKonstantin Shkolnyy result = 0; 8626f923a01SKonstantin Shkolnyy } else { 8636f923a01SKonstantin Shkolnyy dev_err(&port->dev, "failed to get comm status: %d\n", result); 8646f923a01SKonstantin Shkolnyy if (result >= 0) 8650407f1ceSJohan Hovold result = -EIO; 8666f923a01SKonstantin Shkolnyy } 8676f923a01SKonstantin Shkolnyy 8686f923a01SKonstantin Shkolnyy kfree(sts); 8696f923a01SKonstantin Shkolnyy 8706f923a01SKonstantin Shkolnyy return result; 8716f923a01SKonstantin Shkolnyy } 8726f923a01SKonstantin Shkolnyy 8736f923a01SKonstantin Shkolnyy static bool cp210x_tx_empty(struct usb_serial_port *port) 8746f923a01SKonstantin Shkolnyy { 8756f923a01SKonstantin Shkolnyy int err; 8766f923a01SKonstantin Shkolnyy u32 count; 8776f923a01SKonstantin Shkolnyy 8786f923a01SKonstantin Shkolnyy err = cp210x_get_tx_queue_byte_count(port, &count); 8796f923a01SKonstantin Shkolnyy if (err) 8806f923a01SKonstantin Shkolnyy return true; 8816f923a01SKonstantin Shkolnyy 8826f923a01SKonstantin Shkolnyy return !count; 8836f923a01SKonstantin Shkolnyy } 8846f923a01SKonstantin Shkolnyy 8856f923a01SKonstantin Shkolnyy /* 8864cc27bd6SCraig Shelley * cp210x_get_termios 88703ee2515SGreg Kroah-Hartman * Reads the baud rate, data bits, parity, stop bits and flow control mode 88803ee2515SGreg Kroah-Hartman * from the device, corrects any unsupported values, and configures the 88903ee2515SGreg Kroah-Hartman * termios structure to reflect the state of the device 89003ee2515SGreg Kroah-Hartman */ 8914cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *tty, 892d2ad67b3SVomLehn struct usb_serial_port *port) 89303ee2515SGreg Kroah-Hartman { 894d2ad67b3SVomLehn unsigned int baud; 895d2ad67b3SVomLehn 896d2ad67b3SVomLehn if (tty) { 8974cc27bd6SCraig Shelley cp210x_get_termios_port(tty->driver_data, 898adc8d746SAlan Cox &tty->termios.c_cflag, &baud); 899d2ad67b3SVomLehn tty_encode_baud_rate(tty, baud, baud); 9004f2ab888SJohan Hovold } else { 901009615abSGeert Uytterhoeven tcflag_t cflag; 902d2ad67b3SVomLehn cflag = 0; 9034cc27bd6SCraig Shelley cp210x_get_termios_port(port, &cflag, &baud); 904d2ad67b3SVomLehn } 905d2ad67b3SVomLehn } 906d2ad67b3SVomLehn 907d2ad67b3SVomLehn /* 9084cc27bd6SCraig Shelley * cp210x_get_termios_port 9094cc27bd6SCraig Shelley * This is the heart of cp210x_get_termios which always uses a &usb_serial_port. 910d2ad67b3SVomLehn */ 9114cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port, 912009615abSGeert Uytterhoeven tcflag_t *cflagp, unsigned int *baudp) 913d2ad67b3SVomLehn { 914660f3b14SGreg Kroah-Hartman struct device *dev = &port->dev; 915009615abSGeert Uytterhoeven tcflag_t cflag; 9169034389cSKonstantin Shkolnyy struct cp210x_flow_ctl flow_ctl; 917fe1b07e9SKonstantin Shkolnyy u32 baud; 91819165b2bSKonstantin Shkolnyy u16 bits; 9199034389cSKonstantin Shkolnyy u32 ctl_hs; 920*c7614ff9SBrant Merryman u32 flow_repl; 92103ee2515SGreg Kroah-Hartman 922fe1b07e9SKonstantin Shkolnyy cp210x_read_u32_reg(port, CP210X_GET_BAUDRATE, &baud); 92303ee2515SGreg Kroah-Hartman 924660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - baud rate = %d\n", __func__, baud); 925d2ad67b3SVomLehn *baudp = baud; 92603ee2515SGreg Kroah-Hartman 927d2ad67b3SVomLehn cflag = *cflagp; 92803ee2515SGreg Kroah-Hartman 929d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 93003ee2515SGreg Kroah-Hartman cflag &= ~CSIZE; 93103ee2515SGreg Kroah-Hartman switch (bits & BITS_DATA_MASK) { 93203ee2515SGreg Kroah-Hartman case BITS_DATA_5: 933660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 5\n", __func__); 93403ee2515SGreg Kroah-Hartman cflag |= CS5; 93503ee2515SGreg Kroah-Hartman break; 93603ee2515SGreg Kroah-Hartman case BITS_DATA_6: 937660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 6\n", __func__); 93803ee2515SGreg Kroah-Hartman cflag |= CS6; 93903ee2515SGreg Kroah-Hartman break; 94003ee2515SGreg Kroah-Hartman case BITS_DATA_7: 941660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 7\n", __func__); 94203ee2515SGreg Kroah-Hartman cflag |= CS7; 94303ee2515SGreg Kroah-Hartman break; 94403ee2515SGreg Kroah-Hartman case BITS_DATA_8: 945660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 8\n", __func__); 94603ee2515SGreg Kroah-Hartman cflag |= CS8; 94703ee2515SGreg Kroah-Hartman break; 94803ee2515SGreg Kroah-Hartman case BITS_DATA_9: 949660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 9 (not supported, using 8 data bits)\n", __func__); 95003ee2515SGreg Kroah-Hartman cflag |= CS8; 95103ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 95203ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 95319165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 95403ee2515SGreg Kroah-Hartman break; 95503ee2515SGreg Kroah-Hartman default: 956660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown number of data bits, using 8\n", __func__); 95703ee2515SGreg Kroah-Hartman cflag |= CS8; 95803ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 95903ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 96019165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 96103ee2515SGreg Kroah-Hartman break; 96203ee2515SGreg Kroah-Hartman } 96303ee2515SGreg Kroah-Hartman 96403ee2515SGreg Kroah-Hartman switch (bits & BITS_PARITY_MASK) { 96503ee2515SGreg Kroah-Hartman case BITS_PARITY_NONE: 966660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = NONE\n", __func__); 96703ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 96803ee2515SGreg Kroah-Hartman break; 96903ee2515SGreg Kroah-Hartman case BITS_PARITY_ODD: 970660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = ODD\n", __func__); 97103ee2515SGreg Kroah-Hartman cflag |= (PARENB|PARODD); 97203ee2515SGreg Kroah-Hartman break; 97303ee2515SGreg Kroah-Hartman case BITS_PARITY_EVEN: 974660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = EVEN\n", __func__); 97503ee2515SGreg Kroah-Hartman cflag &= ~PARODD; 97603ee2515SGreg Kroah-Hartman cflag |= PARENB; 97703ee2515SGreg Kroah-Hartman break; 97803ee2515SGreg Kroah-Hartman case BITS_PARITY_MARK: 979660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = MARK\n", __func__); 9804b6181caSRoland Koebler cflag |= (PARENB|PARODD|CMSPAR); 98103ee2515SGreg Kroah-Hartman break; 98203ee2515SGreg Kroah-Hartman case BITS_PARITY_SPACE: 983660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = SPACE\n", __func__); 9844b6181caSRoland Koebler cflag &= ~PARODD; 9854b6181caSRoland Koebler cflag |= (PARENB|CMSPAR); 98603ee2515SGreg Kroah-Hartman break; 98703ee2515SGreg Kroah-Hartman default: 988660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown parity mode, disabling parity\n", __func__); 98903ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 99003ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 99119165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 99203ee2515SGreg Kroah-Hartman break; 99303ee2515SGreg Kroah-Hartman } 99403ee2515SGreg Kroah-Hartman 99503ee2515SGreg Kroah-Hartman cflag &= ~CSTOPB; 99603ee2515SGreg Kroah-Hartman switch (bits & BITS_STOP_MASK) { 99703ee2515SGreg Kroah-Hartman case BITS_STOP_1: 998660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1\n", __func__); 99903ee2515SGreg Kroah-Hartman break; 100003ee2515SGreg Kroah-Hartman case BITS_STOP_1_5: 1001660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1.5 (not supported, using 1 stop bit)\n", __func__); 100203ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 100319165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 100403ee2515SGreg Kroah-Hartman break; 100503ee2515SGreg Kroah-Hartman case BITS_STOP_2: 1006660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 2\n", __func__); 100703ee2515SGreg Kroah-Hartman cflag |= CSTOPB; 100803ee2515SGreg Kroah-Hartman break; 100903ee2515SGreg Kroah-Hartman default: 1010660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - Unknown number of stop bits, using 1 stop bit\n", __func__); 101103ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 101219165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits); 101303ee2515SGreg Kroah-Hartman break; 101403ee2515SGreg Kroah-Hartman } 101503ee2515SGreg Kroah-Hartman 10169034389cSKonstantin Shkolnyy cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl, 10179034389cSKonstantin Shkolnyy sizeof(flow_ctl)); 10189034389cSKonstantin Shkolnyy ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake); 10199034389cSKonstantin Shkolnyy if (ctl_hs & CP210X_SERIAL_CTS_HANDSHAKE) { 1020660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__); 1021*c7614ff9SBrant Merryman /* 1022*c7614ff9SBrant Merryman * When the port is closed, the CP210x hardware disables 1023*c7614ff9SBrant Merryman * auto-RTS and RTS is deasserted but it leaves auto-CTS when 1024*c7614ff9SBrant Merryman * in hardware flow control mode. When re-opening the port, if 1025*c7614ff9SBrant Merryman * auto-CTS is enabled on the cp210x, then auto-RTS must be 1026*c7614ff9SBrant Merryman * re-enabled in the driver. 1027*c7614ff9SBrant Merryman */ 1028*c7614ff9SBrant Merryman flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace); 1029*c7614ff9SBrant Merryman flow_repl &= ~CP210X_SERIAL_RTS_MASK; 1030*c7614ff9SBrant Merryman flow_repl |= CP210X_SERIAL_RTS_SHIFT(CP210X_SERIAL_RTS_FLOW_CTL); 1031*c7614ff9SBrant Merryman flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl); 1032*c7614ff9SBrant Merryman cp210x_write_reg_block(port, 1033*c7614ff9SBrant Merryman CP210X_SET_FLOW, 1034*c7614ff9SBrant Merryman &flow_ctl, 1035*c7614ff9SBrant Merryman sizeof(flow_ctl)); 1036*c7614ff9SBrant Merryman 103703ee2515SGreg Kroah-Hartman cflag |= CRTSCTS; 103803ee2515SGreg Kroah-Hartman } else { 1039660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = NONE\n", __func__); 104003ee2515SGreg Kroah-Hartman cflag &= ~CRTSCTS; 104103ee2515SGreg Kroah-Hartman } 104203ee2515SGreg Kroah-Hartman 1043d2ad67b3SVomLehn *cflagp = cflag; 104403ee2515SGreg Kroah-Hartman } 104503ee2515SGreg Kroah-Hartman 104695fd4f47SJohan Hovold struct cp210x_rate { 104795fd4f47SJohan Hovold speed_t rate; 104895fd4f47SJohan Hovold speed_t high; 104995fd4f47SJohan Hovold }; 105095fd4f47SJohan Hovold 105195fd4f47SJohan Hovold static const struct cp210x_rate cp210x_an205_table1[] = { 105295fd4f47SJohan Hovold { 300, 300 }, 105395fd4f47SJohan Hovold { 600, 600 }, 105495fd4f47SJohan Hovold { 1200, 1200 }, 105595fd4f47SJohan Hovold { 1800, 1800 }, 105695fd4f47SJohan Hovold { 2400, 2400 }, 105795fd4f47SJohan Hovold { 4000, 4000 }, 105895fd4f47SJohan Hovold { 4800, 4803 }, 105995fd4f47SJohan Hovold { 7200, 7207 }, 106095fd4f47SJohan Hovold { 9600, 9612 }, 106195fd4f47SJohan Hovold { 14400, 14428 }, 106295fd4f47SJohan Hovold { 16000, 16062 }, 106395fd4f47SJohan Hovold { 19200, 19250 }, 106495fd4f47SJohan Hovold { 28800, 28912 }, 106595fd4f47SJohan Hovold { 38400, 38601 }, 106695fd4f47SJohan Hovold { 51200, 51558 }, 106795fd4f47SJohan Hovold { 56000, 56280 }, 106895fd4f47SJohan Hovold { 57600, 58053 }, 106995fd4f47SJohan Hovold { 64000, 64111 }, 107095fd4f47SJohan Hovold { 76800, 77608 }, 107195fd4f47SJohan Hovold { 115200, 117028 }, 107295fd4f47SJohan Hovold { 128000, 129347 }, 107395fd4f47SJohan Hovold { 153600, 156868 }, 107495fd4f47SJohan Hovold { 230400, 237832 }, 107595fd4f47SJohan Hovold { 250000, 254234 }, 107695fd4f47SJohan Hovold { 256000, 273066 }, 107795fd4f47SJohan Hovold { 460800, 491520 }, 107895fd4f47SJohan Hovold { 500000, 567138 }, 107995fd4f47SJohan Hovold { 576000, 670254 }, 108095fd4f47SJohan Hovold { 921600, UINT_MAX } 108195fd4f47SJohan Hovold }; 108295fd4f47SJohan Hovold 108395fd4f47SJohan Hovold /* 108495fd4f47SJohan Hovold * Quantises the baud rate as per AN205 Table 1 108595fd4f47SJohan Hovold */ 108695fd4f47SJohan Hovold static speed_t cp210x_get_an205_rate(speed_t baud) 108795fd4f47SJohan Hovold { 108895fd4f47SJohan Hovold int i; 108995fd4f47SJohan Hovold 109095fd4f47SJohan Hovold for (i = 0; i < ARRAY_SIZE(cp210x_an205_table1); ++i) { 109195fd4f47SJohan Hovold if (baud <= cp210x_an205_table1[i].high) 109295fd4f47SJohan Hovold break; 109395fd4f47SJohan Hovold } 109495fd4f47SJohan Hovold 109595fd4f47SJohan Hovold return cp210x_an205_table1[i].rate; 109695fd4f47SJohan Hovold } 109795fd4f47SJohan Hovold 109885bc2d91SJohanna Abrahamsson static speed_t cp210x_get_actual_rate(speed_t baud) 10997aecd7fcSJohan Hovold { 11007aecd7fcSJohan Hovold unsigned int prescale = 1; 11017aecd7fcSJohan Hovold unsigned int div; 11027aecd7fcSJohan Hovold 11037aecd7fcSJohan Hovold if (baud <= 365) 11047aecd7fcSJohan Hovold prescale = 4; 11057aecd7fcSJohan Hovold 11067aecd7fcSJohan Hovold div = DIV_ROUND_CLOSEST(48000000, 2 * prescale * baud); 11077aecd7fcSJohan Hovold baud = 48000000 / (2 * prescale * div); 11087aecd7fcSJohan Hovold 11097aecd7fcSJohan Hovold return baud; 11107aecd7fcSJohan Hovold } 11117aecd7fcSJohan Hovold 1112e5990874SJohan Hovold /* 1113e5990874SJohan Hovold * CP2101 supports the following baud rates: 1114e5990874SJohan Hovold * 1115e5990874SJohan Hovold * 300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800, 1116e5990874SJohan Hovold * 38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600 1117e5990874SJohan Hovold * 1118e5990874SJohan Hovold * CP2102 and CP2103 support the following additional rates: 1119e5990874SJohan Hovold * 1120e5990874SJohan Hovold * 4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000, 1121e5990874SJohan Hovold * 576000 1122e5990874SJohan Hovold * 1123e5990874SJohan Hovold * The device will map a requested rate to a supported one, but the result 1124e5990874SJohan Hovold * of requests for rates greater than 1053257 is undefined (see AN205). 1125e5990874SJohan Hovold * 1126e5990874SJohan Hovold * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud, 1127e5990874SJohan Hovold * respectively, with an error less than 1%. The actual rates are determined 1128e5990874SJohan Hovold * by 1129e5990874SJohan Hovold * 1130e5990874SJohan Hovold * div = round(freq / (2 x prescale x request)) 1131e5990874SJohan Hovold * actual = freq / (2 x prescale x div) 1132e5990874SJohan Hovold * 1133e5990874SJohan Hovold * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps 1134e5990874SJohan Hovold * or 1 otherwise. 1135e5990874SJohan Hovold * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1 1136e5990874SJohan Hovold * otherwise. 1137e5990874SJohan Hovold */ 1138e5990874SJohan Hovold static void cp210x_change_speed(struct tty_struct *tty, 1139e5990874SJohan Hovold struct usb_serial_port *port, struct ktermios *old_termios) 1140e5990874SJohan Hovold { 11416f0bcf72SKaroly Pados struct usb_serial *serial = port->serial; 11426f0bcf72SKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1143e5990874SJohan Hovold u32 baud; 1144e5990874SJohan Hovold 11456f0bcf72SKaroly Pados /* 11467aecd7fcSJohan Hovold * This maps the requested rate to the actual rate, a valid rate on 11477aecd7fcSJohan Hovold * cp2102 or cp2103, or to an arbitrary rate in [1M, max_speed]. 1148e5990874SJohan Hovold * 1149e5990874SJohan Hovold * NOTE: B0 is not implemented. 1150e5990874SJohan Hovold */ 115185bc2d91SJohanna Abrahamsson baud = clamp(tty->termios.c_ospeed, priv->min_speed, priv->max_speed); 115285bc2d91SJohanna Abrahamsson 11537aecd7fcSJohan Hovold if (priv->use_actual_rate) 115485bc2d91SJohanna Abrahamsson baud = cp210x_get_actual_rate(baud); 11557aecd7fcSJohan Hovold else if (baud < 1000000) 115695fd4f47SJohan Hovold baud = cp210x_get_an205_rate(baud); 1157e5990874SJohan Hovold 1158660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - setting baud rate to %u\n", __func__, baud); 1159fe1b07e9SKonstantin Shkolnyy if (cp210x_write_u32_reg(port, CP210X_SET_BAUDRATE, baud)) { 1160e5990874SJohan Hovold dev_warn(&port->dev, "failed to set baud rate to %u\n", baud); 1161e5990874SJohan Hovold if (old_termios) 1162e5990874SJohan Hovold baud = old_termios->c_ospeed; 1163e5990874SJohan Hovold else 1164e5990874SJohan Hovold baud = 9600; 1165e5990874SJohan Hovold } 1166e5990874SJohan Hovold 1167e5990874SJohan Hovold tty_encode_baud_rate(tty, baud, baud); 1168e5990874SJohan Hovold } 1169e5990874SJohan Hovold 11704cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty, 117103ee2515SGreg Kroah-Hartman struct usb_serial_port *port, struct ktermios *old_termios) 117203ee2515SGreg Kroah-Hartman { 1173660f3b14SGreg Kroah-Hartman struct device *dev = &port->dev; 117403ee2515SGreg Kroah-Hartman unsigned int cflag, old_cflag; 117519165b2bSKonstantin Shkolnyy u16 bits; 117603ee2515SGreg Kroah-Hartman 1177adc8d746SAlan Cox cflag = tty->termios.c_cflag; 117803ee2515SGreg Kroah-Hartman old_cflag = old_termios->c_cflag; 117903ee2515SGreg Kroah-Hartman 1180adc8d746SAlan Cox if (tty->termios.c_ospeed != old_termios->c_ospeed) 1181e5990874SJohan Hovold cp210x_change_speed(tty, port, old_termios); 118203ee2515SGreg Kroah-Hartman 118303ee2515SGreg Kroah-Hartman /* If the number of data bits is to be updated */ 118403ee2515SGreg Kroah-Hartman if ((cflag & CSIZE) != (old_cflag & CSIZE)) { 1185d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 118603ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 118703ee2515SGreg Kroah-Hartman switch (cflag & CSIZE) { 118803ee2515SGreg Kroah-Hartman case CS5: 118903ee2515SGreg Kroah-Hartman bits |= BITS_DATA_5; 1190660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 5\n", __func__); 119103ee2515SGreg Kroah-Hartman break; 119203ee2515SGreg Kroah-Hartman case CS6: 119303ee2515SGreg Kroah-Hartman bits |= BITS_DATA_6; 1194660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 6\n", __func__); 119503ee2515SGreg Kroah-Hartman break; 119603ee2515SGreg Kroah-Hartman case CS7: 119703ee2515SGreg Kroah-Hartman bits |= BITS_DATA_7; 1198660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 7\n", __func__); 119903ee2515SGreg Kroah-Hartman break; 120003ee2515SGreg Kroah-Hartman case CS8: 1201c2b33559SJohan Hovold default: 120203ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 1203660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - data bits = 8\n", __func__); 120403ee2515SGreg Kroah-Hartman break; 120503ee2515SGreg Kroah-Hartman } 120619165b2bSKonstantin Shkolnyy if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits)) 1207660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Number of data bits requested not supported by device\n"); 120803ee2515SGreg Kroah-Hartman } 120903ee2515SGreg Kroah-Hartman 12104b6181caSRoland Koebler if ((cflag & (PARENB|PARODD|CMSPAR)) != 12114b6181caSRoland Koebler (old_cflag & (PARENB|PARODD|CMSPAR))) { 1212d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 121303ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 121403ee2515SGreg Kroah-Hartman if (cflag & PARENB) { 12154b6181caSRoland Koebler if (cflag & CMSPAR) { 12164b6181caSRoland Koebler if (cflag & PARODD) { 12174b6181caSRoland Koebler bits |= BITS_PARITY_MARK; 1218660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = MARK\n", __func__); 12194b6181caSRoland Koebler } else { 12204b6181caSRoland Koebler bits |= BITS_PARITY_SPACE; 1221660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = SPACE\n", __func__); 12224b6181caSRoland Koebler } 12234b6181caSRoland Koebler } else { 122403ee2515SGreg Kroah-Hartman if (cflag & PARODD) { 122503ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_ODD; 1226660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = ODD\n", __func__); 122703ee2515SGreg Kroah-Hartman } else { 122803ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_EVEN; 1229660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - parity = EVEN\n", __func__); 123003ee2515SGreg Kroah-Hartman } 123103ee2515SGreg Kroah-Hartman } 12324b6181caSRoland Koebler } 123319165b2bSKonstantin Shkolnyy if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits)) 1234660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Parity mode not supported by device\n"); 123503ee2515SGreg Kroah-Hartman } 123603ee2515SGreg Kroah-Hartman 123703ee2515SGreg Kroah-Hartman if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { 1238d0bf1ff0SKonstantin Shkolnyy cp210x_get_line_ctl(port, &bits); 123903ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 124003ee2515SGreg Kroah-Hartman if (cflag & CSTOPB) { 124103ee2515SGreg Kroah-Hartman bits |= BITS_STOP_2; 1242660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 2\n", __func__); 124303ee2515SGreg Kroah-Hartman } else { 124403ee2515SGreg Kroah-Hartman bits |= BITS_STOP_1; 1245660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - stop bits = 1\n", __func__); 124603ee2515SGreg Kroah-Hartman } 124719165b2bSKonstantin Shkolnyy if (cp210x_write_u16_reg(port, CP210X_SET_LINE_CTL, bits)) 1248660f3b14SGreg Kroah-Hartman dev_dbg(dev, "Number of stop bits requested not supported by device\n"); 124903ee2515SGreg Kroah-Hartman } 125003ee2515SGreg Kroah-Hartman 125103ee2515SGreg Kroah-Hartman if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) { 12529034389cSKonstantin Shkolnyy struct cp210x_flow_ctl flow_ctl; 12539034389cSKonstantin Shkolnyy u32 ctl_hs; 12549034389cSKonstantin Shkolnyy u32 flow_repl; 12557084fa86SKonstantin Shkolnyy 12569034389cSKonstantin Shkolnyy cp210x_read_reg_block(port, CP210X_GET_FLOW, &flow_ctl, 12579034389cSKonstantin Shkolnyy sizeof(flow_ctl)); 12589034389cSKonstantin Shkolnyy ctl_hs = le32_to_cpu(flow_ctl.ulControlHandshake); 12599034389cSKonstantin Shkolnyy flow_repl = le32_to_cpu(flow_ctl.ulFlowReplace); 12609034389cSKonstantin Shkolnyy dev_dbg(dev, "%s - read ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n", 12619034389cSKonstantin Shkolnyy __func__, ctl_hs, flow_repl); 12627084fa86SKonstantin Shkolnyy 1263ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DSR_HANDSHAKE; 1264ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DCD_HANDSHAKE; 1265ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DSR_SENSITIVITY; 1266ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_DTR_MASK; 1267ab5701adSKonstantin Shkolnyy ctl_hs |= CP210X_SERIAL_DTR_SHIFT(CP210X_SERIAL_DTR_ACTIVE); 126803ee2515SGreg Kroah-Hartman if (cflag & CRTSCTS) { 12699034389cSKonstantin Shkolnyy ctl_hs |= CP210X_SERIAL_CTS_HANDSHAKE; 1270ab5701adSKonstantin Shkolnyy 1271ab5701adSKonstantin Shkolnyy flow_repl &= ~CP210X_SERIAL_RTS_MASK; 12729034389cSKonstantin Shkolnyy flow_repl |= CP210X_SERIAL_RTS_SHIFT( 12739034389cSKonstantin Shkolnyy CP210X_SERIAL_RTS_FLOW_CTL); 1274660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = CRTSCTS\n", __func__); 127503ee2515SGreg Kroah-Hartman } else { 1276ab5701adSKonstantin Shkolnyy ctl_hs &= ~CP210X_SERIAL_CTS_HANDSHAKE; 1277ab5701adSKonstantin Shkolnyy 1278ab5701adSKonstantin Shkolnyy flow_repl &= ~CP210X_SERIAL_RTS_MASK; 12799034389cSKonstantin Shkolnyy flow_repl |= CP210X_SERIAL_RTS_SHIFT( 12809034389cSKonstantin Shkolnyy CP210X_SERIAL_RTS_ACTIVE); 1281660f3b14SGreg Kroah-Hartman dev_dbg(dev, "%s - flow control = NONE\n", __func__); 128203ee2515SGreg Kroah-Hartman } 128303ee2515SGreg Kroah-Hartman 12849034389cSKonstantin Shkolnyy dev_dbg(dev, "%s - write ulControlHandshake=0x%08x, ulFlowReplace=0x%08x\n", 12859034389cSKonstantin Shkolnyy __func__, ctl_hs, flow_repl); 12869034389cSKonstantin Shkolnyy flow_ctl.ulControlHandshake = cpu_to_le32(ctl_hs); 12879034389cSKonstantin Shkolnyy flow_ctl.ulFlowReplace = cpu_to_le32(flow_repl); 12889034389cSKonstantin Shkolnyy cp210x_write_reg_block(port, CP210X_SET_FLOW, &flow_ctl, 12899034389cSKonstantin Shkolnyy sizeof(flow_ctl)); 129003ee2515SGreg Kroah-Hartman } 129103ee2515SGreg Kroah-Hartman 129203ee2515SGreg Kroah-Hartman } 129303ee2515SGreg Kroah-Hartman 129420b9d177SAlan Cox static int cp210x_tiocmset(struct tty_struct *tty, 129503ee2515SGreg Kroah-Hartman unsigned int set, unsigned int clear) 129603ee2515SGreg Kroah-Hartman { 129703ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 129820b9d177SAlan Cox return cp210x_tiocmset_port(port, set, clear); 1299d2ad67b3SVomLehn } 1300d2ad67b3SVomLehn 130120b9d177SAlan Cox static int cp210x_tiocmset_port(struct usb_serial_port *port, 1302d2ad67b3SVomLehn unsigned int set, unsigned int clear) 1303d2ad67b3SVomLehn { 130419165b2bSKonstantin Shkolnyy u16 control = 0; 130503ee2515SGreg Kroah-Hartman 130603ee2515SGreg Kroah-Hartman if (set & TIOCM_RTS) { 130703ee2515SGreg Kroah-Hartman control |= CONTROL_RTS; 130803ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 130903ee2515SGreg Kroah-Hartman } 131003ee2515SGreg Kroah-Hartman if (set & TIOCM_DTR) { 131103ee2515SGreg Kroah-Hartman control |= CONTROL_DTR; 131203ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 131303ee2515SGreg Kroah-Hartman } 131403ee2515SGreg Kroah-Hartman if (clear & TIOCM_RTS) { 131503ee2515SGreg Kroah-Hartman control &= ~CONTROL_RTS; 131603ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 131703ee2515SGreg Kroah-Hartman } 131803ee2515SGreg Kroah-Hartman if (clear & TIOCM_DTR) { 131903ee2515SGreg Kroah-Hartman control &= ~CONTROL_DTR; 132003ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 132103ee2515SGreg Kroah-Hartman } 132203ee2515SGreg Kroah-Hartman 1323660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.4x\n", __func__, control); 132403ee2515SGreg Kroah-Hartman 132519165b2bSKonstantin Shkolnyy return cp210x_write_u16_reg(port, CP210X_SET_MHS, control); 132603ee2515SGreg Kroah-Hartman } 132703ee2515SGreg Kroah-Hartman 1328d94c7bd4SAlan Cox static void cp210x_dtr_rts(struct usb_serial_port *p, int on) 1329d94c7bd4SAlan Cox { 1330d94c7bd4SAlan Cox if (on) 133120b9d177SAlan Cox cp210x_tiocmset_port(p, TIOCM_DTR|TIOCM_RTS, 0); 1332d94c7bd4SAlan Cox else 133320b9d177SAlan Cox cp210x_tiocmset_port(p, 0, TIOCM_DTR|TIOCM_RTS); 1334d94c7bd4SAlan Cox } 1335d94c7bd4SAlan Cox 133660b33c13SAlan Cox static int cp210x_tiocmget(struct tty_struct *tty) 133703ee2515SGreg Kroah-Hartman { 133803ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 1339fe1b07e9SKonstantin Shkolnyy u8 control; 134003ee2515SGreg Kroah-Hartman int result; 134103ee2515SGreg Kroah-Hartman 1342de24e0a1SJohan Hovold result = cp210x_read_u8_reg(port, CP210X_GET_MDMSTS, &control); 1343de24e0a1SJohan Hovold if (result) 1344de24e0a1SJohan Hovold return result; 134503ee2515SGreg Kroah-Hartman 134603ee2515SGreg Kroah-Hartman result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0) 134703ee2515SGreg Kroah-Hartman |((control & CONTROL_RTS) ? TIOCM_RTS : 0) 134803ee2515SGreg Kroah-Hartman |((control & CONTROL_CTS) ? TIOCM_CTS : 0) 134903ee2515SGreg Kroah-Hartman |((control & CONTROL_DSR) ? TIOCM_DSR : 0) 135003ee2515SGreg Kroah-Hartman |((control & CONTROL_RING)? TIOCM_RI : 0) 135103ee2515SGreg Kroah-Hartman |((control & CONTROL_DCD) ? TIOCM_CD : 0); 135203ee2515SGreg Kroah-Hartman 1353660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - control = 0x%.2x\n", __func__, control); 135403ee2515SGreg Kroah-Hartman 135503ee2515SGreg Kroah-Hartman return result; 135603ee2515SGreg Kroah-Hartman } 135703ee2515SGreg Kroah-Hartman 13584cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *tty, int break_state) 135903ee2515SGreg Kroah-Hartman { 136003ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 136119165b2bSKonstantin Shkolnyy u16 state; 136203ee2515SGreg Kroah-Hartman 136303ee2515SGreg Kroah-Hartman if (break_state == 0) 136403ee2515SGreg Kroah-Hartman state = BREAK_OFF; 136503ee2515SGreg Kroah-Hartman else 136603ee2515SGreg Kroah-Hartman state = BREAK_ON; 1367660f3b14SGreg Kroah-Hartman dev_dbg(&port->dev, "%s - turning break %s\n", __func__, 136803ee2515SGreg Kroah-Hartman state == BREAK_OFF ? "off" : "on"); 136919165b2bSKonstantin Shkolnyy cp210x_write_u16_reg(port, CP210X_SET_BREAK, state); 137003ee2515SGreg Kroah-Hartman } 137103ee2515SGreg Kroah-Hartman 1372cf5276ceSMartyn Welch #ifdef CONFIG_GPIOLIB 1373cf5276ceSMartyn Welch static int cp210x_gpio_request(struct gpio_chip *gc, unsigned int offset) 1374cf5276ceSMartyn Welch { 1375cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1376cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1377cf5276ceSMartyn Welch 1378c8acfe0aSKaroly Pados if (priv->gpio_altfunc & BIT(offset)) 1379cf5276ceSMartyn Welch return -ENODEV; 1380cf5276ceSMartyn Welch 1381cf5276ceSMartyn Welch return 0; 1382cf5276ceSMartyn Welch } 1383cf5276ceSMartyn Welch 1384cf5276ceSMartyn Welch static int cp210x_gpio_get(struct gpio_chip *gc, unsigned int gpio) 1385cf5276ceSMartyn Welch { 1386cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1387c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1388c8acfe0aSKaroly Pados u8 req_type = REQTYPE_DEVICE_TO_HOST; 1389cf5276ceSMartyn Welch int result; 1390cf5276ceSMartyn Welch u8 buf; 1391cf5276ceSMartyn Welch 1392c8acfe0aSKaroly Pados if (priv->partnum == CP210X_PARTNUM_CP2105) 1393c8acfe0aSKaroly Pados req_type = REQTYPE_INTERFACE_TO_HOST; 1394c8acfe0aSKaroly Pados 13957b0b644bSKaroly Pados result = usb_autopm_get_interface(serial->interface); 13967b0b644bSKaroly Pados if (result) 13977b0b644bSKaroly Pados return result; 13987b0b644bSKaroly Pados 1399c8acfe0aSKaroly Pados result = cp210x_read_vendor_block(serial, req_type, 1400cf5276ceSMartyn Welch CP210X_READ_LATCH, &buf, sizeof(buf)); 14017b0b644bSKaroly Pados usb_autopm_put_interface(serial->interface); 1402cf5276ceSMartyn Welch if (result < 0) 1403cf5276ceSMartyn Welch return result; 1404cf5276ceSMartyn Welch 1405cf5276ceSMartyn Welch return !!(buf & BIT(gpio)); 1406cf5276ceSMartyn Welch } 1407cf5276ceSMartyn Welch 1408cf5276ceSMartyn Welch static void cp210x_gpio_set(struct gpio_chip *gc, unsigned int gpio, int value) 1409cf5276ceSMartyn Welch { 1410cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1411c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1412cf5276ceSMartyn Welch struct cp210x_gpio_write buf; 1413c8acfe0aSKaroly Pados int result; 1414cf5276ceSMartyn Welch 1415cf5276ceSMartyn Welch if (value == 1) 1416cf5276ceSMartyn Welch buf.state = BIT(gpio); 1417cf5276ceSMartyn Welch else 1418cf5276ceSMartyn Welch buf.state = 0; 1419cf5276ceSMartyn Welch 1420cf5276ceSMartyn Welch buf.mask = BIT(gpio); 1421cf5276ceSMartyn Welch 14227b0b644bSKaroly Pados result = usb_autopm_get_interface(serial->interface); 14237b0b644bSKaroly Pados if (result) 14247b0b644bSKaroly Pados goto out; 14257b0b644bSKaroly Pados 1426c8acfe0aSKaroly Pados if (priv->partnum == CP210X_PARTNUM_CP2105) { 1427c8acfe0aSKaroly Pados result = cp210x_write_vendor_block(serial, 1428c8acfe0aSKaroly Pados REQTYPE_HOST_TO_INTERFACE, 1429c8acfe0aSKaroly Pados CP210X_WRITE_LATCH, &buf, 1430c8acfe0aSKaroly Pados sizeof(buf)); 1431c8acfe0aSKaroly Pados } else { 1432c8acfe0aSKaroly Pados u16 wIndex = buf.state << 8 | buf.mask; 1433c8acfe0aSKaroly Pados 1434c8acfe0aSKaroly Pados result = usb_control_msg(serial->dev, 1435c8acfe0aSKaroly Pados usb_sndctrlpipe(serial->dev, 0), 1436c8acfe0aSKaroly Pados CP210X_VENDOR_SPECIFIC, 1437c8acfe0aSKaroly Pados REQTYPE_HOST_TO_DEVICE, 1438c8acfe0aSKaroly Pados CP210X_WRITE_LATCH, 1439c8acfe0aSKaroly Pados wIndex, 1440c8acfe0aSKaroly Pados NULL, 0, USB_CTRL_SET_TIMEOUT); 1441c8acfe0aSKaroly Pados } 1442c8acfe0aSKaroly Pados 14437b0b644bSKaroly Pados usb_autopm_put_interface(serial->interface); 14447b0b644bSKaroly Pados out: 1445c8acfe0aSKaroly Pados if (result < 0) { 1446c8acfe0aSKaroly Pados dev_err(&serial->interface->dev, "failed to set GPIO value: %d\n", 1447c8acfe0aSKaroly Pados result); 1448c8acfe0aSKaroly Pados } 1449cf5276ceSMartyn Welch } 1450cf5276ceSMartyn Welch 1451cf5276ceSMartyn Welch static int cp210x_gpio_direction_get(struct gpio_chip *gc, unsigned int gpio) 1452cf5276ceSMartyn Welch { 1453c8acfe0aSKaroly Pados struct usb_serial *serial = gpiochip_get_data(gc); 1454c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1455c8acfe0aSKaroly Pados 1456c8acfe0aSKaroly Pados return priv->gpio_input & BIT(gpio); 1457cf5276ceSMartyn Welch } 1458cf5276ceSMartyn Welch 1459cf5276ceSMartyn Welch static int cp210x_gpio_direction_input(struct gpio_chip *gc, unsigned int gpio) 1460cf5276ceSMartyn Welch { 1461c8acfe0aSKaroly Pados struct usb_serial *serial = gpiochip_get_data(gc); 1462c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1463c8acfe0aSKaroly Pados 1464c8acfe0aSKaroly Pados if (priv->partnum == CP210X_PARTNUM_CP2105) { 1465c8acfe0aSKaroly Pados /* hardware does not support an input mode */ 1466cf5276ceSMartyn Welch return -ENOTSUPP; 1467cf5276ceSMartyn Welch } 1468cf5276ceSMartyn Welch 1469c8acfe0aSKaroly Pados /* push-pull pins cannot be changed to be inputs */ 1470c8acfe0aSKaroly Pados if (priv->gpio_pushpull & BIT(gpio)) 1471c8acfe0aSKaroly Pados return -EINVAL; 1472c8acfe0aSKaroly Pados 1473c8acfe0aSKaroly Pados /* make sure to release pin if it is being driven low */ 1474c8acfe0aSKaroly Pados cp210x_gpio_set(gc, gpio, 1); 1475c8acfe0aSKaroly Pados 1476c8acfe0aSKaroly Pados priv->gpio_input |= BIT(gpio); 1477c8acfe0aSKaroly Pados 1478c8acfe0aSKaroly Pados return 0; 1479c8acfe0aSKaroly Pados } 1480c8acfe0aSKaroly Pados 1481cf5276ceSMartyn Welch static int cp210x_gpio_direction_output(struct gpio_chip *gc, unsigned int gpio, 1482cf5276ceSMartyn Welch int value) 1483cf5276ceSMartyn Welch { 1484c8acfe0aSKaroly Pados struct usb_serial *serial = gpiochip_get_data(gc); 1485c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1486c8acfe0aSKaroly Pados 1487c8acfe0aSKaroly Pados priv->gpio_input &= ~BIT(gpio); 1488c8acfe0aSKaroly Pados cp210x_gpio_set(gc, gpio, value); 1489c8acfe0aSKaroly Pados 1490cf5276ceSMartyn Welch return 0; 1491cf5276ceSMartyn Welch } 1492cf5276ceSMartyn Welch 14932956b5d9SMika Westerberg static int cp210x_gpio_set_config(struct gpio_chip *gc, unsigned int gpio, 14942956b5d9SMika Westerberg unsigned long config) 1495cf5276ceSMartyn Welch { 1496cf5276ceSMartyn Welch struct usb_serial *serial = gpiochip_get_data(gc); 1497cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 14982956b5d9SMika Westerberg enum pin_config_param param = pinconf_to_config_param(config); 1499cf5276ceSMartyn Welch 1500cf5276ceSMartyn Welch /* Succeed only if in correct mode (this can't be set at runtime) */ 15012956b5d9SMika Westerberg if ((param == PIN_CONFIG_DRIVE_PUSH_PULL) && 1502c8acfe0aSKaroly Pados (priv->gpio_pushpull & BIT(gpio))) 1503cf5276ceSMartyn Welch return 0; 1504cf5276ceSMartyn Welch 15052956b5d9SMika Westerberg if ((param == PIN_CONFIG_DRIVE_OPEN_DRAIN) && 1506c8acfe0aSKaroly Pados !(priv->gpio_pushpull & BIT(gpio))) 1507cf5276ceSMartyn Welch return 0; 1508cf5276ceSMartyn Welch 1509cf5276ceSMartyn Welch return -ENOTSUPP; 1510cf5276ceSMartyn Welch } 1511cf5276ceSMartyn Welch 1512cf5276ceSMartyn Welch /* 1513cf5276ceSMartyn Welch * This function is for configuring GPIO using shared pins, where other signals 1514cf5276ceSMartyn Welch * are made unavailable by configuring the use of GPIO. This is believed to be 1515cf5276ceSMartyn Welch * only applicable to the cp2105 at this point, the other devices supported by 1516cf5276ceSMartyn Welch * this driver that provide GPIO do so in a way that does not impact other 1517cf5276ceSMartyn Welch * signals and are thus expected to have very different initialisation. 1518cf5276ceSMartyn Welch */ 1519c8acfe0aSKaroly Pados static int cp2105_gpioconf_init(struct usb_serial *serial) 1520cf5276ceSMartyn Welch { 1521cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1522cf5276ceSMartyn Welch struct cp210x_pin_mode mode; 152315fb84b7SIcenowy Zheng struct cp210x_dual_port_config config; 1524cf5276ceSMartyn Welch u8 intf_num = cp210x_interface_num(serial); 1525c8acfe0aSKaroly Pados u8 iface_config; 1526cf5276ceSMartyn Welch int result; 1527cf5276ceSMartyn Welch 1528cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1529cf5276ceSMartyn Welch CP210X_GET_DEVICEMODE, &mode, 1530cf5276ceSMartyn Welch sizeof(mode)); 1531cf5276ceSMartyn Welch if (result < 0) 1532cf5276ceSMartyn Welch return result; 1533cf5276ceSMartyn Welch 1534cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1535cf5276ceSMartyn Welch CP210X_GET_PORTCONFIG, &config, 1536cf5276ceSMartyn Welch sizeof(config)); 1537cf5276ceSMartyn Welch if (result < 0) 1538cf5276ceSMartyn Welch return result; 1539cf5276ceSMartyn Welch 1540cf5276ceSMartyn Welch /* 2 banks of GPIO - One for the pins taken from each serial port */ 1541cf5276ceSMartyn Welch if (intf_num == 0) { 1542c8acfe0aSKaroly Pados if (mode.eci == CP210X_PIN_MODE_MODEM) { 1543c8acfe0aSKaroly Pados /* mark all GPIOs of this interface as reserved */ 1544c8acfe0aSKaroly Pados priv->gpio_altfunc = 0xff; 1545cf5276ceSMartyn Welch return 0; 1546c8acfe0aSKaroly Pados } 1547cf5276ceSMartyn Welch 1548c8acfe0aSKaroly Pados iface_config = config.eci_cfg; 1549c8acfe0aSKaroly Pados priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & 1550cf5276ceSMartyn Welch CP210X_ECI_GPIO_MODE_MASK) >> 1551cf5276ceSMartyn Welch CP210X_ECI_GPIO_MODE_OFFSET); 1552cf5276ceSMartyn Welch priv->gc.ngpio = 2; 1553cf5276ceSMartyn Welch } else if (intf_num == 1) { 1554c8acfe0aSKaroly Pados if (mode.sci == CP210X_PIN_MODE_MODEM) { 1555c8acfe0aSKaroly Pados /* mark all GPIOs of this interface as reserved */ 1556c8acfe0aSKaroly Pados priv->gpio_altfunc = 0xff; 1557cf5276ceSMartyn Welch return 0; 1558c8acfe0aSKaroly Pados } 1559cf5276ceSMartyn Welch 1560c8acfe0aSKaroly Pados iface_config = config.sci_cfg; 1561c8acfe0aSKaroly Pados priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & 1562cf5276ceSMartyn Welch CP210X_SCI_GPIO_MODE_MASK) >> 1563cf5276ceSMartyn Welch CP210X_SCI_GPIO_MODE_OFFSET); 1564cf5276ceSMartyn Welch priv->gc.ngpio = 3; 1565cf5276ceSMartyn Welch } else { 1566cf5276ceSMartyn Welch return -ENODEV; 1567cf5276ceSMartyn Welch } 1568cf5276ceSMartyn Welch 1569c8acfe0aSKaroly Pados /* mark all pins which are not in GPIO mode */ 1570c8acfe0aSKaroly Pados if (iface_config & CP2105_GPIO0_TXLED_MODE) /* GPIO 0 */ 1571c8acfe0aSKaroly Pados priv->gpio_altfunc |= BIT(0); 1572c8acfe0aSKaroly Pados if (iface_config & (CP2105_GPIO1_RXLED_MODE | /* GPIO 1 */ 1573c8acfe0aSKaroly Pados CP2105_GPIO1_RS485_MODE)) 1574c8acfe0aSKaroly Pados priv->gpio_altfunc |= BIT(1); 1575c8acfe0aSKaroly Pados 1576c8acfe0aSKaroly Pados /* driver implementation for CP2105 only supports outputs */ 1577c8acfe0aSKaroly Pados priv->gpio_input = 0; 1578c8acfe0aSKaroly Pados 1579c8acfe0aSKaroly Pados return 0; 1580c8acfe0aSKaroly Pados } 1581c8acfe0aSKaroly Pados 158215fb84b7SIcenowy Zheng static int cp2104_gpioconf_init(struct usb_serial *serial) 158315fb84b7SIcenowy Zheng { 158415fb84b7SIcenowy Zheng struct cp210x_serial_private *priv = usb_get_serial_data(serial); 158515fb84b7SIcenowy Zheng struct cp210x_single_port_config config; 158615fb84b7SIcenowy Zheng u8 iface_config; 158715fb84b7SIcenowy Zheng u8 gpio_latch; 158815fb84b7SIcenowy Zheng int result; 158915fb84b7SIcenowy Zheng u8 i; 159015fb84b7SIcenowy Zheng 159115fb84b7SIcenowy Zheng result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 159215fb84b7SIcenowy Zheng CP210X_GET_PORTCONFIG, &config, 159315fb84b7SIcenowy Zheng sizeof(config)); 159415fb84b7SIcenowy Zheng if (result < 0) 159515fb84b7SIcenowy Zheng return result; 159615fb84b7SIcenowy Zheng 159715fb84b7SIcenowy Zheng priv->gc.ngpio = 4; 159815fb84b7SIcenowy Zheng 159915fb84b7SIcenowy Zheng iface_config = config.device_cfg; 160015fb84b7SIcenowy Zheng priv->gpio_pushpull = (u8)((le16_to_cpu(config.gpio_mode) & 160115fb84b7SIcenowy Zheng CP210X_GPIO_MODE_MASK) >> 160215fb84b7SIcenowy Zheng CP210X_GPIO_MODE_OFFSET); 160315fb84b7SIcenowy Zheng gpio_latch = (u8)((le16_to_cpu(config.reset_state) & 160415fb84b7SIcenowy Zheng CP210X_GPIO_MODE_MASK) >> 160515fb84b7SIcenowy Zheng CP210X_GPIO_MODE_OFFSET); 160615fb84b7SIcenowy Zheng 160715fb84b7SIcenowy Zheng /* mark all pins which are not in GPIO mode */ 160815fb84b7SIcenowy Zheng if (iface_config & CP2104_GPIO0_TXLED_MODE) /* GPIO 0 */ 160915fb84b7SIcenowy Zheng priv->gpio_altfunc |= BIT(0); 161015fb84b7SIcenowy Zheng if (iface_config & CP2104_GPIO1_RXLED_MODE) /* GPIO 1 */ 161115fb84b7SIcenowy Zheng priv->gpio_altfunc |= BIT(1); 161215fb84b7SIcenowy Zheng if (iface_config & CP2104_GPIO2_RS485_MODE) /* GPIO 2 */ 161315fb84b7SIcenowy Zheng priv->gpio_altfunc |= BIT(2); 161415fb84b7SIcenowy Zheng 161515fb84b7SIcenowy Zheng /* 161615fb84b7SIcenowy Zheng * Like CP2102N, CP2104 has also no strict input and output pin 161715fb84b7SIcenowy Zheng * modes. 161815fb84b7SIcenowy Zheng * Do the same input mode emulation as CP2102N. 161915fb84b7SIcenowy Zheng */ 162015fb84b7SIcenowy Zheng for (i = 0; i < priv->gc.ngpio; ++i) { 162115fb84b7SIcenowy Zheng /* 162215fb84b7SIcenowy Zheng * Set direction to "input" iff pin is open-drain and reset 162315fb84b7SIcenowy Zheng * value is 1. 162415fb84b7SIcenowy Zheng */ 162515fb84b7SIcenowy Zheng if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i))) 162615fb84b7SIcenowy Zheng priv->gpio_input |= BIT(i); 162715fb84b7SIcenowy Zheng } 162815fb84b7SIcenowy Zheng 162915fb84b7SIcenowy Zheng return 0; 163015fb84b7SIcenowy Zheng } 163115fb84b7SIcenowy Zheng 1632c8acfe0aSKaroly Pados static int cp2102n_gpioconf_init(struct usb_serial *serial) 1633c8acfe0aSKaroly Pados { 1634c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1635c8acfe0aSKaroly Pados const u16 config_size = 0x02a6; 1636c8acfe0aSKaroly Pados u8 gpio_rst_latch; 1637c8acfe0aSKaroly Pados u8 config_version; 1638c8acfe0aSKaroly Pados u8 gpio_pushpull; 1639c8acfe0aSKaroly Pados u8 *config_buf; 1640c8acfe0aSKaroly Pados u8 gpio_latch; 1641c8acfe0aSKaroly Pados u8 gpio_ctrl; 1642c8acfe0aSKaroly Pados int result; 1643c8acfe0aSKaroly Pados u8 i; 1644c8acfe0aSKaroly Pados 1645c8acfe0aSKaroly Pados /* 1646c8acfe0aSKaroly Pados * Retrieve device configuration from the device. 1647c8acfe0aSKaroly Pados * The array received contains all customization settings done at the 1648c8acfe0aSKaroly Pados * factory/manufacturer. Format of the array is documented at the 1649c8acfe0aSKaroly Pados * time of writing at: 1650c8acfe0aSKaroly Pados * https://www.silabs.com/community/interface/knowledge-base.entry.html/2017/03/31/cp2102n_setconfig-xsfa 1651c8acfe0aSKaroly Pados */ 1652c8acfe0aSKaroly Pados config_buf = kmalloc(config_size, GFP_KERNEL); 1653c8acfe0aSKaroly Pados if (!config_buf) 1654c8acfe0aSKaroly Pados return -ENOMEM; 1655c8acfe0aSKaroly Pados 1656c8acfe0aSKaroly Pados result = cp210x_read_vendor_block(serial, 1657c8acfe0aSKaroly Pados REQTYPE_DEVICE_TO_HOST, 1658c8acfe0aSKaroly Pados CP210X_READ_2NCONFIG, 1659c8acfe0aSKaroly Pados config_buf, 1660c8acfe0aSKaroly Pados config_size); 1661c8acfe0aSKaroly Pados if (result < 0) { 1662c8acfe0aSKaroly Pados kfree(config_buf); 1663c8acfe0aSKaroly Pados return result; 1664c8acfe0aSKaroly Pados } 1665c8acfe0aSKaroly Pados 1666c8acfe0aSKaroly Pados config_version = config_buf[CP210X_2NCONFIG_CONFIG_VERSION_IDX]; 1667c8acfe0aSKaroly Pados gpio_pushpull = config_buf[CP210X_2NCONFIG_GPIO_MODE_IDX]; 1668c8acfe0aSKaroly Pados gpio_ctrl = config_buf[CP210X_2NCONFIG_GPIO_CONTROL_IDX]; 1669c8acfe0aSKaroly Pados gpio_rst_latch = config_buf[CP210X_2NCONFIG_GPIO_RSTLATCH_IDX]; 1670c8acfe0aSKaroly Pados 1671c8acfe0aSKaroly Pados kfree(config_buf); 1672c8acfe0aSKaroly Pados 1673c8acfe0aSKaroly Pados /* Make sure this is a config format we understand. */ 1674c8acfe0aSKaroly Pados if (config_version != 0x01) 1675c8acfe0aSKaroly Pados return -ENOTSUPP; 1676c8acfe0aSKaroly Pados 1677c8acfe0aSKaroly Pados priv->gc.ngpio = 4; 1678c8acfe0aSKaroly Pados 1679c8acfe0aSKaroly Pados /* 1680c8acfe0aSKaroly Pados * Get default pin states after reset. Needed so we can determine 1681c8acfe0aSKaroly Pados * the direction of an open-drain pin. 1682c8acfe0aSKaroly Pados */ 1683c8acfe0aSKaroly Pados gpio_latch = (gpio_rst_latch >> 3) & 0x0f; 1684c8acfe0aSKaroly Pados 1685c8acfe0aSKaroly Pados /* 0 indicates open-drain mode, 1 is push-pull */ 1686c8acfe0aSKaroly Pados priv->gpio_pushpull = (gpio_pushpull >> 3) & 0x0f; 1687c8acfe0aSKaroly Pados 1688c8acfe0aSKaroly Pados /* 0 indicates GPIO mode, 1 is alternate function */ 1689c8acfe0aSKaroly Pados priv->gpio_altfunc = (gpio_ctrl >> 2) & 0x0f; 1690c8acfe0aSKaroly Pados 1691a49e1abfSMans Rullgard if (priv->partnum == CP210X_PARTNUM_CP2102N_QFN28) { 1692a49e1abfSMans Rullgard /* 1693a49e1abfSMans Rullgard * For the QFN28 package, GPIO4-6 are controlled by 1694a49e1abfSMans Rullgard * the low three bits of the mode/latch fields. 1695a49e1abfSMans Rullgard * Contrary to the document linked above, the bits for 1696a49e1abfSMans Rullgard * the SUSPEND pins are elsewhere. No alternate 1697a49e1abfSMans Rullgard * function is available for these pins. 1698a49e1abfSMans Rullgard */ 1699a49e1abfSMans Rullgard priv->gc.ngpio = 7; 1700a49e1abfSMans Rullgard gpio_latch |= (gpio_rst_latch & 7) << 4; 1701a49e1abfSMans Rullgard priv->gpio_pushpull |= (gpio_pushpull & 7) << 4; 1702a49e1abfSMans Rullgard } 1703a49e1abfSMans Rullgard 1704c8acfe0aSKaroly Pados /* 1705c8acfe0aSKaroly Pados * The CP2102N does not strictly has input and output pin modes, 1706c8acfe0aSKaroly Pados * it only knows open-drain and push-pull modes which is set at 1707c8acfe0aSKaroly Pados * factory. An open-drain pin can function both as an 1708c8acfe0aSKaroly Pados * input or an output. We emulate input mode for open-drain pins 1709c8acfe0aSKaroly Pados * by making sure they are not driven low, and we do not allow 1710c8acfe0aSKaroly Pados * push-pull pins to be set as an input. 1711c8acfe0aSKaroly Pados */ 1712c8acfe0aSKaroly Pados for (i = 0; i < priv->gc.ngpio; ++i) { 1713c8acfe0aSKaroly Pados /* 1714c8acfe0aSKaroly Pados * Set direction to "input" iff pin is open-drain and reset 1715c8acfe0aSKaroly Pados * value is 1. 1716c8acfe0aSKaroly Pados */ 1717c8acfe0aSKaroly Pados if (!(priv->gpio_pushpull & BIT(i)) && (gpio_latch & BIT(i))) 1718c8acfe0aSKaroly Pados priv->gpio_input |= BIT(i); 1719c8acfe0aSKaroly Pados } 1720c8acfe0aSKaroly Pados 1721c8acfe0aSKaroly Pados return 0; 1722c8acfe0aSKaroly Pados } 1723c8acfe0aSKaroly Pados 1724c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial) 1725c8acfe0aSKaroly Pados { 1726c8acfe0aSKaroly Pados struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1727c8acfe0aSKaroly Pados int result; 1728c8acfe0aSKaroly Pados 1729c8acfe0aSKaroly Pados switch (priv->partnum) { 173015fb84b7SIcenowy Zheng case CP210X_PARTNUM_CP2104: 173115fb84b7SIcenowy Zheng result = cp2104_gpioconf_init(serial); 173215fb84b7SIcenowy Zheng break; 1733c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2105: 1734c8acfe0aSKaroly Pados result = cp2105_gpioconf_init(serial); 1735c8acfe0aSKaroly Pados break; 1736c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2102N_QFN28: 1737c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2102N_QFN24: 1738c8acfe0aSKaroly Pados case CP210X_PARTNUM_CP2102N_QFN20: 1739c8acfe0aSKaroly Pados result = cp2102n_gpioconf_init(serial); 1740c8acfe0aSKaroly Pados break; 1741c8acfe0aSKaroly Pados default: 1742c8acfe0aSKaroly Pados return 0; 1743c8acfe0aSKaroly Pados } 1744c8acfe0aSKaroly Pados 1745c8acfe0aSKaroly Pados if (result < 0) 1746c8acfe0aSKaroly Pados return result; 1747c8acfe0aSKaroly Pados 1748cf5276ceSMartyn Welch priv->gc.label = "cp210x"; 1749cf5276ceSMartyn Welch priv->gc.request = cp210x_gpio_request; 1750cf5276ceSMartyn Welch priv->gc.get_direction = cp210x_gpio_direction_get; 1751cf5276ceSMartyn Welch priv->gc.direction_input = cp210x_gpio_direction_input; 1752cf5276ceSMartyn Welch priv->gc.direction_output = cp210x_gpio_direction_output; 1753cf5276ceSMartyn Welch priv->gc.get = cp210x_gpio_get; 1754cf5276ceSMartyn Welch priv->gc.set = cp210x_gpio_set; 17552956b5d9SMika Westerberg priv->gc.set_config = cp210x_gpio_set_config; 1756cf5276ceSMartyn Welch priv->gc.owner = THIS_MODULE; 1757cf5276ceSMartyn Welch priv->gc.parent = &serial->interface->dev; 1758cf5276ceSMartyn Welch priv->gc.base = -1; 1759cf5276ceSMartyn Welch priv->gc.can_sleep = true; 1760cf5276ceSMartyn Welch 1761cf5276ceSMartyn Welch result = gpiochip_add_data(&priv->gc, serial); 1762cf5276ceSMartyn Welch if (!result) 17636b7271d2SJohan Hovold priv->gpio_registered = true; 1764cf5276ceSMartyn Welch 1765cf5276ceSMartyn Welch return result; 1766cf5276ceSMartyn Welch } 1767cf5276ceSMartyn Welch 1768cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial) 1769cf5276ceSMartyn Welch { 1770cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1771cf5276ceSMartyn Welch 1772cf5276ceSMartyn Welch if (priv->gpio_registered) { 1773cf5276ceSMartyn Welch gpiochip_remove(&priv->gc); 17746b7271d2SJohan Hovold priv->gpio_registered = false; 1775cf5276ceSMartyn Welch } 1776cf5276ceSMartyn Welch } 1777cf5276ceSMartyn Welch 1778cf5276ceSMartyn Welch #else 1779cf5276ceSMartyn Welch 1780c8acfe0aSKaroly Pados static int cp210x_gpio_init(struct usb_serial *serial) 1781cf5276ceSMartyn Welch { 1782cf5276ceSMartyn Welch return 0; 1783cf5276ceSMartyn Welch } 1784cf5276ceSMartyn Welch 1785cf5276ceSMartyn Welch static void cp210x_gpio_remove(struct usb_serial *serial) 1786cf5276ceSMartyn Welch { 1787cf5276ceSMartyn Welch /* Nothing to do */ 1788cf5276ceSMartyn Welch } 1789cf5276ceSMartyn Welch 1790cf5276ceSMartyn Welch #endif 1791cf5276ceSMartyn Welch 1792e2ae67a3SKonstantin Shkolnyy static int cp210x_port_probe(struct usb_serial_port *port) 179303ee2515SGreg Kroah-Hartman { 1794e2ae67a3SKonstantin Shkolnyy struct usb_serial *serial = port->serial; 1795e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv; 1796d0bf1ff0SKonstantin Shkolnyy int ret; 1797a5360a53SPreston Fick 1798e2ae67a3SKonstantin Shkolnyy port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL); 1799e2ae67a3SKonstantin Shkolnyy if (!port_priv) 1800a5360a53SPreston Fick return -ENOMEM; 1801a5360a53SPreston Fick 1802cf5276ceSMartyn Welch port_priv->bInterfaceNumber = cp210x_interface_num(serial); 1803a5360a53SPreston Fick 1804e2ae67a3SKonstantin Shkolnyy usb_set_serial_port_data(port, port_priv); 1805a5360a53SPreston Fick 1806d0bf1ff0SKonstantin Shkolnyy ret = cp210x_detect_swapped_line_ctl(port); 1807d0bf1ff0SKonstantin Shkolnyy if (ret) { 1808d0bf1ff0SKonstantin Shkolnyy kfree(port_priv); 1809d0bf1ff0SKonstantin Shkolnyy return ret; 1810d0bf1ff0SKonstantin Shkolnyy } 181103ee2515SGreg Kroah-Hartman 181203ee2515SGreg Kroah-Hartman return 0; 181303ee2515SGreg Kroah-Hartman } 181403ee2515SGreg Kroah-Hartman 1815e2ae67a3SKonstantin Shkolnyy static int cp210x_port_remove(struct usb_serial_port *port) 1816a5360a53SPreston Fick { 1817e2ae67a3SKonstantin Shkolnyy struct cp210x_port_private *port_priv; 1818a5360a53SPreston Fick 1819e2ae67a3SKonstantin Shkolnyy port_priv = usb_get_serial_port_data(port); 1820e2ae67a3SKonstantin Shkolnyy kfree(port_priv); 1821e2ae67a3SKonstantin Shkolnyy 1822e2ae67a3SKonstantin Shkolnyy return 0; 1823a5360a53SPreston Fick } 1824a5360a53SPreston Fick 1825d4706c05SJohan Hovold static void cp210x_init_max_speed(struct usb_serial *serial) 1826d4706c05SJohan Hovold { 1827d4706c05SJohan Hovold struct cp210x_serial_private *priv = usb_get_serial_data(serial); 18287aecd7fcSJohan Hovold bool use_actual_rate = false; 182985bc2d91SJohanna Abrahamsson speed_t min = 300; 1830d4706c05SJohan Hovold speed_t max; 1831d4706c05SJohan Hovold 1832d4706c05SJohan Hovold switch (priv->partnum) { 1833d4706c05SJohan Hovold case CP210X_PARTNUM_CP2101: 1834d4706c05SJohan Hovold max = 921600; 1835d4706c05SJohan Hovold break; 1836d4706c05SJohan Hovold case CP210X_PARTNUM_CP2102: 1837d4706c05SJohan Hovold case CP210X_PARTNUM_CP2103: 1838d4706c05SJohan Hovold max = 1000000; 1839d4706c05SJohan Hovold break; 1840d4706c05SJohan Hovold case CP210X_PARTNUM_CP2104: 18415edb65a3SJohan Hovold use_actual_rate = true; 18425edb65a3SJohan Hovold max = 2000000; 18435edb65a3SJohan Hovold break; 1844d4706c05SJohan Hovold case CP210X_PARTNUM_CP2108: 1845d4706c05SJohan Hovold max = 2000000; 1846d4706c05SJohan Hovold break; 1847d4706c05SJohan Hovold case CP210X_PARTNUM_CP2105: 18485edb65a3SJohan Hovold if (cp210x_interface_num(serial) == 0) { 18495edb65a3SJohan Hovold use_actual_rate = true; 1850d4706c05SJohan Hovold max = 2000000; /* ECI */ 18515edb65a3SJohan Hovold } else { 185285bc2d91SJohanna Abrahamsson min = 2400; 1853d4706c05SJohan Hovold max = 921600; /* SCI */ 18545edb65a3SJohan Hovold } 1855d4706c05SJohan Hovold break; 18566f0bcf72SKaroly Pados case CP210X_PARTNUM_CP2102N_QFN28: 18576f0bcf72SKaroly Pados case CP210X_PARTNUM_CP2102N_QFN24: 18586f0bcf72SKaroly Pados case CP210X_PARTNUM_CP2102N_QFN20: 18597aecd7fcSJohan Hovold use_actual_rate = true; 18606f0bcf72SKaroly Pados max = 3000000; 18616f0bcf72SKaroly Pados break; 1862d4706c05SJohan Hovold default: 1863d4706c05SJohan Hovold max = 2000000; 1864d4706c05SJohan Hovold break; 1865d4706c05SJohan Hovold } 1866d4706c05SJohan Hovold 186785bc2d91SJohanna Abrahamsson priv->min_speed = min; 1868d4706c05SJohan Hovold priv->max_speed = max; 18697aecd7fcSJohan Hovold priv->use_actual_rate = use_actual_rate; 1870d4706c05SJohan Hovold } 1871d4706c05SJohan Hovold 1872cf5276ceSMartyn Welch static int cp210x_attach(struct usb_serial *serial) 1873cf5276ceSMartyn Welch { 1874cf5276ceSMartyn Welch int result; 1875cf5276ceSMartyn Welch struct cp210x_serial_private *priv; 1876cf5276ceSMartyn Welch 1877cf5276ceSMartyn Welch priv = kzalloc(sizeof(*priv), GFP_KERNEL); 1878cf5276ceSMartyn Welch if (!priv) 1879cf5276ceSMartyn Welch return -ENOMEM; 1880cf5276ceSMartyn Welch 1881cf5276ceSMartyn Welch result = cp210x_read_vendor_block(serial, REQTYPE_DEVICE_TO_HOST, 1882cf5276ceSMartyn Welch CP210X_GET_PARTNUM, &priv->partnum, 1883cf5276ceSMartyn Welch sizeof(priv->partnum)); 18847eac35eaSSebastian Frei if (result < 0) { 18857eac35eaSSebastian Frei dev_warn(&serial->interface->dev, 18867eac35eaSSebastian Frei "querying part number failed\n"); 18877eac35eaSSebastian Frei priv->partnum = CP210X_PARTNUM_UNKNOWN; 18887eac35eaSSebastian Frei } 1889cf5276ceSMartyn Welch 1890cf5276ceSMartyn Welch usb_set_serial_data(serial, priv); 1891cf5276ceSMartyn Welch 1892d4706c05SJohan Hovold cp210x_init_max_speed(serial); 1893d4706c05SJohan Hovold 1894c8acfe0aSKaroly Pados result = cp210x_gpio_init(serial); 1895cf5276ceSMartyn Welch if (result < 0) { 1896c8acfe0aSKaroly Pados dev_err(&serial->interface->dev, "GPIO initialisation failed: %d\n", 1897c8acfe0aSKaroly Pados result); 1898cf5276ceSMartyn Welch } 1899cf5276ceSMartyn Welch 1900cf5276ceSMartyn Welch return 0; 1901cf5276ceSMartyn Welch } 1902cf5276ceSMartyn Welch 1903cf5276ceSMartyn Welch static void cp210x_disconnect(struct usb_serial *serial) 1904cf5276ceSMartyn Welch { 1905cf5276ceSMartyn Welch cp210x_gpio_remove(serial); 1906cf5276ceSMartyn Welch } 1907cf5276ceSMartyn Welch 1908cf5276ceSMartyn Welch static void cp210x_release(struct usb_serial *serial) 1909cf5276ceSMartyn Welch { 1910cf5276ceSMartyn Welch struct cp210x_serial_private *priv = usb_get_serial_data(serial); 1911cf5276ceSMartyn Welch 1912cf5276ceSMartyn Welch cp210x_gpio_remove(serial); 1913cf5276ceSMartyn Welch 1914cf5276ceSMartyn Welch kfree(priv); 1915cf5276ceSMartyn Welch } 1916cf5276ceSMartyn Welch 191768e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table); 191803ee2515SGreg Kroah-Hartman 191903ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC); 1920627cfa89SJohan Hovold MODULE_LICENSE("GPL v2"); 1921