blob: fdf953539c62b4943a5ef1c6f93eab52cd53e463 [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,
Johan Hovold05cf0de2013-07-26 11:55:19 +0200188 MOS7840_FLAG_LED_BUSY,
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200189};
Paul B Schroeder3f542972006-08-31 19:41:47 -0500190
Tony Zelenoffb9c87662012-06-05 17:58:04 +0400191static const struct usb_device_id id_table[] = {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500192 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
193 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Donald0eafe4d2012-04-19 15:00:45 +0800194 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7810)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500195 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400196 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500197 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400198 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500199 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
200 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
201 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
202 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800207 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930208 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000209 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500210 {} /* terminating entry */
211};
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700212MODULE_DEVICE_TABLE(usb, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500213
214/* This structure holds all of the local port information */
215
216struct moschip_port {
217 int port_num; /*Actual port number in the device(1,2,etc) */
218 struct urb *write_urb; /* write URB for this port */
219 struct urb *read_urb; /* read URB for this port */
220 __u8 shadowLCR; /* last LCR value received */
221 __u8 shadowMCR; /* last MCR value received */
222 char open;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100223 char open_ports;
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;
Donald0eafe4d2012-04-19 15:00:45 +0800243 struct timer_list led_timer1; /* Timer for LED on */
244 struct timer_list led_timer2; /* Timer for LED off */
Johan Hovold05cf0de2013-07-26 11:55:19 +0200245 struct urb *led_urb;
246 struct usb_ctrlrequest *led_dr;
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200247
248 unsigned long flags;
Donald0eafe4d2012-04-19 15:00:45 +0800249};
Paul B Schroeder3f542972006-08-31 19:41:47 -0500250
Paul B Schroeder3f542972006-08-31 19:41:47 -0500251/*
252 * mos7840_set_reg_sync
253 * To set the Control register by calling usb_fill_control_urb function
254 * by passing usb_sndctrlpipe function as parameter.
255 */
256
257static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
258 __u16 val)
259{
260 struct usb_device *dev = port->serial->dev;
261 val = val & 0x00ff;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700262 dev_dbg(&port->dev, "mos7840_set_reg_sync offset is %x, value %x\n", reg, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500263
264 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
265 MCS_WR_RTYPE, val, reg, NULL, 0,
266 MOS_WDR_TIMEOUT);
267}
268
269/*
270 * mos7840_get_reg_sync
271 * To set the Uart register by calling usb_fill_control_urb function by
272 * passing usb_rcvctrlpipe function as parameter.
273 */
274
275static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100276 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500277{
278 struct usb_device *dev = port->serial->dev;
279 int ret = 0;
Johan Hovold9e221a32009-12-28 23:01:55 +0100280 u8 *buf;
281
282 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
283 if (!buf)
284 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500285
286 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100287 MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500288 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100289 *val = buf[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700290 dev_dbg(&port->dev, "%s offset is %x, return val %x\n", __func__, reg, *val);
Johan Hovold9e221a32009-12-28 23:01:55 +0100291
292 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500293 return ret;
294}
295
296/*
297 * mos7840_set_uart_reg
298 * To set the Uart register by calling usb_fill_control_urb function by
299 * passing usb_sndctrlpipe function as parameter.
300 */
301
302static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
303 __u16 val)
304{
305
306 struct usb_device *dev = port->serial->dev;
307 val = val & 0x00ff;
Alan Cox880af9d2008-07-22 11:16:12 +0100308 /* For the UART control registers, the application number need
309 to be Or'ed */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100310 if (port->serial->num_ports == 4) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700311 val |= ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500312 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700313 if (port->port_number == 0) {
314 val |= ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500315 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700316 val |= ((__u16)port->port_number + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500317 }
318 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700319 dev_dbg(&port->dev, "%s application number is %x\n", __func__, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500320 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
321 MCS_WR_RTYPE, val, reg, NULL, 0,
322 MOS_WDR_TIMEOUT);
323
324}
325
326/*
327 * mos7840_get_uart_reg
328 * To set the Control register by calling usb_fill_control_urb function
329 * by passing usb_rcvctrlpipe function as parameter.
330 */
331static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100332 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500333{
334 struct usb_device *dev = port->serial->dev;
335 int ret = 0;
336 __u16 Wval;
Johan Hovold9e221a32009-12-28 23:01:55 +0100337 u8 *buf;
338
339 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
340 if (!buf)
341 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500342
Alan Cox880af9d2008-07-22 11:16:12 +0100343 /* Wval is same as application number */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100344 if (port->serial->num_ports == 4) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700345 Wval = ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500346 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700347 if (port->port_number == 0) {
348 Wval = ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500349 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700350 Wval = ((__u16)port->port_number + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500351 }
352 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700353 dev_dbg(&port->dev, "%s application number is %x\n", __func__, Wval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500354 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100355 MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500356 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100357 *val = buf[0];
358
359 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500360 return ret;
361}
362
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700363static void mos7840_dump_serial_port(struct usb_serial_port *port,
364 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500365{
366
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700367 dev_dbg(&port->dev, "SpRegOffset is %2x\n", mos7840_port->SpRegOffset);
368 dev_dbg(&port->dev, "ControlRegOffset is %2x\n", mos7840_port->ControlRegOffset);
369 dev_dbg(&port->dev, "DCRRegOffset is %2x\n", mos7840_port->DcrRegOffset);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500370
371}
372
373/************************************************************************/
374/************************************************************************/
375/* I N T E R F A C E F U N C T I O N S */
376/* I N T E R F A C E F U N C T I O N S */
377/************************************************************************/
378/************************************************************************/
379
380static inline void mos7840_set_port_private(struct usb_serial_port *port,
381 struct moschip_port *data)
382{
383 usb_set_serial_port_data(port, (void *)data);
384}
385
386static inline struct moschip_port *mos7840_get_port_private(struct
387 usb_serial_port
388 *port)
389{
390 return (struct moschip_port *)usb_get_serial_port_data(port);
391}
392
Oliver Neukum0de9a702007-03-16 20:28:28 +0100393static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500394{
395 struct moschip_port *mos7840_port;
396 struct async_icount *icount;
397 mos7840_port = port;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500398 if (new_msr &
399 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
400 MOS_MSR_DELTA_CD)) {
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100401 icount = &mos7840_port->port->icount;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500402
403 /* update input line counters */
Johan Hovoldc9fac852013-03-21 12:37:15 +0100404 if (new_msr & MOS_MSR_DELTA_CTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500405 icount->cts++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100406 if (new_msr & MOS_MSR_DELTA_DSR)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500407 icount->dsr++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100408 if (new_msr & MOS_MSR_DELTA_CD)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500409 icount->dcd++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100410 if (new_msr & MOS_MSR_DELTA_RI)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500411 icount->rng++;
Johan Hovolde670c6a2013-03-19 09:21:19 +0100412
Johan Hovold0c613372013-03-21 12:37:17 +0100413 wake_up_interruptible(&port->port->port.delta_msr_wait);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500414 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500415}
416
Oliver Neukum0de9a702007-03-16 20:28:28 +0100417static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500418{
419 struct async_icount *icount;
420
Paul B Schroeder3f542972006-08-31 19:41:47 -0500421 if (new_lsr & SERIAL_LSR_BI) {
Alan Cox880af9d2008-07-22 11:16:12 +0100422 /*
423 * Parity and Framing errors only count if they
424 * occur exclusive of a break being
425 * received.
426 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500427 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
428 }
429
430 /* update input line counters */
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100431 icount = &port->port->icount;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100432 if (new_lsr & SERIAL_LSR_BI)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500433 icount->brk++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100434 if (new_lsr & SERIAL_LSR_OE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500435 icount->overrun++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100436 if (new_lsr & SERIAL_LSR_PE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500437 icount->parity++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100438 if (new_lsr & SERIAL_LSR_FE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500439 icount->frame++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500440}
441
442/************************************************************************/
443/************************************************************************/
444/* U S B C A L L B A C K F U N C T I O N S */
445/* U S B C A L L B A C K F U N C T I O N S */
446/************************************************************************/
447/************************************************************************/
448
David Howells7d12e782006-10-05 14:55:46 +0100449static void mos7840_control_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500450{
451 unsigned char *data;
452 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700453 struct device *dev = &urb->dev->dev;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500454 __u8 regval = 0x0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700455 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500456
Ming Leicdc97792008-02-24 18:41:47 +0800457 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100458
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700459 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500460 case 0:
461 /* success */
462 break;
463 case -ECONNRESET:
464 case -ENOENT:
465 case -ESHUTDOWN:
466 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700467 dev_dbg(dev, "%s - urb shutting down with status: %d\n", __func__, status);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200468 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500469 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700470 dev_dbg(dev, "%s - nonzero urb status received: %d\n", __func__, status);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200471 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500472 }
473
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700474 dev_dbg(dev, "%s urb buffer size is %d\n", __func__, urb->actual_length);
475 dev_dbg(dev, "%s mos7840_port->MsrLsr is %d port %d\n", __func__,
476 mos7840_port->MsrLsr, mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500477 data = urb->transfer_buffer;
478 regval = (__u8) data[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700479 dev_dbg(dev, "%s data is %x\n", __func__, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500480 if (mos7840_port->MsrLsr == 0)
481 mos7840_handle_new_msr(mos7840_port, regval);
482 else if (mos7840_port->MsrLsr == 1)
483 mos7840_handle_new_lsr(mos7840_port, regval);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200484out:
485 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mos7840_port->flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500486}
487
488static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100489 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500490{
491 struct usb_device *dev = mcs->port->serial->dev;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100492 struct usb_ctrlrequest *dr = mcs->dr;
493 unsigned char *buffer = mcs->ctrl_buf;
494 int ret;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500495
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200496 if (test_and_set_bit_lock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags))
497 return -EBUSY;
498
Paul B Schroeder3f542972006-08-31 19:41:47 -0500499 dr->bRequestType = MCS_RD_RTYPE;
500 dr->bRequest = MCS_RDREQ;
Alan Cox880af9d2008-07-22 11:16:12 +0100501 dr->wValue = cpu_to_le16(Wval); /* 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500502 dr->wIndex = cpu_to_le16(reg);
503 dr->wLength = cpu_to_le16(2);
504
505 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
506 (unsigned char *)dr, buffer, 2,
507 mos7840_control_callback, mcs);
508 mcs->control_urb->transfer_buffer_length = 2;
509 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200510 if (ret)
511 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags);
512
Paul B Schroeder3f542972006-08-31 19:41:47 -0500513 return ret;
514}
515
Donald0eafe4d2012-04-19 15:00:45 +0800516static void mos7840_set_led_callback(struct urb *urb)
517{
518 switch (urb->status) {
519 case 0:
520 /* Success */
521 break;
522 case -ECONNRESET:
523 case -ENOENT:
524 case -ESHUTDOWN:
525 /* This urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700526 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d",
527 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800528 break;
529 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700530 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d",
531 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800532 }
533}
534
535static void mos7840_set_led_async(struct moschip_port *mcs, __u16 wval,
536 __u16 reg)
537{
538 struct usb_device *dev = mcs->port->serial->dev;
Johan Hovold05cf0de2013-07-26 11:55:19 +0200539 struct usb_ctrlrequest *dr = mcs->led_dr;
Donald0eafe4d2012-04-19 15:00:45 +0800540
541 dr->bRequestType = MCS_WR_RTYPE;
542 dr->bRequest = MCS_WRREQ;
543 dr->wValue = cpu_to_le16(wval);
544 dr->wIndex = cpu_to_le16(reg);
545 dr->wLength = cpu_to_le16(0);
546
Johan Hovold05cf0de2013-07-26 11:55:19 +0200547 usb_fill_control_urb(mcs->led_urb, dev, usb_sndctrlpipe(dev, 0),
Donald0eafe4d2012-04-19 15:00:45 +0800548 (unsigned char *)dr, NULL, 0, mos7840_set_led_callback, NULL);
549
Johan Hovold05cf0de2013-07-26 11:55:19 +0200550 usb_submit_urb(mcs->led_urb, GFP_ATOMIC);
Donald0eafe4d2012-04-19 15:00:45 +0800551}
552
553static void mos7840_set_led_sync(struct usb_serial_port *port, __u16 reg,
554 __u16 val)
555{
556 struct usb_device *dev = port->serial->dev;
557
558 usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ, MCS_WR_RTYPE,
559 val, reg, NULL, 0, MOS_WDR_TIMEOUT);
560}
561
562static void mos7840_led_off(unsigned long arg)
563{
564 struct moschip_port *mcs = (struct moschip_port *) arg;
565
566 /* Turn off LED */
567 mos7840_set_led_async(mcs, 0x0300, MODEM_CONTROL_REGISTER);
568 mod_timer(&mcs->led_timer2,
569 jiffies + msecs_to_jiffies(LED_OFF_MS));
570}
571
572static void mos7840_led_flag_off(unsigned long arg)
573{
574 struct moschip_port *mcs = (struct moschip_port *) arg;
575
Johan Hovold05cf0de2013-07-26 11:55:19 +0200576 clear_bit_unlock(MOS7840_FLAG_LED_BUSY, &mcs->flags);
577}
578
579static void mos7840_led_activity(struct usb_serial_port *port)
580{
581 struct moschip_port *mos7840_port = usb_get_serial_port_data(port);
582
583 if (test_and_set_bit_lock(MOS7840_FLAG_LED_BUSY, &mos7840_port->flags))
584 return;
585
586 mos7840_set_led_async(mos7840_port, 0x0301, MODEM_CONTROL_REGISTER);
587 mod_timer(&mos7840_port->led_timer1,
588 jiffies + msecs_to_jiffies(LED_ON_MS));
Donald0eafe4d2012-04-19 15:00:45 +0800589}
590
Paul B Schroeder3f542972006-08-31 19:41:47 -0500591/*****************************************************************************
592 * mos7840_interrupt_callback
593 * this is the callback function for when we have received data on the
594 * interrupt endpoint.
595 *****************************************************************************/
596
David Howells7d12e782006-10-05 14:55:46 +0100597static void mos7840_interrupt_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500598{
599 int result;
600 int length;
601 struct moschip_port *mos7840_port;
602 struct usb_serial *serial;
603 __u16 Data;
604 unsigned char *data;
605 __u8 sp[5], st;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100606 int i, rv = 0;
607 __u16 wval, wreg = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700608 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500609
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700610 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500611 case 0:
612 /* success */
613 break;
614 case -ECONNRESET:
615 case -ENOENT:
616 case -ESHUTDOWN:
617 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700618 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
619 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500620 return;
621 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700622 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n",
623 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500624 goto exit;
625 }
626
627 length = urb->actual_length;
628 data = urb->transfer_buffer;
629
Ming Leicdc97792008-02-24 18:41:47 +0800630 serial = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500631
632 /* Moschip get 5 bytes
633 * Byte 1 IIR Port 1 (port.number is 0)
634 * Byte 2 IIR Port 2 (port.number is 1)
635 * Byte 3 IIR Port 3 (port.number is 2)
636 * Byte 4 IIR Port 4 (port.number is 3)
637 * Byte 5 FIFO status for both */
638
639 if (length && length > 5) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700640 dev_dbg(&urb->dev->dev, "%s", "Wrong data !!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500641 return;
642 }
643
644 sp[0] = (__u8) data[0];
645 sp[1] = (__u8) data[1];
646 sp[2] = (__u8) data[2];
647 sp[3] = (__u8) data[3];
648 st = (__u8) data[4];
649
650 for (i = 0; i < serial->num_ports; i++) {
651 mos7840_port = mos7840_get_port_private(serial->port[i]);
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700652 wval = ((__u16)serial->port[i]->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500653 if (mos7840_port->open) {
654 if (sp[i] & 0x01) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700655 dev_dbg(&urb->dev->dev, "SP%d No Interrupt !!!\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500656 } else {
657 switch (sp[i] & 0x0f) {
658 case SERIAL_IIR_RLS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700659 dev_dbg(&urb->dev->dev, "Serial Port %d: Receiver status error or \n", i);
660 dev_dbg(&urb->dev->dev, "address bit detected in 9-bit mode\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500661 mos7840_port->MsrLsr = 1;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100662 wreg = LINE_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500663 break;
664 case SERIAL_IIR_MS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700665 dev_dbg(&urb->dev->dev, "Serial Port %d: Modem status change\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500666 mos7840_port->MsrLsr = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100667 wreg = MODEM_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500668 break;
669 }
Johan Hovolde681b662012-10-25 18:56:33 +0200670 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500671 }
672 }
673 }
Alan Cox880af9d2008-07-22 11:16:12 +0100674 if (!(rv < 0))
675 /* the completion handler for the control urb will resubmit */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100676 return;
677exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -0500678 result = usb_submit_urb(urb, GFP_ATOMIC);
679 if (result) {
680 dev_err(&urb->dev->dev,
681 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800682 __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500683 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500684}
685
686static int mos7840_port_paranoia_check(struct usb_serial_port *port,
687 const char *function)
688{
689 if (!port) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700690 pr_debug("%s - port == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500691 return -1;
692 }
693 if (!port->serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700694 pr_debug("%s - port->serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500695 return -1;
696 }
697
698 return 0;
699}
700
701/* Inline functions to check the sanity of a pointer that is passed to us */
702static int mos7840_serial_paranoia_check(struct usb_serial *serial,
703 const char *function)
704{
705 if (!serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700706 pr_debug("%s - serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500707 return -1;
708 }
709 if (!serial->type) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700710 pr_debug("%s - serial->type == NULL!\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500711 return -1;
712 }
713
714 return 0;
715}
716
717static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
718 const char *function)
719{
720 /* if no port was specified, or it fails a paranoia check */
721 if (!port ||
722 mos7840_port_paranoia_check(port, function) ||
723 mos7840_serial_paranoia_check(port->serial, function)) {
Alan Cox880af9d2008-07-22 11:16:12 +0100724 /* then say that we don't have a valid usb_serial thing,
725 * which will end up genrating -ENODEV return values */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500726 return NULL;
727 }
728
729 return port->serial;
730}
731
732/*****************************************************************************
733 * mos7840_bulk_in_callback
734 * this is the callback function for when we have received data on the
735 * bulk in endpoint.
736 *****************************************************************************/
737
David Howells7d12e782006-10-05 14:55:46 +0100738static void mos7840_bulk_in_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500739{
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700740 int retval;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500741 unsigned char *data;
742 struct usb_serial *serial;
743 struct usb_serial_port *port;
744 struct moschip_port *mos7840_port;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700745 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500746
Ming Leicdc97792008-02-24 18:41:47 +0800747 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700748 if (!mos7840_port)
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800749 return;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800750
751 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700752 dev_dbg(&urb->dev->dev, "nonzero read bulk status received: %d\n", status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800753 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500754 return;
755 }
756
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700757 port = mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800758 if (mos7840_port_paranoia_check(port, __func__)) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800759 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500760 return;
761 }
762
Harvey Harrison441b62c2008-03-03 16:08:34 -0800763 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500764 if (!serial) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800765 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500766 return;
767 }
768
Paul B Schroeder3f542972006-08-31 19:41:47 -0500769 data = urb->transfer_buffer;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100770 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500771
Paul B Schroeder3f542972006-08-31 19:41:47 -0500772 if (urb->actual_length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100773 struct tty_port *tport = &mos7840_port->port->port;
Jiri Slaby2e124b42013-01-03 15:53:06 +0100774 tty_insert_flip_string(tport, data, urb->actual_length);
775 tty_flip_buffer_push(tport);
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100776 port->icount.rx += urb->actual_length;
777 dev_dbg(&port->dev, "icount.rx is %d:\n", port->icount.rx);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500778 }
779
780 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700781 dev_dbg(&port->dev, "%s", "URB KILLED !!!\n");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800782 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500783 return;
784 }
785
Johan Hovold05cf0de2013-07-26 11:55:19 +0200786 if (mos7840_port->has_led)
787 mos7840_led_activity(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500788
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800789 mos7840_port->read_urb_busy = true;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700790 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100791
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700792 if (retval) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700793 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, retval = %d\n", retval);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800794 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500795 }
796}
797
798/*****************************************************************************
799 * mos7840_bulk_out_data_callback
Alan Cox880af9d2008-07-22 11:16:12 +0100800 * this is the callback function for when we have finished sending
801 * serial data on the bulk out endpoint.
Paul B Schroeder3f542972006-08-31 19:41:47 -0500802 *****************************************************************************/
803
David Howells7d12e782006-10-05 14:55:46 +0100804static void mos7840_bulk_out_data_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500805{
806 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700807 struct usb_serial_port *port;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700808 int status = urb->status;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100809 int i;
810
Ming Leicdc97792008-02-24 18:41:47 +0800811 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700812 port = mos7840_port->port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100813 spin_lock(&mos7840_port->pool_lock);
814 for (i = 0; i < NUM_URBS; i++) {
815 if (urb == mos7840_port->write_urb_pool[i]) {
816 mos7840_port->busy[i] = 0;
817 break;
818 }
819 }
820 spin_unlock(&mos7840_port->pool_lock);
821
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700822 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700823 dev_dbg(&port->dev, "nonzero write bulk status received:%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500824 return;
825 }
826
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700827 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500828 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500829
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100830 if (mos7840_port->open)
831 tty_port_tty_wakeup(&port->port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500832
833}
834
835/************************************************************************/
836/* 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 */
837/************************************************************************/
Paul B Schroeder3f542972006-08-31 19:41:47 -0500838
839/*****************************************************************************
840 * mos7840_open
841 * this function is called by the tty driver when a port is opened
842 * If successful, we return 0
843 * Otherwise we return a negative error number.
844 *****************************************************************************/
845
Alan Coxa509a7e2009-09-19 13:13:26 -0700846static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500847{
848 int response;
849 int j;
850 struct usb_serial *serial;
851 struct urb *urb;
852 __u16 Data;
853 int status;
854 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100855 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500856
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700857 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500858 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500859
Paul B Schroeder3f542972006-08-31 19:41:47 -0500860 serial = port->serial;
861
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700862 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500863 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500864
865 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100866 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500867
Oliver Neukum0de9a702007-03-16 20:28:28 +0100868 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500869 return -ENODEV;
870
871 usb_clear_halt(serial->dev, port->write_urb->pipe);
872 usb_clear_halt(serial->dev, port->read_urb->pipe);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100873 port0->open_ports++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500874
875 /* Initialising the write urb pool */
876 for (j = 0; j < NUM_URBS; ++j) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100877 urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500878 mos7840_port->write_urb_pool[j] = urb;
879
880 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700881 dev_err(&port->dev, "No more urbs???\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500882 continue;
883 }
884
Alan Cox880af9d2008-07-22 11:16:12 +0100885 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
886 GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500887 if (!urb->transfer_buffer) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100888 usb_free_urb(urb);
889 mos7840_port->write_urb_pool[j] = NULL;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700890 dev_err(&port->dev,
891 "%s-out of memory for urb buffers.\n",
892 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500893 continue;
894 }
895 }
896
897/*****************************************************************************
898 * Initialize MCS7840 -- Write Init values to corresponding Registers
899 *
900 * Register Index
901 * 1 : IER
902 * 2 : FCR
903 * 3 : LCR
904 * 4 : MCR
905 *
906 * 0x08 : SP1/2 Control Reg
907 *****************************************************************************/
908
Alan Cox880af9d2008-07-22 11:16:12 +0100909 /* NEED to check the following Block */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500910
Paul B Schroeder3f542972006-08-31 19:41:47 -0500911 Data = 0x0;
912 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
913 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700914 dev_dbg(&port->dev, "Reading Spreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200915 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500916 }
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 }
923
924 Data &= ~0x80;
925 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
926 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700927 dev_dbg(&port->dev, "writing Spreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200928 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500929 }
Alan Cox880af9d2008-07-22 11:16:12 +0100930 /* End of block to be checked */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500931
Paul B Schroeder3f542972006-08-31 19:41:47 -0500932 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +0100933 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
934 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500935 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700936 dev_dbg(&port->dev, "Reading Controlreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200937 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500938 }
Alan Cox880af9d2008-07-22 11:16:12 +0100939 Data |= 0x08; /* Driver done bit */
940 Data |= 0x20; /* rx_disable */
941 status = mos7840_set_reg_sync(port,
942 mos7840_port->ControlRegOffset, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500943 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700944 dev_dbg(&port->dev, "writing Controlreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200945 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500946 }
Alan Cox880af9d2008-07-22 11:16:12 +0100947 /* do register settings here */
948 /* Set all regs to the device default values. */
949 /***********************************
950 * First Disable all interrupts.
951 ***********************************/
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, INTERRUPT_ENABLE_REGISTER, Data);
954 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700955 dev_dbg(&port->dev, "disabling interrupts failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200956 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500957 }
Alan Cox880af9d2008-07-22 11:16:12 +0100958 /* Set FIFO_CONTROL_REGISTER to the default value */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500959 Data = 0x00;
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 = 0xcf;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500967 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
968 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700969 dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200970 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500971 }
972
973 Data = 0x03;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500974 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
975 mos7840_port->shadowLCR = Data;
976
977 Data = 0x0b;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500978 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
979 mos7840_port->shadowMCR = Data;
980
981 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500982 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
983 mos7840_port->shadowLCR = Data;
984
Alan Cox880af9d2008-07-22 11:16:12 +0100985 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500986 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
987
988 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500989 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
990
991 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500992 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
993
994 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500995 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
996
997 Data = Data & ~SERIAL_LCR_DLAB;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500998 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
999 mos7840_port->shadowLCR = Data;
1000
Alan Cox880af9d2008-07-22 11:16:12 +01001001 /* clearing Bulkin and Bulkout Fifo */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001002 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001003 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
1004
1005 Data = Data | 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001006 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1007
1008 Data = Data & ~0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001009 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
Alan Cox880af9d2008-07-22 11:16:12 +01001010 /* Finally enable all interrupts */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001011 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001012 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1013
Alan Cox880af9d2008-07-22 11:16:12 +01001014 /* clearing rx_disable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001015 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001016 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1017 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001018 Data = Data & ~0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01001019 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1020 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001021
Alan Cox880af9d2008-07-22 11:16:12 +01001022 /* rx_negate */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001023 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001024 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1025 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001026 Data = Data | 0x10;
Alan Cox880af9d2008-07-22 11:16:12 +01001027 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1028 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001029
Alan Cox880af9d2008-07-22 11:16:12 +01001030 /* Check to see if we've set up our endpoint info yet *
1031 * (can't set it up in mos7840_startup as the structures *
1032 * were not set up at that time.) */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001033 if (port0->open_ports == 1) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001034 if (serial->port[0]->interrupt_in_buffer == NULL) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001035 /* set up interrupt urb */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001036 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
Alan Cox880af9d2008-07-22 11:16:12 +01001037 serial->dev,
1038 usb_rcvintpipe(serial->dev,
1039 serial->port[0]->interrupt_in_endpointAddress),
1040 serial->port[0]->interrupt_in_buffer,
1041 serial->port[0]->interrupt_in_urb->
1042 transfer_buffer_length,
1043 mos7840_interrupt_callback,
1044 serial,
1045 serial->port[0]->interrupt_in_urb->interval);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001046
1047 /* start interrupt read for mos7840 *
1048 * will continue as long as mos7840 is connected */
1049
1050 response =
1051 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1052 GFP_KERNEL);
1053 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001054 dev_err(&port->dev, "%s - Error %d submitting "
1055 "interrupt urb\n", __func__, response);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001056 }
1057
1058 }
1059
1060 }
1061
1062 /* see if we've set up our endpoint info yet *
1063 * (can't set it up in mos7840_startup as the *
1064 * structures were not set up at that time.) */
1065
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001066 dev_dbg(&port->dev, "port number is %d\n", port->port_number);
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001067 dev_dbg(&port->dev, "minor number is %d\n", port->minor);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001068 dev_dbg(&port->dev, "Bulkin endpoint is %d\n", port->bulk_in_endpointAddress);
1069 dev_dbg(&port->dev, "BulkOut endpoint is %d\n", port->bulk_out_endpointAddress);
1070 dev_dbg(&port->dev, "Interrupt endpoint is %d\n", port->interrupt_in_endpointAddress);
1071 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 -05001072 mos7840_port->read_urb = port->read_urb;
1073
1074 /* set up our bulk in urb */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001075 if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
Donald Lee093ea2d2012-03-14 15:26:33 +08001076 usb_fill_bulk_urb(mos7840_port->read_urb,
1077 serial->dev,
1078 usb_rcvbulkpipe(serial->dev,
1079 (port->bulk_in_endpointAddress) + 2),
1080 port->bulk_in_buffer,
1081 mos7840_port->read_urb->transfer_buffer_length,
1082 mos7840_bulk_in_callback, mos7840_port);
1083 } else {
1084 usb_fill_bulk_urb(mos7840_port->read_urb,
1085 serial->dev,
1086 usb_rcvbulkpipe(serial->dev,
1087 port->bulk_in_endpointAddress),
1088 port->bulk_in_buffer,
1089 mos7840_port->read_urb->transfer_buffer_length,
1090 mos7840_bulk_in_callback, mos7840_port);
1091 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001092
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001093 dev_dbg(&port->dev, "%s: bulkin endpoint is %d\n", __func__, port->bulk_in_endpointAddress);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001094 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001095 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1096 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001097 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1098 __func__, response);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001099 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001100 }
1101
Paul B Schroeder3f542972006-08-31 19:41:47 -05001102 /* initialize our port settings */
Alan Cox880af9d2008-07-22 11:16:12 +01001103 /* Must set to enable ints! */
1104 mos7840_port->shadowMCR = MCR_MASTER_IE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001105 /* send a open port command */
1106 mos7840_port->open = 1;
Alan Cox880af9d2008-07-22 11:16:12 +01001107 /* mos7840_change_port_settings(mos7840_port,old_termios); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001108
Paul B Schroeder3f542972006-08-31 19:41:47 -05001109 return 0;
Johan Hovold5f8a2e62013-07-01 14:03:33 +02001110err:
1111 for (j = 0; j < NUM_URBS; ++j) {
1112 urb = mos7840_port->write_urb_pool[j];
1113 if (!urb)
1114 continue;
1115 kfree(urb->transfer_buffer);
1116 usb_free_urb(urb);
1117 }
1118 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001119}
1120
1121/*****************************************************************************
1122 * mos7840_chars_in_buffer
1123 * this function is called by the tty driver when it wants to know how many
1124 * bytes of data we currently have outstanding in the port (data that has
1125 * been written, but hasn't made it out the port yet)
1126 * If successful, we return the number of bytes left to be written in the
1127 * system,
Alan Cox95da3102008-07-22 11:09:07 +01001128 * Otherwise we return zero.
Paul B Schroeder3f542972006-08-31 19:41:47 -05001129 *****************************************************************************/
1130
Alan Cox95da3102008-07-22 11:09:07 +01001131static int mos7840_chars_in_buffer(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001132{
Alan Cox95da3102008-07-22 11:09:07 +01001133 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001134 int i;
1135 int chars = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001136 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001137 struct moschip_port *mos7840_port;
1138
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001139 if (mos7840_port_paranoia_check(port, __func__))
Alan Cox95da3102008-07-22 11:09:07 +01001140 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001141
1142 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07001143 if (mos7840_port == NULL)
Alan Cox95da3102008-07-22 11:09:07 +01001144 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001145
Alan Cox880af9d2008-07-22 11:16:12 +01001146 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Mark Ferrell5c263b92012-07-24 14:15:13 -05001147 for (i = 0; i < NUM_URBS; ++i) {
1148 if (mos7840_port->busy[i]) {
1149 struct urb *urb = mos7840_port->write_urb_pool[i];
1150 chars += urb->transfer_buffer_length;
1151 }
1152 }
Alan Cox880af9d2008-07-22 11:16:12 +01001153 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001154 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001155 return chars;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001156
1157}
1158
Paul B Schroeder3f542972006-08-31 19:41:47 -05001159/*****************************************************************************
1160 * mos7840_close
1161 * this function is called by the tty driver when a port is closed
1162 *****************************************************************************/
1163
Alan Cox335f8512009-06-11 12:26:29 +01001164static void mos7840_close(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001165{
1166 struct usb_serial *serial;
1167 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001168 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001169 int j;
1170 __u16 Data;
1171
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001172 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001173 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001174
Harvey Harrison441b62c2008-03-03 16:08:34 -08001175 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001176 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001177 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001178
1179 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001180 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001181
Oliver Neukum0de9a702007-03-16 20:28:28 +01001182 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001183 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001184
1185 for (j = 0; j < NUM_URBS; ++j)
1186 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1187
1188 /* Freeing Write URBs */
1189 for (j = 0; j < NUM_URBS; ++j) {
1190 if (mos7840_port->write_urb_pool[j]) {
1191 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1192 kfree(mos7840_port->write_urb_pool[j]->
1193 transfer_buffer);
1194
1195 usb_free_urb(mos7840_port->write_urb_pool[j]);
1196 }
1197 }
1198
Johan Hovoldbb3529c2013-03-21 12:36:35 +01001199 usb_kill_urb(mos7840_port->write_urb);
1200 usb_kill_urb(mos7840_port->read_urb);
1201 mos7840_port->read_urb_busy = false;
1202
Oliver Neukum0de9a702007-03-16 20:28:28 +01001203 port0->open_ports--;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001204 dev_dbg(&port->dev, "%s in close%d\n", __func__, port0->open_ports);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001205 if (port0->open_ports == 0) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001206 if (serial->port[0]->interrupt_in_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001207 dev_dbg(&port->dev, "Shutdown interrupt_in_urb\n");
Oliver Neukum0de9a702007-03-16 20:28:28 +01001208 usb_kill_urb(serial->port[0]->interrupt_in_urb);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001209 }
1210 }
1211
1212 if (mos7840_port->write_urb) {
1213 /* if this urb had a transfer buffer already (old tx) free it */
Syam Sidhardhanae8d4872013-03-07 01:51:12 +05301214 kfree(mos7840_port->write_urb->transfer_buffer);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001215 usb_free_urb(mos7840_port->write_urb);
1216 }
1217
1218 Data = 0x0;
1219 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1220
1221 Data = 0x00;
1222 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1223
1224 mos7840_port->open = 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001225}
1226
Paul B Schroeder3f542972006-08-31 19:41:47 -05001227/*****************************************************************************
1228 * mos7840_break
1229 * this function sends a break to the port
1230 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001231static void mos7840_break(struct tty_struct *tty, int break_state)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001232{
Alan Cox95da3102008-07-22 11:09:07 +01001233 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001234 unsigned char data;
1235 struct usb_serial *serial;
1236 struct moschip_port *mos7840_port;
1237
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001238 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001239 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001240
Harvey Harrison441b62c2008-03-03 16:08:34 -08001241 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001242 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001243 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001244
1245 mos7840_port = mos7840_get_port_private(port);
1246
Alan Cox880af9d2008-07-22 11:16:12 +01001247 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001248 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001249
Alan Cox95da3102008-07-22 11:09:07 +01001250 if (break_state == -1)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001251 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
Alan Cox95da3102008-07-22 11:09:07 +01001252 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001253 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001254
Alan Cox6b447f042009-01-02 13:48:56 +00001255 /* FIXME: no locking on shadowLCR anywhere in driver */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001256 mos7840_port->shadowLCR = data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001257 dev_dbg(&port->dev, "%s mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001258 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1259 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001260}
1261
1262/*****************************************************************************
1263 * mos7840_write_room
1264 * this function is called by the tty driver when it wants to know how many
1265 * bytes of data we can accept for a specific port.
1266 * If successful, we return the amount of room that we have for this port
1267 * Otherwise we return a negative error number.
1268 *****************************************************************************/
1269
Alan Cox95da3102008-07-22 11:09:07 +01001270static int mos7840_write_room(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001271{
Alan Cox95da3102008-07-22 11:09:07 +01001272 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001273 int i;
1274 int room = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001275 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001276 struct moschip_port *mos7840_port;
1277
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001278 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001279 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001280
1281 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001282 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001283 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001284
Oliver Neukum0de9a702007-03-16 20:28:28 +01001285 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001286 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox880af9d2008-07-22 11:16:12 +01001287 if (!mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001288 room += URB_TRANSFER_BUFFER_SIZE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001289 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001290 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001291
Oliver Neukum0de9a702007-03-16 20:28:28 +01001292 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001293 dev_dbg(&mos7840_port->port->dev, "%s - returns %d\n", __func__, room);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001294 return room;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001295
1296}
1297
1298/*****************************************************************************
1299 * mos7840_write
1300 * this function is called by the tty driver when data should be written to
1301 * the port.
1302 * If successful, we return the number of bytes written, otherwise we
1303 * return a negative error number.
1304 *****************************************************************************/
1305
Alan Cox95da3102008-07-22 11:09:07 +01001306static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001307 const unsigned char *data, int count)
1308{
1309 int status;
1310 int i;
1311 int bytes_sent = 0;
1312 int transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001313 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001314
1315 struct moschip_port *mos7840_port;
1316 struct usb_serial *serial;
1317 struct urb *urb;
Alan Cox880af9d2008-07-22 11:16:12 +01001318 /* __u16 Data; */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001319 const unsigned char *current_position = data;
1320 unsigned char *data1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001321
1322#ifdef NOTMOS7840
1323 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001324 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1325 mos7840_port->shadowLCR = Data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001326 dev_dbg(&port->dev, "%s: LINE_CONTROL_REGISTER is %x\n", __func__, Data);
1327 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001328
Alan Cox880af9d2008-07-22 11:16:12 +01001329 /* Data = 0x03; */
1330 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1331 /* mos7840_port->shadowLCR=Data;//Need to add later */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001332
Alan Cox880af9d2008-07-22 11:16:12 +01001333 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001334 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1335
Alan Cox880af9d2008-07-22 11:16:12 +01001336 /* Data = 0x0c; */
1337 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001338 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001339 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001340 dev_dbg(&port->dev, "%s: DLL value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001341
1342 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001343 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001344 dev_dbg(&port->dev, "%s: DLM value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001345
1346 Data = Data & ~SERIAL_LCR_DLAB;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001347 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001348 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1349#endif
1350
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001351 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001352 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001353
1354 serial = port->serial;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001355 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001356 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001357
1358 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001359 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001360 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001361
1362 /* try to find a free urb in the list */
1363 urb = NULL;
1364
Oliver Neukum0de9a702007-03-16 20:28:28 +01001365 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001366 for (i = 0; i < NUM_URBS; ++i) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001367 if (!mos7840_port->busy[i]) {
1368 mos7840_port->busy[i] = 1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001369 urb = mos7840_port->write_urb_pool[i];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001370 dev_dbg(&port->dev, "URB:%d\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001371 break;
1372 }
1373 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001374 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001375
1376 if (urb == NULL) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001377 dev_dbg(&port->dev, "%s - no more free urbs\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001378 goto exit;
1379 }
1380
1381 if (urb->transfer_buffer == NULL) {
1382 urb->transfer_buffer =
1383 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1384
1385 if (urb->transfer_buffer == NULL) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001386 dev_err_console(port, "%s no more kernel memory...\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001387 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001388 goto exit;
1389 }
1390 }
1391 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1392
Al Viro97c49652006-10-09 20:29:03 +01001393 memcpy(urb->transfer_buffer, current_position, transfer_size);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001394
1395 /* fill urb with data and submit */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001396 if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
Donald Lee093ea2d2012-03-14 15:26:33 +08001397 usb_fill_bulk_urb(urb,
1398 serial->dev,
1399 usb_sndbulkpipe(serial->dev,
1400 (port->bulk_out_endpointAddress) + 2),
1401 urb->transfer_buffer,
1402 transfer_size,
1403 mos7840_bulk_out_data_callback, mos7840_port);
1404 } else {
1405 usb_fill_bulk_urb(urb,
1406 serial->dev,
1407 usb_sndbulkpipe(serial->dev,
1408 port->bulk_out_endpointAddress),
1409 urb->transfer_buffer,
1410 transfer_size,
1411 mos7840_bulk_out_data_callback, mos7840_port);
1412 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001413
1414 data1 = urb->transfer_buffer;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001415 dev_dbg(&port->dev, "bulkout endpoint is %d\n", port->bulk_out_endpointAddress);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001416
Johan Hovold05cf0de2013-07-26 11:55:19 +02001417 if (mos7840_port->has_led)
1418 mos7840_led_activity(port);
Donald0eafe4d2012-04-19 15:00:45 +08001419
Paul B Schroeder3f542972006-08-31 19:41:47 -05001420 /* send it down the pipe */
1421 status = usb_submit_urb(urb, GFP_ATOMIC);
1422
1423 if (status) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001424 mos7840_port->busy[i] = 0;
Johan Hovold22a416c2012-02-10 13:20:51 +01001425 dev_err_console(port, "%s - usb_submit_urb(write bulk) failed "
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001426 "with status = %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001427 bytes_sent = status;
1428 goto exit;
1429 }
1430 bytes_sent = transfer_size;
Johan Hovold8c1a07f2013-03-21 12:37:16 +01001431 port->icount.tx += transfer_size;
1432 dev_dbg(&port->dev, "icount.tx is %d:\n", port->icount.tx);
Alan Cox95da3102008-07-22 11:09:07 +01001433exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -05001434 return bytes_sent;
1435
1436}
1437
1438/*****************************************************************************
1439 * mos7840_throttle
1440 * this function is called by the tty driver when it wants to stop the data
1441 * being read from the port.
1442 *****************************************************************************/
1443
Alan Cox95da3102008-07-22 11:09:07 +01001444static void mos7840_throttle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001445{
Alan Cox95da3102008-07-22 11:09:07 +01001446 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001447 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001448 int status;
1449
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001450 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001451 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001452
1453 mos7840_port = mos7840_get_port_private(port);
1454
1455 if (mos7840_port == NULL)
1456 return;
1457
1458 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001459 dev_dbg(&port->dev, "%s", "port not opened\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001460 return;
1461 }
1462
Paul B Schroeder3f542972006-08-31 19:41:47 -05001463 /* if we are implementing XON/XOFF, send the stop character */
1464 if (I_IXOFF(tty)) {
1465 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001466 status = mos7840_write(tty, port, &stop_char, 1);
1467 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001468 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001469 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001470 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001471 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001472 mos7840_port->shadowMCR &= ~MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001473 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001474 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001475 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001476 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001477 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001478}
1479
1480/*****************************************************************************
1481 * mos7840_unthrottle
Alan Cox880af9d2008-07-22 11:16:12 +01001482 * this function is called by the tty driver when it wants to resume
1483 * the data being read from the port (called after mos7840_throttle is
1484 * called)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001485 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001486static void mos7840_unthrottle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001487{
Alan Cox95da3102008-07-22 11:09:07 +01001488 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001489 int status;
1490 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1491
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001492 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001493 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001494
1495 if (mos7840_port == NULL)
1496 return;
1497
1498 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001499 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001500 return;
1501 }
1502
Paul B Schroeder3f542972006-08-31 19:41:47 -05001503 /* if we are implementing XON/XOFF, send the start character */
1504 if (I_IXOFF(tty)) {
1505 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001506 status = mos7840_write(tty, port, &start_char, 1);
1507 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001508 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001509 }
1510
1511 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001512 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001513 mos7840_port->shadowMCR |= MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001514 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001515 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001516 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001517 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001518 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001519}
1520
Alan Cox60b33c12011-02-14 16:26:14 +00001521static int mos7840_tiocmget(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001522{
Alan Cox95da3102008-07-22 11:09:07 +01001523 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001524 struct moschip_port *mos7840_port;
1525 unsigned int result;
1526 __u16 msr;
1527 __u16 mcr;
Alan Cox880af9d2008-07-22 11:16:12 +01001528 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001529 mos7840_port = mos7840_get_port_private(port);
1530
Paul B Schroeder3f542972006-08-31 19:41:47 -05001531 if (mos7840_port == NULL)
1532 return -ENODEV;
1533
1534 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1535 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1536 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1537 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1538 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1539 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1540 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1541 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1542 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1543
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001544 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001545
1546 return result;
1547}
1548
Alan Cox20b9d172011-02-14 16:26:50 +00001549static int mos7840_tiocmset(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001550 unsigned int set, unsigned int clear)
1551{
Alan Cox95da3102008-07-22 11:09:07 +01001552 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001553 struct moschip_port *mos7840_port;
1554 unsigned int mcr;
Roel Kluin87521c42008-04-17 06:16:24 +02001555 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001556
Paul B Schroeder3f542972006-08-31 19:41:47 -05001557 mos7840_port = mos7840_get_port_private(port);
1558
1559 if (mos7840_port == NULL)
1560 return -ENODEV;
1561
Alan Coxe2984492008-02-20 20:51:45 +00001562 /* FIXME: What locks the port registers ? */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001563 mcr = mos7840_port->shadowMCR;
1564 if (clear & TIOCM_RTS)
1565 mcr &= ~MCR_RTS;
1566 if (clear & TIOCM_DTR)
1567 mcr &= ~MCR_DTR;
1568 if (clear & TIOCM_LOOP)
1569 mcr &= ~MCR_LOOPBACK;
1570
1571 if (set & TIOCM_RTS)
1572 mcr |= MCR_RTS;
1573 if (set & TIOCM_DTR)
1574 mcr |= MCR_DTR;
1575 if (set & TIOCM_LOOP)
1576 mcr |= MCR_LOOPBACK;
1577
1578 mos7840_port->shadowMCR = mcr;
1579
Paul B Schroeder3f542972006-08-31 19:41:47 -05001580 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1581 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001582 dev_dbg(&port->dev, "setting MODEM_CONTROL_REGISTER Failed\n");
Roel Kluin87521c42008-04-17 06:16:24 +02001583 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001584 }
1585
1586 return 0;
1587}
1588
1589/*****************************************************************************
1590 * mos7840_calc_baud_rate_divisor
1591 * this function calculates the proper baud rate divisor for the specified
1592 * baud rate.
1593 *****************************************************************************/
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001594static int mos7840_calc_baud_rate_divisor(struct usb_serial_port *port,
1595 int baudRate, int *divisor,
Alan Cox880af9d2008-07-22 11:16:12 +01001596 __u16 *clk_sel_val)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001597{
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001598 dev_dbg(&port->dev, "%s - %d\n", __func__, baudRate);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001599
1600 if (baudRate <= 115200) {
1601 *divisor = 115200 / baudRate;
1602 *clk_sel_val = 0x0;
1603 }
1604 if ((baudRate > 115200) && (baudRate <= 230400)) {
1605 *divisor = 230400 / baudRate;
1606 *clk_sel_val = 0x10;
1607 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1608 *divisor = 403200 / baudRate;
1609 *clk_sel_val = 0x20;
1610 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1611 *divisor = 460800 / baudRate;
1612 *clk_sel_val = 0x30;
1613 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1614 *divisor = 806400 / baudRate;
1615 *clk_sel_val = 0x40;
1616 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1617 *divisor = 921600 / baudRate;
1618 *clk_sel_val = 0x50;
1619 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1620 *divisor = 1572864 / baudRate;
1621 *clk_sel_val = 0x60;
1622 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1623 *divisor = 3145728 / baudRate;
1624 *clk_sel_val = 0x70;
1625 }
1626 return 0;
1627
1628#ifdef NOTMCS7840
1629
1630 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1631 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1632 *divisor = mos7840_divisor_table[i].Divisor;
1633 return 0;
1634 }
1635 }
1636
1637 /* After trying for all the standard baud rates *
1638 * Try calculating the divisor for this baud rate */
1639
1640 if (baudrate > 75 && baudrate < 230400) {
1641 /* get the divisor */
1642 custom = (__u16) (230400L / baudrate);
1643
1644 /* Check for round off */
1645 round1 = (__u16) (2304000L / baudrate);
1646 round = (__u16) (round1 - (custom * 10));
Alan Cox880af9d2008-07-22 11:16:12 +01001647 if (round > 4)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001648 custom++;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001649 *divisor = custom;
1650
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001651 dev_dbg(&port->dev, " Baud %d = %d\n", baudrate, custom);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001652 return 0;
1653 }
1654
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001655 dev_dbg(&port->dev, "%s", " Baud calculation Failed...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001656 return -1;
1657#endif
1658}
1659
1660/*****************************************************************************
1661 * mos7840_send_cmd_write_baud_rate
1662 * this function sends the proper command to change the baud rate of the
1663 * specified port.
1664 *****************************************************************************/
1665
1666static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1667 int baudRate)
1668{
1669 int divisor = 0;
1670 int status;
1671 __u16 Data;
1672 unsigned char number;
1673 __u16 clk_sel_val;
1674 struct usb_serial_port *port;
1675
1676 if (mos7840_port == NULL)
1677 return -1;
1678
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001679 port = mos7840_port->port;
1680 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001681 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001682
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001683 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001684 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001685
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001686 number = mos7840_port->port->port_number;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001687
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001688 dev_dbg(&port->dev, "%s - baud = %d\n", __func__, baudRate);
Alan Cox880af9d2008-07-22 11:16:12 +01001689 /* reset clk_uart_sel in spregOffset */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001690 if (baudRate > 115200) {
1691#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001692 /* NOTE: need to see the pther register to modify */
1693 /* setting h/w flow control bit to 1 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001694 Data = 0x2b;
1695 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001696 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1697 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001698 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001699 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001700 return -1;
1701 }
1702#endif
1703
1704 } else {
1705#ifdef HW_flow_control
Donald Lee093ea2d2012-03-14 15:26:33 +08001706 /* setting h/w flow control bit to 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001707 Data = 0xb;
1708 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001709 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1710 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001711 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001712 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001713 return -1;
1714 }
1715#endif
1716
1717 }
1718
Alan Cox880af9d2008-07-22 11:16:12 +01001719 if (1) { /* baudRate <= 115200) */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001720 clk_sel_val = 0x0;
1721 Data = 0x0;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001722 status = mos7840_calc_baud_rate_divisor(port, baudRate, &divisor,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001723 &clk_sel_val);
Alan Cox880af9d2008-07-22 11:16:12 +01001724 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1725 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001726 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001727 dev_dbg(&port->dev, "reading spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001728 return -1;
1729 }
1730 Data = (Data & 0x8f) | clk_sel_val;
Alan Cox880af9d2008-07-22 11:16:12 +01001731 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1732 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001733 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001734 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001735 return -1;
1736 }
1737 /* Calculate the Divisor */
1738
1739 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001740 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001741 return status;
1742 }
1743 /* Enable access to divisor latch */
1744 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1745 mos7840_port->shadowLCR = Data;
1746 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1747
1748 /* Write the divisor */
1749 Data = (unsigned char)(divisor & 0xff);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001750 dev_dbg(&port->dev, "set_serial_baud Value to write DLL is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001751 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1752
1753 Data = (unsigned char)((divisor & 0xff00) >> 8);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001754 dev_dbg(&port->dev, "set_serial_baud Value to write DLM is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001755 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1756
1757 /* Disable access to divisor latch */
1758 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1759 mos7840_port->shadowLCR = Data;
1760 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1761
1762 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001763 return status;
1764}
1765
1766/*****************************************************************************
1767 * mos7840_change_port_settings
1768 * This routine is called to set the UART on the device to match
1769 * the specified new settings.
1770 *****************************************************************************/
1771
Alan Cox95da3102008-07-22 11:09:07 +01001772static void mos7840_change_port_settings(struct tty_struct *tty,
1773 struct moschip_port *mos7840_port, struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001774{
Paul B Schroeder3f542972006-08-31 19:41:47 -05001775 int baud;
1776 unsigned cflag;
1777 unsigned iflag;
1778 __u8 lData;
1779 __u8 lParity;
1780 __u8 lStop;
1781 int status;
1782 __u16 Data;
1783 struct usb_serial_port *port;
1784 struct usb_serial *serial;
1785
1786 if (mos7840_port == NULL)
1787 return;
1788
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001789 port = mos7840_port->port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001790
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001791 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001792 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001793
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001794 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001795 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001796
1797 serial = port->serial;
1798
Paul B Schroeder3f542972006-08-31 19:41:47 -05001799 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001800 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001801 return;
1802 }
1803
Paul B Schroeder3f542972006-08-31 19:41:47 -05001804 lData = LCR_BITS_8;
1805 lStop = LCR_STOP_1;
1806 lParity = LCR_PAR_NONE;
1807
Alan Coxadc8d742012-07-14 15:31:47 +01001808 cflag = tty->termios.c_cflag;
1809 iflag = tty->termios.c_iflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001810
1811 /* Change the number of bits */
1812 if (cflag & CSIZE) {
1813 switch (cflag & CSIZE) {
1814 case CS5:
1815 lData = LCR_BITS_5;
1816 break;
1817
1818 case CS6:
1819 lData = LCR_BITS_6;
1820 break;
1821
1822 case CS7:
1823 lData = LCR_BITS_7;
1824 break;
1825 default:
1826 case CS8:
1827 lData = LCR_BITS_8;
1828 break;
1829 }
1830 }
1831 /* Change the Parity bit */
1832 if (cflag & PARENB) {
1833 if (cflag & PARODD) {
1834 lParity = LCR_PAR_ODD;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001835 dev_dbg(&port->dev, "%s - parity = odd\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001836 } else {
1837 lParity = LCR_PAR_EVEN;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001838 dev_dbg(&port->dev, "%s - parity = even\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001839 }
1840
1841 } else {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001842 dev_dbg(&port->dev, "%s - parity = none\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001843 }
1844
Alan Cox880af9d2008-07-22 11:16:12 +01001845 if (cflag & CMSPAR)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001846 lParity = lParity | 0x20;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001847
1848 /* Change the Stop bit */
1849 if (cflag & CSTOPB) {
1850 lStop = LCR_STOP_2;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001851 dev_dbg(&port->dev, "%s - stop bits = 2\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001852 } else {
1853 lStop = LCR_STOP_1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001854 dev_dbg(&port->dev, "%s - stop bits = 1\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001855 }
1856
1857 /* Update the LCR with the correct value */
1858 mos7840_port->shadowLCR &=
1859 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1860 mos7840_port->shadowLCR |= (lData | lParity | lStop);
1861
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001862 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is %x\n", __func__,
1863 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001864 /* Disable Interrupts */
1865 Data = 0x00;
1866 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1867
1868 Data = 0x00;
1869 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1870
1871 Data = 0xcf;
1872 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1873
1874 /* Send the updated LCR value to the mos7840 */
1875 Data = mos7840_port->shadowLCR;
1876
1877 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1878
1879 Data = 0x00b;
1880 mos7840_port->shadowMCR = Data;
1881 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1882 Data = 0x00b;
1883 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1884
1885 /* set up the MCR register and send it to the mos7840 */
1886
1887 mos7840_port->shadowMCR = MCR_MASTER_IE;
Alan Cox880af9d2008-07-22 11:16:12 +01001888 if (cflag & CBAUD)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001889 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001890
Alan Cox880af9d2008-07-22 11:16:12 +01001891 if (cflag & CRTSCTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001892 mos7840_port->shadowMCR |= (MCR_XON_ANY);
Alan Cox880af9d2008-07-22 11:16:12 +01001893 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001894 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001895
1896 Data = mos7840_port->shadowMCR;
1897 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1898
1899 /* Determine divisor based on baud rate */
1900 baud = tty_get_baud_rate(tty);
1901
1902 if (!baud) {
1903 /* pick a default, any default... */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001904 dev_dbg(&port->dev, "%s", "Picked default baud...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001905 baud = 9600;
1906 }
1907
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001908 dev_dbg(&port->dev, "%s - baud rate = %d\n", __func__, baud);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001909 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
1910
1911 /* Enable Interrupts */
1912 Data = 0x0c;
1913 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1914
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001915 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001916 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001917 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001918 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001919 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001920 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001921 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001922 }
1923 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001924 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is End %x\n", __func__,
1925 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001926}
1927
1928/*****************************************************************************
1929 * mos7840_set_termios
1930 * this function is called by the tty driver when it wants to change
1931 * the termios structure
1932 *****************************************************************************/
1933
Alan Cox95da3102008-07-22 11:09:07 +01001934static void mos7840_set_termios(struct tty_struct *tty,
1935 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -08001936 struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001937{
1938 int status;
1939 unsigned int cflag;
1940 struct usb_serial *serial;
1941 struct moschip_port *mos7840_port;
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07001942
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001943 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001944 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001945
1946 serial = port->serial;
1947
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001948 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001949 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001950
1951 mos7840_port = mos7840_get_port_private(port);
1952
1953 if (mos7840_port == NULL)
1954 return;
1955
Paul B Schroeder3f542972006-08-31 19:41:47 -05001956 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001957 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001958 return;
1959 }
1960
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001961 dev_dbg(&port->dev, "%s", "setting termios - \n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001962
Alan Coxadc8d742012-07-14 15:31:47 +01001963 cflag = tty->termios.c_cflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001964
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001965 dev_dbg(&port->dev, "%s - clfag %08x iflag %08x\n", __func__,
Linus Torvaldsd9a80742012-10-01 13:23:01 -07001966 tty->termios.c_cflag, RELEVANT_IFLAG(tty->termios.c_iflag));
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001967 dev_dbg(&port->dev, "%s - old clfag %08x old iflag %08x\n", __func__,
1968 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
Paul B Schroeder3f542972006-08-31 19:41:47 -05001969
1970 /* change the port settings to the new ones specified */
1971
Alan Cox95da3102008-07-22 11:09:07 +01001972 mos7840_change_port_settings(tty, mos7840_port, old_termios);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001973
1974 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001975 dev_dbg(&port->dev, "%s", "URB KILLED !!!!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001976 return;
1977 }
1978
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001979 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001980 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001981 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
1982 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001983 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001984 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001985 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001986 }
1987 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001988}
1989
1990/*****************************************************************************
1991 * mos7840_get_lsr_info - get line status register info
1992 *
1993 * Purpose: Let user call ioctl() to get info when the UART physically
1994 * is emptied. On bus types like RS485, the transmitter must
1995 * release the bus after transmitting. This must be done when
1996 * the transmit shift register is empty, not be done when the
1997 * transmit holding register is empty. This functionality
1998 * allows an RS485 driver to be written in user space.
1999 *****************************************************************************/
2000
Alan Cox95da3102008-07-22 11:09:07 +01002001static int mos7840_get_lsr_info(struct tty_struct *tty,
Al Viro97c49652006-10-09 20:29:03 +01002002 unsigned int __user *value)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002003{
2004 int count;
2005 unsigned int result = 0;
2006
Alan Cox95da3102008-07-22 11:09:07 +01002007 count = mos7840_chars_in_buffer(tty);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002008 if (count == 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002009 result = TIOCSER_TEMT;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002010
2011 if (copy_to_user(value, &result, sizeof(int)))
2012 return -EFAULT;
2013 return 0;
2014}
2015
2016/*****************************************************************************
Paul B Schroeder3f542972006-08-31 19:41:47 -05002017 * mos7840_get_serial_info
2018 * function to get information about serial port
2019 *****************************************************************************/
2020
2021static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
Al Viro97c49652006-10-09 20:29:03 +01002022 struct serial_struct __user *retinfo)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002023{
2024 struct serial_struct tmp;
2025
2026 if (mos7840_port == NULL)
2027 return -1;
2028
2029 if (!retinfo)
2030 return -EFAULT;
2031
2032 memset(&tmp, 0, sizeof(tmp));
2033
2034 tmp.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07002035 tmp.line = mos7840_port->port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002036 tmp.port = mos7840_port->port->port_number;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002037 tmp.irq = 0;
2038 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2039 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2040 tmp.baud_base = 9600;
2041 tmp.close_delay = 5 * HZ;
2042 tmp.closing_wait = 30 * HZ;
2043
2044 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2045 return -EFAULT;
2046 return 0;
2047}
2048
2049/*****************************************************************************
2050 * SerialIoctl
2051 * this function handles any ioctl calls to the driver
2052 *****************************************************************************/
2053
Alan Cox00a0d0d2011-02-14 16:27:06 +00002054static int mos7840_ioctl(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002055 unsigned int cmd, unsigned long arg)
2056{
Alan Cox95da3102008-07-22 11:09:07 +01002057 struct usb_serial_port *port = tty->driver_data;
Al Viro97c49652006-10-09 20:29:03 +01002058 void __user *argp = (void __user *)arg;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002059 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002060
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002061 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002062 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002063
2064 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002065
2066 if (mos7840_port == NULL)
2067 return -1;
2068
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002069 dev_dbg(&port->dev, "%s - cmd = 0x%x\n", __func__, cmd);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002070
2071 switch (cmd) {
2072 /* return number of bytes available */
2073
Paul B Schroeder3f542972006-08-31 19:41:47 -05002074 case TIOCSERGETLSR:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002075 dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01002076 return mos7840_get_lsr_info(tty, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002077
Paul B Schroeder3f542972006-08-31 19:41:47 -05002078 case TIOCGSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002079 dev_dbg(&port->dev, "%s TIOCGSERIAL\n", __func__);
Al Viro97c49652006-10-09 20:29:03 +01002080 return mos7840_get_serial_info(mos7840_port, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002081
2082 case TIOCSSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002083 dev_dbg(&port->dev, "%s TIOCSSERIAL\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002084 break;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002085 default:
2086 break;
2087 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002088 return -ENOIOCTLCMD;
2089}
2090
Donald0eafe4d2012-04-19 15:00:45 +08002091static int mos7810_check(struct usb_serial *serial)
2092{
2093 int i, pass_count = 0;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002094 u8 *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002095 __u16 data = 0, mcr_data = 0;
2096 __u16 test_pattern = 0x55AA;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002097 int res;
2098
2099 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
2100 if (!buf)
2101 return 0; /* failed to identify 7810 */
Donald0eafe4d2012-04-19 15:00:45 +08002102
2103 /* Store MCR setting */
Johan Hovold15ee89c332013-05-27 14:44:40 +02002104 res = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
Donald0eafe4d2012-04-19 15:00:45 +08002105 MCS_RDREQ, MCS_RD_RTYPE, 0x0300, MODEM_CONTROL_REGISTER,
Johan Hovold15ee89c332013-05-27 14:44:40 +02002106 buf, VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2107 if (res == VENDOR_READ_LENGTH)
2108 mcr_data = *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002109
2110 for (i = 0; i < 16; i++) {
2111 /* Send the 1-bit test pattern out to MCS7810 test pin */
2112 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2113 MCS_WRREQ, MCS_WR_RTYPE,
2114 (0x0300 | (((test_pattern >> i) & 0x0001) << 1)),
2115 MODEM_CONTROL_REGISTER, NULL, 0, MOS_WDR_TIMEOUT);
2116
2117 /* Read the test pattern back */
Johan Hovold15ee89c332013-05-27 14:44:40 +02002118 res = usb_control_msg(serial->dev,
2119 usb_rcvctrlpipe(serial->dev, 0), MCS_RDREQ,
2120 MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
2121 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2122 if (res == VENDOR_READ_LENGTH)
2123 data = *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002124
2125 /* If this is a MCS7810 device, both test patterns must match */
2126 if (((test_pattern >> i) ^ (~data >> 1)) & 0x0001)
2127 break;
2128
2129 pass_count++;
2130 }
2131
2132 /* Restore MCR setting */
2133 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), MCS_WRREQ,
2134 MCS_WR_RTYPE, 0x0300 | mcr_data, MODEM_CONTROL_REGISTER, NULL,
2135 0, MOS_WDR_TIMEOUT);
2136
Johan Hovold15ee89c332013-05-27 14:44:40 +02002137 kfree(buf);
2138
Donald0eafe4d2012-04-19 15:00:45 +08002139 if (pass_count == 16)
2140 return 1;
2141
2142 return 0;
2143}
2144
Johan Hovold40c24f22013-07-26 11:55:18 +02002145static int mos7840_probe(struct usb_serial *serial,
2146 const struct usb_device_id *id)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002147{
Johan Hovoldd551ec92013-08-11 16:49:20 +02002148 u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
Johan Hovold15ee89c332013-05-27 14:44:40 +02002149 u8 *buf;
Johan Hovold40c24f22013-07-26 11:55:18 +02002150 int device_type;
2151
2152 if (product == MOSCHIP_DEVICE_ID_7810 ||
2153 product == MOSCHIP_DEVICE_ID_7820) {
2154 device_type = product;
2155 goto out;
2156 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002157
Johan Hovold15ee89c332013-05-27 14:44:40 +02002158 buf = kzalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
Johan Hovold40c24f22013-07-26 11:55:18 +02002159 if (!buf)
2160 return -ENOMEM;
2161
2162 usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
Johan Hovold15ee89c332013-05-27 14:44:40 +02002163 MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
2164 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
Donald Lee093ea2d2012-03-14 15:26:33 +08002165
Johan Hovold40c24f22013-07-26 11:55:18 +02002166 /* For a MCS7840 device GPIO0 must be set to 1 */
2167 if (buf[0] & 0x01)
2168 device_type = MOSCHIP_DEVICE_ID_7840;
2169 else if (mos7810_check(serial))
2170 device_type = MOSCHIP_DEVICE_ID_7810;
2171 else
2172 device_type = MOSCHIP_DEVICE_ID_7820;
2173
2174 kfree(buf);
2175out:
Johan Hovold683a0e42013-07-27 13:34:42 +02002176 usb_set_serial_data(serial, (void *)(unsigned long)device_type);
Johan Hovold40c24f22013-07-26 11:55:18 +02002177
2178 return 0;
2179}
2180
2181static int mos7840_calc_num_ports(struct usb_serial *serial)
2182{
Johan Hovold683a0e42013-07-27 13:34:42 +02002183 int device_type = (unsigned long)usb_get_serial_data(serial);
Johan Hovold40c24f22013-07-26 11:55:18 +02002184 int mos7840_num_ports;
Donald Lee093ea2d2012-03-14 15:26:33 +08002185
Donald0eafe4d2012-04-19 15:00:45 +08002186 mos7840_num_ports = (device_type >> 4) & 0x000F;
Donald0eafe4d2012-04-19 15:00:45 +08002187
Paul B Schroeder3f542972006-08-31 19:41:47 -05002188 return mos7840_num_ports;
2189}
2190
Johan Hovold80c00752012-10-25 18:56:34 +02002191static int mos7840_port_probe(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002192{
Johan Hovold80c00752012-10-25 18:56:34 +02002193 struct usb_serial *serial = port->serial;
Johan Hovold683a0e42013-07-27 13:34:42 +02002194 int device_type = (unsigned long)usb_get_serial_data(serial);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002195 struct moschip_port *mos7840_port;
Johan Hovold80c00752012-10-25 18:56:34 +02002196 int status;
2197 int pnum;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002198 __u16 Data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002199
Paul B Schroeder3f542972006-08-31 19:41:47 -05002200 /* we set up the pointers to the endpoints in the mos7840_open *
2201 * function, as the structures aren't created yet. */
2202
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002203 pnum = port->port_number;
Johan Hovold80c00752012-10-25 18:56:34 +02002204
Johan Hovoldae685ef2012-10-25 18:56:35 +02002205 dev_dbg(&port->dev, "mos7840_startup: configuring port %d\n", pnum);
2206 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
2207 if (mos7840_port == NULL) {
2208 dev_err(&port->dev, "%s - Out of memory\n", __func__);
2209 return -ENOMEM;
2210 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002211
Johan Hovoldae685ef2012-10-25 18:56:35 +02002212 /* Initialize all port interrupt end point to port 0 int
2213 * endpoint. Our device has only one interrupt end point
2214 * common to all port */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002215
Johan Hovoldae685ef2012-10-25 18:56:35 +02002216 mos7840_port->port = port;
2217 mos7840_set_port_private(port, mos7840_port);
2218 spin_lock_init(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002219
Johan Hovoldae685ef2012-10-25 18:56:35 +02002220 /* minor is not initialised until later by
2221 * usb-serial.c:get_free_serial() and cannot therefore be used
2222 * to index device instances */
2223 mos7840_port->port_num = pnum + 1;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07002224 dev_dbg(&port->dev, "port->minor = %d\n", port->minor);
Johan Hovoldae685ef2012-10-25 18:56:35 +02002225 dev_dbg(&port->dev, "mos7840_port->port_num = %d\n", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002226
Johan Hovoldae685ef2012-10-25 18:56:35 +02002227 if (mos7840_port->port_num == 1) {
2228 mos7840_port->SpRegOffset = 0x0;
2229 mos7840_port->ControlRegOffset = 0x1;
2230 mos7840_port->DcrRegOffset = 0x4;
2231 } else if ((mos7840_port->port_num == 2) && (serial->num_ports == 4)) {
2232 mos7840_port->SpRegOffset = 0x8;
2233 mos7840_port->ControlRegOffset = 0x9;
2234 mos7840_port->DcrRegOffset = 0x16;
2235 } else if ((mos7840_port->port_num == 2) && (serial->num_ports == 2)) {
2236 mos7840_port->SpRegOffset = 0xa;
2237 mos7840_port->ControlRegOffset = 0xb;
2238 mos7840_port->DcrRegOffset = 0x19;
2239 } else if ((mos7840_port->port_num == 3) && (serial->num_ports == 4)) {
2240 mos7840_port->SpRegOffset = 0xa;
2241 mos7840_port->ControlRegOffset = 0xb;
2242 mos7840_port->DcrRegOffset = 0x19;
2243 } else if ((mos7840_port->port_num == 4) && (serial->num_ports == 4)) {
2244 mos7840_port->SpRegOffset = 0xc;
2245 mos7840_port->ControlRegOffset = 0xd;
2246 mos7840_port->DcrRegOffset = 0x1c;
2247 }
2248 mos7840_dump_serial_port(port, mos7840_port);
2249 mos7840_set_port_private(port, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002250
Johan Hovoldae685ef2012-10-25 18:56:35 +02002251 /* enable rx_disable bit in control register */
2252 status = mos7840_get_reg_sync(port,
2253 mos7840_port->ControlRegOffset, &Data);
2254 if (status < 0) {
2255 dev_dbg(&port->dev, "Reading ControlReg failed status-0x%x\n", status);
2256 goto out;
2257 } else
2258 dev_dbg(&port->dev, "ControlReg Reading success val is %x, status%d\n", Data, status);
2259 Data |= 0x08; /* setting driver done bit */
2260 Data |= 0x04; /* sp1_bit to have cts change reflect in
2261 modem status reg */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002262
Johan Hovoldae685ef2012-10-25 18:56:35 +02002263 /* Data |= 0x20; //rx_disable bit */
2264 status = mos7840_set_reg_sync(port,
2265 mos7840_port->ControlRegOffset, Data);
2266 if (status < 0) {
2267 dev_dbg(&port->dev, "Writing ControlReg failed(rx_disable) status-0x%x\n", status);
2268 goto out;
2269 } else
2270 dev_dbg(&port->dev, "ControlReg Writing success(rx_disable) status%d\n", status);
2271
2272 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2273 and 0x24 in DCR3 */
2274 Data = 0x01;
2275 status = mos7840_set_reg_sync(port,
2276 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
2277 if (status < 0) {
2278 dev_dbg(&port->dev, "Writing DCR0 failed status-0x%x\n", status);
2279 goto out;
2280 } else
2281 dev_dbg(&port->dev, "DCR0 Writing success status%d\n", status);
2282
2283 Data = 0x05;
2284 status = mos7840_set_reg_sync(port,
2285 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
2286 if (status < 0) {
2287 dev_dbg(&port->dev, "Writing DCR1 failed status-0x%x\n", status);
2288 goto out;
2289 } else
2290 dev_dbg(&port->dev, "DCR1 Writing success status%d\n", status);
2291
2292 Data = 0x24;
2293 status = mos7840_set_reg_sync(port,
2294 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
2295 if (status < 0) {
2296 dev_dbg(&port->dev, "Writing DCR2 failed status-0x%x\n", status);
2297 goto out;
2298 } else
2299 dev_dbg(&port->dev, "DCR2 Writing success status%d\n", status);
2300
2301 /* write values in clkstart0x0 and clkmulti 0x20 */
2302 Data = 0x0;
2303 status = mos7840_set_reg_sync(port, CLK_START_VALUE_REGISTER, Data);
2304 if (status < 0) {
2305 dev_dbg(&port->dev, "Writing CLK_START_VALUE_REGISTER failed status-0x%x\n", status);
2306 goto out;
2307 } else
2308 dev_dbg(&port->dev, "CLK_START_VALUE_REGISTER Writing success status%d\n", status);
2309
2310 Data = 0x20;
2311 status = mos7840_set_reg_sync(port, CLK_MULTI_REGISTER, Data);
2312 if (status < 0) {
2313 dev_dbg(&port->dev, "Writing CLK_MULTI_REGISTER failed status-0x%x\n", status);
2314 goto error;
2315 } else
2316 dev_dbg(&port->dev, "CLK_MULTI_REGISTER Writing success status%d\n", status);
2317
2318 /* write value 0x0 to scratchpad register */
2319 Data = 0x00;
2320 status = mos7840_set_uart_reg(port, SCRATCH_PAD_REGISTER, Data);
2321 if (status < 0) {
2322 dev_dbg(&port->dev, "Writing SCRATCH_PAD_REGISTER failed status-0x%x\n", status);
2323 goto out;
2324 } else
2325 dev_dbg(&port->dev, "SCRATCH_PAD_REGISTER Writing success status%d\n", status);
2326
2327 /* Zero Length flag register */
2328 if ((mos7840_port->port_num != 1) && (serial->num_ports == 2)) {
2329 Data = 0xff;
Johan Hovold80c00752012-10-25 18:56:34 +02002330 status = mos7840_set_reg_sync(port,
Johan Hovoldae685ef2012-10-25 18:56:35 +02002331 (__u16) (ZLP_REG1 +
2332 ((__u16)mos7840_port->port_num)), Data);
2333 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002334 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num)));
Johan Hovoldae685ef2012-10-25 18:56:35 +02002335 if (status < 0) {
2336 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 2, status);
2337 goto out;
2338 } else
2339 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 2, status);
2340 } else {
2341 Data = 0xff;
2342 status = mos7840_set_reg_sync(port,
2343 (__u16) (ZLP_REG1 +
2344 ((__u16)mos7840_port->port_num) - 0x1), Data);
2345 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002346 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num) - 0x1));
Johan Hovoldae685ef2012-10-25 18:56:35 +02002347 if (status < 0) {
2348 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 1, status);
2349 goto out;
2350 } else
2351 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 1, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002352
Johan Hovoldae685ef2012-10-25 18:56:35 +02002353 }
2354 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
2355 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
2356 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2357 GFP_KERNEL);
2358 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2359 !mos7840_port->dr) {
2360 status = -ENOMEM;
2361 goto error;
2362 }
Donald0eafe4d2012-04-19 15:00:45 +08002363
Johan Hovoldae685ef2012-10-25 18:56:35 +02002364 mos7840_port->has_led = false;
Donald0eafe4d2012-04-19 15:00:45 +08002365
Johan Hovoldae685ef2012-10-25 18:56:35 +02002366 /* Initialize LED timers */
2367 if (device_type == MOSCHIP_DEVICE_ID_7810) {
2368 mos7840_port->has_led = true;
Donald0eafe4d2012-04-19 15:00:45 +08002369
Johan Hovold05cf0de2013-07-26 11:55:19 +02002370 mos7840_port->led_urb = usb_alloc_urb(0, GFP_KERNEL);
2371 mos7840_port->led_dr = kmalloc(sizeof(*mos7840_port->led_dr),
2372 GFP_KERNEL);
2373 if (!mos7840_port->led_urb || !mos7840_port->led_dr) {
2374 status = -ENOMEM;
2375 goto error;
2376 }
2377
Johan Hovoldae685ef2012-10-25 18:56:35 +02002378 init_timer(&mos7840_port->led_timer1);
2379 mos7840_port->led_timer1.function = mos7840_led_off;
2380 mos7840_port->led_timer1.expires =
2381 jiffies + msecs_to_jiffies(LED_ON_MS);
2382 mos7840_port->led_timer1.data = (unsigned long)mos7840_port;
Donald0eafe4d2012-04-19 15:00:45 +08002383
Johan Hovoldae685ef2012-10-25 18:56:35 +02002384 init_timer(&mos7840_port->led_timer2);
2385 mos7840_port->led_timer2.function = mos7840_led_flag_off;
2386 mos7840_port->led_timer2.expires =
2387 jiffies + msecs_to_jiffies(LED_OFF_MS);
2388 mos7840_port->led_timer2.data = (unsigned long)mos7840_port;
Donald0eafe4d2012-04-19 15:00:45 +08002389
Johan Hovoldae685ef2012-10-25 18:56:35 +02002390 /* Turn off LED */
2391 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
2392 }
2393out:
Johan Hovold80c00752012-10-25 18:56:34 +02002394 if (pnum == serial->num_ports - 1) {
2395 /* Zero Length flag enable */
2396 Data = 0x0f;
2397 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2398 if (status < 0) {
2399 dev_dbg(&port->dev, "Writing ZLP_REG5 failed status-0x%x\n", status);
2400 goto error;
2401 } else
2402 dev_dbg(&port->dev, "ZLP_REG5 Writing success status%d\n", status);
2403
2404 /* setting configuration feature to one */
2405 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2406 0x03, 0x00, 0x01, 0x00, NULL, 0x00,
2407 MOS_WDR_TIMEOUT);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002408 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002409 return 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002410error:
Johan Hovold05cf0de2013-07-26 11:55:19 +02002411 kfree(mos7840_port->led_dr);
2412 usb_free_urb(mos7840_port->led_urb);
Johan Hovold80c00752012-10-25 18:56:34 +02002413 kfree(mos7840_port->dr);
2414 kfree(mos7840_port->ctrl_buf);
2415 usb_free_urb(mos7840_port->control_urb);
2416 kfree(mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002417
Oliver Neukum0de9a702007-03-16 20:28:28 +01002418 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002419}
2420
Johan Hovold80c00752012-10-25 18:56:34 +02002421static int mos7840_port_remove(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002422{
Paul B Schroeder3f542972006-08-31 19:41:47 -05002423 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002424
Johan Hovold80c00752012-10-25 18:56:34 +02002425 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002426
Johan Hovold80c00752012-10-25 18:56:34 +02002427 if (mos7840_port->has_led) {
2428 /* Turn off LED */
2429 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002430
Johan Hovold80c00752012-10-25 18:56:34 +02002431 del_timer_sync(&mos7840_port->led_timer1);
2432 del_timer_sync(&mos7840_port->led_timer2);
Johan Hovold05cf0de2013-07-26 11:55:19 +02002433
2434 usb_kill_urb(mos7840_port->led_urb);
2435 usb_free_urb(mos7840_port->led_urb);
2436 kfree(mos7840_port->led_dr);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002437 }
Johan Hovold80c00752012-10-25 18:56:34 +02002438 usb_kill_urb(mos7840_port->control_urb);
2439 usb_free_urb(mos7840_port->control_urb);
2440 kfree(mos7840_port->ctrl_buf);
2441 kfree(mos7840_port->dr);
2442 kfree(mos7840_port);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002443
Johan Hovold80c00752012-10-25 18:56:34 +02002444 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002445}
2446
2447static struct usb_serial_driver moschip7840_4port_device = {
2448 .driver = {
2449 .owner = THIS_MODULE,
2450 .name = "mos7840",
2451 },
2452 .description = DRIVER_DESC,
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002453 .id_table = id_table,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002454 .num_ports = 4,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002455 .open = mos7840_open,
2456 .close = mos7840_close,
2457 .write = mos7840_write,
2458 .write_room = mos7840_write_room,
2459 .chars_in_buffer = mos7840_chars_in_buffer,
2460 .throttle = mos7840_throttle,
2461 .unthrottle = mos7840_unthrottle,
2462 .calc_num_ports = mos7840_calc_num_ports,
Johan Hovold40c24f22013-07-26 11:55:18 +02002463 .probe = mos7840_probe,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002464 .ioctl = mos7840_ioctl,
2465 .set_termios = mos7840_set_termios,
2466 .break_ctl = mos7840_break,
2467 .tiocmget = mos7840_tiocmget,
2468 .tiocmset = mos7840_tiocmset,
Johan Hovold0c613372013-03-21 12:37:17 +01002469 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold8c1a07f2013-03-21 12:37:16 +01002470 .get_icount = usb_serial_generic_get_icount,
Johan Hovold80c00752012-10-25 18:56:34 +02002471 .port_probe = mos7840_port_probe,
2472 .port_remove = mos7840_port_remove,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002473 .read_bulk_callback = mos7840_bulk_in_callback,
2474 .read_int_callback = mos7840_interrupt_callback,
2475};
2476
Alan Stern4d2a7af2012-02-23 14:57:09 -05002477static struct usb_serial_driver * const serial_drivers[] = {
2478 &moschip7840_4port_device, NULL
2479};
2480
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002481module_usb_serial_driver(serial_drivers, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002482
Paul B Schroeder3f542972006-08-31 19:41:47 -05002483MODULE_DESCRIPTION(DRIVER_DESC);
2484MODULE_LICENSE("GPL");