xref: /openbmc/linux/drivers/usb/serial/mos7840.c (revision e8603076f5404cc103869a62f319bc8a4797cc50)
15fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0+
23f542974SPaul B Schroeder /*
33f542974SPaul B Schroeder  * Clean ups from Moschip version and a few ioctl implementations by:
43f542974SPaul B Schroeder  *	Paul B Schroeder <pschroeder "at" uplogix "dot" com>
53f542974SPaul B Schroeder  *
63f542974SPaul B Schroeder  * Originally based on drivers/usb/serial/io_edgeport.c which is:
73f542974SPaul B Schroeder  *      Copyright (C) 2000 Inside Out Networks, All rights reserved.
83f542974SPaul B Schroeder  *      Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
93f542974SPaul B Schroeder  *
103f542974SPaul B Schroeder  */
113f542974SPaul B Schroeder 
123f542974SPaul B Schroeder #include <linux/kernel.h>
133f542974SPaul B Schroeder #include <linux/errno.h>
143f542974SPaul B Schroeder #include <linux/slab.h>
153f542974SPaul B Schroeder #include <linux/tty.h>
163f542974SPaul B Schroeder #include <linux/tty_driver.h>
173f542974SPaul B Schroeder #include <linux/tty_flip.h>
183f542974SPaul B Schroeder #include <linux/module.h>
193f542974SPaul B Schroeder #include <linux/serial.h>
203f542974SPaul B Schroeder #include <linux/usb.h>
213f542974SPaul B Schroeder #include <linux/usb/serial.h>
22880af9dbSAlan Cox #include <linux/uaccess.h>
233f542974SPaul B Schroeder 
243f542974SPaul B Schroeder #define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
253f542974SPaul B Schroeder 
263f542974SPaul B Schroeder /*
273f542974SPaul B Schroeder  * 16C50 UART register defines
283f542974SPaul B Schroeder  */
293f542974SPaul B Schroeder 
303f542974SPaul B Schroeder #define LCR_BITS_5             0x00	/* 5 bits/char */
313f542974SPaul B Schroeder #define LCR_BITS_6             0x01	/* 6 bits/char */
323f542974SPaul B Schroeder #define LCR_BITS_7             0x02	/* 7 bits/char */
333f542974SPaul B Schroeder #define LCR_BITS_8             0x03	/* 8 bits/char */
343f542974SPaul B Schroeder #define LCR_BITS_MASK          0x03	/* Mask for bits/char field */
353f542974SPaul B Schroeder 
363f542974SPaul B Schroeder #define LCR_STOP_1             0x00	/* 1 stop bit */
373f542974SPaul B Schroeder #define LCR_STOP_1_5           0x04	/* 1.5 stop bits (if 5   bits/char) */
383f542974SPaul B Schroeder #define LCR_STOP_2             0x04	/* 2 stop bits   (if 6-8 bits/char) */
393f542974SPaul B Schroeder #define LCR_STOP_MASK          0x04	/* Mask for stop bits field */
403f542974SPaul B Schroeder 
413f542974SPaul B Schroeder #define LCR_PAR_NONE           0x00	/* No parity */
423f542974SPaul B Schroeder #define LCR_PAR_ODD            0x08	/* Odd parity */
433f542974SPaul B Schroeder #define LCR_PAR_EVEN           0x18	/* Even parity */
443f542974SPaul B Schroeder #define LCR_PAR_MARK           0x28	/* Force parity bit to 1 */
453f542974SPaul B Schroeder #define LCR_PAR_SPACE          0x38	/* Force parity bit to 0 */
463f542974SPaul B Schroeder #define LCR_PAR_MASK           0x38	/* Mask for parity field */
473f542974SPaul B Schroeder 
483f542974SPaul B Schroeder #define LCR_SET_BREAK          0x40	/* Set Break condition */
493f542974SPaul B Schroeder #define LCR_DL_ENABLE          0x80	/* Enable access to divisor latch */
503f542974SPaul B Schroeder 
513f542974SPaul B Schroeder #define MCR_DTR                0x01	/* Assert DTR */
523f542974SPaul B Schroeder #define MCR_RTS                0x02	/* Assert RTS */
533f542974SPaul B Schroeder #define MCR_OUT1               0x04	/* Loopback only: Sets state of RI */
543f542974SPaul B Schroeder #define MCR_MASTER_IE          0x08	/* Enable interrupt outputs */
553f542974SPaul B Schroeder #define MCR_LOOPBACK           0x10	/* Set internal (digital) loopback mode */
563f542974SPaul B Schroeder #define MCR_XON_ANY            0x20	/* Enable any char to exit XOFF mode */
573f542974SPaul B Schroeder 
583f542974SPaul B Schroeder #define MOS7840_MSR_CTS        0x10	/* Current state of CTS */
593f542974SPaul B Schroeder #define MOS7840_MSR_DSR        0x20	/* Current state of DSR */
603f542974SPaul B Schroeder #define MOS7840_MSR_RI         0x40	/* Current state of RI */
613f542974SPaul B Schroeder #define MOS7840_MSR_CD         0x80	/* Current state of CD */
623f542974SPaul B Schroeder 
633f542974SPaul B Schroeder /*
643f542974SPaul B Schroeder  * Defines used for sending commands to port
653f542974SPaul B Schroeder  */
663f542974SPaul B Schroeder 
671e658489SMark Ferrell #define MOS_WDR_TIMEOUT		5000	/* default urb timeout */
683f542974SPaul B Schroeder 
693f542974SPaul B Schroeder #define MOS_PORT1       0x0200
703f542974SPaul B Schroeder #define MOS_PORT2       0x0300
713f542974SPaul B Schroeder #define MOS_VENREG      0x0000
723f542974SPaul B Schroeder #define MOS_MAX_PORT	0x02
733f542974SPaul B Schroeder #define MOS_WRITE       0x0E
743f542974SPaul B Schroeder #define MOS_READ        0x0D
753f542974SPaul B Schroeder 
763f542974SPaul B Schroeder /* Requests */
773f542974SPaul B Schroeder #define MCS_RD_RTYPE    0xC0
783f542974SPaul B Schroeder #define MCS_WR_RTYPE    0x40
793f542974SPaul B Schroeder #define MCS_RDREQ       0x0D
803f542974SPaul B Schroeder #define MCS_WRREQ       0x0E
813f542974SPaul B Schroeder #define MCS_CTRL_TIMEOUT        500
823f542974SPaul B Schroeder #define VENDOR_READ_LENGTH      (0x01)
833f542974SPaul B Schroeder 
843f542974SPaul B Schroeder #define MAX_NAME_LEN    64
853f542974SPaul B Schroeder 
86880af9dbSAlan Cox #define ZLP_REG1  0x3A		/* Zero_Flag_Reg1    58 */
87880af9dbSAlan Cox #define ZLP_REG5  0x3E		/* Zero_Flag_Reg5    62 */
883f542974SPaul B Schroeder 
893f542974SPaul B Schroeder /* For higher baud Rates use TIOCEXBAUD */
903f542974SPaul B Schroeder #define TIOCEXBAUD     0x5462
913f542974SPaul B Schroeder 
923f542974SPaul B Schroeder /* vendor id and device id defines */
933f542974SPaul B Schroeder 
9411e1abb4SDavid Ludlow /* The native mos7840/7820 component */
953f542974SPaul B Schroeder #define USB_VENDOR_ID_MOSCHIP           0x9710
963f542974SPaul B Schroeder #define MOSCHIP_DEVICE_ID_7840          0x7840
973f542974SPaul B Schroeder #define MOSCHIP_DEVICE_ID_7820          0x7820
980eafe4deSDonald #define MOSCHIP_DEVICE_ID_7810          0x7810
9911e1abb4SDavid Ludlow /* The native component can have its vendor/device id's overridden
10011e1abb4SDavid Ludlow  * in vendor-specific implementations.  Such devices can be handled
10168e24113SGreg Kroah-Hartman  * by making a change here, in id_table.
10211e1abb4SDavid Ludlow  */
10311e1abb4SDavid Ludlow #define USB_VENDOR_ID_BANDB              0x0856
104acf509aeSCliff Brake #define BANDB_DEVICE_ID_USO9ML2_2        0xAC22
105870408c8SDave Ludlow #define BANDB_DEVICE_ID_USO9ML2_2P       0xBC00
106acf509aeSCliff Brake #define BANDB_DEVICE_ID_USO9ML2_4        0xAC24
107870408c8SDave Ludlow #define BANDB_DEVICE_ID_USO9ML2_4P       0xBC01
108acf509aeSCliff Brake #define BANDB_DEVICE_ID_US9ML2_2         0xAC29
109acf509aeSCliff Brake #define BANDB_DEVICE_ID_US9ML2_4         0xAC30
110acf509aeSCliff Brake #define BANDB_DEVICE_ID_USPTL4_2         0xAC31
111acf509aeSCliff Brake #define BANDB_DEVICE_ID_USPTL4_4         0xAC32
11211e1abb4SDavid Ludlow #define BANDB_DEVICE_ID_USOPTL4_2        0xAC42
113caf3a636SDave Ludlow #define BANDB_DEVICE_ID_USOPTL4_2P       0xBC02
114870408c8SDave Ludlow #define BANDB_DEVICE_ID_USOPTL4_4        0xAC44
115870408c8SDave Ludlow #define BANDB_DEVICE_ID_USOPTL4_4P       0xBC03
116870408c8SDave Ludlow #define BANDB_DEVICE_ID_USOPTL2_4        0xAC24
1173f542974SPaul B Schroeder 
1189d498beaSRussell Lang /* This driver also supports
1199d498beaSRussell Lang  * ATEN UC2324 device using Moschip MCS7840
1209d498beaSRussell Lang  * ATEN UC2322 device using Moschip MCS7820
1219d498beaSRussell Lang  */
122e9b8cffaSTony Cook #define USB_VENDOR_ID_ATENINTL		0x0557
123e9b8cffaSTony Cook #define ATENINTL_DEVICE_ID_UC2324	0x2011
1249d498beaSRussell Lang #define ATENINTL_DEVICE_ID_UC2322	0x7820
125e9b8cffaSTony Cook 
12611e1abb4SDavid Ludlow /* Interrupt Routine Defines    */
1273f542974SPaul B Schroeder 
1283f542974SPaul B Schroeder #define SERIAL_IIR_RLS      0x06
1293f542974SPaul B Schroeder #define SERIAL_IIR_MS       0x00
1303f542974SPaul B Schroeder 
1313f542974SPaul B Schroeder /*
1323f542974SPaul B Schroeder  *  Emulation of the bit mask on the LINE STATUS REGISTER.
1333f542974SPaul B Schroeder  */
1343f542974SPaul B Schroeder #define SERIAL_LSR_DR       0x0001
1353f542974SPaul B Schroeder #define SERIAL_LSR_OE       0x0002
1363f542974SPaul B Schroeder #define SERIAL_LSR_PE       0x0004
1373f542974SPaul B Schroeder #define SERIAL_LSR_FE       0x0008
1383f542974SPaul B Schroeder #define SERIAL_LSR_BI       0x0010
1393f542974SPaul B Schroeder 
1403f542974SPaul B Schroeder #define MOS_MSR_DELTA_CTS   0x10
1413f542974SPaul B Schroeder #define MOS_MSR_DELTA_DSR   0x20
1423f542974SPaul B Schroeder #define MOS_MSR_DELTA_RI    0x40
1433f542974SPaul B Schroeder #define MOS_MSR_DELTA_CD    0x80
1443f542974SPaul B Schroeder 
145880af9dbSAlan Cox /* Serial Port register Address */
1463f542974SPaul B Schroeder #define INTERRUPT_ENABLE_REGISTER  ((__u16)(0x01))
1473f542974SPaul B Schroeder #define FIFO_CONTROL_REGISTER      ((__u16)(0x02))
1483f542974SPaul B Schroeder #define LINE_CONTROL_REGISTER      ((__u16)(0x03))
1493f542974SPaul B Schroeder #define MODEM_CONTROL_REGISTER     ((__u16)(0x04))
1503f542974SPaul B Schroeder #define LINE_STATUS_REGISTER       ((__u16)(0x05))
1513f542974SPaul B Schroeder #define MODEM_STATUS_REGISTER      ((__u16)(0x06))
1523f542974SPaul B Schroeder #define SCRATCH_PAD_REGISTER       ((__u16)(0x07))
1533f542974SPaul B Schroeder #define DIVISOR_LATCH_LSB          ((__u16)(0x00))
1543f542974SPaul B Schroeder #define DIVISOR_LATCH_MSB          ((__u16)(0x01))
1553f542974SPaul B Schroeder 
1563f542974SPaul B Schroeder #define CLK_MULTI_REGISTER         ((__u16)(0x02))
1573f542974SPaul B Schroeder #define CLK_START_VALUE_REGISTER   ((__u16)(0x03))
158093ea2d3SDonald Lee #define GPIO_REGISTER              ((__u16)(0x07))
1593f542974SPaul B Schroeder 
1603f542974SPaul B Schroeder #define SERIAL_LCR_DLAB            ((__u16)(0x0080))
1613f542974SPaul B Schroeder 
1623f542974SPaul B Schroeder /*
1633f542974SPaul B Schroeder  * URB POOL related defines
1643f542974SPaul B Schroeder  */
1653f542974SPaul B Schroeder #define NUM_URBS                        16	/* URB Count */
1663f542974SPaul B Schroeder #define URB_TRANSFER_BUFFER_SIZE        32	/* URB Size  */
1673f542974SPaul B Schroeder 
1680eafe4deSDonald /* LED on/off milliseconds*/
1690eafe4deSDonald #define LED_ON_MS	500
1700eafe4deSDonald #define LED_OFF_MS	500
1710eafe4deSDonald 
172d8a083ccSJohan Hovold enum mos7840_flag {
173d8a083ccSJohan Hovold 	MOS7840_FLAG_CTRL_BUSY,
17405cf0decSJohan Hovold 	MOS7840_FLAG_LED_BUSY,
175d8a083ccSJohan Hovold };
1763f542974SPaul B Schroeder 
177b9c87663STony Zelenoff static const struct usb_device_id id_table[] = {
1783f542974SPaul B Schroeder 	{USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
1793f542974SPaul B Schroeder 	{USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
1800eafe4deSDonald 	{USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7810)},
181acf509aeSCliff Brake 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
182870408c8SDave Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2P)},
183acf509aeSCliff Brake 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
184870408c8SDave Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4P)},
185acf509aeSCliff Brake 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
186acf509aeSCliff Brake 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
187acf509aeSCliff Brake 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
188acf509aeSCliff Brake 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
18911e1abb4SDavid Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
190870408c8SDave Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)},
191acf509aeSCliff Brake 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
192870408c8SDave Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)},
19327f1281dSBlaise Gassend 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
194e9b8cffaSTony Cook 	{USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
1959d498beaSRussell Lang 	{USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
1963f542974SPaul B Schroeder 	{}			/* terminating entry */
1973f542974SPaul B Schroeder };
19868e24113SGreg Kroah-Hartman MODULE_DEVICE_TABLE(usb, id_table);
1993f542974SPaul B Schroeder 
2003f542974SPaul B Schroeder /* This structure holds all of the local port information */
2013f542974SPaul B Schroeder 
2023f542974SPaul B Schroeder struct moschip_port {
2033f542974SPaul B Schroeder 	int port_num;		/*Actual port number in the device(1,2,etc) */
2043f542974SPaul B Schroeder 	struct urb *read_urb;	/* read URB for this port */
2053f542974SPaul B Schroeder 	__u8 shadowLCR;		/* last LCR value received */
2063f542974SPaul B Schroeder 	__u8 shadowMCR;		/* last MCR value received */
2073f542974SPaul B Schroeder 	char open;
2080de9a702SOliver Neukum 	char open_ports;
2093f542974SPaul B Schroeder 	struct usb_serial_port *port;	/* loop back to the owner of this object */
2103f542974SPaul B Schroeder 
2113f542974SPaul B Schroeder 	/* Offsets */
2123f542974SPaul B Schroeder 	__u8 SpRegOffset;
2133f542974SPaul B Schroeder 	__u8 ControlRegOffset;
2143f542974SPaul B Schroeder 	__u8 DcrRegOffset;
215880af9dbSAlan Cox 	/* for processing control URBS in interrupt context */
2163f542974SPaul B Schroeder 	struct urb *control_urb;
2170de9a702SOliver Neukum 	struct usb_ctrlrequest *dr;
2183f542974SPaul B Schroeder 	char *ctrl_buf;
2193f542974SPaul B Schroeder 	int MsrLsr;
2203f542974SPaul B Schroeder 
2210de9a702SOliver Neukum 	spinlock_t pool_lock;
2223f542974SPaul B Schroeder 	struct urb *write_urb_pool[NUM_URBS];
2230de9a702SOliver Neukum 	char busy[NUM_URBS];
22450de36f7SGreg Kroah-Hartman 	bool read_urb_busy;
2253f542974SPaul B Schroeder 
2260eafe4deSDonald 	/* For device(s) with LED indicator */
2270eafe4deSDonald 	bool has_led;
2280eafe4deSDonald 	struct timer_list led_timer1;	/* Timer for LED on */
2290eafe4deSDonald 	struct timer_list led_timer2;	/* Timer for LED off */
23005cf0decSJohan Hovold 	struct urb *led_urb;
23105cf0decSJohan Hovold 	struct usb_ctrlrequest *led_dr;
232d8a083ccSJohan Hovold 
233d8a083ccSJohan Hovold 	unsigned long flags;
2340eafe4deSDonald };
2353f542974SPaul B Schroeder 
2363f542974SPaul B Schroeder /*
2373f542974SPaul B Schroeder  * mos7840_set_reg_sync
2383f542974SPaul B Schroeder  * 	To set the Control register by calling usb_fill_control_urb function
2393f542974SPaul B Schroeder  *	by passing usb_sndctrlpipe function as parameter.
2403f542974SPaul B Schroeder  */
2413f542974SPaul B Schroeder 
2423f542974SPaul B Schroeder static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
2433f542974SPaul B Schroeder 				__u16 val)
2443f542974SPaul B Schroeder {
2453f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
2463f542974SPaul B Schroeder 	val = val & 0x00ff;
2479c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "mos7840_set_reg_sync offset is %x, value %x\n", reg, val);
2483f542974SPaul B Schroeder 
2493f542974SPaul B Schroeder 	return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
2503f542974SPaul B Schroeder 			       MCS_WR_RTYPE, val, reg, NULL, 0,
2513f542974SPaul B Schroeder 			       MOS_WDR_TIMEOUT);
2523f542974SPaul B Schroeder }
2533f542974SPaul B Schroeder 
2543f542974SPaul B Schroeder /*
2553f542974SPaul B Schroeder  * mos7840_get_reg_sync
2563f542974SPaul B Schroeder  * 	To set the Uart register by calling usb_fill_control_urb function by
2573f542974SPaul B Schroeder  *	passing usb_rcvctrlpipe function as parameter.
2583f542974SPaul B Schroeder  */
2593f542974SPaul B Schroeder 
2603f542974SPaul B Schroeder static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
2613f542974SPaul B Schroeder 				__u16 *val)
2623f542974SPaul B Schroeder {
2633f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
2643f542974SPaul B Schroeder 	int ret = 0;
2659e221a35SJohan Hovold 	u8 *buf;
2669e221a35SJohan Hovold 
2679e221a35SJohan Hovold 	buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
2689e221a35SJohan Hovold 	if (!buf)
2699e221a35SJohan Hovold 		return -ENOMEM;
2703f542974SPaul B Schroeder 
2713f542974SPaul B Schroeder 	ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
2729e221a35SJohan Hovold 			      MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
2733f542974SPaul B Schroeder 			      MOS_WDR_TIMEOUT);
274cd8db057SJohan Hovold 	if (ret < VENDOR_READ_LENGTH) {
275cd8db057SJohan Hovold 		if (ret >= 0)
276cd8db057SJohan Hovold 			ret = -EIO;
277cd8db057SJohan Hovold 		goto out;
278cd8db057SJohan Hovold 	}
279cd8db057SJohan Hovold 
2809e221a35SJohan Hovold 	*val = buf[0];
2819c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s offset is %x, return val %x\n", __func__, reg, *val);
282cd8db057SJohan Hovold out:
2839e221a35SJohan Hovold 	kfree(buf);
2843f542974SPaul B Schroeder 	return ret;
2853f542974SPaul B Schroeder }
2863f542974SPaul B Schroeder 
2873f542974SPaul B Schroeder /*
2883f542974SPaul B Schroeder  * mos7840_set_uart_reg
2893f542974SPaul B Schroeder  *	To set the Uart register by calling usb_fill_control_urb function by
2903f542974SPaul B Schroeder  *	passing usb_sndctrlpipe function as parameter.
2913f542974SPaul B Schroeder  */
2923f542974SPaul B Schroeder 
2933f542974SPaul B Schroeder static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
2943f542974SPaul B Schroeder 				__u16 val)
2953f542974SPaul B Schroeder {
2963f542974SPaul B Schroeder 
2973f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
2983f542974SPaul B Schroeder 	val = val & 0x00ff;
299880af9dbSAlan Cox 	/* For the UART control registers, the application number need
300880af9dbSAlan Cox 	   to be Or'ed */
301*e8603076SJackyChou 	if (port->serial->num_ports == 2 && port->port_number != 0)
3021143832eSGreg Kroah-Hartman 		val |= ((__u16)port->port_number + 2) << 8;
303*e8603076SJackyChou 	else
304*e8603076SJackyChou 		val |= ((__u16)port->port_number + 1) << 8;
3059c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s application number is %x\n", __func__, val);
3063f542974SPaul B Schroeder 	return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
3073f542974SPaul B Schroeder 			       MCS_WR_RTYPE, val, reg, NULL, 0,
3083f542974SPaul B Schroeder 			       MOS_WDR_TIMEOUT);
3093f542974SPaul B Schroeder 
3103f542974SPaul B Schroeder }
3113f542974SPaul B Schroeder 
3123f542974SPaul B Schroeder /*
3133f542974SPaul B Schroeder  * mos7840_get_uart_reg
3143f542974SPaul B Schroeder  *	To set the Control register by calling usb_fill_control_urb function
3153f542974SPaul B Schroeder  *	by passing usb_rcvctrlpipe function as parameter.
3163f542974SPaul B Schroeder  */
3173f542974SPaul B Schroeder static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
3183f542974SPaul B Schroeder 				__u16 *val)
3193f542974SPaul B Schroeder {
3203f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
3213f542974SPaul B Schroeder 	int ret = 0;
3223f542974SPaul B Schroeder 	__u16 Wval;
3239e221a35SJohan Hovold 	u8 *buf;
3249e221a35SJohan Hovold 
3259e221a35SJohan Hovold 	buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
3269e221a35SJohan Hovold 	if (!buf)
3279e221a35SJohan Hovold 		return -ENOMEM;
3283f542974SPaul B Schroeder 
3293f542974SPaul B Schroeder 	/* Wval  is same as application number */
330*e8603076SJackyChou 	if (port->serial->num_ports == 2 && port->port_number != 0)
3311143832eSGreg Kroah-Hartman 		Wval = ((__u16)port->port_number + 2) << 8;
332*e8603076SJackyChou 	else
333*e8603076SJackyChou 		Wval = ((__u16)port->port_number + 1) << 8;
3349c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s application number is %x\n", __func__, Wval);
3353f542974SPaul B Schroeder 	ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
3369e221a35SJohan Hovold 			      MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
3373f542974SPaul B Schroeder 			      MOS_WDR_TIMEOUT);
338cd8db057SJohan Hovold 	if (ret < VENDOR_READ_LENGTH) {
339cd8db057SJohan Hovold 		if (ret >= 0)
340cd8db057SJohan Hovold 			ret = -EIO;
341cd8db057SJohan Hovold 		goto out;
342cd8db057SJohan Hovold 	}
3439e221a35SJohan Hovold 	*val = buf[0];
344cd8db057SJohan Hovold out:
3459e221a35SJohan Hovold 	kfree(buf);
3463f542974SPaul B Schroeder 	return ret;
3473f542974SPaul B Schroeder }
3483f542974SPaul B Schroeder 
3499c134a14SGreg Kroah-Hartman static void mos7840_dump_serial_port(struct usb_serial_port *port,
3509c134a14SGreg Kroah-Hartman 				     struct moschip_port *mos7840_port)
3513f542974SPaul B Schroeder {
3523f542974SPaul B Schroeder 
3539c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "SpRegOffset is %2x\n", mos7840_port->SpRegOffset);
3549c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "ControlRegOffset is %2x\n", mos7840_port->ControlRegOffset);
3559c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "DCRRegOffset is %2x\n", mos7840_port->DcrRegOffset);
3563f542974SPaul B Schroeder 
3573f542974SPaul B Schroeder }
3583f542974SPaul B Schroeder 
3593f542974SPaul B Schroeder /************************************************************************/
3603f542974SPaul B Schroeder /************************************************************************/
3613f542974SPaul B Schroeder /*             I N T E R F A C E   F U N C T I O N S			*/
3623f542974SPaul B Schroeder /*             I N T E R F A C E   F U N C T I O N S			*/
3633f542974SPaul B Schroeder /************************************************************************/
3643f542974SPaul B Schroeder /************************************************************************/
3653f542974SPaul B Schroeder 
3663f542974SPaul B Schroeder static inline void mos7840_set_port_private(struct usb_serial_port *port,
3673f542974SPaul B Schroeder 					    struct moschip_port *data)
3683f542974SPaul B Schroeder {
3693f542974SPaul B Schroeder 	usb_set_serial_port_data(port, (void *)data);
3703f542974SPaul B Schroeder }
3713f542974SPaul B Schroeder 
3723f542974SPaul B Schroeder static inline struct moschip_port *mos7840_get_port_private(struct
3733f542974SPaul B Schroeder 							    usb_serial_port
3743f542974SPaul B Schroeder 							    *port)
3753f542974SPaul B Schroeder {
3763f542974SPaul B Schroeder 	return (struct moschip_port *)usb_get_serial_port_data(port);
3773f542974SPaul B Schroeder }
3783f542974SPaul B Schroeder 
3790de9a702SOliver Neukum static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
3803f542974SPaul B Schroeder {
3813f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
3823f542974SPaul B Schroeder 	struct async_icount *icount;
3833f542974SPaul B Schroeder 	mos7840_port = port;
3843f542974SPaul B Schroeder 	if (new_msr &
3853f542974SPaul B Schroeder 	    (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
3863f542974SPaul B Schroeder 	     MOS_MSR_DELTA_CD)) {
3878c1a07ffSJohan Hovold 		icount = &mos7840_port->port->icount;
3883f542974SPaul B Schroeder 
3893f542974SPaul B Schroeder 		/* update input line counters */
390c9fac853SJohan Hovold 		if (new_msr & MOS_MSR_DELTA_CTS)
3913f542974SPaul B Schroeder 			icount->cts++;
392c9fac853SJohan Hovold 		if (new_msr & MOS_MSR_DELTA_DSR)
3933f542974SPaul B Schroeder 			icount->dsr++;
394c9fac853SJohan Hovold 		if (new_msr & MOS_MSR_DELTA_CD)
3953f542974SPaul B Schroeder 			icount->dcd++;
396c9fac853SJohan Hovold 		if (new_msr & MOS_MSR_DELTA_RI)
3973f542974SPaul B Schroeder 			icount->rng++;
398e670c6afSJohan Hovold 
3990c613371SJohan Hovold 		wake_up_interruptible(&port->port->port.delta_msr_wait);
4003f542974SPaul B Schroeder 	}
4013f542974SPaul B Schroeder }
4023f542974SPaul B Schroeder 
4030de9a702SOliver Neukum static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
4043f542974SPaul B Schroeder {
4053f542974SPaul B Schroeder 	struct async_icount *icount;
4063f542974SPaul B Schroeder 
4073f542974SPaul B Schroeder 	if (new_lsr & SERIAL_LSR_BI) {
408880af9dbSAlan Cox 		/*
409880af9dbSAlan Cox 		 * Parity and Framing errors only count if they
410880af9dbSAlan Cox 		 * occur exclusive of a break being
411880af9dbSAlan Cox 		 * received.
412880af9dbSAlan Cox 		 */
4133f542974SPaul B Schroeder 		new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
4143f542974SPaul B Schroeder 	}
4153f542974SPaul B Schroeder 
4163f542974SPaul B Schroeder 	/* update input line counters */
4178c1a07ffSJohan Hovold 	icount = &port->port->icount;
418c9fac853SJohan Hovold 	if (new_lsr & SERIAL_LSR_BI)
4193f542974SPaul B Schroeder 		icount->brk++;
420c9fac853SJohan Hovold 	if (new_lsr & SERIAL_LSR_OE)
4213f542974SPaul B Schroeder 		icount->overrun++;
422c9fac853SJohan Hovold 	if (new_lsr & SERIAL_LSR_PE)
4233f542974SPaul B Schroeder 		icount->parity++;
424c9fac853SJohan Hovold 	if (new_lsr & SERIAL_LSR_FE)
4253f542974SPaul B Schroeder 		icount->frame++;
4263f542974SPaul B Schroeder }
4273f542974SPaul B Schroeder 
4283f542974SPaul B Schroeder /************************************************************************/
4293f542974SPaul B Schroeder /************************************************************************/
4303f542974SPaul B Schroeder /*            U S B  C A L L B A C K   F U N C T I O N S                */
4313f542974SPaul B Schroeder /*            U S B  C A L L B A C K   F U N C T I O N S                */
4323f542974SPaul B Schroeder /************************************************************************/
4333f542974SPaul B Schroeder /************************************************************************/
4343f542974SPaul B Schroeder 
4357d12e780SDavid Howells static void mos7840_control_callback(struct urb *urb)
4363f542974SPaul B Schroeder {
4373f542974SPaul B Schroeder 	unsigned char *data;
4383f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
4399c134a14SGreg Kroah-Hartman 	struct device *dev = &urb->dev->dev;
4403f542974SPaul B Schroeder 	__u8 regval = 0x0;
4410643c724SGreg Kroah-Hartman 	int status = urb->status;
4423f542974SPaul B Schroeder 
443cdc97792SMing Lei 	mos7840_port = urb->context;
4440de9a702SOliver Neukum 
4450643c724SGreg Kroah-Hartman 	switch (status) {
4463f542974SPaul B Schroeder 	case 0:
4473f542974SPaul B Schroeder 		/* success */
4483f542974SPaul B Schroeder 		break;
4493f542974SPaul B Schroeder 	case -ECONNRESET:
4503f542974SPaul B Schroeder 	case -ENOENT:
4513f542974SPaul B Schroeder 	case -ESHUTDOWN:
4523f542974SPaul B Schroeder 		/* this urb is terminated, clean up */
4539c134a14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - urb shutting down with status: %d\n", __func__, status);
454d8a083ccSJohan Hovold 		goto out;
4553f542974SPaul B Schroeder 	default:
4569c134a14SGreg Kroah-Hartman 		dev_dbg(dev, "%s - nonzero urb status received: %d\n", __func__, status);
457d8a083ccSJohan Hovold 		goto out;
4583f542974SPaul B Schroeder 	}
4593f542974SPaul B Schroeder 
4609c134a14SGreg Kroah-Hartman 	dev_dbg(dev, "%s urb buffer size is %d\n", __func__, urb->actual_length);
461794744abSJohan Hovold 	if (urb->actual_length < 1)
462794744abSJohan Hovold 		goto out;
463794744abSJohan Hovold 
4649c134a14SGreg Kroah-Hartman 	dev_dbg(dev, "%s mos7840_port->MsrLsr is %d port %d\n", __func__,
4653f542974SPaul B Schroeder 		mos7840_port->MsrLsr, mos7840_port->port_num);
4663f542974SPaul B Schroeder 	data = urb->transfer_buffer;
4673f542974SPaul B Schroeder 	regval = (__u8) data[0];
4689c134a14SGreg Kroah-Hartman 	dev_dbg(dev, "%s data is %x\n", __func__, regval);
4693f542974SPaul B Schroeder 	if (mos7840_port->MsrLsr == 0)
4703f542974SPaul B Schroeder 		mos7840_handle_new_msr(mos7840_port, regval);
4713f542974SPaul B Schroeder 	else if (mos7840_port->MsrLsr == 1)
4723f542974SPaul B Schroeder 		mos7840_handle_new_lsr(mos7840_port, regval);
473d8a083ccSJohan Hovold out:
474d8a083ccSJohan Hovold 	clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mos7840_port->flags);
4753f542974SPaul B Schroeder }
4763f542974SPaul B Schroeder 
4773f542974SPaul B Schroeder static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
4783f542974SPaul B Schroeder 			   __u16 *val)
4793f542974SPaul B Schroeder {
4803f542974SPaul B Schroeder 	struct usb_device *dev = mcs->port->serial->dev;
4810de9a702SOliver Neukum 	struct usb_ctrlrequest *dr = mcs->dr;
4820de9a702SOliver Neukum 	unsigned char *buffer = mcs->ctrl_buf;
4830de9a702SOliver Neukum 	int ret;
4843f542974SPaul B Schroeder 
485d8a083ccSJohan Hovold 	if (test_and_set_bit_lock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags))
486d8a083ccSJohan Hovold 		return -EBUSY;
487d8a083ccSJohan Hovold 
4883f542974SPaul B Schroeder 	dr->bRequestType = MCS_RD_RTYPE;
4893f542974SPaul B Schroeder 	dr->bRequest = MCS_RDREQ;
490880af9dbSAlan Cox 	dr->wValue = cpu_to_le16(Wval);	/* 0 */
4913f542974SPaul B Schroeder 	dr->wIndex = cpu_to_le16(reg);
4923f542974SPaul B Schroeder 	dr->wLength = cpu_to_le16(2);
4933f542974SPaul B Schroeder 
4943f542974SPaul B Schroeder 	usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
4953f542974SPaul B Schroeder 			     (unsigned char *)dr, buffer, 2,
4963f542974SPaul B Schroeder 			     mos7840_control_callback, mcs);
4973f542974SPaul B Schroeder 	mcs->control_urb->transfer_buffer_length = 2;
4983f542974SPaul B Schroeder 	ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
499d8a083ccSJohan Hovold 	if (ret)
500d8a083ccSJohan Hovold 		clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags);
501d8a083ccSJohan Hovold 
5023f542974SPaul B Schroeder 	return ret;
5033f542974SPaul B Schroeder }
5043f542974SPaul B Schroeder 
5050eafe4deSDonald static void mos7840_set_led_callback(struct urb *urb)
5060eafe4deSDonald {
5070eafe4deSDonald 	switch (urb->status) {
5080eafe4deSDonald 	case 0:
5090eafe4deSDonald 		/* Success */
5100eafe4deSDonald 		break;
5110eafe4deSDonald 	case -ECONNRESET:
5120eafe4deSDonald 	case -ENOENT:
5130eafe4deSDonald 	case -ESHUTDOWN:
5140eafe4deSDonald 		/* This urb is terminated, clean up */
515d9a38a87SJohan Hovold 		dev_dbg(&urb->dev->dev, "%s - urb shutting down: %d\n",
5169c134a14SGreg Kroah-Hartman 			__func__, urb->status);
5170eafe4deSDonald 		break;
5180eafe4deSDonald 	default:
519d9a38a87SJohan Hovold 		dev_dbg(&urb->dev->dev, "%s - nonzero urb status: %d\n",
5209c134a14SGreg Kroah-Hartman 			__func__, urb->status);
5210eafe4deSDonald 	}
5220eafe4deSDonald }
5230eafe4deSDonald 
5240eafe4deSDonald static void mos7840_set_led_async(struct moschip_port *mcs, __u16 wval,
5250eafe4deSDonald 				__u16 reg)
5260eafe4deSDonald {
5270eafe4deSDonald 	struct usb_device *dev = mcs->port->serial->dev;
52805cf0decSJohan Hovold 	struct usb_ctrlrequest *dr = mcs->led_dr;
5290eafe4deSDonald 
5300eafe4deSDonald 	dr->bRequestType = MCS_WR_RTYPE;
5310eafe4deSDonald 	dr->bRequest = MCS_WRREQ;
5320eafe4deSDonald 	dr->wValue = cpu_to_le16(wval);
5330eafe4deSDonald 	dr->wIndex = cpu_to_le16(reg);
5340eafe4deSDonald 	dr->wLength = cpu_to_le16(0);
5350eafe4deSDonald 
53605cf0decSJohan Hovold 	usb_fill_control_urb(mcs->led_urb, dev, usb_sndctrlpipe(dev, 0),
5370eafe4deSDonald 		(unsigned char *)dr, NULL, 0, mos7840_set_led_callback, NULL);
5380eafe4deSDonald 
53905cf0decSJohan Hovold 	usb_submit_urb(mcs->led_urb, GFP_ATOMIC);
5400eafe4deSDonald }
5410eafe4deSDonald 
5420eafe4deSDonald static void mos7840_set_led_sync(struct usb_serial_port *port, __u16 reg,
5430eafe4deSDonald 				__u16 val)
5440eafe4deSDonald {
5450eafe4deSDonald 	struct usb_device *dev = port->serial->dev;
5460eafe4deSDonald 
5470eafe4deSDonald 	usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ, MCS_WR_RTYPE,
5480eafe4deSDonald 			val, reg, NULL, 0, MOS_WDR_TIMEOUT);
5490eafe4deSDonald }
5500eafe4deSDonald 
551e99e88a9SKees Cook static void mos7840_led_off(struct timer_list *t)
5520eafe4deSDonald {
553e99e88a9SKees Cook 	struct moschip_port *mcs = from_timer(mcs, t, led_timer1);
5540eafe4deSDonald 
5550eafe4deSDonald 	/* Turn off LED */
5560eafe4deSDonald 	mos7840_set_led_async(mcs, 0x0300, MODEM_CONTROL_REGISTER);
5570eafe4deSDonald 	mod_timer(&mcs->led_timer2,
5580eafe4deSDonald 				jiffies + msecs_to_jiffies(LED_OFF_MS));
5590eafe4deSDonald }
5600eafe4deSDonald 
561e99e88a9SKees Cook static void mos7840_led_flag_off(struct timer_list *t)
5620eafe4deSDonald {
563e99e88a9SKees Cook 	struct moschip_port *mcs = from_timer(mcs, t, led_timer2);
5640eafe4deSDonald 
56505cf0decSJohan Hovold 	clear_bit_unlock(MOS7840_FLAG_LED_BUSY, &mcs->flags);
56605cf0decSJohan Hovold }
56705cf0decSJohan Hovold 
56805cf0decSJohan Hovold static void mos7840_led_activity(struct usb_serial_port *port)
56905cf0decSJohan Hovold {
57005cf0decSJohan Hovold 	struct moschip_port *mos7840_port = usb_get_serial_port_data(port);
57105cf0decSJohan Hovold 
57205cf0decSJohan Hovold 	if (test_and_set_bit_lock(MOS7840_FLAG_LED_BUSY, &mos7840_port->flags))
57305cf0decSJohan Hovold 		return;
57405cf0decSJohan Hovold 
57505cf0decSJohan Hovold 	mos7840_set_led_async(mos7840_port, 0x0301, MODEM_CONTROL_REGISTER);
57605cf0decSJohan Hovold 	mod_timer(&mos7840_port->led_timer1,
57705cf0decSJohan Hovold 				jiffies + msecs_to_jiffies(LED_ON_MS));
5780eafe4deSDonald }
5790eafe4deSDonald 
5803f542974SPaul B Schroeder /*****************************************************************************
5813f542974SPaul B Schroeder  * mos7840_interrupt_callback
5823f542974SPaul B Schroeder  *	this is the callback function for when we have received data on the
5833f542974SPaul B Schroeder  *	interrupt endpoint.
5843f542974SPaul B Schroeder  *****************************************************************************/
5853f542974SPaul B Schroeder 
5867d12e780SDavid Howells static void mos7840_interrupt_callback(struct urb *urb)
5873f542974SPaul B Schroeder {
5883f542974SPaul B Schroeder 	int result;
5893f542974SPaul B Schroeder 	int length;
5903f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
5913f542974SPaul B Schroeder 	struct usb_serial *serial;
5923f542974SPaul B Schroeder 	__u16 Data;
5933f542974SPaul B Schroeder 	unsigned char *data;
59432d8a6fcSYueHaibing 	__u8 sp[5];
5950de9a702SOliver Neukum 	int i, rv = 0;
5960de9a702SOliver Neukum 	__u16 wval, wreg = 0;
5970643c724SGreg Kroah-Hartman 	int status = urb->status;
5983f542974SPaul B Schroeder 
5990643c724SGreg Kroah-Hartman 	switch (status) {
6003f542974SPaul B Schroeder 	case 0:
6013f542974SPaul B Schroeder 		/* success */
6023f542974SPaul B Schroeder 		break;
6033f542974SPaul B Schroeder 	case -ECONNRESET:
6043f542974SPaul B Schroeder 	case -ENOENT:
6053f542974SPaul B Schroeder 	case -ESHUTDOWN:
6063f542974SPaul B Schroeder 		/* this urb is terminated, clean up */
6079c134a14SGreg Kroah-Hartman 		dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
6089c134a14SGreg Kroah-Hartman 			__func__, status);
6093f542974SPaul B Schroeder 		return;
6103f542974SPaul B Schroeder 	default:
6119c134a14SGreg Kroah-Hartman 		dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n",
6129c134a14SGreg Kroah-Hartman 			__func__, status);
6133f542974SPaul B Schroeder 		goto exit;
6143f542974SPaul B Schroeder 	}
6153f542974SPaul B Schroeder 
6163f542974SPaul B Schroeder 	length = urb->actual_length;
6173f542974SPaul B Schroeder 	data = urb->transfer_buffer;
6183f542974SPaul B Schroeder 
619cdc97792SMing Lei 	serial = urb->context;
6203f542974SPaul B Schroeder 
6213f542974SPaul B Schroeder 	/* Moschip get 5 bytes
6223f542974SPaul B Schroeder 	 * Byte 1 IIR Port 1 (port.number is 0)
6233f542974SPaul B Schroeder 	 * Byte 2 IIR Port 2 (port.number is 1)
6243f542974SPaul B Schroeder 	 * Byte 3 IIR Port 3 (port.number is 2)
6253f542974SPaul B Schroeder 	 * Byte 4 IIR Port 4 (port.number is 3)
6263f542974SPaul B Schroeder 	 * Byte 5 FIFO status for both */
6273f542974SPaul B Schroeder 
628365a0442SGeyslan G. Bem 	if (length > 5) {
6299c134a14SGreg Kroah-Hartman 		dev_dbg(&urb->dev->dev, "%s", "Wrong data !!!\n");
6303f542974SPaul B Schroeder 		return;
6313f542974SPaul B Schroeder 	}
6323f542974SPaul B Schroeder 
6333f542974SPaul B Schroeder 	sp[0] = (__u8) data[0];
6343f542974SPaul B Schroeder 	sp[1] = (__u8) data[1];
6353f542974SPaul B Schroeder 	sp[2] = (__u8) data[2];
6363f542974SPaul B Schroeder 	sp[3] = (__u8) data[3];
6373f542974SPaul B Schroeder 
6383f542974SPaul B Schroeder 	for (i = 0; i < serial->num_ports; i++) {
6393f542974SPaul B Schroeder 		mos7840_port = mos7840_get_port_private(serial->port[i]);
6401143832eSGreg Kroah-Hartman 		wval = ((__u16)serial->port[i]->port_number + 1) << 8;
6413f542974SPaul B Schroeder 		if (mos7840_port->open) {
6423f542974SPaul B Schroeder 			if (sp[i] & 0x01) {
6439c134a14SGreg Kroah-Hartman 				dev_dbg(&urb->dev->dev, "SP%d No Interrupt !!!\n", i);
6443f542974SPaul B Schroeder 			} else {
6453f542974SPaul B Schroeder 				switch (sp[i] & 0x0f) {
6463f542974SPaul B Schroeder 				case SERIAL_IIR_RLS:
6479c134a14SGreg Kroah-Hartman 					dev_dbg(&urb->dev->dev, "Serial Port %d: Receiver status error or \n", i);
6489c134a14SGreg Kroah-Hartman 					dev_dbg(&urb->dev->dev, "address bit detected in 9-bit mode\n");
6493f542974SPaul B Schroeder 					mos7840_port->MsrLsr = 1;
6500de9a702SOliver Neukum 					wreg = LINE_STATUS_REGISTER;
6513f542974SPaul B Schroeder 					break;
6523f542974SPaul B Schroeder 				case SERIAL_IIR_MS:
6539c134a14SGreg Kroah-Hartman 					dev_dbg(&urb->dev->dev, "Serial Port %d: Modem status change\n", i);
6543f542974SPaul B Schroeder 					mos7840_port->MsrLsr = 0;
6550de9a702SOliver Neukum 					wreg = MODEM_STATUS_REGISTER;
6563f542974SPaul B Schroeder 					break;
6573f542974SPaul B Schroeder 				}
6580de9a702SOliver Neukum 				rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
6593f542974SPaul B Schroeder 			}
6603f542974SPaul B Schroeder 		}
6613f542974SPaul B Schroeder 	}
662880af9dbSAlan Cox 	if (!(rv < 0))
663880af9dbSAlan Cox 		/* the completion handler for the control urb will resubmit */
6640de9a702SOliver Neukum 		return;
6653f542974SPaul B Schroeder exit:
6663f542974SPaul B Schroeder 	result = usb_submit_urb(urb, GFP_ATOMIC);
6673f542974SPaul B Schroeder 	if (result) {
6683f542974SPaul B Schroeder 		dev_err(&urb->dev->dev,
6693f542974SPaul B Schroeder 			"%s - Error %d submitting interrupt urb\n",
670441b62c1SHarvey Harrison 			__func__, result);
6713f542974SPaul B Schroeder 	}
6723f542974SPaul B Schroeder }
6733f542974SPaul B Schroeder 
6743f542974SPaul B Schroeder static int mos7840_port_paranoia_check(struct usb_serial_port *port,
6753f542974SPaul B Schroeder 				       const char *function)
6763f542974SPaul B Schroeder {
6773f542974SPaul B Schroeder 	if (!port) {
6789c134a14SGreg Kroah-Hartman 		pr_debug("%s - port == NULL\n", function);
6793f542974SPaul B Schroeder 		return -1;
6803f542974SPaul B Schroeder 	}
6813f542974SPaul B Schroeder 	if (!port->serial) {
6829c134a14SGreg Kroah-Hartman 		pr_debug("%s - port->serial == NULL\n", function);
6833f542974SPaul B Schroeder 		return -1;
6843f542974SPaul B Schroeder 	}
6853f542974SPaul B Schroeder 
6863f542974SPaul B Schroeder 	return 0;
6873f542974SPaul B Schroeder }
6883f542974SPaul B Schroeder 
6893f542974SPaul B Schroeder /* Inline functions to check the sanity of a pointer that is passed to us */
6903f542974SPaul B Schroeder static int mos7840_serial_paranoia_check(struct usb_serial *serial,
6913f542974SPaul B Schroeder 					 const char *function)
6923f542974SPaul B Schroeder {
6933f542974SPaul B Schroeder 	if (!serial) {
6949c134a14SGreg Kroah-Hartman 		pr_debug("%s - serial == NULL\n", function);
6953f542974SPaul B Schroeder 		return -1;
6963f542974SPaul B Schroeder 	}
6973f542974SPaul B Schroeder 	if (!serial->type) {
6989c134a14SGreg Kroah-Hartman 		pr_debug("%s - serial->type == NULL!\n", function);
6993f542974SPaul B Schroeder 		return -1;
7003f542974SPaul B Schroeder 	}
7013f542974SPaul B Schroeder 
7023f542974SPaul B Schroeder 	return 0;
7033f542974SPaul B Schroeder }
7043f542974SPaul B Schroeder 
7053f542974SPaul B Schroeder static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
7063f542974SPaul B Schroeder 						 const char *function)
7073f542974SPaul B Schroeder {
7083f542974SPaul B Schroeder 	/* if no port was specified, or it fails a paranoia check */
7093f542974SPaul B Schroeder 	if (!port ||
7103f542974SPaul B Schroeder 	    mos7840_port_paranoia_check(port, function) ||
7113f542974SPaul B Schroeder 	    mos7840_serial_paranoia_check(port->serial, function)) {
712880af9dbSAlan Cox 		/* then say that we don't have a valid usb_serial thing,
713880af9dbSAlan Cox 		 * which will end up genrating -ENODEV return values */
7143f542974SPaul B Schroeder 		return NULL;
7153f542974SPaul B Schroeder 	}
7163f542974SPaul B Schroeder 
7173f542974SPaul B Schroeder 	return port->serial;
7183f542974SPaul B Schroeder }
7193f542974SPaul B Schroeder 
7203f542974SPaul B Schroeder /*****************************************************************************
7213f542974SPaul B Schroeder  * mos7840_bulk_in_callback
7223f542974SPaul B Schroeder  *	this is the callback function for when we have received data on the
7233f542974SPaul B Schroeder  *	bulk in endpoint.
7243f542974SPaul B Schroeder  *****************************************************************************/
7253f542974SPaul B Schroeder 
7267d12e780SDavid Howells static void mos7840_bulk_in_callback(struct urb *urb)
7273f542974SPaul B Schroeder {
7280643c724SGreg Kroah-Hartman 	int retval;
7293f542974SPaul B Schroeder 	unsigned char *data;
7303f542974SPaul B Schroeder 	struct usb_serial *serial;
7313f542974SPaul B Schroeder 	struct usb_serial_port *port;
7323f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
7330643c724SGreg Kroah-Hartman 	int status = urb->status;
7343f542974SPaul B Schroeder 
735cdc97792SMing Lei 	mos7840_port = urb->context;
7369c134a14SGreg Kroah-Hartman 	if (!mos7840_port)
73750de36f7SGreg Kroah-Hartman 		return;
73850de36f7SGreg Kroah-Hartman 
73950de36f7SGreg Kroah-Hartman 	if (status) {
7409c134a14SGreg Kroah-Hartman 		dev_dbg(&urb->dev->dev, "nonzero read bulk status received: %d\n", status);
74150de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7423f542974SPaul B Schroeder 		return;
7433f542974SPaul B Schroeder 	}
7443f542974SPaul B Schroeder 
7459c134a14SGreg Kroah-Hartman 	port = mos7840_port->port;
746441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
74750de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7483f542974SPaul B Schroeder 		return;
7493f542974SPaul B Schroeder 	}
7503f542974SPaul B Schroeder 
751441b62c1SHarvey Harrison 	serial = mos7840_get_usb_serial(port, __func__);
7523f542974SPaul B Schroeder 	if (!serial) {
75350de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7543f542974SPaul B Schroeder 		return;
7553f542974SPaul B Schroeder 	}
7563f542974SPaul B Schroeder 
7573f542974SPaul B Schroeder 	data = urb->transfer_buffer;
75859d33f2fSGreg Kroah-Hartman 	usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
7593f542974SPaul B Schroeder 
7603f542974SPaul B Schroeder 	if (urb->actual_length) {
76105c7cd39SJiri Slaby 		struct tty_port *tport = &mos7840_port->port->port;
76205c7cd39SJiri Slaby 		tty_insert_flip_string(tport, data, urb->actual_length);
7632e124b4aSJiri Slaby 		tty_flip_buffer_push(tport);
7648c1a07ffSJohan Hovold 		port->icount.rx += urb->actual_length;
7658c1a07ffSJohan Hovold 		dev_dbg(&port->dev, "icount.rx is %d:\n", port->icount.rx);
7663f542974SPaul B Schroeder 	}
7673f542974SPaul B Schroeder 
7683f542974SPaul B Schroeder 	if (!mos7840_port->read_urb) {
7699c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s", "URB KILLED !!!\n");
77050de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7713f542974SPaul B Schroeder 		return;
7723f542974SPaul B Schroeder 	}
7733f542974SPaul B Schroeder 
77405cf0decSJohan Hovold 	if (mos7840_port->has_led)
77505cf0decSJohan Hovold 		mos7840_led_activity(port);
7760de9a702SOliver Neukum 
77750de36f7SGreg Kroah-Hartman 	mos7840_port->read_urb_busy = true;
7780643c724SGreg Kroah-Hartman 	retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
7793f542974SPaul B Schroeder 
7800643c724SGreg Kroah-Hartman 	if (retval) {
7819c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, retval = %d\n", retval);
78250de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7833f542974SPaul B Schroeder 	}
7843f542974SPaul B Schroeder }
7853f542974SPaul B Schroeder 
7863f542974SPaul B Schroeder /*****************************************************************************
7873f542974SPaul B Schroeder  * mos7840_bulk_out_data_callback
788880af9dbSAlan Cox  *	this is the callback function for when we have finished sending
789880af9dbSAlan Cox  *	serial data on the bulk out endpoint.
7903f542974SPaul B Schroeder  *****************************************************************************/
7913f542974SPaul B Schroeder 
7927d12e780SDavid Howells static void mos7840_bulk_out_data_callback(struct urb *urb)
7933f542974SPaul B Schroeder {
7943f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
7959c134a14SGreg Kroah-Hartman 	struct usb_serial_port *port;
7960643c724SGreg Kroah-Hartman 	int status = urb->status;
79719bfbf46SJohn Ogness 	unsigned long flags;
7980de9a702SOliver Neukum 	int i;
7990de9a702SOliver Neukum 
800cdc97792SMing Lei 	mos7840_port = urb->context;
8019c134a14SGreg Kroah-Hartman 	port = mos7840_port->port;
80219bfbf46SJohn Ogness 	spin_lock_irqsave(&mos7840_port->pool_lock, flags);
8030de9a702SOliver Neukum 	for (i = 0; i < NUM_URBS; i++) {
8040de9a702SOliver Neukum 		if (urb == mos7840_port->write_urb_pool[i]) {
8050de9a702SOliver Neukum 			mos7840_port->busy[i] = 0;
8060de9a702SOliver Neukum 			break;
8070de9a702SOliver Neukum 		}
8080de9a702SOliver Neukum 	}
80919bfbf46SJohn Ogness 	spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
8100de9a702SOliver Neukum 
8110643c724SGreg Kroah-Hartman 	if (status) {
8129c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "nonzero write bulk status received:%d\n", status);
8133f542974SPaul B Schroeder 		return;
8143f542974SPaul B Schroeder 	}
8153f542974SPaul B Schroeder 
8169c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
8173f542974SPaul B Schroeder 		return;
8183f542974SPaul B Schroeder 
8196aad04f2SJiri Slaby 	if (mos7840_port->open)
8206aad04f2SJiri Slaby 		tty_port_tty_wakeup(&port->port);
8213f542974SPaul B Schroeder 
8223f542974SPaul B Schroeder }
8233f542974SPaul B Schroeder 
8243f542974SPaul B Schroeder /************************************************************************/
8253f542974SPaul B Schroeder /*       D R I V E R  T T Y  I N T E R F A C E  F U N C T I O N S       */
8263f542974SPaul B Schroeder /************************************************************************/
8273f542974SPaul B Schroeder 
8283f542974SPaul B Schroeder /*****************************************************************************
8293f542974SPaul B Schroeder  * mos7840_open
8303f542974SPaul B Schroeder  *	this function is called by the tty driver when a port is opened
8313f542974SPaul B Schroeder  *	If successful, we return 0
8323f542974SPaul B Schroeder  *	Otherwise we return a negative error number.
8333f542974SPaul B Schroeder  *****************************************************************************/
8343f542974SPaul B Schroeder 
835a509a7e4SAlan Cox static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
8363f542974SPaul B Schroeder {
8373f542974SPaul B Schroeder 	int response;
8383f542974SPaul B Schroeder 	int j;
8393f542974SPaul B Schroeder 	struct usb_serial *serial;
8403f542974SPaul B Schroeder 	struct urb *urb;
8413f542974SPaul B Schroeder 	__u16 Data;
8423f542974SPaul B Schroeder 	int status;
8433f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
8440de9a702SOliver Neukum 	struct moschip_port *port0;
8453f542974SPaul B Schroeder 
8469c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
8473f542974SPaul B Schroeder 		return -ENODEV;
8483f542974SPaul B Schroeder 
8493f542974SPaul B Schroeder 	serial = port->serial;
8503f542974SPaul B Schroeder 
8519c134a14SGreg Kroah-Hartman 	if (mos7840_serial_paranoia_check(serial, __func__))
8523f542974SPaul B Schroeder 		return -ENODEV;
8533f542974SPaul B Schroeder 
8543f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
8550de9a702SOliver Neukum 	port0 = mos7840_get_port_private(serial->port[0]);
8563f542974SPaul B Schroeder 
8570de9a702SOliver Neukum 	if (mos7840_port == NULL || port0 == NULL)
8583f542974SPaul B Schroeder 		return -ENODEV;
8593f542974SPaul B Schroeder 
8603f542974SPaul B Schroeder 	usb_clear_halt(serial->dev, port->write_urb->pipe);
8613f542974SPaul B Schroeder 	usb_clear_halt(serial->dev, port->read_urb->pipe);
8620de9a702SOliver Neukum 	port0->open_ports++;
8633f542974SPaul B Schroeder 
8643f542974SPaul B Schroeder 	/* Initialising the write urb pool */
8653f542974SPaul B Schroeder 	for (j = 0; j < NUM_URBS; ++j) {
8660de9a702SOliver Neukum 		urb = usb_alloc_urb(0, GFP_KERNEL);
8673f542974SPaul B Schroeder 		mos7840_port->write_urb_pool[j] = urb;
86810c642d0SJohan Hovold 		if (!urb)
8693f542974SPaul B Schroeder 			continue;
8703f542974SPaul B Schroeder 
871880af9dbSAlan Cox 		urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
872880af9dbSAlan Cox 								GFP_KERNEL);
8733f542974SPaul B Schroeder 		if (!urb->transfer_buffer) {
8740de9a702SOliver Neukum 			usb_free_urb(urb);
8750de9a702SOliver Neukum 			mos7840_port->write_urb_pool[j] = NULL;
8763f542974SPaul B Schroeder 			continue;
8773f542974SPaul B Schroeder 		}
8783f542974SPaul B Schroeder 	}
8793f542974SPaul B Schroeder 
8803f542974SPaul B Schroeder /*****************************************************************************
8813f542974SPaul B Schroeder  * Initialize MCS7840 -- Write Init values to corresponding Registers
8823f542974SPaul B Schroeder  *
8833f542974SPaul B Schroeder  * Register Index
8843f542974SPaul B Schroeder  * 1 : IER
8853f542974SPaul B Schroeder  * 2 : FCR
8863f542974SPaul B Schroeder  * 3 : LCR
8873f542974SPaul B Schroeder  * 4 : MCR
8883f542974SPaul B Schroeder  *
8893f542974SPaul B Schroeder  * 0x08 : SP1/2 Control Reg
8903f542974SPaul B Schroeder  *****************************************************************************/
8913f542974SPaul B Schroeder 
892880af9dbSAlan Cox 	/* NEED to check the following Block */
8933f542974SPaul B Schroeder 
8943f542974SPaul B Schroeder 	Data = 0x0;
8953f542974SPaul B Schroeder 	status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
8963f542974SPaul B Schroeder 	if (status < 0) {
8979c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "Reading Spreg failed\n");
8985f8a2e68SJohan Hovold 		goto err;
8993f542974SPaul B Schroeder 	}
9003f542974SPaul B Schroeder 	Data |= 0x80;
9013f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
9023f542974SPaul B Schroeder 	if (status < 0) {
9039c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "writing Spreg failed\n");
9045f8a2e68SJohan Hovold 		goto err;
9053f542974SPaul B Schroeder 	}
9063f542974SPaul B Schroeder 
9073f542974SPaul B Schroeder 	Data &= ~0x80;
9083f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
9093f542974SPaul B Schroeder 	if (status < 0) {
9109c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "writing Spreg failed\n");
9115f8a2e68SJohan Hovold 		goto err;
9123f542974SPaul B Schroeder 	}
913880af9dbSAlan Cox 	/* End of block to be checked */
9143f542974SPaul B Schroeder 
9153f542974SPaul B Schroeder 	Data = 0x0;
916880af9dbSAlan Cox 	status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
917880af9dbSAlan Cox 									&Data);
9183f542974SPaul B Schroeder 	if (status < 0) {
9199c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "Reading Controlreg failed\n");
9205f8a2e68SJohan Hovold 		goto err;
9213f542974SPaul B Schroeder 	}
922880af9dbSAlan Cox 	Data |= 0x08;		/* Driver done bit */
923880af9dbSAlan Cox 	Data |= 0x20;		/* rx_disable */
924880af9dbSAlan Cox 	status = mos7840_set_reg_sync(port,
925880af9dbSAlan Cox 				mos7840_port->ControlRegOffset, Data);
9263f542974SPaul B Schroeder 	if (status < 0) {
9279c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "writing Controlreg failed\n");
9285f8a2e68SJohan Hovold 		goto err;
9293f542974SPaul B Schroeder 	}
930880af9dbSAlan Cox 	/* do register settings here */
931880af9dbSAlan Cox 	/* Set all regs to the device default values. */
932880af9dbSAlan Cox 	/***********************************
933880af9dbSAlan Cox 	 * First Disable all interrupts.
934880af9dbSAlan Cox 	 ***********************************/
9353f542974SPaul B Schroeder 	Data = 0x00;
9363f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
9373f542974SPaul B Schroeder 	if (status < 0) {
9389c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "disabling interrupts failed\n");
9395f8a2e68SJohan Hovold 		goto err;
9403f542974SPaul B Schroeder 	}
941880af9dbSAlan Cox 	/* Set FIFO_CONTROL_REGISTER to the default value */
9423f542974SPaul B Schroeder 	Data = 0x00;
9433f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
9443f542974SPaul B Schroeder 	if (status < 0) {
9459c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER  failed\n");
9465f8a2e68SJohan Hovold 		goto err;
9473f542974SPaul B Schroeder 	}
9483f542974SPaul B Schroeder 
9493f542974SPaul B Schroeder 	Data = 0xcf;
9503f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
9513f542974SPaul B Schroeder 	if (status < 0) {
9529c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER  failed\n");
9535f8a2e68SJohan Hovold 		goto err;
9543f542974SPaul B Schroeder 	}
9553f542974SPaul B Schroeder 
9563f542974SPaul B Schroeder 	Data = 0x03;
9573f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
9583f542974SPaul B Schroeder 	mos7840_port->shadowLCR = Data;
9593f542974SPaul B Schroeder 
9603f542974SPaul B Schroeder 	Data = 0x0b;
9613f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
9623f542974SPaul B Schroeder 	mos7840_port->shadowMCR = Data;
9633f542974SPaul B Schroeder 
9643f542974SPaul B Schroeder 	Data = 0x00;
9653f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
9663f542974SPaul B Schroeder 	mos7840_port->shadowLCR = Data;
9673f542974SPaul B Schroeder 
968880af9dbSAlan Cox 	Data |= SERIAL_LCR_DLAB;	/* data latch enable in LCR 0x80 */
9693f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
9703f542974SPaul B Schroeder 
9713f542974SPaul B Schroeder 	Data = 0x0c;
9723f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
9733f542974SPaul B Schroeder 
9743f542974SPaul B Schroeder 	Data = 0x0;
9753f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
9763f542974SPaul B Schroeder 
9773f542974SPaul B Schroeder 	Data = 0x00;
9783f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
9793f542974SPaul B Schroeder 
9803f542974SPaul B Schroeder 	Data = Data & ~SERIAL_LCR_DLAB;
9813f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
9823f542974SPaul B Schroeder 	mos7840_port->shadowLCR = Data;
9833f542974SPaul B Schroeder 
984880af9dbSAlan Cox 	/* clearing Bulkin and Bulkout Fifo */
9853f542974SPaul B Schroeder 	Data = 0x0;
9863f542974SPaul B Schroeder 	status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
9873f542974SPaul B Schroeder 
9883f542974SPaul B Schroeder 	Data = Data | 0x0c;
9893f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
9903f542974SPaul B Schroeder 
9913f542974SPaul B Schroeder 	Data = Data & ~0x0c;
9923f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
993880af9dbSAlan Cox 	/* Finally enable all interrupts */
9943f542974SPaul B Schroeder 	Data = 0x0c;
9953f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
9963f542974SPaul B Schroeder 
997880af9dbSAlan Cox 	/* clearing rx_disable */
9983f542974SPaul B Schroeder 	Data = 0x0;
999880af9dbSAlan Cox 	status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1000880af9dbSAlan Cox 									&Data);
10013f542974SPaul B Schroeder 	Data = Data & ~0x20;
1002880af9dbSAlan Cox 	status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1003880af9dbSAlan Cox 									Data);
10043f542974SPaul B Schroeder 
1005880af9dbSAlan Cox 	/* rx_negate */
10063f542974SPaul B Schroeder 	Data = 0x0;
1007880af9dbSAlan Cox 	status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1008880af9dbSAlan Cox 									&Data);
10093f542974SPaul B Schroeder 	Data = Data | 0x10;
1010880af9dbSAlan Cox 	status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1011880af9dbSAlan Cox 									Data);
10123f542974SPaul B Schroeder 
10133f542974SPaul B Schroeder 	/* Check to see if we've set up our endpoint info yet    *
10143f542974SPaul B Schroeder 	 * (can't set it up in mos7840_startup as the structures *
10153f542974SPaul B Schroeder 	 * were not set up at that time.)                        */
10160de9a702SOliver Neukum 	if (port0->open_ports == 1) {
10175182c2cfSJohan Hovold 		/* FIXME: Buffer never NULL, so URB is not submitted. */
10183f542974SPaul B Schroeder 		if (serial->port[0]->interrupt_in_buffer == NULL) {
10193f542974SPaul B Schroeder 			/* set up interrupt urb */
10203f542974SPaul B Schroeder 			usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
10213f542974SPaul B Schroeder 				serial->dev,
10223f542974SPaul B Schroeder 				usb_rcvintpipe(serial->dev,
1023880af9dbSAlan Cox 				serial->port[0]->interrupt_in_endpointAddress),
10243f542974SPaul B Schroeder 				serial->port[0]->interrupt_in_buffer,
10253f542974SPaul B Schroeder 				serial->port[0]->interrupt_in_urb->
10263f542974SPaul B Schroeder 				transfer_buffer_length,
10273f542974SPaul B Schroeder 				mos7840_interrupt_callback,
10283f542974SPaul B Schroeder 				serial,
1029880af9dbSAlan Cox 				serial->port[0]->interrupt_in_urb->interval);
10303f542974SPaul B Schroeder 
1031472d7e55SJohan Hovold 			/* start interrupt read for mos7840 */
10323f542974SPaul B Schroeder 			response =
10333f542974SPaul B Schroeder 			    usb_submit_urb(serial->port[0]->interrupt_in_urb,
10343f542974SPaul B Schroeder 					   GFP_KERNEL);
10353f542974SPaul B Schroeder 			if (response) {
1036194343d9SGreg Kroah-Hartman 				dev_err(&port->dev, "%s - Error %d submitting "
1037194343d9SGreg Kroah-Hartman 					"interrupt urb\n", __func__, response);
10383f542974SPaul B Schroeder 			}
10393f542974SPaul B Schroeder 
10403f542974SPaul B Schroeder 		}
10413f542974SPaul B Schroeder 
10423f542974SPaul B Schroeder 	}
10433f542974SPaul B Schroeder 
10443f542974SPaul B Schroeder 	/* see if we've set up our endpoint info yet   *
10453f542974SPaul B Schroeder 	 * (can't set it up in mos7840_startup as the  *
10463f542974SPaul B Schroeder 	 * structures were not set up at that time.)   */
10473f542974SPaul B Schroeder 
10481143832eSGreg Kroah-Hartman 	dev_dbg(&port->dev, "port number is %d\n", port->port_number);
1049e5b1e206SGreg Kroah-Hartman 	dev_dbg(&port->dev, "minor number is %d\n", port->minor);
10509c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "Bulkin endpoint is %d\n", port->bulk_in_endpointAddress);
10519c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "BulkOut endpoint is %d\n", port->bulk_out_endpointAddress);
10529c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "Interrupt endpoint is %d\n", port->interrupt_in_endpointAddress);
10539c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "port's number in the device is %d\n", mos7840_port->port_num);
10543f542974SPaul B Schroeder 	mos7840_port->read_urb = port->read_urb;
10553f542974SPaul B Schroeder 
10563f542974SPaul B Schroeder 	/* set up our bulk in urb */
10571143832eSGreg Kroah-Hartman 	if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
1058093ea2d3SDonald Lee 		usb_fill_bulk_urb(mos7840_port->read_urb,
1059093ea2d3SDonald Lee 			serial->dev,
1060093ea2d3SDonald Lee 			usb_rcvbulkpipe(serial->dev,
1061093ea2d3SDonald Lee 				(port->bulk_in_endpointAddress) + 2),
1062093ea2d3SDonald Lee 			port->bulk_in_buffer,
1063093ea2d3SDonald Lee 			mos7840_port->read_urb->transfer_buffer_length,
1064093ea2d3SDonald Lee 			mos7840_bulk_in_callback, mos7840_port);
1065093ea2d3SDonald Lee 	} else {
10663f542974SPaul B Schroeder 		usb_fill_bulk_urb(mos7840_port->read_urb,
10673f542974SPaul B Schroeder 			serial->dev,
10683f542974SPaul B Schroeder 			usb_rcvbulkpipe(serial->dev,
10693f542974SPaul B Schroeder 				port->bulk_in_endpointAddress),
10703f542974SPaul B Schroeder 			port->bulk_in_buffer,
10713f542974SPaul B Schroeder 			mos7840_port->read_urb->transfer_buffer_length,
10723f542974SPaul B Schroeder 			mos7840_bulk_in_callback, mos7840_port);
1073093ea2d3SDonald Lee 	}
10743f542974SPaul B Schroeder 
10759c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s: bulkin endpoint is %d\n", __func__, port->bulk_in_endpointAddress);
107650de36f7SGreg Kroah-Hartman 	mos7840_port->read_urb_busy = true;
10773f542974SPaul B Schroeder 	response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
10783f542974SPaul B Schroeder 	if (response) {
1079194343d9SGreg Kroah-Hartman 		dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1080194343d9SGreg Kroah-Hartman 			__func__, response);
108150de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
10823f542974SPaul B Schroeder 	}
10833f542974SPaul B Schroeder 
10843f542974SPaul B Schroeder 	/* initialize our port settings */
1085880af9dbSAlan Cox 	/* Must set to enable ints! */
1086880af9dbSAlan Cox 	mos7840_port->shadowMCR = MCR_MASTER_IE;
10873f542974SPaul B Schroeder 	/* send a open port command */
10883f542974SPaul B Schroeder 	mos7840_port->open = 1;
1089880af9dbSAlan Cox 	/* mos7840_change_port_settings(mos7840_port,old_termios); */
10903f542974SPaul B Schroeder 
10913f542974SPaul B Schroeder 	return 0;
10925f8a2e68SJohan Hovold err:
10935f8a2e68SJohan Hovold 	for (j = 0; j < NUM_URBS; ++j) {
10945f8a2e68SJohan Hovold 		urb = mos7840_port->write_urb_pool[j];
10955f8a2e68SJohan Hovold 		if (!urb)
10965f8a2e68SJohan Hovold 			continue;
10975f8a2e68SJohan Hovold 		kfree(urb->transfer_buffer);
10985f8a2e68SJohan Hovold 		usb_free_urb(urb);
10995f8a2e68SJohan Hovold 	}
11005f8a2e68SJohan Hovold 	return status;
11013f542974SPaul B Schroeder }
11023f542974SPaul B Schroeder 
11033f542974SPaul B Schroeder /*****************************************************************************
11043f542974SPaul B Schroeder  * mos7840_chars_in_buffer
11053f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to know how many
11063f542974SPaul B Schroeder  *	bytes of data we currently have outstanding in the port (data that has
11073f542974SPaul B Schroeder  *	been written, but hasn't made it out the port yet)
11083f542974SPaul B Schroeder  *	If successful, we return the number of bytes left to be written in the
11093f542974SPaul B Schroeder  *	system,
111095da310eSAlan Cox  *	Otherwise we return zero.
11113f542974SPaul B Schroeder  *****************************************************************************/
11123f542974SPaul B Schroeder 
111395da310eSAlan Cox static int mos7840_chars_in_buffer(struct tty_struct *tty)
11143f542974SPaul B Schroeder {
111595da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
11163f542974SPaul B Schroeder 	int i;
11173f542974SPaul B Schroeder 	int chars = 0;
11180de9a702SOliver Neukum 	unsigned long flags;
11193f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
11203f542974SPaul B Schroeder 
11219c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
112295da310eSAlan Cox 		return 0;
11233f542974SPaul B Schroeder 
11243f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
11253363155bSGreg Kroah-Hartman 	if (mos7840_port == NULL)
112695da310eSAlan Cox 		return 0;
11273f542974SPaul B Schroeder 
11280de9a702SOliver Neukum 	spin_lock_irqsave(&mos7840_port->pool_lock, flags);
11295c263b92SMark Ferrell 	for (i = 0; i < NUM_URBS; ++i) {
11305c263b92SMark Ferrell 		if (mos7840_port->busy[i]) {
11315c263b92SMark Ferrell 			struct urb *urb = mos7840_port->write_urb_pool[i];
11325c263b92SMark Ferrell 			chars += urb->transfer_buffer_length;
11335c263b92SMark Ferrell 		}
11345c263b92SMark Ferrell 	}
11350de9a702SOliver Neukum 	spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
11369c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
11370de9a702SOliver Neukum 	return chars;
11383f542974SPaul B Schroeder 
11393f542974SPaul B Schroeder }
11403f542974SPaul B Schroeder 
11413f542974SPaul B Schroeder /*****************************************************************************
11423f542974SPaul B Schroeder  * mos7840_close
11433f542974SPaul B Schroeder  *	this function is called by the tty driver when a port is closed
11443f542974SPaul B Schroeder  *****************************************************************************/
11453f542974SPaul B Schroeder 
1146335f8514SAlan Cox static void mos7840_close(struct usb_serial_port *port)
11473f542974SPaul B Schroeder {
11483f542974SPaul B Schroeder 	struct usb_serial *serial;
11493f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
11500de9a702SOliver Neukum 	struct moschip_port *port0;
11513f542974SPaul B Schroeder 	int j;
11523f542974SPaul B Schroeder 	__u16 Data;
11533f542974SPaul B Schroeder 
11549c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
11553f542974SPaul B Schroeder 		return;
11563f542974SPaul B Schroeder 
1157441b62c1SHarvey Harrison 	serial = mos7840_get_usb_serial(port, __func__);
11589c134a14SGreg Kroah-Hartman 	if (!serial)
11593f542974SPaul B Schroeder 		return;
11603f542974SPaul B Schroeder 
11613f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
11620de9a702SOliver Neukum 	port0 = mos7840_get_port_private(serial->port[0]);
11633f542974SPaul B Schroeder 
11640de9a702SOliver Neukum 	if (mos7840_port == NULL || port0 == NULL)
11653f542974SPaul B Schroeder 		return;
11663f542974SPaul B Schroeder 
11673f542974SPaul B Schroeder 	for (j = 0; j < NUM_URBS; ++j)
11683f542974SPaul B Schroeder 		usb_kill_urb(mos7840_port->write_urb_pool[j]);
11693f542974SPaul B Schroeder 
11703f542974SPaul B Schroeder 	/* Freeing Write URBs */
11713f542974SPaul B Schroeder 	for (j = 0; j < NUM_URBS; ++j) {
11723f542974SPaul B Schroeder 		if (mos7840_port->write_urb_pool[j]) {
117391c72df1SFabian Frederick 			kfree(mos7840_port->write_urb_pool[j]->transfer_buffer);
11743f542974SPaul B Schroeder 			usb_free_urb(mos7840_port->write_urb_pool[j]);
11753f542974SPaul B Schroeder 		}
11763f542974SPaul B Schroeder 	}
11773f542974SPaul B Schroeder 
11783f542974SPaul B Schroeder 	usb_kill_urb(mos7840_port->read_urb);
117950de36f7SGreg Kroah-Hartman 	mos7840_port->read_urb_busy = false;
1180bb3529c6SJohan Hovold 
11810de9a702SOliver Neukum 	port0->open_ports--;
11821143832eSGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s in close%d\n", __func__, port0->open_ports);
11830de9a702SOliver Neukum 	if (port0->open_ports == 0) {
11843f542974SPaul B Schroeder 		if (serial->port[0]->interrupt_in_urb) {
11859c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "Shutdown interrupt_in_urb\n");
11860de9a702SOliver Neukum 			usb_kill_urb(serial->port[0]->interrupt_in_urb);
11873f542974SPaul B Schroeder 		}
11883f542974SPaul B Schroeder 	}
11893f542974SPaul B Schroeder 
11903f542974SPaul B Schroeder 	Data = 0x0;
11913f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
11923f542974SPaul B Schroeder 
11933f542974SPaul B Schroeder 	Data = 0x00;
11943f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
11953f542974SPaul B Schroeder 
11963f542974SPaul B Schroeder 	mos7840_port->open = 0;
11973f542974SPaul B Schroeder }
11983f542974SPaul B Schroeder 
11993f542974SPaul B Schroeder /*****************************************************************************
12003f542974SPaul B Schroeder  * mos7840_break
12013f542974SPaul B Schroeder  *	this function sends a break to the port
12023f542974SPaul B Schroeder  *****************************************************************************/
120395da310eSAlan Cox static void mos7840_break(struct tty_struct *tty, int break_state)
12043f542974SPaul B Schroeder {
120595da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
12063f542974SPaul B Schroeder 	unsigned char data;
12073f542974SPaul B Schroeder 	struct usb_serial *serial;
12083f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
12093f542974SPaul B Schroeder 
12109c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
12113f542974SPaul B Schroeder 		return;
12123f542974SPaul B Schroeder 
1213441b62c1SHarvey Harrison 	serial = mos7840_get_usb_serial(port, __func__);
12149c134a14SGreg Kroah-Hartman 	if (!serial)
12153f542974SPaul B Schroeder 		return;
12163f542974SPaul B Schroeder 
12173f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
12183f542974SPaul B Schroeder 
1219880af9dbSAlan Cox 	if (mos7840_port == NULL)
12203f542974SPaul B Schroeder 		return;
12213f542974SPaul B Schroeder 
122295da310eSAlan Cox 	if (break_state == -1)
12233f542974SPaul B Schroeder 		data = mos7840_port->shadowLCR | LCR_SET_BREAK;
122495da310eSAlan Cox 	else
12253f542974SPaul B Schroeder 		data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
12263f542974SPaul B Schroeder 
12276b447f04SAlan Cox 	/* FIXME: no locking on shadowLCR anywhere in driver */
12283f542974SPaul B Schroeder 	mos7840_port->shadowLCR = data;
12299c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
12303f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
12313f542974SPaul B Schroeder 			     mos7840_port->shadowLCR);
12323f542974SPaul B Schroeder }
12333f542974SPaul B Schroeder 
12343f542974SPaul B Schroeder /*****************************************************************************
12353f542974SPaul B Schroeder  * mos7840_write_room
12363f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to know how many
12373f542974SPaul B Schroeder  *	bytes of data we can accept for a specific port.
12383f542974SPaul B Schroeder  *	If successful, we return the amount of room that we have for this port
12393f542974SPaul B Schroeder  *	Otherwise we return a negative error number.
12403f542974SPaul B Schroeder  *****************************************************************************/
12413f542974SPaul B Schroeder 
124295da310eSAlan Cox static int mos7840_write_room(struct tty_struct *tty)
12433f542974SPaul B Schroeder {
124495da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
12453f542974SPaul B Schroeder 	int i;
12463f542974SPaul B Schroeder 	int room = 0;
12470de9a702SOliver Neukum 	unsigned long flags;
12483f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
12493f542974SPaul B Schroeder 
12509c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
12513f542974SPaul B Schroeder 		return -1;
12523f542974SPaul B Schroeder 
12533f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
12549c134a14SGreg Kroah-Hartman 	if (mos7840_port == NULL)
12553f542974SPaul B Schroeder 		return -1;
12563f542974SPaul B Schroeder 
12570de9a702SOliver Neukum 	spin_lock_irqsave(&mos7840_port->pool_lock, flags);
12583f542974SPaul B Schroeder 	for (i = 0; i < NUM_URBS; ++i) {
1259880af9dbSAlan Cox 		if (!mos7840_port->busy[i])
12603f542974SPaul B Schroeder 			room += URB_TRANSFER_BUFFER_SIZE;
12613f542974SPaul B Schroeder 	}
12620de9a702SOliver Neukum 	spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
12633f542974SPaul B Schroeder 
12640de9a702SOliver Neukum 	room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
12659c134a14SGreg Kroah-Hartman 	dev_dbg(&mos7840_port->port->dev, "%s - returns %d\n", __func__, room);
12660de9a702SOliver Neukum 	return room;
12673f542974SPaul B Schroeder 
12683f542974SPaul B Schroeder }
12693f542974SPaul B Schroeder 
12703f542974SPaul B Schroeder /*****************************************************************************
12713f542974SPaul B Schroeder  * mos7840_write
12723f542974SPaul B Schroeder  *	this function is called by the tty driver when data should be written to
12733f542974SPaul B Schroeder  *	the port.
12743f542974SPaul B Schroeder  *	If successful, we return the number of bytes written, otherwise we
12753f542974SPaul B Schroeder  *      return a negative error number.
12763f542974SPaul B Schroeder  *****************************************************************************/
12773f542974SPaul B Schroeder 
127895da310eSAlan Cox static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
12793f542974SPaul B Schroeder 			 const unsigned char *data, int count)
12803f542974SPaul B Schroeder {
12813f542974SPaul B Schroeder 	int status;
12823f542974SPaul B Schroeder 	int i;
12833f542974SPaul B Schroeder 	int bytes_sent = 0;
12843f542974SPaul B Schroeder 	int transfer_size;
12850de9a702SOliver Neukum 	unsigned long flags;
12863f542974SPaul B Schroeder 
12873f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
12883f542974SPaul B Schroeder 	struct usb_serial *serial;
12893f542974SPaul B Schroeder 	struct urb *urb;
1290880af9dbSAlan Cox 	/* __u16 Data; */
12913f542974SPaul B Schroeder 	const unsigned char *current_position = data;
12923f542974SPaul B Schroeder 
12939c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
12943f542974SPaul B Schroeder 		return -1;
12953f542974SPaul B Schroeder 
12963f542974SPaul B Schroeder 	serial = port->serial;
12979c134a14SGreg Kroah-Hartman 	if (mos7840_serial_paranoia_check(serial, __func__))
12983f542974SPaul B Schroeder 		return -1;
12993f542974SPaul B Schroeder 
13003f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
13019c134a14SGreg Kroah-Hartman 	if (mos7840_port == NULL)
13023f542974SPaul B Schroeder 		return -1;
13033f542974SPaul B Schroeder 
13043f542974SPaul B Schroeder 	/* try to find a free urb in the list */
13053f542974SPaul B Schroeder 	urb = NULL;
13063f542974SPaul B Schroeder 
13070de9a702SOliver Neukum 	spin_lock_irqsave(&mos7840_port->pool_lock, flags);
13083f542974SPaul B Schroeder 	for (i = 0; i < NUM_URBS; ++i) {
13090de9a702SOliver Neukum 		if (!mos7840_port->busy[i]) {
13100de9a702SOliver Neukum 			mos7840_port->busy[i] = 1;
13113f542974SPaul B Schroeder 			urb = mos7840_port->write_urb_pool[i];
13129c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "URB:%d\n", i);
13133f542974SPaul B Schroeder 			break;
13143f542974SPaul B Schroeder 		}
13153f542974SPaul B Schroeder 	}
13160de9a702SOliver Neukum 	spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
13173f542974SPaul B Schroeder 
13183f542974SPaul B Schroeder 	if (urb == NULL) {
13199c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - no more free urbs\n", __func__);
13203f542974SPaul B Schroeder 		goto exit;
13213f542974SPaul B Schroeder 	}
13223f542974SPaul B Schroeder 
13233f542974SPaul B Schroeder 	if (urb->transfer_buffer == NULL) {
13243b7c7e52SAlexey Khoroshilov 		urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
13253b7c7e52SAlexey Khoroshilov 					       GFP_ATOMIC);
132610c642d0SJohan Hovold 		if (!urb->transfer_buffer)
13273f542974SPaul B Schroeder 			goto exit;
13283f542974SPaul B Schroeder 	}
13293f542974SPaul B Schroeder 	transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
13303f542974SPaul B Schroeder 
13313f542974SPaul B Schroeder 	memcpy(urb->transfer_buffer, current_position, transfer_size);
13323f542974SPaul B Schroeder 
13333f542974SPaul B Schroeder 	/* fill urb with data and submit  */
13341143832eSGreg Kroah-Hartman 	if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
1335093ea2d3SDonald Lee 		usb_fill_bulk_urb(urb,
1336093ea2d3SDonald Lee 			serial->dev,
1337093ea2d3SDonald Lee 			usb_sndbulkpipe(serial->dev,
1338093ea2d3SDonald Lee 				(port->bulk_out_endpointAddress) + 2),
1339093ea2d3SDonald Lee 			urb->transfer_buffer,
1340093ea2d3SDonald Lee 			transfer_size,
1341093ea2d3SDonald Lee 			mos7840_bulk_out_data_callback, mos7840_port);
1342093ea2d3SDonald Lee 	} else {
13433f542974SPaul B Schroeder 		usb_fill_bulk_urb(urb,
13443f542974SPaul B Schroeder 			serial->dev,
13453f542974SPaul B Schroeder 			usb_sndbulkpipe(serial->dev,
13463f542974SPaul B Schroeder 				port->bulk_out_endpointAddress),
13473f542974SPaul B Schroeder 			urb->transfer_buffer,
13483f542974SPaul B Schroeder 			transfer_size,
13493f542974SPaul B Schroeder 			mos7840_bulk_out_data_callback, mos7840_port);
1350093ea2d3SDonald Lee 	}
13513f542974SPaul B Schroeder 
13529c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "bulkout endpoint is %d\n", port->bulk_out_endpointAddress);
13533f542974SPaul B Schroeder 
135405cf0decSJohan Hovold 	if (mos7840_port->has_led)
135505cf0decSJohan Hovold 		mos7840_led_activity(port);
13560eafe4deSDonald 
13573f542974SPaul B Schroeder 	/* send it down the pipe */
13583f542974SPaul B Schroeder 	status = usb_submit_urb(urb, GFP_ATOMIC);
13593f542974SPaul B Schroeder 
13603f542974SPaul B Schroeder 	if (status) {
13610de9a702SOliver Neukum 		mos7840_port->busy[i] = 0;
136222a416c4SJohan Hovold 		dev_err_console(port, "%s - usb_submit_urb(write bulk) failed "
1363194343d9SGreg Kroah-Hartman 			"with status = %d\n", __func__, status);
13643f542974SPaul B Schroeder 		bytes_sent = status;
13653f542974SPaul B Schroeder 		goto exit;
13663f542974SPaul B Schroeder 	}
13673f542974SPaul B Schroeder 	bytes_sent = transfer_size;
13688c1a07ffSJohan Hovold 	port->icount.tx += transfer_size;
13698c1a07ffSJohan Hovold 	dev_dbg(&port->dev, "icount.tx is %d:\n", port->icount.tx);
13703f542974SPaul B Schroeder exit:
13713f542974SPaul B Schroeder 	return bytes_sent;
13723f542974SPaul B Schroeder 
13733f542974SPaul B Schroeder }
13743f542974SPaul B Schroeder 
13753f542974SPaul B Schroeder /*****************************************************************************
13763f542974SPaul B Schroeder  * mos7840_throttle
13773f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to stop the data
13783f542974SPaul B Schroeder  *	being read from the port.
13793f542974SPaul B Schroeder  *****************************************************************************/
13803f542974SPaul B Schroeder 
138195da310eSAlan Cox static void mos7840_throttle(struct tty_struct *tty)
13823f542974SPaul B Schroeder {
138395da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
13843f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
13853f542974SPaul B Schroeder 	int status;
13863f542974SPaul B Schroeder 
13879c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
13883f542974SPaul B Schroeder 		return;
13893f542974SPaul B Schroeder 
13903f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
13913f542974SPaul B Schroeder 
13923f542974SPaul B Schroeder 	if (mos7840_port == NULL)
13933f542974SPaul B Schroeder 		return;
13943f542974SPaul B Schroeder 
13953f542974SPaul B Schroeder 	if (!mos7840_port->open) {
13969c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s", "port not opened\n");
13973f542974SPaul B Schroeder 		return;
13983f542974SPaul B Schroeder 	}
13993f542974SPaul B Schroeder 
14003f542974SPaul B Schroeder 	/* if we are implementing XON/XOFF, send the stop character */
14013f542974SPaul B Schroeder 	if (I_IXOFF(tty)) {
14023f542974SPaul B Schroeder 		unsigned char stop_char = STOP_CHAR(tty);
140395da310eSAlan Cox 		status = mos7840_write(tty, port, &stop_char, 1);
140495da310eSAlan Cox 		if (status <= 0)
14053f542974SPaul B Schroeder 			return;
14063f542974SPaul B Schroeder 	}
14073f542974SPaul B Schroeder 	/* if we are implementing RTS/CTS, toggle that line */
14089db276f8SPeter Hurley 	if (C_CRTSCTS(tty)) {
14093f542974SPaul B Schroeder 		mos7840_port->shadowMCR &= ~MCR_RTS;
141095da310eSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
14113f542974SPaul B Schroeder 					 mos7840_port->shadowMCR);
141295da310eSAlan Cox 		if (status < 0)
14133f542974SPaul B Schroeder 			return;
14143f542974SPaul B Schroeder 	}
14153f542974SPaul B Schroeder }
14163f542974SPaul B Schroeder 
14173f542974SPaul B Schroeder /*****************************************************************************
14183f542974SPaul B Schroeder  * mos7840_unthrottle
1419880af9dbSAlan Cox  *	this function is called by the tty driver when it wants to resume
1420880af9dbSAlan Cox  *	the data being read from the port (called after mos7840_throttle is
1421880af9dbSAlan Cox  *	called)
14223f542974SPaul B Schroeder  *****************************************************************************/
142395da310eSAlan Cox static void mos7840_unthrottle(struct tty_struct *tty)
14243f542974SPaul B Schroeder {
142595da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
14263f542974SPaul B Schroeder 	int status;
14273f542974SPaul B Schroeder 	struct moschip_port *mos7840_port = mos7840_get_port_private(port);
14283f542974SPaul B Schroeder 
14299c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
14303f542974SPaul B Schroeder 		return;
14313f542974SPaul B Schroeder 
14323f542974SPaul B Schroeder 	if (mos7840_port == NULL)
14333f542974SPaul B Schroeder 		return;
14343f542974SPaul B Schroeder 
14353f542974SPaul B Schroeder 	if (!mos7840_port->open) {
14369c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - port not opened\n", __func__);
14373f542974SPaul B Schroeder 		return;
14383f542974SPaul B Schroeder 	}
14393f542974SPaul B Schroeder 
14403f542974SPaul B Schroeder 	/* if we are implementing XON/XOFF, send the start character */
14413f542974SPaul B Schroeder 	if (I_IXOFF(tty)) {
14423f542974SPaul B Schroeder 		unsigned char start_char = START_CHAR(tty);
144395da310eSAlan Cox 		status = mos7840_write(tty, port, &start_char, 1);
144495da310eSAlan Cox 		if (status <= 0)
14453f542974SPaul B Schroeder 			return;
14463f542974SPaul B Schroeder 	}
14473f542974SPaul B Schroeder 
14483f542974SPaul B Schroeder 	/* if we are implementing RTS/CTS, toggle that line */
14499db276f8SPeter Hurley 	if (C_CRTSCTS(tty)) {
14503f542974SPaul B Schroeder 		mos7840_port->shadowMCR |= MCR_RTS;
145195da310eSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
14523f542974SPaul B Schroeder 					 mos7840_port->shadowMCR);
145395da310eSAlan Cox 		if (status < 0)
14543f542974SPaul B Schroeder 			return;
14553f542974SPaul B Schroeder 	}
14563f542974SPaul B Schroeder }
14573f542974SPaul B Schroeder 
145860b33c13SAlan Cox static int mos7840_tiocmget(struct tty_struct *tty)
14593f542974SPaul B Schroeder {
146095da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
14613f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
14623f542974SPaul B Schroeder 	unsigned int result;
14633f542974SPaul B Schroeder 	__u16 msr;
14643f542974SPaul B Schroeder 	__u16 mcr;
1465880af9dbSAlan Cox 	int status;
14663f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
14673f542974SPaul B Schroeder 
14683f542974SPaul B Schroeder 	if (mos7840_port == NULL)
14693f542974SPaul B Schroeder 		return -ENODEV;
14703f542974SPaul B Schroeder 
14713f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1472cd8db057SJohan Hovold 	if (status < 0)
1473a91ccd26SJohan Hovold 		return -EIO;
14743f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1475cd8db057SJohan Hovold 	if (status < 0)
1476a91ccd26SJohan Hovold 		return -EIO;
14773f542974SPaul B Schroeder 	result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
14783f542974SPaul B Schroeder 	    | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
14793f542974SPaul B Schroeder 	    | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
14803f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
14813f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
14823f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
14833f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
14843f542974SPaul B Schroeder 
14859c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
14863f542974SPaul B Schroeder 
14873f542974SPaul B Schroeder 	return result;
14883f542974SPaul B Schroeder }
14893f542974SPaul B Schroeder 
149020b9d177SAlan Cox static int mos7840_tiocmset(struct tty_struct *tty,
14913f542974SPaul B Schroeder 			    unsigned int set, unsigned int clear)
14923f542974SPaul B Schroeder {
149395da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
14943f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
14953f542974SPaul B Schroeder 	unsigned int mcr;
149687521c46SRoel Kluin 	int status;
14973f542974SPaul B Schroeder 
14983f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
14993f542974SPaul B Schroeder 
15003f542974SPaul B Schroeder 	if (mos7840_port == NULL)
15013f542974SPaul B Schroeder 		return -ENODEV;
15023f542974SPaul B Schroeder 
1503e2984494SAlan Cox 	/* FIXME: What locks the port registers ? */
15043f542974SPaul B Schroeder 	mcr = mos7840_port->shadowMCR;
15053f542974SPaul B Schroeder 	if (clear & TIOCM_RTS)
15063f542974SPaul B Schroeder 		mcr &= ~MCR_RTS;
15073f542974SPaul B Schroeder 	if (clear & TIOCM_DTR)
15083f542974SPaul B Schroeder 		mcr &= ~MCR_DTR;
15093f542974SPaul B Schroeder 	if (clear & TIOCM_LOOP)
15103f542974SPaul B Schroeder 		mcr &= ~MCR_LOOPBACK;
15113f542974SPaul B Schroeder 
15123f542974SPaul B Schroeder 	if (set & TIOCM_RTS)
15133f542974SPaul B Schroeder 		mcr |= MCR_RTS;
15143f542974SPaul B Schroeder 	if (set & TIOCM_DTR)
15153f542974SPaul B Schroeder 		mcr |= MCR_DTR;
15163f542974SPaul B Schroeder 	if (set & TIOCM_LOOP)
15173f542974SPaul B Schroeder 		mcr |= MCR_LOOPBACK;
15183f542974SPaul B Schroeder 
15193f542974SPaul B Schroeder 	mos7840_port->shadowMCR = mcr;
15203f542974SPaul B Schroeder 
15213f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
15223f542974SPaul B Schroeder 	if (status < 0) {
15239c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "setting MODEM_CONTROL_REGISTER Failed\n");
152487521c46SRoel Kluin 		return status;
15253f542974SPaul B Schroeder 	}
15263f542974SPaul B Schroeder 
15273f542974SPaul B Schroeder 	return 0;
15283f542974SPaul B Schroeder }
15293f542974SPaul B Schroeder 
15303f542974SPaul B Schroeder /*****************************************************************************
15313f542974SPaul B Schroeder  * mos7840_calc_baud_rate_divisor
15323f542974SPaul B Schroeder  *	this function calculates the proper baud rate divisor for the specified
15333f542974SPaul B Schroeder  *	baud rate.
15343f542974SPaul B Schroeder  *****************************************************************************/
15359c134a14SGreg Kroah-Hartman static int mos7840_calc_baud_rate_divisor(struct usb_serial_port *port,
15369c134a14SGreg Kroah-Hartman 					  int baudRate, int *divisor,
15373f542974SPaul B Schroeder 					  __u16 *clk_sel_val)
15383f542974SPaul B Schroeder {
15399c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - %d\n", __func__, baudRate);
15403f542974SPaul B Schroeder 
15413f542974SPaul B Schroeder 	if (baudRate <= 115200) {
15423f542974SPaul B Schroeder 		*divisor = 115200 / baudRate;
15433f542974SPaul B Schroeder 		*clk_sel_val = 0x0;
15443f542974SPaul B Schroeder 	}
15453f542974SPaul B Schroeder 	if ((baudRate > 115200) && (baudRate <= 230400)) {
15463f542974SPaul B Schroeder 		*divisor = 230400 / baudRate;
15473f542974SPaul B Schroeder 		*clk_sel_val = 0x10;
15483f542974SPaul B Schroeder 	} else if ((baudRate > 230400) && (baudRate <= 403200)) {
15493f542974SPaul B Schroeder 		*divisor = 403200 / baudRate;
15503f542974SPaul B Schroeder 		*clk_sel_val = 0x20;
15513f542974SPaul B Schroeder 	} else if ((baudRate > 403200) && (baudRate <= 460800)) {
15523f542974SPaul B Schroeder 		*divisor = 460800 / baudRate;
15533f542974SPaul B Schroeder 		*clk_sel_val = 0x30;
15543f542974SPaul B Schroeder 	} else if ((baudRate > 460800) && (baudRate <= 806400)) {
15553f542974SPaul B Schroeder 		*divisor = 806400 / baudRate;
15563f542974SPaul B Schroeder 		*clk_sel_val = 0x40;
15573f542974SPaul B Schroeder 	} else if ((baudRate > 806400) && (baudRate <= 921600)) {
15583f542974SPaul B Schroeder 		*divisor = 921600 / baudRate;
15593f542974SPaul B Schroeder 		*clk_sel_val = 0x50;
15603f542974SPaul B Schroeder 	} else if ((baudRate > 921600) && (baudRate <= 1572864)) {
15613f542974SPaul B Schroeder 		*divisor = 1572864 / baudRate;
15623f542974SPaul B Schroeder 		*clk_sel_val = 0x60;
15633f542974SPaul B Schroeder 	} else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
15643f542974SPaul B Schroeder 		*divisor = 3145728 / baudRate;
15653f542974SPaul B Schroeder 		*clk_sel_val = 0x70;
15663f542974SPaul B Schroeder 	}
15673f542974SPaul B Schroeder 	return 0;
15683f542974SPaul B Schroeder }
15693f542974SPaul B Schroeder 
15703f542974SPaul B Schroeder /*****************************************************************************
15713f542974SPaul B Schroeder  * mos7840_send_cmd_write_baud_rate
15723f542974SPaul B Schroeder  *	this function sends the proper command to change the baud rate of the
15733f542974SPaul B Schroeder  *	specified port.
15743f542974SPaul B Schroeder  *****************************************************************************/
15753f542974SPaul B Schroeder 
15763f542974SPaul B Schroeder static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
15773f542974SPaul B Schroeder 					    int baudRate)
15783f542974SPaul B Schroeder {
15793f542974SPaul B Schroeder 	int divisor = 0;
15803f542974SPaul B Schroeder 	int status;
15813f542974SPaul B Schroeder 	__u16 Data;
15823f542974SPaul B Schroeder 	unsigned char number;
15833f542974SPaul B Schroeder 	__u16 clk_sel_val;
15843f542974SPaul B Schroeder 	struct usb_serial_port *port;
15853f542974SPaul B Schroeder 
15863f542974SPaul B Schroeder 	if (mos7840_port == NULL)
15873f542974SPaul B Schroeder 		return -1;
15883f542974SPaul B Schroeder 
15899c134a14SGreg Kroah-Hartman 	port = mos7840_port->port;
15909c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
15913f542974SPaul B Schroeder 		return -1;
15923f542974SPaul B Schroeder 
15939c134a14SGreg Kroah-Hartman 	if (mos7840_serial_paranoia_check(port->serial, __func__))
15943f542974SPaul B Schroeder 		return -1;
15953f542974SPaul B Schroeder 
15961143832eSGreg Kroah-Hartman 	number = mos7840_port->port->port_number;
15973f542974SPaul B Schroeder 
15981143832eSGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - baud = %d\n", __func__, baudRate);
1599880af9dbSAlan Cox 	/* reset clk_uart_sel in spregOffset */
16003f542974SPaul B Schroeder 	if (baudRate > 115200) {
16013f542974SPaul B Schroeder #ifdef HW_flow_control
1602880af9dbSAlan Cox 		/* NOTE: need to see the pther register to modify */
1603880af9dbSAlan Cox 		/* setting h/w flow control bit to 1 */
16043f542974SPaul B Schroeder 		Data = 0x2b;
16053f542974SPaul B Schroeder 		mos7840_port->shadowMCR = Data;
1606880af9dbSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1607880af9dbSAlan Cox 									Data);
16083f542974SPaul B Schroeder 		if (status < 0) {
16099c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
16103f542974SPaul B Schroeder 			return -1;
16113f542974SPaul B Schroeder 		}
16123f542974SPaul B Schroeder #endif
16133f542974SPaul B Schroeder 
16143f542974SPaul B Schroeder 	} else {
16153f542974SPaul B Schroeder #ifdef HW_flow_control
1616880af9dbSAlan Cox 		/* setting h/w flow control bit to 0 */
16173f542974SPaul B Schroeder 		Data = 0xb;
16183f542974SPaul B Schroeder 		mos7840_port->shadowMCR = Data;
1619880af9dbSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1620880af9dbSAlan Cox 									Data);
16213f542974SPaul B Schroeder 		if (status < 0) {
16229c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
16233f542974SPaul B Schroeder 			return -1;
16243f542974SPaul B Schroeder 		}
16253f542974SPaul B Schroeder #endif
16263f542974SPaul B Schroeder 
16273f542974SPaul B Schroeder 	}
16283f542974SPaul B Schroeder 
1629880af9dbSAlan Cox 	if (1) {		/* baudRate <= 115200) */
16303f542974SPaul B Schroeder 		clk_sel_val = 0x0;
16313f542974SPaul B Schroeder 		Data = 0x0;
16329c134a14SGreg Kroah-Hartman 		status = mos7840_calc_baud_rate_divisor(port, baudRate, &divisor,
16333f542974SPaul B Schroeder 						   &clk_sel_val);
1634880af9dbSAlan Cox 		status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
16353f542974SPaul B Schroeder 								 &Data);
16363f542974SPaul B Schroeder 		if (status < 0) {
16379c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "reading spreg failed in set_serial_baud\n");
16383f542974SPaul B Schroeder 			return -1;
16393f542974SPaul B Schroeder 		}
16403f542974SPaul B Schroeder 		Data = (Data & 0x8f) | clk_sel_val;
1641880af9dbSAlan Cox 		status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1642880af9dbSAlan Cox 								Data);
16433f542974SPaul B Schroeder 		if (status < 0) {
16449c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
16453f542974SPaul B Schroeder 			return -1;
16463f542974SPaul B Schroeder 		}
16473f542974SPaul B Schroeder 		/* Calculate the Divisor */
16483f542974SPaul B Schroeder 
16493f542974SPaul B Schroeder 		if (status) {
1650194343d9SGreg Kroah-Hartman 			dev_err(&port->dev, "%s - bad baud rate\n", __func__);
16513f542974SPaul B Schroeder 			return status;
16523f542974SPaul B Schroeder 		}
16533f542974SPaul B Schroeder 		/* Enable access to divisor latch */
16543f542974SPaul B Schroeder 		Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
16553f542974SPaul B Schroeder 		mos7840_port->shadowLCR = Data;
16563f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
16573f542974SPaul B Schroeder 
16583f542974SPaul B Schroeder 		/* Write the divisor */
16593f542974SPaul B Schroeder 		Data = (unsigned char)(divisor & 0xff);
16609c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "set_serial_baud Value to write DLL is %x\n", Data);
16613f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
16623f542974SPaul B Schroeder 
16633f542974SPaul B Schroeder 		Data = (unsigned char)((divisor & 0xff00) >> 8);
16649c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "set_serial_baud Value to write DLM is %x\n", Data);
16653f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
16663f542974SPaul B Schroeder 
16673f542974SPaul B Schroeder 		/* Disable access to divisor latch */
16683f542974SPaul B Schroeder 		Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
16693f542974SPaul B Schroeder 		mos7840_port->shadowLCR = Data;
16703f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
16713f542974SPaul B Schroeder 
16723f542974SPaul B Schroeder 	}
16733f542974SPaul B Schroeder 	return status;
16743f542974SPaul B Schroeder }
16753f542974SPaul B Schroeder 
16763f542974SPaul B Schroeder /*****************************************************************************
16773f542974SPaul B Schroeder  * mos7840_change_port_settings
16783f542974SPaul B Schroeder  *	This routine is called to set the UART on the device to match
16793f542974SPaul B Schroeder  *      the specified new settings.
16803f542974SPaul B Schroeder  *****************************************************************************/
16813f542974SPaul B Schroeder 
168295da310eSAlan Cox static void mos7840_change_port_settings(struct tty_struct *tty,
168395da310eSAlan Cox 	struct moschip_port *mos7840_port, struct ktermios *old_termios)
16843f542974SPaul B Schroeder {
16853f542974SPaul B Schroeder 	int baud;
16863f542974SPaul B Schroeder 	unsigned cflag;
16873f542974SPaul B Schroeder 	__u8 lData;
16883f542974SPaul B Schroeder 	__u8 lParity;
16893f542974SPaul B Schroeder 	__u8 lStop;
16903f542974SPaul B Schroeder 	int status;
16913f542974SPaul B Schroeder 	__u16 Data;
16923f542974SPaul B Schroeder 	struct usb_serial_port *port;
16933f542974SPaul B Schroeder 	struct usb_serial *serial;
16943f542974SPaul B Schroeder 
16953f542974SPaul B Schroeder 	if (mos7840_port == NULL)
16963f542974SPaul B Schroeder 		return;
16973f542974SPaul B Schroeder 
16989c134a14SGreg Kroah-Hartman 	port = mos7840_port->port;
16993f542974SPaul B Schroeder 
17009c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
17013f542974SPaul B Schroeder 		return;
17023f542974SPaul B Schroeder 
17039c134a14SGreg Kroah-Hartman 	if (mos7840_serial_paranoia_check(port->serial, __func__))
17043f542974SPaul B Schroeder 		return;
17053f542974SPaul B Schroeder 
17063f542974SPaul B Schroeder 	serial = port->serial;
17073f542974SPaul B Schroeder 
17083f542974SPaul B Schroeder 	if (!mos7840_port->open) {
17099c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - port not opened\n", __func__);
17103f542974SPaul B Schroeder 		return;
17113f542974SPaul B Schroeder 	}
17123f542974SPaul B Schroeder 
17133f542974SPaul B Schroeder 	lData = LCR_BITS_8;
17143f542974SPaul B Schroeder 	lStop = LCR_STOP_1;
17153f542974SPaul B Schroeder 	lParity = LCR_PAR_NONE;
17163f542974SPaul B Schroeder 
1717adc8d746SAlan Cox 	cflag = tty->termios.c_cflag;
17183f542974SPaul B Schroeder 
17193f542974SPaul B Schroeder 	/* Change the number of bits */
17203f542974SPaul B Schroeder 	switch (cflag & CSIZE) {
17213f542974SPaul B Schroeder 	case CS5:
17223f542974SPaul B Schroeder 		lData = LCR_BITS_5;
17233f542974SPaul B Schroeder 		break;
17243f542974SPaul B Schroeder 
17253f542974SPaul B Schroeder 	case CS6:
17263f542974SPaul B Schroeder 		lData = LCR_BITS_6;
17273f542974SPaul B Schroeder 		break;
17283f542974SPaul B Schroeder 
17293f542974SPaul B Schroeder 	case CS7:
17303f542974SPaul B Schroeder 		lData = LCR_BITS_7;
17313f542974SPaul B Schroeder 		break;
173278692cc3SColin Leitner 
17333f542974SPaul B Schroeder 	default:
17343f542974SPaul B Schroeder 	case CS8:
17353f542974SPaul B Schroeder 		lData = LCR_BITS_8;
17363f542974SPaul B Schroeder 		break;
17373f542974SPaul B Schroeder 	}
173878692cc3SColin Leitner 
17393f542974SPaul B Schroeder 	/* Change the Parity bit */
17403f542974SPaul B Schroeder 	if (cflag & PARENB) {
17413f542974SPaul B Schroeder 		if (cflag & PARODD) {
17423f542974SPaul B Schroeder 			lParity = LCR_PAR_ODD;
17439c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "%s - parity = odd\n", __func__);
17443f542974SPaul B Schroeder 		} else {
17453f542974SPaul B Schroeder 			lParity = LCR_PAR_EVEN;
17469c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "%s - parity = even\n", __func__);
17473f542974SPaul B Schroeder 		}
17483f542974SPaul B Schroeder 
17493f542974SPaul B Schroeder 	} else {
17509c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - parity = none\n", __func__);
17513f542974SPaul B Schroeder 	}
17523f542974SPaul B Schroeder 
1753880af9dbSAlan Cox 	if (cflag & CMSPAR)
17543f542974SPaul B Schroeder 		lParity = lParity | 0x20;
17553f542974SPaul B Schroeder 
17563f542974SPaul B Schroeder 	/* Change the Stop bit */
17573f542974SPaul B Schroeder 	if (cflag & CSTOPB) {
17583f542974SPaul B Schroeder 		lStop = LCR_STOP_2;
17599c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - stop bits = 2\n", __func__);
17603f542974SPaul B Schroeder 	} else {
17613f542974SPaul B Schroeder 		lStop = LCR_STOP_1;
17629c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - stop bits = 1\n", __func__);
17633f542974SPaul B Schroeder 	}
17643f542974SPaul B Schroeder 
17653f542974SPaul B Schroeder 	/* Update the LCR with the correct value */
17663f542974SPaul B Schroeder 	mos7840_port->shadowLCR &=
17673f542974SPaul B Schroeder 	    ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
17683f542974SPaul B Schroeder 	mos7840_port->shadowLCR |= (lData | lParity | lStop);
17693f542974SPaul B Schroeder 
17709c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is %x\n", __func__,
17713f542974SPaul B Schroeder 		mos7840_port->shadowLCR);
17723f542974SPaul B Schroeder 	/* Disable Interrupts */
17733f542974SPaul B Schroeder 	Data = 0x00;
17743f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
17753f542974SPaul B Schroeder 
17763f542974SPaul B Schroeder 	Data = 0x00;
17773f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
17783f542974SPaul B Schroeder 
17793f542974SPaul B Schroeder 	Data = 0xcf;
17803f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
17813f542974SPaul B Schroeder 
17823f542974SPaul B Schroeder 	/* Send the updated LCR value to the mos7840 */
17833f542974SPaul B Schroeder 	Data = mos7840_port->shadowLCR;
17843f542974SPaul B Schroeder 
17853f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
17863f542974SPaul B Schroeder 
17873f542974SPaul B Schroeder 	Data = 0x00b;
17883f542974SPaul B Schroeder 	mos7840_port->shadowMCR = Data;
17893f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
17903f542974SPaul B Schroeder 	Data = 0x00b;
17913f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
17923f542974SPaul B Schroeder 
17933f542974SPaul B Schroeder 	/* set up the MCR register and send it to the mos7840 */
17943f542974SPaul B Schroeder 
17953f542974SPaul B Schroeder 	mos7840_port->shadowMCR = MCR_MASTER_IE;
1796880af9dbSAlan Cox 	if (cflag & CBAUD)
17973f542974SPaul B Schroeder 		mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
17983f542974SPaul B Schroeder 
1799880af9dbSAlan Cox 	if (cflag & CRTSCTS)
18003f542974SPaul B Schroeder 		mos7840_port->shadowMCR |= (MCR_XON_ANY);
1801880af9dbSAlan Cox 	else
18023f542974SPaul B Schroeder 		mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
18033f542974SPaul B Schroeder 
18043f542974SPaul B Schroeder 	Data = mos7840_port->shadowMCR;
18053f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
18063f542974SPaul B Schroeder 
18073f542974SPaul B Schroeder 	/* Determine divisor based on baud rate */
18083f542974SPaul B Schroeder 	baud = tty_get_baud_rate(tty);
18093f542974SPaul B Schroeder 
18103f542974SPaul B Schroeder 	if (!baud) {
18113f542974SPaul B Schroeder 		/* pick a default, any default... */
18129c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s", "Picked default baud...\n");
18133f542974SPaul B Schroeder 		baud = 9600;
18143f542974SPaul B Schroeder 	}
18153f542974SPaul B Schroeder 
18169c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - baud rate = %d\n", __func__, baud);
18173f542974SPaul B Schroeder 	status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
18183f542974SPaul B Schroeder 
18193f542974SPaul B Schroeder 	/* Enable Interrupts */
18203f542974SPaul B Schroeder 	Data = 0x0c;
18213f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
18223f542974SPaul B Schroeder 
1823ce9d8562SMathieu OTHACEHE 	if (!mos7840_port->read_urb_busy) {
182450de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = true;
18259d380190SJohan Hovold 		status = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
18263f542974SPaul B Schroeder 		if (status) {
18279c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
18283f542974SPaul B Schroeder 			    status);
182950de36f7SGreg Kroah-Hartman 			mos7840_port->read_urb_busy = false;
18303f542974SPaul B Schroeder 		}
18313f542974SPaul B Schroeder 	}
18329c134a14SGreg Kroah-Hartman 	dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is End %x\n", __func__,
18333f542974SPaul B Schroeder 		mos7840_port->shadowLCR);
18343f542974SPaul B Schroeder }
18353f542974SPaul B Schroeder 
18363f542974SPaul B Schroeder /*****************************************************************************
18373f542974SPaul B Schroeder  * mos7840_set_termios
18383f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to change
18393f542974SPaul B Schroeder  *	the termios structure
18403f542974SPaul B Schroeder  *****************************************************************************/
18413f542974SPaul B Schroeder 
184295da310eSAlan Cox static void mos7840_set_termios(struct tty_struct *tty,
184395da310eSAlan Cox 				struct usb_serial_port *port,
1844606d099cSAlan Cox 				struct ktermios *old_termios)
18453f542974SPaul B Schroeder {
18463f542974SPaul B Schroeder 	int status;
18473f542974SPaul B Schroeder 	struct usb_serial *serial;
18483f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
18493363155bSGreg Kroah-Hartman 
18509c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
18513f542974SPaul B Schroeder 		return;
18523f542974SPaul B Schroeder 
18533f542974SPaul B Schroeder 	serial = port->serial;
18543f542974SPaul B Schroeder 
18559c134a14SGreg Kroah-Hartman 	if (mos7840_serial_paranoia_check(serial, __func__))
18563f542974SPaul B Schroeder 		return;
18573f542974SPaul B Schroeder 
18583f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
18593f542974SPaul B Schroeder 
18603f542974SPaul B Schroeder 	if (mos7840_port == NULL)
18613f542974SPaul B Schroeder 		return;
18623f542974SPaul B Schroeder 
18633f542974SPaul B Schroeder 	if (!mos7840_port->open) {
18649c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s - port not opened\n", __func__);
18653f542974SPaul B Schroeder 		return;
18663f542974SPaul B Schroeder 	}
18673f542974SPaul B Schroeder 
18683f542974SPaul B Schroeder 	/* change the port settings to the new ones specified */
18693f542974SPaul B Schroeder 
187095da310eSAlan Cox 	mos7840_change_port_settings(tty, mos7840_port, old_termios);
18713f542974SPaul B Schroeder 
18723f542974SPaul B Schroeder 	if (!mos7840_port->read_urb) {
18739c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s", "URB KILLED !!!!!\n");
18743f542974SPaul B Schroeder 		return;
18753f542974SPaul B Schroeder 	}
18763f542974SPaul B Schroeder 
1877ce9d8562SMathieu OTHACEHE 	if (!mos7840_port->read_urb_busy) {
187850de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = true;
18799d380190SJohan Hovold 		status = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
18803f542974SPaul B Schroeder 		if (status) {
18819c134a14SGreg Kroah-Hartman 			dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
18823f542974SPaul B Schroeder 			    status);
188350de36f7SGreg Kroah-Hartman 			mos7840_port->read_urb_busy = false;
18843f542974SPaul B Schroeder 		}
18853f542974SPaul B Schroeder 	}
18863f542974SPaul B Schroeder }
18873f542974SPaul B Schroeder 
18883f542974SPaul B Schroeder /*****************************************************************************
18893f542974SPaul B Schroeder  * mos7840_get_lsr_info - get line status register info
18903f542974SPaul B Schroeder  *
18913f542974SPaul B Schroeder  * Purpose: Let user call ioctl() to get info when the UART physically
18923f542974SPaul B Schroeder  * 	    is emptied.  On bus types like RS485, the transmitter must
18933f542974SPaul B Schroeder  * 	    release the bus after transmitting. This must be done when
18943f542974SPaul B Schroeder  * 	    the transmit shift register is empty, not be done when the
18953f542974SPaul B Schroeder  * 	    transmit holding register is empty.  This functionality
18963f542974SPaul B Schroeder  * 	    allows an RS485 driver to be written in user space.
18973f542974SPaul B Schroeder  *****************************************************************************/
18983f542974SPaul B Schroeder 
189995da310eSAlan Cox static int mos7840_get_lsr_info(struct tty_struct *tty,
190097c4965dSAl Viro 				unsigned int __user *value)
19013f542974SPaul B Schroeder {
19023f542974SPaul B Schroeder 	int count;
19033f542974SPaul B Schroeder 	unsigned int result = 0;
19043f542974SPaul B Schroeder 
190595da310eSAlan Cox 	count = mos7840_chars_in_buffer(tty);
19069c134a14SGreg Kroah-Hartman 	if (count == 0)
19073f542974SPaul B Schroeder 		result = TIOCSER_TEMT;
19083f542974SPaul B Schroeder 
19093f542974SPaul B Schroeder 	if (copy_to_user(value, &result, sizeof(int)))
19103f542974SPaul B Schroeder 		return -EFAULT;
19113f542974SPaul B Schroeder 	return 0;
19123f542974SPaul B Schroeder }
19133f542974SPaul B Schroeder 
19143f542974SPaul B Schroeder /*****************************************************************************
19153f542974SPaul B Schroeder  * mos7840_get_serial_info
19163f542974SPaul B Schroeder  *      function to get information about serial port
19173f542974SPaul B Schroeder  *****************************************************************************/
19183f542974SPaul B Schroeder 
1919b27ef409SAl Viro static int mos7840_get_serial_info(struct tty_struct *tty,
1920b27ef409SAl Viro 				   struct serial_struct *ss)
19213f542974SPaul B Schroeder {
1922b27ef409SAl Viro 	struct usb_serial_port *port = tty->driver_data;
1923b27ef409SAl Viro 	struct moschip_port *mos7840_port = mos7840_get_port_private(port);
19243f542974SPaul B Schroeder 
1925b27ef409SAl Viro 	ss->type = PORT_16550A;
1926b27ef409SAl Viro 	ss->line = mos7840_port->port->minor;
1927b27ef409SAl Viro 	ss->port = mos7840_port->port->port_number;
1928b27ef409SAl Viro 	ss->irq = 0;
1929b27ef409SAl Viro 	ss->xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
1930b27ef409SAl Viro 	ss->baud_base = 9600;
1931b27ef409SAl Viro 	ss->close_delay = 5 * HZ;
1932b27ef409SAl Viro 	ss->closing_wait = 30 * HZ;
19333f542974SPaul B Schroeder 	return 0;
19343f542974SPaul B Schroeder }
19353f542974SPaul B Schroeder 
19363f542974SPaul B Schroeder /*****************************************************************************
19373f542974SPaul B Schroeder  * SerialIoctl
19383f542974SPaul B Schroeder  *	this function handles any ioctl calls to the driver
19393f542974SPaul B Schroeder  *****************************************************************************/
19403f542974SPaul B Schroeder 
194100a0d0d6SAlan Cox static int mos7840_ioctl(struct tty_struct *tty,
19423f542974SPaul B Schroeder 			 unsigned int cmd, unsigned long arg)
19433f542974SPaul B Schroeder {
194495da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
194597c4965dSAl Viro 	void __user *argp = (void __user *)arg;
19463f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
19473f542974SPaul B Schroeder 
19489c134a14SGreg Kroah-Hartman 	if (mos7840_port_paranoia_check(port, __func__))
19493f542974SPaul B Schroeder 		return -1;
19503f542974SPaul B Schroeder 
19513f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
19523f542974SPaul B Schroeder 
19533f542974SPaul B Schroeder 	if (mos7840_port == NULL)
19543f542974SPaul B Schroeder 		return -1;
19553f542974SPaul B Schroeder 
19563f542974SPaul B Schroeder 	switch (cmd) {
19573f542974SPaul B Schroeder 		/* return number of bytes available */
19583f542974SPaul B Schroeder 
19593f542974SPaul B Schroeder 	case TIOCSERGETLSR:
19609c134a14SGreg Kroah-Hartman 		dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
196195da310eSAlan Cox 		return mos7840_get_lsr_info(tty, argp);
19623f542974SPaul B Schroeder 
19633f542974SPaul B Schroeder 	default:
19643f542974SPaul B Schroeder 		break;
19653f542974SPaul B Schroeder 	}
19663f542974SPaul B Schroeder 	return -ENOIOCTLCMD;
19673f542974SPaul B Schroeder }
19683f542974SPaul B Schroeder 
19690eafe4deSDonald static int mos7810_check(struct usb_serial *serial)
19703f542974SPaul B Schroeder {
19710eafe4deSDonald 	int i, pass_count = 0;
197215ee89c3SJohan Hovold 	u8 *buf;
19730eafe4deSDonald 	__u16 data = 0, mcr_data = 0;
19740eafe4deSDonald 	__u16 test_pattern = 0x55AA;
197515ee89c3SJohan Hovold 	int res;
197615ee89c3SJohan Hovold 
197715ee89c3SJohan Hovold 	buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
197815ee89c3SJohan Hovold 	if (!buf)
197915ee89c3SJohan Hovold 		return 0;	/* failed to identify 7810 */
19803f542974SPaul B Schroeder 
19810eafe4deSDonald 	/* Store MCR setting */
198215ee89c3SJohan Hovold 	res = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
19830eafe4deSDonald 		MCS_RDREQ, MCS_RD_RTYPE, 0x0300, MODEM_CONTROL_REGISTER,
198415ee89c3SJohan Hovold 		buf, VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
198515ee89c3SJohan Hovold 	if (res == VENDOR_READ_LENGTH)
198615ee89c3SJohan Hovold 		mcr_data = *buf;
19870eafe4deSDonald 
19880eafe4deSDonald 	for (i = 0; i < 16; i++) {
19890eafe4deSDonald 		/* Send the 1-bit test pattern out to MCS7810 test pin */
19900eafe4deSDonald 		usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
19910eafe4deSDonald 			MCS_WRREQ, MCS_WR_RTYPE,
19920eafe4deSDonald 			(0x0300 | (((test_pattern >> i) & 0x0001) << 1)),
19930eafe4deSDonald 			MODEM_CONTROL_REGISTER, NULL, 0, MOS_WDR_TIMEOUT);
19940eafe4deSDonald 
19950eafe4deSDonald 		/* Read the test pattern back */
199615ee89c3SJohan Hovold 		res = usb_control_msg(serial->dev,
199715ee89c3SJohan Hovold 				usb_rcvctrlpipe(serial->dev, 0), MCS_RDREQ,
199815ee89c3SJohan Hovold 				MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
1999093ea2d3SDonald Lee 				VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
200015ee89c3SJohan Hovold 		if (res == VENDOR_READ_LENGTH)
200115ee89c3SJohan Hovold 			data = *buf;
2002093ea2d3SDonald Lee 
20030eafe4deSDonald 		/* If this is a MCS7810 device, both test patterns must match */
20040eafe4deSDonald 		if (((test_pattern >> i) ^ (~data >> 1)) & 0x0001)
20050eafe4deSDonald 			break;
20060eafe4deSDonald 
20070eafe4deSDonald 		pass_count++;
20083f542974SPaul B Schroeder 	}
2009093ea2d3SDonald Lee 
20100eafe4deSDonald 	/* Restore MCR setting */
20110eafe4deSDonald 	usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), MCS_WRREQ,
20120eafe4deSDonald 		MCS_WR_RTYPE, 0x0300 | mcr_data, MODEM_CONTROL_REGISTER, NULL,
20130eafe4deSDonald 		0, MOS_WDR_TIMEOUT);
20140eafe4deSDonald 
201515ee89c3SJohan Hovold 	kfree(buf);
201615ee89c3SJohan Hovold 
20170eafe4deSDonald 	if (pass_count == 16)
20180eafe4deSDonald 		return 1;
20190eafe4deSDonald 
20200eafe4deSDonald 	return 0;
20210eafe4deSDonald }
20220eafe4deSDonald 
202340c24f28SJohan Hovold static int mos7840_probe(struct usb_serial *serial,
202440c24f28SJohan Hovold 				const struct usb_device_id *id)
20250eafe4deSDonald {
2026d551ec9bSJohan Hovold 	u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
202715ee89c3SJohan Hovold 	u8 *buf;
202840c24f28SJohan Hovold 	int device_type;
202940c24f28SJohan Hovold 
203040c24f28SJohan Hovold 	if (product == MOSCHIP_DEVICE_ID_7810 ||
203140c24f28SJohan Hovold 		product == MOSCHIP_DEVICE_ID_7820) {
203240c24f28SJohan Hovold 		device_type = product;
203340c24f28SJohan Hovold 		goto out;
203440c24f28SJohan Hovold 	}
20350eafe4deSDonald 
203615ee89c3SJohan Hovold 	buf = kzalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
203740c24f28SJohan Hovold 	if (!buf)
203840c24f28SJohan Hovold 		return -ENOMEM;
203940c24f28SJohan Hovold 
20400eafe4deSDonald 	usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
204115ee89c3SJohan Hovold 			MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
20420eafe4deSDonald 			VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
20430eafe4deSDonald 
20440eafe4deSDonald 	/* For a MCS7840 device GPIO0 must be set to 1 */
204540c24f28SJohan Hovold 	if (buf[0] & 0x01)
20460eafe4deSDonald 		device_type = MOSCHIP_DEVICE_ID_7840;
20470eafe4deSDonald 	else if (mos7810_check(serial))
20480eafe4deSDonald 		device_type = MOSCHIP_DEVICE_ID_7810;
20490eafe4deSDonald 	else
20500eafe4deSDonald 		device_type = MOSCHIP_DEVICE_ID_7820;
205140c24f28SJohan Hovold 
205240c24f28SJohan Hovold 	kfree(buf);
205340c24f28SJohan Hovold out:
2054683a0e4dSJohan Hovold 	usb_set_serial_data(serial, (void *)(unsigned long)device_type);
205540c24f28SJohan Hovold 
205640c24f28SJohan Hovold 	return 0;
20570eafe4deSDonald }
20580eafe4deSDonald 
205907814246SJohan Hovold static int mos7840_calc_num_ports(struct usb_serial *serial,
206007814246SJohan Hovold 					struct usb_serial_endpoints *epds)
206140c24f28SJohan Hovold {
2062683a0e4dSJohan Hovold 	int device_type = (unsigned long)usb_get_serial_data(serial);
206395254020SJohan Hovold 	int num_ports;
206440c24f28SJohan Hovold 
206595254020SJohan Hovold 	num_ports = (device_type >> 4) & 0x000F;
20660eafe4deSDonald 
206795254020SJohan Hovold 	/*
206895254020SJohan Hovold 	 * num_ports is currently never zero as device_type is one of
206995254020SJohan Hovold 	 * MOSCHIP_DEVICE_ID_78{1,2,4}0.
207095254020SJohan Hovold 	 */
207195254020SJohan Hovold 	if (num_ports == 0)
207295254020SJohan Hovold 		return -ENODEV;
20733f542974SPaul B Schroeder 
207495254020SJohan Hovold 	if (epds->num_bulk_in < num_ports || epds->num_bulk_out < num_ports) {
20755c75633eSJohan Hovold 		dev_err(&serial->interface->dev, "missing endpoints\n");
20765c75633eSJohan Hovold 		return -ENODEV;
20775c75633eSJohan Hovold 	}
20785c75633eSJohan Hovold 
207995254020SJohan Hovold 	return num_ports;
20805c75633eSJohan Hovold }
20815c75633eSJohan Hovold 
208280c00750SJohan Hovold static int mos7840_port_probe(struct usb_serial_port *port)
20833f542974SPaul B Schroeder {
208480c00750SJohan Hovold 	struct usb_serial *serial = port->serial;
2085683a0e4dSJohan Hovold 	int device_type = (unsigned long)usb_get_serial_data(serial);
20863f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
208780c00750SJohan Hovold 	int status;
208880c00750SJohan Hovold 	int pnum;
20893f542974SPaul B Schroeder 	__u16 Data;
20903f542974SPaul B Schroeder 
20913f542974SPaul B Schroeder 	/* we set up the pointers to the endpoints in the mos7840_open *
20923f542974SPaul B Schroeder 	 * function, as the structures aren't created yet.             */
20933f542974SPaul B Schroeder 
20941143832eSGreg Kroah-Hartman 	pnum = port->port_number;
209580c00750SJohan Hovold 
2096ae685effSJohan Hovold 	dev_dbg(&port->dev, "mos7840_startup: configuring port %d\n", pnum);
20977ac9da10SBurman Yan 	mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
209810c642d0SJohan Hovold 	if (!mos7840_port)
209980c00750SJohan Hovold 		return -ENOMEM;
21003f542974SPaul B Schroeder 
2101880af9dbSAlan Cox 	/* Initialize all port interrupt end point to port 0 int
2102880af9dbSAlan Cox 	 * endpoint. Our device has only one interrupt end point
2103880af9dbSAlan Cox 	 * common to all port */
21043f542974SPaul B Schroeder 
210580c00750SJohan Hovold 	mos7840_port->port = port;
210680c00750SJohan Hovold 	mos7840_set_port_private(port, mos7840_port);
21070de9a702SOliver Neukum 	spin_lock_init(&mos7840_port->pool_lock);
21083f542974SPaul B Schroeder 
210937768adfSTony Cook 	/* minor is not initialised until later by
211037768adfSTony Cook 	 * usb-serial.c:get_free_serial() and cannot therefore be used
211137768adfSTony Cook 	 * to index device instances */
211280c00750SJohan Hovold 	mos7840_port->port_num = pnum + 1;
2113e5b1e206SGreg Kroah-Hartman 	dev_dbg(&port->dev, "port->minor = %d\n", port->minor);
211480c00750SJohan Hovold 	dev_dbg(&port->dev, "mos7840_port->port_num = %d\n", mos7840_port->port_num);
21153f542974SPaul B Schroeder 
21163f542974SPaul B Schroeder 	if (mos7840_port->port_num == 1) {
21173f542974SPaul B Schroeder 		mos7840_port->SpRegOffset = 0x0;
21183f542974SPaul B Schroeder 		mos7840_port->ControlRegOffset = 0x1;
21193f542974SPaul B Schroeder 		mos7840_port->DcrRegOffset = 0x4;
2120*e8603076SJackyChou 	} else {
2121*e8603076SJackyChou 		u8 phy_num = mos7840_port->port_num;
2122*e8603076SJackyChou 
2123*e8603076SJackyChou 		/* Port 2 in the 2-port case uses registers of port 3 */
2124*e8603076SJackyChou 		if (serial->num_ports == 2)
2125*e8603076SJackyChou 			phy_num = 3;
2126*e8603076SJackyChou 
2127*e8603076SJackyChou 		mos7840_port->SpRegOffset = 0x8 + 2 * (phy_num - 2);
2128*e8603076SJackyChou 		mos7840_port->ControlRegOffset = 0x9 + 2 * (phy_num - 2);
2129*e8603076SJackyChou 		mos7840_port->DcrRegOffset = 0x16 + 3 * (phy_num - 2);
21303f542974SPaul B Schroeder 	}
213180c00750SJohan Hovold 	mos7840_dump_serial_port(port, mos7840_port);
213280c00750SJohan Hovold 	mos7840_set_port_private(port, mos7840_port);
21333f542974SPaul B Schroeder 
2134880af9dbSAlan Cox 	/* enable rx_disable bit in control register */
213580c00750SJohan Hovold 	status = mos7840_get_reg_sync(port,
21363f542974SPaul B Schroeder 			mos7840_port->ControlRegOffset, &Data);
21373f542974SPaul B Schroeder 	if (status < 0) {
213880c00750SJohan Hovold 		dev_dbg(&port->dev, "Reading ControlReg failed status-0x%x\n", status);
2139ae685effSJohan Hovold 		goto out;
21403f542974SPaul B Schroeder 	} else
214180c00750SJohan Hovold 		dev_dbg(&port->dev, "ControlReg Reading success val is %x, status%d\n", Data, status);
2142880af9dbSAlan Cox 	Data |= 0x08;	/* setting driver done bit */
2143880af9dbSAlan Cox 	Data |= 0x04;	/* sp1_bit to have cts change reflect in
2144880af9dbSAlan Cox 			   modem status reg */
21453f542974SPaul B Schroeder 
2146880af9dbSAlan Cox 	/* Data |= 0x20; //rx_disable bit */
214780c00750SJohan Hovold 	status = mos7840_set_reg_sync(port,
21483f542974SPaul B Schroeder 			mos7840_port->ControlRegOffset, Data);
21493f542974SPaul B Schroeder 	if (status < 0) {
215080c00750SJohan Hovold 		dev_dbg(&port->dev, "Writing ControlReg failed(rx_disable) status-0x%x\n", status);
2151ae685effSJohan Hovold 		goto out;
21523f542974SPaul B Schroeder 	} else
215380c00750SJohan Hovold 		dev_dbg(&port->dev, "ControlReg Writing success(rx_disable) status%d\n", status);
21543f542974SPaul B Schroeder 
2155880af9dbSAlan Cox 	/* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2156880af9dbSAlan Cox 	   and 0x24 in DCR3 */
21573f542974SPaul B Schroeder 	Data = 0x01;
215880c00750SJohan Hovold 	status = mos7840_set_reg_sync(port,
2159880af9dbSAlan Cox 			(__u16) (mos7840_port->DcrRegOffset + 0), Data);
21603f542974SPaul B Schroeder 	if (status < 0) {
216180c00750SJohan Hovold 		dev_dbg(&port->dev, "Writing DCR0 failed status-0x%x\n", status);
2162ae685effSJohan Hovold 		goto out;
21633f542974SPaul B Schroeder 	} else
216480c00750SJohan Hovold 		dev_dbg(&port->dev, "DCR0 Writing success status%d\n", status);
21653f542974SPaul B Schroeder 
21663f542974SPaul B Schroeder 	Data = 0x05;
216780c00750SJohan Hovold 	status = mos7840_set_reg_sync(port,
2168880af9dbSAlan Cox 			(__u16) (mos7840_port->DcrRegOffset + 1), Data);
21693f542974SPaul B Schroeder 	if (status < 0) {
217080c00750SJohan Hovold 		dev_dbg(&port->dev, "Writing DCR1 failed status-0x%x\n", status);
2171ae685effSJohan Hovold 		goto out;
21723f542974SPaul B Schroeder 	} else
217380c00750SJohan Hovold 		dev_dbg(&port->dev, "DCR1 Writing success status%d\n", status);
21743f542974SPaul B Schroeder 
21753f542974SPaul B Schroeder 	Data = 0x24;
217680c00750SJohan Hovold 	status = mos7840_set_reg_sync(port,
2177880af9dbSAlan Cox 			(__u16) (mos7840_port->DcrRegOffset + 2), Data);
21783f542974SPaul B Schroeder 	if (status < 0) {
217980c00750SJohan Hovold 		dev_dbg(&port->dev, "Writing DCR2 failed status-0x%x\n", status);
2180ae685effSJohan Hovold 		goto out;
21813f542974SPaul B Schroeder 	} else
218280c00750SJohan Hovold 		dev_dbg(&port->dev, "DCR2 Writing success status%d\n", status);
21833f542974SPaul B Schroeder 
2184880af9dbSAlan Cox 	/* write values in clkstart0x0 and clkmulti 0x20 */
21853f542974SPaul B Schroeder 	Data = 0x0;
2186ae685effSJohan Hovold 	status = mos7840_set_reg_sync(port, CLK_START_VALUE_REGISTER, Data);
21873f542974SPaul B Schroeder 	if (status < 0) {
218880c00750SJohan Hovold 		dev_dbg(&port->dev, "Writing CLK_START_VALUE_REGISTER failed status-0x%x\n", status);
2189ae685effSJohan Hovold 		goto out;
21903f542974SPaul B Schroeder 	} else
219180c00750SJohan Hovold 		dev_dbg(&port->dev, "CLK_START_VALUE_REGISTER Writing success status%d\n", status);
21923f542974SPaul B Schroeder 
21933f542974SPaul B Schroeder 	Data = 0x20;
2194ae685effSJohan Hovold 	status = mos7840_set_reg_sync(port, CLK_MULTI_REGISTER, Data);
21953f542974SPaul B Schroeder 	if (status < 0) {
219680c00750SJohan Hovold 		dev_dbg(&port->dev, "Writing CLK_MULTI_REGISTER failed status-0x%x\n", status);
21970de9a702SOliver Neukum 		goto error;
21983f542974SPaul B Schroeder 	} else
219980c00750SJohan Hovold 		dev_dbg(&port->dev, "CLK_MULTI_REGISTER Writing success status%d\n", status);
22003f542974SPaul B Schroeder 
2201880af9dbSAlan Cox 	/* write value 0x0 to scratchpad register */
22023f542974SPaul B Schroeder 	Data = 0x00;
2203ae685effSJohan Hovold 	status = mos7840_set_uart_reg(port, SCRATCH_PAD_REGISTER, Data);
22043f542974SPaul B Schroeder 	if (status < 0) {
220580c00750SJohan Hovold 		dev_dbg(&port->dev, "Writing SCRATCH_PAD_REGISTER failed status-0x%x\n", status);
2206ae685effSJohan Hovold 		goto out;
22073f542974SPaul B Schroeder 	} else
220880c00750SJohan Hovold 		dev_dbg(&port->dev, "SCRATCH_PAD_REGISTER Writing success status%d\n", status);
22093f542974SPaul B Schroeder 
2210880af9dbSAlan Cox 	/* Zero Length flag register */
2211ae685effSJohan Hovold 	if ((mos7840_port->port_num != 1) && (serial->num_ports == 2)) {
22123f542974SPaul B Schroeder 		Data = 0xff;
221380c00750SJohan Hovold 		status = mos7840_set_reg_sync(port,
22143f542974SPaul B Schroeder 				(__u16) (ZLP_REG1 +
2215880af9dbSAlan Cox 					((__u16)mos7840_port->port_num)), Data);
221680c00750SJohan Hovold 		dev_dbg(&port->dev, "ZLIP offset %x\n",
22179c134a14SGreg Kroah-Hartman 				(__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num)));
22183f542974SPaul B Schroeder 		if (status < 0) {
221980c00750SJohan Hovold 			dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 2, status);
2220ae685effSJohan Hovold 			goto out;
22213f542974SPaul B Schroeder 		} else
222280c00750SJohan Hovold 			dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 2, status);
22233f542974SPaul B Schroeder 	} else {
22243f542974SPaul B Schroeder 		Data = 0xff;
222580c00750SJohan Hovold 		status = mos7840_set_reg_sync(port,
22263f542974SPaul B Schroeder 				(__u16) (ZLP_REG1 +
2227880af9dbSAlan Cox 					((__u16)mos7840_port->port_num) - 0x1), Data);
222880c00750SJohan Hovold 		dev_dbg(&port->dev, "ZLIP offset %x\n",
22299c134a14SGreg Kroah-Hartman 				(__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num) - 0x1));
22303f542974SPaul B Schroeder 		if (status < 0) {
223180c00750SJohan Hovold 			dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 1, status);
2232ae685effSJohan Hovold 			goto out;
22333f542974SPaul B Schroeder 		} else
223480c00750SJohan Hovold 			dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 1, status);
22353f542974SPaul B Schroeder 
22363f542974SPaul B Schroeder 	}
22370de9a702SOliver Neukum 	mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
22383f542974SPaul B Schroeder 	mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
2239880af9dbSAlan Cox 	mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2240880af9dbSAlan Cox 			GFP_KERNEL);
2241880af9dbSAlan Cox 	if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2242880af9dbSAlan Cox 			!mos7840_port->dr) {
22430de9a702SOliver Neukum 		status = -ENOMEM;
22440de9a702SOliver Neukum 		goto error;
22450de9a702SOliver Neukum 	}
22460eafe4deSDonald 
22470eafe4deSDonald 	mos7840_port->has_led = false;
22480eafe4deSDonald 
22490eafe4deSDonald 	/* Initialize LED timers */
22500eafe4deSDonald 	if (device_type == MOSCHIP_DEVICE_ID_7810) {
22510eafe4deSDonald 		mos7840_port->has_led = true;
22520eafe4deSDonald 
225305cf0decSJohan Hovold 		mos7840_port->led_urb = usb_alloc_urb(0, GFP_KERNEL);
225405cf0decSJohan Hovold 		mos7840_port->led_dr = kmalloc(sizeof(*mos7840_port->led_dr),
225505cf0decSJohan Hovold 								GFP_KERNEL);
225605cf0decSJohan Hovold 		if (!mos7840_port->led_urb || !mos7840_port->led_dr) {
225705cf0decSJohan Hovold 			status = -ENOMEM;
225805cf0decSJohan Hovold 			goto error;
225905cf0decSJohan Hovold 		}
226005cf0decSJohan Hovold 
2261e99e88a9SKees Cook 		timer_setup(&mos7840_port->led_timer1, mos7840_led_off, 0);
22620eafe4deSDonald 		mos7840_port->led_timer1.expires =
22630eafe4deSDonald 			jiffies + msecs_to_jiffies(LED_ON_MS);
2264e99e88a9SKees Cook 		timer_setup(&mos7840_port->led_timer2, mos7840_led_flag_off,
2265e99e88a9SKees Cook 			    0);
22660eafe4deSDonald 		mos7840_port->led_timer2.expires =
22670eafe4deSDonald 			jiffies + msecs_to_jiffies(LED_OFF_MS);
22680eafe4deSDonald 
22690eafe4deSDonald 		/* Turn off LED */
2270ae685effSJohan Hovold 		mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
22710eafe4deSDonald 	}
2272ae685effSJohan Hovold out:
227380c00750SJohan Hovold 	if (pnum == serial->num_ports - 1) {
2274880af9dbSAlan Cox 		/* Zero Length flag enable */
22753f542974SPaul B Schroeder 		Data = 0x0f;
22763f542974SPaul B Schroeder 		status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
22773f542974SPaul B Schroeder 		if (status < 0) {
227880c00750SJohan Hovold 			dev_dbg(&port->dev, "Writing ZLP_REG5 failed status-0x%x\n", status);
22797ced46c3SRoel Kluin 			goto error;
22803f542974SPaul B Schroeder 		} else
228180c00750SJohan Hovold 			dev_dbg(&port->dev, "ZLP_REG5 Writing success status%d\n", status);
22823f542974SPaul B Schroeder 
22833f542974SPaul B Schroeder 		/* setting configuration feature to one */
22843f542974SPaul B Schroeder 		usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
228580c00750SJohan Hovold 				0x03, 0x00, 0x01, 0x00, NULL, 0x00,
228680c00750SJohan Hovold 				MOS_WDR_TIMEOUT);
228780c00750SJohan Hovold 	}
22883f542974SPaul B Schroeder 	return 0;
22890de9a702SOliver Neukum error:
229005cf0decSJohan Hovold 	kfree(mos7840_port->led_dr);
229105cf0decSJohan Hovold 	usb_free_urb(mos7840_port->led_urb);
22920de9a702SOliver Neukum 	kfree(mos7840_port->dr);
22930de9a702SOliver Neukum 	kfree(mos7840_port->ctrl_buf);
22940de9a702SOliver Neukum 	usb_free_urb(mos7840_port->control_urb);
22950de9a702SOliver Neukum 	kfree(mos7840_port);
229680c00750SJohan Hovold 
22970de9a702SOliver Neukum 	return status;
22983f542974SPaul B Schroeder }
22993f542974SPaul B Schroeder 
230080c00750SJohan Hovold static int mos7840_port_remove(struct usb_serial_port *port)
23013f542974SPaul B Schroeder {
23023f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
23033f542974SPaul B Schroeder 
230480c00750SJohan Hovold 	mos7840_port = mos7840_get_port_private(port);
23053f542974SPaul B Schroeder 
23060eafe4deSDonald 	if (mos7840_port->has_led) {
23070eafe4deSDonald 		/* Turn off LED */
230880c00750SJohan Hovold 		mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
23090eafe4deSDonald 
23100eafe4deSDonald 		del_timer_sync(&mos7840_port->led_timer1);
23110eafe4deSDonald 		del_timer_sync(&mos7840_port->led_timer2);
231205cf0decSJohan Hovold 
231305cf0decSJohan Hovold 		usb_kill_urb(mos7840_port->led_urb);
231405cf0decSJohan Hovold 		usb_free_urb(mos7840_port->led_urb);
231505cf0decSJohan Hovold 		kfree(mos7840_port->led_dr);
23160eafe4deSDonald 	}
231780c00750SJohan Hovold 	usb_kill_urb(mos7840_port->control_urb);
231865a4cdbbSJohan Hovold 	usb_free_urb(mos7840_port->control_urb);
23190de9a702SOliver Neukum 	kfree(mos7840_port->ctrl_buf);
23200de9a702SOliver Neukum 	kfree(mos7840_port->dr);
23213f542974SPaul B Schroeder 	kfree(mos7840_port);
232280c00750SJohan Hovold 
232380c00750SJohan Hovold 	return 0;
23243f542974SPaul B Schroeder }
23253f542974SPaul B Schroeder 
23263f542974SPaul B Schroeder static struct usb_serial_driver moschip7840_4port_device = {
23273f542974SPaul B Schroeder 	.driver = {
23283f542974SPaul B Schroeder 		   .owner = THIS_MODULE,
23293f542974SPaul B Schroeder 		   .name = "mos7840",
23303f542974SPaul B Schroeder 		   },
23313f542974SPaul B Schroeder 	.description = DRIVER_DESC,
233268e24113SGreg Kroah-Hartman 	.id_table = id_table,
233395254020SJohan Hovold 	.num_interrupt_in = 1,
23343f542974SPaul B Schroeder 	.open = mos7840_open,
23353f542974SPaul B Schroeder 	.close = mos7840_close,
23363f542974SPaul B Schroeder 	.write = mos7840_write,
23373f542974SPaul B Schroeder 	.write_room = mos7840_write_room,
23383f542974SPaul B Schroeder 	.chars_in_buffer = mos7840_chars_in_buffer,
23393f542974SPaul B Schroeder 	.throttle = mos7840_throttle,
23403f542974SPaul B Schroeder 	.unthrottle = mos7840_unthrottle,
23413f542974SPaul B Schroeder 	.calc_num_ports = mos7840_calc_num_ports,
234240c24f28SJohan Hovold 	.probe = mos7840_probe,
23433f542974SPaul B Schroeder 	.ioctl = mos7840_ioctl,
2344b27ef409SAl Viro 	.get_serial = mos7840_get_serial_info,
23453f542974SPaul B Schroeder 	.set_termios = mos7840_set_termios,
23463f542974SPaul B Schroeder 	.break_ctl = mos7840_break,
23473f542974SPaul B Schroeder 	.tiocmget = mos7840_tiocmget,
23483f542974SPaul B Schroeder 	.tiocmset = mos7840_tiocmset,
23490c613371SJohan Hovold 	.tiocmiwait = usb_serial_generic_tiocmiwait,
23508c1a07ffSJohan Hovold 	.get_icount = usb_serial_generic_get_icount,
235180c00750SJohan Hovold 	.port_probe = mos7840_port_probe,
235280c00750SJohan Hovold 	.port_remove = mos7840_port_remove,
23533f542974SPaul B Schroeder 	.read_bulk_callback = mos7840_bulk_in_callback,
23543f542974SPaul B Schroeder 	.read_int_callback = mos7840_interrupt_callback,
23553f542974SPaul B Schroeder };
23563f542974SPaul B Schroeder 
23574d2a7affSAlan Stern static struct usb_serial_driver * const serial_drivers[] = {
23584d2a7affSAlan Stern 	&moschip7840_4port_device, NULL
23594d2a7affSAlan Stern };
23604d2a7affSAlan Stern 
236168e24113SGreg Kroah-Hartman module_usb_serial_driver(serial_drivers, id_table);
23623f542974SPaul B Schroeder 
23633f542974SPaul B Schroeder MODULE_DESCRIPTION(DRIVER_DESC);
23643f542974SPaul B Schroeder MODULE_LICENSE("GPL");
2365