blob: e95d9143478557b2fc12f1145d75e4adcbe90ec2 [file] [log] [blame]
Paul B Schroeder3f542972006-08-31 19:41:47 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 *
16 * Clean ups from Moschip version and a few ioctl implementations by:
17 * Paul B Schroeder <pschroeder "at" uplogix "dot" com>
18 *
19 * Originally based on drivers/usb/serial/io_edgeport.c which is:
20 * Copyright (C) 2000 Inside Out Networks, All rights reserved.
21 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
22 *
23 */
24
25#include <linux/kernel.h>
26#include <linux/errno.h>
27#include <linux/init.h>
28#include <linux/slab.h>
29#include <linux/tty.h>
30#include <linux/tty_driver.h>
31#include <linux/tty_flip.h>
32#include <linux/module.h>
33#include <linux/serial.h>
34#include <linux/usb.h>
35#include <linux/usb/serial.h>
Alan Cox880af9d2008-07-22 11:16:12 +010036#include <linux/uaccess.h>
Paul B Schroeder3f542972006-08-31 19:41:47 -050037
Paul B Schroeder3f542972006-08-31 19:41:47 -050038#define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
39
40/*
41 * 16C50 UART register defines
42 */
43
44#define LCR_BITS_5 0x00 /* 5 bits/char */
45#define LCR_BITS_6 0x01 /* 6 bits/char */
46#define LCR_BITS_7 0x02 /* 7 bits/char */
47#define LCR_BITS_8 0x03 /* 8 bits/char */
48#define LCR_BITS_MASK 0x03 /* Mask for bits/char field */
49
50#define LCR_STOP_1 0x00 /* 1 stop bit */
51#define LCR_STOP_1_5 0x04 /* 1.5 stop bits (if 5 bits/char) */
52#define LCR_STOP_2 0x04 /* 2 stop bits (if 6-8 bits/char) */
53#define LCR_STOP_MASK 0x04 /* Mask for stop bits field */
54
55#define LCR_PAR_NONE 0x00 /* No parity */
56#define LCR_PAR_ODD 0x08 /* Odd parity */
57#define LCR_PAR_EVEN 0x18 /* Even parity */
58#define LCR_PAR_MARK 0x28 /* Force parity bit to 1 */
59#define LCR_PAR_SPACE 0x38 /* Force parity bit to 0 */
60#define LCR_PAR_MASK 0x38 /* Mask for parity field */
61
62#define LCR_SET_BREAK 0x40 /* Set Break condition */
63#define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
64
65#define MCR_DTR 0x01 /* Assert DTR */
66#define MCR_RTS 0x02 /* Assert RTS */
67#define MCR_OUT1 0x04 /* Loopback only: Sets state of RI */
68#define MCR_MASTER_IE 0x08 /* Enable interrupt outputs */
69#define MCR_LOOPBACK 0x10 /* Set internal (digital) loopback mode */
70#define MCR_XON_ANY 0x20 /* Enable any char to exit XOFF mode */
71
72#define MOS7840_MSR_CTS 0x10 /* Current state of CTS */
73#define MOS7840_MSR_DSR 0x20 /* Current state of DSR */
74#define MOS7840_MSR_RI 0x40 /* Current state of RI */
75#define MOS7840_MSR_CD 0x80 /* Current state of CD */
76
77/*
78 * Defines used for sending commands to port
79 */
80
Mark Ferrell1e658482012-07-24 13:38:31 -050081#define MOS_WDR_TIMEOUT 5000 /* default urb timeout */
Paul B Schroeder3f542972006-08-31 19:41:47 -050082
83#define MOS_PORT1 0x0200
84#define MOS_PORT2 0x0300
85#define MOS_VENREG 0x0000
86#define MOS_MAX_PORT 0x02
87#define MOS_WRITE 0x0E
88#define MOS_READ 0x0D
89
90/* Requests */
91#define MCS_RD_RTYPE 0xC0
92#define MCS_WR_RTYPE 0x40
93#define MCS_RDREQ 0x0D
94#define MCS_WRREQ 0x0E
95#define MCS_CTRL_TIMEOUT 500
96#define VENDOR_READ_LENGTH (0x01)
97
98#define MAX_NAME_LEN 64
99
Alan Cox880af9d2008-07-22 11:16:12 +0100100#define ZLP_REG1 0x3A /* Zero_Flag_Reg1 58 */
101#define ZLP_REG5 0x3E /* Zero_Flag_Reg5 62 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500102
103/* For higher baud Rates use TIOCEXBAUD */
104#define TIOCEXBAUD 0x5462
105
106/* vendor id and device id defines */
107
David Ludlow11e1abb2008-02-25 17:30:52 -0500108/* The native mos7840/7820 component */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500109#define USB_VENDOR_ID_MOSCHIP 0x9710
110#define MOSCHIP_DEVICE_ID_7840 0x7840
111#define MOSCHIP_DEVICE_ID_7820 0x7820
Donald0eafe4d2012-04-19 15:00:45 +0800112#define MOSCHIP_DEVICE_ID_7810 0x7810
David Ludlow11e1abb2008-02-25 17:30:52 -0500113/* The native component can have its vendor/device id's overridden
114 * in vendor-specific implementations. Such devices can be handled
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700115 * by making a change here, in id_table.
David Ludlow11e1abb2008-02-25 17:30:52 -0500116 */
Dave Ludlow870408c2010-09-01 12:33:30 -0400117#define USB_VENDOR_ID_BANDB 0x0856
118#define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
119#define BANDB_DEVICE_ID_USO9ML2_2P 0xBC00
120#define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
121#define BANDB_DEVICE_ID_USO9ML2_4P 0xBC01
122#define BANDB_DEVICE_ID_US9ML2_2 0xAC29
123#define BANDB_DEVICE_ID_US9ML2_4 0xAC30
124#define BANDB_DEVICE_ID_USPTL4_2 0xAC31
125#define BANDB_DEVICE_ID_USPTL4_4 0xAC32
126#define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
127#define BANDB_DEVICE_ID_USOPTL4_2P 0xBC02
128#define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
129#define BANDB_DEVICE_ID_USOPTL4_4P 0xBC03
130#define BANDB_DEVICE_ID_USOPTL2_4 0xAC24
Paul B Schroeder3f542972006-08-31 19:41:47 -0500131
Russell Lang9d498be2009-07-17 19:29:20 +1000132/* This driver also supports
133 * ATEN UC2324 device using Moschip MCS7840
134 * ATEN UC2322 device using Moschip MCS7820
135 */
Tony Cooke9b8cff2009-04-18 22:42:18 +0930136#define USB_VENDOR_ID_ATENINTL 0x0557
137#define ATENINTL_DEVICE_ID_UC2324 0x2011
Russell Lang9d498be2009-07-17 19:29:20 +1000138#define ATENINTL_DEVICE_ID_UC2322 0x7820
Tony Cooke9b8cff2009-04-18 22:42:18 +0930139
David Ludlow11e1abb2008-02-25 17:30:52 -0500140/* Interrupt Routine Defines */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500141
142#define SERIAL_IIR_RLS 0x06
143#define SERIAL_IIR_MS 0x00
144
145/*
146 * Emulation of the bit mask on the LINE STATUS REGISTER.
147 */
148#define SERIAL_LSR_DR 0x0001
149#define SERIAL_LSR_OE 0x0002
150#define SERIAL_LSR_PE 0x0004
151#define SERIAL_LSR_FE 0x0008
152#define SERIAL_LSR_BI 0x0010
153
154#define MOS_MSR_DELTA_CTS 0x10
155#define MOS_MSR_DELTA_DSR 0x20
156#define MOS_MSR_DELTA_RI 0x40
157#define MOS_MSR_DELTA_CD 0x80
158
Alan Cox880af9d2008-07-22 11:16:12 +0100159/* Serial Port register Address */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500160#define INTERRUPT_ENABLE_REGISTER ((__u16)(0x01))
161#define FIFO_CONTROL_REGISTER ((__u16)(0x02))
162#define LINE_CONTROL_REGISTER ((__u16)(0x03))
163#define MODEM_CONTROL_REGISTER ((__u16)(0x04))
164#define LINE_STATUS_REGISTER ((__u16)(0x05))
165#define MODEM_STATUS_REGISTER ((__u16)(0x06))
166#define SCRATCH_PAD_REGISTER ((__u16)(0x07))
167#define DIVISOR_LATCH_LSB ((__u16)(0x00))
168#define DIVISOR_LATCH_MSB ((__u16)(0x01))
169
170#define CLK_MULTI_REGISTER ((__u16)(0x02))
171#define CLK_START_VALUE_REGISTER ((__u16)(0x03))
Donald Lee093ea2d2012-03-14 15:26:33 +0800172#define GPIO_REGISTER ((__u16)(0x07))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500173
174#define SERIAL_LCR_DLAB ((__u16)(0x0080))
175
176/*
177 * URB POOL related defines
178 */
179#define NUM_URBS 16 /* URB Count */
180#define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
181
Donald0eafe4d2012-04-19 15:00:45 +0800182/* LED on/off milliseconds*/
183#define LED_ON_MS 500
184#define LED_OFF_MS 500
185
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200186enum mos7840_flag {
187 MOS7840_FLAG_CTRL_BUSY,
188};
189
Tony Zelenoffb9c87662012-06-05 17:58:04 +0400190static const struct usb_device_id id_table[] = {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500191 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
192 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Donald0eafe4d2012-04-19 15:00:45 +0800193 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7810)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500194 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400195 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500196 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400197 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500198 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
199 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
200 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
201 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500202 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930207 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000208 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500209 {} /* terminating entry */
210};
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700211MODULE_DEVICE_TABLE(usb, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500212
213/* This structure holds all of the local port information */
214
215struct moschip_port {
216 int port_num; /*Actual port number in the device(1,2,etc) */
217 struct urb *write_urb; /* write URB for this port */
218 struct urb *read_urb; /* read URB for this port */
219 __u8 shadowLCR; /* last LCR value received */
220 __u8 shadowMCR; /* last MCR value received */
221 char open;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100222 char open_ports;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500223 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500224 struct usb_serial_port *port; /* loop back to the owner of this object */
225
Alan Cox880af9d2008-07-22 11:16:12 +0100226 /* Offsets */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500227 __u8 SpRegOffset;
228 __u8 ControlRegOffset;
229 __u8 DcrRegOffset;
Alan Cox880af9d2008-07-22 11:16:12 +0100230 /* for processing control URBS in interrupt context */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500231 struct urb *control_urb;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100232 struct usb_ctrlrequest *dr;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500233 char *ctrl_buf;
234 int MsrLsr;
235
Oliver Neukum0de9a702007-03-16 20:28:28 +0100236 spinlock_t pool_lock;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500237 struct urb *write_urb_pool[NUM_URBS];
Oliver Neukum0de9a702007-03-16 20:28:28 +0100238 char busy[NUM_URBS];
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800239 bool read_urb_busy;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500240
Donald0eafe4d2012-04-19 15:00:45 +0800241 /* For device(s) with LED indicator */
242 bool has_led;
243 bool led_flag;
244 struct timer_list led_timer1; /* Timer for LED on */
245 struct timer_list led_timer2; /* Timer for LED off */
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200246
247 unsigned long flags;
Donald0eafe4d2012-04-19 15:00:45 +0800248};
Paul B Schroeder3f542972006-08-31 19:41:47 -0500249
Paul B Schroeder3f542972006-08-31 19:41:47 -0500250/*
251 * mos7840_set_reg_sync
252 * To set the Control register by calling usb_fill_control_urb function
253 * by passing usb_sndctrlpipe function as parameter.
254 */
255
256static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
257 __u16 val)
258{
259 struct usb_device *dev = port->serial->dev;
260 val = val & 0x00ff;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700261 dev_dbg(&port->dev, "mos7840_set_reg_sync offset is %x, value %x\n", reg, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500262
263 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
264 MCS_WR_RTYPE, val, reg, NULL, 0,
265 MOS_WDR_TIMEOUT);
266}
267
268/*
269 * mos7840_get_reg_sync
270 * To set the Uart register by calling usb_fill_control_urb function by
271 * passing usb_rcvctrlpipe function as parameter.
272 */
273
274static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100275 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500276{
277 struct usb_device *dev = port->serial->dev;
278 int ret = 0;
Johan Hovold9e221a32009-12-28 23:01:55 +0100279 u8 *buf;
280
281 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
282 if (!buf)
283 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500284
285 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100286 MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500287 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100288 *val = buf[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700289 dev_dbg(&port->dev, "%s offset is %x, return val %x\n", __func__, reg, *val);
Johan Hovold9e221a32009-12-28 23:01:55 +0100290
291 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500292 return ret;
293}
294
295/*
296 * mos7840_set_uart_reg
297 * To set the Uart register by calling usb_fill_control_urb function by
298 * passing usb_sndctrlpipe function as parameter.
299 */
300
301static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
302 __u16 val)
303{
304
305 struct usb_device *dev = port->serial->dev;
306 val = val & 0x00ff;
Alan Cox880af9d2008-07-22 11:16:12 +0100307 /* For the UART control registers, the application number need
308 to be Or'ed */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100309 if (port->serial->num_ports == 4) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700310 val |= ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500311 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700312 if (port->port_number == 0) {
313 val |= ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500314 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700315 val |= ((__u16)port->port_number + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500316 }
317 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700318 dev_dbg(&port->dev, "%s application number is %x\n", __func__, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500319 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
320 MCS_WR_RTYPE, val, reg, NULL, 0,
321 MOS_WDR_TIMEOUT);
322
323}
324
325/*
326 * mos7840_get_uart_reg
327 * To set the Control register by calling usb_fill_control_urb function
328 * by passing usb_rcvctrlpipe function as parameter.
329 */
330static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100331 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500332{
333 struct usb_device *dev = port->serial->dev;
334 int ret = 0;
335 __u16 Wval;
Johan Hovold9e221a32009-12-28 23:01:55 +0100336 u8 *buf;
337
338 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
339 if (!buf)
340 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500341
Alan Cox880af9d2008-07-22 11:16:12 +0100342 /* Wval is same as application number */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100343 if (port->serial->num_ports == 4) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700344 Wval = ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500345 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700346 if (port->port_number == 0) {
347 Wval = ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500348 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700349 Wval = ((__u16)port->port_number + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500350 }
351 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700352 dev_dbg(&port->dev, "%s application number is %x\n", __func__, Wval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500353 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100354 MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500355 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100356 *val = buf[0];
357
358 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500359 return ret;
360}
361
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700362static void mos7840_dump_serial_port(struct usb_serial_port *port,
363 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500364{
365
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700366 dev_dbg(&port->dev, "SpRegOffset is %2x\n", mos7840_port->SpRegOffset);
367 dev_dbg(&port->dev, "ControlRegOffset is %2x\n", mos7840_port->ControlRegOffset);
368 dev_dbg(&port->dev, "DCRRegOffset is %2x\n", mos7840_port->DcrRegOffset);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500369
370}
371
372/************************************************************************/
373/************************************************************************/
374/* I N T E R F A C E F U N C T I O N S */
375/* I N T E R F A C E F U N C T I O N S */
376/************************************************************************/
377/************************************************************************/
378
379static inline void mos7840_set_port_private(struct usb_serial_port *port,
380 struct moschip_port *data)
381{
382 usb_set_serial_port_data(port, (void *)data);
383}
384
385static inline struct moschip_port *mos7840_get_port_private(struct
386 usb_serial_port
387 *port)
388{
389 return (struct moschip_port *)usb_get_serial_port_data(port);
390}
391
Oliver Neukum0de9a702007-03-16 20:28:28 +0100392static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500393{
394 struct moschip_port *mos7840_port;
395 struct async_icount *icount;
396 mos7840_port = port;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500397 if (new_msr &
398 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
399 MOS_MSR_DELTA_CD)) {
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100400 icount = &mos7840_port->port->icount;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500401
402 /* update input line counters */
Johan Hovoldc9fac852013-03-21 12:37:15 +0100403 if (new_msr & MOS_MSR_DELTA_CTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500404 icount->cts++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100405 if (new_msr & MOS_MSR_DELTA_DSR)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500406 icount->dsr++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100407 if (new_msr & MOS_MSR_DELTA_CD)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500408 icount->dcd++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100409 if (new_msr & MOS_MSR_DELTA_RI)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500410 icount->rng++;
Johan Hovolde670c6a2013-03-19 09:21:19 +0100411
Johan Hovold0c613372013-03-21 12:37:17 +0100412 wake_up_interruptible(&port->port->port.delta_msr_wait);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500413 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500414}
415
Oliver Neukum0de9a702007-03-16 20:28:28 +0100416static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500417{
418 struct async_icount *icount;
419
Paul B Schroeder3f542972006-08-31 19:41:47 -0500420 if (new_lsr & SERIAL_LSR_BI) {
Alan Cox880af9d2008-07-22 11:16:12 +0100421 /*
422 * Parity and Framing errors only count if they
423 * occur exclusive of a break being
424 * received.
425 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500426 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
427 }
428
429 /* update input line counters */
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100430 icount = &port->port->icount;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100431 if (new_lsr & SERIAL_LSR_BI)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500432 icount->brk++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100433 if (new_lsr & SERIAL_LSR_OE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500434 icount->overrun++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100435 if (new_lsr & SERIAL_LSR_PE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500436 icount->parity++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100437 if (new_lsr & SERIAL_LSR_FE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500438 icount->frame++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500439}
440
441/************************************************************************/
442/************************************************************************/
443/* U S B C A L L B A C K F U N C T I O N S */
444/* U S B C A L L B A C K F U N C T I O N S */
445/************************************************************************/
446/************************************************************************/
447
David Howells7d12e782006-10-05 14:55:46 +0100448static void mos7840_control_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500449{
450 unsigned char *data;
451 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700452 struct device *dev = &urb->dev->dev;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500453 __u8 regval = 0x0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700454 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500455
Ming Leicdc97792008-02-24 18:41:47 +0800456 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100457
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700458 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500459 case 0:
460 /* success */
461 break;
462 case -ECONNRESET:
463 case -ENOENT:
464 case -ESHUTDOWN:
465 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700466 dev_dbg(dev, "%s - urb shutting down with status: %d\n", __func__, status);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200467 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500468 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700469 dev_dbg(dev, "%s - nonzero urb status received: %d\n", __func__, status);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200470 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500471 }
472
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700473 dev_dbg(dev, "%s urb buffer size is %d\n", __func__, urb->actual_length);
474 dev_dbg(dev, "%s mos7840_port->MsrLsr is %d port %d\n", __func__,
475 mos7840_port->MsrLsr, mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500476 data = urb->transfer_buffer;
477 regval = (__u8) data[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700478 dev_dbg(dev, "%s data is %x\n", __func__, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500479 if (mos7840_port->MsrLsr == 0)
480 mos7840_handle_new_msr(mos7840_port, regval);
481 else if (mos7840_port->MsrLsr == 1)
482 mos7840_handle_new_lsr(mos7840_port, regval);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200483out:
484 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mos7840_port->flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500485}
486
487static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100488 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500489{
490 struct usb_device *dev = mcs->port->serial->dev;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100491 struct usb_ctrlrequest *dr = mcs->dr;
492 unsigned char *buffer = mcs->ctrl_buf;
493 int ret;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500494
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200495 if (test_and_set_bit_lock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags))
496 return -EBUSY;
497
Paul B Schroeder3f542972006-08-31 19:41:47 -0500498 dr->bRequestType = MCS_RD_RTYPE;
499 dr->bRequest = MCS_RDREQ;
Alan Cox880af9d2008-07-22 11:16:12 +0100500 dr->wValue = cpu_to_le16(Wval); /* 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500501 dr->wIndex = cpu_to_le16(reg);
502 dr->wLength = cpu_to_le16(2);
503
504 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
505 (unsigned char *)dr, buffer, 2,
506 mos7840_control_callback, mcs);
507 mcs->control_urb->transfer_buffer_length = 2;
508 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200509 if (ret)
510 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags);
511
Paul B Schroeder3f542972006-08-31 19:41:47 -0500512 return ret;
513}
514
Donald0eafe4d2012-04-19 15:00:45 +0800515static void mos7840_set_led_callback(struct urb *urb)
516{
517 switch (urb->status) {
518 case 0:
519 /* Success */
520 break;
521 case -ECONNRESET:
522 case -ENOENT:
523 case -ESHUTDOWN:
524 /* This urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700525 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d",
526 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800527 break;
528 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700529 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d",
530 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800531 }
532}
533
534static void mos7840_set_led_async(struct moschip_port *mcs, __u16 wval,
535 __u16 reg)
536{
537 struct usb_device *dev = mcs->port->serial->dev;
538 struct usb_ctrlrequest *dr = mcs->dr;
539
540 dr->bRequestType = MCS_WR_RTYPE;
541 dr->bRequest = MCS_WRREQ;
542 dr->wValue = cpu_to_le16(wval);
543 dr->wIndex = cpu_to_le16(reg);
544 dr->wLength = cpu_to_le16(0);
545
546 usb_fill_control_urb(mcs->control_urb, dev, usb_sndctrlpipe(dev, 0),
547 (unsigned char *)dr, NULL, 0, mos7840_set_led_callback, NULL);
548
549 usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
550}
551
552static void mos7840_set_led_sync(struct usb_serial_port *port, __u16 reg,
553 __u16 val)
554{
555 struct usb_device *dev = port->serial->dev;
556
557 usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ, MCS_WR_RTYPE,
558 val, reg, NULL, 0, MOS_WDR_TIMEOUT);
559}
560
561static void mos7840_led_off(unsigned long arg)
562{
563 struct moschip_port *mcs = (struct moschip_port *) arg;
564
565 /* Turn off LED */
566 mos7840_set_led_async(mcs, 0x0300, MODEM_CONTROL_REGISTER);
567 mod_timer(&mcs->led_timer2,
568 jiffies + msecs_to_jiffies(LED_OFF_MS));
569}
570
571static void mos7840_led_flag_off(unsigned long arg)
572{
573 struct moschip_port *mcs = (struct moschip_port *) arg;
574
575 mcs->led_flag = false;
576}
577
Paul B Schroeder3f542972006-08-31 19:41:47 -0500578/*****************************************************************************
579 * mos7840_interrupt_callback
580 * this is the callback function for when we have received data on the
581 * interrupt endpoint.
582 *****************************************************************************/
583
David Howells7d12e782006-10-05 14:55:46 +0100584static void mos7840_interrupt_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500585{
586 int result;
587 int length;
588 struct moschip_port *mos7840_port;
589 struct usb_serial *serial;
590 __u16 Data;
591 unsigned char *data;
592 __u8 sp[5], st;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100593 int i, rv = 0;
594 __u16 wval, wreg = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700595 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500596
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700597 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500598 case 0:
599 /* success */
600 break;
601 case -ECONNRESET:
602 case -ENOENT:
603 case -ESHUTDOWN:
604 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700605 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
606 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500607 return;
608 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700609 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n",
610 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500611 goto exit;
612 }
613
614 length = urb->actual_length;
615 data = urb->transfer_buffer;
616
Ming Leicdc97792008-02-24 18:41:47 +0800617 serial = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500618
619 /* Moschip get 5 bytes
620 * Byte 1 IIR Port 1 (port.number is 0)
621 * Byte 2 IIR Port 2 (port.number is 1)
622 * Byte 3 IIR Port 3 (port.number is 2)
623 * Byte 4 IIR Port 4 (port.number is 3)
624 * Byte 5 FIFO status for both */
625
626 if (length && length > 5) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700627 dev_dbg(&urb->dev->dev, "%s", "Wrong data !!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500628 return;
629 }
630
631 sp[0] = (__u8) data[0];
632 sp[1] = (__u8) data[1];
633 sp[2] = (__u8) data[2];
634 sp[3] = (__u8) data[3];
635 st = (__u8) data[4];
636
637 for (i = 0; i < serial->num_ports; i++) {
638 mos7840_port = mos7840_get_port_private(serial->port[i]);
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700639 wval = ((__u16)serial->port[i]->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500640 if (mos7840_port->open) {
641 if (sp[i] & 0x01) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700642 dev_dbg(&urb->dev->dev, "SP%d No Interrupt !!!\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500643 } else {
644 switch (sp[i] & 0x0f) {
645 case SERIAL_IIR_RLS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700646 dev_dbg(&urb->dev->dev, "Serial Port %d: Receiver status error or \n", i);
647 dev_dbg(&urb->dev->dev, "address bit detected in 9-bit mode\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500648 mos7840_port->MsrLsr = 1;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100649 wreg = LINE_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500650 break;
651 case SERIAL_IIR_MS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700652 dev_dbg(&urb->dev->dev, "Serial Port %d: Modem status change\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500653 mos7840_port->MsrLsr = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100654 wreg = MODEM_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500655 break;
656 }
Johan Hovolde681b662012-10-25 18:56:33 +0200657 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500658 }
659 }
660 }
Alan Cox880af9d2008-07-22 11:16:12 +0100661 if (!(rv < 0))
662 /* the completion handler for the control urb will resubmit */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100663 return;
664exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -0500665 result = usb_submit_urb(urb, GFP_ATOMIC);
666 if (result) {
667 dev_err(&urb->dev->dev,
668 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800669 __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500670 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500671}
672
673static int mos7840_port_paranoia_check(struct usb_serial_port *port,
674 const char *function)
675{
676 if (!port) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700677 pr_debug("%s - port == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500678 return -1;
679 }
680 if (!port->serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700681 pr_debug("%s - port->serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500682 return -1;
683 }
684
685 return 0;
686}
687
688/* Inline functions to check the sanity of a pointer that is passed to us */
689static int mos7840_serial_paranoia_check(struct usb_serial *serial,
690 const char *function)
691{
692 if (!serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700693 pr_debug("%s - serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500694 return -1;
695 }
696 if (!serial->type) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700697 pr_debug("%s - serial->type == NULL!\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500698 return -1;
699 }
700
701 return 0;
702}
703
704static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
705 const char *function)
706{
707 /* if no port was specified, or it fails a paranoia check */
708 if (!port ||
709 mos7840_port_paranoia_check(port, function) ||
710 mos7840_serial_paranoia_check(port->serial, function)) {
Alan Cox880af9d2008-07-22 11:16:12 +0100711 /* then say that we don't have a valid usb_serial thing,
712 * which will end up genrating -ENODEV return values */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500713 return NULL;
714 }
715
716 return port->serial;
717}
718
719/*****************************************************************************
720 * mos7840_bulk_in_callback
721 * this is the callback function for when we have received data on the
722 * bulk in endpoint.
723 *****************************************************************************/
724
David Howells7d12e782006-10-05 14:55:46 +0100725static void mos7840_bulk_in_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500726{
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700727 int retval;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500728 unsigned char *data;
729 struct usb_serial *serial;
730 struct usb_serial_port *port;
731 struct moschip_port *mos7840_port;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700732 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500733
Ming Leicdc97792008-02-24 18:41:47 +0800734 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700735 if (!mos7840_port)
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800736 return;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800737
738 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700739 dev_dbg(&urb->dev->dev, "nonzero read bulk status received: %d\n", status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800740 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500741 return;
742 }
743
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700744 port = mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800745 if (mos7840_port_paranoia_check(port, __func__)) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800746 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500747 return;
748 }
749
Harvey Harrison441b62c2008-03-03 16:08:34 -0800750 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500751 if (!serial) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800752 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500753 return;
754 }
755
Paul B Schroeder3f542972006-08-31 19:41:47 -0500756 data = urb->transfer_buffer;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100757 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500758
Paul B Schroeder3f542972006-08-31 19:41:47 -0500759 if (urb->actual_length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100760 struct tty_port *tport = &mos7840_port->port->port;
Jiri Slaby2e124b42013-01-03 15:53:06 +0100761 tty_insert_flip_string(tport, data, urb->actual_length);
762 tty_flip_buffer_push(tport);
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100763 port->icount.rx += urb->actual_length;
764 dev_dbg(&port->dev, "icount.rx is %d:\n", port->icount.rx);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500765 }
766
767 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700768 dev_dbg(&port->dev, "%s", "URB KILLED !!!\n");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800769 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500770 return;
771 }
772
Donald0eafe4d2012-04-19 15:00:45 +0800773 /* Turn on LED */
774 if (mos7840_port->has_led && !mos7840_port->led_flag) {
775 mos7840_port->led_flag = true;
776 mos7840_set_led_async(mos7840_port, 0x0301,
777 MODEM_CONTROL_REGISTER);
778 mod_timer(&mos7840_port->led_timer1,
779 jiffies + msecs_to_jiffies(LED_ON_MS));
780 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500781
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800782 mos7840_port->read_urb_busy = true;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700783 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100784
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700785 if (retval) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700786 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, retval = %d\n", retval);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800787 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500788 }
789}
790
791/*****************************************************************************
792 * mos7840_bulk_out_data_callback
Alan Cox880af9d2008-07-22 11:16:12 +0100793 * this is the callback function for when we have finished sending
794 * serial data on the bulk out endpoint.
Paul B Schroeder3f542972006-08-31 19:41:47 -0500795 *****************************************************************************/
796
David Howells7d12e782006-10-05 14:55:46 +0100797static void mos7840_bulk_out_data_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500798{
799 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700800 struct usb_serial_port *port;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700801 int status = urb->status;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100802 int i;
803
Ming Leicdc97792008-02-24 18:41:47 +0800804 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700805 port = mos7840_port->port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100806 spin_lock(&mos7840_port->pool_lock);
807 for (i = 0; i < NUM_URBS; i++) {
808 if (urb == mos7840_port->write_urb_pool[i]) {
809 mos7840_port->busy[i] = 0;
810 break;
811 }
812 }
813 spin_unlock(&mos7840_port->pool_lock);
814
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700815 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700816 dev_dbg(&port->dev, "nonzero write bulk status received:%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500817 return;
818 }
819
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700820 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500821 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500822
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100823 if (mos7840_port->open)
824 tty_port_tty_wakeup(&port->port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500825
826}
827
828/************************************************************************/
829/* 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 */
830/************************************************************************/
Paul B Schroeder3f542972006-08-31 19:41:47 -0500831
832/*****************************************************************************
833 * mos7840_open
834 * this function is called by the tty driver when a port is opened
835 * If successful, we return 0
836 * Otherwise we return a negative error number.
837 *****************************************************************************/
838
Alan Coxa509a7e2009-09-19 13:13:26 -0700839static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500840{
841 int response;
842 int j;
843 struct usb_serial *serial;
844 struct urb *urb;
845 __u16 Data;
846 int status;
847 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100848 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500849
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700850 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500851 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500852
Paul B Schroeder3f542972006-08-31 19:41:47 -0500853 serial = port->serial;
854
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700855 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500856 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500857
858 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100859 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500860
Oliver Neukum0de9a702007-03-16 20:28:28 +0100861 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500862 return -ENODEV;
863
864 usb_clear_halt(serial->dev, port->write_urb->pipe);
865 usb_clear_halt(serial->dev, port->read_urb->pipe);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100866 port0->open_ports++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500867
868 /* Initialising the write urb pool */
869 for (j = 0; j < NUM_URBS; ++j) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100870 urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500871 mos7840_port->write_urb_pool[j] = urb;
872
873 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700874 dev_err(&port->dev, "No more urbs???\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500875 continue;
876 }
877
Alan Cox880af9d2008-07-22 11:16:12 +0100878 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
879 GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500880 if (!urb->transfer_buffer) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100881 usb_free_urb(urb);
882 mos7840_port->write_urb_pool[j] = NULL;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700883 dev_err(&port->dev,
884 "%s-out of memory for urb buffers.\n",
885 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500886 continue;
887 }
888 }
889
890/*****************************************************************************
891 * Initialize MCS7840 -- Write Init values to corresponding Registers
892 *
893 * Register Index
894 * 1 : IER
895 * 2 : FCR
896 * 3 : LCR
897 * 4 : MCR
898 *
899 * 0x08 : SP1/2 Control Reg
900 *****************************************************************************/
901
Alan Cox880af9d2008-07-22 11:16:12 +0100902 /* NEED to check the following Block */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500903
Paul B Schroeder3f542972006-08-31 19:41:47 -0500904 Data = 0x0;
905 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
906 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700907 dev_dbg(&port->dev, "Reading Spreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200908 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500909 }
910 Data |= 0x80;
911 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
912 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700913 dev_dbg(&port->dev, "writing Spreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200914 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500915 }
916
917 Data &= ~0x80;
918 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
919 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700920 dev_dbg(&port->dev, "writing Spreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200921 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500922 }
Alan Cox880af9d2008-07-22 11:16:12 +0100923 /* End of block to be checked */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500924
Paul B Schroeder3f542972006-08-31 19:41:47 -0500925 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +0100926 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
927 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500928 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700929 dev_dbg(&port->dev, "Reading Controlreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200930 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500931 }
Alan Cox880af9d2008-07-22 11:16:12 +0100932 Data |= 0x08; /* Driver done bit */
933 Data |= 0x20; /* rx_disable */
934 status = mos7840_set_reg_sync(port,
935 mos7840_port->ControlRegOffset, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500936 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700937 dev_dbg(&port->dev, "writing Controlreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200938 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500939 }
Alan Cox880af9d2008-07-22 11:16:12 +0100940 /* do register settings here */
941 /* Set all regs to the device default values. */
942 /***********************************
943 * First Disable all interrupts.
944 ***********************************/
Paul B Schroeder3f542972006-08-31 19:41:47 -0500945 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500946 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
947 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700948 dev_dbg(&port->dev, "disabling interrupts failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200949 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500950 }
Alan Cox880af9d2008-07-22 11:16:12 +0100951 /* Set FIFO_CONTROL_REGISTER to the default value */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500952 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500953 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
954 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700955 dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200956 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500957 }
958
959 Data = 0xcf;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500960 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
961 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700962 dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200963 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500964 }
965
966 Data = 0x03;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500967 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
968 mos7840_port->shadowLCR = Data;
969
970 Data = 0x0b;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500971 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
972 mos7840_port->shadowMCR = Data;
973
974 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500975 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
976 mos7840_port->shadowLCR = Data;
977
Alan Cox880af9d2008-07-22 11:16:12 +0100978 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500979 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
980
981 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500982 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
983
984 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500985 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
986
987 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500988 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
989
990 Data = Data & ~SERIAL_LCR_DLAB;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500991 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
992 mos7840_port->shadowLCR = Data;
993
Alan Cox880af9d2008-07-22 11:16:12 +0100994 /* clearing Bulkin and Bulkout Fifo */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500995 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500996 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
997
998 Data = Data | 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500999 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1000
1001 Data = Data & ~0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001002 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
Alan Cox880af9d2008-07-22 11:16:12 +01001003 /* Finally enable all interrupts */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001004 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001005 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1006
Alan Cox880af9d2008-07-22 11:16:12 +01001007 /* clearing rx_disable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001008 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001009 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1010 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001011 Data = Data & ~0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01001012 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1013 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001014
Alan Cox880af9d2008-07-22 11:16:12 +01001015 /* rx_negate */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001016 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001017 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1018 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001019 Data = Data | 0x10;
Alan Cox880af9d2008-07-22 11:16:12 +01001020 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1021 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001022
Alan Cox880af9d2008-07-22 11:16:12 +01001023 /* Check to see if we've set up our endpoint info yet *
1024 * (can't set it up in mos7840_startup as the structures *
1025 * were not set up at that time.) */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001026 if (port0->open_ports == 1) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001027 if (serial->port[0]->interrupt_in_buffer == NULL) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001028 /* set up interrupt urb */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001029 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
Alan Cox880af9d2008-07-22 11:16:12 +01001030 serial->dev,
1031 usb_rcvintpipe(serial->dev,
1032 serial->port[0]->interrupt_in_endpointAddress),
1033 serial->port[0]->interrupt_in_buffer,
1034 serial->port[0]->interrupt_in_urb->
1035 transfer_buffer_length,
1036 mos7840_interrupt_callback,
1037 serial,
1038 serial->port[0]->interrupt_in_urb->interval);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001039
1040 /* start interrupt read for mos7840 *
1041 * will continue as long as mos7840 is connected */
1042
1043 response =
1044 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1045 GFP_KERNEL);
1046 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001047 dev_err(&port->dev, "%s - Error %d submitting "
1048 "interrupt urb\n", __func__, response);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001049 }
1050
1051 }
1052
1053 }
1054
1055 /* see if we've set up our endpoint info yet *
1056 * (can't set it up in mos7840_startup as the *
1057 * structures were not set up at that time.) */
1058
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001059 dev_dbg(&port->dev, "port number is %d\n", port->port_number);
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001060 dev_dbg(&port->dev, "minor number is %d\n", port->minor);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001061 dev_dbg(&port->dev, "Bulkin endpoint is %d\n", port->bulk_in_endpointAddress);
1062 dev_dbg(&port->dev, "BulkOut endpoint is %d\n", port->bulk_out_endpointAddress);
1063 dev_dbg(&port->dev, "Interrupt endpoint is %d\n", port->interrupt_in_endpointAddress);
1064 dev_dbg(&port->dev, "port's number in the device is %d\n", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001065 mos7840_port->read_urb = port->read_urb;
1066
1067 /* set up our bulk in urb */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001068 if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
Donald Lee093ea2d2012-03-14 15:26:33 +08001069 usb_fill_bulk_urb(mos7840_port->read_urb,
1070 serial->dev,
1071 usb_rcvbulkpipe(serial->dev,
1072 (port->bulk_in_endpointAddress) + 2),
1073 port->bulk_in_buffer,
1074 mos7840_port->read_urb->transfer_buffer_length,
1075 mos7840_bulk_in_callback, mos7840_port);
1076 } else {
1077 usb_fill_bulk_urb(mos7840_port->read_urb,
1078 serial->dev,
1079 usb_rcvbulkpipe(serial->dev,
1080 port->bulk_in_endpointAddress),
1081 port->bulk_in_buffer,
1082 mos7840_port->read_urb->transfer_buffer_length,
1083 mos7840_bulk_in_callback, mos7840_port);
1084 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001085
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001086 dev_dbg(&port->dev, "%s: bulkin endpoint is %d\n", __func__, port->bulk_in_endpointAddress);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001087 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001088 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1089 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001090 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1091 __func__, response);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001092 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001093 }
1094
1095 /* initialize our wait queues */
1096 init_waitqueue_head(&mos7840_port->wait_chase);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001097
Paul B Schroeder3f542972006-08-31 19:41:47 -05001098 /* initialize our port settings */
Alan Cox880af9d2008-07-22 11:16:12 +01001099 /* Must set to enable ints! */
1100 mos7840_port->shadowMCR = MCR_MASTER_IE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001101 /* send a open port command */
1102 mos7840_port->open = 1;
Alan Cox880af9d2008-07-22 11:16:12 +01001103 /* mos7840_change_port_settings(mos7840_port,old_termios); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001104
Paul B Schroeder3f542972006-08-31 19:41:47 -05001105 return 0;
Johan Hovold5f8a2e62013-07-01 14:03:33 +02001106err:
1107 for (j = 0; j < NUM_URBS; ++j) {
1108 urb = mos7840_port->write_urb_pool[j];
1109 if (!urb)
1110 continue;
1111 kfree(urb->transfer_buffer);
1112 usb_free_urb(urb);
1113 }
1114 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001115}
1116
1117/*****************************************************************************
1118 * mos7840_chars_in_buffer
1119 * this function is called by the tty driver when it wants to know how many
1120 * bytes of data we currently have outstanding in the port (data that has
1121 * been written, but hasn't made it out the port yet)
1122 * If successful, we return the number of bytes left to be written in the
1123 * system,
Alan Cox95da3102008-07-22 11:09:07 +01001124 * Otherwise we return zero.
Paul B Schroeder3f542972006-08-31 19:41:47 -05001125 *****************************************************************************/
1126
Alan Cox95da3102008-07-22 11:09:07 +01001127static int mos7840_chars_in_buffer(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001128{
Alan Cox95da3102008-07-22 11:09:07 +01001129 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001130 int i;
1131 int chars = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001132 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001133 struct moschip_port *mos7840_port;
1134
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001135 if (mos7840_port_paranoia_check(port, __func__))
Alan Cox95da3102008-07-22 11:09:07 +01001136 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001137
1138 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07001139 if (mos7840_port == NULL)
Alan Cox95da3102008-07-22 11:09:07 +01001140 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001141
Alan Cox880af9d2008-07-22 11:16:12 +01001142 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Mark Ferrell5c263b92012-07-24 14:15:13 -05001143 for (i = 0; i < NUM_URBS; ++i) {
1144 if (mos7840_port->busy[i]) {
1145 struct urb *urb = mos7840_port->write_urb_pool[i];
1146 chars += urb->transfer_buffer_length;
1147 }
1148 }
Alan Cox880af9d2008-07-22 11:16:12 +01001149 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001150 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001151 return chars;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001152
1153}
1154
Paul B Schroeder3f542972006-08-31 19:41:47 -05001155/*****************************************************************************
1156 * mos7840_close
1157 * this function is called by the tty driver when a port is closed
1158 *****************************************************************************/
1159
Alan Cox335f8512009-06-11 12:26:29 +01001160static void mos7840_close(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001161{
1162 struct usb_serial *serial;
1163 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001164 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001165 int j;
1166 __u16 Data;
1167
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001168 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001169 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001170
Harvey Harrison441b62c2008-03-03 16:08:34 -08001171 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001172 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001173 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001174
1175 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001176 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001177
Oliver Neukum0de9a702007-03-16 20:28:28 +01001178 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001179 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001180
1181 for (j = 0; j < NUM_URBS; ++j)
1182 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1183
1184 /* Freeing Write URBs */
1185 for (j = 0; j < NUM_URBS; ++j) {
1186 if (mos7840_port->write_urb_pool[j]) {
1187 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1188 kfree(mos7840_port->write_urb_pool[j]->
1189 transfer_buffer);
1190
1191 usb_free_urb(mos7840_port->write_urb_pool[j]);
1192 }
1193 }
1194
Johan Hovoldbb3529c2013-03-21 12:36:35 +01001195 usb_kill_urb(mos7840_port->write_urb);
1196 usb_kill_urb(mos7840_port->read_urb);
1197 mos7840_port->read_urb_busy = false;
1198
Oliver Neukum0de9a702007-03-16 20:28:28 +01001199 port0->open_ports--;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001200 dev_dbg(&port->dev, "%s in close%d\n", __func__, port0->open_ports);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001201 if (port0->open_ports == 0) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001202 if (serial->port[0]->interrupt_in_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001203 dev_dbg(&port->dev, "Shutdown interrupt_in_urb\n");
Oliver Neukum0de9a702007-03-16 20:28:28 +01001204 usb_kill_urb(serial->port[0]->interrupt_in_urb);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001205 }
1206 }
1207
1208 if (mos7840_port->write_urb) {
1209 /* if this urb had a transfer buffer already (old tx) free it */
Syam Sidhardhanae8d4872013-03-07 01:51:12 +05301210 kfree(mos7840_port->write_urb->transfer_buffer);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001211 usb_free_urb(mos7840_port->write_urb);
1212 }
1213
1214 Data = 0x0;
1215 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1216
1217 Data = 0x00;
1218 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1219
1220 mos7840_port->open = 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001221}
1222
1223/************************************************************************
1224 *
1225 * mos7840_block_until_chase_response
1226 *
1227 * This function will block the close until one of the following:
1228 * 1. Response to our Chase comes from mos7840
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001229 * 2. A timeout of 10 seconds without activity has expired
Paul B Schroeder3f542972006-08-31 19:41:47 -05001230 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1231 *
1232 ************************************************************************/
1233
Alan Cox95da3102008-07-22 11:09:07 +01001234static void mos7840_block_until_chase_response(struct tty_struct *tty,
1235 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001236{
Mark Ferrell1e658482012-07-24 13:38:31 -05001237 int timeout = msecs_to_jiffies(1000);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001238 int wait = 10;
1239 int count;
1240
1241 while (1) {
Alan Cox95da3102008-07-22 11:09:07 +01001242 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001243
1244 /* Check for Buffer status */
Alan Cox880af9d2008-07-22 11:16:12 +01001245 if (count <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001246 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001247
1248 /* Block the thread for a while */
1249 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1250 timeout);
1251 /* No activity.. count down section */
1252 wait--;
1253 if (wait == 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001254 dev_dbg(&mos7840_port->port->dev, "%s - TIMEOUT\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001255 return;
1256 } else {
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001257 /* Reset timeout value back to seconds */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001258 wait = 10;
1259 }
1260 }
1261
1262}
1263
1264/*****************************************************************************
1265 * mos7840_break
1266 * this function sends a break to the port
1267 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001268static void mos7840_break(struct tty_struct *tty, int break_state)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001269{
Alan Cox95da3102008-07-22 11:09:07 +01001270 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001271 unsigned char data;
1272 struct usb_serial *serial;
1273 struct moschip_port *mos7840_port;
1274
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001275 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001276 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001277
Harvey Harrison441b62c2008-03-03 16:08:34 -08001278 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001279 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001280 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001281
1282 mos7840_port = mos7840_get_port_private(port);
1283
Alan Cox880af9d2008-07-22 11:16:12 +01001284 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001285 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001286
Johan Hovoldbb3529c2013-03-21 12:36:35 +01001287 /* flush and block until tx is empty */
1288 mos7840_block_until_chase_response(tty, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001289
Alan Cox95da3102008-07-22 11:09:07 +01001290 if (break_state == -1)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001291 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
Alan Cox95da3102008-07-22 11:09:07 +01001292 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001293 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001294
Alan Cox6b447f042009-01-02 13:48:56 +00001295 /* FIXME: no locking on shadowLCR anywhere in driver */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001296 mos7840_port->shadowLCR = data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001297 dev_dbg(&port->dev, "%s mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001298 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1299 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001300}
1301
1302/*****************************************************************************
1303 * mos7840_write_room
1304 * this function is called by the tty driver when it wants to know how many
1305 * bytes of data we can accept for a specific port.
1306 * If successful, we return the amount of room that we have for this port
1307 * Otherwise we return a negative error number.
1308 *****************************************************************************/
1309
Alan Cox95da3102008-07-22 11:09:07 +01001310static int mos7840_write_room(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001311{
Alan Cox95da3102008-07-22 11:09:07 +01001312 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001313 int i;
1314 int room = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001315 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001316 struct moschip_port *mos7840_port;
1317
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001318 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001319 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001320
1321 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001322 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001323 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001324
Oliver Neukum0de9a702007-03-16 20:28:28 +01001325 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001326 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox880af9d2008-07-22 11:16:12 +01001327 if (!mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001328 room += URB_TRANSFER_BUFFER_SIZE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001329 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001330 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001331
Oliver Neukum0de9a702007-03-16 20:28:28 +01001332 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001333 dev_dbg(&mos7840_port->port->dev, "%s - returns %d\n", __func__, room);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001334 return room;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001335
1336}
1337
1338/*****************************************************************************
1339 * mos7840_write
1340 * this function is called by the tty driver when data should be written to
1341 * the port.
1342 * If successful, we return the number of bytes written, otherwise we
1343 * return a negative error number.
1344 *****************************************************************************/
1345
Alan Cox95da3102008-07-22 11:09:07 +01001346static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001347 const unsigned char *data, int count)
1348{
1349 int status;
1350 int i;
1351 int bytes_sent = 0;
1352 int transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001353 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001354
1355 struct moschip_port *mos7840_port;
1356 struct usb_serial *serial;
1357 struct urb *urb;
Alan Cox880af9d2008-07-22 11:16:12 +01001358 /* __u16 Data; */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001359 const unsigned char *current_position = data;
1360 unsigned char *data1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001361
1362#ifdef NOTMOS7840
1363 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001364 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1365 mos7840_port->shadowLCR = Data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001366 dev_dbg(&port->dev, "%s: LINE_CONTROL_REGISTER is %x\n", __func__, Data);
1367 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001368
Alan Cox880af9d2008-07-22 11:16:12 +01001369 /* Data = 0x03; */
1370 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1371 /* mos7840_port->shadowLCR=Data;//Need to add later */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001372
Alan Cox880af9d2008-07-22 11:16:12 +01001373 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001374 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1375
Alan Cox880af9d2008-07-22 11:16:12 +01001376 /* Data = 0x0c; */
1377 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001378 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001379 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001380 dev_dbg(&port->dev, "%s: DLL value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001381
1382 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001383 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001384 dev_dbg(&port->dev, "%s: DLM value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001385
1386 Data = Data & ~SERIAL_LCR_DLAB;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001387 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001388 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1389#endif
1390
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001391 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001392 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001393
1394 serial = port->serial;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001395 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001396 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001397
1398 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001399 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001400 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001401
1402 /* try to find a free urb in the list */
1403 urb = NULL;
1404
Oliver Neukum0de9a702007-03-16 20:28:28 +01001405 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001406 for (i = 0; i < NUM_URBS; ++i) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001407 if (!mos7840_port->busy[i]) {
1408 mos7840_port->busy[i] = 1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001409 urb = mos7840_port->write_urb_pool[i];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001410 dev_dbg(&port->dev, "URB:%d\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001411 break;
1412 }
1413 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001414 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001415
1416 if (urb == NULL) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001417 dev_dbg(&port->dev, "%s - no more free urbs\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001418 goto exit;
1419 }
1420
1421 if (urb->transfer_buffer == NULL) {
1422 urb->transfer_buffer =
1423 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1424
1425 if (urb->transfer_buffer == NULL) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001426 dev_err_console(port, "%s no more kernel memory...\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001427 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001428 goto exit;
1429 }
1430 }
1431 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1432
Al Viro97c49652006-10-09 20:29:03 +01001433 memcpy(urb->transfer_buffer, current_position, transfer_size);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001434
1435 /* fill urb with data and submit */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001436 if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
Donald Lee093ea2d2012-03-14 15:26:33 +08001437 usb_fill_bulk_urb(urb,
1438 serial->dev,
1439 usb_sndbulkpipe(serial->dev,
1440 (port->bulk_out_endpointAddress) + 2),
1441 urb->transfer_buffer,
1442 transfer_size,
1443 mos7840_bulk_out_data_callback, mos7840_port);
1444 } else {
1445 usb_fill_bulk_urb(urb,
1446 serial->dev,
1447 usb_sndbulkpipe(serial->dev,
1448 port->bulk_out_endpointAddress),
1449 urb->transfer_buffer,
1450 transfer_size,
1451 mos7840_bulk_out_data_callback, mos7840_port);
1452 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001453
1454 data1 = urb->transfer_buffer;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001455 dev_dbg(&port->dev, "bulkout endpoint is %d\n", port->bulk_out_endpointAddress);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001456
Donald0eafe4d2012-04-19 15:00:45 +08001457 /* Turn on LED */
1458 if (mos7840_port->has_led && !mos7840_port->led_flag) {
1459 mos7840_port->led_flag = true;
1460 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0301);
1461 mod_timer(&mos7840_port->led_timer1,
1462 jiffies + msecs_to_jiffies(LED_ON_MS));
1463 }
1464
Paul B Schroeder3f542972006-08-31 19:41:47 -05001465 /* send it down the pipe */
1466 status = usb_submit_urb(urb, GFP_ATOMIC);
1467
1468 if (status) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001469 mos7840_port->busy[i] = 0;
Johan Hovold22a416c2012-02-10 13:20:51 +01001470 dev_err_console(port, "%s - usb_submit_urb(write bulk) failed "
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001471 "with status = %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001472 bytes_sent = status;
1473 goto exit;
1474 }
1475 bytes_sent = transfer_size;
Johan Hovold8c1a07f2013-03-21 12:37:16 +01001476 port->icount.tx += transfer_size;
1477 dev_dbg(&port->dev, "icount.tx is %d:\n", port->icount.tx);
Alan Cox95da3102008-07-22 11:09:07 +01001478exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -05001479 return bytes_sent;
1480
1481}
1482
1483/*****************************************************************************
1484 * mos7840_throttle
1485 * this function is called by the tty driver when it wants to stop the data
1486 * being read from the port.
1487 *****************************************************************************/
1488
Alan Cox95da3102008-07-22 11:09:07 +01001489static void mos7840_throttle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001490{
Alan Cox95da3102008-07-22 11:09:07 +01001491 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001492 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001493 int status;
1494
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001495 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001496 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001497
1498 mos7840_port = mos7840_get_port_private(port);
1499
1500 if (mos7840_port == NULL)
1501 return;
1502
1503 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001504 dev_dbg(&port->dev, "%s", "port not opened\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001505 return;
1506 }
1507
Paul B Schroeder3f542972006-08-31 19:41:47 -05001508 /* if we are implementing XON/XOFF, send the stop character */
1509 if (I_IXOFF(tty)) {
1510 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001511 status = mos7840_write(tty, port, &stop_char, 1);
1512 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001513 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001514 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001515 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001516 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001517 mos7840_port->shadowMCR &= ~MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001518 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001519 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001520 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001521 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001522 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001523}
1524
1525/*****************************************************************************
1526 * mos7840_unthrottle
Alan Cox880af9d2008-07-22 11:16:12 +01001527 * this function is called by the tty driver when it wants to resume
1528 * the data being read from the port (called after mos7840_throttle is
1529 * called)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001530 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001531static void mos7840_unthrottle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001532{
Alan Cox95da3102008-07-22 11:09:07 +01001533 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001534 int status;
1535 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1536
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001537 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001538 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001539
1540 if (mos7840_port == NULL)
1541 return;
1542
1543 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001544 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001545 return;
1546 }
1547
Paul B Schroeder3f542972006-08-31 19:41:47 -05001548 /* if we are implementing XON/XOFF, send the start character */
1549 if (I_IXOFF(tty)) {
1550 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001551 status = mos7840_write(tty, port, &start_char, 1);
1552 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001553 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001554 }
1555
1556 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001557 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001558 mos7840_port->shadowMCR |= MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001559 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001560 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001561 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001562 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001563 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001564}
1565
Alan Cox60b33c12011-02-14 16:26:14 +00001566static int mos7840_tiocmget(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001567{
Alan Cox95da3102008-07-22 11:09:07 +01001568 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001569 struct moschip_port *mos7840_port;
1570 unsigned int result;
1571 __u16 msr;
1572 __u16 mcr;
Alan Cox880af9d2008-07-22 11:16:12 +01001573 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001574 mos7840_port = mos7840_get_port_private(port);
1575
Paul B Schroeder3f542972006-08-31 19:41:47 -05001576 if (mos7840_port == NULL)
1577 return -ENODEV;
1578
1579 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1580 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1581 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1582 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1583 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1584 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1585 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1586 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1587 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1588
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001589 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001590
1591 return result;
1592}
1593
Alan Cox20b9d172011-02-14 16:26:50 +00001594static int mos7840_tiocmset(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001595 unsigned int set, unsigned int clear)
1596{
Alan Cox95da3102008-07-22 11:09:07 +01001597 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001598 struct moschip_port *mos7840_port;
1599 unsigned int mcr;
Roel Kluin87521c42008-04-17 06:16:24 +02001600 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001601
Paul B Schroeder3f542972006-08-31 19:41:47 -05001602 mos7840_port = mos7840_get_port_private(port);
1603
1604 if (mos7840_port == NULL)
1605 return -ENODEV;
1606
Alan Coxe2984492008-02-20 20:51:45 +00001607 /* FIXME: What locks the port registers ? */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001608 mcr = mos7840_port->shadowMCR;
1609 if (clear & TIOCM_RTS)
1610 mcr &= ~MCR_RTS;
1611 if (clear & TIOCM_DTR)
1612 mcr &= ~MCR_DTR;
1613 if (clear & TIOCM_LOOP)
1614 mcr &= ~MCR_LOOPBACK;
1615
1616 if (set & TIOCM_RTS)
1617 mcr |= MCR_RTS;
1618 if (set & TIOCM_DTR)
1619 mcr |= MCR_DTR;
1620 if (set & TIOCM_LOOP)
1621 mcr |= MCR_LOOPBACK;
1622
1623 mos7840_port->shadowMCR = mcr;
1624
Paul B Schroeder3f542972006-08-31 19:41:47 -05001625 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1626 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001627 dev_dbg(&port->dev, "setting MODEM_CONTROL_REGISTER Failed\n");
Roel Kluin87521c42008-04-17 06:16:24 +02001628 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001629 }
1630
1631 return 0;
1632}
1633
1634/*****************************************************************************
1635 * mos7840_calc_baud_rate_divisor
1636 * this function calculates the proper baud rate divisor for the specified
1637 * baud rate.
1638 *****************************************************************************/
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001639static int mos7840_calc_baud_rate_divisor(struct usb_serial_port *port,
1640 int baudRate, int *divisor,
Alan Cox880af9d2008-07-22 11:16:12 +01001641 __u16 *clk_sel_val)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001642{
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001643 dev_dbg(&port->dev, "%s - %d\n", __func__, baudRate);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001644
1645 if (baudRate <= 115200) {
1646 *divisor = 115200 / baudRate;
1647 *clk_sel_val = 0x0;
1648 }
1649 if ((baudRate > 115200) && (baudRate <= 230400)) {
1650 *divisor = 230400 / baudRate;
1651 *clk_sel_val = 0x10;
1652 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1653 *divisor = 403200 / baudRate;
1654 *clk_sel_val = 0x20;
1655 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1656 *divisor = 460800 / baudRate;
1657 *clk_sel_val = 0x30;
1658 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1659 *divisor = 806400 / baudRate;
1660 *clk_sel_val = 0x40;
1661 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1662 *divisor = 921600 / baudRate;
1663 *clk_sel_val = 0x50;
1664 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1665 *divisor = 1572864 / baudRate;
1666 *clk_sel_val = 0x60;
1667 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1668 *divisor = 3145728 / baudRate;
1669 *clk_sel_val = 0x70;
1670 }
1671 return 0;
1672
1673#ifdef NOTMCS7840
1674
1675 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1676 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1677 *divisor = mos7840_divisor_table[i].Divisor;
1678 return 0;
1679 }
1680 }
1681
1682 /* After trying for all the standard baud rates *
1683 * Try calculating the divisor for this baud rate */
1684
1685 if (baudrate > 75 && baudrate < 230400) {
1686 /* get the divisor */
1687 custom = (__u16) (230400L / baudrate);
1688
1689 /* Check for round off */
1690 round1 = (__u16) (2304000L / baudrate);
1691 round = (__u16) (round1 - (custom * 10));
Alan Cox880af9d2008-07-22 11:16:12 +01001692 if (round > 4)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001693 custom++;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001694 *divisor = custom;
1695
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001696 dev_dbg(&port->dev, " Baud %d = %d\n", baudrate, custom);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001697 return 0;
1698 }
1699
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001700 dev_dbg(&port->dev, "%s", " Baud calculation Failed...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001701 return -1;
1702#endif
1703}
1704
1705/*****************************************************************************
1706 * mos7840_send_cmd_write_baud_rate
1707 * this function sends the proper command to change the baud rate of the
1708 * specified port.
1709 *****************************************************************************/
1710
1711static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1712 int baudRate)
1713{
1714 int divisor = 0;
1715 int status;
1716 __u16 Data;
1717 unsigned char number;
1718 __u16 clk_sel_val;
1719 struct usb_serial_port *port;
1720
1721 if (mos7840_port == NULL)
1722 return -1;
1723
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001724 port = mos7840_port->port;
1725 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001726 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001727
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001728 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001729 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001730
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001731 number = mos7840_port->port->port_number;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001732
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001733 dev_dbg(&port->dev, "%s - baud = %d\n", __func__, baudRate);
Alan Cox880af9d2008-07-22 11:16:12 +01001734 /* reset clk_uart_sel in spregOffset */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001735 if (baudRate > 115200) {
1736#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001737 /* NOTE: need to see the pther register to modify */
1738 /* setting h/w flow control bit to 1 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001739 Data = 0x2b;
1740 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001741 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1742 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001743 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001744 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001745 return -1;
1746 }
1747#endif
1748
1749 } else {
1750#ifdef HW_flow_control
Donald Lee093ea2d2012-03-14 15:26:33 +08001751 /* setting h/w flow control bit to 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001752 Data = 0xb;
1753 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001754 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1755 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001756 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001757 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001758 return -1;
1759 }
1760#endif
1761
1762 }
1763
Alan Cox880af9d2008-07-22 11:16:12 +01001764 if (1) { /* baudRate <= 115200) */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001765 clk_sel_val = 0x0;
1766 Data = 0x0;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001767 status = mos7840_calc_baud_rate_divisor(port, baudRate, &divisor,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001768 &clk_sel_val);
Alan Cox880af9d2008-07-22 11:16:12 +01001769 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1770 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001771 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001772 dev_dbg(&port->dev, "reading spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001773 return -1;
1774 }
1775 Data = (Data & 0x8f) | clk_sel_val;
Alan Cox880af9d2008-07-22 11:16:12 +01001776 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1777 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001778 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001779 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001780 return -1;
1781 }
1782 /* Calculate the Divisor */
1783
1784 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001785 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001786 return status;
1787 }
1788 /* Enable access to divisor latch */
1789 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1790 mos7840_port->shadowLCR = Data;
1791 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1792
1793 /* Write the divisor */
1794 Data = (unsigned char)(divisor & 0xff);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001795 dev_dbg(&port->dev, "set_serial_baud Value to write DLL is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001796 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1797
1798 Data = (unsigned char)((divisor & 0xff00) >> 8);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001799 dev_dbg(&port->dev, "set_serial_baud Value to write DLM is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001800 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1801
1802 /* Disable access to divisor latch */
1803 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1804 mos7840_port->shadowLCR = Data;
1805 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1806
1807 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001808 return status;
1809}
1810
1811/*****************************************************************************
1812 * mos7840_change_port_settings
1813 * This routine is called to set the UART on the device to match
1814 * the specified new settings.
1815 *****************************************************************************/
1816
Alan Cox95da3102008-07-22 11:09:07 +01001817static void mos7840_change_port_settings(struct tty_struct *tty,
1818 struct moschip_port *mos7840_port, struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001819{
Paul B Schroeder3f542972006-08-31 19:41:47 -05001820 int baud;
1821 unsigned cflag;
1822 unsigned iflag;
1823 __u8 lData;
1824 __u8 lParity;
1825 __u8 lStop;
1826 int status;
1827 __u16 Data;
1828 struct usb_serial_port *port;
1829 struct usb_serial *serial;
1830
1831 if (mos7840_port == NULL)
1832 return;
1833
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001834 port = mos7840_port->port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001835
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001836 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001837 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001838
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001839 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001840 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001841
1842 serial = port->serial;
1843
Paul B Schroeder3f542972006-08-31 19:41:47 -05001844 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001845 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001846 return;
1847 }
1848
Paul B Schroeder3f542972006-08-31 19:41:47 -05001849 lData = LCR_BITS_8;
1850 lStop = LCR_STOP_1;
1851 lParity = LCR_PAR_NONE;
1852
Alan Coxadc8d742012-07-14 15:31:47 +01001853 cflag = tty->termios.c_cflag;
1854 iflag = tty->termios.c_iflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001855
1856 /* Change the number of bits */
1857 if (cflag & CSIZE) {
1858 switch (cflag & CSIZE) {
1859 case CS5:
1860 lData = LCR_BITS_5;
1861 break;
1862
1863 case CS6:
1864 lData = LCR_BITS_6;
1865 break;
1866
1867 case CS7:
1868 lData = LCR_BITS_7;
1869 break;
1870 default:
1871 case CS8:
1872 lData = LCR_BITS_8;
1873 break;
1874 }
1875 }
1876 /* Change the Parity bit */
1877 if (cflag & PARENB) {
1878 if (cflag & PARODD) {
1879 lParity = LCR_PAR_ODD;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001880 dev_dbg(&port->dev, "%s - parity = odd\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001881 } else {
1882 lParity = LCR_PAR_EVEN;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001883 dev_dbg(&port->dev, "%s - parity = even\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001884 }
1885
1886 } else {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001887 dev_dbg(&port->dev, "%s - parity = none\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001888 }
1889
Alan Cox880af9d2008-07-22 11:16:12 +01001890 if (cflag & CMSPAR)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001891 lParity = lParity | 0x20;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001892
1893 /* Change the Stop bit */
1894 if (cflag & CSTOPB) {
1895 lStop = LCR_STOP_2;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001896 dev_dbg(&port->dev, "%s - stop bits = 2\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001897 } else {
1898 lStop = LCR_STOP_1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001899 dev_dbg(&port->dev, "%s - stop bits = 1\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001900 }
1901
1902 /* Update the LCR with the correct value */
1903 mos7840_port->shadowLCR &=
1904 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1905 mos7840_port->shadowLCR |= (lData | lParity | lStop);
1906
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001907 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is %x\n", __func__,
1908 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001909 /* Disable Interrupts */
1910 Data = 0x00;
1911 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1912
1913 Data = 0x00;
1914 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1915
1916 Data = 0xcf;
1917 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1918
1919 /* Send the updated LCR value to the mos7840 */
1920 Data = mos7840_port->shadowLCR;
1921
1922 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1923
1924 Data = 0x00b;
1925 mos7840_port->shadowMCR = Data;
1926 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1927 Data = 0x00b;
1928 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1929
1930 /* set up the MCR register and send it to the mos7840 */
1931
1932 mos7840_port->shadowMCR = MCR_MASTER_IE;
Alan Cox880af9d2008-07-22 11:16:12 +01001933 if (cflag & CBAUD)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001934 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001935
Alan Cox880af9d2008-07-22 11:16:12 +01001936 if (cflag & CRTSCTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001937 mos7840_port->shadowMCR |= (MCR_XON_ANY);
Alan Cox880af9d2008-07-22 11:16:12 +01001938 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001939 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001940
1941 Data = mos7840_port->shadowMCR;
1942 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1943
1944 /* Determine divisor based on baud rate */
1945 baud = tty_get_baud_rate(tty);
1946
1947 if (!baud) {
1948 /* pick a default, any default... */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001949 dev_dbg(&port->dev, "%s", "Picked default baud...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001950 baud = 9600;
1951 }
1952
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001953 dev_dbg(&port->dev, "%s - baud rate = %d\n", __func__, baud);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001954 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
1955
1956 /* Enable Interrupts */
1957 Data = 0x0c;
1958 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1959
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001960 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001961 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001962 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001963 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001964 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001965 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001966 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001967 }
1968 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001969 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is End %x\n", __func__,
1970 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001971}
1972
1973/*****************************************************************************
1974 * mos7840_set_termios
1975 * this function is called by the tty driver when it wants to change
1976 * the termios structure
1977 *****************************************************************************/
1978
Alan Cox95da3102008-07-22 11:09:07 +01001979static void mos7840_set_termios(struct tty_struct *tty,
1980 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -08001981 struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001982{
1983 int status;
1984 unsigned int cflag;
1985 struct usb_serial *serial;
1986 struct moschip_port *mos7840_port;
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07001987
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001988 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001989 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001990
1991 serial = port->serial;
1992
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001993 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001994 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001995
1996 mos7840_port = mos7840_get_port_private(port);
1997
1998 if (mos7840_port == NULL)
1999 return;
2000
Paul B Schroeder3f542972006-08-31 19:41:47 -05002001 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002002 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002003 return;
2004 }
2005
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002006 dev_dbg(&port->dev, "%s", "setting termios - \n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002007
Alan Coxadc8d742012-07-14 15:31:47 +01002008 cflag = tty->termios.c_cflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002009
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002010 dev_dbg(&port->dev, "%s - clfag %08x iflag %08x\n", __func__,
Linus Torvaldsd9a80742012-10-01 13:23:01 -07002011 tty->termios.c_cflag, RELEVANT_IFLAG(tty->termios.c_iflag));
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002012 dev_dbg(&port->dev, "%s - old clfag %08x old iflag %08x\n", __func__,
2013 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
Paul B Schroeder3f542972006-08-31 19:41:47 -05002014
2015 /* change the port settings to the new ones specified */
2016
Alan Cox95da3102008-07-22 11:09:07 +01002017 mos7840_change_port_settings(tty, mos7840_port, old_termios);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002018
2019 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002020 dev_dbg(&port->dev, "%s", "URB KILLED !!!!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002021 return;
2022 }
2023
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002024 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002025 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002026 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2027 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002028 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002029 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002030 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002031 }
2032 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002033}
2034
2035/*****************************************************************************
2036 * mos7840_get_lsr_info - get line status register info
2037 *
2038 * Purpose: Let user call ioctl() to get info when the UART physically
2039 * is emptied. On bus types like RS485, the transmitter must
2040 * release the bus after transmitting. This must be done when
2041 * the transmit shift register is empty, not be done when the
2042 * transmit holding register is empty. This functionality
2043 * allows an RS485 driver to be written in user space.
2044 *****************************************************************************/
2045
Alan Cox95da3102008-07-22 11:09:07 +01002046static int mos7840_get_lsr_info(struct tty_struct *tty,
Al Viro97c49652006-10-09 20:29:03 +01002047 unsigned int __user *value)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002048{
2049 int count;
2050 unsigned int result = 0;
2051
Alan Cox95da3102008-07-22 11:09:07 +01002052 count = mos7840_chars_in_buffer(tty);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002053 if (count == 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002054 result = TIOCSER_TEMT;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002055
2056 if (copy_to_user(value, &result, sizeof(int)))
2057 return -EFAULT;
2058 return 0;
2059}
2060
2061/*****************************************************************************
Paul B Schroeder3f542972006-08-31 19:41:47 -05002062 * mos7840_get_serial_info
2063 * function to get information about serial port
2064 *****************************************************************************/
2065
2066static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
Al Viro97c49652006-10-09 20:29:03 +01002067 struct serial_struct __user *retinfo)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002068{
2069 struct serial_struct tmp;
2070
2071 if (mos7840_port == NULL)
2072 return -1;
2073
2074 if (!retinfo)
2075 return -EFAULT;
2076
2077 memset(&tmp, 0, sizeof(tmp));
2078
2079 tmp.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07002080 tmp.line = mos7840_port->port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002081 tmp.port = mos7840_port->port->port_number;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002082 tmp.irq = 0;
2083 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2084 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2085 tmp.baud_base = 9600;
2086 tmp.close_delay = 5 * HZ;
2087 tmp.closing_wait = 30 * HZ;
2088
2089 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2090 return -EFAULT;
2091 return 0;
2092}
2093
2094/*****************************************************************************
2095 * SerialIoctl
2096 * this function handles any ioctl calls to the driver
2097 *****************************************************************************/
2098
Alan Cox00a0d0d2011-02-14 16:27:06 +00002099static int mos7840_ioctl(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002100 unsigned int cmd, unsigned long arg)
2101{
Alan Cox95da3102008-07-22 11:09:07 +01002102 struct usb_serial_port *port = tty->driver_data;
Al Viro97c49652006-10-09 20:29:03 +01002103 void __user *argp = (void __user *)arg;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002104 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002105
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002106 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002107 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002108
2109 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002110
2111 if (mos7840_port == NULL)
2112 return -1;
2113
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002114 dev_dbg(&port->dev, "%s - cmd = 0x%x\n", __func__, cmd);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002115
2116 switch (cmd) {
2117 /* return number of bytes available */
2118
Paul B Schroeder3f542972006-08-31 19:41:47 -05002119 case TIOCSERGETLSR:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002120 dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01002121 return mos7840_get_lsr_info(tty, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002122
Paul B Schroeder3f542972006-08-31 19:41:47 -05002123 case TIOCGSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002124 dev_dbg(&port->dev, "%s TIOCGSERIAL\n", __func__);
Al Viro97c49652006-10-09 20:29:03 +01002125 return mos7840_get_serial_info(mos7840_port, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002126
2127 case TIOCSSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002128 dev_dbg(&port->dev, "%s TIOCSSERIAL\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002129 break;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002130 default:
2131 break;
2132 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002133 return -ENOIOCTLCMD;
2134}
2135
Donald0eafe4d2012-04-19 15:00:45 +08002136static int mos7810_check(struct usb_serial *serial)
2137{
2138 int i, pass_count = 0;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002139 u8 *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002140 __u16 data = 0, mcr_data = 0;
2141 __u16 test_pattern = 0x55AA;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002142 int res;
2143
2144 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
2145 if (!buf)
2146 return 0; /* failed to identify 7810 */
Donald0eafe4d2012-04-19 15:00:45 +08002147
2148 /* Store MCR setting */
Johan Hovold15ee89c332013-05-27 14:44:40 +02002149 res = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
Donald0eafe4d2012-04-19 15:00:45 +08002150 MCS_RDREQ, MCS_RD_RTYPE, 0x0300, MODEM_CONTROL_REGISTER,
Johan Hovold15ee89c332013-05-27 14:44:40 +02002151 buf, VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2152 if (res == VENDOR_READ_LENGTH)
2153 mcr_data = *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002154
2155 for (i = 0; i < 16; i++) {
2156 /* Send the 1-bit test pattern out to MCS7810 test pin */
2157 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2158 MCS_WRREQ, MCS_WR_RTYPE,
2159 (0x0300 | (((test_pattern >> i) & 0x0001) << 1)),
2160 MODEM_CONTROL_REGISTER, NULL, 0, MOS_WDR_TIMEOUT);
2161
2162 /* Read the test pattern back */
Johan Hovold15ee89c332013-05-27 14:44:40 +02002163 res = usb_control_msg(serial->dev,
2164 usb_rcvctrlpipe(serial->dev, 0), MCS_RDREQ,
2165 MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
2166 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2167 if (res == VENDOR_READ_LENGTH)
2168 data = *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002169
2170 /* If this is a MCS7810 device, both test patterns must match */
2171 if (((test_pattern >> i) ^ (~data >> 1)) & 0x0001)
2172 break;
2173
2174 pass_count++;
2175 }
2176
2177 /* Restore MCR setting */
2178 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), MCS_WRREQ,
2179 MCS_WR_RTYPE, 0x0300 | mcr_data, MODEM_CONTROL_REGISTER, NULL,
2180 0, MOS_WDR_TIMEOUT);
2181
Johan Hovold15ee89c332013-05-27 14:44:40 +02002182 kfree(buf);
2183
Donald0eafe4d2012-04-19 15:00:45 +08002184 if (pass_count == 16)
2185 return 1;
2186
2187 return 0;
2188}
2189
Johan Hovold40c24f22013-07-26 11:55:18 +02002190static int mos7840_probe(struct usb_serial *serial,
2191 const struct usb_device_id *id)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002192{
Johan Hovold40c24f22013-07-26 11:55:18 +02002193 u16 product = serial->dev->descriptor.idProduct;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002194 u8 *buf;
Johan Hovold40c24f22013-07-26 11:55:18 +02002195 int device_type;
2196
2197 if (product == MOSCHIP_DEVICE_ID_7810 ||
2198 product == MOSCHIP_DEVICE_ID_7820) {
2199 device_type = product;
2200 goto out;
2201 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002202
Johan Hovold15ee89c332013-05-27 14:44:40 +02002203 buf = kzalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
Johan Hovold40c24f22013-07-26 11:55:18 +02002204 if (!buf)
2205 return -ENOMEM;
2206
2207 usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
Johan Hovold15ee89c332013-05-27 14:44:40 +02002208 MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
2209 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
Donald Lee093ea2d2012-03-14 15:26:33 +08002210
Johan Hovold40c24f22013-07-26 11:55:18 +02002211 /* For a MCS7840 device GPIO0 must be set to 1 */
2212 if (buf[0] & 0x01)
2213 device_type = MOSCHIP_DEVICE_ID_7840;
2214 else if (mos7810_check(serial))
2215 device_type = MOSCHIP_DEVICE_ID_7810;
2216 else
2217 device_type = MOSCHIP_DEVICE_ID_7820;
2218
2219 kfree(buf);
2220out:
2221 usb_set_serial_data(serial, (void *)device_type);
2222
2223 return 0;
2224}
2225
2226static int mos7840_calc_num_ports(struct usb_serial *serial)
2227{
2228 int device_type = (int)usb_get_serial_data(serial);
2229 int mos7840_num_ports;
Donald Lee093ea2d2012-03-14 15:26:33 +08002230
Donald0eafe4d2012-04-19 15:00:45 +08002231 mos7840_num_ports = (device_type >> 4) & 0x000F;
Donald0eafe4d2012-04-19 15:00:45 +08002232
Paul B Schroeder3f542972006-08-31 19:41:47 -05002233 return mos7840_num_ports;
2234}
2235
Johan Hovold80c00752012-10-25 18:56:34 +02002236static int mos7840_port_probe(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002237{
Johan Hovold80c00752012-10-25 18:56:34 +02002238 struct usb_serial *serial = port->serial;
Johan Hovold40c24f22013-07-26 11:55:18 +02002239 int device_type = (int)usb_get_serial_data(serial);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002240 struct moschip_port *mos7840_port;
Johan Hovold80c00752012-10-25 18:56:34 +02002241 int status;
2242 int pnum;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002243 __u16 Data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002244
Paul B Schroeder3f542972006-08-31 19:41:47 -05002245 /* we set up the pointers to the endpoints in the mos7840_open *
2246 * function, as the structures aren't created yet. */
2247
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002248 pnum = port->port_number;
Johan Hovold80c00752012-10-25 18:56:34 +02002249
Johan Hovoldae685ef2012-10-25 18:56:35 +02002250 dev_dbg(&port->dev, "mos7840_startup: configuring port %d\n", pnum);
2251 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
2252 if (mos7840_port == NULL) {
2253 dev_err(&port->dev, "%s - Out of memory\n", __func__);
2254 return -ENOMEM;
2255 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002256
Johan Hovoldae685ef2012-10-25 18:56:35 +02002257 /* Initialize all port interrupt end point to port 0 int
2258 * endpoint. Our device has only one interrupt end point
2259 * common to all port */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002260
Johan Hovoldae685ef2012-10-25 18:56:35 +02002261 mos7840_port->port = port;
2262 mos7840_set_port_private(port, mos7840_port);
2263 spin_lock_init(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002264
Johan Hovoldae685ef2012-10-25 18:56:35 +02002265 /* minor is not initialised until later by
2266 * usb-serial.c:get_free_serial() and cannot therefore be used
2267 * to index device instances */
2268 mos7840_port->port_num = pnum + 1;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07002269 dev_dbg(&port->dev, "port->minor = %d\n", port->minor);
Johan Hovoldae685ef2012-10-25 18:56:35 +02002270 dev_dbg(&port->dev, "mos7840_port->port_num = %d\n", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002271
Johan Hovoldae685ef2012-10-25 18:56:35 +02002272 if (mos7840_port->port_num == 1) {
2273 mos7840_port->SpRegOffset = 0x0;
2274 mos7840_port->ControlRegOffset = 0x1;
2275 mos7840_port->DcrRegOffset = 0x4;
2276 } else if ((mos7840_port->port_num == 2) && (serial->num_ports == 4)) {
2277 mos7840_port->SpRegOffset = 0x8;
2278 mos7840_port->ControlRegOffset = 0x9;
2279 mos7840_port->DcrRegOffset = 0x16;
2280 } else if ((mos7840_port->port_num == 2) && (serial->num_ports == 2)) {
2281 mos7840_port->SpRegOffset = 0xa;
2282 mos7840_port->ControlRegOffset = 0xb;
2283 mos7840_port->DcrRegOffset = 0x19;
2284 } else if ((mos7840_port->port_num == 3) && (serial->num_ports == 4)) {
2285 mos7840_port->SpRegOffset = 0xa;
2286 mos7840_port->ControlRegOffset = 0xb;
2287 mos7840_port->DcrRegOffset = 0x19;
2288 } else if ((mos7840_port->port_num == 4) && (serial->num_ports == 4)) {
2289 mos7840_port->SpRegOffset = 0xc;
2290 mos7840_port->ControlRegOffset = 0xd;
2291 mos7840_port->DcrRegOffset = 0x1c;
2292 }
2293 mos7840_dump_serial_port(port, mos7840_port);
2294 mos7840_set_port_private(port, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002295
Johan Hovoldae685ef2012-10-25 18:56:35 +02002296 /* enable rx_disable bit in control register */
2297 status = mos7840_get_reg_sync(port,
2298 mos7840_port->ControlRegOffset, &Data);
2299 if (status < 0) {
2300 dev_dbg(&port->dev, "Reading ControlReg failed status-0x%x\n", status);
2301 goto out;
2302 } else
2303 dev_dbg(&port->dev, "ControlReg Reading success val is %x, status%d\n", Data, status);
2304 Data |= 0x08; /* setting driver done bit */
2305 Data |= 0x04; /* sp1_bit to have cts change reflect in
2306 modem status reg */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002307
Johan Hovoldae685ef2012-10-25 18:56:35 +02002308 /* Data |= 0x20; //rx_disable bit */
2309 status = mos7840_set_reg_sync(port,
2310 mos7840_port->ControlRegOffset, Data);
2311 if (status < 0) {
2312 dev_dbg(&port->dev, "Writing ControlReg failed(rx_disable) status-0x%x\n", status);
2313 goto out;
2314 } else
2315 dev_dbg(&port->dev, "ControlReg Writing success(rx_disable) status%d\n", status);
2316
2317 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2318 and 0x24 in DCR3 */
2319 Data = 0x01;
2320 status = mos7840_set_reg_sync(port,
2321 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
2322 if (status < 0) {
2323 dev_dbg(&port->dev, "Writing DCR0 failed status-0x%x\n", status);
2324 goto out;
2325 } else
2326 dev_dbg(&port->dev, "DCR0 Writing success status%d\n", status);
2327
2328 Data = 0x05;
2329 status = mos7840_set_reg_sync(port,
2330 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
2331 if (status < 0) {
2332 dev_dbg(&port->dev, "Writing DCR1 failed status-0x%x\n", status);
2333 goto out;
2334 } else
2335 dev_dbg(&port->dev, "DCR1 Writing success status%d\n", status);
2336
2337 Data = 0x24;
2338 status = mos7840_set_reg_sync(port,
2339 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
2340 if (status < 0) {
2341 dev_dbg(&port->dev, "Writing DCR2 failed status-0x%x\n", status);
2342 goto out;
2343 } else
2344 dev_dbg(&port->dev, "DCR2 Writing success status%d\n", status);
2345
2346 /* write values in clkstart0x0 and clkmulti 0x20 */
2347 Data = 0x0;
2348 status = mos7840_set_reg_sync(port, CLK_START_VALUE_REGISTER, Data);
2349 if (status < 0) {
2350 dev_dbg(&port->dev, "Writing CLK_START_VALUE_REGISTER failed status-0x%x\n", status);
2351 goto out;
2352 } else
2353 dev_dbg(&port->dev, "CLK_START_VALUE_REGISTER Writing success status%d\n", status);
2354
2355 Data = 0x20;
2356 status = mos7840_set_reg_sync(port, CLK_MULTI_REGISTER, Data);
2357 if (status < 0) {
2358 dev_dbg(&port->dev, "Writing CLK_MULTI_REGISTER failed status-0x%x\n", status);
2359 goto error;
2360 } else
2361 dev_dbg(&port->dev, "CLK_MULTI_REGISTER Writing success status%d\n", status);
2362
2363 /* write value 0x0 to scratchpad register */
2364 Data = 0x00;
2365 status = mos7840_set_uart_reg(port, SCRATCH_PAD_REGISTER, Data);
2366 if (status < 0) {
2367 dev_dbg(&port->dev, "Writing SCRATCH_PAD_REGISTER failed status-0x%x\n", status);
2368 goto out;
2369 } else
2370 dev_dbg(&port->dev, "SCRATCH_PAD_REGISTER Writing success status%d\n", status);
2371
2372 /* Zero Length flag register */
2373 if ((mos7840_port->port_num != 1) && (serial->num_ports == 2)) {
2374 Data = 0xff;
Johan Hovold80c00752012-10-25 18:56:34 +02002375 status = mos7840_set_reg_sync(port,
Johan Hovoldae685ef2012-10-25 18:56:35 +02002376 (__u16) (ZLP_REG1 +
2377 ((__u16)mos7840_port->port_num)), Data);
2378 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002379 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num)));
Johan Hovoldae685ef2012-10-25 18:56:35 +02002380 if (status < 0) {
2381 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 2, status);
2382 goto out;
2383 } else
2384 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 2, status);
2385 } else {
2386 Data = 0xff;
2387 status = mos7840_set_reg_sync(port,
2388 (__u16) (ZLP_REG1 +
2389 ((__u16)mos7840_port->port_num) - 0x1), Data);
2390 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002391 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num) - 0x1));
Johan Hovoldae685ef2012-10-25 18:56:35 +02002392 if (status < 0) {
2393 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 1, status);
2394 goto out;
2395 } else
2396 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 1, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002397
Johan Hovoldae685ef2012-10-25 18:56:35 +02002398 }
2399 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
2400 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
2401 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2402 GFP_KERNEL);
2403 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2404 !mos7840_port->dr) {
2405 status = -ENOMEM;
2406 goto error;
2407 }
Donald0eafe4d2012-04-19 15:00:45 +08002408
Johan Hovoldae685ef2012-10-25 18:56:35 +02002409 mos7840_port->has_led = false;
Donald0eafe4d2012-04-19 15:00:45 +08002410
Johan Hovoldae685ef2012-10-25 18:56:35 +02002411 /* Initialize LED timers */
2412 if (device_type == MOSCHIP_DEVICE_ID_7810) {
2413 mos7840_port->has_led = true;
Donald0eafe4d2012-04-19 15:00:45 +08002414
Johan Hovoldae685ef2012-10-25 18:56:35 +02002415 init_timer(&mos7840_port->led_timer1);
2416 mos7840_port->led_timer1.function = mos7840_led_off;
2417 mos7840_port->led_timer1.expires =
2418 jiffies + msecs_to_jiffies(LED_ON_MS);
2419 mos7840_port->led_timer1.data = (unsigned long)mos7840_port;
Donald0eafe4d2012-04-19 15:00:45 +08002420
Johan Hovoldae685ef2012-10-25 18:56:35 +02002421 init_timer(&mos7840_port->led_timer2);
2422 mos7840_port->led_timer2.function = mos7840_led_flag_off;
2423 mos7840_port->led_timer2.expires =
2424 jiffies + msecs_to_jiffies(LED_OFF_MS);
2425 mos7840_port->led_timer2.data = (unsigned long)mos7840_port;
Donald0eafe4d2012-04-19 15:00:45 +08002426
Johan Hovoldae685ef2012-10-25 18:56:35 +02002427 mos7840_port->led_flag = false;
Donald0eafe4d2012-04-19 15:00:45 +08002428
Johan Hovoldae685ef2012-10-25 18:56:35 +02002429 /* Turn off LED */
2430 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
2431 }
2432out:
Johan Hovold80c00752012-10-25 18:56:34 +02002433 if (pnum == serial->num_ports - 1) {
2434 /* Zero Length flag enable */
2435 Data = 0x0f;
2436 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2437 if (status < 0) {
2438 dev_dbg(&port->dev, "Writing ZLP_REG5 failed status-0x%x\n", status);
2439 goto error;
2440 } else
2441 dev_dbg(&port->dev, "ZLP_REG5 Writing success status%d\n", status);
2442
2443 /* setting configuration feature to one */
2444 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2445 0x03, 0x00, 0x01, 0x00, NULL, 0x00,
2446 MOS_WDR_TIMEOUT);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002447 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002448 return 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002449error:
Johan Hovold80c00752012-10-25 18:56:34 +02002450 kfree(mos7840_port->dr);
2451 kfree(mos7840_port->ctrl_buf);
2452 usb_free_urb(mos7840_port->control_urb);
2453 kfree(mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002454
Oliver Neukum0de9a702007-03-16 20:28:28 +01002455 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002456}
2457
Johan Hovold80c00752012-10-25 18:56:34 +02002458static int mos7840_port_remove(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002459{
Paul B Schroeder3f542972006-08-31 19:41:47 -05002460 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002461
Johan Hovold80c00752012-10-25 18:56:34 +02002462 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002463
Johan Hovold80c00752012-10-25 18:56:34 +02002464 if (mos7840_port->has_led) {
2465 /* Turn off LED */
2466 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002467
Johan Hovold80c00752012-10-25 18:56:34 +02002468 del_timer_sync(&mos7840_port->led_timer1);
2469 del_timer_sync(&mos7840_port->led_timer2);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002470 }
Johan Hovold80c00752012-10-25 18:56:34 +02002471 usb_kill_urb(mos7840_port->control_urb);
2472 usb_free_urb(mos7840_port->control_urb);
2473 kfree(mos7840_port->ctrl_buf);
2474 kfree(mos7840_port->dr);
2475 kfree(mos7840_port);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002476
Johan Hovold80c00752012-10-25 18:56:34 +02002477 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002478}
2479
2480static struct usb_serial_driver moschip7840_4port_device = {
2481 .driver = {
2482 .owner = THIS_MODULE,
2483 .name = "mos7840",
2484 },
2485 .description = DRIVER_DESC,
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002486 .id_table = id_table,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002487 .num_ports = 4,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002488 .open = mos7840_open,
2489 .close = mos7840_close,
2490 .write = mos7840_write,
2491 .write_room = mos7840_write_room,
2492 .chars_in_buffer = mos7840_chars_in_buffer,
2493 .throttle = mos7840_throttle,
2494 .unthrottle = mos7840_unthrottle,
2495 .calc_num_ports = mos7840_calc_num_ports,
Johan Hovold40c24f22013-07-26 11:55:18 +02002496 .probe = mos7840_probe,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002497 .ioctl = mos7840_ioctl,
2498 .set_termios = mos7840_set_termios,
2499 .break_ctl = mos7840_break,
2500 .tiocmget = mos7840_tiocmget,
2501 .tiocmset = mos7840_tiocmset,
Johan Hovold0c613372013-03-21 12:37:17 +01002502 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold8c1a07f2013-03-21 12:37:16 +01002503 .get_icount = usb_serial_generic_get_icount,
Johan Hovold80c00752012-10-25 18:56:34 +02002504 .port_probe = mos7840_port_probe,
2505 .port_remove = mos7840_port_remove,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002506 .read_bulk_callback = mos7840_bulk_in_callback,
2507 .read_int_callback = mos7840_interrupt_callback,
2508};
2509
Alan Stern4d2a7af2012-02-23 14:57:09 -05002510static struct usb_serial_driver * const serial_drivers[] = {
2511 &moschip7840_4port_device, NULL
2512};
2513
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002514module_usb_serial_driver(serial_drivers, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002515
Paul B Schroeder3f542972006-08-31 19:41:47 -05002516MODULE_DESCRIPTION(DRIVER_DESC);
2517MODULE_LICENSE("GPL");