blob: 73dda1cc8028a6f0618733983801b05b7454f4ab [file] [log] [blame]
Paul B Schroeder3f542972006-08-31 19:41:47 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 *
16 * Clean ups from Moschip version and a few ioctl implementations by:
17 * Paul B Schroeder <pschroeder "at" uplogix "dot" com>
18 *
19 * Originally based on drivers/usb/serial/io_edgeport.c which is:
20 * Copyright (C) 2000 Inside Out Networks, All rights reserved.
21 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
22 *
23 */
24
25#include <linux/kernel.h>
26#include <linux/errno.h>
27#include <linux/init.h>
28#include <linux/slab.h>
29#include <linux/tty.h>
30#include <linux/tty_driver.h>
31#include <linux/tty_flip.h>
32#include <linux/module.h>
33#include <linux/serial.h>
34#include <linux/usb.h>
35#include <linux/usb/serial.h>
Alan Cox880af9d2008-07-22 11:16:12 +010036#include <linux/uaccess.h>
Paul B Schroeder3f542972006-08-31 19:41:47 -050037
Paul B Schroeder3f542972006-08-31 19:41:47 -050038#define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
39
40/*
41 * 16C50 UART register defines
42 */
43
44#define LCR_BITS_5 0x00 /* 5 bits/char */
45#define LCR_BITS_6 0x01 /* 6 bits/char */
46#define LCR_BITS_7 0x02 /* 7 bits/char */
47#define LCR_BITS_8 0x03 /* 8 bits/char */
48#define LCR_BITS_MASK 0x03 /* Mask for bits/char field */
49
50#define LCR_STOP_1 0x00 /* 1 stop bit */
51#define LCR_STOP_1_5 0x04 /* 1.5 stop bits (if 5 bits/char) */
52#define LCR_STOP_2 0x04 /* 2 stop bits (if 6-8 bits/char) */
53#define LCR_STOP_MASK 0x04 /* Mask for stop bits field */
54
55#define LCR_PAR_NONE 0x00 /* No parity */
56#define LCR_PAR_ODD 0x08 /* Odd parity */
57#define LCR_PAR_EVEN 0x18 /* Even parity */
58#define LCR_PAR_MARK 0x28 /* Force parity bit to 1 */
59#define LCR_PAR_SPACE 0x38 /* Force parity bit to 0 */
60#define LCR_PAR_MASK 0x38 /* Mask for parity field */
61
62#define LCR_SET_BREAK 0x40 /* Set Break condition */
63#define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
64
65#define MCR_DTR 0x01 /* Assert DTR */
66#define MCR_RTS 0x02 /* Assert RTS */
67#define MCR_OUT1 0x04 /* Loopback only: Sets state of RI */
68#define MCR_MASTER_IE 0x08 /* Enable interrupt outputs */
69#define MCR_LOOPBACK 0x10 /* Set internal (digital) loopback mode */
70#define MCR_XON_ANY 0x20 /* Enable any char to exit XOFF mode */
71
72#define MOS7840_MSR_CTS 0x10 /* Current state of CTS */
73#define MOS7840_MSR_DSR 0x20 /* Current state of DSR */
74#define MOS7840_MSR_RI 0x40 /* Current state of RI */
75#define MOS7840_MSR_CD 0x80 /* Current state of CD */
76
77/*
78 * Defines used for sending commands to port
79 */
80
Mark Ferrell1e658482012-07-24 13:38:31 -050081#define MOS_WDR_TIMEOUT 5000 /* default urb timeout */
Paul B Schroeder3f542972006-08-31 19:41:47 -050082
83#define MOS_PORT1 0x0200
84#define MOS_PORT2 0x0300
85#define MOS_VENREG 0x0000
86#define MOS_MAX_PORT 0x02
87#define MOS_WRITE 0x0E
88#define MOS_READ 0x0D
89
90/* Requests */
91#define MCS_RD_RTYPE 0xC0
92#define MCS_WR_RTYPE 0x40
93#define MCS_RDREQ 0x0D
94#define MCS_WRREQ 0x0E
95#define MCS_CTRL_TIMEOUT 500
96#define VENDOR_READ_LENGTH (0x01)
97
98#define MAX_NAME_LEN 64
99
Alan Cox880af9d2008-07-22 11:16:12 +0100100#define ZLP_REG1 0x3A /* Zero_Flag_Reg1 58 */
101#define ZLP_REG5 0x3E /* Zero_Flag_Reg5 62 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500102
103/* For higher baud Rates use TIOCEXBAUD */
104#define TIOCEXBAUD 0x5462
105
106/* vendor id and device id defines */
107
David Ludlow11e1abb2008-02-25 17:30:52 -0500108/* The native mos7840/7820 component */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500109#define USB_VENDOR_ID_MOSCHIP 0x9710
110#define MOSCHIP_DEVICE_ID_7840 0x7840
111#define MOSCHIP_DEVICE_ID_7820 0x7820
Donald0eafe4d2012-04-19 15:00:45 +0800112#define MOSCHIP_DEVICE_ID_7810 0x7810
David Ludlow11e1abb2008-02-25 17:30:52 -0500113/* The native component can have its vendor/device id's overridden
114 * in vendor-specific implementations. Such devices can be handled
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700115 * by making a change here, in id_table.
David Ludlow11e1abb2008-02-25 17:30:52 -0500116 */
Dave Ludlow870408c2010-09-01 12:33:30 -0400117#define USB_VENDOR_ID_BANDB 0x0856
118#define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
119#define BANDB_DEVICE_ID_USO9ML2_2P 0xBC00
120#define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
121#define BANDB_DEVICE_ID_USO9ML2_4P 0xBC01
122#define BANDB_DEVICE_ID_US9ML2_2 0xAC29
123#define BANDB_DEVICE_ID_US9ML2_4 0xAC30
124#define BANDB_DEVICE_ID_USPTL4_2 0xAC31
125#define BANDB_DEVICE_ID_USPTL4_4 0xAC32
126#define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
127#define BANDB_DEVICE_ID_USOPTL4_2P 0xBC02
128#define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
129#define BANDB_DEVICE_ID_USOPTL4_4P 0xBC03
130#define BANDB_DEVICE_ID_USOPTL2_4 0xAC24
Paul B Schroeder3f542972006-08-31 19:41:47 -0500131
Russell Lang9d498be2009-07-17 19:29:20 +1000132/* This driver also supports
133 * ATEN UC2324 device using Moschip MCS7840
134 * ATEN UC2322 device using Moschip MCS7820
135 */
Tony Cooke9b8cff2009-04-18 22:42:18 +0930136#define USB_VENDOR_ID_ATENINTL 0x0557
137#define ATENINTL_DEVICE_ID_UC2324 0x2011
Russell Lang9d498be2009-07-17 19:29:20 +1000138#define ATENINTL_DEVICE_ID_UC2322 0x7820
Tony Cooke9b8cff2009-04-18 22:42:18 +0930139
David Ludlow11e1abb2008-02-25 17:30:52 -0500140/* Interrupt Routine Defines */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500141
142#define SERIAL_IIR_RLS 0x06
143#define SERIAL_IIR_MS 0x00
144
145/*
146 * Emulation of the bit mask on the LINE STATUS REGISTER.
147 */
148#define SERIAL_LSR_DR 0x0001
149#define SERIAL_LSR_OE 0x0002
150#define SERIAL_LSR_PE 0x0004
151#define SERIAL_LSR_FE 0x0008
152#define SERIAL_LSR_BI 0x0010
153
154#define MOS_MSR_DELTA_CTS 0x10
155#define MOS_MSR_DELTA_DSR 0x20
156#define MOS_MSR_DELTA_RI 0x40
157#define MOS_MSR_DELTA_CD 0x80
158
Alan Cox880af9d2008-07-22 11:16:12 +0100159/* Serial Port register Address */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500160#define INTERRUPT_ENABLE_REGISTER ((__u16)(0x01))
161#define FIFO_CONTROL_REGISTER ((__u16)(0x02))
162#define LINE_CONTROL_REGISTER ((__u16)(0x03))
163#define MODEM_CONTROL_REGISTER ((__u16)(0x04))
164#define LINE_STATUS_REGISTER ((__u16)(0x05))
165#define MODEM_STATUS_REGISTER ((__u16)(0x06))
166#define SCRATCH_PAD_REGISTER ((__u16)(0x07))
167#define DIVISOR_LATCH_LSB ((__u16)(0x00))
168#define DIVISOR_LATCH_MSB ((__u16)(0x01))
169
170#define CLK_MULTI_REGISTER ((__u16)(0x02))
171#define CLK_START_VALUE_REGISTER ((__u16)(0x03))
Donald Lee093ea2d2012-03-14 15:26:33 +0800172#define GPIO_REGISTER ((__u16)(0x07))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500173
174#define SERIAL_LCR_DLAB ((__u16)(0x0080))
175
176/*
177 * URB POOL related defines
178 */
179#define NUM_URBS 16 /* URB Count */
180#define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
181
Donald0eafe4d2012-04-19 15:00:45 +0800182/* LED on/off milliseconds*/
183#define LED_ON_MS 500
184#define LED_OFF_MS 500
185
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200186enum mos7840_flag {
187 MOS7840_FLAG_CTRL_BUSY,
188};
189
Donald0eafe4d2012-04-19 15:00:45 +0800190static int device_type;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500191
Tony Zelenoffb9c87662012-06-05 17:58:04 +0400192static const struct usb_device_id id_table[] = {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500193 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
194 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Donald0eafe4d2012-04-19 15:00:45 +0800195 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7810)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500196 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400197 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500198 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400199 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500200 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
201 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
202 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400207 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800208 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930209 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000210 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500211 {} /* terminating entry */
212};
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700213MODULE_DEVICE_TABLE(usb, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500214
215/* This structure holds all of the local port information */
216
217struct moschip_port {
218 int port_num; /*Actual port number in the device(1,2,etc) */
219 struct urb *write_urb; /* write URB for this port */
220 struct urb *read_urb; /* read URB for this port */
221 __u8 shadowLCR; /* last LCR value received */
222 __u8 shadowMCR; /* last MCR value received */
223 char open;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100224 char open_ports;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500225 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500226 struct usb_serial_port *port; /* loop back to the owner of this object */
227
Alan Cox880af9d2008-07-22 11:16:12 +0100228 /* Offsets */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500229 __u8 SpRegOffset;
230 __u8 ControlRegOffset;
231 __u8 DcrRegOffset;
Alan Cox880af9d2008-07-22 11:16:12 +0100232 /* for processing control URBS in interrupt context */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500233 struct urb *control_urb;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100234 struct usb_ctrlrequest *dr;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500235 char *ctrl_buf;
236 int MsrLsr;
237
Oliver Neukum0de9a702007-03-16 20:28:28 +0100238 spinlock_t pool_lock;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500239 struct urb *write_urb_pool[NUM_URBS];
Oliver Neukum0de9a702007-03-16 20:28:28 +0100240 char busy[NUM_URBS];
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800241 bool read_urb_busy;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500242
Donald0eafe4d2012-04-19 15:00:45 +0800243 /* For device(s) with LED indicator */
244 bool has_led;
245 bool led_flag;
246 struct timer_list led_timer1; /* Timer for LED on */
247 struct timer_list led_timer2; /* Timer for LED off */
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200248
249 unsigned long flags;
Donald0eafe4d2012-04-19 15:00:45 +0800250};
Paul B Schroeder3f542972006-08-31 19:41:47 -0500251
Paul B Schroeder3f542972006-08-31 19:41:47 -0500252/*
253 * mos7840_set_reg_sync
254 * To set the Control register by calling usb_fill_control_urb function
255 * by passing usb_sndctrlpipe function as parameter.
256 */
257
258static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
259 __u16 val)
260{
261 struct usb_device *dev = port->serial->dev;
262 val = val & 0x00ff;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700263 dev_dbg(&port->dev, "mos7840_set_reg_sync offset is %x, value %x\n", reg, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500264
265 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
266 MCS_WR_RTYPE, val, reg, NULL, 0,
267 MOS_WDR_TIMEOUT);
268}
269
270/*
271 * mos7840_get_reg_sync
272 * To set the Uart register by calling usb_fill_control_urb function by
273 * passing usb_rcvctrlpipe function as parameter.
274 */
275
276static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100277 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500278{
279 struct usb_device *dev = port->serial->dev;
280 int ret = 0;
Johan Hovold9e221a32009-12-28 23:01:55 +0100281 u8 *buf;
282
283 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
284 if (!buf)
285 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500286
287 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100288 MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500289 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100290 *val = buf[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700291 dev_dbg(&port->dev, "%s offset is %x, return val %x\n", __func__, reg, *val);
Johan Hovold9e221a32009-12-28 23:01:55 +0100292
293 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500294 return ret;
295}
296
297/*
298 * mos7840_set_uart_reg
299 * To set the Uart register by calling usb_fill_control_urb function by
300 * passing usb_sndctrlpipe function as parameter.
301 */
302
303static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
304 __u16 val)
305{
306
307 struct usb_device *dev = port->serial->dev;
308 val = val & 0x00ff;
Alan Cox880af9d2008-07-22 11:16:12 +0100309 /* For the UART control registers, the application number need
310 to be Or'ed */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100311 if (port->serial->num_ports == 4) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700312 val |= ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500313 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700314 if (port->port_number == 0) {
315 val |= ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500316 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700317 val |= ((__u16)port->port_number + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500318 }
319 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700320 dev_dbg(&port->dev, "%s application number is %x\n", __func__, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500321 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
322 MCS_WR_RTYPE, val, reg, NULL, 0,
323 MOS_WDR_TIMEOUT);
324
325}
326
327/*
328 * mos7840_get_uart_reg
329 * To set the Control register by calling usb_fill_control_urb function
330 * by passing usb_rcvctrlpipe function as parameter.
331 */
332static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100333 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500334{
335 struct usb_device *dev = port->serial->dev;
336 int ret = 0;
337 __u16 Wval;
Johan Hovold9e221a32009-12-28 23:01:55 +0100338 u8 *buf;
339
340 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
341 if (!buf)
342 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500343
Alan Cox880af9d2008-07-22 11:16:12 +0100344 /* Wval is same as application number */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100345 if (port->serial->num_ports == 4) {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700346 Wval = ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500347 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700348 if (port->port_number == 0) {
349 Wval = ((__u16)port->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500350 } else {
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700351 Wval = ((__u16)port->port_number + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500352 }
353 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700354 dev_dbg(&port->dev, "%s application number is %x\n", __func__, Wval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500355 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100356 MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500357 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100358 *val = buf[0];
359
360 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500361 return ret;
362}
363
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700364static void mos7840_dump_serial_port(struct usb_serial_port *port,
365 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500366{
367
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700368 dev_dbg(&port->dev, "SpRegOffset is %2x\n", mos7840_port->SpRegOffset);
369 dev_dbg(&port->dev, "ControlRegOffset is %2x\n", mos7840_port->ControlRegOffset);
370 dev_dbg(&port->dev, "DCRRegOffset is %2x\n", mos7840_port->DcrRegOffset);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500371
372}
373
374/************************************************************************/
375/************************************************************************/
376/* I N T E R F A C E F U N C T I O N S */
377/* I N T E R F A C E F U N C T I O N S */
378/************************************************************************/
379/************************************************************************/
380
381static inline void mos7840_set_port_private(struct usb_serial_port *port,
382 struct moschip_port *data)
383{
384 usb_set_serial_port_data(port, (void *)data);
385}
386
387static inline struct moschip_port *mos7840_get_port_private(struct
388 usb_serial_port
389 *port)
390{
391 return (struct moschip_port *)usb_get_serial_port_data(port);
392}
393
Oliver Neukum0de9a702007-03-16 20:28:28 +0100394static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500395{
396 struct moschip_port *mos7840_port;
397 struct async_icount *icount;
398 mos7840_port = port;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500399 if (new_msr &
400 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
401 MOS_MSR_DELTA_CD)) {
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100402 icount = &mos7840_port->port->icount;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500403
404 /* update input line counters */
Johan Hovoldc9fac852013-03-21 12:37:15 +0100405 if (new_msr & MOS_MSR_DELTA_CTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500406 icount->cts++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100407 if (new_msr & MOS_MSR_DELTA_DSR)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500408 icount->dsr++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100409 if (new_msr & MOS_MSR_DELTA_CD)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500410 icount->dcd++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100411 if (new_msr & MOS_MSR_DELTA_RI)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500412 icount->rng++;
Johan Hovolde670c6a2013-03-19 09:21:19 +0100413
Johan Hovold0c6133712013-03-21 12:37:17 +0100414 wake_up_interruptible(&port->port->port.delta_msr_wait);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500415 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500416}
417
Oliver Neukum0de9a702007-03-16 20:28:28 +0100418static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500419{
420 struct async_icount *icount;
421
Paul B Schroeder3f542972006-08-31 19:41:47 -0500422 if (new_lsr & SERIAL_LSR_BI) {
Alan Cox880af9d2008-07-22 11:16:12 +0100423 /*
424 * Parity and Framing errors only count if they
425 * occur exclusive of a break being
426 * received.
427 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500428 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
429 }
430
431 /* update input line counters */
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100432 icount = &port->port->icount;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100433 if (new_lsr & SERIAL_LSR_BI)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500434 icount->brk++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100435 if (new_lsr & SERIAL_LSR_OE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500436 icount->overrun++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100437 if (new_lsr & SERIAL_LSR_PE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500438 icount->parity++;
Johan Hovoldc9fac852013-03-21 12:37:15 +0100439 if (new_lsr & SERIAL_LSR_FE)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500440 icount->frame++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500441}
442
443/************************************************************************/
444/************************************************************************/
445/* U S B C A L L B A C K F U N C T I O N S */
446/* U S B C A L L B A C K F U N C T I O N S */
447/************************************************************************/
448/************************************************************************/
449
David Howells7d12e782006-10-05 14:55:46 +0100450static void mos7840_control_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500451{
452 unsigned char *data;
453 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700454 struct device *dev = &urb->dev->dev;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500455 __u8 regval = 0x0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700456 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500457
Ming Leicdc97792008-02-24 18:41:47 +0800458 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100459
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700460 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500461 case 0:
462 /* success */
463 break;
464 case -ECONNRESET:
465 case -ENOENT:
466 case -ESHUTDOWN:
467 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700468 dev_dbg(dev, "%s - urb shutting down with status: %d\n", __func__, status);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200469 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500470 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700471 dev_dbg(dev, "%s - nonzero urb status received: %d\n", __func__, status);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200472 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500473 }
474
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700475 dev_dbg(dev, "%s urb buffer size is %d\n", __func__, urb->actual_length);
476 dev_dbg(dev, "%s mos7840_port->MsrLsr is %d port %d\n", __func__,
477 mos7840_port->MsrLsr, mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500478 data = urb->transfer_buffer;
479 regval = (__u8) data[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700480 dev_dbg(dev, "%s data is %x\n", __func__, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500481 if (mos7840_port->MsrLsr == 0)
482 mos7840_handle_new_msr(mos7840_port, regval);
483 else if (mos7840_port->MsrLsr == 1)
484 mos7840_handle_new_lsr(mos7840_port, regval);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200485out:
486 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mos7840_port->flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500487}
488
489static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100490 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500491{
492 struct usb_device *dev = mcs->port->serial->dev;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100493 struct usb_ctrlrequest *dr = mcs->dr;
494 unsigned char *buffer = mcs->ctrl_buf;
495 int ret;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500496
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200497 if (test_and_set_bit_lock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags))
498 return -EBUSY;
499
Paul B Schroeder3f542972006-08-31 19:41:47 -0500500 dr->bRequestType = MCS_RD_RTYPE;
501 dr->bRequest = MCS_RDREQ;
Alan Cox880af9d2008-07-22 11:16:12 +0100502 dr->wValue = cpu_to_le16(Wval); /* 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500503 dr->wIndex = cpu_to_le16(reg);
504 dr->wLength = cpu_to_le16(2);
505
506 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
507 (unsigned char *)dr, buffer, 2,
508 mos7840_control_callback, mcs);
509 mcs->control_urb->transfer_buffer_length = 2;
510 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
Johan Hovoldd8a083c2013-07-26 11:55:17 +0200511 if (ret)
512 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags);
513
Paul B Schroeder3f542972006-08-31 19:41:47 -0500514 return ret;
515}
516
Donald0eafe4d2012-04-19 15:00:45 +0800517static void mos7840_set_led_callback(struct urb *urb)
518{
519 switch (urb->status) {
520 case 0:
521 /* Success */
522 break;
523 case -ECONNRESET:
524 case -ENOENT:
525 case -ESHUTDOWN:
526 /* This urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700527 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d",
528 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800529 break;
530 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700531 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d",
532 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800533 }
534}
535
536static void mos7840_set_led_async(struct moschip_port *mcs, __u16 wval,
537 __u16 reg)
538{
539 struct usb_device *dev = mcs->port->serial->dev;
540 struct usb_ctrlrequest *dr = mcs->dr;
541
542 dr->bRequestType = MCS_WR_RTYPE;
543 dr->bRequest = MCS_WRREQ;
544 dr->wValue = cpu_to_le16(wval);
545 dr->wIndex = cpu_to_le16(reg);
546 dr->wLength = cpu_to_le16(0);
547
548 usb_fill_control_urb(mcs->control_urb, dev, usb_sndctrlpipe(dev, 0),
549 (unsigned char *)dr, NULL, 0, mos7840_set_led_callback, NULL);
550
551 usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
552}
553
554static void mos7840_set_led_sync(struct usb_serial_port *port, __u16 reg,
555 __u16 val)
556{
557 struct usb_device *dev = port->serial->dev;
558
559 usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ, MCS_WR_RTYPE,
560 val, reg, NULL, 0, MOS_WDR_TIMEOUT);
561}
562
563static void mos7840_led_off(unsigned long arg)
564{
565 struct moschip_port *mcs = (struct moschip_port *) arg;
566
567 /* Turn off LED */
568 mos7840_set_led_async(mcs, 0x0300, MODEM_CONTROL_REGISTER);
569 mod_timer(&mcs->led_timer2,
570 jiffies + msecs_to_jiffies(LED_OFF_MS));
571}
572
573static void mos7840_led_flag_off(unsigned long arg)
574{
575 struct moschip_port *mcs = (struct moschip_port *) arg;
576
577 mcs->led_flag = false;
578}
579
Paul B Schroeder3f542972006-08-31 19:41:47 -0500580/*****************************************************************************
581 * mos7840_interrupt_callback
582 * this is the callback function for when we have received data on the
583 * interrupt endpoint.
584 *****************************************************************************/
585
David Howells7d12e782006-10-05 14:55:46 +0100586static void mos7840_interrupt_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500587{
588 int result;
589 int length;
590 struct moschip_port *mos7840_port;
591 struct usb_serial *serial;
592 __u16 Data;
593 unsigned char *data;
594 __u8 sp[5], st;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100595 int i, rv = 0;
596 __u16 wval, wreg = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700597 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500598
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700599 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500600 case 0:
601 /* success */
602 break;
603 case -ECONNRESET:
604 case -ENOENT:
605 case -ESHUTDOWN:
606 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700607 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
608 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500609 return;
610 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700611 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n",
612 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500613 goto exit;
614 }
615
616 length = urb->actual_length;
617 data = urb->transfer_buffer;
618
Ming Leicdc97792008-02-24 18:41:47 +0800619 serial = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500620
621 /* Moschip get 5 bytes
622 * Byte 1 IIR Port 1 (port.number is 0)
623 * Byte 2 IIR Port 2 (port.number is 1)
624 * Byte 3 IIR Port 3 (port.number is 2)
625 * Byte 4 IIR Port 4 (port.number is 3)
626 * Byte 5 FIFO status for both */
627
628 if (length && length > 5) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700629 dev_dbg(&urb->dev->dev, "%s", "Wrong data !!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500630 return;
631 }
632
633 sp[0] = (__u8) data[0];
634 sp[1] = (__u8) data[1];
635 sp[2] = (__u8) data[2];
636 sp[3] = (__u8) data[3];
637 st = (__u8) data[4];
638
639 for (i = 0; i < serial->num_ports; i++) {
640 mos7840_port = mos7840_get_port_private(serial->port[i]);
Greg Kroah-Hartman11438322013-06-06 10:32:00 -0700641 wval = ((__u16)serial->port[i]->port_number + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500642 if (mos7840_port->open) {
643 if (sp[i] & 0x01) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700644 dev_dbg(&urb->dev->dev, "SP%d No Interrupt !!!\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500645 } else {
646 switch (sp[i] & 0x0f) {
647 case SERIAL_IIR_RLS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700648 dev_dbg(&urb->dev->dev, "Serial Port %d: Receiver status error or \n", i);
649 dev_dbg(&urb->dev->dev, "address bit detected in 9-bit mode\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500650 mos7840_port->MsrLsr = 1;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100651 wreg = LINE_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500652 break;
653 case SERIAL_IIR_MS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700654 dev_dbg(&urb->dev->dev, "Serial Port %d: Modem status change\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500655 mos7840_port->MsrLsr = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100656 wreg = MODEM_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500657 break;
658 }
Johan Hovolde681b662012-10-25 18:56:33 +0200659 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500660 }
661 }
662 }
Alan Cox880af9d2008-07-22 11:16:12 +0100663 if (!(rv < 0))
664 /* the completion handler for the control urb will resubmit */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100665 return;
666exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -0500667 result = usb_submit_urb(urb, GFP_ATOMIC);
668 if (result) {
669 dev_err(&urb->dev->dev,
670 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800671 __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500672 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500673}
674
675static int mos7840_port_paranoia_check(struct usb_serial_port *port,
676 const char *function)
677{
678 if (!port) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700679 pr_debug("%s - port == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500680 return -1;
681 }
682 if (!port->serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700683 pr_debug("%s - port->serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500684 return -1;
685 }
686
687 return 0;
688}
689
690/* Inline functions to check the sanity of a pointer that is passed to us */
691static int mos7840_serial_paranoia_check(struct usb_serial *serial,
692 const char *function)
693{
694 if (!serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700695 pr_debug("%s - serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500696 return -1;
697 }
698 if (!serial->type) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700699 pr_debug("%s - serial->type == NULL!\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500700 return -1;
701 }
702
703 return 0;
704}
705
706static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
707 const char *function)
708{
709 /* if no port was specified, or it fails a paranoia check */
710 if (!port ||
711 mos7840_port_paranoia_check(port, function) ||
712 mos7840_serial_paranoia_check(port->serial, function)) {
Alan Cox880af9d2008-07-22 11:16:12 +0100713 /* then say that we don't have a valid usb_serial thing,
714 * which will end up genrating -ENODEV return values */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500715 return NULL;
716 }
717
718 return port->serial;
719}
720
721/*****************************************************************************
722 * mos7840_bulk_in_callback
723 * this is the callback function for when we have received data on the
724 * bulk in endpoint.
725 *****************************************************************************/
726
David Howells7d12e782006-10-05 14:55:46 +0100727static void mos7840_bulk_in_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500728{
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700729 int retval;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500730 unsigned char *data;
731 struct usb_serial *serial;
732 struct usb_serial_port *port;
733 struct moschip_port *mos7840_port;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700734 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500735
Ming Leicdc97792008-02-24 18:41:47 +0800736 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700737 if (!mos7840_port)
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800738 return;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800739
740 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700741 dev_dbg(&urb->dev->dev, "nonzero read bulk status received: %d\n", status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800742 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500743 return;
744 }
745
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700746 port = mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800747 if (mos7840_port_paranoia_check(port, __func__)) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800748 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500749 return;
750 }
751
Harvey Harrison441b62c2008-03-03 16:08:34 -0800752 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500753 if (!serial) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800754 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500755 return;
756 }
757
Paul B Schroeder3f542972006-08-31 19:41:47 -0500758 data = urb->transfer_buffer;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100759 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500760
Paul B Schroeder3f542972006-08-31 19:41:47 -0500761 if (urb->actual_length) {
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100762 struct tty_port *tport = &mos7840_port->port->port;
Jiri Slaby2e124b42013-01-03 15:53:06 +0100763 tty_insert_flip_string(tport, data, urb->actual_length);
764 tty_flip_buffer_push(tport);
Johan Hovold8c1a07f2013-03-21 12:37:16 +0100765 port->icount.rx += urb->actual_length;
766 dev_dbg(&port->dev, "icount.rx is %d:\n", port->icount.rx);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500767 }
768
769 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700770 dev_dbg(&port->dev, "%s", "URB KILLED !!!\n");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800771 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500772 return;
773 }
774
Donald0eafe4d2012-04-19 15:00:45 +0800775 /* Turn on LED */
776 if (mos7840_port->has_led && !mos7840_port->led_flag) {
777 mos7840_port->led_flag = true;
778 mos7840_set_led_async(mos7840_port, 0x0301,
779 MODEM_CONTROL_REGISTER);
780 mod_timer(&mos7840_port->led_timer1,
781 jiffies + msecs_to_jiffies(LED_ON_MS));
782 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500783
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800784 mos7840_port->read_urb_busy = true;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700785 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100786
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700787 if (retval) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700788 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, retval = %d\n", retval);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800789 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500790 }
791}
792
793/*****************************************************************************
794 * mos7840_bulk_out_data_callback
Alan Cox880af9d2008-07-22 11:16:12 +0100795 * this is the callback function for when we have finished sending
796 * serial data on the bulk out endpoint.
Paul B Schroeder3f542972006-08-31 19:41:47 -0500797 *****************************************************************************/
798
David Howells7d12e782006-10-05 14:55:46 +0100799static void mos7840_bulk_out_data_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500800{
801 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700802 struct usb_serial_port *port;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700803 int status = urb->status;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100804 int i;
805
Ming Leicdc97792008-02-24 18:41:47 +0800806 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700807 port = mos7840_port->port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100808 spin_lock(&mos7840_port->pool_lock);
809 for (i = 0; i < NUM_URBS; i++) {
810 if (urb == mos7840_port->write_urb_pool[i]) {
811 mos7840_port->busy[i] = 0;
812 break;
813 }
814 }
815 spin_unlock(&mos7840_port->pool_lock);
816
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700817 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700818 dev_dbg(&port->dev, "nonzero write bulk status received:%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500819 return;
820 }
821
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700822 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500823 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500824
Jiri Slaby6aad04f2013-03-07 13:12:29 +0100825 if (mos7840_port->open)
826 tty_port_tty_wakeup(&port->port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500827
828}
829
830/************************************************************************/
831/* 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 */
832/************************************************************************/
833#ifdef MCSSerialProbe
834static int mos7840_serial_probe(struct usb_serial *serial,
835 const struct usb_device_id *id)
836{
837
838 /*need to implement the mode_reg reading and updating\
839 structures usb_serial_ device_type\
840 (i.e num_ports, num_bulkin,bulkout etc) */
841 /* Also we can update the changes attach */
842 return 1;
843}
844#endif
845
846/*****************************************************************************
847 * mos7840_open
848 * this function is called by the tty driver when a port is opened
849 * If successful, we return 0
850 * Otherwise we return a negative error number.
851 *****************************************************************************/
852
Alan Coxa509a7e2009-09-19 13:13:26 -0700853static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500854{
855 int response;
856 int j;
857 struct usb_serial *serial;
858 struct urb *urb;
859 __u16 Data;
860 int status;
861 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100862 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500863
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700864 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500865 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500866
Paul B Schroeder3f542972006-08-31 19:41:47 -0500867 serial = port->serial;
868
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700869 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500870 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500871
872 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100873 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500874
Oliver Neukum0de9a702007-03-16 20:28:28 +0100875 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500876 return -ENODEV;
877
878 usb_clear_halt(serial->dev, port->write_urb->pipe);
879 usb_clear_halt(serial->dev, port->read_urb->pipe);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100880 port0->open_ports++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500881
882 /* Initialising the write urb pool */
883 for (j = 0; j < NUM_URBS; ++j) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100884 urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500885 mos7840_port->write_urb_pool[j] = urb;
886
887 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700888 dev_err(&port->dev, "No more urbs???\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500889 continue;
890 }
891
Alan Cox880af9d2008-07-22 11:16:12 +0100892 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
893 GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500894 if (!urb->transfer_buffer) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100895 usb_free_urb(urb);
896 mos7840_port->write_urb_pool[j] = NULL;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700897 dev_err(&port->dev,
898 "%s-out of memory for urb buffers.\n",
899 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500900 continue;
901 }
902 }
903
904/*****************************************************************************
905 * Initialize MCS7840 -- Write Init values to corresponding Registers
906 *
907 * Register Index
908 * 1 : IER
909 * 2 : FCR
910 * 3 : LCR
911 * 4 : MCR
912 *
913 * 0x08 : SP1/2 Control Reg
914 *****************************************************************************/
915
Alan Cox880af9d2008-07-22 11:16:12 +0100916 /* NEED to check the following Block */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500917
Paul B Schroeder3f542972006-08-31 19:41:47 -0500918 Data = 0x0;
919 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
920 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700921 dev_dbg(&port->dev, "Reading Spreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200922 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500923 }
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 }
930
931 Data &= ~0x80;
932 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
933 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700934 dev_dbg(&port->dev, "writing Spreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200935 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500936 }
Alan Cox880af9d2008-07-22 11:16:12 +0100937 /* End of block to be checked */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500938
Paul B Schroeder3f542972006-08-31 19:41:47 -0500939 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +0100940 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
941 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500942 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700943 dev_dbg(&port->dev, "Reading Controlreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200944 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500945 }
Alan Cox880af9d2008-07-22 11:16:12 +0100946 Data |= 0x08; /* Driver done bit */
947 Data |= 0x20; /* rx_disable */
948 status = mos7840_set_reg_sync(port,
949 mos7840_port->ControlRegOffset, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500950 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700951 dev_dbg(&port->dev, "writing Controlreg failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200952 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500953 }
Alan Cox880af9d2008-07-22 11:16:12 +0100954 /* do register settings here */
955 /* Set all regs to the device default values. */
956 /***********************************
957 * First Disable all interrupts.
958 ***********************************/
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, INTERRUPT_ENABLE_REGISTER, Data);
961 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700962 dev_dbg(&port->dev, "disabling interrupts failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200963 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500964 }
Alan Cox880af9d2008-07-22 11:16:12 +0100965 /* Set FIFO_CONTROL_REGISTER to the default value */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500966 Data = 0x00;
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 = 0xcf;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500974 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
975 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700976 dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER failed\n");
Johan Hovold5f8a2e62013-07-01 14:03:33 +0200977 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500978 }
979
980 Data = 0x03;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500981 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
982 mos7840_port->shadowLCR = Data;
983
984 Data = 0x0b;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500985 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
986 mos7840_port->shadowMCR = Data;
987
988 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500989 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
990 mos7840_port->shadowLCR = Data;
991
Alan Cox880af9d2008-07-22 11:16:12 +0100992 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500993 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
994
995 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500996 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
997
998 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500999 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1000
1001 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001002 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1003
1004 Data = Data & ~SERIAL_LCR_DLAB;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001005 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1006 mos7840_port->shadowLCR = Data;
1007
Alan Cox880af9d2008-07-22 11:16:12 +01001008 /* clearing Bulkin and Bulkout Fifo */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001009 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001010 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
1011
1012 Data = Data | 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001013 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1014
1015 Data = Data & ~0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001016 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
Alan Cox880af9d2008-07-22 11:16:12 +01001017 /* Finally enable all interrupts */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001018 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001019 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1020
Alan Cox880af9d2008-07-22 11:16:12 +01001021 /* clearing rx_disable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001022 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001023 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1024 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001025 Data = Data & ~0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01001026 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1027 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001028
Alan Cox880af9d2008-07-22 11:16:12 +01001029 /* rx_negate */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001030 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001031 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1032 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001033 Data = Data | 0x10;
Alan Cox880af9d2008-07-22 11:16:12 +01001034 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1035 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001036
Alan Cox880af9d2008-07-22 11:16:12 +01001037 /* Check to see if we've set up our endpoint info yet *
1038 * (can't set it up in mos7840_startup as the structures *
1039 * were not set up at that time.) */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001040 if (port0->open_ports == 1) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001041 if (serial->port[0]->interrupt_in_buffer == NULL) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001042 /* set up interrupt urb */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001043 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
Alan Cox880af9d2008-07-22 11:16:12 +01001044 serial->dev,
1045 usb_rcvintpipe(serial->dev,
1046 serial->port[0]->interrupt_in_endpointAddress),
1047 serial->port[0]->interrupt_in_buffer,
1048 serial->port[0]->interrupt_in_urb->
1049 transfer_buffer_length,
1050 mos7840_interrupt_callback,
1051 serial,
1052 serial->port[0]->interrupt_in_urb->interval);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001053
1054 /* start interrupt read for mos7840 *
1055 * will continue as long as mos7840 is connected */
1056
1057 response =
1058 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1059 GFP_KERNEL);
1060 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001061 dev_err(&port->dev, "%s - Error %d submitting "
1062 "interrupt urb\n", __func__, response);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001063 }
1064
1065 }
1066
1067 }
1068
1069 /* see if we've set up our endpoint info yet *
1070 * (can't set it up in mos7840_startup as the *
1071 * structures were not set up at that time.) */
1072
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001073 dev_dbg(&port->dev, "port number is %d\n", port->port_number);
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07001074 dev_dbg(&port->dev, "minor number is %d\n", port->minor);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001075 dev_dbg(&port->dev, "Bulkin endpoint is %d\n", port->bulk_in_endpointAddress);
1076 dev_dbg(&port->dev, "BulkOut endpoint is %d\n", port->bulk_out_endpointAddress);
1077 dev_dbg(&port->dev, "Interrupt endpoint is %d\n", port->interrupt_in_endpointAddress);
1078 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 -05001079 mos7840_port->read_urb = port->read_urb;
1080
1081 /* set up our bulk in urb */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001082 if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
Donald Lee093ea2d2012-03-14 15:26:33 +08001083 usb_fill_bulk_urb(mos7840_port->read_urb,
1084 serial->dev,
1085 usb_rcvbulkpipe(serial->dev,
1086 (port->bulk_in_endpointAddress) + 2),
1087 port->bulk_in_buffer,
1088 mos7840_port->read_urb->transfer_buffer_length,
1089 mos7840_bulk_in_callback, mos7840_port);
1090 } else {
1091 usb_fill_bulk_urb(mos7840_port->read_urb,
1092 serial->dev,
1093 usb_rcvbulkpipe(serial->dev,
1094 port->bulk_in_endpointAddress),
1095 port->bulk_in_buffer,
1096 mos7840_port->read_urb->transfer_buffer_length,
1097 mos7840_bulk_in_callback, mos7840_port);
1098 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001099
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001100 dev_dbg(&port->dev, "%s: bulkin endpoint is %d\n", __func__, port->bulk_in_endpointAddress);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001101 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001102 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1103 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001104 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1105 __func__, response);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001106 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001107 }
1108
1109 /* initialize our wait queues */
1110 init_waitqueue_head(&mos7840_port->wait_chase);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001111
Paul B Schroeder3f542972006-08-31 19:41:47 -05001112 /* initialize our port settings */
Alan Cox880af9d2008-07-22 11:16:12 +01001113 /* Must set to enable ints! */
1114 mos7840_port->shadowMCR = MCR_MASTER_IE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001115 /* send a open port command */
1116 mos7840_port->open = 1;
Alan Cox880af9d2008-07-22 11:16:12 +01001117 /* mos7840_change_port_settings(mos7840_port,old_termios); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001118
Paul B Schroeder3f542972006-08-31 19:41:47 -05001119 return 0;
Johan Hovold5f8a2e62013-07-01 14:03:33 +02001120err:
1121 for (j = 0; j < NUM_URBS; ++j) {
1122 urb = mos7840_port->write_urb_pool[j];
1123 if (!urb)
1124 continue;
1125 kfree(urb->transfer_buffer);
1126 usb_free_urb(urb);
1127 }
1128 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001129}
1130
1131/*****************************************************************************
1132 * mos7840_chars_in_buffer
1133 * this function is called by the tty driver when it wants to know how many
1134 * bytes of data we currently have outstanding in the port (data that has
1135 * been written, but hasn't made it out the port yet)
1136 * If successful, we return the number of bytes left to be written in the
1137 * system,
Alan Cox95da3102008-07-22 11:09:07 +01001138 * Otherwise we return zero.
Paul B Schroeder3f542972006-08-31 19:41:47 -05001139 *****************************************************************************/
1140
Alan Cox95da3102008-07-22 11:09:07 +01001141static int mos7840_chars_in_buffer(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001142{
Alan Cox95da3102008-07-22 11:09:07 +01001143 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001144 int i;
1145 int chars = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001146 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001147 struct moschip_port *mos7840_port;
1148
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001149 if (mos7840_port_paranoia_check(port, __func__))
Alan Cox95da3102008-07-22 11:09:07 +01001150 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001151
1152 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07001153 if (mos7840_port == NULL)
Alan Cox95da3102008-07-22 11:09:07 +01001154 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001155
Alan Cox880af9d2008-07-22 11:16:12 +01001156 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Mark Ferrell5c263b92012-07-24 14:15:13 -05001157 for (i = 0; i < NUM_URBS; ++i) {
1158 if (mos7840_port->busy[i]) {
1159 struct urb *urb = mos7840_port->write_urb_pool[i];
1160 chars += urb->transfer_buffer_length;
1161 }
1162 }
Alan Cox880af9d2008-07-22 11:16:12 +01001163 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001164 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001165 return chars;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001166
1167}
1168
Paul B Schroeder3f542972006-08-31 19:41:47 -05001169/*****************************************************************************
1170 * mos7840_close
1171 * this function is called by the tty driver when a port is closed
1172 *****************************************************************************/
1173
Alan Cox335f8512009-06-11 12:26:29 +01001174static void mos7840_close(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001175{
1176 struct usb_serial *serial;
1177 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001178 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001179 int j;
1180 __u16 Data;
1181
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001182 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001183 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001184
Harvey Harrison441b62c2008-03-03 16:08:34 -08001185 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001186 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001187 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001188
1189 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001190 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001191
Oliver Neukum0de9a702007-03-16 20:28:28 +01001192 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001193 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001194
1195 for (j = 0; j < NUM_URBS; ++j)
1196 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1197
1198 /* Freeing Write URBs */
1199 for (j = 0; j < NUM_URBS; ++j) {
1200 if (mos7840_port->write_urb_pool[j]) {
1201 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1202 kfree(mos7840_port->write_urb_pool[j]->
1203 transfer_buffer);
1204
1205 usb_free_urb(mos7840_port->write_urb_pool[j]);
1206 }
1207 }
1208
Johan Hovoldbb3529c2013-03-21 12:36:35 +01001209 usb_kill_urb(mos7840_port->write_urb);
1210 usb_kill_urb(mos7840_port->read_urb);
1211 mos7840_port->read_urb_busy = false;
1212
Oliver Neukum0de9a702007-03-16 20:28:28 +01001213 port0->open_ports--;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001214 dev_dbg(&port->dev, "%s in close%d\n", __func__, port0->open_ports);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001215 if (port0->open_ports == 0) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001216 if (serial->port[0]->interrupt_in_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001217 dev_dbg(&port->dev, "Shutdown interrupt_in_urb\n");
Oliver Neukum0de9a702007-03-16 20:28:28 +01001218 usb_kill_urb(serial->port[0]->interrupt_in_urb);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001219 }
1220 }
1221
1222 if (mos7840_port->write_urb) {
1223 /* if this urb had a transfer buffer already (old tx) free it */
Syam Sidhardhanae8d4872013-03-07 01:51:12 +05301224 kfree(mos7840_port->write_urb->transfer_buffer);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001225 usb_free_urb(mos7840_port->write_urb);
1226 }
1227
1228 Data = 0x0;
1229 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1230
1231 Data = 0x00;
1232 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1233
1234 mos7840_port->open = 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001235}
1236
1237/************************************************************************
1238 *
1239 * mos7840_block_until_chase_response
1240 *
1241 * This function will block the close until one of the following:
1242 * 1. Response to our Chase comes from mos7840
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001243 * 2. A timeout of 10 seconds without activity has expired
Paul B Schroeder3f542972006-08-31 19:41:47 -05001244 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1245 *
1246 ************************************************************************/
1247
Alan Cox95da3102008-07-22 11:09:07 +01001248static void mos7840_block_until_chase_response(struct tty_struct *tty,
1249 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001250{
Mark Ferrell1e658482012-07-24 13:38:31 -05001251 int timeout = msecs_to_jiffies(1000);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001252 int wait = 10;
1253 int count;
1254
1255 while (1) {
Alan Cox95da3102008-07-22 11:09:07 +01001256 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001257
1258 /* Check for Buffer status */
Alan Cox880af9d2008-07-22 11:16:12 +01001259 if (count <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001260 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001261
1262 /* Block the thread for a while */
1263 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1264 timeout);
1265 /* No activity.. count down section */
1266 wait--;
1267 if (wait == 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001268 dev_dbg(&mos7840_port->port->dev, "%s - TIMEOUT\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001269 return;
1270 } else {
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001271 /* Reset timeout value back to seconds */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001272 wait = 10;
1273 }
1274 }
1275
1276}
1277
1278/*****************************************************************************
1279 * mos7840_break
1280 * this function sends a break to the port
1281 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001282static void mos7840_break(struct tty_struct *tty, int break_state)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001283{
Alan Cox95da3102008-07-22 11:09:07 +01001284 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001285 unsigned char data;
1286 struct usb_serial *serial;
1287 struct moschip_port *mos7840_port;
1288
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001289 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001290 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001291
Harvey Harrison441b62c2008-03-03 16:08:34 -08001292 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001293 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001294 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001295
1296 mos7840_port = mos7840_get_port_private(port);
1297
Alan Cox880af9d2008-07-22 11:16:12 +01001298 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001299 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001300
Johan Hovoldbb3529c2013-03-21 12:36:35 +01001301 /* flush and block until tx is empty */
1302 mos7840_block_until_chase_response(tty, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001303
Alan Cox95da3102008-07-22 11:09:07 +01001304 if (break_state == -1)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001305 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
Alan Cox95da3102008-07-22 11:09:07 +01001306 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001307 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001308
Alan Cox6b447f042009-01-02 13:48:56 +00001309 /* FIXME: no locking on shadowLCR anywhere in driver */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001310 mos7840_port->shadowLCR = data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001311 dev_dbg(&port->dev, "%s mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001312 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1313 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001314}
1315
1316/*****************************************************************************
1317 * mos7840_write_room
1318 * this function is called by the tty driver when it wants to know how many
1319 * bytes of data we can accept for a specific port.
1320 * If successful, we return the amount of room that we have for this port
1321 * Otherwise we return a negative error number.
1322 *****************************************************************************/
1323
Alan Cox95da3102008-07-22 11:09:07 +01001324static int mos7840_write_room(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001325{
Alan Cox95da3102008-07-22 11:09:07 +01001326 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001327 int i;
1328 int room = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001329 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001330 struct moschip_port *mos7840_port;
1331
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001332 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001333 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001334
1335 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001336 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001337 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001338
Oliver Neukum0de9a702007-03-16 20:28:28 +01001339 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001340 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox880af9d2008-07-22 11:16:12 +01001341 if (!mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001342 room += URB_TRANSFER_BUFFER_SIZE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001343 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001344 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001345
Oliver Neukum0de9a702007-03-16 20:28:28 +01001346 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001347 dev_dbg(&mos7840_port->port->dev, "%s - returns %d\n", __func__, room);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001348 return room;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001349
1350}
1351
1352/*****************************************************************************
1353 * mos7840_write
1354 * this function is called by the tty driver when data should be written to
1355 * the port.
1356 * If successful, we return the number of bytes written, otherwise we
1357 * return a negative error number.
1358 *****************************************************************************/
1359
Alan Cox95da3102008-07-22 11:09:07 +01001360static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001361 const unsigned char *data, int count)
1362{
1363 int status;
1364 int i;
1365 int bytes_sent = 0;
1366 int transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001367 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001368
1369 struct moschip_port *mos7840_port;
1370 struct usb_serial *serial;
1371 struct urb *urb;
Alan Cox880af9d2008-07-22 11:16:12 +01001372 /* __u16 Data; */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001373 const unsigned char *current_position = data;
1374 unsigned char *data1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001375
1376#ifdef NOTMOS7840
1377 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001378 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1379 mos7840_port->shadowLCR = Data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001380 dev_dbg(&port->dev, "%s: LINE_CONTROL_REGISTER is %x\n", __func__, Data);
1381 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001382
Alan Cox880af9d2008-07-22 11:16:12 +01001383 /* Data = 0x03; */
1384 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1385 /* mos7840_port->shadowLCR=Data;//Need to add later */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001386
Alan Cox880af9d2008-07-22 11:16:12 +01001387 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001388 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1389
Alan Cox880af9d2008-07-22 11:16:12 +01001390 /* Data = 0x0c; */
1391 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001392 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001393 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001394 dev_dbg(&port->dev, "%s: DLL value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001395
1396 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001397 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001398 dev_dbg(&port->dev, "%s: DLM value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001399
1400 Data = Data & ~SERIAL_LCR_DLAB;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001401 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001402 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1403#endif
1404
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001405 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001406 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001407
1408 serial = port->serial;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001409 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001410 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001411
1412 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001413 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001414 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001415
1416 /* try to find a free urb in the list */
1417 urb = NULL;
1418
Oliver Neukum0de9a702007-03-16 20:28:28 +01001419 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001420 for (i = 0; i < NUM_URBS; ++i) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001421 if (!mos7840_port->busy[i]) {
1422 mos7840_port->busy[i] = 1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001423 urb = mos7840_port->write_urb_pool[i];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001424 dev_dbg(&port->dev, "URB:%d\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001425 break;
1426 }
1427 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001428 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001429
1430 if (urb == NULL) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001431 dev_dbg(&port->dev, "%s - no more free urbs\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001432 goto exit;
1433 }
1434
1435 if (urb->transfer_buffer == NULL) {
1436 urb->transfer_buffer =
1437 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1438
1439 if (urb->transfer_buffer == NULL) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001440 dev_err_console(port, "%s no more kernel memory...\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001441 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001442 goto exit;
1443 }
1444 }
1445 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1446
Al Viro97c49652006-10-09 20:29:03 +01001447 memcpy(urb->transfer_buffer, current_position, transfer_size);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001448
1449 /* fill urb with data and submit */
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001450 if ((serial->num_ports == 2) && (((__u16)port->port_number % 2) != 0)) {
Donald Lee093ea2d2012-03-14 15:26:33 +08001451 usb_fill_bulk_urb(urb,
1452 serial->dev,
1453 usb_sndbulkpipe(serial->dev,
1454 (port->bulk_out_endpointAddress) + 2),
1455 urb->transfer_buffer,
1456 transfer_size,
1457 mos7840_bulk_out_data_callback, mos7840_port);
1458 } else {
1459 usb_fill_bulk_urb(urb,
1460 serial->dev,
1461 usb_sndbulkpipe(serial->dev,
1462 port->bulk_out_endpointAddress),
1463 urb->transfer_buffer,
1464 transfer_size,
1465 mos7840_bulk_out_data_callback, mos7840_port);
1466 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001467
1468 data1 = urb->transfer_buffer;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001469 dev_dbg(&port->dev, "bulkout endpoint is %d\n", port->bulk_out_endpointAddress);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001470
Donald0eafe4d2012-04-19 15:00:45 +08001471 /* Turn on LED */
1472 if (mos7840_port->has_led && !mos7840_port->led_flag) {
1473 mos7840_port->led_flag = true;
1474 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0301);
1475 mod_timer(&mos7840_port->led_timer1,
1476 jiffies + msecs_to_jiffies(LED_ON_MS));
1477 }
1478
Paul B Schroeder3f542972006-08-31 19:41:47 -05001479 /* send it down the pipe */
1480 status = usb_submit_urb(urb, GFP_ATOMIC);
1481
1482 if (status) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001483 mos7840_port->busy[i] = 0;
Johan Hovold22a416c2012-02-10 13:20:51 +01001484 dev_err_console(port, "%s - usb_submit_urb(write bulk) failed "
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001485 "with status = %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001486 bytes_sent = status;
1487 goto exit;
1488 }
1489 bytes_sent = transfer_size;
Johan Hovold8c1a07f2013-03-21 12:37:16 +01001490 port->icount.tx += transfer_size;
1491 dev_dbg(&port->dev, "icount.tx is %d:\n", port->icount.tx);
Alan Cox95da3102008-07-22 11:09:07 +01001492exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -05001493 return bytes_sent;
1494
1495}
1496
1497/*****************************************************************************
1498 * mos7840_throttle
1499 * this function is called by the tty driver when it wants to stop the data
1500 * being read from the port.
1501 *****************************************************************************/
1502
Alan Cox95da3102008-07-22 11:09:07 +01001503static void mos7840_throttle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001504{
Alan Cox95da3102008-07-22 11:09:07 +01001505 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001506 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001507 int status;
1508
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001509 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001510 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001511
1512 mos7840_port = mos7840_get_port_private(port);
1513
1514 if (mos7840_port == NULL)
1515 return;
1516
1517 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001518 dev_dbg(&port->dev, "%s", "port not opened\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001519 return;
1520 }
1521
Paul B Schroeder3f542972006-08-31 19:41:47 -05001522 /* if we are implementing XON/XOFF, send the stop character */
1523 if (I_IXOFF(tty)) {
1524 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001525 status = mos7840_write(tty, port, &stop_char, 1);
1526 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001527 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001528 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001529 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001530 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001531 mos7840_port->shadowMCR &= ~MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001532 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001533 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001534 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001535 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001536 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001537}
1538
1539/*****************************************************************************
1540 * mos7840_unthrottle
Alan Cox880af9d2008-07-22 11:16:12 +01001541 * this function is called by the tty driver when it wants to resume
1542 * the data being read from the port (called after mos7840_throttle is
1543 * called)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001544 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001545static void mos7840_unthrottle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001546{
Alan Cox95da3102008-07-22 11:09:07 +01001547 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001548 int status;
1549 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1550
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001551 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001552 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001553
1554 if (mos7840_port == NULL)
1555 return;
1556
1557 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001558 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001559 return;
1560 }
1561
Paul B Schroeder3f542972006-08-31 19:41:47 -05001562 /* if we are implementing XON/XOFF, send the start character */
1563 if (I_IXOFF(tty)) {
1564 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001565 status = mos7840_write(tty, port, &start_char, 1);
1566 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001567 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001568 }
1569
1570 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001571 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001572 mos7840_port->shadowMCR |= MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001573 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001574 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001575 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001576 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001577 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001578}
1579
Alan Cox60b33c12011-02-14 16:26:14 +00001580static int mos7840_tiocmget(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001581{
Alan Cox95da3102008-07-22 11:09:07 +01001582 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001583 struct moschip_port *mos7840_port;
1584 unsigned int result;
1585 __u16 msr;
1586 __u16 mcr;
Alan Cox880af9d2008-07-22 11:16:12 +01001587 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001588 mos7840_port = mos7840_get_port_private(port);
1589
Paul B Schroeder3f542972006-08-31 19:41:47 -05001590 if (mos7840_port == NULL)
1591 return -ENODEV;
1592
1593 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1594 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1595 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1596 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1597 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1598 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1599 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1600 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1601 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1602
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001603 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001604
1605 return result;
1606}
1607
Alan Cox20b9d172011-02-14 16:26:50 +00001608static int mos7840_tiocmset(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001609 unsigned int set, unsigned int clear)
1610{
Alan Cox95da3102008-07-22 11:09:07 +01001611 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001612 struct moschip_port *mos7840_port;
1613 unsigned int mcr;
Roel Kluin87521c42008-04-17 06:16:24 +02001614 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001615
Paul B Schroeder3f542972006-08-31 19:41:47 -05001616 mos7840_port = mos7840_get_port_private(port);
1617
1618 if (mos7840_port == NULL)
1619 return -ENODEV;
1620
Alan Coxe2984492008-02-20 20:51:45 +00001621 /* FIXME: What locks the port registers ? */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001622 mcr = mos7840_port->shadowMCR;
1623 if (clear & TIOCM_RTS)
1624 mcr &= ~MCR_RTS;
1625 if (clear & TIOCM_DTR)
1626 mcr &= ~MCR_DTR;
1627 if (clear & TIOCM_LOOP)
1628 mcr &= ~MCR_LOOPBACK;
1629
1630 if (set & TIOCM_RTS)
1631 mcr |= MCR_RTS;
1632 if (set & TIOCM_DTR)
1633 mcr |= MCR_DTR;
1634 if (set & TIOCM_LOOP)
1635 mcr |= MCR_LOOPBACK;
1636
1637 mos7840_port->shadowMCR = mcr;
1638
Paul B Schroeder3f542972006-08-31 19:41:47 -05001639 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1640 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001641 dev_dbg(&port->dev, "setting MODEM_CONTROL_REGISTER Failed\n");
Roel Kluin87521c42008-04-17 06:16:24 +02001642 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001643 }
1644
1645 return 0;
1646}
1647
1648/*****************************************************************************
1649 * mos7840_calc_baud_rate_divisor
1650 * this function calculates the proper baud rate divisor for the specified
1651 * baud rate.
1652 *****************************************************************************/
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001653static int mos7840_calc_baud_rate_divisor(struct usb_serial_port *port,
1654 int baudRate, int *divisor,
Alan Cox880af9d2008-07-22 11:16:12 +01001655 __u16 *clk_sel_val)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001656{
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001657 dev_dbg(&port->dev, "%s - %d\n", __func__, baudRate);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001658
1659 if (baudRate <= 115200) {
1660 *divisor = 115200 / baudRate;
1661 *clk_sel_val = 0x0;
1662 }
1663 if ((baudRate > 115200) && (baudRate <= 230400)) {
1664 *divisor = 230400 / baudRate;
1665 *clk_sel_val = 0x10;
1666 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1667 *divisor = 403200 / baudRate;
1668 *clk_sel_val = 0x20;
1669 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1670 *divisor = 460800 / baudRate;
1671 *clk_sel_val = 0x30;
1672 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1673 *divisor = 806400 / baudRate;
1674 *clk_sel_val = 0x40;
1675 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1676 *divisor = 921600 / baudRate;
1677 *clk_sel_val = 0x50;
1678 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1679 *divisor = 1572864 / baudRate;
1680 *clk_sel_val = 0x60;
1681 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1682 *divisor = 3145728 / baudRate;
1683 *clk_sel_val = 0x70;
1684 }
1685 return 0;
1686
1687#ifdef NOTMCS7840
1688
1689 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1690 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1691 *divisor = mos7840_divisor_table[i].Divisor;
1692 return 0;
1693 }
1694 }
1695
1696 /* After trying for all the standard baud rates *
1697 * Try calculating the divisor for this baud rate */
1698
1699 if (baudrate > 75 && baudrate < 230400) {
1700 /* get the divisor */
1701 custom = (__u16) (230400L / baudrate);
1702
1703 /* Check for round off */
1704 round1 = (__u16) (2304000L / baudrate);
1705 round = (__u16) (round1 - (custom * 10));
Alan Cox880af9d2008-07-22 11:16:12 +01001706 if (round > 4)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001707 custom++;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001708 *divisor = custom;
1709
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001710 dev_dbg(&port->dev, " Baud %d = %d\n", baudrate, custom);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001711 return 0;
1712 }
1713
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001714 dev_dbg(&port->dev, "%s", " Baud calculation Failed...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001715 return -1;
1716#endif
1717}
1718
1719/*****************************************************************************
1720 * mos7840_send_cmd_write_baud_rate
1721 * this function sends the proper command to change the baud rate of the
1722 * specified port.
1723 *****************************************************************************/
1724
1725static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1726 int baudRate)
1727{
1728 int divisor = 0;
1729 int status;
1730 __u16 Data;
1731 unsigned char number;
1732 __u16 clk_sel_val;
1733 struct usb_serial_port *port;
1734
1735 if (mos7840_port == NULL)
1736 return -1;
1737
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001738 port = mos7840_port->port;
1739 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001740 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001741
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001742 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001743 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001744
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001745 number = mos7840_port->port->port_number;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001746
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07001747 dev_dbg(&port->dev, "%s - baud = %d\n", __func__, baudRate);
Alan Cox880af9d2008-07-22 11:16:12 +01001748 /* reset clk_uart_sel in spregOffset */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001749 if (baudRate > 115200) {
1750#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001751 /* NOTE: need to see the pther register to modify */
1752 /* setting h/w flow control bit to 1 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001753 Data = 0x2b;
1754 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001755 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1756 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001757 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001758 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001759 return -1;
1760 }
1761#endif
1762
1763 } else {
1764#ifdef HW_flow_control
Donald Lee093ea2d2012-03-14 15:26:33 +08001765 /* setting h/w flow control bit to 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001766 Data = 0xb;
1767 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001768 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1769 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001770 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001771 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001772 return -1;
1773 }
1774#endif
1775
1776 }
1777
Alan Cox880af9d2008-07-22 11:16:12 +01001778 if (1) { /* baudRate <= 115200) */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001779 clk_sel_val = 0x0;
1780 Data = 0x0;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001781 status = mos7840_calc_baud_rate_divisor(port, baudRate, &divisor,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001782 &clk_sel_val);
Alan Cox880af9d2008-07-22 11:16:12 +01001783 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1784 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001785 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001786 dev_dbg(&port->dev, "reading spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001787 return -1;
1788 }
1789 Data = (Data & 0x8f) | clk_sel_val;
Alan Cox880af9d2008-07-22 11:16:12 +01001790 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1791 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001792 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001793 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001794 return -1;
1795 }
1796 /* Calculate the Divisor */
1797
1798 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001799 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001800 return status;
1801 }
1802 /* Enable access to divisor latch */
1803 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1804 mos7840_port->shadowLCR = Data;
1805 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1806
1807 /* Write the divisor */
1808 Data = (unsigned char)(divisor & 0xff);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001809 dev_dbg(&port->dev, "set_serial_baud Value to write DLL is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001810 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1811
1812 Data = (unsigned char)((divisor & 0xff00) >> 8);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001813 dev_dbg(&port->dev, "set_serial_baud Value to write DLM is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001814 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1815
1816 /* Disable access to divisor latch */
1817 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1818 mos7840_port->shadowLCR = Data;
1819 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1820
1821 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001822 return status;
1823}
1824
1825/*****************************************************************************
1826 * mos7840_change_port_settings
1827 * This routine is called to set the UART on the device to match
1828 * the specified new settings.
1829 *****************************************************************************/
1830
Alan Cox95da3102008-07-22 11:09:07 +01001831static void mos7840_change_port_settings(struct tty_struct *tty,
1832 struct moschip_port *mos7840_port, struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001833{
Paul B Schroeder3f542972006-08-31 19:41:47 -05001834 int baud;
1835 unsigned cflag;
1836 unsigned iflag;
1837 __u8 lData;
1838 __u8 lParity;
1839 __u8 lStop;
1840 int status;
1841 __u16 Data;
1842 struct usb_serial_port *port;
1843 struct usb_serial *serial;
1844
1845 if (mos7840_port == NULL)
1846 return;
1847
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001848 port = mos7840_port->port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001849
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001850 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001851 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001852
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001853 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001854 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001855
1856 serial = port->serial;
1857
Paul B Schroeder3f542972006-08-31 19:41:47 -05001858 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001859 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001860 return;
1861 }
1862
Paul B Schroeder3f542972006-08-31 19:41:47 -05001863 lData = LCR_BITS_8;
1864 lStop = LCR_STOP_1;
1865 lParity = LCR_PAR_NONE;
1866
Alan Coxadc8d742012-07-14 15:31:47 +01001867 cflag = tty->termios.c_cflag;
1868 iflag = tty->termios.c_iflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001869
1870 /* Change the number of bits */
1871 if (cflag & CSIZE) {
1872 switch (cflag & CSIZE) {
1873 case CS5:
1874 lData = LCR_BITS_5;
1875 break;
1876
1877 case CS6:
1878 lData = LCR_BITS_6;
1879 break;
1880
1881 case CS7:
1882 lData = LCR_BITS_7;
1883 break;
1884 default:
1885 case CS8:
1886 lData = LCR_BITS_8;
1887 break;
1888 }
1889 }
1890 /* Change the Parity bit */
1891 if (cflag & PARENB) {
1892 if (cflag & PARODD) {
1893 lParity = LCR_PAR_ODD;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001894 dev_dbg(&port->dev, "%s - parity = odd\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001895 } else {
1896 lParity = LCR_PAR_EVEN;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001897 dev_dbg(&port->dev, "%s - parity = even\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001898 }
1899
1900 } else {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001901 dev_dbg(&port->dev, "%s - parity = none\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001902 }
1903
Alan Cox880af9d2008-07-22 11:16:12 +01001904 if (cflag & CMSPAR)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001905 lParity = lParity | 0x20;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001906
1907 /* Change the Stop bit */
1908 if (cflag & CSTOPB) {
1909 lStop = LCR_STOP_2;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001910 dev_dbg(&port->dev, "%s - stop bits = 2\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001911 } else {
1912 lStop = LCR_STOP_1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001913 dev_dbg(&port->dev, "%s - stop bits = 1\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001914 }
1915
1916 /* Update the LCR with the correct value */
1917 mos7840_port->shadowLCR &=
1918 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1919 mos7840_port->shadowLCR |= (lData | lParity | lStop);
1920
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001921 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is %x\n", __func__,
1922 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001923 /* Disable Interrupts */
1924 Data = 0x00;
1925 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1926
1927 Data = 0x00;
1928 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1929
1930 Data = 0xcf;
1931 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1932
1933 /* Send the updated LCR value to the mos7840 */
1934 Data = mos7840_port->shadowLCR;
1935
1936 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1937
1938 Data = 0x00b;
1939 mos7840_port->shadowMCR = Data;
1940 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1941 Data = 0x00b;
1942 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1943
1944 /* set up the MCR register and send it to the mos7840 */
1945
1946 mos7840_port->shadowMCR = MCR_MASTER_IE;
Alan Cox880af9d2008-07-22 11:16:12 +01001947 if (cflag & CBAUD)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001948 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001949
Alan Cox880af9d2008-07-22 11:16:12 +01001950 if (cflag & CRTSCTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001951 mos7840_port->shadowMCR |= (MCR_XON_ANY);
Alan Cox880af9d2008-07-22 11:16:12 +01001952 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001953 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001954
1955 Data = mos7840_port->shadowMCR;
1956 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1957
1958 /* Determine divisor based on baud rate */
1959 baud = tty_get_baud_rate(tty);
1960
1961 if (!baud) {
1962 /* pick a default, any default... */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001963 dev_dbg(&port->dev, "%s", "Picked default baud...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001964 baud = 9600;
1965 }
1966
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001967 dev_dbg(&port->dev, "%s - baud rate = %d\n", __func__, baud);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001968 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
1969
1970 /* Enable Interrupts */
1971 Data = 0x0c;
1972 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1973
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001974 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001975 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001976 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001977 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001978 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001979 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001980 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001981 }
1982 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001983 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is End %x\n", __func__,
1984 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001985}
1986
1987/*****************************************************************************
1988 * mos7840_set_termios
1989 * this function is called by the tty driver when it wants to change
1990 * the termios structure
1991 *****************************************************************************/
1992
Alan Cox95da3102008-07-22 11:09:07 +01001993static void mos7840_set_termios(struct tty_struct *tty,
1994 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -08001995 struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001996{
1997 int status;
1998 unsigned int cflag;
1999 struct usb_serial *serial;
2000 struct moschip_port *mos7840_port;
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07002001
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002002 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002003 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002004
2005 serial = port->serial;
2006
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002007 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002008 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002009
2010 mos7840_port = mos7840_get_port_private(port);
2011
2012 if (mos7840_port == NULL)
2013 return;
2014
Paul B Schroeder3f542972006-08-31 19:41:47 -05002015 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002016 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002017 return;
2018 }
2019
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002020 dev_dbg(&port->dev, "%s", "setting termios - \n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002021
Alan Coxadc8d742012-07-14 15:31:47 +01002022 cflag = tty->termios.c_cflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002023
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002024 dev_dbg(&port->dev, "%s - clfag %08x iflag %08x\n", __func__,
Linus Torvaldsd9a80742012-10-01 13:23:01 -07002025 tty->termios.c_cflag, RELEVANT_IFLAG(tty->termios.c_iflag));
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002026 dev_dbg(&port->dev, "%s - old clfag %08x old iflag %08x\n", __func__,
2027 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
Paul B Schroeder3f542972006-08-31 19:41:47 -05002028
2029 /* change the port settings to the new ones specified */
2030
Alan Cox95da3102008-07-22 11:09:07 +01002031 mos7840_change_port_settings(tty, mos7840_port, old_termios);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002032
2033 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002034 dev_dbg(&port->dev, "%s", "URB KILLED !!!!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002035 return;
2036 }
2037
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002038 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002039 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002040 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2041 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002042 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002043 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002044 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002045 }
2046 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002047}
2048
2049/*****************************************************************************
2050 * mos7840_get_lsr_info - get line status register info
2051 *
2052 * Purpose: Let user call ioctl() to get info when the UART physically
2053 * is emptied. On bus types like RS485, the transmitter must
2054 * release the bus after transmitting. This must be done when
2055 * the transmit shift register is empty, not be done when the
2056 * transmit holding register is empty. This functionality
2057 * allows an RS485 driver to be written in user space.
2058 *****************************************************************************/
2059
Alan Cox95da3102008-07-22 11:09:07 +01002060static int mos7840_get_lsr_info(struct tty_struct *tty,
Al Viro97c49652006-10-09 20:29:03 +01002061 unsigned int __user *value)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002062{
2063 int count;
2064 unsigned int result = 0;
2065
Alan Cox95da3102008-07-22 11:09:07 +01002066 count = mos7840_chars_in_buffer(tty);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002067 if (count == 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002068 result = TIOCSER_TEMT;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002069
2070 if (copy_to_user(value, &result, sizeof(int)))
2071 return -EFAULT;
2072 return 0;
2073}
2074
2075/*****************************************************************************
Paul B Schroeder3f542972006-08-31 19:41:47 -05002076 * mos7840_get_serial_info
2077 * function to get information about serial port
2078 *****************************************************************************/
2079
2080static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
Al Viro97c49652006-10-09 20:29:03 +01002081 struct serial_struct __user *retinfo)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002082{
2083 struct serial_struct tmp;
2084
2085 if (mos7840_port == NULL)
2086 return -1;
2087
2088 if (!retinfo)
2089 return -EFAULT;
2090
2091 memset(&tmp, 0, sizeof(tmp));
2092
2093 tmp.type = PORT_16550A;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07002094 tmp.line = mos7840_port->port->minor;
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002095 tmp.port = mos7840_port->port->port_number;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002096 tmp.irq = 0;
2097 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2098 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2099 tmp.baud_base = 9600;
2100 tmp.close_delay = 5 * HZ;
2101 tmp.closing_wait = 30 * HZ;
2102
2103 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2104 return -EFAULT;
2105 return 0;
2106}
2107
2108/*****************************************************************************
2109 * SerialIoctl
2110 * this function handles any ioctl calls to the driver
2111 *****************************************************************************/
2112
Alan Cox00a0d0d2011-02-14 16:27:06 +00002113static int mos7840_ioctl(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002114 unsigned int cmd, unsigned long arg)
2115{
Alan Cox95da3102008-07-22 11:09:07 +01002116 struct usb_serial_port *port = tty->driver_data;
Al Viro97c49652006-10-09 20:29:03 +01002117 void __user *argp = (void __user *)arg;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002118 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002119
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002120 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002121 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002122
2123 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002124
2125 if (mos7840_port == NULL)
2126 return -1;
2127
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002128 dev_dbg(&port->dev, "%s - cmd = 0x%x\n", __func__, cmd);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002129
2130 switch (cmd) {
2131 /* return number of bytes available */
2132
Paul B Schroeder3f542972006-08-31 19:41:47 -05002133 case TIOCSERGETLSR:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002134 dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01002135 return mos7840_get_lsr_info(tty, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002136
Paul B Schroeder3f542972006-08-31 19:41:47 -05002137 case TIOCGSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002138 dev_dbg(&port->dev, "%s TIOCGSERIAL\n", __func__);
Al Viro97c49652006-10-09 20:29:03 +01002139 return mos7840_get_serial_info(mos7840_port, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002140
2141 case TIOCSSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002142 dev_dbg(&port->dev, "%s TIOCSSERIAL\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002143 break;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002144 default:
2145 break;
2146 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002147 return -ENOIOCTLCMD;
2148}
2149
Donald0eafe4d2012-04-19 15:00:45 +08002150static int mos7810_check(struct usb_serial *serial)
2151{
2152 int i, pass_count = 0;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002153 u8 *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002154 __u16 data = 0, mcr_data = 0;
2155 __u16 test_pattern = 0x55AA;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002156 int res;
2157
2158 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
2159 if (!buf)
2160 return 0; /* failed to identify 7810 */
Donald0eafe4d2012-04-19 15:00:45 +08002161
2162 /* Store MCR setting */
Johan Hovold15ee89c332013-05-27 14:44:40 +02002163 res = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
Donald0eafe4d2012-04-19 15:00:45 +08002164 MCS_RDREQ, MCS_RD_RTYPE, 0x0300, MODEM_CONTROL_REGISTER,
Johan Hovold15ee89c332013-05-27 14:44:40 +02002165 buf, VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2166 if (res == VENDOR_READ_LENGTH)
2167 mcr_data = *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002168
2169 for (i = 0; i < 16; i++) {
2170 /* Send the 1-bit test pattern out to MCS7810 test pin */
2171 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2172 MCS_WRREQ, MCS_WR_RTYPE,
2173 (0x0300 | (((test_pattern >> i) & 0x0001) << 1)),
2174 MODEM_CONTROL_REGISTER, NULL, 0, MOS_WDR_TIMEOUT);
2175
2176 /* Read the test pattern back */
Johan Hovold15ee89c332013-05-27 14:44:40 +02002177 res = usb_control_msg(serial->dev,
2178 usb_rcvctrlpipe(serial->dev, 0), MCS_RDREQ,
2179 MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
2180 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2181 if (res == VENDOR_READ_LENGTH)
2182 data = *buf;
Donald0eafe4d2012-04-19 15:00:45 +08002183
2184 /* If this is a MCS7810 device, both test patterns must match */
2185 if (((test_pattern >> i) ^ (~data >> 1)) & 0x0001)
2186 break;
2187
2188 pass_count++;
2189 }
2190
2191 /* Restore MCR setting */
2192 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), MCS_WRREQ,
2193 MCS_WR_RTYPE, 0x0300 | mcr_data, MODEM_CONTROL_REGISTER, NULL,
2194 0, MOS_WDR_TIMEOUT);
2195
Johan Hovold15ee89c332013-05-27 14:44:40 +02002196 kfree(buf);
2197
Donald0eafe4d2012-04-19 15:00:45 +08002198 if (pass_count == 16)
2199 return 1;
2200
2201 return 0;
2202}
2203
Paul B Schroeder3f542972006-08-31 19:41:47 -05002204static int mos7840_calc_num_ports(struct usb_serial *serial)
2205{
Donald0eafe4d2012-04-19 15:00:45 +08002206 __u16 data = 0x00;
Johan Hovold15ee89c332013-05-27 14:44:40 +02002207 u8 *buf;
Donald Lee093ea2d2012-03-14 15:26:33 +08002208 int mos7840_num_ports;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002209
Johan Hovold15ee89c332013-05-27 14:44:40 +02002210 buf = kzalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
2211 if (buf) {
2212 usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
2213 MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, buf,
2214 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2215 data = *buf;
2216 kfree(buf);
2217 }
Donald Lee093ea2d2012-03-14 15:26:33 +08002218
Donald0eafe4d2012-04-19 15:00:45 +08002219 if (serial->dev->descriptor.idProduct == MOSCHIP_DEVICE_ID_7810 ||
2220 serial->dev->descriptor.idProduct == MOSCHIP_DEVICE_ID_7820) {
2221 device_type = serial->dev->descriptor.idProduct;
Donald Lee093ea2d2012-03-14 15:26:33 +08002222 } else {
Donald0eafe4d2012-04-19 15:00:45 +08002223 /* For a MCS7840 device GPIO0 must be set to 1 */
2224 if ((data & 0x01) == 1)
2225 device_type = MOSCHIP_DEVICE_ID_7840;
2226 else if (mos7810_check(serial))
2227 device_type = MOSCHIP_DEVICE_ID_7810;
2228 else
2229 device_type = MOSCHIP_DEVICE_ID_7820;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002230 }
Donald Lee093ea2d2012-03-14 15:26:33 +08002231
Donald0eafe4d2012-04-19 15:00:45 +08002232 mos7840_num_ports = (device_type >> 4) & 0x000F;
2233 serial->num_bulk_in = mos7840_num_ports;
2234 serial->num_bulk_out = mos7840_num_ports;
2235 serial->num_ports = mos7840_num_ports;
2236
Paul B Schroeder3f542972006-08-31 19:41:47 -05002237 return mos7840_num_ports;
2238}
2239
Johan Hovold80c00752012-10-25 18:56:34 +02002240static int mos7840_port_probe(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002241{
Johan Hovold80c00752012-10-25 18:56:34 +02002242 struct usb_serial *serial = port->serial;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002243 struct moschip_port *mos7840_port;
Johan Hovold80c00752012-10-25 18:56:34 +02002244 int status;
2245 int pnum;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002246 __u16 Data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002247
Paul B Schroeder3f542972006-08-31 19:41:47 -05002248 /* we set up the pointers to the endpoints in the mos7840_open *
2249 * function, as the structures aren't created yet. */
2250
Greg Kroah-Hartman11438322013-06-06 10:32:00 -07002251 pnum = port->port_number;
Johan Hovold80c00752012-10-25 18:56:34 +02002252
Johan Hovoldae685ef2012-10-25 18:56:35 +02002253 dev_dbg(&port->dev, "mos7840_startup: configuring port %d\n", pnum);
2254 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
2255 if (mos7840_port == NULL) {
2256 dev_err(&port->dev, "%s - Out of memory\n", __func__);
2257 return -ENOMEM;
2258 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002259
Johan Hovoldae685ef2012-10-25 18:56:35 +02002260 /* Initialize all port interrupt end point to port 0 int
2261 * endpoint. Our device has only one interrupt end point
2262 * common to all port */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002263
Johan Hovoldae685ef2012-10-25 18:56:35 +02002264 mos7840_port->port = port;
2265 mos7840_set_port_private(port, mos7840_port);
2266 spin_lock_init(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002267
Johan Hovoldae685ef2012-10-25 18:56:35 +02002268 /* minor is not initialised until later by
2269 * usb-serial.c:get_free_serial() and cannot therefore be used
2270 * to index device instances */
2271 mos7840_port->port_num = pnum + 1;
Greg Kroah-Hartmane5b1e202013-06-07 11:04:28 -07002272 dev_dbg(&port->dev, "port->minor = %d\n", port->minor);
Johan Hovoldae685ef2012-10-25 18:56:35 +02002273 dev_dbg(&port->dev, "mos7840_port->port_num = %d\n", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002274
Johan Hovoldae685ef2012-10-25 18:56:35 +02002275 if (mos7840_port->port_num == 1) {
2276 mos7840_port->SpRegOffset = 0x0;
2277 mos7840_port->ControlRegOffset = 0x1;
2278 mos7840_port->DcrRegOffset = 0x4;
2279 } else if ((mos7840_port->port_num == 2) && (serial->num_ports == 4)) {
2280 mos7840_port->SpRegOffset = 0x8;
2281 mos7840_port->ControlRegOffset = 0x9;
2282 mos7840_port->DcrRegOffset = 0x16;
2283 } else if ((mos7840_port->port_num == 2) && (serial->num_ports == 2)) {
2284 mos7840_port->SpRegOffset = 0xa;
2285 mos7840_port->ControlRegOffset = 0xb;
2286 mos7840_port->DcrRegOffset = 0x19;
2287 } else if ((mos7840_port->port_num == 3) && (serial->num_ports == 4)) {
2288 mos7840_port->SpRegOffset = 0xa;
2289 mos7840_port->ControlRegOffset = 0xb;
2290 mos7840_port->DcrRegOffset = 0x19;
2291 } else if ((mos7840_port->port_num == 4) && (serial->num_ports == 4)) {
2292 mos7840_port->SpRegOffset = 0xc;
2293 mos7840_port->ControlRegOffset = 0xd;
2294 mos7840_port->DcrRegOffset = 0x1c;
2295 }
2296 mos7840_dump_serial_port(port, mos7840_port);
2297 mos7840_set_port_private(port, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002298
Johan Hovoldae685ef2012-10-25 18:56:35 +02002299 /* enable rx_disable bit in control register */
2300 status = mos7840_get_reg_sync(port,
2301 mos7840_port->ControlRegOffset, &Data);
2302 if (status < 0) {
2303 dev_dbg(&port->dev, "Reading ControlReg failed status-0x%x\n", status);
2304 goto out;
2305 } else
2306 dev_dbg(&port->dev, "ControlReg Reading success val is %x, status%d\n", Data, status);
2307 Data |= 0x08; /* setting driver done bit */
2308 Data |= 0x04; /* sp1_bit to have cts change reflect in
2309 modem status reg */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002310
Johan Hovoldae685ef2012-10-25 18:56:35 +02002311 /* Data |= 0x20; //rx_disable bit */
2312 status = mos7840_set_reg_sync(port,
2313 mos7840_port->ControlRegOffset, Data);
2314 if (status < 0) {
2315 dev_dbg(&port->dev, "Writing ControlReg failed(rx_disable) status-0x%x\n", status);
2316 goto out;
2317 } else
2318 dev_dbg(&port->dev, "ControlReg Writing success(rx_disable) status%d\n", status);
2319
2320 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2321 and 0x24 in DCR3 */
2322 Data = 0x01;
2323 status = mos7840_set_reg_sync(port,
2324 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
2325 if (status < 0) {
2326 dev_dbg(&port->dev, "Writing DCR0 failed status-0x%x\n", status);
2327 goto out;
2328 } else
2329 dev_dbg(&port->dev, "DCR0 Writing success status%d\n", status);
2330
2331 Data = 0x05;
2332 status = mos7840_set_reg_sync(port,
2333 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
2334 if (status < 0) {
2335 dev_dbg(&port->dev, "Writing DCR1 failed status-0x%x\n", status);
2336 goto out;
2337 } else
2338 dev_dbg(&port->dev, "DCR1 Writing success status%d\n", status);
2339
2340 Data = 0x24;
2341 status = mos7840_set_reg_sync(port,
2342 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
2343 if (status < 0) {
2344 dev_dbg(&port->dev, "Writing DCR2 failed status-0x%x\n", status);
2345 goto out;
2346 } else
2347 dev_dbg(&port->dev, "DCR2 Writing success status%d\n", status);
2348
2349 /* write values in clkstart0x0 and clkmulti 0x20 */
2350 Data = 0x0;
2351 status = mos7840_set_reg_sync(port, CLK_START_VALUE_REGISTER, Data);
2352 if (status < 0) {
2353 dev_dbg(&port->dev, "Writing CLK_START_VALUE_REGISTER failed status-0x%x\n", status);
2354 goto out;
2355 } else
2356 dev_dbg(&port->dev, "CLK_START_VALUE_REGISTER Writing success status%d\n", status);
2357
2358 Data = 0x20;
2359 status = mos7840_set_reg_sync(port, CLK_MULTI_REGISTER, Data);
2360 if (status < 0) {
2361 dev_dbg(&port->dev, "Writing CLK_MULTI_REGISTER failed status-0x%x\n", status);
2362 goto error;
2363 } else
2364 dev_dbg(&port->dev, "CLK_MULTI_REGISTER Writing success status%d\n", status);
2365
2366 /* write value 0x0 to scratchpad register */
2367 Data = 0x00;
2368 status = mos7840_set_uart_reg(port, SCRATCH_PAD_REGISTER, Data);
2369 if (status < 0) {
2370 dev_dbg(&port->dev, "Writing SCRATCH_PAD_REGISTER failed status-0x%x\n", status);
2371 goto out;
2372 } else
2373 dev_dbg(&port->dev, "SCRATCH_PAD_REGISTER Writing success status%d\n", status);
2374
2375 /* Zero Length flag register */
2376 if ((mos7840_port->port_num != 1) && (serial->num_ports == 2)) {
2377 Data = 0xff;
Johan Hovold80c00752012-10-25 18:56:34 +02002378 status = mos7840_set_reg_sync(port,
Johan Hovoldae685ef2012-10-25 18:56:35 +02002379 (__u16) (ZLP_REG1 +
2380 ((__u16)mos7840_port->port_num)), Data);
2381 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002382 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num)));
Johan Hovoldae685ef2012-10-25 18:56:35 +02002383 if (status < 0) {
2384 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 2, status);
2385 goto out;
2386 } else
2387 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 2, status);
2388 } else {
2389 Data = 0xff;
2390 status = mos7840_set_reg_sync(port,
2391 (__u16) (ZLP_REG1 +
2392 ((__u16)mos7840_port->port_num) - 0x1), Data);
2393 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002394 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num) - 0x1));
Johan Hovoldae685ef2012-10-25 18:56:35 +02002395 if (status < 0) {
2396 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 1, status);
2397 goto out;
2398 } else
2399 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 1, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002400
Johan Hovoldae685ef2012-10-25 18:56:35 +02002401 }
2402 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
2403 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
2404 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2405 GFP_KERNEL);
2406 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2407 !mos7840_port->dr) {
2408 status = -ENOMEM;
2409 goto error;
2410 }
Donald0eafe4d2012-04-19 15:00:45 +08002411
Johan Hovoldae685ef2012-10-25 18:56:35 +02002412 mos7840_port->has_led = false;
Donald0eafe4d2012-04-19 15:00:45 +08002413
Johan Hovoldae685ef2012-10-25 18:56:35 +02002414 /* Initialize LED timers */
2415 if (device_type == MOSCHIP_DEVICE_ID_7810) {
2416 mos7840_port->has_led = true;
Donald0eafe4d2012-04-19 15:00:45 +08002417
Johan Hovoldae685ef2012-10-25 18:56:35 +02002418 init_timer(&mos7840_port->led_timer1);
2419 mos7840_port->led_timer1.function = mos7840_led_off;
2420 mos7840_port->led_timer1.expires =
2421 jiffies + msecs_to_jiffies(LED_ON_MS);
2422 mos7840_port->led_timer1.data = (unsigned long)mos7840_port;
Donald0eafe4d2012-04-19 15:00:45 +08002423
Johan Hovoldae685ef2012-10-25 18:56:35 +02002424 init_timer(&mos7840_port->led_timer2);
2425 mos7840_port->led_timer2.function = mos7840_led_flag_off;
2426 mos7840_port->led_timer2.expires =
2427 jiffies + msecs_to_jiffies(LED_OFF_MS);
2428 mos7840_port->led_timer2.data = (unsigned long)mos7840_port;
Donald0eafe4d2012-04-19 15:00:45 +08002429
Johan Hovoldae685ef2012-10-25 18:56:35 +02002430 mos7840_port->led_flag = false;
Donald0eafe4d2012-04-19 15:00:45 +08002431
Johan Hovoldae685ef2012-10-25 18:56:35 +02002432 /* Turn off LED */
2433 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
2434 }
2435out:
Johan Hovold80c00752012-10-25 18:56:34 +02002436 if (pnum == serial->num_ports - 1) {
2437 /* Zero Length flag enable */
2438 Data = 0x0f;
2439 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2440 if (status < 0) {
2441 dev_dbg(&port->dev, "Writing ZLP_REG5 failed status-0x%x\n", status);
2442 goto error;
2443 } else
2444 dev_dbg(&port->dev, "ZLP_REG5 Writing success status%d\n", status);
2445
2446 /* setting configuration feature to one */
2447 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2448 0x03, 0x00, 0x01, 0x00, NULL, 0x00,
2449 MOS_WDR_TIMEOUT);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002450 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002451 return 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002452error:
Johan Hovold80c00752012-10-25 18:56:34 +02002453 kfree(mos7840_port->dr);
2454 kfree(mos7840_port->ctrl_buf);
2455 usb_free_urb(mos7840_port->control_urb);
2456 kfree(mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002457
Oliver Neukum0de9a702007-03-16 20:28:28 +01002458 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002459}
2460
Johan Hovold80c00752012-10-25 18:56:34 +02002461static int mos7840_port_remove(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002462{
Paul B Schroeder3f542972006-08-31 19:41:47 -05002463 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002464
Johan Hovold80c00752012-10-25 18:56:34 +02002465 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002466
Johan Hovold80c00752012-10-25 18:56:34 +02002467 if (mos7840_port->has_led) {
2468 /* Turn off LED */
2469 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002470
Johan Hovold80c00752012-10-25 18:56:34 +02002471 del_timer_sync(&mos7840_port->led_timer1);
2472 del_timer_sync(&mos7840_port->led_timer2);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002473 }
Johan Hovold80c00752012-10-25 18:56:34 +02002474 usb_kill_urb(mos7840_port->control_urb);
2475 usb_free_urb(mos7840_port->control_urb);
2476 kfree(mos7840_port->ctrl_buf);
2477 kfree(mos7840_port->dr);
2478 kfree(mos7840_port);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002479
Johan Hovold80c00752012-10-25 18:56:34 +02002480 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002481}
2482
2483static struct usb_serial_driver moschip7840_4port_device = {
2484 .driver = {
2485 .owner = THIS_MODULE,
2486 .name = "mos7840",
2487 },
2488 .description = DRIVER_DESC,
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002489 .id_table = id_table,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002490 .num_ports = 4,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002491 .open = mos7840_open,
2492 .close = mos7840_close,
2493 .write = mos7840_write,
2494 .write_room = mos7840_write_room,
2495 .chars_in_buffer = mos7840_chars_in_buffer,
2496 .throttle = mos7840_throttle,
2497 .unthrottle = mos7840_unthrottle,
2498 .calc_num_ports = mos7840_calc_num_ports,
2499#ifdef MCSSerialProbe
2500 .probe = mos7840_serial_probe,
2501#endif
2502 .ioctl = mos7840_ioctl,
2503 .set_termios = mos7840_set_termios,
2504 .break_ctl = mos7840_break,
2505 .tiocmget = mos7840_tiocmget,
2506 .tiocmset = mos7840_tiocmset,
Johan Hovold0c6133712013-03-21 12:37:17 +01002507 .tiocmiwait = usb_serial_generic_tiocmiwait,
Johan Hovold8c1a07f2013-03-21 12:37:16 +01002508 .get_icount = usb_serial_generic_get_icount,
Johan Hovold80c00752012-10-25 18:56:34 +02002509 .port_probe = mos7840_port_probe,
2510 .port_remove = mos7840_port_remove,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002511 .read_bulk_callback = mos7840_bulk_in_callback,
2512 .read_int_callback = mos7840_interrupt_callback,
2513};
2514
Alan Stern4d2a7af2012-02-23 14:57:09 -05002515static struct usb_serial_driver * const serial_drivers[] = {
2516 &moschip7840_4port_device, NULL
2517};
2518
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002519module_usb_serial_driver(serial_drivers, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002520
Paul B Schroeder3f542972006-08-31 19:41:47 -05002521MODULE_DESCRIPTION(DRIVER_DESC);
2522MODULE_LICENSE("GPL");