xref: /openbmc/linux/drivers/usb/serial/mos7840.c (revision 84fe6e799deaf14e2c7a941e805cd93d83f90927)
13f542974SPaul B Schroeder /*
23f542974SPaul B Schroeder  * This program is free software; you can redistribute it and/or modify
33f542974SPaul B Schroeder  * it under the terms of the GNU General Public License as published by
43f542974SPaul B Schroeder  * the Free Software Foundation; either version 2 of the License, or
53f542974SPaul B Schroeder  * (at your option) any later version.
63f542974SPaul B Schroeder  *
73f542974SPaul B Schroeder  * This program is distributed in the hope that it will be useful,
83f542974SPaul B Schroeder  * but WITHOUT ANY WARRANTY; without even the implied warranty of
93f542974SPaul B Schroeder  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
103f542974SPaul B Schroeder  * GNU General Public License for more details.
113f542974SPaul B Schroeder  *
123f542974SPaul B Schroeder  * You should have received a copy of the GNU General Public License
133f542974SPaul B Schroeder  * along with this program; if not, write to the Free Software
143f542974SPaul B Schroeder  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
153f542974SPaul B Schroeder  *
163f542974SPaul B Schroeder  * Clean ups from Moschip version and a few ioctl implementations by:
173f542974SPaul B Schroeder  *	Paul B Schroeder <pschroeder "at" uplogix "dot" com>
183f542974SPaul B Schroeder  *
193f542974SPaul B Schroeder  * Originally based on drivers/usb/serial/io_edgeport.c which is:
203f542974SPaul B Schroeder  *      Copyright (C) 2000 Inside Out Networks, All rights reserved.
213f542974SPaul B Schroeder  *      Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
223f542974SPaul B Schroeder  *
233f542974SPaul B Schroeder  */
243f542974SPaul B Schroeder 
253f542974SPaul B Schroeder #include <linux/kernel.h>
263f542974SPaul B Schroeder #include <linux/errno.h>
273f542974SPaul B Schroeder #include <linux/init.h>
283f542974SPaul B Schroeder #include <linux/slab.h>
293f542974SPaul B Schroeder #include <linux/tty.h>
303f542974SPaul B Schroeder #include <linux/tty_driver.h>
313f542974SPaul B Schroeder #include <linux/tty_flip.h>
323f542974SPaul B Schroeder #include <linux/module.h>
333f542974SPaul B Schroeder #include <linux/serial.h>
343f542974SPaul B Schroeder #include <linux/usb.h>
353f542974SPaul B Schroeder #include <linux/usb/serial.h>
36880af9dbSAlan Cox #include <linux/uaccess.h>
373f542974SPaul B Schroeder 
383f542974SPaul B Schroeder /*
393f542974SPaul B Schroeder  * Version Information
403f542974SPaul B Schroeder  */
4137768adfSTony Cook #define DRIVER_VERSION "1.3.2"
423f542974SPaul B Schroeder #define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
433f542974SPaul B Schroeder 
443f542974SPaul B Schroeder /*
453f542974SPaul B Schroeder  * 16C50 UART register defines
463f542974SPaul B Schroeder  */
473f542974SPaul B Schroeder 
483f542974SPaul B Schroeder #define LCR_BITS_5             0x00	/* 5 bits/char */
493f542974SPaul B Schroeder #define LCR_BITS_6             0x01	/* 6 bits/char */
503f542974SPaul B Schroeder #define LCR_BITS_7             0x02	/* 7 bits/char */
513f542974SPaul B Schroeder #define LCR_BITS_8             0x03	/* 8 bits/char */
523f542974SPaul B Schroeder #define LCR_BITS_MASK          0x03	/* Mask for bits/char field */
533f542974SPaul B Schroeder 
543f542974SPaul B Schroeder #define LCR_STOP_1             0x00	/* 1 stop bit */
553f542974SPaul B Schroeder #define LCR_STOP_1_5           0x04	/* 1.5 stop bits (if 5   bits/char) */
563f542974SPaul B Schroeder #define LCR_STOP_2             0x04	/* 2 stop bits   (if 6-8 bits/char) */
573f542974SPaul B Schroeder #define LCR_STOP_MASK          0x04	/* Mask for stop bits field */
583f542974SPaul B Schroeder 
593f542974SPaul B Schroeder #define LCR_PAR_NONE           0x00	/* No parity */
603f542974SPaul B Schroeder #define LCR_PAR_ODD            0x08	/* Odd parity */
613f542974SPaul B Schroeder #define LCR_PAR_EVEN           0x18	/* Even parity */
623f542974SPaul B Schroeder #define LCR_PAR_MARK           0x28	/* Force parity bit to 1 */
633f542974SPaul B Schroeder #define LCR_PAR_SPACE          0x38	/* Force parity bit to 0 */
643f542974SPaul B Schroeder #define LCR_PAR_MASK           0x38	/* Mask for parity field */
653f542974SPaul B Schroeder 
663f542974SPaul B Schroeder #define LCR_SET_BREAK          0x40	/* Set Break condition */
673f542974SPaul B Schroeder #define LCR_DL_ENABLE          0x80	/* Enable access to divisor latch */
683f542974SPaul B Schroeder 
693f542974SPaul B Schroeder #define MCR_DTR                0x01	/* Assert DTR */
703f542974SPaul B Schroeder #define MCR_RTS                0x02	/* Assert RTS */
713f542974SPaul B Schroeder #define MCR_OUT1               0x04	/* Loopback only: Sets state of RI */
723f542974SPaul B Schroeder #define MCR_MASTER_IE          0x08	/* Enable interrupt outputs */
733f542974SPaul B Schroeder #define MCR_LOOPBACK           0x10	/* Set internal (digital) loopback mode */
743f542974SPaul B Schroeder #define MCR_XON_ANY            0x20	/* Enable any char to exit XOFF mode */
753f542974SPaul B Schroeder 
763f542974SPaul B Schroeder #define MOS7840_MSR_CTS        0x10	/* Current state of CTS */
773f542974SPaul B Schroeder #define MOS7840_MSR_DSR        0x20	/* Current state of DSR */
783f542974SPaul B Schroeder #define MOS7840_MSR_RI         0x40	/* Current state of RI */
793f542974SPaul B Schroeder #define MOS7840_MSR_CD         0x80	/* Current state of CD */
803f542974SPaul B Schroeder 
813f542974SPaul B Schroeder /*
823f542974SPaul B Schroeder  * Defines used for sending commands to port
833f542974SPaul B Schroeder  */
843f542974SPaul B Schroeder 
853f542974SPaul B Schroeder #define WAIT_FOR_EVER   (HZ * 0)	/* timeout urb is wait for ever */
863f542974SPaul B Schroeder #define MOS_WDR_TIMEOUT (HZ * 5)	/* default urb timeout */
873f542974SPaul B Schroeder 
883f542974SPaul B Schroeder #define MOS_PORT1       0x0200
893f542974SPaul B Schroeder #define MOS_PORT2       0x0300
903f542974SPaul B Schroeder #define MOS_VENREG      0x0000
913f542974SPaul B Schroeder #define MOS_MAX_PORT	0x02
923f542974SPaul B Schroeder #define MOS_WRITE       0x0E
933f542974SPaul B Schroeder #define MOS_READ        0x0D
943f542974SPaul B Schroeder 
953f542974SPaul B Schroeder /* Requests */
963f542974SPaul B Schroeder #define MCS_RD_RTYPE    0xC0
973f542974SPaul B Schroeder #define MCS_WR_RTYPE    0x40
983f542974SPaul B Schroeder #define MCS_RDREQ       0x0D
993f542974SPaul B Schroeder #define MCS_WRREQ       0x0E
1003f542974SPaul B Schroeder #define MCS_CTRL_TIMEOUT        500
1013f542974SPaul B Schroeder #define VENDOR_READ_LENGTH      (0x01)
1023f542974SPaul B Schroeder 
1033f542974SPaul B Schroeder #define MAX_NAME_LEN    64
1043f542974SPaul B Schroeder 
105880af9dbSAlan Cox #define ZLP_REG1  0x3A		/* Zero_Flag_Reg1    58 */
106880af9dbSAlan Cox #define ZLP_REG5  0x3E		/* Zero_Flag_Reg5    62 */
1073f542974SPaul B Schroeder 
1083f542974SPaul B Schroeder /* For higher baud Rates use TIOCEXBAUD */
1093f542974SPaul B Schroeder #define TIOCEXBAUD     0x5462
1103f542974SPaul B Schroeder 
1113f542974SPaul B Schroeder /* vendor id and device id defines */
1123f542974SPaul B Schroeder 
11311e1abb4SDavid Ludlow /* The native mos7840/7820 component */
1143f542974SPaul B Schroeder #define USB_VENDOR_ID_MOSCHIP           0x9710
1153f542974SPaul B Schroeder #define MOSCHIP_DEVICE_ID_7840          0x7840
1163f542974SPaul B Schroeder #define MOSCHIP_DEVICE_ID_7820          0x7820
11711e1abb4SDavid Ludlow /* The native component can have its vendor/device id's overridden
11811e1abb4SDavid Ludlow  * in vendor-specific implementations.  Such devices can be handled
11911e1abb4SDavid Ludlow  * by making a change here, in moschip_port_id_table, and in
12011e1abb4SDavid Ludlow  * moschip_id_table_combined
12111e1abb4SDavid Ludlow  */
12211e1abb4SDavid Ludlow #define USB_VENDOR_ID_BANDB             0x0856
12311e1abb4SDavid Ludlow #define BANDB_DEVICE_ID_USOPTL4_4       0xAC44
12411e1abb4SDavid Ludlow #define BANDB_DEVICE_ID_USOPTL4_2       0xAC42
1253f542974SPaul B Schroeder 
126e9b8cffaSTony Cook /* This driver also supports the ATEN UC2324 device since it is mos7840 based
127e9b8cffaSTony Cook  *  - if I knew the device id it would also support the ATEN UC2322 */
128e9b8cffaSTony Cook #define USB_VENDOR_ID_ATENINTL		0x0557
129e9b8cffaSTony Cook #define ATENINTL_DEVICE_ID_UC2324	0x2011
130e9b8cffaSTony Cook 
13111e1abb4SDavid Ludlow /* Interrupt Routine Defines    */
1323f542974SPaul B Schroeder 
1333f542974SPaul B Schroeder #define SERIAL_IIR_RLS      0x06
1343f542974SPaul B Schroeder #define SERIAL_IIR_MS       0x00
1353f542974SPaul B Schroeder 
1363f542974SPaul B Schroeder /*
1373f542974SPaul B Schroeder  *  Emulation of the bit mask on the LINE STATUS REGISTER.
1383f542974SPaul B Schroeder  */
1393f542974SPaul B Schroeder #define SERIAL_LSR_DR       0x0001
1403f542974SPaul B Schroeder #define SERIAL_LSR_OE       0x0002
1413f542974SPaul B Schroeder #define SERIAL_LSR_PE       0x0004
1423f542974SPaul B Schroeder #define SERIAL_LSR_FE       0x0008
1433f542974SPaul B Schroeder #define SERIAL_LSR_BI       0x0010
1443f542974SPaul B Schroeder 
1453f542974SPaul B Schroeder #define MOS_MSR_DELTA_CTS   0x10
1463f542974SPaul B Schroeder #define MOS_MSR_DELTA_DSR   0x20
1473f542974SPaul B Schroeder #define MOS_MSR_DELTA_RI    0x40
1483f542974SPaul B Schroeder #define MOS_MSR_DELTA_CD    0x80
1493f542974SPaul B Schroeder 
150880af9dbSAlan Cox /* Serial Port register Address */
1513f542974SPaul B Schroeder #define INTERRUPT_ENABLE_REGISTER  ((__u16)(0x01))
1523f542974SPaul B Schroeder #define FIFO_CONTROL_REGISTER      ((__u16)(0x02))
1533f542974SPaul B Schroeder #define LINE_CONTROL_REGISTER      ((__u16)(0x03))
1543f542974SPaul B Schroeder #define MODEM_CONTROL_REGISTER     ((__u16)(0x04))
1553f542974SPaul B Schroeder #define LINE_STATUS_REGISTER       ((__u16)(0x05))
1563f542974SPaul B Schroeder #define MODEM_STATUS_REGISTER      ((__u16)(0x06))
1573f542974SPaul B Schroeder #define SCRATCH_PAD_REGISTER       ((__u16)(0x07))
1583f542974SPaul B Schroeder #define DIVISOR_LATCH_LSB          ((__u16)(0x00))
1593f542974SPaul B Schroeder #define DIVISOR_LATCH_MSB          ((__u16)(0x01))
1603f542974SPaul B Schroeder 
1613f542974SPaul B Schroeder #define CLK_MULTI_REGISTER         ((__u16)(0x02))
1623f542974SPaul B Schroeder #define CLK_START_VALUE_REGISTER   ((__u16)(0x03))
1633f542974SPaul B Schroeder 
1643f542974SPaul B Schroeder #define SERIAL_LCR_DLAB            ((__u16)(0x0080))
1653f542974SPaul B Schroeder 
1663f542974SPaul B Schroeder /*
1673f542974SPaul B Schroeder  * URB POOL related defines
1683f542974SPaul B Schroeder  */
1693f542974SPaul B Schroeder #define NUM_URBS                        16	/* URB Count */
1703f542974SPaul B Schroeder #define URB_TRANSFER_BUFFER_SIZE        32	/* URB Size  */
1713f542974SPaul B Schroeder 
1723f542974SPaul B Schroeder 
1733f542974SPaul B Schroeder static struct usb_device_id moschip_port_id_table[] = {
1743f542974SPaul B Schroeder 	{USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
1753f542974SPaul B Schroeder 	{USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
17611e1abb4SDavid Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
17711e1abb4SDavid Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
178e9b8cffaSTony Cook 	{USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
1793f542974SPaul B Schroeder 	{}			/* terminating entry */
1803f542974SPaul B Schroeder };
1813f542974SPaul B Schroeder 
1823f542974SPaul B Schroeder static __devinitdata struct usb_device_id moschip_id_table_combined[] = {
1833f542974SPaul B Schroeder 	{USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
1843f542974SPaul B Schroeder 	{USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
18511e1abb4SDavid Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
18611e1abb4SDavid Ludlow 	{USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
187e9b8cffaSTony Cook 	{USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
1883f542974SPaul B Schroeder 	{}			/* terminating entry */
1893f542974SPaul B Schroeder };
1903f542974SPaul B Schroeder 
1913f542974SPaul B Schroeder MODULE_DEVICE_TABLE(usb, moschip_id_table_combined);
1923f542974SPaul B Schroeder 
1933f542974SPaul B Schroeder /* This structure holds all of the local port information */
1943f542974SPaul B Schroeder 
1953f542974SPaul B Schroeder struct moschip_port {
1963f542974SPaul B Schroeder 	int port_num;		/*Actual port number in the device(1,2,etc) */
1973f542974SPaul B Schroeder 	struct urb *write_urb;	/* write URB for this port */
1983f542974SPaul B Schroeder 	struct urb *read_urb;	/* read URB for this port */
1990de9a702SOliver Neukum 	struct urb *int_urb;
2003f542974SPaul B Schroeder 	__u8 shadowLCR;		/* last LCR value received */
2013f542974SPaul B Schroeder 	__u8 shadowMCR;		/* last MCR value received */
2023f542974SPaul B Schroeder 	char open;
2030de9a702SOliver Neukum 	char open_ports;
2040de9a702SOliver Neukum 	char zombie;
2053f542974SPaul B Schroeder 	wait_queue_head_t wait_chase;	/* for handling sleeping while waiting for chase to finish */
2063f542974SPaul B Schroeder 	wait_queue_head_t delta_msr_wait;	/* for handling sleeping while waiting for msr change to happen */
2073f542974SPaul B Schroeder 	int delta_msr_cond;
2083f542974SPaul B Schroeder 	struct async_icount icount;
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 };
2263f542974SPaul B Schroeder 
2273f542974SPaul B Schroeder 
2283f542974SPaul B Schroeder static int debug;
2293f542974SPaul B Schroeder 
2303f542974SPaul B Schroeder /*
2313f542974SPaul B Schroeder  * mos7840_set_reg_sync
2323f542974SPaul B Schroeder  * 	To set the Control register by calling usb_fill_control_urb function
2333f542974SPaul B Schroeder  *	by passing usb_sndctrlpipe function as parameter.
2343f542974SPaul B Schroeder  */
2353f542974SPaul B Schroeder 
2363f542974SPaul B Schroeder static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
2373f542974SPaul B Schroeder 				__u16 val)
2383f542974SPaul B Schroeder {
2393f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
2403f542974SPaul B Schroeder 	val = val & 0x00ff;
241*84fe6e79STony Cook 	dbg("mos7840_set_reg_sync offset is %x, value %x", reg, val);
2423f542974SPaul B Schroeder 
2433f542974SPaul B Schroeder 	return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
2443f542974SPaul B Schroeder 			       MCS_WR_RTYPE, val, reg, NULL, 0,
2453f542974SPaul B Schroeder 			       MOS_WDR_TIMEOUT);
2463f542974SPaul B Schroeder }
2473f542974SPaul B Schroeder 
2483f542974SPaul B Schroeder /*
2493f542974SPaul B Schroeder  * mos7840_get_reg_sync
2503f542974SPaul B Schroeder  * 	To set the Uart register by calling usb_fill_control_urb function by
2513f542974SPaul B Schroeder  *	passing usb_rcvctrlpipe function as parameter.
2523f542974SPaul B Schroeder  */
2533f542974SPaul B Schroeder 
2543f542974SPaul B Schroeder static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
2553f542974SPaul B Schroeder 				__u16 *val)
2563f542974SPaul B Schroeder {
2573f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
2583f542974SPaul B Schroeder 	int ret = 0;
2593f542974SPaul B Schroeder 
2603f542974SPaul B Schroeder 	ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
2613f542974SPaul B Schroeder 			      MCS_RD_RTYPE, 0, reg, val, VENDOR_READ_LENGTH,
2623f542974SPaul B Schroeder 			      MOS_WDR_TIMEOUT);
263*84fe6e79STony Cook 	dbg("mos7840_get_reg_sync offset is %x, return val %x", reg, *val);
2643f542974SPaul B Schroeder 	*val = (*val) & 0x00ff;
2653f542974SPaul B Schroeder 	return ret;
2663f542974SPaul B Schroeder }
2673f542974SPaul B Schroeder 
2683f542974SPaul B Schroeder /*
2693f542974SPaul B Schroeder  * mos7840_set_uart_reg
2703f542974SPaul B Schroeder  *	To set the Uart register by calling usb_fill_control_urb function by
2713f542974SPaul B Schroeder  *	passing usb_sndctrlpipe function as parameter.
2723f542974SPaul B Schroeder  */
2733f542974SPaul B Schroeder 
2743f542974SPaul B Schroeder static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
2753f542974SPaul B Schroeder 				__u16 val)
2763f542974SPaul B Schroeder {
2773f542974SPaul B Schroeder 
2783f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
2793f542974SPaul B Schroeder 	val = val & 0x00ff;
280880af9dbSAlan Cox 	/* For the UART control registers, the application number need
281880af9dbSAlan Cox 	   to be Or'ed */
2820de9a702SOliver Neukum 	if (port->serial->num_ports == 4) {
283880af9dbSAlan Cox 		val |= (((__u16) port->number -
284880af9dbSAlan Cox 				(__u16) (port->serial->minor)) + 1) << 8;
285*84fe6e79STony Cook 		dbg("mos7840_set_uart_reg application number is %x", val);
2863f542974SPaul B Schroeder 	} else {
2873f542974SPaul B Schroeder 		if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
288880af9dbSAlan Cox 			val |= (((__u16) port->number -
2893f542974SPaul B Schroeder 			      (__u16) (port->serial->minor)) + 1) << 8;
290*84fe6e79STony Cook 			dbg("mos7840_set_uart_reg application number is %x",
2913f542974SPaul B Schroeder 			    val);
2923f542974SPaul B Schroeder 		} else {
2933f542974SPaul B Schroeder 			val |=
2943f542974SPaul B Schroeder 			    (((__u16) port->number -
2953f542974SPaul B Schroeder 			      (__u16) (port->serial->minor)) + 2) << 8;
296*84fe6e79STony Cook 			dbg("mos7840_set_uart_reg application number is %x",
2973f542974SPaul B Schroeder 			    val);
2983f542974SPaul B Schroeder 		}
2993f542974SPaul B Schroeder 	}
3003f542974SPaul B Schroeder 	return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
3013f542974SPaul B Schroeder 			       MCS_WR_RTYPE, val, reg, NULL, 0,
3023f542974SPaul B Schroeder 			       MOS_WDR_TIMEOUT);
3033f542974SPaul B Schroeder 
3043f542974SPaul B Schroeder }
3053f542974SPaul B Schroeder 
3063f542974SPaul B Schroeder /*
3073f542974SPaul B Schroeder  * mos7840_get_uart_reg
3083f542974SPaul B Schroeder  *	To set the Control register by calling usb_fill_control_urb function
3093f542974SPaul B Schroeder  *	by passing usb_rcvctrlpipe function as parameter.
3103f542974SPaul B Schroeder  */
3113f542974SPaul B Schroeder static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
3123f542974SPaul B Schroeder 				__u16 *val)
3133f542974SPaul B Schroeder {
3143f542974SPaul B Schroeder 	struct usb_device *dev = port->serial->dev;
3153f542974SPaul B Schroeder 	int ret = 0;
3163f542974SPaul B Schroeder 	__u16 Wval;
3173f542974SPaul B Schroeder 
318*84fe6e79STony Cook 	/* dbg("application number is %4x",
319880af9dbSAlan Cox 	    (((__u16)port->number - (__u16)(port->serial->minor))+1)<<8); */
3203f542974SPaul B Schroeder 	/* Wval  is same as application number */
3210de9a702SOliver Neukum 	if (port->serial->num_ports == 4) {
3223f542974SPaul B Schroeder 		Wval =
3233f542974SPaul B Schroeder 		    (((__u16) port->number - (__u16) (port->serial->minor)) +
3243f542974SPaul B Schroeder 		     1) << 8;
325*84fe6e79STony Cook 		dbg("mos7840_get_uart_reg application number is %x", Wval);
3263f542974SPaul B Schroeder 	} else {
3273f542974SPaul B Schroeder 		if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
328880af9dbSAlan Cox 			Wval = (((__u16) port->number -
3293f542974SPaul B Schroeder 			      (__u16) (port->serial->minor)) + 1) << 8;
330*84fe6e79STony Cook 			dbg("mos7840_get_uart_reg application number is %x",
3313f542974SPaul B Schroeder 			    Wval);
3323f542974SPaul B Schroeder 		} else {
333880af9dbSAlan Cox 			Wval = (((__u16) port->number -
3343f542974SPaul B Schroeder 			      (__u16) (port->serial->minor)) + 2) << 8;
335*84fe6e79STony Cook 			dbg("mos7840_get_uart_reg application number is %x",
3363f542974SPaul B Schroeder 			    Wval);
3373f542974SPaul B Schroeder 		}
3383f542974SPaul B Schroeder 	}
3393f542974SPaul B Schroeder 	ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
3403f542974SPaul B Schroeder 			      MCS_RD_RTYPE, Wval, reg, val, VENDOR_READ_LENGTH,
3413f542974SPaul B Schroeder 			      MOS_WDR_TIMEOUT);
3423f542974SPaul B Schroeder 	*val = (*val) & 0x00ff;
3433f542974SPaul B Schroeder 	return ret;
3443f542974SPaul B Schroeder }
3453f542974SPaul B Schroeder 
3463f542974SPaul B Schroeder static void mos7840_dump_serial_port(struct moschip_port *mos7840_port)
3473f542974SPaul B Schroeder {
3483f542974SPaul B Schroeder 
349*84fe6e79STony Cook 	dbg("***************************************");
350*84fe6e79STony Cook 	dbg("SpRegOffset is %2x", mos7840_port->SpRegOffset);
351*84fe6e79STony Cook 	dbg("ControlRegOffset is %2x", mos7840_port->ControlRegOffset);
352*84fe6e79STony Cook 	dbg("DCRRegOffset is %2x", mos7840_port->DcrRegOffset);
353*84fe6e79STony Cook 	dbg("***************************************");
3543f542974SPaul B Schroeder 
3553f542974SPaul B Schroeder }
3563f542974SPaul B Schroeder 
3573f542974SPaul B Schroeder /************************************************************************/
3583f542974SPaul B Schroeder /************************************************************************/
3593f542974SPaul B Schroeder /*             I N T E R F A C E   F U N C T I O N S			*/
3603f542974SPaul B Schroeder /*             I N T E R F A C E   F U N C T I O N S			*/
3613f542974SPaul B Schroeder /************************************************************************/
3623f542974SPaul B Schroeder /************************************************************************/
3633f542974SPaul B Schroeder 
3643f542974SPaul B Schroeder static inline void mos7840_set_port_private(struct usb_serial_port *port,
3653f542974SPaul B Schroeder 					    struct moschip_port *data)
3663f542974SPaul B Schroeder {
3673f542974SPaul B Schroeder 	usb_set_serial_port_data(port, (void *)data);
3683f542974SPaul B Schroeder }
3693f542974SPaul B Schroeder 
3703f542974SPaul B Schroeder static inline struct moschip_port *mos7840_get_port_private(struct
3713f542974SPaul B Schroeder 							    usb_serial_port
3723f542974SPaul B Schroeder 							    *port)
3733f542974SPaul B Schroeder {
3743f542974SPaul B Schroeder 	return (struct moschip_port *)usb_get_serial_port_data(port);
3753f542974SPaul B Schroeder }
3763f542974SPaul B Schroeder 
3770de9a702SOliver Neukum static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
3783f542974SPaul B Schroeder {
3793f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
3803f542974SPaul B Schroeder 	struct async_icount *icount;
3813f542974SPaul B Schroeder 	mos7840_port = port;
3823f542974SPaul B Schroeder 	icount = &mos7840_port->icount;
3833f542974SPaul B Schroeder 	if (new_msr &
3843f542974SPaul B Schroeder 	    (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
3853f542974SPaul B Schroeder 	     MOS_MSR_DELTA_CD)) {
3863f542974SPaul B Schroeder 		icount = &mos7840_port->icount;
3873f542974SPaul B Schroeder 
3883f542974SPaul B Schroeder 		/* update input line counters */
3893f542974SPaul B Schroeder 		if (new_msr & MOS_MSR_DELTA_CTS) {
3903f542974SPaul B Schroeder 			icount->cts++;
3910de9a702SOliver Neukum 			smp_wmb();
3923f542974SPaul B Schroeder 		}
3933f542974SPaul B Schroeder 		if (new_msr & MOS_MSR_DELTA_DSR) {
3943f542974SPaul B Schroeder 			icount->dsr++;
3950de9a702SOliver Neukum 			smp_wmb();
3963f542974SPaul B Schroeder 		}
3973f542974SPaul B Schroeder 		if (new_msr & MOS_MSR_DELTA_CD) {
3983f542974SPaul B Schroeder 			icount->dcd++;
3990de9a702SOliver Neukum 			smp_wmb();
4003f542974SPaul B Schroeder 		}
4013f542974SPaul B Schroeder 		if (new_msr & MOS_MSR_DELTA_RI) {
4023f542974SPaul B Schroeder 			icount->rng++;
4030de9a702SOliver Neukum 			smp_wmb();
4040de9a702SOliver Neukum 		}
4053f542974SPaul B Schroeder 	}
4063f542974SPaul B Schroeder }
4073f542974SPaul B Schroeder 
4080de9a702SOliver Neukum static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
4093f542974SPaul B Schroeder {
4103f542974SPaul B Schroeder 	struct async_icount *icount;
4113f542974SPaul B Schroeder 
412441b62c1SHarvey Harrison 	dbg("%s - %02x", __func__, new_lsr);
4133f542974SPaul B Schroeder 
4143f542974SPaul B Schroeder 	if (new_lsr & SERIAL_LSR_BI) {
415880af9dbSAlan Cox 		/*
416880af9dbSAlan Cox 		 * Parity and Framing errors only count if they
417880af9dbSAlan Cox 		 * occur exclusive of a break being
418880af9dbSAlan Cox 		 * received.
419880af9dbSAlan Cox 		 */
4203f542974SPaul B Schroeder 		new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
4213f542974SPaul B Schroeder 	}
4223f542974SPaul B Schroeder 
4233f542974SPaul B Schroeder 	/* update input line counters */
4243f542974SPaul B Schroeder 	icount = &port->icount;
4253f542974SPaul B Schroeder 	if (new_lsr & SERIAL_LSR_BI) {
4263f542974SPaul B Schroeder 		icount->brk++;
4270de9a702SOliver Neukum 		smp_wmb();
4283f542974SPaul B Schroeder 	}
4293f542974SPaul B Schroeder 	if (new_lsr & SERIAL_LSR_OE) {
4303f542974SPaul B Schroeder 		icount->overrun++;
4310de9a702SOliver Neukum 		smp_wmb();
4323f542974SPaul B Schroeder 	}
4333f542974SPaul B Schroeder 	if (new_lsr & SERIAL_LSR_PE) {
4343f542974SPaul B Schroeder 		icount->parity++;
4350de9a702SOliver Neukum 		smp_wmb();
4363f542974SPaul B Schroeder 	}
4373f542974SPaul B Schroeder 	if (new_lsr & SERIAL_LSR_FE) {
4383f542974SPaul B Schroeder 		icount->frame++;
4390de9a702SOliver Neukum 		smp_wmb();
4403f542974SPaul B Schroeder 	}
4413f542974SPaul B Schroeder }
4423f542974SPaul B Schroeder 
4433f542974SPaul B Schroeder /************************************************************************/
4443f542974SPaul B Schroeder /************************************************************************/
4453f542974SPaul B Schroeder /*            U S B  C A L L B A C K   F U N C T I O N S                */
4463f542974SPaul B Schroeder /*            U S B  C A L L B A C K   F U N C T I O N S                */
4473f542974SPaul B Schroeder /************************************************************************/
4483f542974SPaul B Schroeder /************************************************************************/
4493f542974SPaul B Schroeder 
4507d12e780SDavid Howells static void mos7840_control_callback(struct urb *urb)
4513f542974SPaul B Schroeder {
4523f542974SPaul B Schroeder 	unsigned char *data;
4533f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
4543f542974SPaul B Schroeder 	__u8 regval = 0x0;
4550de9a702SOliver Neukum 	int result = 0;
4560643c724SGreg Kroah-Hartman 	int status = urb->status;
4573f542974SPaul B Schroeder 
458cdc97792SMing Lei 	mos7840_port = urb->context;
4590de9a702SOliver Neukum 
4600643c724SGreg Kroah-Hartman 	switch (status) {
4613f542974SPaul B Schroeder 	case 0:
4623f542974SPaul B Schroeder 		/* success */
4633f542974SPaul B Schroeder 		break;
4643f542974SPaul B Schroeder 	case -ECONNRESET:
4653f542974SPaul B Schroeder 	case -ENOENT:
4663f542974SPaul B Schroeder 	case -ESHUTDOWN:
4673f542974SPaul B Schroeder 		/* this urb is terminated, clean up */
468441b62c1SHarvey Harrison 		dbg("%s - urb shutting down with status: %d", __func__,
4690643c724SGreg Kroah-Hartman 		    status);
4703f542974SPaul B Schroeder 		return;
4713f542974SPaul B Schroeder 	default:
472441b62c1SHarvey Harrison 		dbg("%s - nonzero urb status received: %d", __func__,
4730643c724SGreg Kroah-Hartman 		    status);
4743f542974SPaul B Schroeder 		goto exit;
4753f542974SPaul B Schroeder 	}
4763f542974SPaul B Schroeder 
477*84fe6e79STony Cook 	dbg("%s urb buffer size is %d", __func__, urb->actual_length);
478*84fe6e79STony Cook 	dbg("%s mos7840_port->MsrLsr is %d port %d", __func__,
4793f542974SPaul B Schroeder 	    mos7840_port->MsrLsr, mos7840_port->port_num);
4803f542974SPaul B Schroeder 	data = urb->transfer_buffer;
4813f542974SPaul B Schroeder 	regval = (__u8) data[0];
482*84fe6e79STony Cook 	dbg("%s data is %x", __func__, regval);
4833f542974SPaul B Schroeder 	if (mos7840_port->MsrLsr == 0)
4843f542974SPaul B Schroeder 		mos7840_handle_new_msr(mos7840_port, regval);
4853f542974SPaul B Schroeder 	else if (mos7840_port->MsrLsr == 1)
4863f542974SPaul B Schroeder 		mos7840_handle_new_lsr(mos7840_port, regval);
4873f542974SPaul B Schroeder 
4883f542974SPaul B Schroeder exit:
4890de9a702SOliver Neukum 	spin_lock(&mos7840_port->pool_lock);
4900de9a702SOliver Neukum 	if (!mos7840_port->zombie)
4910de9a702SOliver Neukum 		result = usb_submit_urb(mos7840_port->int_urb, GFP_ATOMIC);
4920de9a702SOliver Neukum 	spin_unlock(&mos7840_port->pool_lock);
4930de9a702SOliver Neukum 	if (result) {
4940de9a702SOliver Neukum 		dev_err(&urb->dev->dev,
4950de9a702SOliver Neukum 			"%s - Error %d submitting interrupt urb\n",
496441b62c1SHarvey Harrison 			__func__, result);
4970de9a702SOliver Neukum 	}
4983f542974SPaul B Schroeder }
4993f542974SPaul B Schroeder 
5003f542974SPaul B Schroeder static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
5013f542974SPaul B Schroeder 			   __u16 *val)
5023f542974SPaul B Schroeder {
5033f542974SPaul B Schroeder 	struct usb_device *dev = mcs->port->serial->dev;
5040de9a702SOliver Neukum 	struct usb_ctrlrequest *dr = mcs->dr;
5050de9a702SOliver Neukum 	unsigned char *buffer = mcs->ctrl_buf;
5060de9a702SOliver Neukum 	int ret;
5073f542974SPaul B Schroeder 
5083f542974SPaul B Schroeder 	dr->bRequestType = MCS_RD_RTYPE;
5093f542974SPaul B Schroeder 	dr->bRequest = MCS_RDREQ;
510880af9dbSAlan Cox 	dr->wValue = cpu_to_le16(Wval);	/* 0 */
5113f542974SPaul B Schroeder 	dr->wIndex = cpu_to_le16(reg);
5123f542974SPaul B Schroeder 	dr->wLength = cpu_to_le16(2);
5133f542974SPaul B Schroeder 
5143f542974SPaul B Schroeder 	usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
5153f542974SPaul B Schroeder 			     (unsigned char *)dr, buffer, 2,
5163f542974SPaul B Schroeder 			     mos7840_control_callback, mcs);
5173f542974SPaul B Schroeder 	mcs->control_urb->transfer_buffer_length = 2;
5183f542974SPaul B Schroeder 	ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
5193f542974SPaul B Schroeder 	return ret;
5203f542974SPaul B Schroeder }
5213f542974SPaul B Schroeder 
5223f542974SPaul B Schroeder /*****************************************************************************
5233f542974SPaul B Schroeder  * mos7840_interrupt_callback
5243f542974SPaul B Schroeder  *	this is the callback function for when we have received data on the
5253f542974SPaul B Schroeder  *	interrupt endpoint.
5263f542974SPaul B Schroeder  *****************************************************************************/
5273f542974SPaul B Schroeder 
5287d12e780SDavid Howells static void mos7840_interrupt_callback(struct urb *urb)
5293f542974SPaul B Schroeder {
5303f542974SPaul B Schroeder 	int result;
5313f542974SPaul B Schroeder 	int length;
5323f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
5333f542974SPaul B Schroeder 	struct usb_serial *serial;
5343f542974SPaul B Schroeder 	__u16 Data;
5353f542974SPaul B Schroeder 	unsigned char *data;
5363f542974SPaul B Schroeder 	__u8 sp[5], st;
5370de9a702SOliver Neukum 	int i, rv = 0;
5380de9a702SOliver Neukum 	__u16 wval, wreg = 0;
5390643c724SGreg Kroah-Hartman 	int status = urb->status;
5403f542974SPaul B Schroeder 
541*84fe6e79STony Cook 	dbg("%s", " : Entering");
5423f542974SPaul B Schroeder 
5430643c724SGreg Kroah-Hartman 	switch (status) {
5443f542974SPaul B Schroeder 	case 0:
5453f542974SPaul B Schroeder 		/* success */
5463f542974SPaul B Schroeder 		break;
5473f542974SPaul B Schroeder 	case -ECONNRESET:
5483f542974SPaul B Schroeder 	case -ENOENT:
5493f542974SPaul B Schroeder 	case -ESHUTDOWN:
5503f542974SPaul B Schroeder 		/* this urb is terminated, clean up */
551441b62c1SHarvey Harrison 		dbg("%s - urb shutting down with status: %d", __func__,
5520643c724SGreg Kroah-Hartman 		    status);
5533f542974SPaul B Schroeder 		return;
5543f542974SPaul B Schroeder 	default:
555441b62c1SHarvey Harrison 		dbg("%s - nonzero urb status received: %d", __func__,
5560643c724SGreg Kroah-Hartman 		    status);
5573f542974SPaul B Schroeder 		goto exit;
5583f542974SPaul B Schroeder 	}
5593f542974SPaul B Schroeder 
5603f542974SPaul B Schroeder 	length = urb->actual_length;
5613f542974SPaul B Schroeder 	data = urb->transfer_buffer;
5623f542974SPaul B Schroeder 
563cdc97792SMing Lei 	serial = urb->context;
5643f542974SPaul B Schroeder 
5653f542974SPaul B Schroeder 	/* Moschip get 5 bytes
5663f542974SPaul B Schroeder 	 * Byte 1 IIR Port 1 (port.number is 0)
5673f542974SPaul B Schroeder 	 * Byte 2 IIR Port 2 (port.number is 1)
5683f542974SPaul B Schroeder 	 * Byte 3 IIR Port 3 (port.number is 2)
5693f542974SPaul B Schroeder 	 * Byte 4 IIR Port 4 (port.number is 3)
5703f542974SPaul B Schroeder 	 * Byte 5 FIFO status for both */
5713f542974SPaul B Schroeder 
5723f542974SPaul B Schroeder 	if (length && length > 5) {
573*84fe6e79STony Cook 		dbg("%s", "Wrong data !!!");
5743f542974SPaul B Schroeder 		return;
5753f542974SPaul B Schroeder 	}
5763f542974SPaul B Schroeder 
5773f542974SPaul B Schroeder 	sp[0] = (__u8) data[0];
5783f542974SPaul B Schroeder 	sp[1] = (__u8) data[1];
5793f542974SPaul B Schroeder 	sp[2] = (__u8) data[2];
5803f542974SPaul B Schroeder 	sp[3] = (__u8) data[3];
5813f542974SPaul B Schroeder 	st = (__u8) data[4];
5823f542974SPaul B Schroeder 
5833f542974SPaul B Schroeder 	for (i = 0; i < serial->num_ports; i++) {
5843f542974SPaul B Schroeder 		mos7840_port = mos7840_get_port_private(serial->port[i]);
5853f542974SPaul B Schroeder 		wval =
5863f542974SPaul B Schroeder 		    (((__u16) serial->port[i]->number -
5873f542974SPaul B Schroeder 		      (__u16) (serial->minor)) + 1) << 8;
5883f542974SPaul B Schroeder 		if (mos7840_port->open) {
5893f542974SPaul B Schroeder 			if (sp[i] & 0x01) {
590*84fe6e79STony Cook 				dbg("SP%d No Interrupt !!!", i);
5913f542974SPaul B Schroeder 			} else {
5923f542974SPaul B Schroeder 				switch (sp[i] & 0x0f) {
5933f542974SPaul B Schroeder 				case SERIAL_IIR_RLS:
5943f542974SPaul B Schroeder 					dbg("Serial Port %d: Receiver status error or ", i);
595*84fe6e79STony Cook 					dbg("address bit detected in 9-bit mode");
5963f542974SPaul B Schroeder 					mos7840_port->MsrLsr = 1;
5970de9a702SOliver Neukum 					wreg = LINE_STATUS_REGISTER;
5983f542974SPaul B Schroeder 					break;
5993f542974SPaul B Schroeder 				case SERIAL_IIR_MS:
600*84fe6e79STony Cook 					dbg("Serial Port %d: Modem status change", i);
6013f542974SPaul B Schroeder 					mos7840_port->MsrLsr = 0;
6020de9a702SOliver Neukum 					wreg = MODEM_STATUS_REGISTER;
6033f542974SPaul B Schroeder 					break;
6043f542974SPaul B Schroeder 				}
6050de9a702SOliver Neukum 				spin_lock(&mos7840_port->pool_lock);
6060de9a702SOliver Neukum 				if (!mos7840_port->zombie) {
6070de9a702SOliver Neukum 					rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
6080de9a702SOliver Neukum 				} else {
6090de9a702SOliver Neukum 					spin_unlock(&mos7840_port->pool_lock);
6100de9a702SOliver Neukum 					return;
6110de9a702SOliver Neukum 				}
6120de9a702SOliver Neukum 				spin_unlock(&mos7840_port->pool_lock);
6133f542974SPaul B Schroeder 			}
6143f542974SPaul B Schroeder 		}
6153f542974SPaul B Schroeder 	}
616880af9dbSAlan Cox 	if (!(rv < 0))
617880af9dbSAlan Cox 		/* the completion handler for the control urb will resubmit */
6180de9a702SOliver Neukum 		return;
6193f542974SPaul B Schroeder exit:
6203f542974SPaul B Schroeder 	result = usb_submit_urb(urb, GFP_ATOMIC);
6213f542974SPaul B Schroeder 	if (result) {
6223f542974SPaul B Schroeder 		dev_err(&urb->dev->dev,
6233f542974SPaul B Schroeder 			"%s - Error %d submitting interrupt urb\n",
624441b62c1SHarvey Harrison 			__func__, result);
6253f542974SPaul B Schroeder 	}
6263f542974SPaul B Schroeder }
6273f542974SPaul B Schroeder 
6283f542974SPaul B Schroeder static int mos7840_port_paranoia_check(struct usb_serial_port *port,
6293f542974SPaul B Schroeder 				       const char *function)
6303f542974SPaul B Schroeder {
6313f542974SPaul B Schroeder 	if (!port) {
6323f542974SPaul B Schroeder 		dbg("%s - port == NULL", function);
6333f542974SPaul B Schroeder 		return -1;
6343f542974SPaul B Schroeder 	}
6353f542974SPaul B Schroeder 	if (!port->serial) {
6363f542974SPaul B Schroeder 		dbg("%s - port->serial == NULL", function);
6373f542974SPaul B Schroeder 		return -1;
6383f542974SPaul B Schroeder 	}
6393f542974SPaul B Schroeder 
6403f542974SPaul B Schroeder 	return 0;
6413f542974SPaul B Schroeder }
6423f542974SPaul B Schroeder 
6433f542974SPaul B Schroeder /* Inline functions to check the sanity of a pointer that is passed to us */
6443f542974SPaul B Schroeder static int mos7840_serial_paranoia_check(struct usb_serial *serial,
6453f542974SPaul B Schroeder 					 const char *function)
6463f542974SPaul B Schroeder {
6473f542974SPaul B Schroeder 	if (!serial) {
6483f542974SPaul B Schroeder 		dbg("%s - serial == NULL", function);
6493f542974SPaul B Schroeder 		return -1;
6503f542974SPaul B Schroeder 	}
6513f542974SPaul B Schroeder 	if (!serial->type) {
6523f542974SPaul B Schroeder 		dbg("%s - serial->type == NULL!", function);
6533f542974SPaul B Schroeder 		return -1;
6543f542974SPaul B Schroeder 	}
6553f542974SPaul B Schroeder 
6563f542974SPaul B Schroeder 	return 0;
6573f542974SPaul B Schroeder }
6583f542974SPaul B Schroeder 
6593f542974SPaul B Schroeder static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
6603f542974SPaul B Schroeder 						 const char *function)
6613f542974SPaul B Schroeder {
6623f542974SPaul B Schroeder 	/* if no port was specified, or it fails a paranoia check */
6633f542974SPaul B Schroeder 	if (!port ||
6643f542974SPaul B Schroeder 	    mos7840_port_paranoia_check(port, function) ||
6653f542974SPaul B Schroeder 	    mos7840_serial_paranoia_check(port->serial, function)) {
666880af9dbSAlan Cox 		/* then say that we don't have a valid usb_serial thing,
667880af9dbSAlan Cox 		 * which will end up genrating -ENODEV return values */
6683f542974SPaul B Schroeder 		return NULL;
6693f542974SPaul B Schroeder 	}
6703f542974SPaul B Schroeder 
6713f542974SPaul B Schroeder 	return port->serial;
6723f542974SPaul B Schroeder }
6733f542974SPaul B Schroeder 
6743f542974SPaul B Schroeder /*****************************************************************************
6753f542974SPaul B Schroeder  * mos7840_bulk_in_callback
6763f542974SPaul B Schroeder  *	this is the callback function for when we have received data on the
6773f542974SPaul B Schroeder  *	bulk in endpoint.
6783f542974SPaul B Schroeder  *****************************************************************************/
6793f542974SPaul B Schroeder 
6807d12e780SDavid Howells static void mos7840_bulk_in_callback(struct urb *urb)
6813f542974SPaul B Schroeder {
6820643c724SGreg Kroah-Hartman 	int retval;
6833f542974SPaul B Schroeder 	unsigned char *data;
6843f542974SPaul B Schroeder 	struct usb_serial *serial;
6853f542974SPaul B Schroeder 	struct usb_serial_port *port;
6863f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
6873f542974SPaul B Schroeder 	struct tty_struct *tty;
6880643c724SGreg Kroah-Hartman 	int status = urb->status;
6893f542974SPaul B Schroeder 
690cdc97792SMing Lei 	mos7840_port = urb->context;
6913f542974SPaul B Schroeder 	if (!mos7840_port) {
692*84fe6e79STony Cook 		dbg("%s", "NULL mos7840_port pointer");
69350de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
69450de36f7SGreg Kroah-Hartman 		return;
69550de36f7SGreg Kroah-Hartman 	}
69650de36f7SGreg Kroah-Hartman 
69750de36f7SGreg Kroah-Hartman 	if (status) {
69850de36f7SGreg Kroah-Hartman 		dbg("nonzero read bulk status received: %d", status);
69950de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7003f542974SPaul B Schroeder 		return;
7013f542974SPaul B Schroeder 	}
7023f542974SPaul B Schroeder 
7033f542974SPaul B Schroeder 	port = (struct usb_serial_port *)mos7840_port->port;
704441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
705*84fe6e79STony Cook 		dbg("%s", "Port Paranoia failed");
70650de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7073f542974SPaul B Schroeder 		return;
7083f542974SPaul B Schroeder 	}
7093f542974SPaul B Schroeder 
710441b62c1SHarvey Harrison 	serial = mos7840_get_usb_serial(port, __func__);
7113f542974SPaul B Schroeder 	if (!serial) {
712*84fe6e79STony Cook 		dbg("%s", "Bad serial pointer");
71350de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7143f542974SPaul B Schroeder 		return;
7153f542974SPaul B Schroeder 	}
7163f542974SPaul B Schroeder 
717*84fe6e79STony Cook 	dbg("%s", "Entering... ");
7183f542974SPaul B Schroeder 
7193f542974SPaul B Schroeder 	data = urb->transfer_buffer;
7203f542974SPaul B Schroeder 
721*84fe6e79STony Cook 	dbg("%s", "Entering ...........");
7223f542974SPaul B Schroeder 
7233f542974SPaul B Schroeder 	if (urb->actual_length) {
7244a90f09bSAlan Cox 		tty = tty_port_tty_get(&mos7840_port->port->port);
7253f542974SPaul B Schroeder 		if (tty) {
7263f542974SPaul B Schroeder 			tty_buffer_request_room(tty, urb->actual_length);
7273f542974SPaul B Schroeder 			tty_insert_flip_string(tty, data, urb->actual_length);
728*84fe6e79STony Cook 			dbg(" %s ", data);
7293f542974SPaul B Schroeder 			tty_flip_buffer_push(tty);
7304a90f09bSAlan Cox 			tty_kref_put(tty);
7313f542974SPaul B Schroeder 		}
7323f542974SPaul B Schroeder 		mos7840_port->icount.rx += urb->actual_length;
7330de9a702SOliver Neukum 		smp_wmb();
734*84fe6e79STony Cook 		dbg("mos7840_port->icount.rx is %d:",
7353f542974SPaul B Schroeder 		    mos7840_port->icount.rx);
7363f542974SPaul B Schroeder 	}
7373f542974SPaul B Schroeder 
7383f542974SPaul B Schroeder 	if (!mos7840_port->read_urb) {
739*84fe6e79STony Cook 		dbg("%s", "URB KILLED !!!");
74050de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7413f542974SPaul B Schroeder 		return;
7423f542974SPaul B Schroeder 	}
7433f542974SPaul B Schroeder 
7440de9a702SOliver Neukum 
7453f542974SPaul B Schroeder 	mos7840_port->read_urb->dev = serial->dev;
7463f542974SPaul B Schroeder 
74750de36f7SGreg Kroah-Hartman 	mos7840_port->read_urb_busy = true;
7480643c724SGreg Kroah-Hartman 	retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
7493f542974SPaul B Schroeder 
7500643c724SGreg Kroah-Hartman 	if (retval) {
75150de36f7SGreg Kroah-Hartman 		dbg("usb_submit_urb(read bulk) failed, retval = %d", retval);
75250de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
7533f542974SPaul B Schroeder 	}
7543f542974SPaul B Schroeder }
7553f542974SPaul B Schroeder 
7563f542974SPaul B Schroeder /*****************************************************************************
7573f542974SPaul B Schroeder  * mos7840_bulk_out_data_callback
758880af9dbSAlan Cox  *	this is the callback function for when we have finished sending
759880af9dbSAlan Cox  *	serial data on the bulk out endpoint.
7603f542974SPaul B Schroeder  *****************************************************************************/
7613f542974SPaul B Schroeder 
7627d12e780SDavid Howells static void mos7840_bulk_out_data_callback(struct urb *urb)
7633f542974SPaul B Schroeder {
7643f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
7653f542974SPaul B Schroeder 	struct tty_struct *tty;
7660643c724SGreg Kroah-Hartman 	int status = urb->status;
7670de9a702SOliver Neukum 	int i;
7680de9a702SOliver Neukum 
769cdc97792SMing Lei 	mos7840_port = urb->context;
7700de9a702SOliver Neukum 	spin_lock(&mos7840_port->pool_lock);
7710de9a702SOliver Neukum 	for (i = 0; i < NUM_URBS; i++) {
7720de9a702SOliver Neukum 		if (urb == mos7840_port->write_urb_pool[i]) {
7730de9a702SOliver Neukum 			mos7840_port->busy[i] = 0;
7740de9a702SOliver Neukum 			break;
7750de9a702SOliver Neukum 		}
7760de9a702SOliver Neukum 	}
7770de9a702SOliver Neukum 	spin_unlock(&mos7840_port->pool_lock);
7780de9a702SOliver Neukum 
7790643c724SGreg Kroah-Hartman 	if (status) {
780*84fe6e79STony Cook 		dbg("nonzero write bulk status received:%d", status);
7813f542974SPaul B Schroeder 		return;
7823f542974SPaul B Schroeder 	}
7833f542974SPaul B Schroeder 
784441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(mos7840_port->port, __func__)) {
785*84fe6e79STony Cook 		dbg("%s", "Port Paranoia failed");
7863f542974SPaul B Schroeder 		return;
7873f542974SPaul B Schroeder 	}
7883f542974SPaul B Schroeder 
789*84fe6e79STony Cook 	dbg("%s", "Entering .........");
7903f542974SPaul B Schroeder 
7914a90f09bSAlan Cox 	tty = tty_port_tty_get(&mos7840_port->port->port);
792b963a844SJiri Slaby 	if (tty && mos7840_port->open)
793b963a844SJiri Slaby 		tty_wakeup(tty);
7944a90f09bSAlan Cox 	tty_kref_put(tty);
7953f542974SPaul B Schroeder 
7963f542974SPaul B Schroeder }
7973f542974SPaul B Schroeder 
7983f542974SPaul B Schroeder /************************************************************************/
7993f542974SPaul 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       */
8003f542974SPaul B Schroeder /************************************************************************/
8013f542974SPaul B Schroeder #ifdef MCSSerialProbe
8023f542974SPaul B Schroeder static int mos7840_serial_probe(struct usb_serial *serial,
8033f542974SPaul B Schroeder 				const struct usb_device_id *id)
8043f542974SPaul B Schroeder {
8053f542974SPaul B Schroeder 
8063f542974SPaul B Schroeder 	/*need to implement the mode_reg reading and updating\
8073f542974SPaul B Schroeder 	   structures usb_serial_ device_type\
8083f542974SPaul B Schroeder 	   (i.e num_ports, num_bulkin,bulkout etc) */
8093f542974SPaul B Schroeder 	/* Also we can update the changes  attach */
8103f542974SPaul B Schroeder 	return 1;
8113f542974SPaul B Schroeder }
8123f542974SPaul B Schroeder #endif
8133f542974SPaul B Schroeder 
8143f542974SPaul B Schroeder /*****************************************************************************
8153f542974SPaul B Schroeder  * mos7840_open
8163f542974SPaul B Schroeder  *	this function is called by the tty driver when a port is opened
8173f542974SPaul B Schroeder  *	If successful, we return 0
8183f542974SPaul B Schroeder  *	Otherwise we return a negative error number.
8193f542974SPaul B Schroeder  *****************************************************************************/
8203f542974SPaul B Schroeder 
82195da310eSAlan Cox static int mos7840_open(struct tty_struct *tty,
82295da310eSAlan Cox 			struct usb_serial_port *port, struct file *filp)
8233f542974SPaul B Schroeder {
8243f542974SPaul B Schroeder 	int response;
8253f542974SPaul B Schroeder 	int j;
8263f542974SPaul B Schroeder 	struct usb_serial *serial;
8273f542974SPaul B Schroeder 	struct urb *urb;
8283f542974SPaul B Schroeder 	__u16 Data;
8293f542974SPaul B Schroeder 	int status;
8303f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
8310de9a702SOliver Neukum 	struct moschip_port *port0;
8323f542974SPaul B Schroeder 
833*84fe6e79STony Cook 	dbg ("%s enter", __func__);
834*84fe6e79STony Cook 
835441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
836*84fe6e79STony Cook 		dbg("%s", "Port Paranoia failed");
8373f542974SPaul B Schroeder 		return -ENODEV;
8383f542974SPaul B Schroeder 	}
8393f542974SPaul B Schroeder 
8403f542974SPaul B Schroeder 	serial = port->serial;
8413f542974SPaul B Schroeder 
842441b62c1SHarvey Harrison 	if (mos7840_serial_paranoia_check(serial, __func__)) {
843*84fe6e79STony Cook 		dbg("%s", "Serial Paranoia failed");
8443f542974SPaul B Schroeder 		return -ENODEV;
8453f542974SPaul B Schroeder 	}
8463f542974SPaul B Schroeder 
8473f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
8480de9a702SOliver Neukum 	port0 = mos7840_get_port_private(serial->port[0]);
8493f542974SPaul B Schroeder 
8500de9a702SOliver Neukum 	if (mos7840_port == NULL || port0 == NULL)
8513f542974SPaul B Schroeder 		return -ENODEV;
8523f542974SPaul B Schroeder 
8533f542974SPaul B Schroeder 	usb_clear_halt(serial->dev, port->write_urb->pipe);
8543f542974SPaul B Schroeder 	usb_clear_halt(serial->dev, port->read_urb->pipe);
8550de9a702SOliver Neukum 	port0->open_ports++;
8563f542974SPaul B Schroeder 
8573f542974SPaul B Schroeder 	/* Initialising the write urb pool */
8583f542974SPaul B Schroeder 	for (j = 0; j < NUM_URBS; ++j) {
8590de9a702SOliver Neukum 		urb = usb_alloc_urb(0, GFP_KERNEL);
8603f542974SPaul B Schroeder 		mos7840_port->write_urb_pool[j] = urb;
8613f542974SPaul B Schroeder 
8623f542974SPaul B Schroeder 		if (urb == NULL) {
863194343d9SGreg Kroah-Hartman 			dev_err(&port->dev, "No more urbs???\n");
8643f542974SPaul B Schroeder 			continue;
8653f542974SPaul B Schroeder 		}
8663f542974SPaul B Schroeder 
867880af9dbSAlan Cox 		urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
868880af9dbSAlan Cox 								GFP_KERNEL);
8693f542974SPaul B Schroeder 		if (!urb->transfer_buffer) {
8700de9a702SOliver Neukum 			usb_free_urb(urb);
8710de9a702SOliver Neukum 			mos7840_port->write_urb_pool[j] = NULL;
872194343d9SGreg Kroah-Hartman 			dev_err(&port->dev,
873194343d9SGreg Kroah-Hartman 				"%s-out of memory for urb buffers.\n",
874194343d9SGreg Kroah-Hartman 				__func__);
8753f542974SPaul B Schroeder 			continue;
8763f542974SPaul B Schroeder 		}
8773f542974SPaul B Schroeder 	}
8783f542974SPaul B Schroeder 
8793f542974SPaul B Schroeder /*****************************************************************************
8803f542974SPaul B Schroeder  * Initialize MCS7840 -- Write Init values to corresponding Registers
8813f542974SPaul B Schroeder  *
8823f542974SPaul B Schroeder  * Register Index
8833f542974SPaul B Schroeder  * 1 : IER
8843f542974SPaul B Schroeder  * 2 : FCR
8853f542974SPaul B Schroeder  * 3 : LCR
8863f542974SPaul B Schroeder  * 4 : MCR
8873f542974SPaul B Schroeder  *
8883f542974SPaul B Schroeder  * 0x08 : SP1/2 Control Reg
8893f542974SPaul B Schroeder  *****************************************************************************/
8903f542974SPaul B Schroeder 
891880af9dbSAlan Cox 	/* NEED to check the following Block */
8923f542974SPaul B Schroeder 
8933f542974SPaul B Schroeder 	Data = 0x0;
8943f542974SPaul B Schroeder 	status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
8953f542974SPaul B Schroeder 	if (status < 0) {
896*84fe6e79STony Cook 		dbg("Reading Spreg failed");
8973f542974SPaul B Schroeder 		return -1;
8983f542974SPaul B Schroeder 	}
8993f542974SPaul B Schroeder 	Data |= 0x80;
9003f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
9013f542974SPaul B Schroeder 	if (status < 0) {
902*84fe6e79STony Cook 		dbg("writing Spreg failed");
9033f542974SPaul B Schroeder 		return -1;
9043f542974SPaul B Schroeder 	}
9053f542974SPaul B Schroeder 
9063f542974SPaul B Schroeder 	Data &= ~0x80;
9073f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
9083f542974SPaul B Schroeder 	if (status < 0) {
909*84fe6e79STony Cook 		dbg("writing Spreg failed");
9103f542974SPaul B Schroeder 		return -1;
9113f542974SPaul B Schroeder 	}
912880af9dbSAlan Cox 	/* End of block to be checked */
9133f542974SPaul B Schroeder 
9143f542974SPaul B Schroeder 	Data = 0x0;
915880af9dbSAlan Cox 	status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
916880af9dbSAlan Cox 									&Data);
9173f542974SPaul B Schroeder 	if (status < 0) {
918*84fe6e79STony Cook 		dbg("Reading Controlreg failed");
9193f542974SPaul B Schroeder 		return -1;
9203f542974SPaul B Schroeder 	}
921880af9dbSAlan Cox 	Data |= 0x08;		/* Driver done bit */
922880af9dbSAlan Cox 	Data |= 0x20;		/* rx_disable */
923880af9dbSAlan Cox 	status = mos7840_set_reg_sync(port,
924880af9dbSAlan Cox 				mos7840_port->ControlRegOffset, Data);
9253f542974SPaul B Schroeder 	if (status < 0) {
926*84fe6e79STony Cook 		dbg("writing Controlreg failed");
9273f542974SPaul B Schroeder 		return -1;
9283f542974SPaul B Schroeder 	}
929880af9dbSAlan Cox 	/* do register settings here */
930880af9dbSAlan Cox 	/* Set all regs to the device default values. */
931880af9dbSAlan Cox 	/***********************************
932880af9dbSAlan Cox 	 * First Disable all interrupts.
933880af9dbSAlan Cox 	 ***********************************/
9343f542974SPaul B Schroeder 	Data = 0x00;
9353f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
9363f542974SPaul B Schroeder 	if (status < 0) {
937*84fe6e79STony Cook 		dbg("disabling interrupts failed");
9383f542974SPaul B Schroeder 		return -1;
9393f542974SPaul B Schroeder 	}
940880af9dbSAlan Cox 	/* Set FIFO_CONTROL_REGISTER to the default value */
9413f542974SPaul B Schroeder 	Data = 0x00;
9423f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
9433f542974SPaul B Schroeder 	if (status < 0) {
944*84fe6e79STony Cook 		dbg("Writing FIFO_CONTROL_REGISTER  failed");
9453f542974SPaul B Schroeder 		return -1;
9463f542974SPaul B Schroeder 	}
9473f542974SPaul B Schroeder 
9483f542974SPaul B Schroeder 	Data = 0xcf;
9493f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
9503f542974SPaul B Schroeder 	if (status < 0) {
951*84fe6e79STony Cook 		dbg("Writing FIFO_CONTROL_REGISTER  failed");
9523f542974SPaul B Schroeder 		return -1;
9533f542974SPaul B Schroeder 	}
9543f542974SPaul B Schroeder 
9553f542974SPaul B Schroeder 	Data = 0x03;
9563f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
9573f542974SPaul B Schroeder 	mos7840_port->shadowLCR = Data;
9583f542974SPaul B Schroeder 
9593f542974SPaul B Schroeder 	Data = 0x0b;
9603f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
9613f542974SPaul B Schroeder 	mos7840_port->shadowMCR = Data;
9623f542974SPaul B Schroeder 
9633f542974SPaul B Schroeder 	Data = 0x00;
9643f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
9653f542974SPaul B Schroeder 	mos7840_port->shadowLCR = Data;
9663f542974SPaul B Schroeder 
967880af9dbSAlan Cox 	Data |= SERIAL_LCR_DLAB;	/* data latch enable in LCR 0x80 */
9683f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
9693f542974SPaul B Schroeder 
9703f542974SPaul B Schroeder 	Data = 0x0c;
9713f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
9723f542974SPaul B Schroeder 
9733f542974SPaul B Schroeder 	Data = 0x0;
9743f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
9753f542974SPaul B Schroeder 
9763f542974SPaul B Schroeder 	Data = 0x00;
9773f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
9783f542974SPaul B Schroeder 
9793f542974SPaul B Schroeder 	Data = Data & ~SERIAL_LCR_DLAB;
9803f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
9813f542974SPaul B Schroeder 	mos7840_port->shadowLCR = Data;
9823f542974SPaul B Schroeder 
983880af9dbSAlan Cox 	/* clearing Bulkin and Bulkout Fifo */
9843f542974SPaul B Schroeder 	Data = 0x0;
9853f542974SPaul B Schroeder 	status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
9863f542974SPaul B Schroeder 
9873f542974SPaul B Schroeder 	Data = Data | 0x0c;
9883f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
9893f542974SPaul B Schroeder 
9903f542974SPaul B Schroeder 	Data = Data & ~0x0c;
9913f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
992880af9dbSAlan Cox 	/* Finally enable all interrupts */
9933f542974SPaul B Schroeder 	Data = 0x0c;
9943f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
9953f542974SPaul B Schroeder 
996880af9dbSAlan Cox 	/* clearing rx_disable */
9973f542974SPaul B Schroeder 	Data = 0x0;
998880af9dbSAlan Cox 	status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
999880af9dbSAlan Cox 									&Data);
10003f542974SPaul B Schroeder 	Data = Data & ~0x20;
1001880af9dbSAlan Cox 	status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1002880af9dbSAlan Cox 									Data);
10033f542974SPaul B Schroeder 
1004880af9dbSAlan Cox 	/* rx_negate */
10053f542974SPaul B Schroeder 	Data = 0x0;
1006880af9dbSAlan Cox 	status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1007880af9dbSAlan Cox 									&Data);
10083f542974SPaul B Schroeder 	Data = Data | 0x10;
1009880af9dbSAlan Cox 	status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1010880af9dbSAlan Cox 									Data);
10113f542974SPaul B Schroeder 
10123f542974SPaul B Schroeder 	/* Check to see if we've set up our endpoint info yet    *
10133f542974SPaul B Schroeder 	 * (can't set it up in mos7840_startup as the structures *
10143f542974SPaul B Schroeder 	 * were not set up at that time.)                        */
10150de9a702SOliver Neukum 	if (port0->open_ports == 1) {
10163f542974SPaul B Schroeder 		if (serial->port[0]->interrupt_in_buffer == NULL) {
10173f542974SPaul B Schroeder 			/* set up interrupt urb */
10183f542974SPaul B Schroeder 			usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
10193f542974SPaul B Schroeder 				serial->dev,
10203f542974SPaul B Schroeder 				usb_rcvintpipe(serial->dev,
1021880af9dbSAlan Cox 				serial->port[0]->interrupt_in_endpointAddress),
10223f542974SPaul B Schroeder 				serial->port[0]->interrupt_in_buffer,
10233f542974SPaul B Schroeder 				serial->port[0]->interrupt_in_urb->
10243f542974SPaul B Schroeder 				transfer_buffer_length,
10253f542974SPaul B Schroeder 				mos7840_interrupt_callback,
10263f542974SPaul B Schroeder 				serial,
1027880af9dbSAlan Cox 				serial->port[0]->interrupt_in_urb->interval);
10283f542974SPaul B Schroeder 
10293f542974SPaul B Schroeder 			/* start interrupt read for mos7840               *
10303f542974SPaul B Schroeder 			 * will continue as long as mos7840 is connected  */
10313f542974SPaul B Schroeder 
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 
1048*84fe6e79STony Cook 	dbg("port number is %d", port->number);
1049*84fe6e79STony Cook 	dbg("serial number is %d", port->serial->minor);
1050*84fe6e79STony Cook 	dbg("Bulkin endpoint is %d", port->bulk_in_endpointAddress);
1051*84fe6e79STony Cook 	dbg("BulkOut endpoint is %d", port->bulk_out_endpointAddress);
1052*84fe6e79STony Cook 	dbg("Interrupt endpoint is %d", port->interrupt_in_endpointAddress);
1053*84fe6e79STony Cook 	dbg("port's number in the device is %d", 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 */
10573f542974SPaul B Schroeder 
10583f542974SPaul B Schroeder 	usb_fill_bulk_urb(mos7840_port->read_urb,
10593f542974SPaul B Schroeder 			  serial->dev,
10603f542974SPaul B Schroeder 			  usb_rcvbulkpipe(serial->dev,
10613f542974SPaul B Schroeder 					  port->bulk_in_endpointAddress),
10623f542974SPaul B Schroeder 			  port->bulk_in_buffer,
10633f542974SPaul B Schroeder 			  mos7840_port->read_urb->transfer_buffer_length,
10643f542974SPaul B Schroeder 			  mos7840_bulk_in_callback, mos7840_port);
10653f542974SPaul B Schroeder 
1066*84fe6e79STony Cook 	dbg("mos7840_open: bulkin endpoint is %d",
10673f542974SPaul B Schroeder 	    port->bulk_in_endpointAddress);
106850de36f7SGreg Kroah-Hartman 	mos7840_port->read_urb_busy = true;
10693f542974SPaul B Schroeder 	response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
10703f542974SPaul B Schroeder 	if (response) {
1071194343d9SGreg Kroah-Hartman 		dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1072194343d9SGreg Kroah-Hartman 			__func__, response);
107350de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = false;
10743f542974SPaul B Schroeder 	}
10753f542974SPaul B Schroeder 
10763f542974SPaul B Schroeder 	/* initialize our wait queues */
10773f542974SPaul B Schroeder 	init_waitqueue_head(&mos7840_port->wait_chase);
10783f542974SPaul B Schroeder 	init_waitqueue_head(&mos7840_port->delta_msr_wait);
10793f542974SPaul B Schroeder 
10803f542974SPaul B Schroeder 	/* initialize our icount structure */
10813f542974SPaul B Schroeder 	memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount));
10823f542974SPaul B Schroeder 
10833f542974SPaul B Schroeder 	/* initialize our port settings */
1084880af9dbSAlan Cox 	/* Must set to enable ints! */
1085880af9dbSAlan Cox 	mos7840_port->shadowMCR = MCR_MASTER_IE;
10863f542974SPaul B Schroeder 	/* send a open port command */
10873f542974SPaul B Schroeder 	mos7840_port->open = 1;
1088880af9dbSAlan Cox 	/* mos7840_change_port_settings(mos7840_port,old_termios); */
10893f542974SPaul B Schroeder 	mos7840_port->icount.tx = 0;
10903f542974SPaul B Schroeder 	mos7840_port->icount.rx = 0;
10913f542974SPaul B Schroeder 
1092*84fe6e79STony Cook 	dbg("usb_serial serial:%p       mos7840_port:%p\n      usb_serial_port port:%p",
1093880af9dbSAlan Cox 				serial, mos7840_port, port);
10943f542974SPaul B Schroeder 
1095*84fe6e79STony Cook 	dbg ("%s leave", __func__);
1096*84fe6e79STony Cook 
10973f542974SPaul B Schroeder 	return 0;
10983f542974SPaul B Schroeder 
10993f542974SPaul B Schroeder }
11003f542974SPaul B Schroeder 
11013f542974SPaul B Schroeder /*****************************************************************************
11023f542974SPaul B Schroeder  * mos7840_chars_in_buffer
11033f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to know how many
11043f542974SPaul B Schroeder  *	bytes of data we currently have outstanding in the port (data that has
11053f542974SPaul B Schroeder  *	been written, but hasn't made it out the port yet)
11063f542974SPaul B Schroeder  *	If successful, we return the number of bytes left to be written in the
11073f542974SPaul B Schroeder  *	system,
110895da310eSAlan Cox  *	Otherwise we return zero.
11093f542974SPaul B Schroeder  *****************************************************************************/
11103f542974SPaul B Schroeder 
111195da310eSAlan Cox static int mos7840_chars_in_buffer(struct tty_struct *tty)
11123f542974SPaul B Schroeder {
111395da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
11143f542974SPaul B Schroeder 	int i;
11153f542974SPaul B Schroeder 	int chars = 0;
11160de9a702SOliver Neukum 	unsigned long flags;
11173f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
11183f542974SPaul B Schroeder 
1119*84fe6e79STony Cook 	dbg("%s", " mos7840_chars_in_buffer:entering ...........");
11203f542974SPaul B Schroeder 
1121441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1122*84fe6e79STony Cook 		dbg("%s", "Invalid port");
112395da310eSAlan Cox 		return 0;
11243f542974SPaul B Schroeder 	}
11253f542974SPaul B Schroeder 
11263f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
11273f542974SPaul B Schroeder 	if (mos7840_port == NULL) {
1128*84fe6e79STony Cook 		dbg("%s", "mos7840_break:leaving ...........");
112995da310eSAlan Cox 		return 0;
11303f542974SPaul B Schroeder 	}
11313f542974SPaul B Schroeder 
11320de9a702SOliver Neukum 	spin_lock_irqsave(&mos7840_port->pool_lock, flags);
113395da310eSAlan Cox 	for (i = 0; i < NUM_URBS; ++i)
113495da310eSAlan Cox 		if (mos7840_port->busy[i])
11353f542974SPaul B Schroeder 			chars += URB_TRANSFER_BUFFER_SIZE;
11360de9a702SOliver Neukum 	spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
1137441b62c1SHarvey Harrison 	dbg("%s - returns %d", __func__, chars);
11380de9a702SOliver Neukum 	return chars;
11393f542974SPaul B Schroeder 
11403f542974SPaul B Schroeder }
11413f542974SPaul B Schroeder 
11423f542974SPaul B Schroeder /*****************************************************************************
11433f542974SPaul B Schroeder  * mos7840_close
11443f542974SPaul B Schroeder  *	this function is called by the tty driver when a port is closed
11453f542974SPaul B Schroeder  *****************************************************************************/
11463f542974SPaul B Schroeder 
1147335f8514SAlan Cox static void mos7840_close(struct usb_serial_port *port)
11483f542974SPaul B Schroeder {
11493f542974SPaul B Schroeder 	struct usb_serial *serial;
11503f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
11510de9a702SOliver Neukum 	struct moschip_port *port0;
11523f542974SPaul B Schroeder 	int j;
11533f542974SPaul B Schroeder 	__u16 Data;
11543f542974SPaul B Schroeder 
1155*84fe6e79STony Cook 	dbg("%s", "mos7840_close:entering...");
11563f542974SPaul B Schroeder 
1157441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1158*84fe6e79STony Cook 		dbg("%s", "Port Paranoia failed");
11593f542974SPaul B Schroeder 		return;
11603f542974SPaul B Schroeder 	}
11613f542974SPaul B Schroeder 
1162441b62c1SHarvey Harrison 	serial = mos7840_get_usb_serial(port, __func__);
11633f542974SPaul B Schroeder 	if (!serial) {
1164*84fe6e79STony Cook 		dbg("%s", "Serial Paranoia failed");
11653f542974SPaul B Schroeder 		return;
11663f542974SPaul B Schroeder 	}
11673f542974SPaul B Schroeder 
11683f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
11690de9a702SOliver Neukum 	port0 = mos7840_get_port_private(serial->port[0]);
11703f542974SPaul B Schroeder 
11710de9a702SOliver Neukum 	if (mos7840_port == NULL || port0 == NULL)
11723f542974SPaul B Schroeder 		return;
11733f542974SPaul B Schroeder 
11743f542974SPaul B Schroeder 	for (j = 0; j < NUM_URBS; ++j)
11753f542974SPaul B Schroeder 		usb_kill_urb(mos7840_port->write_urb_pool[j]);
11763f542974SPaul B Schroeder 
11773f542974SPaul B Schroeder 	/* Freeing Write URBs */
11783f542974SPaul B Schroeder 	for (j = 0; j < NUM_URBS; ++j) {
11793f542974SPaul B Schroeder 		if (mos7840_port->write_urb_pool[j]) {
11803f542974SPaul B Schroeder 			if (mos7840_port->write_urb_pool[j]->transfer_buffer)
11813f542974SPaul B Schroeder 				kfree(mos7840_port->write_urb_pool[j]->
11823f542974SPaul B Schroeder 				      transfer_buffer);
11833f542974SPaul B Schroeder 
11843f542974SPaul B Schroeder 			usb_free_urb(mos7840_port->write_urb_pool[j]);
11853f542974SPaul B Schroeder 		}
11863f542974SPaul B Schroeder 	}
11873f542974SPaul B Schroeder 
11883f542974SPaul B Schroeder 	/* While closing port, shutdown all bulk read, write  *
11893f542974SPaul B Schroeder 	 * and interrupt read if they exists                  */
11903f542974SPaul B Schroeder 	if (serial->dev) {
11913f542974SPaul B Schroeder 		if (mos7840_port->write_urb) {
1192*84fe6e79STony Cook 			dbg("%s", "Shutdown bulk write");
11933f542974SPaul B Schroeder 			usb_kill_urb(mos7840_port->write_urb);
11943f542974SPaul B Schroeder 		}
11953f542974SPaul B Schroeder 		if (mos7840_port->read_urb) {
1196*84fe6e79STony Cook 			dbg("%s", "Shutdown bulk read");
11973f542974SPaul B Schroeder 			usb_kill_urb(mos7840_port->read_urb);
119850de36f7SGreg Kroah-Hartman 			mos7840_port->read_urb_busy = false;
11993f542974SPaul B Schroeder 		}
12003f542974SPaul B Schroeder 		if ((&mos7840_port->control_urb)) {
1201*84fe6e79STony Cook 			dbg("%s", "Shutdown control read");
1202880af9dbSAlan Cox 			/*/      usb_kill_urb (mos7840_port->control_urb); */
12033f542974SPaul B Schroeder 		}
12043f542974SPaul B Schroeder 	}
1205880af9dbSAlan Cox /*      if(mos7840_port->ctrl_buf != NULL) */
1206880af9dbSAlan Cox /*              kfree(mos7840_port->ctrl_buf); */
12070de9a702SOliver Neukum 	port0->open_ports--;
1208*84fe6e79STony Cook 	dbg("mos7840_num_open_ports in close%d:in port%d",
12090de9a702SOliver Neukum 	    port0->open_ports, port->number);
12100de9a702SOliver Neukum 	if (port0->open_ports == 0) {
12113f542974SPaul B Schroeder 		if (serial->port[0]->interrupt_in_urb) {
1212*84fe6e79STony Cook 			dbg("%s", "Shutdown interrupt_in_urb");
12130de9a702SOliver Neukum 			usb_kill_urb(serial->port[0]->interrupt_in_urb);
12143f542974SPaul B Schroeder 		}
12153f542974SPaul B Schroeder 	}
12163f542974SPaul B Schroeder 
12173f542974SPaul B Schroeder 	if (mos7840_port->write_urb) {
12183f542974SPaul B Schroeder 		/* if this urb had a transfer buffer already (old tx) free it */
1219880af9dbSAlan Cox 		if (mos7840_port->write_urb->transfer_buffer != NULL)
12203f542974SPaul B Schroeder 			kfree(mos7840_port->write_urb->transfer_buffer);
12213f542974SPaul B Schroeder 		usb_free_urb(mos7840_port->write_urb);
12223f542974SPaul B Schroeder 	}
12233f542974SPaul B Schroeder 
12243f542974SPaul B Schroeder 	Data = 0x0;
12253f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
12263f542974SPaul B Schroeder 
12273f542974SPaul B Schroeder 	Data = 0x00;
12283f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
12293f542974SPaul B Schroeder 
12303f542974SPaul B Schroeder 	mos7840_port->open = 0;
12313f542974SPaul B Schroeder 
1232*84fe6e79STony Cook 	dbg("%s", "Leaving ............");
12333f542974SPaul B Schroeder }
12343f542974SPaul B Schroeder 
12353f542974SPaul B Schroeder /************************************************************************
12363f542974SPaul B Schroeder  *
12373f542974SPaul B Schroeder  * mos7840_block_until_chase_response
12383f542974SPaul B Schroeder  *
12393f542974SPaul B Schroeder  *	This function will block the close until one of the following:
12403f542974SPaul B Schroeder  *		1. Response to our Chase comes from mos7840
1241dc0d5c1eSJoe Perches  *		2. A timeout of 10 seconds without activity has expired
12423f542974SPaul B Schroeder  *		   (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
12433f542974SPaul B Schroeder  *
12443f542974SPaul B Schroeder  ************************************************************************/
12453f542974SPaul B Schroeder 
124695da310eSAlan Cox static void mos7840_block_until_chase_response(struct tty_struct *tty,
124795da310eSAlan Cox 					struct moschip_port *mos7840_port)
12483f542974SPaul B Schroeder {
12493f542974SPaul B Schroeder 	int timeout = 1 * HZ;
12503f542974SPaul B Schroeder 	int wait = 10;
12513f542974SPaul B Schroeder 	int count;
12523f542974SPaul B Schroeder 
12533f542974SPaul B Schroeder 	while (1) {
125495da310eSAlan Cox 		count = mos7840_chars_in_buffer(tty);
12553f542974SPaul B Schroeder 
12563f542974SPaul B Schroeder 		/* Check for Buffer status */
1257880af9dbSAlan Cox 		if (count <= 0)
12583f542974SPaul B Schroeder 			return;
12593f542974SPaul B Schroeder 
12603f542974SPaul B Schroeder 		/* Block the thread for a while */
12613f542974SPaul B Schroeder 		interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
12623f542974SPaul B Schroeder 					       timeout);
12633f542974SPaul B Schroeder 		/* No activity.. count down section */
12643f542974SPaul B Schroeder 		wait--;
12653f542974SPaul B Schroeder 		if (wait == 0) {
1266441b62c1SHarvey Harrison 			dbg("%s - TIMEOUT", __func__);
12673f542974SPaul B Schroeder 			return;
12683f542974SPaul B Schroeder 		} else {
1269dc0d5c1eSJoe Perches 			/* Reset timeout value back to seconds */
12703f542974SPaul B Schroeder 			wait = 10;
12713f542974SPaul B Schroeder 		}
12723f542974SPaul B Schroeder 	}
12733f542974SPaul B Schroeder 
12743f542974SPaul B Schroeder }
12753f542974SPaul B Schroeder 
12763f542974SPaul B Schroeder /*****************************************************************************
12773f542974SPaul B Schroeder  * mos7840_break
12783f542974SPaul B Schroeder  *	this function sends a break to the port
12793f542974SPaul B Schroeder  *****************************************************************************/
128095da310eSAlan Cox static void mos7840_break(struct tty_struct *tty, int break_state)
12813f542974SPaul B Schroeder {
128295da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
12833f542974SPaul B Schroeder 	unsigned char data;
12843f542974SPaul B Schroeder 	struct usb_serial *serial;
12853f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
12863f542974SPaul B Schroeder 
1287*84fe6e79STony Cook 	dbg("%s", "Entering ...........");
1288*84fe6e79STony Cook 	dbg("mos7840_break: Start");
12893f542974SPaul B Schroeder 
1290441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1291*84fe6e79STony Cook 		dbg("%s", "Port Paranoia failed");
12923f542974SPaul B Schroeder 		return;
12933f542974SPaul B Schroeder 	}
12943f542974SPaul B Schroeder 
1295441b62c1SHarvey Harrison 	serial = mos7840_get_usb_serial(port, __func__);
12963f542974SPaul B Schroeder 	if (!serial) {
1297*84fe6e79STony Cook 		dbg("%s", "Serial Paranoia failed");
12983f542974SPaul B Schroeder 		return;
12993f542974SPaul B Schroeder 	}
13003f542974SPaul B Schroeder 
13013f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
13023f542974SPaul B Schroeder 
1303880af9dbSAlan Cox 	if (mos7840_port == NULL)
13043f542974SPaul B Schroeder 		return;
13053f542974SPaul B Schroeder 
130695da310eSAlan Cox 	if (serial->dev)
13073f542974SPaul B Schroeder 		/* flush and block until tx is empty */
130895da310eSAlan Cox 		mos7840_block_until_chase_response(tty, mos7840_port);
13093f542974SPaul B Schroeder 
131095da310eSAlan Cox 	if (break_state == -1)
13113f542974SPaul B Schroeder 		data = mos7840_port->shadowLCR | LCR_SET_BREAK;
131295da310eSAlan Cox 	else
13133f542974SPaul B Schroeder 		data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
13143f542974SPaul B Schroeder 
13156b447f04SAlan Cox 	/* FIXME: no locking on shadowLCR anywhere in driver */
13163f542974SPaul B Schroeder 	mos7840_port->shadowLCR = data;
1317*84fe6e79STony Cook 	dbg("mcs7840_break mos7840_port->shadowLCR is %x",
13183f542974SPaul B Schroeder 	    mos7840_port->shadowLCR);
13193f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
13203f542974SPaul B Schroeder 			     mos7840_port->shadowLCR);
13213f542974SPaul B Schroeder 
13223f542974SPaul B Schroeder 	return;
13233f542974SPaul B Schroeder }
13243f542974SPaul B Schroeder 
13253f542974SPaul B Schroeder /*****************************************************************************
13263f542974SPaul B Schroeder  * mos7840_write_room
13273f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to know how many
13283f542974SPaul B Schroeder  *	bytes of data we can accept for a specific port.
13293f542974SPaul B Schroeder  *	If successful, we return the amount of room that we have for this port
13303f542974SPaul B Schroeder  *	Otherwise we return a negative error number.
13313f542974SPaul B Schroeder  *****************************************************************************/
13323f542974SPaul B Schroeder 
133395da310eSAlan Cox static int mos7840_write_room(struct tty_struct *tty)
13343f542974SPaul B Schroeder {
133595da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
13363f542974SPaul B Schroeder 	int i;
13373f542974SPaul B Schroeder 	int room = 0;
13380de9a702SOliver Neukum 	unsigned long flags;
13393f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
13403f542974SPaul B Schroeder 
1341*84fe6e79STony Cook 	dbg("%s", " mos7840_write_room:entering ...........");
13423f542974SPaul B Schroeder 
1343441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1344*84fe6e79STony Cook 		dbg("%s", "Invalid port");
1345*84fe6e79STony Cook 		dbg("%s", " mos7840_write_room:leaving ...........");
13463f542974SPaul B Schroeder 		return -1;
13473f542974SPaul B Schroeder 	}
13483f542974SPaul B Schroeder 
13493f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
13503f542974SPaul B Schroeder 	if (mos7840_port == NULL) {
1351*84fe6e79STony Cook 		dbg("%s", "mos7840_break:leaving ...........");
13523f542974SPaul B Schroeder 		return -1;
13533f542974SPaul B Schroeder 	}
13543f542974SPaul B Schroeder 
13550de9a702SOliver Neukum 	spin_lock_irqsave(&mos7840_port->pool_lock, flags);
13563f542974SPaul B Schroeder 	for (i = 0; i < NUM_URBS; ++i) {
1357880af9dbSAlan Cox 		if (!mos7840_port->busy[i])
13583f542974SPaul B Schroeder 			room += URB_TRANSFER_BUFFER_SIZE;
13593f542974SPaul B Schroeder 	}
13600de9a702SOliver Neukum 	spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
13613f542974SPaul B Schroeder 
13620de9a702SOliver Neukum 	room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
1363441b62c1SHarvey Harrison 	dbg("%s - returns %d", __func__, room);
13640de9a702SOliver Neukum 	return room;
13653f542974SPaul B Schroeder 
13663f542974SPaul B Schroeder }
13673f542974SPaul B Schroeder 
13683f542974SPaul B Schroeder /*****************************************************************************
13693f542974SPaul B Schroeder  * mos7840_write
13703f542974SPaul B Schroeder  *	this function is called by the tty driver when data should be written to
13713f542974SPaul B Schroeder  *	the port.
13723f542974SPaul B Schroeder  *	If successful, we return the number of bytes written, otherwise we
13733f542974SPaul B Schroeder  *      return a negative error number.
13743f542974SPaul B Schroeder  *****************************************************************************/
13753f542974SPaul B Schroeder 
137695da310eSAlan Cox static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
13773f542974SPaul B Schroeder 			 const unsigned char *data, int count)
13783f542974SPaul B Schroeder {
13793f542974SPaul B Schroeder 	int status;
13803f542974SPaul B Schroeder 	int i;
13813f542974SPaul B Schroeder 	int bytes_sent = 0;
13823f542974SPaul B Schroeder 	int transfer_size;
13830de9a702SOliver Neukum 	unsigned long flags;
13843f542974SPaul B Schroeder 
13853f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
13863f542974SPaul B Schroeder 	struct usb_serial *serial;
13873f542974SPaul B Schroeder 	struct urb *urb;
1388880af9dbSAlan Cox 	/* __u16 Data; */
13893f542974SPaul B Schroeder 	const unsigned char *current_position = data;
13903f542974SPaul B Schroeder 	unsigned char *data1;
1391*84fe6e79STony Cook 	dbg("%s", "entering ...........");
1392*84fe6e79STony Cook 	/* dbg("mos7840_write: mos7840_port->shadowLCR is %x",
1393880af9dbSAlan Cox 					mos7840_port->shadowLCR); */
13943f542974SPaul B Schroeder 
13953f542974SPaul B Schroeder #ifdef NOTMOS7840
13963f542974SPaul B Schroeder 	Data = 0x00;
13973f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
13983f542974SPaul B Schroeder 	mos7840_port->shadowLCR = Data;
1399*84fe6e79STony Cook 	dbg("mos7840_write: LINE_CONTROL_REGISTER is %x", Data);
1400*84fe6e79STony Cook 	dbg("mos7840_write: mos7840_port->shadowLCR is %x",
14013f542974SPaul B Schroeder 	    mos7840_port->shadowLCR);
14023f542974SPaul B Schroeder 
1403880af9dbSAlan Cox 	/* Data = 0x03; */
1404880af9dbSAlan Cox 	/* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1405880af9dbSAlan Cox 	/* mos7840_port->shadowLCR=Data;//Need to add later */
14063f542974SPaul B Schroeder 
1407880af9dbSAlan Cox 	Data |= SERIAL_LCR_DLAB;	/* data latch enable in LCR 0x80 */
14083f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
14093f542974SPaul B Schroeder 
1410880af9dbSAlan Cox 	/* Data = 0x0c; */
1411880af9dbSAlan Cox 	/* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
14123f542974SPaul B Schroeder 	Data = 0x00;
14133f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
1414*84fe6e79STony Cook 	dbg("mos7840_write:DLL value is %x", Data);
14153f542974SPaul B Schroeder 
14163f542974SPaul B Schroeder 	Data = 0x0;
14173f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
1418*84fe6e79STony Cook 	dbg("mos7840_write:DLM value is %x", Data);
14193f542974SPaul B Schroeder 
14203f542974SPaul B Schroeder 	Data = Data & ~SERIAL_LCR_DLAB;
1421*84fe6e79STony Cook 	dbg("mos7840_write: mos7840_port->shadowLCR is %x",
14223f542974SPaul B Schroeder 	    mos7840_port->shadowLCR);
14233f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
14243f542974SPaul B Schroeder #endif
14253f542974SPaul B Schroeder 
1426441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1427*84fe6e79STony Cook 		dbg("%s", "Port Paranoia failed");
14283f542974SPaul B Schroeder 		return -1;
14293f542974SPaul B Schroeder 	}
14303f542974SPaul B Schroeder 
14313f542974SPaul B Schroeder 	serial = port->serial;
1432441b62c1SHarvey Harrison 	if (mos7840_serial_paranoia_check(serial, __func__)) {
1433*84fe6e79STony Cook 		dbg("%s", "Serial Paranoia failed");
14343f542974SPaul B Schroeder 		return -1;
14353f542974SPaul B Schroeder 	}
14363f542974SPaul B Schroeder 
14373f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
14383f542974SPaul B Schroeder 	if (mos7840_port == NULL) {
1439*84fe6e79STony Cook 		dbg("%s", "mos7840_port is NULL");
14403f542974SPaul B Schroeder 		return -1;
14413f542974SPaul B Schroeder 	}
14423f542974SPaul B Schroeder 
14433f542974SPaul B Schroeder 	/* try to find a free urb in the list */
14443f542974SPaul B Schroeder 	urb = NULL;
14453f542974SPaul B Schroeder 
14460de9a702SOliver Neukum 	spin_lock_irqsave(&mos7840_port->pool_lock, flags);
14473f542974SPaul B Schroeder 	for (i = 0; i < NUM_URBS; ++i) {
14480de9a702SOliver Neukum 		if (!mos7840_port->busy[i]) {
14490de9a702SOliver Neukum 			mos7840_port->busy[i] = 1;
14503f542974SPaul B Schroeder 			urb = mos7840_port->write_urb_pool[i];
1451*84fe6e79STony Cook 			dbg("URB:%d", i);
14523f542974SPaul B Schroeder 			break;
14533f542974SPaul B Schroeder 		}
14543f542974SPaul B Schroeder 	}
14550de9a702SOliver Neukum 	spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
14563f542974SPaul B Schroeder 
14573f542974SPaul B Schroeder 	if (urb == NULL) {
1458441b62c1SHarvey Harrison 		dbg("%s - no more free urbs", __func__);
14593f542974SPaul B Schroeder 		goto exit;
14603f542974SPaul B Schroeder 	}
14613f542974SPaul B Schroeder 
14623f542974SPaul B Schroeder 	if (urb->transfer_buffer == NULL) {
14633f542974SPaul B Schroeder 		urb->transfer_buffer =
14643f542974SPaul B Schroeder 		    kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
14653f542974SPaul B Schroeder 
14663f542974SPaul B Schroeder 		if (urb->transfer_buffer == NULL) {
1467194343d9SGreg Kroah-Hartman 			dev_err(&port->dev, "%s no more kernel memory...\n",
1468194343d9SGreg Kroah-Hartman 				__func__);
14693f542974SPaul B Schroeder 			goto exit;
14703f542974SPaul B Schroeder 		}
14713f542974SPaul B Schroeder 	}
14723f542974SPaul B Schroeder 	transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
14733f542974SPaul B Schroeder 
14743f542974SPaul B Schroeder 	memcpy(urb->transfer_buffer, current_position, transfer_size);
14753f542974SPaul B Schroeder 
14763f542974SPaul B Schroeder 	/* fill urb with data and submit  */
14773f542974SPaul B Schroeder 	usb_fill_bulk_urb(urb,
14783f542974SPaul B Schroeder 			  serial->dev,
14793f542974SPaul B Schroeder 			  usb_sndbulkpipe(serial->dev,
14803f542974SPaul B Schroeder 					  port->bulk_out_endpointAddress),
14813f542974SPaul B Schroeder 			  urb->transfer_buffer,
14823f542974SPaul B Schroeder 			  transfer_size,
14833f542974SPaul B Schroeder 			  mos7840_bulk_out_data_callback, mos7840_port);
14843f542974SPaul B Schroeder 
14853f542974SPaul B Schroeder 	data1 = urb->transfer_buffer;
1486*84fe6e79STony Cook 	dbg("bulkout endpoint is %d", port->bulk_out_endpointAddress);
14873f542974SPaul B Schroeder 
14883f542974SPaul B Schroeder 	/* send it down the pipe */
14893f542974SPaul B Schroeder 	status = usb_submit_urb(urb, GFP_ATOMIC);
14903f542974SPaul B Schroeder 
14913f542974SPaul B Schroeder 	if (status) {
14920de9a702SOliver Neukum 		mos7840_port->busy[i] = 0;
1493194343d9SGreg Kroah-Hartman 		dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
1494194343d9SGreg Kroah-Hartman 			"with status = %d\n", __func__, status);
14953f542974SPaul B Schroeder 		bytes_sent = status;
14963f542974SPaul B Schroeder 		goto exit;
14973f542974SPaul B Schroeder 	}
14983f542974SPaul B Schroeder 	bytes_sent = transfer_size;
14993f542974SPaul B Schroeder 	mos7840_port->icount.tx += transfer_size;
15000de9a702SOliver Neukum 	smp_wmb();
1501*84fe6e79STony Cook 	dbg("mos7840_port->icount.tx is %d:", mos7840_port->icount.tx);
15023f542974SPaul B Schroeder exit:
15033f542974SPaul B Schroeder 	return bytes_sent;
15043f542974SPaul B Schroeder 
15053f542974SPaul B Schroeder }
15063f542974SPaul B Schroeder 
15073f542974SPaul B Schroeder /*****************************************************************************
15083f542974SPaul B Schroeder  * mos7840_throttle
15093f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to stop the data
15103f542974SPaul B Schroeder  *	being read from the port.
15113f542974SPaul B Schroeder  *****************************************************************************/
15123f542974SPaul B Schroeder 
151395da310eSAlan Cox static void mos7840_throttle(struct tty_struct *tty)
15143f542974SPaul B Schroeder {
151595da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
15163f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
15173f542974SPaul B Schroeder 	int status;
15183f542974SPaul B Schroeder 
1519441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1520*84fe6e79STony Cook 		dbg("%s", "Invalid port");
15213f542974SPaul B Schroeder 		return;
15223f542974SPaul B Schroeder 	}
15233f542974SPaul B Schroeder 
1524*84fe6e79STony Cook 	dbg("- port %d", port->number);
15253f542974SPaul B Schroeder 
15263f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
15273f542974SPaul B Schroeder 
15283f542974SPaul B Schroeder 	if (mos7840_port == NULL)
15293f542974SPaul B Schroeder 		return;
15303f542974SPaul B Schroeder 
15313f542974SPaul B Schroeder 	if (!mos7840_port->open) {
1532*84fe6e79STony Cook 		dbg("%s", "port not opened");
15333f542974SPaul B Schroeder 		return;
15343f542974SPaul B Schroeder 	}
15353f542974SPaul B Schroeder 
1536*84fe6e79STony Cook 	dbg("%s", "Entering ..........");
15373f542974SPaul B Schroeder 
15383f542974SPaul B Schroeder 	/* if we are implementing XON/XOFF, send the stop character */
15393f542974SPaul B Schroeder 	if (I_IXOFF(tty)) {
15403f542974SPaul B Schroeder 		unsigned char stop_char = STOP_CHAR(tty);
154195da310eSAlan Cox 		status = mos7840_write(tty, port, &stop_char, 1);
154295da310eSAlan Cox 		if (status <= 0)
15433f542974SPaul B Schroeder 			return;
15443f542974SPaul B Schroeder 	}
15453f542974SPaul B Schroeder 	/* if we are implementing RTS/CTS, toggle that line */
15463f542974SPaul B Schroeder 	if (tty->termios->c_cflag & CRTSCTS) {
15473f542974SPaul B Schroeder 		mos7840_port->shadowMCR &= ~MCR_RTS;
154895da310eSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
15493f542974SPaul B Schroeder 					 mos7840_port->shadowMCR);
155095da310eSAlan Cox 		if (status < 0)
15513f542974SPaul B Schroeder 			return;
15523f542974SPaul B Schroeder 	}
15533f542974SPaul B Schroeder 
15543f542974SPaul B Schroeder 	return;
15553f542974SPaul B Schroeder }
15563f542974SPaul B Schroeder 
15573f542974SPaul B Schroeder /*****************************************************************************
15583f542974SPaul B Schroeder  * mos7840_unthrottle
1559880af9dbSAlan Cox  *	this function is called by the tty driver when it wants to resume
1560880af9dbSAlan Cox  *	the data being read from the port (called after mos7840_throttle is
1561880af9dbSAlan Cox  *	called)
15623f542974SPaul B Schroeder  *****************************************************************************/
156395da310eSAlan Cox static void mos7840_unthrottle(struct tty_struct *tty)
15643f542974SPaul B Schroeder {
156595da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
15663f542974SPaul B Schroeder 	int status;
15673f542974SPaul B Schroeder 	struct moschip_port *mos7840_port = mos7840_get_port_private(port);
15683f542974SPaul B Schroeder 
1569441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1570*84fe6e79STony Cook 		dbg("%s", "Invalid port");
15713f542974SPaul B Schroeder 		return;
15723f542974SPaul B Schroeder 	}
15733f542974SPaul B Schroeder 
15743f542974SPaul B Schroeder 	if (mos7840_port == NULL)
15753f542974SPaul B Schroeder 		return;
15763f542974SPaul B Schroeder 
15773f542974SPaul B Schroeder 	if (!mos7840_port->open) {
1578441b62c1SHarvey Harrison 		dbg("%s - port not opened", __func__);
15793f542974SPaul B Schroeder 		return;
15803f542974SPaul B Schroeder 	}
15813f542974SPaul B Schroeder 
1582*84fe6e79STony Cook 	dbg("%s", "Entering ..........");
15833f542974SPaul B Schroeder 
15843f542974SPaul B Schroeder 	/* if we are implementing XON/XOFF, send the start character */
15853f542974SPaul B Schroeder 	if (I_IXOFF(tty)) {
15863f542974SPaul B Schroeder 		unsigned char start_char = START_CHAR(tty);
158795da310eSAlan Cox 		status = mos7840_write(tty, port, &start_char, 1);
158895da310eSAlan Cox 		if (status <= 0)
15893f542974SPaul B Schroeder 			return;
15903f542974SPaul B Schroeder 	}
15913f542974SPaul B Schroeder 
15923f542974SPaul B Schroeder 	/* if we are implementing RTS/CTS, toggle that line */
15933f542974SPaul B Schroeder 	if (tty->termios->c_cflag & CRTSCTS) {
15943f542974SPaul B Schroeder 		mos7840_port->shadowMCR |= MCR_RTS;
159595da310eSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
15963f542974SPaul B Schroeder 					 mos7840_port->shadowMCR);
159795da310eSAlan Cox 		if (status < 0)
15983f542974SPaul B Schroeder 			return;
15993f542974SPaul B Schroeder 	}
16003f542974SPaul B Schroeder }
16013f542974SPaul B Schroeder 
160295da310eSAlan Cox static int mos7840_tiocmget(struct tty_struct *tty, struct file *file)
16033f542974SPaul B Schroeder {
160495da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
16053f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
16063f542974SPaul B Schroeder 	unsigned int result;
16073f542974SPaul B Schroeder 	__u16 msr;
16083f542974SPaul B Schroeder 	__u16 mcr;
1609880af9dbSAlan Cox 	int status;
16103f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
16113f542974SPaul B Schroeder 
1612441b62c1SHarvey Harrison 	dbg("%s - port %d", __func__, port->number);
16133f542974SPaul B Schroeder 
16143f542974SPaul B Schroeder 	if (mos7840_port == NULL)
16153f542974SPaul B Schroeder 		return -ENODEV;
16163f542974SPaul B Schroeder 
16173f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
16183f542974SPaul B Schroeder 	status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
16193f542974SPaul B Schroeder 	result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
16203f542974SPaul B Schroeder 	    | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
16213f542974SPaul B Schroeder 	    | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
16223f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
16233f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
16243f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
16253f542974SPaul B Schroeder 	    | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
16263f542974SPaul B Schroeder 
1627441b62c1SHarvey Harrison 	dbg("%s - 0x%04X", __func__, result);
16283f542974SPaul B Schroeder 
16293f542974SPaul B Schroeder 	return result;
16303f542974SPaul B Schroeder }
16313f542974SPaul B Schroeder 
163295da310eSAlan Cox static int mos7840_tiocmset(struct tty_struct *tty, struct file *file,
16333f542974SPaul B Schroeder 			    unsigned int set, unsigned int clear)
16343f542974SPaul B Schroeder {
163595da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
16363f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
16373f542974SPaul B Schroeder 	unsigned int mcr;
163887521c46SRoel Kluin 	int status;
16393f542974SPaul B Schroeder 
1640441b62c1SHarvey Harrison 	dbg("%s - port %d", __func__, port->number);
16413f542974SPaul B Schroeder 
16423f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
16433f542974SPaul B Schroeder 
16443f542974SPaul B Schroeder 	if (mos7840_port == NULL)
16453f542974SPaul B Schroeder 		return -ENODEV;
16463f542974SPaul B Schroeder 
1647e2984494SAlan Cox 	/* FIXME: What locks the port registers ? */
16483f542974SPaul B Schroeder 	mcr = mos7840_port->shadowMCR;
16493f542974SPaul B Schroeder 	if (clear & TIOCM_RTS)
16503f542974SPaul B Schroeder 		mcr &= ~MCR_RTS;
16513f542974SPaul B Schroeder 	if (clear & TIOCM_DTR)
16523f542974SPaul B Schroeder 		mcr &= ~MCR_DTR;
16533f542974SPaul B Schroeder 	if (clear & TIOCM_LOOP)
16543f542974SPaul B Schroeder 		mcr &= ~MCR_LOOPBACK;
16553f542974SPaul B Schroeder 
16563f542974SPaul B Schroeder 	if (set & TIOCM_RTS)
16573f542974SPaul B Schroeder 		mcr |= MCR_RTS;
16583f542974SPaul B Schroeder 	if (set & TIOCM_DTR)
16593f542974SPaul B Schroeder 		mcr |= MCR_DTR;
16603f542974SPaul B Schroeder 	if (set & TIOCM_LOOP)
16613f542974SPaul B Schroeder 		mcr |= MCR_LOOPBACK;
16623f542974SPaul B Schroeder 
16633f542974SPaul B Schroeder 	mos7840_port->shadowMCR = mcr;
16643f542974SPaul B Schroeder 
16653f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
16663f542974SPaul B Schroeder 	if (status < 0) {
1667*84fe6e79STony Cook 		dbg("setting MODEM_CONTROL_REGISTER Failed");
166887521c46SRoel Kluin 		return status;
16693f542974SPaul B Schroeder 	}
16703f542974SPaul B Schroeder 
16713f542974SPaul B Schroeder 	return 0;
16723f542974SPaul B Schroeder }
16733f542974SPaul B Schroeder 
16743f542974SPaul B Schroeder /*****************************************************************************
16753f542974SPaul B Schroeder  * mos7840_calc_baud_rate_divisor
16763f542974SPaul B Schroeder  *	this function calculates the proper baud rate divisor for the specified
16773f542974SPaul B Schroeder  *	baud rate.
16783f542974SPaul B Schroeder  *****************************************************************************/
16793f542974SPaul B Schroeder static int mos7840_calc_baud_rate_divisor(int baudRate, int *divisor,
16803f542974SPaul B Schroeder 					  __u16 *clk_sel_val)
16813f542974SPaul B Schroeder {
16823f542974SPaul B Schroeder 
1683441b62c1SHarvey Harrison 	dbg("%s - %d", __func__, baudRate);
16843f542974SPaul B Schroeder 
16853f542974SPaul B Schroeder 	if (baudRate <= 115200) {
16863f542974SPaul B Schroeder 		*divisor = 115200 / baudRate;
16873f542974SPaul B Schroeder 		*clk_sel_val = 0x0;
16883f542974SPaul B Schroeder 	}
16893f542974SPaul B Schroeder 	if ((baudRate > 115200) && (baudRate <= 230400)) {
16903f542974SPaul B Schroeder 		*divisor = 230400 / baudRate;
16913f542974SPaul B Schroeder 		*clk_sel_val = 0x10;
16923f542974SPaul B Schroeder 	} else if ((baudRate > 230400) && (baudRate <= 403200)) {
16933f542974SPaul B Schroeder 		*divisor = 403200 / baudRate;
16943f542974SPaul B Schroeder 		*clk_sel_val = 0x20;
16953f542974SPaul B Schroeder 	} else if ((baudRate > 403200) && (baudRate <= 460800)) {
16963f542974SPaul B Schroeder 		*divisor = 460800 / baudRate;
16973f542974SPaul B Schroeder 		*clk_sel_val = 0x30;
16983f542974SPaul B Schroeder 	} else if ((baudRate > 460800) && (baudRate <= 806400)) {
16993f542974SPaul B Schroeder 		*divisor = 806400 / baudRate;
17003f542974SPaul B Schroeder 		*clk_sel_val = 0x40;
17013f542974SPaul B Schroeder 	} else if ((baudRate > 806400) && (baudRate <= 921600)) {
17023f542974SPaul B Schroeder 		*divisor = 921600 / baudRate;
17033f542974SPaul B Schroeder 		*clk_sel_val = 0x50;
17043f542974SPaul B Schroeder 	} else if ((baudRate > 921600) && (baudRate <= 1572864)) {
17053f542974SPaul B Schroeder 		*divisor = 1572864 / baudRate;
17063f542974SPaul B Schroeder 		*clk_sel_val = 0x60;
17073f542974SPaul B Schroeder 	} else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
17083f542974SPaul B Schroeder 		*divisor = 3145728 / baudRate;
17093f542974SPaul B Schroeder 		*clk_sel_val = 0x70;
17103f542974SPaul B Schroeder 	}
17113f542974SPaul B Schroeder 	return 0;
17123f542974SPaul B Schroeder 
17133f542974SPaul B Schroeder #ifdef NOTMCS7840
17143f542974SPaul B Schroeder 
17153f542974SPaul B Schroeder 	for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
17163f542974SPaul B Schroeder 		if (mos7840_divisor_table[i].BaudRate == baudrate) {
17173f542974SPaul B Schroeder 			*divisor = mos7840_divisor_table[i].Divisor;
17183f542974SPaul B Schroeder 			return 0;
17193f542974SPaul B Schroeder 		}
17203f542974SPaul B Schroeder 	}
17213f542974SPaul B Schroeder 
17223f542974SPaul B Schroeder 	/* After trying for all the standard baud rates    *
17233f542974SPaul B Schroeder 	 * Try calculating the divisor for this baud rate  */
17243f542974SPaul B Schroeder 
17253f542974SPaul B Schroeder 	if (baudrate > 75 && baudrate < 230400) {
17263f542974SPaul B Schroeder 		/* get the divisor */
17273f542974SPaul B Schroeder 		custom = (__u16) (230400L / baudrate);
17283f542974SPaul B Schroeder 
17293f542974SPaul B Schroeder 		/* Check for round off */
17303f542974SPaul B Schroeder 		round1 = (__u16) (2304000L / baudrate);
17313f542974SPaul B Schroeder 		round = (__u16) (round1 - (custom * 10));
1732880af9dbSAlan Cox 		if (round > 4)
17333f542974SPaul B Schroeder 			custom++;
17343f542974SPaul B Schroeder 		*divisor = custom;
17353f542974SPaul B Schroeder 
1736*84fe6e79STony Cook 		dbg(" Baud %d = %d", baudrate, custom);
17373f542974SPaul B Schroeder 		return 0;
17383f542974SPaul B Schroeder 	}
17393f542974SPaul B Schroeder 
1740*84fe6e79STony Cook 	dbg("%s", " Baud calculation Failed...");
17413f542974SPaul B Schroeder 	return -1;
17423f542974SPaul B Schroeder #endif
17433f542974SPaul B Schroeder }
17443f542974SPaul B Schroeder 
17453f542974SPaul B Schroeder /*****************************************************************************
17463f542974SPaul B Schroeder  * mos7840_send_cmd_write_baud_rate
17473f542974SPaul B Schroeder  *	this function sends the proper command to change the baud rate of the
17483f542974SPaul B Schroeder  *	specified port.
17493f542974SPaul B Schroeder  *****************************************************************************/
17503f542974SPaul B Schroeder 
17513f542974SPaul B Schroeder static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
17523f542974SPaul B Schroeder 					    int baudRate)
17533f542974SPaul B Schroeder {
17543f542974SPaul B Schroeder 	int divisor = 0;
17553f542974SPaul B Schroeder 	int status;
17563f542974SPaul B Schroeder 	__u16 Data;
17573f542974SPaul B Schroeder 	unsigned char number;
17583f542974SPaul B Schroeder 	__u16 clk_sel_val;
17593f542974SPaul B Schroeder 	struct usb_serial_port *port;
17603f542974SPaul B Schroeder 
17613f542974SPaul B Schroeder 	if (mos7840_port == NULL)
17623f542974SPaul B Schroeder 		return -1;
17633f542974SPaul B Schroeder 
17643f542974SPaul B Schroeder 	port = (struct usb_serial_port *)mos7840_port->port;
1765441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1766*84fe6e79STony Cook 		dbg("%s", "Invalid port");
17673f542974SPaul B Schroeder 		return -1;
17683f542974SPaul B Schroeder 	}
17693f542974SPaul B Schroeder 
1770441b62c1SHarvey Harrison 	if (mos7840_serial_paranoia_check(port->serial, __func__)) {
1771*84fe6e79STony Cook 		dbg("%s", "Invalid Serial");
17723f542974SPaul B Schroeder 		return -1;
17733f542974SPaul B Schroeder 	}
17743f542974SPaul B Schroeder 
1775*84fe6e79STony Cook 	dbg("%s", "Entering ..........");
17763f542974SPaul B Schroeder 
17773f542974SPaul B Schroeder 	number = mos7840_port->port->number - mos7840_port->port->serial->minor;
17783f542974SPaul B Schroeder 
1779441b62c1SHarvey Harrison 	dbg("%s - port = %d, baud = %d", __func__,
17803f542974SPaul B Schroeder 	    mos7840_port->port->number, baudRate);
1781880af9dbSAlan Cox 	/* reset clk_uart_sel in spregOffset */
17823f542974SPaul B Schroeder 	if (baudRate > 115200) {
17833f542974SPaul B Schroeder #ifdef HW_flow_control
1784880af9dbSAlan Cox 		/* NOTE: need to see the pther register to modify */
1785880af9dbSAlan Cox 		/* setting h/w flow control bit to 1 */
17863f542974SPaul B Schroeder 		Data = 0x2b;
17873f542974SPaul B Schroeder 		mos7840_port->shadowMCR = Data;
1788880af9dbSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1789880af9dbSAlan Cox 									Data);
17903f542974SPaul B Schroeder 		if (status < 0) {
1791*84fe6e79STony Cook 			dbg("Writing spreg failed in set_serial_baud");
17923f542974SPaul B Schroeder 			return -1;
17933f542974SPaul B Schroeder 		}
17943f542974SPaul B Schroeder #endif
17953f542974SPaul B Schroeder 
17963f542974SPaul B Schroeder 	} else {
17973f542974SPaul B Schroeder #ifdef HW_flow_control
1798880af9dbSAlan Cox 		/ *setting h/w flow control bit to 0 */
17993f542974SPaul B Schroeder 		Data = 0xb;
18003f542974SPaul B Schroeder 		mos7840_port->shadowMCR = Data;
1801880af9dbSAlan Cox 		status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1802880af9dbSAlan Cox 									Data);
18033f542974SPaul B Schroeder 		if (status < 0) {
1804*84fe6e79STony Cook 			dbg("Writing spreg failed in set_serial_baud");
18053f542974SPaul B Schroeder 			return -1;
18063f542974SPaul B Schroeder 		}
18073f542974SPaul B Schroeder #endif
18083f542974SPaul B Schroeder 
18093f542974SPaul B Schroeder 	}
18103f542974SPaul B Schroeder 
1811880af9dbSAlan Cox 	if (1) {		/* baudRate <= 115200) */
18123f542974SPaul B Schroeder 		clk_sel_val = 0x0;
18133f542974SPaul B Schroeder 		Data = 0x0;
1814880af9dbSAlan Cox 		status = mos7840_calc_baud_rate_divisor(baudRate, &divisor,
18153f542974SPaul B Schroeder 						   &clk_sel_val);
1816880af9dbSAlan Cox 		status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
18173f542974SPaul B Schroeder 								 &Data);
18183f542974SPaul B Schroeder 		if (status < 0) {
1819*84fe6e79STony Cook 			dbg("reading spreg failed in set_serial_baud");
18203f542974SPaul B Schroeder 			return -1;
18213f542974SPaul B Schroeder 		}
18223f542974SPaul B Schroeder 		Data = (Data & 0x8f) | clk_sel_val;
1823880af9dbSAlan Cox 		status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1824880af9dbSAlan Cox 								Data);
18253f542974SPaul B Schroeder 		if (status < 0) {
1826*84fe6e79STony Cook 			dbg("Writing spreg failed in set_serial_baud");
18273f542974SPaul B Schroeder 			return -1;
18283f542974SPaul B Schroeder 		}
18293f542974SPaul B Schroeder 		/* Calculate the Divisor */
18303f542974SPaul B Schroeder 
18313f542974SPaul B Schroeder 		if (status) {
1832194343d9SGreg Kroah-Hartman 			dev_err(&port->dev, "%s - bad baud rate\n", __func__);
18333f542974SPaul B Schroeder 			return status;
18343f542974SPaul B Schroeder 		}
18353f542974SPaul B Schroeder 		/* Enable access to divisor latch */
18363f542974SPaul B Schroeder 		Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
18373f542974SPaul B Schroeder 		mos7840_port->shadowLCR = Data;
18383f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
18393f542974SPaul B Schroeder 
18403f542974SPaul B Schroeder 		/* Write the divisor */
18413f542974SPaul B Schroeder 		Data = (unsigned char)(divisor & 0xff);
1842*84fe6e79STony Cook 		dbg("set_serial_baud Value to write DLL is %x", Data);
18433f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
18443f542974SPaul B Schroeder 
18453f542974SPaul B Schroeder 		Data = (unsigned char)((divisor & 0xff00) >> 8);
1846*84fe6e79STony Cook 		dbg("set_serial_baud Value to write DLM is %x", Data);
18473f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
18483f542974SPaul B Schroeder 
18493f542974SPaul B Schroeder 		/* Disable access to divisor latch */
18503f542974SPaul B Schroeder 		Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
18513f542974SPaul B Schroeder 		mos7840_port->shadowLCR = Data;
18523f542974SPaul B Schroeder 		mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
18533f542974SPaul B Schroeder 
18543f542974SPaul B Schroeder 	}
18553f542974SPaul B Schroeder 	return status;
18563f542974SPaul B Schroeder }
18573f542974SPaul B Schroeder 
18583f542974SPaul B Schroeder /*****************************************************************************
18593f542974SPaul B Schroeder  * mos7840_change_port_settings
18603f542974SPaul B Schroeder  *	This routine is called to set the UART on the device to match
18613f542974SPaul B Schroeder  *      the specified new settings.
18623f542974SPaul B Schroeder  *****************************************************************************/
18633f542974SPaul B Schroeder 
186495da310eSAlan Cox static void mos7840_change_port_settings(struct tty_struct *tty,
186595da310eSAlan Cox 	struct moschip_port *mos7840_port, struct ktermios *old_termios)
18663f542974SPaul B Schroeder {
18673f542974SPaul B Schroeder 	int baud;
18683f542974SPaul B Schroeder 	unsigned cflag;
18693f542974SPaul B Schroeder 	unsigned iflag;
18703f542974SPaul B Schroeder 	__u8 lData;
18713f542974SPaul B Schroeder 	__u8 lParity;
18723f542974SPaul B Schroeder 	__u8 lStop;
18733f542974SPaul B Schroeder 	int status;
18743f542974SPaul B Schroeder 	__u16 Data;
18753f542974SPaul B Schroeder 	struct usb_serial_port *port;
18763f542974SPaul B Schroeder 	struct usb_serial *serial;
18773f542974SPaul B Schroeder 
18783f542974SPaul B Schroeder 	if (mos7840_port == NULL)
18793f542974SPaul B Schroeder 		return;
18803f542974SPaul B Schroeder 
18813f542974SPaul B Schroeder 	port = (struct usb_serial_port *)mos7840_port->port;
18823f542974SPaul B Schroeder 
1883441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
1884*84fe6e79STony Cook 		dbg("%s", "Invalid port");
18853f542974SPaul B Schroeder 		return;
18863f542974SPaul B Schroeder 	}
18873f542974SPaul B Schroeder 
1888441b62c1SHarvey Harrison 	if (mos7840_serial_paranoia_check(port->serial, __func__)) {
1889*84fe6e79STony Cook 		dbg("%s", "Invalid Serial");
18903f542974SPaul B Schroeder 		return;
18913f542974SPaul B Schroeder 	}
18923f542974SPaul B Schroeder 
18933f542974SPaul B Schroeder 	serial = port->serial;
18943f542974SPaul B Schroeder 
1895441b62c1SHarvey Harrison 	dbg("%s - port %d", __func__, mos7840_port->port->number);
18963f542974SPaul B Schroeder 
18973f542974SPaul B Schroeder 	if (!mos7840_port->open) {
1898441b62c1SHarvey Harrison 		dbg("%s - port not opened", __func__);
18993f542974SPaul B Schroeder 		return;
19003f542974SPaul B Schroeder 	}
19013f542974SPaul B Schroeder 
1902*84fe6e79STony Cook 	dbg("%s", "Entering ..........");
19033f542974SPaul B Schroeder 
19043f542974SPaul B Schroeder 	lData = LCR_BITS_8;
19053f542974SPaul B Schroeder 	lStop = LCR_STOP_1;
19063f542974SPaul B Schroeder 	lParity = LCR_PAR_NONE;
19073f542974SPaul B Schroeder 
19083f542974SPaul B Schroeder 	cflag = tty->termios->c_cflag;
19093f542974SPaul B Schroeder 	iflag = tty->termios->c_iflag;
19103f542974SPaul B Schroeder 
19113f542974SPaul B Schroeder 	/* Change the number of bits */
19123f542974SPaul B Schroeder 	if (cflag & CSIZE) {
19133f542974SPaul B Schroeder 		switch (cflag & CSIZE) {
19143f542974SPaul B Schroeder 		case CS5:
19153f542974SPaul B Schroeder 			lData = LCR_BITS_5;
19163f542974SPaul B Schroeder 			break;
19173f542974SPaul B Schroeder 
19183f542974SPaul B Schroeder 		case CS6:
19193f542974SPaul B Schroeder 			lData = LCR_BITS_6;
19203f542974SPaul B Schroeder 			break;
19213f542974SPaul B Schroeder 
19223f542974SPaul B Schroeder 		case CS7:
19233f542974SPaul B Schroeder 			lData = LCR_BITS_7;
19243f542974SPaul B Schroeder 			break;
19253f542974SPaul B Schroeder 		default:
19263f542974SPaul B Schroeder 		case CS8:
19273f542974SPaul B Schroeder 			lData = LCR_BITS_8;
19283f542974SPaul B Schroeder 			break;
19293f542974SPaul B Schroeder 		}
19303f542974SPaul B Schroeder 	}
19313f542974SPaul B Schroeder 	/* Change the Parity bit */
19323f542974SPaul B Schroeder 	if (cflag & PARENB) {
19333f542974SPaul B Schroeder 		if (cflag & PARODD) {
19343f542974SPaul B Schroeder 			lParity = LCR_PAR_ODD;
1935441b62c1SHarvey Harrison 			dbg("%s - parity = odd", __func__);
19363f542974SPaul B Schroeder 		} else {
19373f542974SPaul B Schroeder 			lParity = LCR_PAR_EVEN;
1938441b62c1SHarvey Harrison 			dbg("%s - parity = even", __func__);
19393f542974SPaul B Schroeder 		}
19403f542974SPaul B Schroeder 
19413f542974SPaul B Schroeder 	} else {
1942441b62c1SHarvey Harrison 		dbg("%s - parity = none", __func__);
19433f542974SPaul B Schroeder 	}
19443f542974SPaul B Schroeder 
1945880af9dbSAlan Cox 	if (cflag & CMSPAR)
19463f542974SPaul B Schroeder 		lParity = lParity | 0x20;
19473f542974SPaul B Schroeder 
19483f542974SPaul B Schroeder 	/* Change the Stop bit */
19493f542974SPaul B Schroeder 	if (cflag & CSTOPB) {
19503f542974SPaul B Schroeder 		lStop = LCR_STOP_2;
1951441b62c1SHarvey Harrison 		dbg("%s - stop bits = 2", __func__);
19523f542974SPaul B Schroeder 	} else {
19533f542974SPaul B Schroeder 		lStop = LCR_STOP_1;
1954441b62c1SHarvey Harrison 		dbg("%s - stop bits = 1", __func__);
19553f542974SPaul B Schroeder 	}
19563f542974SPaul B Schroeder 
19573f542974SPaul B Schroeder 	/* Update the LCR with the correct value */
19583f542974SPaul B Schroeder 	mos7840_port->shadowLCR &=
19593f542974SPaul B Schroeder 	    ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
19603f542974SPaul B Schroeder 	mos7840_port->shadowLCR |= (lData | lParity | lStop);
19613f542974SPaul B Schroeder 
1962*84fe6e79STony Cook 	dbg("mos7840_change_port_settings mos7840_port->shadowLCR is %x",
19633f542974SPaul B Schroeder 	    mos7840_port->shadowLCR);
19643f542974SPaul B Schroeder 	/* Disable Interrupts */
19653f542974SPaul B Schroeder 	Data = 0x00;
19663f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
19673f542974SPaul B Schroeder 
19683f542974SPaul B Schroeder 	Data = 0x00;
19693f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
19703f542974SPaul B Schroeder 
19713f542974SPaul B Schroeder 	Data = 0xcf;
19723f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
19733f542974SPaul B Schroeder 
19743f542974SPaul B Schroeder 	/* Send the updated LCR value to the mos7840 */
19753f542974SPaul B Schroeder 	Data = mos7840_port->shadowLCR;
19763f542974SPaul B Schroeder 
19773f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
19783f542974SPaul B Schroeder 
19793f542974SPaul B Schroeder 	Data = 0x00b;
19803f542974SPaul B Schroeder 	mos7840_port->shadowMCR = Data;
19813f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
19823f542974SPaul B Schroeder 	Data = 0x00b;
19833f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
19843f542974SPaul B Schroeder 
19853f542974SPaul B Schroeder 	/* set up the MCR register and send it to the mos7840 */
19863f542974SPaul B Schroeder 
19873f542974SPaul B Schroeder 	mos7840_port->shadowMCR = MCR_MASTER_IE;
1988880af9dbSAlan Cox 	if (cflag & CBAUD)
19893f542974SPaul B Schroeder 		mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
19903f542974SPaul B Schroeder 
1991880af9dbSAlan Cox 	if (cflag & CRTSCTS)
19923f542974SPaul B Schroeder 		mos7840_port->shadowMCR |= (MCR_XON_ANY);
1993880af9dbSAlan Cox 	else
19943f542974SPaul B Schroeder 		mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
19953f542974SPaul B Schroeder 
19963f542974SPaul B Schroeder 	Data = mos7840_port->shadowMCR;
19973f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
19983f542974SPaul B Schroeder 
19993f542974SPaul B Schroeder 	/* Determine divisor based on baud rate */
20003f542974SPaul B Schroeder 	baud = tty_get_baud_rate(tty);
20013f542974SPaul B Schroeder 
20023f542974SPaul B Schroeder 	if (!baud) {
20033f542974SPaul B Schroeder 		/* pick a default, any default... */
2004*84fe6e79STony Cook 		dbg("%s", "Picked default baud...");
20053f542974SPaul B Schroeder 		baud = 9600;
20063f542974SPaul B Schroeder 	}
20073f542974SPaul B Schroeder 
2008441b62c1SHarvey Harrison 	dbg("%s - baud rate = %d", __func__, baud);
20093f542974SPaul B Schroeder 	status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
20103f542974SPaul B Schroeder 
20113f542974SPaul B Schroeder 	/* Enable Interrupts */
20123f542974SPaul B Schroeder 	Data = 0x0c;
20133f542974SPaul B Schroeder 	mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
20143f542974SPaul B Schroeder 
201550de36f7SGreg Kroah-Hartman 	if (mos7840_port->read_urb_busy == false) {
20163f542974SPaul B Schroeder 		mos7840_port->read_urb->dev = serial->dev;
201750de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = true;
20183f542974SPaul B Schroeder 		status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
20193f542974SPaul B Schroeder 		if (status) {
20203f542974SPaul B Schroeder 			dbg("usb_submit_urb(read bulk) failed, status = %d",
20213f542974SPaul B Schroeder 			    status);
202250de36f7SGreg Kroah-Hartman 			mos7840_port->read_urb_busy = false;
20233f542974SPaul B Schroeder 		}
20243f542974SPaul B Schroeder 	}
20253f542974SPaul B Schroeder 	wake_up(&mos7840_port->delta_msr_wait);
20263f542974SPaul B Schroeder 	mos7840_port->delta_msr_cond = 1;
2027*84fe6e79STony Cook 	dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x",
20283f542974SPaul B Schroeder 	    mos7840_port->shadowLCR);
20293f542974SPaul B Schroeder 
20303f542974SPaul B Schroeder 	return;
20313f542974SPaul B Schroeder }
20323f542974SPaul B Schroeder 
20333f542974SPaul B Schroeder /*****************************************************************************
20343f542974SPaul B Schroeder  * mos7840_set_termios
20353f542974SPaul B Schroeder  *	this function is called by the tty driver when it wants to change
20363f542974SPaul B Schroeder  *	the termios structure
20373f542974SPaul B Schroeder  *****************************************************************************/
20383f542974SPaul B Schroeder 
203995da310eSAlan Cox static void mos7840_set_termios(struct tty_struct *tty,
204095da310eSAlan Cox 				struct usb_serial_port *port,
2041606d099cSAlan Cox 				struct ktermios *old_termios)
20423f542974SPaul B Schroeder {
20433f542974SPaul B Schroeder 	int status;
20443f542974SPaul B Schroeder 	unsigned int cflag;
20453f542974SPaul B Schroeder 	struct usb_serial *serial;
20463f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
2047*84fe6e79STony Cook 	dbg("mos7840_set_termios: START");
2048441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
2049*84fe6e79STony Cook 		dbg("%s", "Invalid port");
20503f542974SPaul B Schroeder 		return;
20513f542974SPaul B Schroeder 	}
20523f542974SPaul B Schroeder 
20533f542974SPaul B Schroeder 	serial = port->serial;
20543f542974SPaul B Schroeder 
2055441b62c1SHarvey Harrison 	if (mos7840_serial_paranoia_check(serial, __func__)) {
2056*84fe6e79STony Cook 		dbg("%s", "Invalid Serial");
20573f542974SPaul B Schroeder 		return;
20583f542974SPaul B Schroeder 	}
20593f542974SPaul B Schroeder 
20603f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
20613f542974SPaul B Schroeder 
20623f542974SPaul B Schroeder 	if (mos7840_port == NULL)
20633f542974SPaul B Schroeder 		return;
20643f542974SPaul B Schroeder 
20653f542974SPaul B Schroeder 	if (!mos7840_port->open) {
2066441b62c1SHarvey Harrison 		dbg("%s - port not opened", __func__);
20673f542974SPaul B Schroeder 		return;
20683f542974SPaul B Schroeder 	}
20693f542974SPaul B Schroeder 
2070*84fe6e79STony Cook 	dbg("%s", "setting termios - ");
20713f542974SPaul B Schroeder 
20723f542974SPaul B Schroeder 	cflag = tty->termios->c_cflag;
20733f542974SPaul B Schroeder 
2074441b62c1SHarvey Harrison 	dbg("%s - clfag %08x iflag %08x", __func__,
20753f542974SPaul B Schroeder 	    tty->termios->c_cflag, RELEVANT_IFLAG(tty->termios->c_iflag));
2076441b62c1SHarvey Harrison 	dbg("%s - old clfag %08x old iflag %08x", __func__,
20773f542974SPaul B Schroeder 	    old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
2078441b62c1SHarvey Harrison 	dbg("%s - port %d", __func__, port->number);
20793f542974SPaul B Schroeder 
20803f542974SPaul B Schroeder 	/* change the port settings to the new ones specified */
20813f542974SPaul B Schroeder 
208295da310eSAlan Cox 	mos7840_change_port_settings(tty, mos7840_port, old_termios);
20833f542974SPaul B Schroeder 
20843f542974SPaul B Schroeder 	if (!mos7840_port->read_urb) {
2085*84fe6e79STony Cook 		dbg("%s", "URB KILLED !!!!!");
20863f542974SPaul B Schroeder 		return;
20873f542974SPaul B Schroeder 	}
20883f542974SPaul B Schroeder 
208950de36f7SGreg Kroah-Hartman 	if (mos7840_port->read_urb_busy == false) {
20903f542974SPaul B Schroeder 		mos7840_port->read_urb->dev = serial->dev;
209150de36f7SGreg Kroah-Hartman 		mos7840_port->read_urb_busy = true;
20923f542974SPaul B Schroeder 		status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
20933f542974SPaul B Schroeder 		if (status) {
20943f542974SPaul B Schroeder 			dbg("usb_submit_urb(read bulk) failed, status = %d",
20953f542974SPaul B Schroeder 			    status);
209650de36f7SGreg Kroah-Hartman 			mos7840_port->read_urb_busy = false;
20973f542974SPaul B Schroeder 		}
20983f542974SPaul B Schroeder 	}
20993f542974SPaul B Schroeder 	return;
21003f542974SPaul B Schroeder }
21013f542974SPaul B Schroeder 
21023f542974SPaul B Schroeder /*****************************************************************************
21033f542974SPaul B Schroeder  * mos7840_get_lsr_info - get line status register info
21043f542974SPaul B Schroeder  *
21053f542974SPaul B Schroeder  * Purpose: Let user call ioctl() to get info when the UART physically
21063f542974SPaul B Schroeder  * 	    is emptied.  On bus types like RS485, the transmitter must
21073f542974SPaul B Schroeder  * 	    release the bus after transmitting. This must be done when
21083f542974SPaul B Schroeder  * 	    the transmit shift register is empty, not be done when the
21093f542974SPaul B Schroeder  * 	    transmit holding register is empty.  This functionality
21103f542974SPaul B Schroeder  * 	    allows an RS485 driver to be written in user space.
21113f542974SPaul B Schroeder  *****************************************************************************/
21123f542974SPaul B Schroeder 
211395da310eSAlan Cox static int mos7840_get_lsr_info(struct tty_struct *tty,
211497c4965dSAl Viro 				unsigned int __user *value)
21153f542974SPaul B Schroeder {
21163f542974SPaul B Schroeder 	int count;
21173f542974SPaul B Schroeder 	unsigned int result = 0;
21183f542974SPaul B Schroeder 
211995da310eSAlan Cox 	count = mos7840_chars_in_buffer(tty);
21203f542974SPaul B Schroeder 	if (count == 0) {
2121441b62c1SHarvey Harrison 		dbg("%s -- Empty", __func__);
21223f542974SPaul B Schroeder 		result = TIOCSER_TEMT;
21233f542974SPaul B Schroeder 	}
21243f542974SPaul B Schroeder 
21253f542974SPaul B Schroeder 	if (copy_to_user(value, &result, sizeof(int)))
21263f542974SPaul B Schroeder 		return -EFAULT;
21273f542974SPaul B Schroeder 	return 0;
21283f542974SPaul B Schroeder }
21293f542974SPaul B Schroeder 
21303f542974SPaul B Schroeder /*****************************************************************************
21313f542974SPaul B Schroeder  * mos7840_set_modem_info
21323f542974SPaul B Schroeder  *      function to set modem info
21333f542974SPaul B Schroeder  *****************************************************************************/
21343f542974SPaul B Schroeder 
213595da310eSAlan Cox /* FIXME: Should be using the model control hooks */
213695da310eSAlan Cox 
21373f542974SPaul B Schroeder static int mos7840_set_modem_info(struct moschip_port *mos7840_port,
213897c4965dSAl Viro 				  unsigned int cmd, unsigned int __user *value)
21393f542974SPaul B Schroeder {
21403f542974SPaul B Schroeder 	unsigned int mcr;
21413f542974SPaul B Schroeder 	unsigned int arg;
21423f542974SPaul B Schroeder 	__u16 Data;
21433f542974SPaul B Schroeder 	int status;
21443f542974SPaul B Schroeder 	struct usb_serial_port *port;
21453f542974SPaul B Schroeder 
21463f542974SPaul B Schroeder 	if (mos7840_port == NULL)
21473f542974SPaul B Schroeder 		return -1;
21483f542974SPaul B Schroeder 
21493f542974SPaul B Schroeder 	port = (struct usb_serial_port *)mos7840_port->port;
2150441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
2151*84fe6e79STony Cook 		dbg("%s", "Invalid port");
21523f542974SPaul B Schroeder 		return -1;
21533f542974SPaul B Schroeder 	}
21543f542974SPaul B Schroeder 
21553f542974SPaul B Schroeder 	mcr = mos7840_port->shadowMCR;
21563f542974SPaul B Schroeder 
21573f542974SPaul B Schroeder 	if (copy_from_user(&arg, value, sizeof(int)))
21583f542974SPaul B Schroeder 		return -EFAULT;
21593f542974SPaul B Schroeder 
21603f542974SPaul B Schroeder 	switch (cmd) {
21613f542974SPaul B Schroeder 	case TIOCMBIS:
21623f542974SPaul B Schroeder 		if (arg & TIOCM_RTS)
21633f542974SPaul B Schroeder 			mcr |= MCR_RTS;
21643f542974SPaul B Schroeder 		if (arg & TIOCM_DTR)
21653f542974SPaul B Schroeder 			mcr |= MCR_RTS;
21663f542974SPaul B Schroeder 		if (arg & TIOCM_LOOP)
21673f542974SPaul B Schroeder 			mcr |= MCR_LOOPBACK;
21683f542974SPaul B Schroeder 		break;
21693f542974SPaul B Schroeder 
21703f542974SPaul B Schroeder 	case TIOCMBIC:
21713f542974SPaul B Schroeder 		if (arg & TIOCM_RTS)
21723f542974SPaul B Schroeder 			mcr &= ~MCR_RTS;
21733f542974SPaul B Schroeder 		if (arg & TIOCM_DTR)
21743f542974SPaul B Schroeder 			mcr &= ~MCR_RTS;
21753f542974SPaul B Schroeder 		if (arg & TIOCM_LOOP)
21763f542974SPaul B Schroeder 			mcr &= ~MCR_LOOPBACK;
21773f542974SPaul B Schroeder 		break;
21783f542974SPaul B Schroeder 
21793f542974SPaul B Schroeder 	case TIOCMSET:
21803f542974SPaul B Schroeder 		/* turn off the RTS and DTR and LOOPBACK
21813f542974SPaul B Schroeder 		 * and then only turn on what was asked to */
21823f542974SPaul B Schroeder 		mcr &= ~(MCR_RTS | MCR_DTR | MCR_LOOPBACK);
21833f542974SPaul B Schroeder 		mcr |= ((arg & TIOCM_RTS) ? MCR_RTS : 0);
21843f542974SPaul B Schroeder 		mcr |= ((arg & TIOCM_DTR) ? MCR_DTR : 0);
21853f542974SPaul B Schroeder 		mcr |= ((arg & TIOCM_LOOP) ? MCR_LOOPBACK : 0);
21863f542974SPaul B Schroeder 		break;
21873f542974SPaul B Schroeder 	}
21883f542974SPaul B Schroeder 
21896b447f04SAlan Cox 	lock_kernel();
21903f542974SPaul B Schroeder 	mos7840_port->shadowMCR = mcr;
21913f542974SPaul B Schroeder 
21923f542974SPaul B Schroeder 	Data = mos7840_port->shadowMCR;
21933f542974SPaul B Schroeder 	status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
21946b447f04SAlan Cox 	unlock_kernel();
21953f542974SPaul B Schroeder 	if (status < 0) {
2196*84fe6e79STony Cook 		dbg("setting MODEM_CONTROL_REGISTER Failed");
21973f542974SPaul B Schroeder 		return -1;
21983f542974SPaul B Schroeder 	}
21993f542974SPaul B Schroeder 
22003f542974SPaul B Schroeder 	return 0;
22013f542974SPaul B Schroeder }
22023f542974SPaul B Schroeder 
22033f542974SPaul B Schroeder /*****************************************************************************
22043f542974SPaul B Schroeder  * mos7840_get_modem_info
22053f542974SPaul B Schroeder  *      function to get modem info
22063f542974SPaul B Schroeder  *****************************************************************************/
22073f542974SPaul B Schroeder 
22083f542974SPaul B Schroeder static int mos7840_get_modem_info(struct moschip_port *mos7840_port,
220997c4965dSAl Viro 				  unsigned int __user *value)
22103f542974SPaul B Schroeder {
22113f542974SPaul B Schroeder 	unsigned int result = 0;
22123f542974SPaul B Schroeder 	__u16 msr;
22133f542974SPaul B Schroeder 	unsigned int mcr = mos7840_port->shadowMCR;
2214880af9dbSAlan Cox         mos7840_get_uart_reg(mos7840_port->port,
221595da310eSAlan Cox 						MODEM_STATUS_REGISTER, &msr);
22163f542974SPaul B Schroeder 	result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)	/* 0x002 */
22173f542974SPaul B Schroeder 	    |((mcr & MCR_RTS) ? TIOCM_RTS : 0)	/* 0x004 */
22183f542974SPaul B Schroeder 	    |((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)	/* 0x020 */
22193f542974SPaul B Schroeder 	    |((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)	/* 0x040 */
22203f542974SPaul B Schroeder 	    |((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)	/* 0x080 */
22213f542974SPaul B Schroeder 	    |((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);	/* 0x100 */
22223f542974SPaul B Schroeder 
2223441b62c1SHarvey Harrison 	dbg("%s -- %x", __func__, result);
22243f542974SPaul B Schroeder 
22253f542974SPaul B Schroeder 	if (copy_to_user(value, &result, sizeof(int)))
22263f542974SPaul B Schroeder 		return -EFAULT;
22273f542974SPaul B Schroeder 	return 0;
22283f542974SPaul B Schroeder }
22293f542974SPaul B Schroeder 
22303f542974SPaul B Schroeder /*****************************************************************************
22313f542974SPaul B Schroeder  * mos7840_get_serial_info
22323f542974SPaul B Schroeder  *      function to get information about serial port
22333f542974SPaul B Schroeder  *****************************************************************************/
22343f542974SPaul B Schroeder 
22353f542974SPaul B Schroeder static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
223697c4965dSAl Viro 				   struct serial_struct __user *retinfo)
22373f542974SPaul B Schroeder {
22383f542974SPaul B Schroeder 	struct serial_struct tmp;
22393f542974SPaul B Schroeder 
22403f542974SPaul B Schroeder 	if (mos7840_port == NULL)
22413f542974SPaul B Schroeder 		return -1;
22423f542974SPaul B Schroeder 
22433f542974SPaul B Schroeder 	if (!retinfo)
22443f542974SPaul B Schroeder 		return -EFAULT;
22453f542974SPaul B Schroeder 
22463f542974SPaul B Schroeder 	memset(&tmp, 0, sizeof(tmp));
22473f542974SPaul B Schroeder 
22483f542974SPaul B Schroeder 	tmp.type = PORT_16550A;
22493f542974SPaul B Schroeder 	tmp.line = mos7840_port->port->serial->minor;
22503f542974SPaul B Schroeder 	tmp.port = mos7840_port->port->number;
22513f542974SPaul B Schroeder 	tmp.irq = 0;
22523f542974SPaul B Schroeder 	tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
22533f542974SPaul B Schroeder 	tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
22543f542974SPaul B Schroeder 	tmp.baud_base = 9600;
22553f542974SPaul B Schroeder 	tmp.close_delay = 5 * HZ;
22563f542974SPaul B Schroeder 	tmp.closing_wait = 30 * HZ;
22573f542974SPaul B Schroeder 
22583f542974SPaul B Schroeder 	if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
22593f542974SPaul B Schroeder 		return -EFAULT;
22603f542974SPaul B Schroeder 	return 0;
22613f542974SPaul B Schroeder }
22623f542974SPaul B Schroeder 
22633f542974SPaul B Schroeder /*****************************************************************************
22643f542974SPaul B Schroeder  * SerialIoctl
22653f542974SPaul B Schroeder  *	this function handles any ioctl calls to the driver
22663f542974SPaul B Schroeder  *****************************************************************************/
22673f542974SPaul B Schroeder 
226895da310eSAlan Cox static int mos7840_ioctl(struct tty_struct *tty, struct file *file,
22693f542974SPaul B Schroeder 			 unsigned int cmd, unsigned long arg)
22703f542974SPaul B Schroeder {
227195da310eSAlan Cox 	struct usb_serial_port *port = tty->driver_data;
227297c4965dSAl Viro 	void __user *argp = (void __user *)arg;
22733f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
22743f542974SPaul B Schroeder 
22753f542974SPaul B Schroeder 	struct async_icount cnow;
22763f542974SPaul B Schroeder 	struct async_icount cprev;
22773f542974SPaul B Schroeder 	struct serial_icounter_struct icount;
22783f542974SPaul B Schroeder 	int mosret = 0;
22793f542974SPaul B Schroeder 
2280441b62c1SHarvey Harrison 	if (mos7840_port_paranoia_check(port, __func__)) {
2281*84fe6e79STony Cook 		dbg("%s", "Invalid port");
22823f542974SPaul B Schroeder 		return -1;
22833f542974SPaul B Schroeder 	}
22843f542974SPaul B Schroeder 
22853f542974SPaul B Schroeder 	mos7840_port = mos7840_get_port_private(port);
22863f542974SPaul B Schroeder 
22873f542974SPaul B Schroeder 	if (mos7840_port == NULL)
22883f542974SPaul B Schroeder 		return -1;
22893f542974SPaul B Schroeder 
2290441b62c1SHarvey Harrison 	dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
22913f542974SPaul B Schroeder 
22923f542974SPaul B Schroeder 	switch (cmd) {
22933f542974SPaul B Schroeder 		/* return number of bytes available */
22943f542974SPaul B Schroeder 
22953f542974SPaul B Schroeder 	case TIOCSERGETLSR:
2296441b62c1SHarvey Harrison 		dbg("%s (%d) TIOCSERGETLSR", __func__, port->number);
229795da310eSAlan Cox 		return mos7840_get_lsr_info(tty, argp);
22983f542974SPaul B Schroeder 		return 0;
22993f542974SPaul B Schroeder 
230095da310eSAlan Cox 	/* FIXME: use the modem hooks and remove this */
23013f542974SPaul B Schroeder 	case TIOCMBIS:
23023f542974SPaul B Schroeder 	case TIOCMBIC:
23033f542974SPaul B Schroeder 	case TIOCMSET:
2304441b62c1SHarvey Harrison 		dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET", __func__,
23053f542974SPaul B Schroeder 		    port->number);
23063f542974SPaul B Schroeder 		mosret =
230797c4965dSAl Viro 		    mos7840_set_modem_info(mos7840_port, cmd, argp);
23083f542974SPaul B Schroeder 		return mosret;
23093f542974SPaul B Schroeder 
23103f542974SPaul B Schroeder 	case TIOCMGET:
2311441b62c1SHarvey Harrison 		dbg("%s (%d) TIOCMGET", __func__, port->number);
231297c4965dSAl Viro 		return mos7840_get_modem_info(mos7840_port, argp);
23133f542974SPaul B Schroeder 
23143f542974SPaul B Schroeder 	case TIOCGSERIAL:
2315441b62c1SHarvey Harrison 		dbg("%s (%d) TIOCGSERIAL", __func__, port->number);
231697c4965dSAl Viro 		return mos7840_get_serial_info(mos7840_port, argp);
23173f542974SPaul B Schroeder 
23183f542974SPaul B Schroeder 	case TIOCSSERIAL:
2319441b62c1SHarvey Harrison 		dbg("%s (%d) TIOCSSERIAL", __func__, port->number);
23203f542974SPaul B Schroeder 		break;
23213f542974SPaul B Schroeder 
23223f542974SPaul B Schroeder 	case TIOCMIWAIT:
2323441b62c1SHarvey Harrison 		dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
23243f542974SPaul B Schroeder 		cprev = mos7840_port->icount;
23253f542974SPaul B Schroeder 		while (1) {
2326880af9dbSAlan Cox 			/* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */
23273f542974SPaul B Schroeder 			mos7840_port->delta_msr_cond = 0;
23283f542974SPaul B Schroeder 			wait_event_interruptible(mos7840_port->delta_msr_wait,
23293f542974SPaul B Schroeder 						 (mos7840_port->
23303f542974SPaul B Schroeder 						  delta_msr_cond == 1));
23313f542974SPaul B Schroeder 
23323f542974SPaul B Schroeder 			/* see if a signal did it */
23333f542974SPaul B Schroeder 			if (signal_pending(current))
23343f542974SPaul B Schroeder 				return -ERESTARTSYS;
23353f542974SPaul B Schroeder 			cnow = mos7840_port->icount;
23360de9a702SOliver Neukum 			smp_rmb();
23373f542974SPaul B Schroeder 			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
23383f542974SPaul B Schroeder 			    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
23393f542974SPaul B Schroeder 				return -EIO;	/* no change => error */
23403f542974SPaul B Schroeder 			if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
23413f542974SPaul B Schroeder 			    ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
23423f542974SPaul B Schroeder 			    ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
23433f542974SPaul B Schroeder 			    ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
23443f542974SPaul B Schroeder 				return 0;
23453f542974SPaul B Schroeder 			}
23463f542974SPaul B Schroeder 			cprev = cnow;
23473f542974SPaul B Schroeder 		}
23483f542974SPaul B Schroeder 		/* NOTREACHED */
23493f542974SPaul B Schroeder 		break;
23503f542974SPaul B Schroeder 
23513f542974SPaul B Schroeder 	case TIOCGICOUNT:
23523f542974SPaul B Schroeder 		cnow = mos7840_port->icount;
23530de9a702SOliver Neukum 		smp_rmb();
23543f542974SPaul B Schroeder 		icount.cts = cnow.cts;
23553f542974SPaul B Schroeder 		icount.dsr = cnow.dsr;
23563f542974SPaul B Schroeder 		icount.rng = cnow.rng;
23573f542974SPaul B Schroeder 		icount.dcd = cnow.dcd;
23583f542974SPaul B Schroeder 		icount.rx = cnow.rx;
23593f542974SPaul B Schroeder 		icount.tx = cnow.tx;
23603f542974SPaul B Schroeder 		icount.frame = cnow.frame;
23613f542974SPaul B Schroeder 		icount.overrun = cnow.overrun;
23623f542974SPaul B Schroeder 		icount.parity = cnow.parity;
23633f542974SPaul B Schroeder 		icount.brk = cnow.brk;
23643f542974SPaul B Schroeder 		icount.buf_overrun = cnow.buf_overrun;
23653f542974SPaul B Schroeder 
2366441b62c1SHarvey Harrison 		dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
23673f542974SPaul B Schroeder 		    port->number, icount.rx, icount.tx);
236897c4965dSAl Viro 		if (copy_to_user(argp, &icount, sizeof(icount)))
23693f542974SPaul B Schroeder 			return -EFAULT;
23703f542974SPaul B Schroeder 		return 0;
23713f542974SPaul B Schroeder 	default:
23723f542974SPaul B Schroeder 		break;
23733f542974SPaul B Schroeder 	}
23743f542974SPaul B Schroeder 	return -ENOIOCTLCMD;
23753f542974SPaul B Schroeder }
23763f542974SPaul B Schroeder 
23773f542974SPaul B Schroeder static int mos7840_calc_num_ports(struct usb_serial *serial)
23783f542974SPaul B Schroeder {
23790de9a702SOliver Neukum 	int mos7840_num_ports = 0;
23803f542974SPaul B Schroeder 
2381*84fe6e79STony Cook 	dbg("numberofendpoints: cur %d, alt %d",
2382*84fe6e79STony Cook 	    (int)serial->interface->cur_altsetting->desc.bNumEndpoints,
23833f542974SPaul B Schroeder 	    (int)serial->interface->altsetting->desc.bNumEndpoints);
23843f542974SPaul B Schroeder 	if (serial->interface->cur_altsetting->desc.bNumEndpoints == 5) {
23850de9a702SOliver Neukum 		mos7840_num_ports = serial->num_ports = 2;
23863f542974SPaul B Schroeder 	} else if (serial->interface->cur_altsetting->desc.bNumEndpoints == 9) {
23870de9a702SOliver Neukum 		serial->num_bulk_in = 4;
23880de9a702SOliver Neukum 		serial->num_bulk_out = 4;
23890de9a702SOliver Neukum 		mos7840_num_ports = serial->num_ports = 4;
23903f542974SPaul B Schroeder 	}
2391*84fe6e79STony Cook 	dbg ("mos7840_num_ports = %d", mos7840_num_ports);
23923f542974SPaul B Schroeder 	return mos7840_num_ports;
23933f542974SPaul B Schroeder }
23943f542974SPaul B Schroeder 
23953f542974SPaul B Schroeder /****************************************************************************
23963f542974SPaul B Schroeder  * mos7840_startup
23973f542974SPaul B Schroeder  ****************************************************************************/
23983f542974SPaul B Schroeder 
23993f542974SPaul B Schroeder static int mos7840_startup(struct usb_serial *serial)
24003f542974SPaul B Schroeder {
24013f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
24023f542974SPaul B Schroeder 	struct usb_device *dev;
24033f542974SPaul B Schroeder 	int i, status;
24043f542974SPaul B Schroeder 
24053f542974SPaul B Schroeder 	__u16 Data;
2406*84fe6e79STony Cook 	dbg("%s", "mos7840_startup :Entering..........");
24073f542974SPaul B Schroeder 
24083f542974SPaul B Schroeder 	if (!serial) {
2409*84fe6e79STony Cook 		dbg("%s", "Invalid Handler");
24103f542974SPaul B Schroeder 		return -1;
24113f542974SPaul B Schroeder 	}
24123f542974SPaul B Schroeder 
24133f542974SPaul B Schroeder 	dev = serial->dev;
24143f542974SPaul B Schroeder 
2415*84fe6e79STony Cook 	dbg("%s", "Entering...");
2416*84fe6e79STony Cook 	dbg ("mos7840_startup: serial = %p", serial);
24173f542974SPaul B Schroeder 
24183f542974SPaul B Schroeder 	/* we set up the pointers to the endpoints in the mos7840_open *
24193f542974SPaul B Schroeder 	 * function, as the structures aren't created yet.             */
24203f542974SPaul B Schroeder 
24213f542974SPaul B Schroeder 	/* set up port private structures */
24223f542974SPaul B Schroeder 	for (i = 0; i < serial->num_ports; ++i) {
2423*84fe6e79STony Cook 		dbg ("mos7840_startup: configuring port %d............", i);
24247ac9da10SBurman Yan 		mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
24253f542974SPaul B Schroeder 		if (mos7840_port == NULL) {
2426194343d9SGreg Kroah-Hartman 			dev_err(&dev->dev, "%s - Out of memory\n", __func__);
24270de9a702SOliver Neukum 			status = -ENOMEM;
24280de9a702SOliver Neukum 			i--; /* don't follow NULL pointer cleaning up */
24290de9a702SOliver Neukum 			goto error;
24303f542974SPaul B Schroeder 		}
24313f542974SPaul B Schroeder 
2432880af9dbSAlan Cox 		/* Initialize all port interrupt end point to port 0 int
2433880af9dbSAlan Cox 		 * endpoint. Our device has only one interrupt end point
2434880af9dbSAlan Cox 		 * common to all port */
24353f542974SPaul B Schroeder 
24363f542974SPaul B Schroeder 		mos7840_port->port = serial->port[i];
24373f542974SPaul B Schroeder 		mos7840_set_port_private(serial->port[i], mos7840_port);
24380de9a702SOliver Neukum 		spin_lock_init(&mos7840_port->pool_lock);
24393f542974SPaul B Schroeder 
244037768adfSTony Cook 		/* minor is not initialised until later by
244137768adfSTony Cook 		 * usb-serial.c:get_free_serial() and cannot therefore be used
244237768adfSTony Cook 		 * to index device instances */
244337768adfSTony Cook 		mos7840_port->port_num = i + 1;
244437768adfSTony Cook 		dbg ("serial->port[i]->number = %d", serial->port[i]->number);
244537768adfSTony Cook 		dbg ("serial->port[i]->serial->minor = %d", serial->port[i]->serial->minor);
244637768adfSTony Cook 		dbg ("mos7840_port->port_num = %d", mos7840_port->port_num);
244737768adfSTony Cook 		dbg ("serial->minor = %d", serial->minor);
24483f542974SPaul B Schroeder 
24493f542974SPaul B Schroeder 		if (mos7840_port->port_num == 1) {
24503f542974SPaul B Schroeder 			mos7840_port->SpRegOffset = 0x0;
24513f542974SPaul B Schroeder 			mos7840_port->ControlRegOffset = 0x1;
24523f542974SPaul B Schroeder 			mos7840_port->DcrRegOffset = 0x4;
24533f542974SPaul B Schroeder 		} else if ((mos7840_port->port_num == 2)
24540de9a702SOliver Neukum 			   && (serial->num_ports == 4)) {
24553f542974SPaul B Schroeder 			mos7840_port->SpRegOffset = 0x8;
24563f542974SPaul B Schroeder 			mos7840_port->ControlRegOffset = 0x9;
24573f542974SPaul B Schroeder 			mos7840_port->DcrRegOffset = 0x16;
24583f542974SPaul B Schroeder 		} else if ((mos7840_port->port_num == 2)
24590de9a702SOliver Neukum 			   && (serial->num_ports == 2)) {
24603f542974SPaul B Schroeder 			mos7840_port->SpRegOffset = 0xa;
24613f542974SPaul B Schroeder 			mos7840_port->ControlRegOffset = 0xb;
24623f542974SPaul B Schroeder 			mos7840_port->DcrRegOffset = 0x19;
24633f542974SPaul B Schroeder 		} else if ((mos7840_port->port_num == 3)
24640de9a702SOliver Neukum 			   && (serial->num_ports == 4)) {
24653f542974SPaul B Schroeder 			mos7840_port->SpRegOffset = 0xa;
24663f542974SPaul B Schroeder 			mos7840_port->ControlRegOffset = 0xb;
24673f542974SPaul B Schroeder 			mos7840_port->DcrRegOffset = 0x19;
24683f542974SPaul B Schroeder 		} else if ((mos7840_port->port_num == 4)
24690de9a702SOliver Neukum 			   && (serial->num_ports == 4)) {
24703f542974SPaul B Schroeder 			mos7840_port->SpRegOffset = 0xc;
24713f542974SPaul B Schroeder 			mos7840_port->ControlRegOffset = 0xd;
24723f542974SPaul B Schroeder 			mos7840_port->DcrRegOffset = 0x1c;
24733f542974SPaul B Schroeder 		}
24743f542974SPaul B Schroeder 		mos7840_dump_serial_port(mos7840_port);
24753f542974SPaul B Schroeder 		mos7840_set_port_private(serial->port[i], mos7840_port);
24763f542974SPaul B Schroeder 
2477880af9dbSAlan Cox 		/* enable rx_disable bit in control register */
2478880af9dbSAlan Cox 		status = mos7840_get_reg_sync(serial->port[i],
24793f542974SPaul B Schroeder 				 mos7840_port->ControlRegOffset, &Data);
24803f542974SPaul B Schroeder 		if (status < 0) {
2481*84fe6e79STony Cook 			dbg("Reading ControlReg failed status-0x%x", status);
24823f542974SPaul B Schroeder 			break;
24833f542974SPaul B Schroeder 		} else
2484*84fe6e79STony Cook 			dbg("ControlReg Reading success val is %x, status%d",
24853f542974SPaul B Schroeder 			    Data, status);
2486880af9dbSAlan Cox 		Data |= 0x08;	/* setting driver done bit */
2487880af9dbSAlan Cox 		Data |= 0x04;	/* sp1_bit to have cts change reflect in
2488880af9dbSAlan Cox 				   modem status reg */
24893f542974SPaul B Schroeder 
2490880af9dbSAlan Cox 		/* Data |= 0x20; //rx_disable bit */
2491880af9dbSAlan Cox 		status = mos7840_set_reg_sync(serial->port[i],
24923f542974SPaul B Schroeder 					 mos7840_port->ControlRegOffset, Data);
24933f542974SPaul B Schroeder 		if (status < 0) {
2494*84fe6e79STony Cook 			dbg("Writing ControlReg failed(rx_disable) status-0x%x", status);
24953f542974SPaul B Schroeder 			break;
24963f542974SPaul B Schroeder 		} else
2497*84fe6e79STony Cook 			dbg("ControlReg Writing success(rx_disable) status%d",
24983f542974SPaul B Schroeder 			    status);
24993f542974SPaul B Schroeder 
2500880af9dbSAlan Cox 		/* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2501880af9dbSAlan Cox 		   and 0x24 in DCR3 */
25023f542974SPaul B Schroeder 		Data = 0x01;
2503880af9dbSAlan Cox 		status = mos7840_set_reg_sync(serial->port[i],
2504880af9dbSAlan Cox 			 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
25053f542974SPaul B Schroeder 		if (status < 0) {
2506*84fe6e79STony Cook 			dbg("Writing DCR0 failed status-0x%x", status);
25073f542974SPaul B Schroeder 			break;
25083f542974SPaul B Schroeder 		} else
2509*84fe6e79STony Cook 			dbg("DCR0 Writing success status%d", status);
25103f542974SPaul B Schroeder 
25113f542974SPaul B Schroeder 		Data = 0x05;
2512880af9dbSAlan Cox 		status = mos7840_set_reg_sync(serial->port[i],
2513880af9dbSAlan Cox 			 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
25143f542974SPaul B Schroeder 		if (status < 0) {
2515*84fe6e79STony Cook 			dbg("Writing DCR1 failed status-0x%x", status);
25163f542974SPaul B Schroeder 			break;
25173f542974SPaul B Schroeder 		} else
2518*84fe6e79STony Cook 			dbg("DCR1 Writing success status%d", status);
25193f542974SPaul B Schroeder 
25203f542974SPaul B Schroeder 		Data = 0x24;
2521880af9dbSAlan Cox 		status = mos7840_set_reg_sync(serial->port[i],
2522880af9dbSAlan Cox 			 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
25233f542974SPaul B Schroeder 		if (status < 0) {
2524*84fe6e79STony Cook 			dbg("Writing DCR2 failed status-0x%x", status);
25253f542974SPaul B Schroeder 			break;
25263f542974SPaul B Schroeder 		} else
2527*84fe6e79STony Cook 			dbg("DCR2 Writing success status%d", status);
25283f542974SPaul B Schroeder 
2529880af9dbSAlan Cox 		/* write values in clkstart0x0 and clkmulti 0x20 */
25303f542974SPaul B Schroeder 		Data = 0x0;
2531880af9dbSAlan Cox 		status = mos7840_set_reg_sync(serial->port[i],
25323f542974SPaul B Schroeder 					 CLK_START_VALUE_REGISTER, Data);
25333f542974SPaul B Schroeder 		if (status < 0) {
2534*84fe6e79STony Cook 			dbg("Writing CLK_START_VALUE_REGISTER failed status-0x%x", status);
25353f542974SPaul B Schroeder 			break;
25363f542974SPaul B Schroeder 		} else
2537*84fe6e79STony Cook 			dbg("CLK_START_VALUE_REGISTER Writing success status%d", status);
25383f542974SPaul B Schroeder 
25393f542974SPaul B Schroeder 		Data = 0x20;
2540880af9dbSAlan Cox 		status = mos7840_set_reg_sync(serial->port[i],
2541880af9dbSAlan Cox 					CLK_MULTI_REGISTER, Data);
25423f542974SPaul B Schroeder 		if (status < 0) {
2543*84fe6e79STony Cook 			dbg("Writing CLK_MULTI_REGISTER failed status-0x%x",
25443f542974SPaul B Schroeder 			    status);
25450de9a702SOliver Neukum 			goto error;
25463f542974SPaul B Schroeder 		} else
2547*84fe6e79STony Cook 			dbg("CLK_MULTI_REGISTER Writing success status%d",
25483f542974SPaul B Schroeder 			    status);
25493f542974SPaul B Schroeder 
2550880af9dbSAlan Cox 		/* write value 0x0 to scratchpad register */
25513f542974SPaul B Schroeder 		Data = 0x00;
2552880af9dbSAlan Cox 		status = mos7840_set_uart_reg(serial->port[i],
2553880af9dbSAlan Cox 						SCRATCH_PAD_REGISTER, Data);
25543f542974SPaul B Schroeder 		if (status < 0) {
2555*84fe6e79STony Cook 			dbg("Writing SCRATCH_PAD_REGISTER failed status-0x%x",
25563f542974SPaul B Schroeder 			    status);
25573f542974SPaul B Schroeder 			break;
25583f542974SPaul B Schroeder 		} else
2559*84fe6e79STony Cook 			dbg("SCRATCH_PAD_REGISTER Writing success status%d",
25603f542974SPaul B Schroeder 			    status);
25613f542974SPaul B Schroeder 
2562880af9dbSAlan Cox 		/* Zero Length flag register */
25633f542974SPaul B Schroeder 		if ((mos7840_port->port_num != 1)
25640de9a702SOliver Neukum 		    && (serial->num_ports == 2)) {
25653f542974SPaul B Schroeder 
25663f542974SPaul B Schroeder 			Data = 0xff;
25673f542974SPaul B Schroeder 			status = mos7840_set_reg_sync(serial->port[i],
25683f542974SPaul B Schroeder 				      (__u16) (ZLP_REG1 +
2569880af9dbSAlan Cox 				      ((__u16)mos7840_port->port_num)), Data);
2570*84fe6e79STony Cook 			dbg("ZLIP offset %x",
25713f542974SPaul B Schroeder 			    (__u16) (ZLP_REG1 +
25723f542974SPaul B Schroeder 					((__u16) mos7840_port->port_num)));
25733f542974SPaul B Schroeder 			if (status < 0) {
2574*84fe6e79STony Cook 				dbg("Writing ZLP_REG%d failed status-0x%x",
25753f542974SPaul B Schroeder 				    i + 2, status);
25763f542974SPaul B Schroeder 				break;
25773f542974SPaul B Schroeder 			} else
2578*84fe6e79STony Cook 				dbg("ZLP_REG%d Writing success status%d",
25793f542974SPaul B Schroeder 				    i + 2, status);
25803f542974SPaul B Schroeder 		} else {
25813f542974SPaul B Schroeder 			Data = 0xff;
25823f542974SPaul B Schroeder 			status = mos7840_set_reg_sync(serial->port[i],
25833f542974SPaul B Schroeder 			      (__u16) (ZLP_REG1 +
2584880af9dbSAlan Cox 			      ((__u16)mos7840_port->port_num) - 0x1), Data);
2585*84fe6e79STony Cook 			dbg("ZLIP offset %x",
25863f542974SPaul B Schroeder 			    (__u16) (ZLP_REG1 +
25873f542974SPaul B Schroeder 				     ((__u16) mos7840_port->port_num) - 0x1));
25883f542974SPaul B Schroeder 			if (status < 0) {
2589*84fe6e79STony Cook 				dbg("Writing ZLP_REG%d failed status-0x%x",
25903f542974SPaul B Schroeder 				    i + 1, status);
25913f542974SPaul B Schroeder 				break;
25923f542974SPaul B Schroeder 			} else
2593*84fe6e79STony Cook 				dbg("ZLP_REG%d Writing success status%d",
25943f542974SPaul B Schroeder 				    i + 1, status);
25953f542974SPaul B Schroeder 
25963f542974SPaul B Schroeder 		}
25970de9a702SOliver Neukum 		mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
25983f542974SPaul B Schroeder 		mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
2599880af9dbSAlan Cox 		mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2600880af9dbSAlan Cox 								GFP_KERNEL);
2601880af9dbSAlan Cox 		if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2602880af9dbSAlan Cox 							!mos7840_port->dr) {
26030de9a702SOliver Neukum 			status = -ENOMEM;
26040de9a702SOliver Neukum 			goto error;
26050de9a702SOliver Neukum 		}
26063f542974SPaul B Schroeder 	}
2607*84fe6e79STony Cook 	dbg ("mos7840_startup: all ports configured...........");
26083f542974SPaul B Schroeder 
2609880af9dbSAlan Cox 	/* Zero Length flag enable */
26103f542974SPaul B Schroeder 	Data = 0x0f;
26113f542974SPaul B Schroeder 	status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
26123f542974SPaul B Schroeder 	if (status < 0) {
2613*84fe6e79STony Cook 		dbg("Writing ZLP_REG5 failed status-0x%x", status);
26147ced46c3SRoel Kluin 		goto error;
26153f542974SPaul B Schroeder 	} else
2616*84fe6e79STony Cook 		dbg("ZLP_REG5 Writing success status%d", status);
26173f542974SPaul B Schroeder 
26183f542974SPaul B Schroeder 	/* setting configuration feature to one */
26193f542974SPaul B Schroeder 	usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
262097c4965dSAl Viro 			(__u8) 0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5 * HZ);
26213f542974SPaul B Schroeder 	return 0;
26220de9a702SOliver Neukum error:
26230de9a702SOliver Neukum 	for (/* nothing */; i >= 0; i--) {
26240de9a702SOliver Neukum 		mos7840_port = mos7840_get_port_private(serial->port[i]);
26250de9a702SOliver Neukum 
26260de9a702SOliver Neukum 		kfree(mos7840_port->dr);
26270de9a702SOliver Neukum 		kfree(mos7840_port->ctrl_buf);
26280de9a702SOliver Neukum 		usb_free_urb(mos7840_port->control_urb);
26290de9a702SOliver Neukum 		kfree(mos7840_port);
26300de9a702SOliver Neukum 		serial->port[i] = NULL;
26310de9a702SOliver Neukum 	}
26320de9a702SOliver Neukum 	return status;
26333f542974SPaul B Schroeder }
26343f542974SPaul B Schroeder 
26353f542974SPaul B Schroeder /****************************************************************************
26363f542974SPaul B Schroeder  * mos7840_shutdown
26373f542974SPaul B Schroeder  *	This function is called whenever the device is removed from the usb bus.
26383f542974SPaul B Schroeder  ****************************************************************************/
26393f542974SPaul B Schroeder 
26403f542974SPaul B Schroeder static void mos7840_shutdown(struct usb_serial *serial)
26413f542974SPaul B Schroeder {
26423f542974SPaul B Schroeder 	int i;
26430de9a702SOliver Neukum 	unsigned long flags;
26443f542974SPaul B Schroeder 	struct moschip_port *mos7840_port;
2645*84fe6e79STony Cook 	dbg("%s", " shutdown :entering..........");
26463f542974SPaul B Schroeder 
26473f542974SPaul B Schroeder 	if (!serial) {
2648*84fe6e79STony Cook 		dbg("%s", "Invalid Handler");
26493f542974SPaul B Schroeder 		return;
26503f542974SPaul B Schroeder 	}
26513f542974SPaul B Schroeder 
26523f542974SPaul B Schroeder 	/* check for the ports to be closed,close the ports and disconnect */
26533f542974SPaul B Schroeder 
26543f542974SPaul B Schroeder 	/* free private structure allocated for serial port  *
26553f542974SPaul B Schroeder 	 * stop reads and writes on all ports                */
26563f542974SPaul B Schroeder 
26573f542974SPaul B Schroeder 	for (i = 0; i < serial->num_ports; ++i) {
26583f542974SPaul B Schroeder 		mos7840_port = mos7840_get_port_private(serial->port[i]);
265937768adfSTony Cook 		dbg ("mos7840_port %d = %p", i, mos7840_port);
266037768adfSTony Cook 		if (mos7840_port) {
26610de9a702SOliver Neukum 			spin_lock_irqsave(&mos7840_port->pool_lock, flags);
26620de9a702SOliver Neukum 			mos7840_port->zombie = 1;
26630de9a702SOliver Neukum 			spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
26643f542974SPaul B Schroeder 			usb_kill_urb(mos7840_port->control_urb);
26650de9a702SOliver Neukum 			kfree(mos7840_port->ctrl_buf);
26660de9a702SOliver Neukum 			kfree(mos7840_port->dr);
26673f542974SPaul B Schroeder 			kfree(mos7840_port);
266837768adfSTony Cook 		}
26693f542974SPaul B Schroeder 		mos7840_set_port_private(serial->port[i], NULL);
26703f542974SPaul B Schroeder 	}
26713f542974SPaul B Schroeder 
2672*84fe6e79STony Cook 	dbg("%s", "Thank u :: ");
26733f542974SPaul B Schroeder 
26743f542974SPaul B Schroeder }
26753f542974SPaul B Schroeder 
2676d9b1b787SJohannes Hölzl static struct usb_driver io_driver = {
2677d9b1b787SJohannes Hölzl 	.name = "mos7840",
2678d9b1b787SJohannes Hölzl 	.probe = usb_serial_probe,
2679d9b1b787SJohannes Hölzl 	.disconnect = usb_serial_disconnect,
2680d9b1b787SJohannes Hölzl 	.id_table = moschip_id_table_combined,
2681d9b1b787SJohannes Hölzl 	.no_dynamic_id = 1,
2682d9b1b787SJohannes Hölzl };
2683d9b1b787SJohannes Hölzl 
26843f542974SPaul B Schroeder static struct usb_serial_driver moschip7840_4port_device = {
26853f542974SPaul B Schroeder 	.driver = {
26863f542974SPaul B Schroeder 		   .owner = THIS_MODULE,
26873f542974SPaul B Schroeder 		   .name = "mos7840",
26883f542974SPaul B Schroeder 		   },
26893f542974SPaul B Schroeder 	.description = DRIVER_DESC,
2690d9b1b787SJohannes Hölzl 	.usb_driver = &io_driver,
26913f542974SPaul B Schroeder 	.id_table = moschip_port_id_table,
26923f542974SPaul B Schroeder 	.num_ports = 4,
26933f542974SPaul B Schroeder 	.open = mos7840_open,
26943f542974SPaul B Schroeder 	.close = mos7840_close,
26953f542974SPaul B Schroeder 	.write = mos7840_write,
26963f542974SPaul B Schroeder 	.write_room = mos7840_write_room,
26973f542974SPaul B Schroeder 	.chars_in_buffer = mos7840_chars_in_buffer,
26983f542974SPaul B Schroeder 	.throttle = mos7840_throttle,
26993f542974SPaul B Schroeder 	.unthrottle = mos7840_unthrottle,
27003f542974SPaul B Schroeder 	.calc_num_ports = mos7840_calc_num_ports,
27013f542974SPaul B Schroeder #ifdef MCSSerialProbe
27023f542974SPaul B Schroeder 	.probe = mos7840_serial_probe,
27033f542974SPaul B Schroeder #endif
27043f542974SPaul B Schroeder 	.ioctl = mos7840_ioctl,
27053f542974SPaul B Schroeder 	.set_termios = mos7840_set_termios,
27063f542974SPaul B Schroeder 	.break_ctl = mos7840_break,
27073f542974SPaul B Schroeder 	.tiocmget = mos7840_tiocmget,
27083f542974SPaul B Schroeder 	.tiocmset = mos7840_tiocmset,
27093f542974SPaul B Schroeder 	.attach = mos7840_startup,
27103f542974SPaul B Schroeder 	.shutdown = mos7840_shutdown,
27113f542974SPaul B Schroeder 	.read_bulk_callback = mos7840_bulk_in_callback,
27123f542974SPaul B Schroeder 	.read_int_callback = mos7840_interrupt_callback,
27133f542974SPaul B Schroeder };
27143f542974SPaul B Schroeder 
27153f542974SPaul B Schroeder /****************************************************************************
27163f542974SPaul B Schroeder  * moschip7840_init
27173f542974SPaul B Schroeder  *	This is called by the module subsystem, or on startup to initialize us
27183f542974SPaul B Schroeder  ****************************************************************************/
27193f542974SPaul B Schroeder static int __init moschip7840_init(void)
27203f542974SPaul B Schroeder {
27213f542974SPaul B Schroeder 	int retval;
27223f542974SPaul B Schroeder 
2723*84fe6e79STony Cook 	dbg("%s", " mos7840_init :entering..........");
27243f542974SPaul B Schroeder 
27253f542974SPaul B Schroeder 	/* Register with the usb serial */
27263f542974SPaul B Schroeder 	retval = usb_serial_register(&moschip7840_4port_device);
27273f542974SPaul B Schroeder 
27283f542974SPaul B Schroeder 	if (retval)
27293f542974SPaul B Schroeder 		goto failed_port_device_register;
27303f542974SPaul B Schroeder 
2731*84fe6e79STony Cook 	dbg("%s", "Entering...");
2732c197a8dbSGreg Kroah-Hartman 	printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
2733c197a8dbSGreg Kroah-Hartman 	       DRIVER_DESC "\n");
27343f542974SPaul B Schroeder 
27353f542974SPaul B Schroeder 	/* Register with the usb */
27363f542974SPaul B Schroeder 	retval = usb_register(&io_driver);
27373f542974SPaul B Schroeder 	if (retval == 0) {
2738*84fe6e79STony Cook 		dbg("%s", "Leaving...");
27393f542974SPaul B Schroeder 		return 0;
27403f542974SPaul B Schroeder 	}
27413f542974SPaul B Schroeder 	usb_serial_deregister(&moschip7840_4port_device);
27423f542974SPaul B Schroeder failed_port_device_register:
27433f542974SPaul B Schroeder 	return retval;
27443f542974SPaul B Schroeder }
27453f542974SPaul B Schroeder 
27463f542974SPaul B Schroeder /****************************************************************************
27473f542974SPaul B Schroeder  * moschip7840_exit
27483f542974SPaul B Schroeder  *	Called when the driver is about to be unloaded.
27493f542974SPaul B Schroeder  ****************************************************************************/
27503f542974SPaul B Schroeder static void __exit moschip7840_exit(void)
27513f542974SPaul B Schroeder {
27523f542974SPaul B Schroeder 
2753*84fe6e79STony Cook 	dbg("%s", " mos7840_exit :entering..........");
27543f542974SPaul B Schroeder 
27553f542974SPaul B Schroeder 	usb_deregister(&io_driver);
27563f542974SPaul B Schroeder 
27573f542974SPaul B Schroeder 	usb_serial_deregister(&moschip7840_4port_device);
27583f542974SPaul B Schroeder 
2759*84fe6e79STony Cook 	dbg("%s", "Entering...");
27603f542974SPaul B Schroeder }
27613f542974SPaul B Schroeder 
27623f542974SPaul B Schroeder module_init(moschip7840_init);
27633f542974SPaul B Schroeder module_exit(moschip7840_exit);
27643f542974SPaul B Schroeder 
27653f542974SPaul B Schroeder /* Module information */
27663f542974SPaul B Schroeder MODULE_DESCRIPTION(DRIVER_DESC);
27673f542974SPaul B Schroeder MODULE_LICENSE("GPL");
27683f542974SPaul B Schroeder 
27693f542974SPaul B Schroeder module_param(debug, bool, S_IRUGO | S_IWUSR);
27703f542974SPaul B Schroeder MODULE_PARM_DESC(debug, "Debug enabled or not");
2771