103ee2515SGreg Kroah-Hartman /* 24cc27bd6SCraig Shelley * Silicon Laboratories CP210x USB to RS232 serial adaptor driver 303ee2515SGreg Kroah-Hartman * 403ee2515SGreg Kroah-Hartman * Copyright (C) 2005 Craig Shelley (craig@microtron.org.uk) 503ee2515SGreg Kroah-Hartman * 603ee2515SGreg Kroah-Hartman * This program is free software; you can redistribute it and/or 703ee2515SGreg Kroah-Hartman * modify it under the terms of the GNU General Public License version 803ee2515SGreg Kroah-Hartman * 2 as published by the Free Software Foundation. 903ee2515SGreg Kroah-Hartman * 1003ee2515SGreg Kroah-Hartman * Support to set flow control line levels using TIOCMGET and TIOCMSET 1103ee2515SGreg Kroah-Hartman * thanks to Karl Hiramoto karl@hiramoto.org. RTSCTS hardware flow 1203ee2515SGreg Kroah-Hartman * control thanks to Munir Nassar nassarmu@real-time.com 1303ee2515SGreg Kroah-Hartman * 1403ee2515SGreg Kroah-Hartman */ 1503ee2515SGreg Kroah-Hartman 1603ee2515SGreg Kroah-Hartman #include <linux/kernel.h> 1703ee2515SGreg Kroah-Hartman #include <linux/errno.h> 1803ee2515SGreg Kroah-Hartman #include <linux/slab.h> 1903ee2515SGreg Kroah-Hartman #include <linux/tty.h> 2003ee2515SGreg Kroah-Hartman #include <linux/tty_flip.h> 2103ee2515SGreg Kroah-Hartman #include <linux/module.h> 2203ee2515SGreg Kroah-Hartman #include <linux/moduleparam.h> 2303ee2515SGreg Kroah-Hartman #include <linux/usb.h> 2403ee2515SGreg Kroah-Hartman #include <linux/uaccess.h> 2503ee2515SGreg Kroah-Hartman #include <linux/usb/serial.h> 2603ee2515SGreg Kroah-Hartman 2703ee2515SGreg Kroah-Hartman /* 2803ee2515SGreg Kroah-Hartman * Version Information 2903ee2515SGreg Kroah-Hartman */ 3093ef1f1fSCraig Shelley #define DRIVER_VERSION "v0.09" 314cc27bd6SCraig Shelley #define DRIVER_DESC "Silicon Labs CP210x RS232 serial adaptor driver" 3203ee2515SGreg Kroah-Hartman 3303ee2515SGreg Kroah-Hartman /* 3403ee2515SGreg Kroah-Hartman * Function Prototypes 3503ee2515SGreg Kroah-Hartman */ 364cc27bd6SCraig Shelley static int cp210x_open(struct tty_struct *, struct usb_serial_port *, 3703ee2515SGreg Kroah-Hartman struct file *); 384cc27bd6SCraig Shelley static void cp210x_cleanup(struct usb_serial_port *); 394cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *); 404cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *, 41d2ad67b3SVomLehn struct usb_serial_port *port); 424cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port, 43d2ad67b3SVomLehn unsigned int *cflagp, unsigned int *baudp); 444cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *, 4503ee2515SGreg Kroah-Hartman struct ktermios*); 464cc27bd6SCraig Shelley static int cp210x_tiocmget(struct tty_struct *, struct file *); 474cc27bd6SCraig Shelley static int cp210x_tiocmset(struct tty_struct *, struct file *, 4803ee2515SGreg Kroah-Hartman unsigned int, unsigned int); 494cc27bd6SCraig Shelley static int cp210x_tiocmset_port(struct usb_serial_port *port, struct file *, 50d2ad67b3SVomLehn unsigned int, unsigned int); 514cc27bd6SCraig Shelley static void cp210x_break_ctl(struct tty_struct *, int); 524cc27bd6SCraig Shelley static int cp210x_startup(struct usb_serial *); 53f9c99bb8SAlan Stern static void cp210x_disconnect(struct usb_serial *); 5403ee2515SGreg Kroah-Hartman 5503ee2515SGreg Kroah-Hartman static int debug; 5603ee2515SGreg Kroah-Hartman 5703ee2515SGreg Kroah-Hartman static struct usb_device_id id_table [] = { 5803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */ 5903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ 60b7c7cbc8SCraig Shelley { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */ 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 */ 6303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1003) }, /* Dynastream ANT development board */ 6403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1004) }, /* Dynastream ANT2USB */ 6503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x0FCF, 0x1006) }, /* Dynastream ANT development board */ 6603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10A6, 0xAA26) }, /* Knock-off DCU-11 cable */ 6703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10AB, 0x10C5) }, /* Siemens MC60 Cable */ 6803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10B5, 0xAC70) }, /* Nokia CA-42 USB */ 69b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x0F91) }, /* Vstabi */ 700601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1101) }, /* Arkham Technology DS101 Bus Monitor */ 710601e116SAmit Kucheria { USB_DEVICE(0x10C4, 0x1601) }, /* Arkham Technology DS101 Adapter */ 7203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x800A) }, /* SPORTident BSM7-D-USB main station */ 7303ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x803B) }, /* Pololu USB-serial converter */ 7403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */ 7503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */ 7603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */ 7703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */ 7803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80CA) }, /* Degree Controls Inc */ 7903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80DD) }, /* Tracient RFID */ 8003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x80F6) }, /* Suunto sports instrument */ 8103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8115) }, /* Arygon NFC/Mifare Reader */ 8203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x813D) }, /* Burnside Telecom Deskmobile */ 83*8bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */ 8403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */ 8503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */ 8603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */ 8703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */ 8803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */ 8903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */ 9003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */ 9103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E2) }, /* Lipowsky Industrie Elektronik GmbH, Baby-LIN */ 9203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x81E7) }, /* Aerocomm Radio */ 93b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x81F2) }, /* C1007 HF band RFID controller */ 9403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8218) }, /* Lipowsky Industrie Elektronik GmbH, HARP-1 */ 9503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x822B) }, /* Modem EDGE(GSM) Comander 2 */ 9603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x826B) }, /* Cygnal Integrated Products, Inc., Fasttrax GPS demostration module */ 9703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10c4, 0x8293) }, /* Telegesys ETRX2USB */ 98b7c7cbc8SCraig Shelley { USB_DEVICE(0x10C4, 0x82F9) }, /* Procyon AVS */ 9903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x8341) }, /* Siemens MC35PU GPRS Modem */ 100*8bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8382) }, /* Cygnal Integrated Products, Inc. */ 10103ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0x83A8) }, /* Amber Wireless AMB2560 */ 102*8bf16ba7SCraig Shelley { USB_DEVICE(0x10C4, 0x8411) }, /* Kyocera GPS Module */ 103d23bac9fSAlex Stephens { USB_DEVICE(0x10C4, 0x846E) }, /* BEI USB Sensor Interface (VCP) */ 10403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ 10503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ 10603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */ 10703ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */ 10803ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF003) }, /* Elan Digital Systems USBpulse100 */ 10903ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C4, 0xF004) }, /* Elan Digital Systems USBcount50 */ 11003ee2515SGreg Kroah-Hartman { USB_DEVICE(0x10C5, 0xEA61) }, /* Silicon Labs MobiData GPRS USB Modem */ 111b7c7cbc8SCraig Shelley { USB_DEVICE(0x10CE, 0xEA6A) }, /* Silicon Labs MobiData GPRS USB Modem 100EU */ 11203ee2515SGreg Kroah-Hartman { USB_DEVICE(0x13AD, 0x9999) }, /* Baltech card reader */ 113b7c7cbc8SCraig Shelley { USB_DEVICE(0x1555, 0x0004) }, /* Owen AC4 USB-RS485 Converter */ 11403ee2515SGreg Kroah-Hartman { USB_DEVICE(0x166A, 0x0303) }, /* Clipsal 5500PCU C-Bus USB interface */ 11503ee2515SGreg Kroah-Hartman { USB_DEVICE(0x16D6, 0x0001) }, /* Jablotron serial interface */ 11603ee2515SGreg Kroah-Hartman { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ 11703ee2515SGreg Kroah-Hartman { } /* Terminating Entry */ 11803ee2515SGreg Kroah-Hartman }; 11903ee2515SGreg Kroah-Hartman 12003ee2515SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table); 12103ee2515SGreg Kroah-Hartman 1224cc27bd6SCraig Shelley static struct usb_driver cp210x_driver = { 1234cc27bd6SCraig Shelley .name = "cp210x", 12403ee2515SGreg Kroah-Hartman .probe = usb_serial_probe, 12503ee2515SGreg Kroah-Hartman .disconnect = usb_serial_disconnect, 12603ee2515SGreg Kroah-Hartman .id_table = id_table, 12703ee2515SGreg Kroah-Hartman .no_dynamic_id = 1, 12803ee2515SGreg Kroah-Hartman }; 12903ee2515SGreg Kroah-Hartman 1304cc27bd6SCraig Shelley static struct usb_serial_driver cp210x_device = { 13103ee2515SGreg Kroah-Hartman .driver = { 13203ee2515SGreg Kroah-Hartman .owner = THIS_MODULE, 1334cc27bd6SCraig Shelley .name = "cp210x", 13403ee2515SGreg Kroah-Hartman }, 1354cc27bd6SCraig Shelley .usb_driver = &cp210x_driver, 13603ee2515SGreg Kroah-Hartman .id_table = id_table, 13703ee2515SGreg Kroah-Hartman .num_ports = 1, 1384cc27bd6SCraig Shelley .open = cp210x_open, 1394cc27bd6SCraig Shelley .close = cp210x_close, 1404cc27bd6SCraig Shelley .break_ctl = cp210x_break_ctl, 1414cc27bd6SCraig Shelley .set_termios = cp210x_set_termios, 1424cc27bd6SCraig Shelley .tiocmget = cp210x_tiocmget, 1434cc27bd6SCraig Shelley .tiocmset = cp210x_tiocmset, 1444cc27bd6SCraig Shelley .attach = cp210x_startup, 145f9c99bb8SAlan Stern .disconnect = cp210x_disconnect, 14603ee2515SGreg Kroah-Hartman }; 14703ee2515SGreg Kroah-Hartman 14803ee2515SGreg Kroah-Hartman /* Config request types */ 14903ee2515SGreg Kroah-Hartman #define REQTYPE_HOST_TO_DEVICE 0x41 15003ee2515SGreg Kroah-Hartman #define REQTYPE_DEVICE_TO_HOST 0xc1 15103ee2515SGreg Kroah-Hartman 15293ef1f1fSCraig Shelley /* Config request codes */ 15393ef1f1fSCraig Shelley #define CP210X_IFC_ENABLE 0x00 15493ef1f1fSCraig Shelley #define CP210X_SET_BAUDDIV 0x01 15593ef1f1fSCraig Shelley #define CP210X_GET_BAUDDIV 0x02 15693ef1f1fSCraig Shelley #define CP210X_SET_LINE_CTL 0x03 15793ef1f1fSCraig Shelley #define CP210X_GET_LINE_CTL 0x04 15893ef1f1fSCraig Shelley #define CP210X_SET_BREAK 0x05 15993ef1f1fSCraig Shelley #define CP210X_IMM_CHAR 0x06 16093ef1f1fSCraig Shelley #define CP210X_SET_MHS 0x07 16193ef1f1fSCraig Shelley #define CP210X_GET_MDMSTS 0x08 16293ef1f1fSCraig Shelley #define CP210X_SET_XON 0x09 16393ef1f1fSCraig Shelley #define CP210X_SET_XOFF 0x0A 16493ef1f1fSCraig Shelley #define CP210X_SET_EVENTMASK 0x0B 16593ef1f1fSCraig Shelley #define CP210X_GET_EVENTMASK 0x0C 16693ef1f1fSCraig Shelley #define CP210X_SET_CHAR 0x0D 16793ef1f1fSCraig Shelley #define CP210X_GET_CHARS 0x0E 16893ef1f1fSCraig Shelley #define CP210X_GET_PROPS 0x0F 16993ef1f1fSCraig Shelley #define CP210X_GET_COMM_STATUS 0x10 17093ef1f1fSCraig Shelley #define CP210X_RESET 0x11 17193ef1f1fSCraig Shelley #define CP210X_PURGE 0x12 17293ef1f1fSCraig Shelley #define CP210X_SET_FLOW 0x13 17393ef1f1fSCraig Shelley #define CP210X_GET_FLOW 0x14 17493ef1f1fSCraig Shelley #define CP210X_EMBED_EVENTS 0x15 17593ef1f1fSCraig Shelley #define CP210X_GET_EVENTSTATE 0x16 17693ef1f1fSCraig Shelley #define CP210X_SET_CHARS 0x19 17703ee2515SGreg Kroah-Hartman 17893ef1f1fSCraig Shelley /* CP210X_IFC_ENABLE */ 17903ee2515SGreg Kroah-Hartman #define UART_ENABLE 0x0001 18003ee2515SGreg Kroah-Hartman #define UART_DISABLE 0x0000 18103ee2515SGreg Kroah-Hartman 18293ef1f1fSCraig Shelley /* CP210X_(SET|GET)_BAUDDIV */ 18303ee2515SGreg Kroah-Hartman #define BAUD_RATE_GEN_FREQ 0x384000 18403ee2515SGreg Kroah-Hartman 18593ef1f1fSCraig Shelley /* CP210X_(SET|GET)_LINE_CTL */ 18603ee2515SGreg Kroah-Hartman #define BITS_DATA_MASK 0X0f00 18703ee2515SGreg Kroah-Hartman #define BITS_DATA_5 0X0500 18803ee2515SGreg Kroah-Hartman #define BITS_DATA_6 0X0600 18903ee2515SGreg Kroah-Hartman #define BITS_DATA_7 0X0700 19003ee2515SGreg Kroah-Hartman #define BITS_DATA_8 0X0800 19103ee2515SGreg Kroah-Hartman #define BITS_DATA_9 0X0900 19203ee2515SGreg Kroah-Hartman 19303ee2515SGreg Kroah-Hartman #define BITS_PARITY_MASK 0x00f0 19403ee2515SGreg Kroah-Hartman #define BITS_PARITY_NONE 0x0000 19503ee2515SGreg Kroah-Hartman #define BITS_PARITY_ODD 0x0010 19603ee2515SGreg Kroah-Hartman #define BITS_PARITY_EVEN 0x0020 19703ee2515SGreg Kroah-Hartman #define BITS_PARITY_MARK 0x0030 19803ee2515SGreg Kroah-Hartman #define BITS_PARITY_SPACE 0x0040 19903ee2515SGreg Kroah-Hartman 20003ee2515SGreg Kroah-Hartman #define BITS_STOP_MASK 0x000f 20103ee2515SGreg Kroah-Hartman #define BITS_STOP_1 0x0000 20203ee2515SGreg Kroah-Hartman #define BITS_STOP_1_5 0x0001 20303ee2515SGreg Kroah-Hartman #define BITS_STOP_2 0x0002 20403ee2515SGreg Kroah-Hartman 20593ef1f1fSCraig Shelley /* CP210X_SET_BREAK */ 20603ee2515SGreg Kroah-Hartman #define BREAK_ON 0x0000 20703ee2515SGreg Kroah-Hartman #define BREAK_OFF 0x0001 20803ee2515SGreg Kroah-Hartman 20993ef1f1fSCraig Shelley /* CP210X_(SET_MHS|GET_MDMSTS) */ 21003ee2515SGreg Kroah-Hartman #define CONTROL_DTR 0x0001 21103ee2515SGreg Kroah-Hartman #define CONTROL_RTS 0x0002 21203ee2515SGreg Kroah-Hartman #define CONTROL_CTS 0x0010 21303ee2515SGreg Kroah-Hartman #define CONTROL_DSR 0x0020 21403ee2515SGreg Kroah-Hartman #define CONTROL_RING 0x0040 21503ee2515SGreg Kroah-Hartman #define CONTROL_DCD 0x0080 21603ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_DTR 0x0100 21703ee2515SGreg Kroah-Hartman #define CONTROL_WRITE_RTS 0x0200 21803ee2515SGreg Kroah-Hartman 21903ee2515SGreg Kroah-Hartman /* 2204cc27bd6SCraig Shelley * cp210x_get_config 2214cc27bd6SCraig Shelley * Reads from the CP210x configuration registers 22203ee2515SGreg Kroah-Hartman * 'size' is specified in bytes. 22303ee2515SGreg Kroah-Hartman * 'data' is a pointer to a pre-allocated array of integers large 22403ee2515SGreg Kroah-Hartman * enough to hold 'size' bytes (with 4 bytes to each integer) 22503ee2515SGreg Kroah-Hartman */ 2264cc27bd6SCraig Shelley static int cp210x_get_config(struct usb_serial_port *port, u8 request, 22703ee2515SGreg Kroah-Hartman unsigned int *data, int size) 22803ee2515SGreg Kroah-Hartman { 22903ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 23003ee2515SGreg Kroah-Hartman __le32 *buf; 23103ee2515SGreg Kroah-Hartman int result, i, length; 23203ee2515SGreg Kroah-Hartman 23303ee2515SGreg Kroah-Hartman /* Number of integers required to contain the array */ 23403ee2515SGreg Kroah-Hartman length = (((size - 1) | 3) + 1)/4; 23503ee2515SGreg Kroah-Hartman 23603ee2515SGreg Kroah-Hartman buf = kcalloc(length, sizeof(__le32), GFP_KERNEL); 23703ee2515SGreg Kroah-Hartman if (!buf) { 23803ee2515SGreg Kroah-Hartman dev_err(&port->dev, "%s - out of memory.\n", __func__); 23903ee2515SGreg Kroah-Hartman return -ENOMEM; 24003ee2515SGreg Kroah-Hartman } 24103ee2515SGreg Kroah-Hartman 24203ee2515SGreg Kroah-Hartman /* Issue the request, attempting to read 'size' bytes */ 24303ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), 24403ee2515SGreg Kroah-Hartman request, REQTYPE_DEVICE_TO_HOST, 0x0000, 24503ee2515SGreg Kroah-Hartman 0, buf, size, 300); 24603ee2515SGreg Kroah-Hartman 24703ee2515SGreg Kroah-Hartman /* Convert data into an array of integers */ 24803ee2515SGreg Kroah-Hartman for (i = 0; i < length; i++) 24903ee2515SGreg Kroah-Hartman data[i] = le32_to_cpu(buf[i]); 25003ee2515SGreg Kroah-Hartman 25103ee2515SGreg Kroah-Hartman kfree(buf); 25203ee2515SGreg Kroah-Hartman 25303ee2515SGreg Kroah-Hartman if (result != size) { 25403ee2515SGreg Kroah-Hartman dbg("%s - Unable to send config request, " 25503ee2515SGreg Kroah-Hartman "request=0x%x size=%d result=%d\n", 25603ee2515SGreg Kroah-Hartman __func__, request, size, result); 25703ee2515SGreg Kroah-Hartman return -EPROTO; 25803ee2515SGreg Kroah-Hartman } 25903ee2515SGreg Kroah-Hartman 26003ee2515SGreg Kroah-Hartman return 0; 26103ee2515SGreg Kroah-Hartman } 26203ee2515SGreg Kroah-Hartman 26303ee2515SGreg Kroah-Hartman /* 2644cc27bd6SCraig Shelley * cp210x_set_config 2654cc27bd6SCraig Shelley * Writes to the CP210x configuration registers 26603ee2515SGreg Kroah-Hartman * Values less than 16 bits wide are sent directly 26703ee2515SGreg Kroah-Hartman * 'size' is specified in bytes. 26803ee2515SGreg Kroah-Hartman */ 2694cc27bd6SCraig Shelley static int cp210x_set_config(struct usb_serial_port *port, u8 request, 27003ee2515SGreg Kroah-Hartman unsigned int *data, int size) 27103ee2515SGreg Kroah-Hartman { 27203ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 27303ee2515SGreg Kroah-Hartman __le32 *buf; 27403ee2515SGreg Kroah-Hartman int result, i, length; 27503ee2515SGreg Kroah-Hartman 27603ee2515SGreg Kroah-Hartman /* Number of integers required to contain the array */ 27703ee2515SGreg Kroah-Hartman length = (((size - 1) | 3) + 1)/4; 27803ee2515SGreg Kroah-Hartman 27903ee2515SGreg Kroah-Hartman buf = kmalloc(length * sizeof(__le32), GFP_KERNEL); 28003ee2515SGreg Kroah-Hartman if (!buf) { 28103ee2515SGreg Kroah-Hartman dev_err(&port->dev, "%s - out of memory.\n", 28203ee2515SGreg Kroah-Hartman __func__); 28303ee2515SGreg Kroah-Hartman return -ENOMEM; 28403ee2515SGreg Kroah-Hartman } 28503ee2515SGreg Kroah-Hartman 28603ee2515SGreg Kroah-Hartman /* Array of integers into bytes */ 28703ee2515SGreg Kroah-Hartman for (i = 0; i < length; i++) 28803ee2515SGreg Kroah-Hartman buf[i] = cpu_to_le32(data[i]); 28903ee2515SGreg Kroah-Hartman 29003ee2515SGreg Kroah-Hartman if (size > 2) { 29103ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, 29203ee2515SGreg Kroah-Hartman usb_sndctrlpipe(serial->dev, 0), 29303ee2515SGreg Kroah-Hartman request, REQTYPE_HOST_TO_DEVICE, 0x0000, 29403ee2515SGreg Kroah-Hartman 0, buf, size, 300); 29503ee2515SGreg Kroah-Hartman } else { 29603ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, 29703ee2515SGreg Kroah-Hartman usb_sndctrlpipe(serial->dev, 0), 29803ee2515SGreg Kroah-Hartman request, REQTYPE_HOST_TO_DEVICE, data[0], 29903ee2515SGreg Kroah-Hartman 0, NULL, 0, 300); 30003ee2515SGreg Kroah-Hartman } 30103ee2515SGreg Kroah-Hartman 30203ee2515SGreg Kroah-Hartman kfree(buf); 30303ee2515SGreg Kroah-Hartman 30403ee2515SGreg Kroah-Hartman if ((size > 2 && result != size) || result < 0) { 30503ee2515SGreg Kroah-Hartman dbg("%s - Unable to send request, " 30603ee2515SGreg Kroah-Hartman "request=0x%x size=%d result=%d\n", 30703ee2515SGreg Kroah-Hartman __func__, request, size, result); 30803ee2515SGreg Kroah-Hartman return -EPROTO; 30903ee2515SGreg Kroah-Hartman } 31003ee2515SGreg Kroah-Hartman 31103ee2515SGreg Kroah-Hartman /* Single data value */ 31203ee2515SGreg Kroah-Hartman result = usb_control_msg(serial->dev, 31303ee2515SGreg Kroah-Hartman usb_sndctrlpipe(serial->dev, 0), 31403ee2515SGreg Kroah-Hartman request, REQTYPE_HOST_TO_DEVICE, data[0], 31503ee2515SGreg Kroah-Hartman 0, NULL, 0, 300); 31603ee2515SGreg Kroah-Hartman return 0; 31703ee2515SGreg Kroah-Hartman } 31803ee2515SGreg Kroah-Hartman 31903ee2515SGreg Kroah-Hartman /* 3204cc27bd6SCraig Shelley * cp210x_set_config_single 3214cc27bd6SCraig Shelley * Convenience function for calling cp210x_set_config on single data values 32203ee2515SGreg Kroah-Hartman * without requiring an integer pointer 32303ee2515SGreg Kroah-Hartman */ 3244cc27bd6SCraig Shelley static inline int cp210x_set_config_single(struct usb_serial_port *port, 32503ee2515SGreg Kroah-Hartman u8 request, unsigned int data) 32603ee2515SGreg Kroah-Hartman { 3274cc27bd6SCraig Shelley return cp210x_set_config(port, request, &data, 2); 32803ee2515SGreg Kroah-Hartman } 32903ee2515SGreg Kroah-Hartman 33003ee2515SGreg Kroah-Hartman /* 3314cc27bd6SCraig Shelley * cp210x_quantise_baudrate 33203ee2515SGreg Kroah-Hartman * Quantises the baud rate as per AN205 Table 1 33303ee2515SGreg Kroah-Hartman */ 3344cc27bd6SCraig Shelley static unsigned int cp210x_quantise_baudrate(unsigned int baud) { 33503ee2515SGreg Kroah-Hartman if (baud <= 56) baud = 0; 33603ee2515SGreg Kroah-Hartman else if (baud <= 300) baud = 300; 33703ee2515SGreg Kroah-Hartman else if (baud <= 600) baud = 600; 33803ee2515SGreg Kroah-Hartman else if (baud <= 1200) baud = 1200; 33903ee2515SGreg Kroah-Hartman else if (baud <= 1800) baud = 1800; 34003ee2515SGreg Kroah-Hartman else if (baud <= 2400) baud = 2400; 34103ee2515SGreg Kroah-Hartman else if (baud <= 4000) baud = 4000; 34203ee2515SGreg Kroah-Hartman else if (baud <= 4803) baud = 4800; 34303ee2515SGreg Kroah-Hartman else if (baud <= 7207) baud = 7200; 34403ee2515SGreg Kroah-Hartman else if (baud <= 9612) baud = 9600; 34503ee2515SGreg Kroah-Hartman else if (baud <= 14428) baud = 14400; 34603ee2515SGreg Kroah-Hartman else if (baud <= 16062) baud = 16000; 34703ee2515SGreg Kroah-Hartman else if (baud <= 19250) baud = 19200; 34803ee2515SGreg Kroah-Hartman else if (baud <= 28912) baud = 28800; 34903ee2515SGreg Kroah-Hartman else if (baud <= 38601) baud = 38400; 35003ee2515SGreg Kroah-Hartman else if (baud <= 51558) baud = 51200; 35103ee2515SGreg Kroah-Hartman else if (baud <= 56280) baud = 56000; 35203ee2515SGreg Kroah-Hartman else if (baud <= 58053) baud = 57600; 35303ee2515SGreg Kroah-Hartman else if (baud <= 64111) baud = 64000; 35403ee2515SGreg Kroah-Hartman else if (baud <= 77608) baud = 76800; 35503ee2515SGreg Kroah-Hartman else if (baud <= 117028) baud = 115200; 35603ee2515SGreg Kroah-Hartman else if (baud <= 129347) baud = 128000; 35703ee2515SGreg Kroah-Hartman else if (baud <= 156868) baud = 153600; 35803ee2515SGreg Kroah-Hartman else if (baud <= 237832) baud = 230400; 35903ee2515SGreg Kroah-Hartman else if (baud <= 254234) baud = 250000; 36003ee2515SGreg Kroah-Hartman else if (baud <= 273066) baud = 256000; 36103ee2515SGreg Kroah-Hartman else if (baud <= 491520) baud = 460800; 36203ee2515SGreg Kroah-Hartman else if (baud <= 567138) baud = 500000; 36303ee2515SGreg Kroah-Hartman else if (baud <= 670254) baud = 576000; 36403ee2515SGreg Kroah-Hartman else if (baud <= 1053257) baud = 921600; 36503ee2515SGreg Kroah-Hartman else if (baud <= 1474560) baud = 1228800; 36603ee2515SGreg Kroah-Hartman else if (baud <= 2457600) baud = 1843200; 36703ee2515SGreg Kroah-Hartman else baud = 3686400; 36803ee2515SGreg Kroah-Hartman return baud; 36903ee2515SGreg Kroah-Hartman } 37003ee2515SGreg Kroah-Hartman 3714cc27bd6SCraig Shelley static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port, 37203ee2515SGreg Kroah-Hartman struct file *filp) 37303ee2515SGreg Kroah-Hartman { 37403ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 37503ee2515SGreg Kroah-Hartman int result; 37603ee2515SGreg Kroah-Hartman 37703ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 37803ee2515SGreg Kroah-Hartman 3794cc27bd6SCraig Shelley if (cp210x_set_config_single(port, CP210X_IFC_ENABLE, UART_ENABLE)) { 38003ee2515SGreg Kroah-Hartman dev_err(&port->dev, "%s - Unable to enable UART\n", 38103ee2515SGreg Kroah-Hartman __func__); 38203ee2515SGreg Kroah-Hartman return -EPROTO; 38303ee2515SGreg Kroah-Hartman } 38403ee2515SGreg Kroah-Hartman 38503ee2515SGreg Kroah-Hartman /* Start reading from the device */ 38603ee2515SGreg Kroah-Hartman usb_fill_bulk_urb(port->read_urb, serial->dev, 38703ee2515SGreg Kroah-Hartman usb_rcvbulkpipe(serial->dev, 38803ee2515SGreg Kroah-Hartman port->bulk_in_endpointAddress), 38903ee2515SGreg Kroah-Hartman port->read_urb->transfer_buffer, 39003ee2515SGreg Kroah-Hartman port->read_urb->transfer_buffer_length, 39103ee2515SGreg Kroah-Hartman serial->type->read_bulk_callback, 39203ee2515SGreg Kroah-Hartman port); 39303ee2515SGreg Kroah-Hartman result = usb_submit_urb(port->read_urb, GFP_KERNEL); 39403ee2515SGreg Kroah-Hartman if (result) { 39503ee2515SGreg Kroah-Hartman dev_err(&port->dev, "%s - failed resubmitting read urb, " 39603ee2515SGreg Kroah-Hartman "error %d\n", __func__, result); 39703ee2515SGreg Kroah-Hartman return result; 39803ee2515SGreg Kroah-Hartman } 39903ee2515SGreg Kroah-Hartman 40003ee2515SGreg Kroah-Hartman /* Configure the termios structure */ 4014cc27bd6SCraig Shelley cp210x_get_termios(tty, port); 40203ee2515SGreg Kroah-Hartman 40303ee2515SGreg Kroah-Hartman /* Set the DTR and RTS pins low */ 4044cc27bd6SCraig Shelley cp210x_tiocmset_port(tty ? (struct usb_serial_port *) tty->driver_data 405d2ad67b3SVomLehn : port, 406d2ad67b3SVomLehn NULL, TIOCM_DTR | TIOCM_RTS, 0); 40703ee2515SGreg Kroah-Hartman 40803ee2515SGreg Kroah-Hartman return 0; 40903ee2515SGreg Kroah-Hartman } 41003ee2515SGreg Kroah-Hartman 4114cc27bd6SCraig Shelley static void cp210x_cleanup(struct usb_serial_port *port) 41203ee2515SGreg Kroah-Hartman { 41303ee2515SGreg Kroah-Hartman struct usb_serial *serial = port->serial; 41403ee2515SGreg Kroah-Hartman 41503ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 41603ee2515SGreg Kroah-Hartman 41703ee2515SGreg Kroah-Hartman if (serial->dev) { 41803ee2515SGreg Kroah-Hartman /* shutdown any bulk reads that might be going on */ 41903ee2515SGreg Kroah-Hartman if (serial->num_bulk_out) 42003ee2515SGreg Kroah-Hartman usb_kill_urb(port->write_urb); 42103ee2515SGreg Kroah-Hartman if (serial->num_bulk_in) 42203ee2515SGreg Kroah-Hartman usb_kill_urb(port->read_urb); 42303ee2515SGreg Kroah-Hartman } 42403ee2515SGreg Kroah-Hartman } 42503ee2515SGreg Kroah-Hartman 4264cc27bd6SCraig Shelley static void cp210x_close(struct usb_serial_port *port) 42703ee2515SGreg Kroah-Hartman { 42803ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 42903ee2515SGreg Kroah-Hartman 43003ee2515SGreg Kroah-Hartman /* shutdown our urbs */ 43103ee2515SGreg Kroah-Hartman dbg("%s - shutting down urbs", __func__); 43203ee2515SGreg Kroah-Hartman usb_kill_urb(port->write_urb); 43303ee2515SGreg Kroah-Hartman usb_kill_urb(port->read_urb); 43403ee2515SGreg Kroah-Hartman 43503ee2515SGreg Kroah-Hartman mutex_lock(&port->serial->disc_mutex); 43603ee2515SGreg Kroah-Hartman if (!port->serial->disconnected) 4374cc27bd6SCraig Shelley cp210x_set_config_single(port, CP210X_IFC_ENABLE, UART_DISABLE); 43803ee2515SGreg Kroah-Hartman mutex_unlock(&port->serial->disc_mutex); 43903ee2515SGreg Kroah-Hartman } 44003ee2515SGreg Kroah-Hartman 44103ee2515SGreg Kroah-Hartman /* 4424cc27bd6SCraig Shelley * cp210x_get_termios 44303ee2515SGreg Kroah-Hartman * Reads the baud rate, data bits, parity, stop bits and flow control mode 44403ee2515SGreg Kroah-Hartman * from the device, corrects any unsupported values, and configures the 44503ee2515SGreg Kroah-Hartman * termios structure to reflect the state of the device 44603ee2515SGreg Kroah-Hartman */ 4474cc27bd6SCraig Shelley static void cp210x_get_termios(struct tty_struct *tty, 448d2ad67b3SVomLehn struct usb_serial_port *port) 44903ee2515SGreg Kroah-Hartman { 450d2ad67b3SVomLehn unsigned int baud; 451d2ad67b3SVomLehn 452d2ad67b3SVomLehn if (tty) { 4534cc27bd6SCraig Shelley cp210x_get_termios_port(tty->driver_data, 454d2ad67b3SVomLehn &tty->termios->c_cflag, &baud); 455d2ad67b3SVomLehn tty_encode_baud_rate(tty, baud, baud); 456d2ad67b3SVomLehn } 457d2ad67b3SVomLehn 458d2ad67b3SVomLehn else { 459d2ad67b3SVomLehn unsigned int cflag; 460d2ad67b3SVomLehn cflag = 0; 4614cc27bd6SCraig Shelley cp210x_get_termios_port(port, &cflag, &baud); 462d2ad67b3SVomLehn } 463d2ad67b3SVomLehn } 464d2ad67b3SVomLehn 465d2ad67b3SVomLehn /* 4664cc27bd6SCraig Shelley * cp210x_get_termios_port 4674cc27bd6SCraig Shelley * This is the heart of cp210x_get_termios which always uses a &usb_serial_port. 468d2ad67b3SVomLehn */ 4694cc27bd6SCraig Shelley static void cp210x_get_termios_port(struct usb_serial_port *port, 470d2ad67b3SVomLehn unsigned int *cflagp, unsigned int *baudp) 471d2ad67b3SVomLehn { 47203ee2515SGreg Kroah-Hartman unsigned int cflag, modem_ctl[4]; 47303ee2515SGreg Kroah-Hartman unsigned int baud; 47403ee2515SGreg Kroah-Hartman unsigned int bits; 47503ee2515SGreg Kroah-Hartman 47603ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 47703ee2515SGreg Kroah-Hartman 4784cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_BAUDDIV, &baud, 2); 47903ee2515SGreg Kroah-Hartman /* Convert to baudrate */ 48003ee2515SGreg Kroah-Hartman if (baud) 4814cc27bd6SCraig Shelley baud = cp210x_quantise_baudrate((BAUD_RATE_GEN_FREQ + baud/2)/ baud); 48203ee2515SGreg Kroah-Hartman 48303ee2515SGreg Kroah-Hartman dbg("%s - baud rate = %d", __func__, baud); 484d2ad67b3SVomLehn *baudp = baud; 48503ee2515SGreg Kroah-Hartman 486d2ad67b3SVomLehn cflag = *cflagp; 48703ee2515SGreg Kroah-Hartman 4884cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 48903ee2515SGreg Kroah-Hartman cflag &= ~CSIZE; 49003ee2515SGreg Kroah-Hartman switch (bits & BITS_DATA_MASK) { 49103ee2515SGreg Kroah-Hartman case BITS_DATA_5: 49203ee2515SGreg Kroah-Hartman dbg("%s - data bits = 5", __func__); 49303ee2515SGreg Kroah-Hartman cflag |= CS5; 49403ee2515SGreg Kroah-Hartman break; 49503ee2515SGreg Kroah-Hartman case BITS_DATA_6: 49603ee2515SGreg Kroah-Hartman dbg("%s - data bits = 6", __func__); 49703ee2515SGreg Kroah-Hartman cflag |= CS6; 49803ee2515SGreg Kroah-Hartman break; 49903ee2515SGreg Kroah-Hartman case BITS_DATA_7: 50003ee2515SGreg Kroah-Hartman dbg("%s - data bits = 7", __func__); 50103ee2515SGreg Kroah-Hartman cflag |= CS7; 50203ee2515SGreg Kroah-Hartman break; 50303ee2515SGreg Kroah-Hartman case BITS_DATA_8: 50403ee2515SGreg Kroah-Hartman dbg("%s - data bits = 8", __func__); 50503ee2515SGreg Kroah-Hartman cflag |= CS8; 50603ee2515SGreg Kroah-Hartman break; 50703ee2515SGreg Kroah-Hartman case BITS_DATA_9: 50803ee2515SGreg Kroah-Hartman dbg("%s - data bits = 9 (not supported, using 8 data bits)", 50903ee2515SGreg Kroah-Hartman __func__); 51003ee2515SGreg Kroah-Hartman cflag |= CS8; 51103ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 51203ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 5134cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 51403ee2515SGreg Kroah-Hartman break; 51503ee2515SGreg Kroah-Hartman default: 51603ee2515SGreg Kroah-Hartman dbg("%s - Unknown number of data bits, using 8", __func__); 51703ee2515SGreg Kroah-Hartman cflag |= CS8; 51803ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 51903ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 5204cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 52103ee2515SGreg Kroah-Hartman break; 52203ee2515SGreg Kroah-Hartman } 52303ee2515SGreg Kroah-Hartman 52403ee2515SGreg Kroah-Hartman switch (bits & BITS_PARITY_MASK) { 52503ee2515SGreg Kroah-Hartman case BITS_PARITY_NONE: 52603ee2515SGreg Kroah-Hartman dbg("%s - parity = NONE", __func__); 52703ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 52803ee2515SGreg Kroah-Hartman break; 52903ee2515SGreg Kroah-Hartman case BITS_PARITY_ODD: 53003ee2515SGreg Kroah-Hartman dbg("%s - parity = ODD", __func__); 53103ee2515SGreg Kroah-Hartman cflag |= (PARENB|PARODD); 53203ee2515SGreg Kroah-Hartman break; 53303ee2515SGreg Kroah-Hartman case BITS_PARITY_EVEN: 53403ee2515SGreg Kroah-Hartman dbg("%s - parity = EVEN", __func__); 53503ee2515SGreg Kroah-Hartman cflag &= ~PARODD; 53603ee2515SGreg Kroah-Hartman cflag |= PARENB; 53703ee2515SGreg Kroah-Hartman break; 53803ee2515SGreg Kroah-Hartman case BITS_PARITY_MARK: 53903ee2515SGreg Kroah-Hartman dbg("%s - parity = MARK (not supported, disabling parity)", 54003ee2515SGreg Kroah-Hartman __func__); 54103ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 54203ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 5434cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 54403ee2515SGreg Kroah-Hartman break; 54503ee2515SGreg Kroah-Hartman case BITS_PARITY_SPACE: 54603ee2515SGreg Kroah-Hartman dbg("%s - parity = SPACE (not supported, disabling parity)", 54703ee2515SGreg Kroah-Hartman __func__); 54803ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 54903ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 5504cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 55103ee2515SGreg Kroah-Hartman break; 55203ee2515SGreg Kroah-Hartman default: 55303ee2515SGreg Kroah-Hartman dbg("%s - Unknown parity mode, disabling parity", __func__); 55403ee2515SGreg Kroah-Hartman cflag &= ~PARENB; 55503ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 5564cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 55703ee2515SGreg Kroah-Hartman break; 55803ee2515SGreg Kroah-Hartman } 55903ee2515SGreg Kroah-Hartman 56003ee2515SGreg Kroah-Hartman cflag &= ~CSTOPB; 56103ee2515SGreg Kroah-Hartman switch (bits & BITS_STOP_MASK) { 56203ee2515SGreg Kroah-Hartman case BITS_STOP_1: 56303ee2515SGreg Kroah-Hartman dbg("%s - stop bits = 1", __func__); 56403ee2515SGreg Kroah-Hartman break; 56503ee2515SGreg Kroah-Hartman case BITS_STOP_1_5: 56603ee2515SGreg Kroah-Hartman dbg("%s - stop bits = 1.5 (not supported, using 1 stop bit)", 56703ee2515SGreg Kroah-Hartman __func__); 56803ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 5694cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 57003ee2515SGreg Kroah-Hartman break; 57103ee2515SGreg Kroah-Hartman case BITS_STOP_2: 57203ee2515SGreg Kroah-Hartman dbg("%s - stop bits = 2", __func__); 57303ee2515SGreg Kroah-Hartman cflag |= CSTOPB; 57403ee2515SGreg Kroah-Hartman break; 57503ee2515SGreg Kroah-Hartman default: 57603ee2515SGreg Kroah-Hartman dbg("%s - Unknown number of stop bits, using 1 stop bit", 57703ee2515SGreg Kroah-Hartman __func__); 57803ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 5794cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2); 58003ee2515SGreg Kroah-Hartman break; 58103ee2515SGreg Kroah-Hartman } 58203ee2515SGreg Kroah-Hartman 5834cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_FLOW, modem_ctl, 16); 58403ee2515SGreg Kroah-Hartman if (modem_ctl[0] & 0x0008) { 58503ee2515SGreg Kroah-Hartman dbg("%s - flow control = CRTSCTS", __func__); 58603ee2515SGreg Kroah-Hartman cflag |= CRTSCTS; 58703ee2515SGreg Kroah-Hartman } else { 58803ee2515SGreg Kroah-Hartman dbg("%s - flow control = NONE", __func__); 58903ee2515SGreg Kroah-Hartman cflag &= ~CRTSCTS; 59003ee2515SGreg Kroah-Hartman } 59103ee2515SGreg Kroah-Hartman 592d2ad67b3SVomLehn *cflagp = cflag; 59303ee2515SGreg Kroah-Hartman } 59403ee2515SGreg Kroah-Hartman 5954cc27bd6SCraig Shelley static void cp210x_set_termios(struct tty_struct *tty, 59603ee2515SGreg Kroah-Hartman struct usb_serial_port *port, struct ktermios *old_termios) 59703ee2515SGreg Kroah-Hartman { 59803ee2515SGreg Kroah-Hartman unsigned int cflag, old_cflag; 59903ee2515SGreg Kroah-Hartman unsigned int baud = 0, bits; 60003ee2515SGreg Kroah-Hartman unsigned int modem_ctl[4]; 60103ee2515SGreg Kroah-Hartman 60203ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 60303ee2515SGreg Kroah-Hartman 60403ee2515SGreg Kroah-Hartman if (!tty) 60503ee2515SGreg Kroah-Hartman return; 60603ee2515SGreg Kroah-Hartman 60703ee2515SGreg Kroah-Hartman tty->termios->c_cflag &= ~CMSPAR; 60803ee2515SGreg Kroah-Hartman cflag = tty->termios->c_cflag; 60903ee2515SGreg Kroah-Hartman old_cflag = old_termios->c_cflag; 6104cc27bd6SCraig Shelley baud = cp210x_quantise_baudrate(tty_get_baud_rate(tty)); 61103ee2515SGreg Kroah-Hartman 61203ee2515SGreg Kroah-Hartman /* If the baud rate is to be updated*/ 61303ee2515SGreg Kroah-Hartman if (baud != tty_termios_baud_rate(old_termios) && baud != 0) { 61403ee2515SGreg Kroah-Hartman dbg("%s - Setting baud rate to %d baud", __func__, 61503ee2515SGreg Kroah-Hartman baud); 6164cc27bd6SCraig Shelley if (cp210x_set_config_single(port, CP210X_SET_BAUDDIV, 61703ee2515SGreg Kroah-Hartman ((BAUD_RATE_GEN_FREQ + baud/2) / baud))) { 61803ee2515SGreg Kroah-Hartman dbg("Baud rate requested not supported by device\n"); 61903ee2515SGreg Kroah-Hartman baud = tty_termios_baud_rate(old_termios); 62003ee2515SGreg Kroah-Hartman } 62103ee2515SGreg Kroah-Hartman } 62203ee2515SGreg Kroah-Hartman /* Report back the resulting baud rate */ 62303ee2515SGreg Kroah-Hartman tty_encode_baud_rate(tty, baud, baud); 62403ee2515SGreg Kroah-Hartman 62503ee2515SGreg Kroah-Hartman /* If the number of data bits is to be updated */ 62603ee2515SGreg Kroah-Hartman if ((cflag & CSIZE) != (old_cflag & CSIZE)) { 6274cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 62803ee2515SGreg Kroah-Hartman bits &= ~BITS_DATA_MASK; 62903ee2515SGreg Kroah-Hartman switch (cflag & CSIZE) { 63003ee2515SGreg Kroah-Hartman case CS5: 63103ee2515SGreg Kroah-Hartman bits |= BITS_DATA_5; 63203ee2515SGreg Kroah-Hartman dbg("%s - data bits = 5", __func__); 63303ee2515SGreg Kroah-Hartman break; 63403ee2515SGreg Kroah-Hartman case CS6: 63503ee2515SGreg Kroah-Hartman bits |= BITS_DATA_6; 63603ee2515SGreg Kroah-Hartman dbg("%s - data bits = 6", __func__); 63703ee2515SGreg Kroah-Hartman break; 63803ee2515SGreg Kroah-Hartman case CS7: 63903ee2515SGreg Kroah-Hartman bits |= BITS_DATA_7; 64003ee2515SGreg Kroah-Hartman dbg("%s - data bits = 7", __func__); 64103ee2515SGreg Kroah-Hartman break; 64203ee2515SGreg Kroah-Hartman case CS8: 64303ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 64403ee2515SGreg Kroah-Hartman dbg("%s - data bits = 8", __func__); 64503ee2515SGreg Kroah-Hartman break; 64603ee2515SGreg Kroah-Hartman /*case CS9: 64703ee2515SGreg Kroah-Hartman bits |= BITS_DATA_9; 64803ee2515SGreg Kroah-Hartman dbg("%s - data bits = 9", __func__); 64903ee2515SGreg Kroah-Hartman break;*/ 65003ee2515SGreg Kroah-Hartman default: 6514cc27bd6SCraig Shelley dbg("cp210x driver does not " 65203ee2515SGreg Kroah-Hartman "support the number of bits requested," 65303ee2515SGreg Kroah-Hartman " using 8 bit mode\n"); 65403ee2515SGreg Kroah-Hartman bits |= BITS_DATA_8; 65503ee2515SGreg Kroah-Hartman break; 65603ee2515SGreg Kroah-Hartman } 6574cc27bd6SCraig Shelley if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2)) 65803ee2515SGreg Kroah-Hartman dbg("Number of data bits requested " 65903ee2515SGreg Kroah-Hartman "not supported by device\n"); 66003ee2515SGreg Kroah-Hartman } 66103ee2515SGreg Kroah-Hartman 66203ee2515SGreg Kroah-Hartman if ((cflag & (PARENB|PARODD)) != (old_cflag & (PARENB|PARODD))) { 6634cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 66403ee2515SGreg Kroah-Hartman bits &= ~BITS_PARITY_MASK; 66503ee2515SGreg Kroah-Hartman if (cflag & PARENB) { 66603ee2515SGreg Kroah-Hartman if (cflag & PARODD) { 66703ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_ODD; 66803ee2515SGreg Kroah-Hartman dbg("%s - parity = ODD", __func__); 66903ee2515SGreg Kroah-Hartman } else { 67003ee2515SGreg Kroah-Hartman bits |= BITS_PARITY_EVEN; 67103ee2515SGreg Kroah-Hartman dbg("%s - parity = EVEN", __func__); 67203ee2515SGreg Kroah-Hartman } 67303ee2515SGreg Kroah-Hartman } 6744cc27bd6SCraig Shelley if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2)) 67503ee2515SGreg Kroah-Hartman dbg("Parity mode not supported " 67603ee2515SGreg Kroah-Hartman "by device\n"); 67703ee2515SGreg Kroah-Hartman } 67803ee2515SGreg Kroah-Hartman 67903ee2515SGreg Kroah-Hartman if ((cflag & CSTOPB) != (old_cflag & CSTOPB)) { 6804cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_LINE_CTL, &bits, 2); 68103ee2515SGreg Kroah-Hartman bits &= ~BITS_STOP_MASK; 68203ee2515SGreg Kroah-Hartman if (cflag & CSTOPB) { 68303ee2515SGreg Kroah-Hartman bits |= BITS_STOP_2; 68403ee2515SGreg Kroah-Hartman dbg("%s - stop bits = 2", __func__); 68503ee2515SGreg Kroah-Hartman } else { 68603ee2515SGreg Kroah-Hartman bits |= BITS_STOP_1; 68703ee2515SGreg Kroah-Hartman dbg("%s - stop bits = 1", __func__); 68803ee2515SGreg Kroah-Hartman } 6894cc27bd6SCraig Shelley if (cp210x_set_config(port, CP210X_SET_LINE_CTL, &bits, 2)) 69003ee2515SGreg Kroah-Hartman dbg("Number of stop bits requested " 69103ee2515SGreg Kroah-Hartman "not supported by device\n"); 69203ee2515SGreg Kroah-Hartman } 69303ee2515SGreg Kroah-Hartman 69403ee2515SGreg Kroah-Hartman if ((cflag & CRTSCTS) != (old_cflag & CRTSCTS)) { 6954cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_FLOW, modem_ctl, 16); 69603ee2515SGreg Kroah-Hartman dbg("%s - read modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x", 69703ee2515SGreg Kroah-Hartman __func__, modem_ctl[0], modem_ctl[1], 69803ee2515SGreg Kroah-Hartman modem_ctl[2], modem_ctl[3]); 69903ee2515SGreg Kroah-Hartman 70003ee2515SGreg Kroah-Hartman if (cflag & CRTSCTS) { 70103ee2515SGreg Kroah-Hartman modem_ctl[0] &= ~0x7B; 70203ee2515SGreg Kroah-Hartman modem_ctl[0] |= 0x09; 70303ee2515SGreg Kroah-Hartman modem_ctl[1] = 0x80; 70403ee2515SGreg Kroah-Hartman dbg("%s - flow control = CRTSCTS", __func__); 70503ee2515SGreg Kroah-Hartman } else { 70603ee2515SGreg Kroah-Hartman modem_ctl[0] &= ~0x7B; 70703ee2515SGreg Kroah-Hartman modem_ctl[0] |= 0x01; 70803ee2515SGreg Kroah-Hartman modem_ctl[1] |= 0x40; 70903ee2515SGreg Kroah-Hartman dbg("%s - flow control = NONE", __func__); 71003ee2515SGreg Kroah-Hartman } 71103ee2515SGreg Kroah-Hartman 71203ee2515SGreg Kroah-Hartman dbg("%s - write modem controls = 0x%.4x 0x%.4x 0x%.4x 0x%.4x", 71303ee2515SGreg Kroah-Hartman __func__, modem_ctl[0], modem_ctl[1], 71403ee2515SGreg Kroah-Hartman modem_ctl[2], modem_ctl[3]); 7154cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_FLOW, modem_ctl, 16); 71603ee2515SGreg Kroah-Hartman } 71703ee2515SGreg Kroah-Hartman 71803ee2515SGreg Kroah-Hartman } 71903ee2515SGreg Kroah-Hartman 7204cc27bd6SCraig Shelley static int cp210x_tiocmset (struct tty_struct *tty, struct file *file, 72103ee2515SGreg Kroah-Hartman unsigned int set, unsigned int clear) 72203ee2515SGreg Kroah-Hartman { 72303ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 7244cc27bd6SCraig Shelley return cp210x_tiocmset_port(port, file, set, clear); 725d2ad67b3SVomLehn } 726d2ad67b3SVomLehn 7274cc27bd6SCraig Shelley static int cp210x_tiocmset_port(struct usb_serial_port *port, struct file *file, 728d2ad67b3SVomLehn unsigned int set, unsigned int clear) 729d2ad67b3SVomLehn { 73003ee2515SGreg Kroah-Hartman unsigned int control = 0; 73103ee2515SGreg Kroah-Hartman 73203ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 73303ee2515SGreg Kroah-Hartman 73403ee2515SGreg Kroah-Hartman if (set & TIOCM_RTS) { 73503ee2515SGreg Kroah-Hartman control |= CONTROL_RTS; 73603ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 73703ee2515SGreg Kroah-Hartman } 73803ee2515SGreg Kroah-Hartman if (set & TIOCM_DTR) { 73903ee2515SGreg Kroah-Hartman control |= CONTROL_DTR; 74003ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 74103ee2515SGreg Kroah-Hartman } 74203ee2515SGreg Kroah-Hartman if (clear & TIOCM_RTS) { 74303ee2515SGreg Kroah-Hartman control &= ~CONTROL_RTS; 74403ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_RTS; 74503ee2515SGreg Kroah-Hartman } 74603ee2515SGreg Kroah-Hartman if (clear & TIOCM_DTR) { 74703ee2515SGreg Kroah-Hartman control &= ~CONTROL_DTR; 74803ee2515SGreg Kroah-Hartman control |= CONTROL_WRITE_DTR; 74903ee2515SGreg Kroah-Hartman } 75003ee2515SGreg Kroah-Hartman 75103ee2515SGreg Kroah-Hartman dbg("%s - control = 0x%.4x", __func__, control); 75203ee2515SGreg Kroah-Hartman 7534cc27bd6SCraig Shelley return cp210x_set_config(port, CP210X_SET_MHS, &control, 2); 75403ee2515SGreg Kroah-Hartman } 75503ee2515SGreg Kroah-Hartman 7564cc27bd6SCraig Shelley static int cp210x_tiocmget (struct tty_struct *tty, struct file *file) 75703ee2515SGreg Kroah-Hartman { 75803ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 75903ee2515SGreg Kroah-Hartman unsigned int control; 76003ee2515SGreg Kroah-Hartman int result; 76103ee2515SGreg Kroah-Hartman 76203ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 76303ee2515SGreg Kroah-Hartman 7644cc27bd6SCraig Shelley cp210x_get_config(port, CP210X_GET_MDMSTS, &control, 1); 76503ee2515SGreg Kroah-Hartman 76603ee2515SGreg Kroah-Hartman result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0) 76703ee2515SGreg Kroah-Hartman |((control & CONTROL_RTS) ? TIOCM_RTS : 0) 76803ee2515SGreg Kroah-Hartman |((control & CONTROL_CTS) ? TIOCM_CTS : 0) 76903ee2515SGreg Kroah-Hartman |((control & CONTROL_DSR) ? TIOCM_DSR : 0) 77003ee2515SGreg Kroah-Hartman |((control & CONTROL_RING)? TIOCM_RI : 0) 77103ee2515SGreg Kroah-Hartman |((control & CONTROL_DCD) ? TIOCM_CD : 0); 77203ee2515SGreg Kroah-Hartman 77303ee2515SGreg Kroah-Hartman dbg("%s - control = 0x%.2x", __func__, control); 77403ee2515SGreg Kroah-Hartman 77503ee2515SGreg Kroah-Hartman return result; 77603ee2515SGreg Kroah-Hartman } 77703ee2515SGreg Kroah-Hartman 7784cc27bd6SCraig Shelley static void cp210x_break_ctl (struct tty_struct *tty, int break_state) 77903ee2515SGreg Kroah-Hartman { 78003ee2515SGreg Kroah-Hartman struct usb_serial_port *port = tty->driver_data; 78103ee2515SGreg Kroah-Hartman unsigned int state; 78203ee2515SGreg Kroah-Hartman 78303ee2515SGreg Kroah-Hartman dbg("%s - port %d", __func__, port->number); 78403ee2515SGreg Kroah-Hartman if (break_state == 0) 78503ee2515SGreg Kroah-Hartman state = BREAK_OFF; 78603ee2515SGreg Kroah-Hartman else 78703ee2515SGreg Kroah-Hartman state = BREAK_ON; 78803ee2515SGreg Kroah-Hartman dbg("%s - turning break %s", __func__, 78903ee2515SGreg Kroah-Hartman state == BREAK_OFF ? "off" : "on"); 7904cc27bd6SCraig Shelley cp210x_set_config(port, CP210X_SET_BREAK, &state, 2); 79103ee2515SGreg Kroah-Hartman } 79203ee2515SGreg Kroah-Hartman 7934cc27bd6SCraig Shelley static int cp210x_startup(struct usb_serial *serial) 79403ee2515SGreg Kroah-Hartman { 7954cc27bd6SCraig Shelley /* cp210x buffers behave strangely unless device is reset */ 79603ee2515SGreg Kroah-Hartman usb_reset_device(serial->dev); 79703ee2515SGreg Kroah-Hartman return 0; 79803ee2515SGreg Kroah-Hartman } 79903ee2515SGreg Kroah-Hartman 800f9c99bb8SAlan Stern static void cp210x_disconnect(struct usb_serial *serial) 80103ee2515SGreg Kroah-Hartman { 80203ee2515SGreg Kroah-Hartman int i; 80303ee2515SGreg Kroah-Hartman 80403ee2515SGreg Kroah-Hartman dbg("%s", __func__); 80503ee2515SGreg Kroah-Hartman 80603ee2515SGreg Kroah-Hartman /* Stop reads and writes on all ports */ 80703ee2515SGreg Kroah-Hartman for (i = 0; i < serial->num_ports; ++i) 8084cc27bd6SCraig Shelley cp210x_cleanup(serial->port[i]); 80903ee2515SGreg Kroah-Hartman } 81003ee2515SGreg Kroah-Hartman 8114cc27bd6SCraig Shelley static int __init cp210x_init(void) 81203ee2515SGreg Kroah-Hartman { 81303ee2515SGreg Kroah-Hartman int retval; 81403ee2515SGreg Kroah-Hartman 8154cc27bd6SCraig Shelley retval = usb_serial_register(&cp210x_device); 81603ee2515SGreg Kroah-Hartman if (retval) 81703ee2515SGreg Kroah-Hartman return retval; /* Failed to register */ 81803ee2515SGreg Kroah-Hartman 8194cc27bd6SCraig Shelley retval = usb_register(&cp210x_driver); 82003ee2515SGreg Kroah-Hartman if (retval) { 82103ee2515SGreg Kroah-Hartman /* Failed to register */ 8224cc27bd6SCraig Shelley usb_serial_deregister(&cp210x_device); 82303ee2515SGreg Kroah-Hartman return retval; 82403ee2515SGreg Kroah-Hartman } 82503ee2515SGreg Kroah-Hartman 82603ee2515SGreg Kroah-Hartman /* Success */ 82703ee2515SGreg Kroah-Hartman printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" 82803ee2515SGreg Kroah-Hartman DRIVER_DESC "\n"); 82903ee2515SGreg Kroah-Hartman return 0; 83003ee2515SGreg Kroah-Hartman } 83103ee2515SGreg Kroah-Hartman 8324cc27bd6SCraig Shelley static void __exit cp210x_exit(void) 83303ee2515SGreg Kroah-Hartman { 8344cc27bd6SCraig Shelley usb_deregister(&cp210x_driver); 8354cc27bd6SCraig Shelley usb_serial_deregister(&cp210x_device); 83603ee2515SGreg Kroah-Hartman } 83703ee2515SGreg Kroah-Hartman 8384cc27bd6SCraig Shelley module_init(cp210x_init); 8394cc27bd6SCraig Shelley module_exit(cp210x_exit); 84003ee2515SGreg Kroah-Hartman 84103ee2515SGreg Kroah-Hartman MODULE_DESCRIPTION(DRIVER_DESC); 84203ee2515SGreg Kroah-Hartman MODULE_VERSION(DRIVER_VERSION); 84303ee2515SGreg Kroah-Hartman MODULE_LICENSE("GPL"); 84403ee2515SGreg Kroah-Hartman 84503ee2515SGreg Kroah-Hartman module_param(debug, bool, S_IRUGO | S_IWUSR); 84603ee2515SGreg Kroah-Hartman MODULE_PARM_DESC(debug, "Enable verbose debugging messages"); 847