blob: 947b866ac36337f880b4680fa9039f8a2b3d1ee6 [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
38/*
39 * Version Information
40 */
Tony Cook37768ad2009-04-18 22:42:18 +093041#define DRIVER_VERSION "1.3.2"
Paul B Schroeder3f542972006-08-31 19:41:47 -050042#define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
43
44/*
45 * 16C50 UART register defines
46 */
47
48#define LCR_BITS_5 0x00 /* 5 bits/char */
49#define LCR_BITS_6 0x01 /* 6 bits/char */
50#define LCR_BITS_7 0x02 /* 7 bits/char */
51#define LCR_BITS_8 0x03 /* 8 bits/char */
52#define LCR_BITS_MASK 0x03 /* Mask for bits/char field */
53
54#define LCR_STOP_1 0x00 /* 1 stop bit */
55#define LCR_STOP_1_5 0x04 /* 1.5 stop bits (if 5 bits/char) */
56#define LCR_STOP_2 0x04 /* 2 stop bits (if 6-8 bits/char) */
57#define LCR_STOP_MASK 0x04 /* Mask for stop bits field */
58
59#define LCR_PAR_NONE 0x00 /* No parity */
60#define LCR_PAR_ODD 0x08 /* Odd parity */
61#define LCR_PAR_EVEN 0x18 /* Even parity */
62#define LCR_PAR_MARK 0x28 /* Force parity bit to 1 */
63#define LCR_PAR_SPACE 0x38 /* Force parity bit to 0 */
64#define LCR_PAR_MASK 0x38 /* Mask for parity field */
65
66#define LCR_SET_BREAK 0x40 /* Set Break condition */
67#define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
68
69#define MCR_DTR 0x01 /* Assert DTR */
70#define MCR_RTS 0x02 /* Assert RTS */
71#define MCR_OUT1 0x04 /* Loopback only: Sets state of RI */
72#define MCR_MASTER_IE 0x08 /* Enable interrupt outputs */
73#define MCR_LOOPBACK 0x10 /* Set internal (digital) loopback mode */
74#define MCR_XON_ANY 0x20 /* Enable any char to exit XOFF mode */
75
76#define MOS7840_MSR_CTS 0x10 /* Current state of CTS */
77#define MOS7840_MSR_DSR 0x20 /* Current state of DSR */
78#define MOS7840_MSR_RI 0x40 /* Current state of RI */
79#define MOS7840_MSR_CD 0x80 /* Current state of CD */
80
81/*
82 * Defines used for sending commands to port
83 */
84
Alan Cox880af9d2008-07-22 11:16:12 +010085#define WAIT_FOR_EVER (HZ * 0) /* timeout urb is wait for ever */
86#define MOS_WDR_TIMEOUT (HZ * 5) /* default urb timeout */
Paul B Schroeder3f542972006-08-31 19:41:47 -050087
88#define MOS_PORT1 0x0200
89#define MOS_PORT2 0x0300
90#define MOS_VENREG 0x0000
91#define MOS_MAX_PORT 0x02
92#define MOS_WRITE 0x0E
93#define MOS_READ 0x0D
94
95/* Requests */
96#define MCS_RD_RTYPE 0xC0
97#define MCS_WR_RTYPE 0x40
98#define MCS_RDREQ 0x0D
99#define MCS_WRREQ 0x0E
100#define MCS_CTRL_TIMEOUT 500
101#define VENDOR_READ_LENGTH (0x01)
102
103#define MAX_NAME_LEN 64
104
Alan Cox880af9d2008-07-22 11:16:12 +0100105#define ZLP_REG1 0x3A /* Zero_Flag_Reg1 58 */
106#define ZLP_REG5 0x3E /* Zero_Flag_Reg5 62 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500107
108/* For higher baud Rates use TIOCEXBAUD */
109#define TIOCEXBAUD 0x5462
110
111/* vendor id and device id defines */
112
David Ludlow11e1abb2008-02-25 17:30:52 -0500113/* The native mos7840/7820 component */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500114#define USB_VENDOR_ID_MOSCHIP 0x9710
115#define MOSCHIP_DEVICE_ID_7840 0x7840
116#define MOSCHIP_DEVICE_ID_7820 0x7820
David Ludlow11e1abb2008-02-25 17:30:52 -0500117/* The native component can have its vendor/device id's overridden
118 * in vendor-specific implementations. Such devices can be handled
119 * by making a change here, in moschip_port_id_table, and in
120 * moschip_id_table_combined
121 */
Dave Ludlow870408c2010-09-01 12:33:30 -0400122#define USB_VENDOR_ID_BANDB 0x0856
123#define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
124#define BANDB_DEVICE_ID_USO9ML2_2P 0xBC00
125#define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
126#define BANDB_DEVICE_ID_USO9ML2_4P 0xBC01
127#define BANDB_DEVICE_ID_US9ML2_2 0xAC29
128#define BANDB_DEVICE_ID_US9ML2_4 0xAC30
129#define BANDB_DEVICE_ID_USPTL4_2 0xAC31
130#define BANDB_DEVICE_ID_USPTL4_4 0xAC32
131#define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
132#define BANDB_DEVICE_ID_USOPTL4_2P 0xBC02
133#define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
134#define BANDB_DEVICE_ID_USOPTL4_4P 0xBC03
135#define BANDB_DEVICE_ID_USOPTL2_4 0xAC24
Paul B Schroeder3f542972006-08-31 19:41:47 -0500136
Russell Lang9d498be2009-07-17 19:29:20 +1000137/* This driver also supports
138 * ATEN UC2324 device using Moschip MCS7840
139 * ATEN UC2322 device using Moschip MCS7820
140 */
Tony Cooke9b8cff2009-04-18 22:42:18 +0930141#define USB_VENDOR_ID_ATENINTL 0x0557
142#define ATENINTL_DEVICE_ID_UC2324 0x2011
Russell Lang9d498be2009-07-17 19:29:20 +1000143#define ATENINTL_DEVICE_ID_UC2322 0x7820
Tony Cooke9b8cff2009-04-18 22:42:18 +0930144
David Ludlow11e1abb2008-02-25 17:30:52 -0500145/* Interrupt Routine Defines */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500146
147#define SERIAL_IIR_RLS 0x06
148#define SERIAL_IIR_MS 0x00
149
150/*
151 * Emulation of the bit mask on the LINE STATUS REGISTER.
152 */
153#define SERIAL_LSR_DR 0x0001
154#define SERIAL_LSR_OE 0x0002
155#define SERIAL_LSR_PE 0x0004
156#define SERIAL_LSR_FE 0x0008
157#define SERIAL_LSR_BI 0x0010
158
159#define MOS_MSR_DELTA_CTS 0x10
160#define MOS_MSR_DELTA_DSR 0x20
161#define MOS_MSR_DELTA_RI 0x40
162#define MOS_MSR_DELTA_CD 0x80
163
Alan Cox880af9d2008-07-22 11:16:12 +0100164/* Serial Port register Address */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500165#define INTERRUPT_ENABLE_REGISTER ((__u16)(0x01))
166#define FIFO_CONTROL_REGISTER ((__u16)(0x02))
167#define LINE_CONTROL_REGISTER ((__u16)(0x03))
168#define MODEM_CONTROL_REGISTER ((__u16)(0x04))
169#define LINE_STATUS_REGISTER ((__u16)(0x05))
170#define MODEM_STATUS_REGISTER ((__u16)(0x06))
171#define SCRATCH_PAD_REGISTER ((__u16)(0x07))
172#define DIVISOR_LATCH_LSB ((__u16)(0x00))
173#define DIVISOR_LATCH_MSB ((__u16)(0x01))
174
175#define CLK_MULTI_REGISTER ((__u16)(0x02))
176#define CLK_START_VALUE_REGISTER ((__u16)(0x03))
Donald Lee093ea2d2012-03-14 15:26:33 +0800177#define GPIO_REGISTER ((__u16)(0x07))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500178
179#define SERIAL_LCR_DLAB ((__u16)(0x0080))
180
181/*
182 * URB POOL related defines
183 */
184#define NUM_URBS 16 /* URB Count */
185#define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
186
187
Johan Hovolda6d2de92013-07-26 11:55:17 +0200188enum mos7840_flag {
189 MOS7840_FLAG_CTRL_BUSY,
190};
191
Németh Márton7d40d7e2010-01-10 15:34:24 +0100192static const struct usb_device_id moschip_port_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)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500195 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400196 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500197 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400198 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500199 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
200 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
201 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
202 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800207 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930208 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000209 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500210 {} /* terminating entry */
211};
212
Tony Zelenoff0fd47a32012-06-05 17:58:04 +0400213static const struct usb_device_id moschip_id_table_combined[] = {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500214 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
215 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500216 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400217 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500218 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400219 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500220 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
221 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
222 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
223 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500224 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400225 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500226 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400227 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800228 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930229 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000230 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500231 {} /* terminating entry */
232};
233
234MODULE_DEVICE_TABLE(usb, moschip_id_table_combined);
235
236/* This structure holds all of the local port information */
237
238struct moschip_port {
239 int port_num; /*Actual port number in the device(1,2,etc) */
240 struct urb *write_urb; /* write URB for this port */
241 struct urb *read_urb; /* read URB for this port */
242 __u8 shadowLCR; /* last LCR value received */
243 __u8 shadowMCR; /* last MCR value received */
244 char open;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100245 char open_ports;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500246 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500247 int delta_msr_cond;
248 struct async_icount icount;
249 struct usb_serial_port *port; /* loop back to the owner of this object */
250
Alan Cox880af9d2008-07-22 11:16:12 +0100251 /* Offsets */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500252 __u8 SpRegOffset;
253 __u8 ControlRegOffset;
254 __u8 DcrRegOffset;
Alan Cox880af9d2008-07-22 11:16:12 +0100255 /* for processing control URBS in interrupt context */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500256 struct urb *control_urb;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100257 struct usb_ctrlrequest *dr;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500258 char *ctrl_buf;
259 int MsrLsr;
260
Oliver Neukum0de9a702007-03-16 20:28:28 +0100261 spinlock_t pool_lock;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500262 struct urb *write_urb_pool[NUM_URBS];
Oliver Neukum0de9a702007-03-16 20:28:28 +0100263 char busy[NUM_URBS];
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800264 bool read_urb_busy;
Johan Hovolda6d2de92013-07-26 11:55:17 +0200265
266 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500267};
268
269
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030270static bool debug;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500271
272/*
273 * mos7840_set_reg_sync
274 * To set the Control register by calling usb_fill_control_urb function
275 * by passing usb_sndctrlpipe function as parameter.
276 */
277
278static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
279 __u16 val)
280{
281 struct usb_device *dev = port->serial->dev;
282 val = val & 0x00ff;
Tony Cook84fe6e72009-04-18 22:55:06 +0930283 dbg("mos7840_set_reg_sync offset is %x, value %x", reg, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500284
285 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
286 MCS_WR_RTYPE, val, reg, NULL, 0,
287 MOS_WDR_TIMEOUT);
288}
289
290/*
291 * mos7840_get_reg_sync
292 * To set the Uart register by calling usb_fill_control_urb function by
293 * passing usb_rcvctrlpipe function as parameter.
294 */
295
296static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100297 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500298{
299 struct usb_device *dev = port->serial->dev;
300 int ret = 0;
Johan Hovold9e221a32009-12-28 23:01:55 +0100301 u8 *buf;
302
303 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
304 if (!buf)
305 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500306
307 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100308 MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500309 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100310 *val = buf[0];
Tony Cook84fe6e72009-04-18 22:55:06 +0930311 dbg("mos7840_get_reg_sync offset is %x, return val %x", reg, *val);
Johan Hovold9e221a32009-12-28 23:01:55 +0100312
313 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500314 return ret;
315}
316
317/*
318 * mos7840_set_uart_reg
319 * To set the Uart register by calling usb_fill_control_urb function by
320 * passing usb_sndctrlpipe function as parameter.
321 */
322
323static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
324 __u16 val)
325{
326
327 struct usb_device *dev = port->serial->dev;
328 val = val & 0x00ff;
Alan Cox880af9d2008-07-22 11:16:12 +0100329 /* For the UART control registers, the application number need
330 to be Or'ed */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100331 if (port->serial->num_ports == 4) {
Alan Cox880af9d2008-07-22 11:16:12 +0100332 val |= (((__u16) port->number -
333 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930334 dbg("mos7840_set_uart_reg application number is %x", val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500335 } else {
336 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100337 val |= (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500338 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930339 dbg("mos7840_set_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500340 val);
341 } else {
342 val |=
343 (((__u16) port->number -
344 (__u16) (port->serial->minor)) + 2) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930345 dbg("mos7840_set_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500346 val);
347 }
348 }
349 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
350 MCS_WR_RTYPE, val, reg, NULL, 0,
351 MOS_WDR_TIMEOUT);
352
353}
354
355/*
356 * mos7840_get_uart_reg
357 * To set the Control register by calling usb_fill_control_urb function
358 * by passing usb_rcvctrlpipe function as parameter.
359 */
360static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100361 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500362{
363 struct usb_device *dev = port->serial->dev;
364 int ret = 0;
365 __u16 Wval;
Johan Hovold9e221a32009-12-28 23:01:55 +0100366 u8 *buf;
367
368 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
369 if (!buf)
370 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500371
Tony Cook84fe6e72009-04-18 22:55:06 +0930372 /* dbg("application number is %4x",
Alan Cox880af9d2008-07-22 11:16:12 +0100373 (((__u16)port->number - (__u16)(port->serial->minor))+1)<<8); */
374 /* Wval is same as application number */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100375 if (port->serial->num_ports == 4) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500376 Wval =
377 (((__u16) port->number - (__u16) (port->serial->minor)) +
378 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930379 dbg("mos7840_get_uart_reg application number is %x", Wval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500380 } else {
381 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100382 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500383 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930384 dbg("mos7840_get_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500385 Wval);
386 } else {
Alan Cox880af9d2008-07-22 11:16:12 +0100387 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500388 (__u16) (port->serial->minor)) + 2) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930389 dbg("mos7840_get_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500390 Wval);
391 }
392 }
393 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100394 MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500395 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100396 *val = buf[0];
397
398 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500399 return ret;
400}
401
402static void mos7840_dump_serial_port(struct moschip_port *mos7840_port)
403{
404
Tony Cook84fe6e72009-04-18 22:55:06 +0930405 dbg("***************************************");
406 dbg("SpRegOffset is %2x", mos7840_port->SpRegOffset);
407 dbg("ControlRegOffset is %2x", mos7840_port->ControlRegOffset);
408 dbg("DCRRegOffset is %2x", mos7840_port->DcrRegOffset);
409 dbg("***************************************");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500410
411}
412
413/************************************************************************/
414/************************************************************************/
415/* I N T E R F A C E F U N C T I O N S */
416/* I N T E R F A C E F U N C T I O N S */
417/************************************************************************/
418/************************************************************************/
419
420static inline void mos7840_set_port_private(struct usb_serial_port *port,
421 struct moschip_port *data)
422{
423 usb_set_serial_port_data(port, (void *)data);
424}
425
426static inline struct moschip_port *mos7840_get_port_private(struct
427 usb_serial_port
428 *port)
429{
430 return (struct moschip_port *)usb_get_serial_port_data(port);
431}
432
Oliver Neukum0de9a702007-03-16 20:28:28 +0100433static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500434{
435 struct moschip_port *mos7840_port;
436 struct async_icount *icount;
437 mos7840_port = port;
438 icount = &mos7840_port->icount;
439 if (new_msr &
440 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
441 MOS_MSR_DELTA_CD)) {
442 icount = &mos7840_port->icount;
443
444 /* update input line counters */
445 if (new_msr & MOS_MSR_DELTA_CTS) {
446 icount->cts++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100447 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500448 }
449 if (new_msr & MOS_MSR_DELTA_DSR) {
450 icount->dsr++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100451 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500452 }
453 if (new_msr & MOS_MSR_DELTA_CD) {
454 icount->dcd++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100455 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500456 }
457 if (new_msr & MOS_MSR_DELTA_RI) {
458 icount->rng++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100459 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500460 }
Johan Hovoldee2470d2013-03-19 09:21:19 +0100461
462 mos7840_port->delta_msr_cond = 1;
Johan Hovoldced638a2013-03-19 09:21:20 +0100463 wake_up_interruptible(&port->port->delta_msr_wait);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500464 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500465}
466
Oliver Neukum0de9a702007-03-16 20:28:28 +0100467static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500468{
469 struct async_icount *icount;
470
Harvey Harrison441b62c2008-03-03 16:08:34 -0800471 dbg("%s - %02x", __func__, new_lsr);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500472
473 if (new_lsr & SERIAL_LSR_BI) {
Alan Cox880af9d2008-07-22 11:16:12 +0100474 /*
475 * Parity and Framing errors only count if they
476 * occur exclusive of a break being
477 * received.
478 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500479 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
480 }
481
482 /* update input line counters */
483 icount = &port->icount;
484 if (new_lsr & SERIAL_LSR_BI) {
485 icount->brk++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100486 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500487 }
488 if (new_lsr & SERIAL_LSR_OE) {
489 icount->overrun++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100490 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500491 }
492 if (new_lsr & SERIAL_LSR_PE) {
493 icount->parity++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100494 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500495 }
496 if (new_lsr & SERIAL_LSR_FE) {
497 icount->frame++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100498 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500499 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500500}
501
502/************************************************************************/
503/************************************************************************/
504/* U S B C A L L B A C K F U N C T I O N S */
505/* U S B C A L L B A C K F U N C T I O N S */
506/************************************************************************/
507/************************************************************************/
508
David Howells7d12e782006-10-05 14:55:46 +0100509static void mos7840_control_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500510{
511 unsigned char *data;
512 struct moschip_port *mos7840_port;
513 __u8 regval = 0x0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700514 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500515
Ming Leicdc97792008-02-24 18:41:47 +0800516 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100517
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700518 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500519 case 0:
520 /* success */
521 break;
522 case -ECONNRESET:
523 case -ENOENT:
524 case -ESHUTDOWN:
525 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800526 dbg("%s - urb shutting down with status: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700527 status);
Johan Hovolda6d2de92013-07-26 11:55:17 +0200528 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500529 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800530 dbg("%s - nonzero urb status received: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700531 status);
Johan Hovolda6d2de92013-07-26 11:55:17 +0200532 goto out;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500533 }
534
Tony Cook84fe6e72009-04-18 22:55:06 +0930535 dbg("%s urb buffer size is %d", __func__, urb->actual_length);
536 dbg("%s mos7840_port->MsrLsr is %d port %d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500537 mos7840_port->MsrLsr, mos7840_port->port_num);
538 data = urb->transfer_buffer;
539 regval = (__u8) data[0];
Tony Cook84fe6e72009-04-18 22:55:06 +0930540 dbg("%s data is %x", __func__, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500541 if (mos7840_port->MsrLsr == 0)
542 mos7840_handle_new_msr(mos7840_port, regval);
543 else if (mos7840_port->MsrLsr == 1)
544 mos7840_handle_new_lsr(mos7840_port, regval);
Johan Hovolda6d2de92013-07-26 11:55:17 +0200545out:
546 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mos7840_port->flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500547}
548
549static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100550 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500551{
552 struct usb_device *dev = mcs->port->serial->dev;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100553 struct usb_ctrlrequest *dr = mcs->dr;
554 unsigned char *buffer = mcs->ctrl_buf;
555 int ret;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500556
Johan Hovolda6d2de92013-07-26 11:55:17 +0200557 if (test_and_set_bit_lock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags))
558 return -EBUSY;
559
Paul B Schroeder3f542972006-08-31 19:41:47 -0500560 dr->bRequestType = MCS_RD_RTYPE;
561 dr->bRequest = MCS_RDREQ;
Alan Cox880af9d2008-07-22 11:16:12 +0100562 dr->wValue = cpu_to_le16(Wval); /* 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500563 dr->wIndex = cpu_to_le16(reg);
564 dr->wLength = cpu_to_le16(2);
565
566 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
567 (unsigned char *)dr, buffer, 2,
568 mos7840_control_callback, mcs);
569 mcs->control_urb->transfer_buffer_length = 2;
570 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
Johan Hovolda6d2de92013-07-26 11:55:17 +0200571 if (ret)
572 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY, &mcs->flags);
573
Paul B Schroeder3f542972006-08-31 19:41:47 -0500574 return ret;
575}
576
577/*****************************************************************************
578 * mos7840_interrupt_callback
579 * this is the callback function for when we have received data on the
580 * interrupt endpoint.
581 *****************************************************************************/
582
David Howells7d12e782006-10-05 14:55:46 +0100583static void mos7840_interrupt_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500584{
585 int result;
586 int length;
587 struct moschip_port *mos7840_port;
588 struct usb_serial *serial;
589 __u16 Data;
590 unsigned char *data;
591 __u8 sp[5], st;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100592 int i, rv = 0;
593 __u16 wval, wreg = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700594 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500595
Tony Cook84fe6e72009-04-18 22:55:06 +0930596 dbg("%s", " : Entering");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500597
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700598 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500599 case 0:
600 /* success */
601 break;
602 case -ECONNRESET:
603 case -ENOENT:
604 case -ESHUTDOWN:
605 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800606 dbg("%s - urb shutting down with status: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700607 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500608 return;
609 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800610 dbg("%s - nonzero urb status received: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700611 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500612 goto exit;
613 }
614
615 length = urb->actual_length;
616 data = urb->transfer_buffer;
617
Ming Leicdc97792008-02-24 18:41:47 +0800618 serial = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500619
620 /* Moschip get 5 bytes
621 * Byte 1 IIR Port 1 (port.number is 0)
622 * Byte 2 IIR Port 2 (port.number is 1)
623 * Byte 3 IIR Port 3 (port.number is 2)
624 * Byte 4 IIR Port 4 (port.number is 3)
625 * Byte 5 FIFO status for both */
626
627 if (length && length > 5) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930628 dbg("%s", "Wrong data !!!");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500629 return;
630 }
631
632 sp[0] = (__u8) data[0];
633 sp[1] = (__u8) data[1];
634 sp[2] = (__u8) data[2];
635 sp[3] = (__u8) data[3];
636 st = (__u8) data[4];
637
638 for (i = 0; i < serial->num_ports; i++) {
639 mos7840_port = mos7840_get_port_private(serial->port[i]);
640 wval =
641 (((__u16) serial->port[i]->number -
642 (__u16) (serial->minor)) + 1) << 8;
643 if (mos7840_port->open) {
644 if (sp[i] & 0x01) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930645 dbg("SP%d No Interrupt !!!", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500646 } else {
647 switch (sp[i] & 0x0f) {
648 case SERIAL_IIR_RLS:
649 dbg("Serial Port %d: Receiver status error or ", i);
Tony Cook84fe6e72009-04-18 22:55:06 +0930650 dbg("address bit detected in 9-bit mode");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500651 mos7840_port->MsrLsr = 1;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100652 wreg = LINE_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500653 break;
654 case SERIAL_IIR_MS:
Tony Cook84fe6e72009-04-18 22:55:06 +0930655 dbg("Serial Port %d: Modem status change", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500656 mos7840_port->MsrLsr = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100657 wreg = MODEM_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500658 break;
659 }
Johan Hovold8d649dd2012-10-25 18:56:33 +0200660 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500661 }
662 }
663 }
Alan Cox880af9d2008-07-22 11:16:12 +0100664 if (!(rv < 0))
665 /* the completion handler for the control urb will resubmit */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100666 return;
667exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -0500668 result = usb_submit_urb(urb, GFP_ATOMIC);
669 if (result) {
670 dev_err(&urb->dev->dev,
671 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800672 __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500673 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500674}
675
676static int mos7840_port_paranoia_check(struct usb_serial_port *port,
677 const char *function)
678{
679 if (!port) {
680 dbg("%s - port == NULL", function);
681 return -1;
682 }
683 if (!port->serial) {
684 dbg("%s - port->serial == NULL", function);
685 return -1;
686 }
687
688 return 0;
689}
690
691/* Inline functions to check the sanity of a pointer that is passed to us */
692static int mos7840_serial_paranoia_check(struct usb_serial *serial,
693 const char *function)
694{
695 if (!serial) {
696 dbg("%s - serial == NULL", function);
697 return -1;
698 }
699 if (!serial->type) {
700 dbg("%s - serial->type == NULL!", function);
701 return -1;
702 }
703
704 return 0;
705}
706
707static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
708 const char *function)
709{
710 /* if no port was specified, or it fails a paranoia check */
711 if (!port ||
712 mos7840_port_paranoia_check(port, function) ||
713 mos7840_serial_paranoia_check(port->serial, function)) {
Alan Cox880af9d2008-07-22 11:16:12 +0100714 /* then say that we don't have a valid usb_serial thing,
715 * which will end up genrating -ENODEV return values */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500716 return NULL;
717 }
718
719 return port->serial;
720}
721
722/*****************************************************************************
723 * mos7840_bulk_in_callback
724 * this is the callback function for when we have received data on the
725 * bulk in endpoint.
726 *****************************************************************************/
727
David Howells7d12e782006-10-05 14:55:46 +0100728static void mos7840_bulk_in_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500729{
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700730 int retval;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500731 unsigned char *data;
732 struct usb_serial *serial;
733 struct usb_serial_port *port;
734 struct moschip_port *mos7840_port;
735 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700736 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500737
Ming Leicdc97792008-02-24 18:41:47 +0800738 mos7840_port = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500739 if (!mos7840_port) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930740 dbg("%s", "NULL mos7840_port pointer");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800741 return;
742 }
743
744 if (status) {
745 dbg("nonzero read bulk status received: %d", status);
746 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500747 return;
748 }
749
750 port = (struct usb_serial_port *)mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800751 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930752 dbg("%s", "Port Paranoia failed");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800753 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500754 return;
755 }
756
Harvey Harrison441b62c2008-03-03 16:08:34 -0800757 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500758 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930759 dbg("%s", "Bad serial pointer");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800760 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500761 return;
762 }
763
Tony Cook84fe6e72009-04-18 22:55:06 +0930764 dbg("%s", "Entering... ");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500765
766 data = urb->transfer_buffer;
767
Tony Cook84fe6e72009-04-18 22:55:06 +0930768 dbg("%s", "Entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500769
770 if (urb->actual_length) {
Alan Cox4a90f092008-10-13 10:39:46 +0100771 tty = tty_port_tty_get(&mos7840_port->port->port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500772 if (tty) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500773 tty_insert_flip_string(tty, data, urb->actual_length);
Tony Cook84fe6e72009-04-18 22:55:06 +0930774 dbg(" %s ", data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500775 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100776 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500777 }
778 mos7840_port->icount.rx += urb->actual_length;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100779 smp_wmb();
Tony Cook84fe6e72009-04-18 22:55:06 +0930780 dbg("mos7840_port->icount.rx is %d:",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500781 mos7840_port->icount.rx);
782 }
783
784 if (!mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930785 dbg("%s", "URB KILLED !!!");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800786 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500787 return;
788 }
789
Paul B Schroeder3f542972006-08-31 19:41:47 -0500790
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800791 mos7840_port->read_urb_busy = true;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700792 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100793
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700794 if (retval) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800795 dbg("usb_submit_urb(read bulk) failed, retval = %d", retval);
796 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500797 }
798}
799
800/*****************************************************************************
801 * mos7840_bulk_out_data_callback
Alan Cox880af9d2008-07-22 11:16:12 +0100802 * this is the callback function for when we have finished sending
803 * serial data on the bulk out endpoint.
Paul B Schroeder3f542972006-08-31 19:41:47 -0500804 *****************************************************************************/
805
David Howells7d12e782006-10-05 14:55:46 +0100806static void mos7840_bulk_out_data_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500807{
808 struct moschip_port *mos7840_port;
809 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700810 int status = urb->status;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100811 int i;
812
Ming Leicdc97792008-02-24 18:41:47 +0800813 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100814 spin_lock(&mos7840_port->pool_lock);
815 for (i = 0; i < NUM_URBS; i++) {
816 if (urb == mos7840_port->write_urb_pool[i]) {
817 mos7840_port->busy[i] = 0;
818 break;
819 }
820 }
821 spin_unlock(&mos7840_port->pool_lock);
822
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700823 if (status) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930824 dbg("nonzero write bulk status received:%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500825 return;
826 }
827
Harvey Harrison441b62c2008-03-03 16:08:34 -0800828 if (mos7840_port_paranoia_check(mos7840_port->port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930829 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500830 return;
831 }
832
Tony Cook84fe6e72009-04-18 22:55:06 +0930833 dbg("%s", "Entering .........");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500834
Alan Cox4a90f092008-10-13 10:39:46 +0100835 tty = tty_port_tty_get(&mos7840_port->port->port);
Jiri Slabyb963a842007-02-10 01:44:55 -0800836 if (tty && mos7840_port->open)
837 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100838 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500839
840}
841
842/************************************************************************/
843/* 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 */
844/************************************************************************/
845#ifdef MCSSerialProbe
846static int mos7840_serial_probe(struct usb_serial *serial,
847 const struct usb_device_id *id)
848{
849
850 /*need to implement the mode_reg reading and updating\
851 structures usb_serial_ device_type\
852 (i.e num_ports, num_bulkin,bulkout etc) */
853 /* Also we can update the changes attach */
854 return 1;
855}
856#endif
857
858/*****************************************************************************
859 * mos7840_open
860 * this function is called by the tty driver when a port is opened
861 * If successful, we return 0
862 * Otherwise we return a negative error number.
863 *****************************************************************************/
864
Alan Coxa509a7e2009-09-19 13:13:26 -0700865static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500866{
867 int response;
868 int j;
869 struct usb_serial *serial;
870 struct urb *urb;
871 __u16 Data;
872 int status;
873 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100874 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500875
Tony Cook84fe6e72009-04-18 22:55:06 +0930876 dbg ("%s enter", __func__);
877
Harvey Harrison441b62c2008-03-03 16:08:34 -0800878 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930879 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500880 return -ENODEV;
881 }
882
Paul B Schroeder3f542972006-08-31 19:41:47 -0500883 serial = port->serial;
884
Harvey Harrison441b62c2008-03-03 16:08:34 -0800885 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930886 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500887 return -ENODEV;
888 }
889
890 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100891 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500892
Oliver Neukum0de9a702007-03-16 20:28:28 +0100893 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500894 return -ENODEV;
895
896 usb_clear_halt(serial->dev, port->write_urb->pipe);
897 usb_clear_halt(serial->dev, port->read_urb->pipe);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100898 port0->open_ports++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500899
900 /* Initialising the write urb pool */
901 for (j = 0; j < NUM_URBS; ++j) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100902 urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500903 mos7840_port->write_urb_pool[j] = urb;
904
905 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700906 dev_err(&port->dev, "No more urbs???\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500907 continue;
908 }
909
Alan Cox880af9d2008-07-22 11:16:12 +0100910 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
911 GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500912 if (!urb->transfer_buffer) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100913 usb_free_urb(urb);
914 mos7840_port->write_urb_pool[j] = NULL;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700915 dev_err(&port->dev,
916 "%s-out of memory for urb buffers.\n",
917 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500918 continue;
919 }
920 }
921
922/*****************************************************************************
923 * Initialize MCS7840 -- Write Init values to corresponding Registers
924 *
925 * Register Index
926 * 1 : IER
927 * 2 : FCR
928 * 3 : LCR
929 * 4 : MCR
930 *
931 * 0x08 : SP1/2 Control Reg
932 *****************************************************************************/
933
Alan Cox880af9d2008-07-22 11:16:12 +0100934 /* NEED to check the following Block */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500935
Paul B Schroeder3f542972006-08-31 19:41:47 -0500936 Data = 0x0;
937 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
938 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930939 dbg("Reading Spreg failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200940 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500941 }
942 Data |= 0x80;
943 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
944 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930945 dbg("writing Spreg failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200946 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500947 }
948
949 Data &= ~0x80;
950 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
951 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930952 dbg("writing Spreg failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200953 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500954 }
Alan Cox880af9d2008-07-22 11:16:12 +0100955 /* End of block to be checked */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500956
Paul B Schroeder3f542972006-08-31 19:41:47 -0500957 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +0100958 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
959 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500960 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930961 dbg("Reading Controlreg failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200962 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500963 }
Alan Cox880af9d2008-07-22 11:16:12 +0100964 Data |= 0x08; /* Driver done bit */
965 Data |= 0x20; /* rx_disable */
966 status = mos7840_set_reg_sync(port,
967 mos7840_port->ControlRegOffset, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500968 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930969 dbg("writing Controlreg failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200970 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500971 }
Alan Cox880af9d2008-07-22 11:16:12 +0100972 /* do register settings here */
973 /* Set all regs to the device default values. */
974 /***********************************
975 * First Disable all interrupts.
976 ***********************************/
Paul B Schroeder3f542972006-08-31 19:41:47 -0500977 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500978 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
979 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930980 dbg("disabling interrupts failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200981 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500982 }
Alan Cox880af9d2008-07-22 11:16:12 +0100983 /* Set FIFO_CONTROL_REGISTER to the default value */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500984 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500985 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
986 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930987 dbg("Writing FIFO_CONTROL_REGISTER failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200988 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500989 }
990
991 Data = 0xcf;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500992 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
993 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930994 dbg("Writing FIFO_CONTROL_REGISTER failed");
Johan Hovold6ff428d2013-07-01 14:03:33 +0200995 goto err;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500996 }
997
998 Data = 0x03;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500999 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1000 mos7840_port->shadowLCR = Data;
1001
1002 Data = 0x0b;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001003 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1004 mos7840_port->shadowMCR = Data;
1005
1006 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001007 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1008 mos7840_port->shadowLCR = Data;
1009
Alan Cox880af9d2008-07-22 11:16:12 +01001010 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001011 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1012
1013 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001014 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1015
1016 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001017 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1018
1019 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001020 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1021
1022 Data = Data & ~SERIAL_LCR_DLAB;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001023 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1024 mos7840_port->shadowLCR = Data;
1025
Alan Cox880af9d2008-07-22 11:16:12 +01001026 /* clearing Bulkin and Bulkout Fifo */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001027 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001028 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
1029
1030 Data = Data | 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001031 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1032
1033 Data = Data & ~0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001034 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
Alan Cox880af9d2008-07-22 11:16:12 +01001035 /* Finally enable all interrupts */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001036 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001037 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1038
Alan Cox880af9d2008-07-22 11:16:12 +01001039 /* clearing rx_disable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001040 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001041 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1042 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001043 Data = Data & ~0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01001044 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1045 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001046
Alan Cox880af9d2008-07-22 11:16:12 +01001047 /* rx_negate */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001048 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001049 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1050 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001051 Data = Data | 0x10;
Alan Cox880af9d2008-07-22 11:16:12 +01001052 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1053 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001054
Alan Cox880af9d2008-07-22 11:16:12 +01001055 /* Check to see if we've set up our endpoint info yet *
1056 * (can't set it up in mos7840_startup as the structures *
1057 * were not set up at that time.) */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001058 if (port0->open_ports == 1) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001059 if (serial->port[0]->interrupt_in_buffer == NULL) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001060 /* set up interrupt urb */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001061 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
Alan Cox880af9d2008-07-22 11:16:12 +01001062 serial->dev,
1063 usb_rcvintpipe(serial->dev,
1064 serial->port[0]->interrupt_in_endpointAddress),
1065 serial->port[0]->interrupt_in_buffer,
1066 serial->port[0]->interrupt_in_urb->
1067 transfer_buffer_length,
1068 mos7840_interrupt_callback,
1069 serial,
1070 serial->port[0]->interrupt_in_urb->interval);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001071
1072 /* start interrupt read for mos7840 *
1073 * will continue as long as mos7840 is connected */
1074
1075 response =
1076 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1077 GFP_KERNEL);
1078 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001079 dev_err(&port->dev, "%s - Error %d submitting "
1080 "interrupt urb\n", __func__, response);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001081 }
1082
1083 }
1084
1085 }
1086
1087 /* see if we've set up our endpoint info yet *
1088 * (can't set it up in mos7840_startup as the *
1089 * structures were not set up at that time.) */
1090
Tony Cook84fe6e72009-04-18 22:55:06 +09301091 dbg("port number is %d", port->number);
1092 dbg("serial number is %d", port->serial->minor);
1093 dbg("Bulkin endpoint is %d", port->bulk_in_endpointAddress);
1094 dbg("BulkOut endpoint is %d", port->bulk_out_endpointAddress);
1095 dbg("Interrupt endpoint is %d", port->interrupt_in_endpointAddress);
1096 dbg("port's number in the device is %d", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001097 mos7840_port->read_urb = port->read_urb;
1098
1099 /* set up our bulk in urb */
Donald Lee093ea2d2012-03-14 15:26:33 +08001100 if ((serial->num_ports == 2)
1101 && ((((__u16)port->number -
1102 (__u16)(port->serial->minor)) % 2) != 0)) {
1103 usb_fill_bulk_urb(mos7840_port->read_urb,
1104 serial->dev,
1105 usb_rcvbulkpipe(serial->dev,
1106 (port->bulk_in_endpointAddress) + 2),
1107 port->bulk_in_buffer,
1108 mos7840_port->read_urb->transfer_buffer_length,
1109 mos7840_bulk_in_callback, mos7840_port);
1110 } else {
1111 usb_fill_bulk_urb(mos7840_port->read_urb,
1112 serial->dev,
1113 usb_rcvbulkpipe(serial->dev,
1114 port->bulk_in_endpointAddress),
1115 port->bulk_in_buffer,
1116 mos7840_port->read_urb->transfer_buffer_length,
1117 mos7840_bulk_in_callback, mos7840_port);
1118 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001119
Tony Cook84fe6e72009-04-18 22:55:06 +09301120 dbg("mos7840_open: bulkin endpoint is %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001121 port->bulk_in_endpointAddress);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001122 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001123 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1124 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001125 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1126 __func__, response);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001127 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001128 }
1129
1130 /* initialize our wait queues */
1131 init_waitqueue_head(&mos7840_port->wait_chase);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001132
1133 /* initialize our icount structure */
1134 memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount));
1135
1136 /* initialize our port settings */
Alan Cox880af9d2008-07-22 11:16:12 +01001137 /* Must set to enable ints! */
1138 mos7840_port->shadowMCR = MCR_MASTER_IE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001139 /* send a open port command */
1140 mos7840_port->open = 1;
Alan Cox880af9d2008-07-22 11:16:12 +01001141 /* mos7840_change_port_settings(mos7840_port,old_termios); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001142 mos7840_port->icount.tx = 0;
1143 mos7840_port->icount.rx = 0;
1144
Tony Cook84fe6e72009-04-18 22:55:06 +09301145 dbg("usb_serial serial:%p mos7840_port:%p\n usb_serial_port port:%p",
Alan Cox880af9d2008-07-22 11:16:12 +01001146 serial, mos7840_port, port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001147
Tony Cook84fe6e72009-04-18 22:55:06 +09301148 dbg ("%s leave", __func__);
1149
Paul B Schroeder3f542972006-08-31 19:41:47 -05001150 return 0;
Johan Hovold6ff428d2013-07-01 14:03:33 +02001151err:
1152 for (j = 0; j < NUM_URBS; ++j) {
1153 urb = mos7840_port->write_urb_pool[j];
1154 if (!urb)
1155 continue;
1156 kfree(urb->transfer_buffer);
1157 usb_free_urb(urb);
1158 }
1159 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001160}
1161
1162/*****************************************************************************
1163 * mos7840_chars_in_buffer
1164 * this function is called by the tty driver when it wants to know how many
1165 * bytes of data we currently have outstanding in the port (data that has
1166 * been written, but hasn't made it out the port yet)
1167 * If successful, we return the number of bytes left to be written in the
1168 * system,
Alan Cox95da3102008-07-22 11:09:07 +01001169 * Otherwise we return zero.
Paul B Schroeder3f542972006-08-31 19:41:47 -05001170 *****************************************************************************/
1171
Alan Cox95da3102008-07-22 11:09:07 +01001172static int mos7840_chars_in_buffer(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001173{
Alan Cox95da3102008-07-22 11:09:07 +01001174 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001175 int i;
1176 int chars = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001177 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001178 struct moschip_port *mos7840_port;
1179
Tony Cook84fe6e72009-04-18 22:55:06 +09301180 dbg("%s", " mos7840_chars_in_buffer:entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001181
Harvey Harrison441b62c2008-03-03 16:08:34 -08001182 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301183 dbg("%s", "Invalid port");
Alan Cox95da3102008-07-22 11:09:07 +01001184 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001185 }
1186
1187 mos7840_port = mos7840_get_port_private(port);
1188 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301189 dbg("%s", "mos7840_break:leaving ...........");
Alan Cox95da3102008-07-22 11:09:07 +01001190 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001191 }
1192
Alan Cox880af9d2008-07-22 11:16:12 +01001193 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Mark Ferrell4893ce52012-07-24 14:15:13 -05001194 for (i = 0; i < NUM_URBS; ++i) {
1195 if (mos7840_port->busy[i]) {
1196 struct urb *urb = mos7840_port->write_urb_pool[i];
1197 chars += urb->transfer_buffer_length;
1198 }
1199 }
Alan Cox880af9d2008-07-22 11:16:12 +01001200 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001201 dbg("%s - returns %d", __func__, chars);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001202 return chars;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001203
1204}
1205
Paul B Schroeder3f542972006-08-31 19:41:47 -05001206/*****************************************************************************
1207 * mos7840_close
1208 * this function is called by the tty driver when a port is closed
1209 *****************************************************************************/
1210
Alan Cox335f8512009-06-11 12:26:29 +01001211static void mos7840_close(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001212{
1213 struct usb_serial *serial;
1214 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001215 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001216 int j;
1217 __u16 Data;
1218
Tony Cook84fe6e72009-04-18 22:55:06 +09301219 dbg("%s", "mos7840_close:entering...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001220
Harvey Harrison441b62c2008-03-03 16:08:34 -08001221 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301222 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001223 return;
1224 }
1225
Harvey Harrison441b62c2008-03-03 16:08:34 -08001226 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001227 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301228 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001229 return;
1230 }
1231
1232 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001233 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001234
Oliver Neukum0de9a702007-03-16 20:28:28 +01001235 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001236 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001237
1238 for (j = 0; j < NUM_URBS; ++j)
1239 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1240
1241 /* Freeing Write URBs */
1242 for (j = 0; j < NUM_URBS; ++j) {
1243 if (mos7840_port->write_urb_pool[j]) {
1244 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1245 kfree(mos7840_port->write_urb_pool[j]->
1246 transfer_buffer);
1247
1248 usb_free_urb(mos7840_port->write_urb_pool[j]);
1249 }
1250 }
1251
Paul B Schroeder3f542972006-08-31 19:41:47 -05001252 /* While closing port, shutdown all bulk read, write *
1253 * and interrupt read if they exists */
1254 if (serial->dev) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001255 if (mos7840_port->write_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301256 dbg("%s", "Shutdown bulk write");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001257 usb_kill_urb(mos7840_port->write_urb);
1258 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001259 if (mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301260 dbg("%s", "Shutdown bulk read");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001261 usb_kill_urb(mos7840_port->read_urb);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001262 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001263 }
1264 if ((&mos7840_port->control_urb)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301265 dbg("%s", "Shutdown control read");
Alan Cox880af9d2008-07-22 11:16:12 +01001266 /*/ usb_kill_urb (mos7840_port->control_urb); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001267 }
1268 }
Alan Cox880af9d2008-07-22 11:16:12 +01001269/* if(mos7840_port->ctrl_buf != NULL) */
1270/* kfree(mos7840_port->ctrl_buf); */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001271 port0->open_ports--;
Tony Cook84fe6e72009-04-18 22:55:06 +09301272 dbg("mos7840_num_open_ports in close%d:in port%d",
Oliver Neukum0de9a702007-03-16 20:28:28 +01001273 port0->open_ports, port->number);
1274 if (port0->open_ports == 0) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001275 if (serial->port[0]->interrupt_in_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301276 dbg("%s", "Shutdown interrupt_in_urb");
Oliver Neukum0de9a702007-03-16 20:28:28 +01001277 usb_kill_urb(serial->port[0]->interrupt_in_urb);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001278 }
1279 }
1280
1281 if (mos7840_port->write_urb) {
1282 /* if this urb had a transfer buffer already (old tx) free it */
Alan Cox880af9d2008-07-22 11:16:12 +01001283 if (mos7840_port->write_urb->transfer_buffer != NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001284 kfree(mos7840_port->write_urb->transfer_buffer);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001285 usb_free_urb(mos7840_port->write_urb);
1286 }
1287
1288 Data = 0x0;
1289 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1290
1291 Data = 0x00;
1292 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1293
1294 mos7840_port->open = 0;
1295
Tony Cook84fe6e72009-04-18 22:55:06 +09301296 dbg("%s", "Leaving ............");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001297}
1298
1299/************************************************************************
1300 *
1301 * mos7840_block_until_chase_response
1302 *
1303 * This function will block the close until one of the following:
1304 * 1. Response to our Chase comes from mos7840
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001305 * 2. A timeout of 10 seconds without activity has expired
Paul B Schroeder3f542972006-08-31 19:41:47 -05001306 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1307 *
1308 ************************************************************************/
1309
Alan Cox95da3102008-07-22 11:09:07 +01001310static void mos7840_block_until_chase_response(struct tty_struct *tty,
1311 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001312{
1313 int timeout = 1 * HZ;
1314 int wait = 10;
1315 int count;
1316
1317 while (1) {
Alan Cox95da3102008-07-22 11:09:07 +01001318 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001319
1320 /* Check for Buffer status */
Alan Cox880af9d2008-07-22 11:16:12 +01001321 if (count <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001322 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001323
1324 /* Block the thread for a while */
1325 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1326 timeout);
1327 /* No activity.. count down section */
1328 wait--;
1329 if (wait == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001330 dbg("%s - TIMEOUT", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001331 return;
1332 } else {
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001333 /* Reset timeout value back to seconds */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001334 wait = 10;
1335 }
1336 }
1337
1338}
1339
1340/*****************************************************************************
1341 * mos7840_break
1342 * this function sends a break to the port
1343 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001344static void mos7840_break(struct tty_struct *tty, int break_state)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001345{
Alan Cox95da3102008-07-22 11:09:07 +01001346 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001347 unsigned char data;
1348 struct usb_serial *serial;
1349 struct moschip_port *mos7840_port;
1350
Tony Cook84fe6e72009-04-18 22:55:06 +09301351 dbg("%s", "Entering ...........");
1352 dbg("mos7840_break: Start");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001353
Harvey Harrison441b62c2008-03-03 16:08:34 -08001354 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301355 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001356 return;
1357 }
1358
Harvey Harrison441b62c2008-03-03 16:08:34 -08001359 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001360 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301361 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001362 return;
1363 }
1364
1365 mos7840_port = mos7840_get_port_private(port);
1366
Alan Cox880af9d2008-07-22 11:16:12 +01001367 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001368 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001369
Alan Cox95da3102008-07-22 11:09:07 +01001370 if (serial->dev)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001371 /* flush and block until tx is empty */
Alan Cox95da3102008-07-22 11:09:07 +01001372 mos7840_block_until_chase_response(tty, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001373
Alan Cox95da3102008-07-22 11:09:07 +01001374 if (break_state == -1)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001375 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
Alan Cox95da3102008-07-22 11:09:07 +01001376 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001377 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001378
Alan Cox6b447f042009-01-02 13:48:56 +00001379 /* FIXME: no locking on shadowLCR anywhere in driver */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001380 mos7840_port->shadowLCR = data;
Tony Cook84fe6e72009-04-18 22:55:06 +09301381 dbg("mcs7840_break mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001382 mos7840_port->shadowLCR);
1383 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1384 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001385}
1386
1387/*****************************************************************************
1388 * mos7840_write_room
1389 * this function is called by the tty driver when it wants to know how many
1390 * bytes of data we can accept for a specific port.
1391 * If successful, we return the amount of room that we have for this port
1392 * Otherwise we return a negative error number.
1393 *****************************************************************************/
1394
Alan Cox95da3102008-07-22 11:09:07 +01001395static int mos7840_write_room(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001396{
Alan Cox95da3102008-07-22 11:09:07 +01001397 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001398 int i;
1399 int room = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001400 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001401 struct moschip_port *mos7840_port;
1402
Tony Cook84fe6e72009-04-18 22:55:06 +09301403 dbg("%s", " mos7840_write_room:entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001404
Harvey Harrison441b62c2008-03-03 16:08:34 -08001405 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301406 dbg("%s", "Invalid port");
1407 dbg("%s", " mos7840_write_room:leaving ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001408 return -1;
1409 }
1410
1411 mos7840_port = mos7840_get_port_private(port);
1412 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301413 dbg("%s", "mos7840_break:leaving ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001414 return -1;
1415 }
1416
Oliver Neukum0de9a702007-03-16 20:28:28 +01001417 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001418 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox880af9d2008-07-22 11:16:12 +01001419 if (!mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001420 room += URB_TRANSFER_BUFFER_SIZE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001421 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001422 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001423
Oliver Neukum0de9a702007-03-16 20:28:28 +01001424 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001425 dbg("%s - returns %d", __func__, room);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001426 return room;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001427
1428}
1429
1430/*****************************************************************************
1431 * mos7840_write
1432 * this function is called by the tty driver when data should be written to
1433 * the port.
1434 * If successful, we return the number of bytes written, otherwise we
1435 * return a negative error number.
1436 *****************************************************************************/
1437
Alan Cox95da3102008-07-22 11:09:07 +01001438static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001439 const unsigned char *data, int count)
1440{
1441 int status;
1442 int i;
1443 int bytes_sent = 0;
1444 int transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001445 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001446
1447 struct moschip_port *mos7840_port;
1448 struct usb_serial *serial;
1449 struct urb *urb;
Alan Cox880af9d2008-07-22 11:16:12 +01001450 /* __u16 Data; */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001451 const unsigned char *current_position = data;
1452 unsigned char *data1;
Tony Cook84fe6e72009-04-18 22:55:06 +09301453 dbg("%s", "entering ...........");
1454 /* dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Alan Cox880af9d2008-07-22 11:16:12 +01001455 mos7840_port->shadowLCR); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001456
1457#ifdef NOTMOS7840
1458 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001459 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1460 mos7840_port->shadowLCR = Data;
Tony Cook84fe6e72009-04-18 22:55:06 +09301461 dbg("mos7840_write: LINE_CONTROL_REGISTER is %x", Data);
1462 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001463 mos7840_port->shadowLCR);
1464
Alan Cox880af9d2008-07-22 11:16:12 +01001465 /* Data = 0x03; */
1466 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1467 /* mos7840_port->shadowLCR=Data;//Need to add later */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001468
Alan Cox880af9d2008-07-22 11:16:12 +01001469 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001470 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1471
Alan Cox880af9d2008-07-22 11:16:12 +01001472 /* Data = 0x0c; */
1473 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001474 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001475 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09301476 dbg("mos7840_write:DLL value is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001477
1478 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001479 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09301480 dbg("mos7840_write:DLM value is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001481
1482 Data = Data & ~SERIAL_LCR_DLAB;
Tony Cook84fe6e72009-04-18 22:55:06 +09301483 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001484 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001485 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1486#endif
1487
Harvey Harrison441b62c2008-03-03 16:08:34 -08001488 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301489 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001490 return -1;
1491 }
1492
1493 serial = port->serial;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001494 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301495 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001496 return -1;
1497 }
1498
1499 mos7840_port = mos7840_get_port_private(port);
1500 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301501 dbg("%s", "mos7840_port is NULL");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001502 return -1;
1503 }
1504
1505 /* try to find a free urb in the list */
1506 urb = NULL;
1507
Oliver Neukum0de9a702007-03-16 20:28:28 +01001508 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001509 for (i = 0; i < NUM_URBS; ++i) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001510 if (!mos7840_port->busy[i]) {
1511 mos7840_port->busy[i] = 1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001512 urb = mos7840_port->write_urb_pool[i];
Tony Cook84fe6e72009-04-18 22:55:06 +09301513 dbg("URB:%d", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001514 break;
1515 }
1516 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001517 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001518
1519 if (urb == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001520 dbg("%s - no more free urbs", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001521 goto exit;
1522 }
1523
1524 if (urb->transfer_buffer == NULL) {
1525 urb->transfer_buffer =
1526 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1527
1528 if (urb->transfer_buffer == NULL) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001529 dev_err_console(port, "%s no more kernel memory...\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001530 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001531 goto exit;
1532 }
1533 }
1534 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1535
Al Viro97c49652006-10-09 20:29:03 +01001536 memcpy(urb->transfer_buffer, current_position, transfer_size);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001537
1538 /* fill urb with data and submit */
Donald Lee093ea2d2012-03-14 15:26:33 +08001539 if ((serial->num_ports == 2)
1540 && ((((__u16)port->number -
1541 (__u16)(port->serial->minor)) % 2) != 0)) {
1542 usb_fill_bulk_urb(urb,
1543 serial->dev,
1544 usb_sndbulkpipe(serial->dev,
1545 (port->bulk_out_endpointAddress) + 2),
1546 urb->transfer_buffer,
1547 transfer_size,
1548 mos7840_bulk_out_data_callback, mos7840_port);
1549 } else {
1550 usb_fill_bulk_urb(urb,
1551 serial->dev,
1552 usb_sndbulkpipe(serial->dev,
1553 port->bulk_out_endpointAddress),
1554 urb->transfer_buffer,
1555 transfer_size,
1556 mos7840_bulk_out_data_callback, mos7840_port);
1557 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001558
1559 data1 = urb->transfer_buffer;
Tony Cook84fe6e72009-04-18 22:55:06 +09301560 dbg("bulkout endpoint is %d", port->bulk_out_endpointAddress);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001561
1562 /* send it down the pipe */
1563 status = usb_submit_urb(urb, GFP_ATOMIC);
1564
1565 if (status) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001566 mos7840_port->busy[i] = 0;
Johan Hovold22a416c2012-02-10 13:20:51 +01001567 dev_err_console(port, "%s - usb_submit_urb(write bulk) failed "
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001568 "with status = %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001569 bytes_sent = status;
1570 goto exit;
1571 }
1572 bytes_sent = transfer_size;
1573 mos7840_port->icount.tx += transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001574 smp_wmb();
Tony Cook84fe6e72009-04-18 22:55:06 +09301575 dbg("mos7840_port->icount.tx is %d:", mos7840_port->icount.tx);
Alan Cox95da3102008-07-22 11:09:07 +01001576exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -05001577 return bytes_sent;
1578
1579}
1580
1581/*****************************************************************************
1582 * mos7840_throttle
1583 * this function is called by the tty driver when it wants to stop the data
1584 * being read from the port.
1585 *****************************************************************************/
1586
Alan Cox95da3102008-07-22 11:09:07 +01001587static void mos7840_throttle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001588{
Alan Cox95da3102008-07-22 11:09:07 +01001589 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001590 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001591 int status;
1592
Harvey Harrison441b62c2008-03-03 16:08:34 -08001593 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301594 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001595 return;
1596 }
1597
Tony Cook84fe6e72009-04-18 22:55:06 +09301598 dbg("- port %d", port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001599
1600 mos7840_port = mos7840_get_port_private(port);
1601
1602 if (mos7840_port == NULL)
1603 return;
1604
1605 if (!mos7840_port->open) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301606 dbg("%s", "port not opened");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001607 return;
1608 }
1609
Tony Cook84fe6e72009-04-18 22:55:06 +09301610 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001611
Paul B Schroeder3f542972006-08-31 19:41:47 -05001612 /* if we are implementing XON/XOFF, send the stop character */
1613 if (I_IXOFF(tty)) {
1614 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001615 status = mos7840_write(tty, port, &stop_char, 1);
1616 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001617 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001618 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001619 /* if we are implementing RTS/CTS, toggle that line */
1620 if (tty->termios->c_cflag & CRTSCTS) {
1621 mos7840_port->shadowMCR &= ~MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001622 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001623 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001624 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001625 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001626 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001627}
1628
1629/*****************************************************************************
1630 * mos7840_unthrottle
Alan Cox880af9d2008-07-22 11:16:12 +01001631 * this function is called by the tty driver when it wants to resume
1632 * the data being read from the port (called after mos7840_throttle is
1633 * called)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001634 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001635static void mos7840_unthrottle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001636{
Alan Cox95da3102008-07-22 11:09:07 +01001637 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001638 int status;
1639 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1640
Harvey Harrison441b62c2008-03-03 16:08:34 -08001641 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301642 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001643 return;
1644 }
1645
1646 if (mos7840_port == NULL)
1647 return;
1648
1649 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001650 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001651 return;
1652 }
1653
Tony Cook84fe6e72009-04-18 22:55:06 +09301654 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001655
Paul B Schroeder3f542972006-08-31 19:41:47 -05001656 /* if we are implementing XON/XOFF, send the start character */
1657 if (I_IXOFF(tty)) {
1658 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001659 status = mos7840_write(tty, port, &start_char, 1);
1660 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001661 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001662 }
1663
1664 /* if we are implementing RTS/CTS, toggle that line */
1665 if (tty->termios->c_cflag & CRTSCTS) {
1666 mos7840_port->shadowMCR |= MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001667 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001668 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001669 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001670 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001671 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001672}
1673
Alan Cox60b33c12011-02-14 16:26:14 +00001674static int mos7840_tiocmget(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001675{
Alan Cox95da3102008-07-22 11:09:07 +01001676 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001677 struct moschip_port *mos7840_port;
1678 unsigned int result;
1679 __u16 msr;
1680 __u16 mcr;
Alan Cox880af9d2008-07-22 11:16:12 +01001681 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001682 mos7840_port = mos7840_get_port_private(port);
1683
Harvey Harrison441b62c2008-03-03 16:08:34 -08001684 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001685
1686 if (mos7840_port == NULL)
1687 return -ENODEV;
1688
1689 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
Johan Hovolda4f40862013-10-09 17:01:09 +02001690 if (status != 1)
1691 return -EIO;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001692 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
Johan Hovolda4f40862013-10-09 17:01:09 +02001693 if (status != 1)
1694 return -EIO;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001695 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1696 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1697 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1698 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1699 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1700 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1701 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1702
Harvey Harrison441b62c2008-03-03 16:08:34 -08001703 dbg("%s - 0x%04X", __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001704
1705 return result;
1706}
1707
Alan Cox20b9d172011-02-14 16:26:50 +00001708static int mos7840_tiocmset(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001709 unsigned int set, unsigned int clear)
1710{
Alan Cox95da3102008-07-22 11:09:07 +01001711 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001712 struct moschip_port *mos7840_port;
1713 unsigned int mcr;
Roel Kluin87521c42008-04-17 06:16:24 +02001714 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001715
Harvey Harrison441b62c2008-03-03 16:08:34 -08001716 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001717
1718 mos7840_port = mos7840_get_port_private(port);
1719
1720 if (mos7840_port == NULL)
1721 return -ENODEV;
1722
Alan Coxe2984492008-02-20 20:51:45 +00001723 /* FIXME: What locks the port registers ? */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001724 mcr = mos7840_port->shadowMCR;
1725 if (clear & TIOCM_RTS)
1726 mcr &= ~MCR_RTS;
1727 if (clear & TIOCM_DTR)
1728 mcr &= ~MCR_DTR;
1729 if (clear & TIOCM_LOOP)
1730 mcr &= ~MCR_LOOPBACK;
1731
1732 if (set & TIOCM_RTS)
1733 mcr |= MCR_RTS;
1734 if (set & TIOCM_DTR)
1735 mcr |= MCR_DTR;
1736 if (set & TIOCM_LOOP)
1737 mcr |= MCR_LOOPBACK;
1738
1739 mos7840_port->shadowMCR = mcr;
1740
Paul B Schroeder3f542972006-08-31 19:41:47 -05001741 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1742 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301743 dbg("setting MODEM_CONTROL_REGISTER Failed");
Roel Kluin87521c42008-04-17 06:16:24 +02001744 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001745 }
1746
1747 return 0;
1748}
1749
1750/*****************************************************************************
1751 * mos7840_calc_baud_rate_divisor
1752 * this function calculates the proper baud rate divisor for the specified
1753 * baud rate.
1754 *****************************************************************************/
1755static int mos7840_calc_baud_rate_divisor(int baudRate, int *divisor,
Alan Cox880af9d2008-07-22 11:16:12 +01001756 __u16 *clk_sel_val)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001757{
1758
Harvey Harrison441b62c2008-03-03 16:08:34 -08001759 dbg("%s - %d", __func__, baudRate);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001760
1761 if (baudRate <= 115200) {
1762 *divisor = 115200 / baudRate;
1763 *clk_sel_val = 0x0;
1764 }
1765 if ((baudRate > 115200) && (baudRate <= 230400)) {
1766 *divisor = 230400 / baudRate;
1767 *clk_sel_val = 0x10;
1768 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1769 *divisor = 403200 / baudRate;
1770 *clk_sel_val = 0x20;
1771 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1772 *divisor = 460800 / baudRate;
1773 *clk_sel_val = 0x30;
1774 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1775 *divisor = 806400 / baudRate;
1776 *clk_sel_val = 0x40;
1777 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1778 *divisor = 921600 / baudRate;
1779 *clk_sel_val = 0x50;
1780 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1781 *divisor = 1572864 / baudRate;
1782 *clk_sel_val = 0x60;
1783 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1784 *divisor = 3145728 / baudRate;
1785 *clk_sel_val = 0x70;
1786 }
1787 return 0;
1788
1789#ifdef NOTMCS7840
1790
1791 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1792 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1793 *divisor = mos7840_divisor_table[i].Divisor;
1794 return 0;
1795 }
1796 }
1797
1798 /* After trying for all the standard baud rates *
1799 * Try calculating the divisor for this baud rate */
1800
1801 if (baudrate > 75 && baudrate < 230400) {
1802 /* get the divisor */
1803 custom = (__u16) (230400L / baudrate);
1804
1805 /* Check for round off */
1806 round1 = (__u16) (2304000L / baudrate);
1807 round = (__u16) (round1 - (custom * 10));
Alan Cox880af9d2008-07-22 11:16:12 +01001808 if (round > 4)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001809 custom++;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001810 *divisor = custom;
1811
Tony Cook84fe6e72009-04-18 22:55:06 +09301812 dbg(" Baud %d = %d", baudrate, custom);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001813 return 0;
1814 }
1815
Tony Cook84fe6e72009-04-18 22:55:06 +09301816 dbg("%s", " Baud calculation Failed...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001817 return -1;
1818#endif
1819}
1820
1821/*****************************************************************************
1822 * mos7840_send_cmd_write_baud_rate
1823 * this function sends the proper command to change the baud rate of the
1824 * specified port.
1825 *****************************************************************************/
1826
1827static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1828 int baudRate)
1829{
1830 int divisor = 0;
1831 int status;
1832 __u16 Data;
1833 unsigned char number;
1834 __u16 clk_sel_val;
1835 struct usb_serial_port *port;
1836
1837 if (mos7840_port == NULL)
1838 return -1;
1839
1840 port = (struct usb_serial_port *)mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001841 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301842 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001843 return -1;
1844 }
1845
Harvey Harrison441b62c2008-03-03 16:08:34 -08001846 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301847 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001848 return -1;
1849 }
1850
Tony Cook84fe6e72009-04-18 22:55:06 +09301851 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001852
1853 number = mos7840_port->port->number - mos7840_port->port->serial->minor;
1854
Harvey Harrison441b62c2008-03-03 16:08:34 -08001855 dbg("%s - port = %d, baud = %d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001856 mos7840_port->port->number, baudRate);
Alan Cox880af9d2008-07-22 11:16:12 +01001857 /* reset clk_uart_sel in spregOffset */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001858 if (baudRate > 115200) {
1859#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001860 /* NOTE: need to see the pther register to modify */
1861 /* setting h/w flow control bit to 1 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001862 Data = 0x2b;
1863 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001864 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1865 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001866 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301867 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001868 return -1;
1869 }
1870#endif
1871
1872 } else {
1873#ifdef HW_flow_control
Donald Lee093ea2d2012-03-14 15:26:33 +08001874 /* setting h/w flow control bit to 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001875 Data = 0xb;
1876 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001877 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1878 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001879 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301880 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001881 return -1;
1882 }
1883#endif
1884
1885 }
1886
Alan Cox880af9d2008-07-22 11:16:12 +01001887 if (1) { /* baudRate <= 115200) */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001888 clk_sel_val = 0x0;
1889 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001890 status = mos7840_calc_baud_rate_divisor(baudRate, &divisor,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001891 &clk_sel_val);
Alan Cox880af9d2008-07-22 11:16:12 +01001892 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1893 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001894 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301895 dbg("reading spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001896 return -1;
1897 }
1898 Data = (Data & 0x8f) | clk_sel_val;
Alan Cox880af9d2008-07-22 11:16:12 +01001899 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1900 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001901 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301902 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001903 return -1;
1904 }
1905 /* Calculate the Divisor */
1906
1907 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001908 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001909 return status;
1910 }
1911 /* Enable access to divisor latch */
1912 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1913 mos7840_port->shadowLCR = Data;
1914 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1915
1916 /* Write the divisor */
1917 Data = (unsigned char)(divisor & 0xff);
Tony Cook84fe6e72009-04-18 22:55:06 +09301918 dbg("set_serial_baud Value to write DLL is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001919 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1920
1921 Data = (unsigned char)((divisor & 0xff00) >> 8);
Tony Cook84fe6e72009-04-18 22:55:06 +09301922 dbg("set_serial_baud Value to write DLM is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001923 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1924
1925 /* Disable access to divisor latch */
1926 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1927 mos7840_port->shadowLCR = Data;
1928 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1929
1930 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001931 return status;
1932}
1933
1934/*****************************************************************************
1935 * mos7840_change_port_settings
1936 * This routine is called to set the UART on the device to match
1937 * the specified new settings.
1938 *****************************************************************************/
1939
Alan Cox95da3102008-07-22 11:09:07 +01001940static void mos7840_change_port_settings(struct tty_struct *tty,
1941 struct moschip_port *mos7840_port, struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001942{
Paul B Schroeder3f542972006-08-31 19:41:47 -05001943 int baud;
1944 unsigned cflag;
1945 unsigned iflag;
1946 __u8 lData;
1947 __u8 lParity;
1948 __u8 lStop;
1949 int status;
1950 __u16 Data;
1951 struct usb_serial_port *port;
1952 struct usb_serial *serial;
1953
1954 if (mos7840_port == NULL)
1955 return;
1956
1957 port = (struct usb_serial_port *)mos7840_port->port;
1958
Harvey Harrison441b62c2008-03-03 16:08:34 -08001959 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301960 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001961 return;
1962 }
1963
Harvey Harrison441b62c2008-03-03 16:08:34 -08001964 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301965 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001966 return;
1967 }
1968
1969 serial = port->serial;
1970
Harvey Harrison441b62c2008-03-03 16:08:34 -08001971 dbg("%s - port %d", __func__, mos7840_port->port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001972
1973 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001974 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001975 return;
1976 }
1977
Tony Cook84fe6e72009-04-18 22:55:06 +09301978 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001979
1980 lData = LCR_BITS_8;
1981 lStop = LCR_STOP_1;
1982 lParity = LCR_PAR_NONE;
1983
1984 cflag = tty->termios->c_cflag;
1985 iflag = tty->termios->c_iflag;
1986
1987 /* Change the number of bits */
Colin Leitner7069fd02013-11-08 22:52:34 +01001988 switch (cflag & CSIZE) {
1989 case CS5:
1990 lData = LCR_BITS_5;
1991 break;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001992
Colin Leitner7069fd02013-11-08 22:52:34 +01001993 case CS6:
1994 lData = LCR_BITS_6;
1995 break;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001996
Colin Leitner7069fd02013-11-08 22:52:34 +01001997 case CS7:
1998 lData = LCR_BITS_7;
1999 break;
2000
2001 default:
2002 case CS8:
2003 lData = LCR_BITS_8;
2004 break;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002005 }
Colin Leitner7069fd02013-11-08 22:52:34 +01002006
Paul B Schroeder3f542972006-08-31 19:41:47 -05002007 /* Change the Parity bit */
2008 if (cflag & PARENB) {
2009 if (cflag & PARODD) {
2010 lParity = LCR_PAR_ODD;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002011 dbg("%s - parity = odd", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002012 } else {
2013 lParity = LCR_PAR_EVEN;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002014 dbg("%s - parity = even", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002015 }
2016
2017 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002018 dbg("%s - parity = none", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002019 }
2020
Alan Cox880af9d2008-07-22 11:16:12 +01002021 if (cflag & CMSPAR)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002022 lParity = lParity | 0x20;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002023
2024 /* Change the Stop bit */
2025 if (cflag & CSTOPB) {
2026 lStop = LCR_STOP_2;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002027 dbg("%s - stop bits = 2", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002028 } else {
2029 lStop = LCR_STOP_1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08002030 dbg("%s - stop bits = 1", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002031 }
2032
2033 /* Update the LCR with the correct value */
2034 mos7840_port->shadowLCR &=
2035 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
2036 mos7840_port->shadowLCR |= (lData | lParity | lStop);
2037
Tony Cook84fe6e72009-04-18 22:55:06 +09302038 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002039 mos7840_port->shadowLCR);
2040 /* Disable Interrupts */
2041 Data = 0x00;
2042 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2043
2044 Data = 0x00;
2045 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2046
2047 Data = 0xcf;
2048 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2049
2050 /* Send the updated LCR value to the mos7840 */
2051 Data = mos7840_port->shadowLCR;
2052
2053 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
2054
2055 Data = 0x00b;
2056 mos7840_port->shadowMCR = Data;
2057 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2058 Data = 0x00b;
2059 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2060
2061 /* set up the MCR register and send it to the mos7840 */
2062
2063 mos7840_port->shadowMCR = MCR_MASTER_IE;
Alan Cox880af9d2008-07-22 11:16:12 +01002064 if (cflag & CBAUD)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002065 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002066
Alan Cox880af9d2008-07-22 11:16:12 +01002067 if (cflag & CRTSCTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002068 mos7840_port->shadowMCR |= (MCR_XON_ANY);
Alan Cox880af9d2008-07-22 11:16:12 +01002069 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05002070 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002071
2072 Data = mos7840_port->shadowMCR;
2073 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2074
2075 /* Determine divisor based on baud rate */
2076 baud = tty_get_baud_rate(tty);
2077
2078 if (!baud) {
2079 /* pick a default, any default... */
Tony Cook84fe6e72009-04-18 22:55:06 +09302080 dbg("%s", "Picked default baud...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002081 baud = 9600;
2082 }
2083
Harvey Harrison441b62c2008-03-03 16:08:34 -08002084 dbg("%s - baud rate = %d", __func__, baud);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002085 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
2086
2087 /* Enable Interrupts */
2088 Data = 0x0c;
2089 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2090
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002091 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002092 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002093 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002094 if (status) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002095 dbg("usb_submit_urb(read bulk) failed, status = %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002096 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002097 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002098 }
2099 }
Tony Cook84fe6e72009-04-18 22:55:06 +09302100 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002101 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002102}
2103
2104/*****************************************************************************
2105 * mos7840_set_termios
2106 * this function is called by the tty driver when it wants to change
2107 * the termios structure
2108 *****************************************************************************/
2109
Alan Cox95da3102008-07-22 11:09:07 +01002110static void mos7840_set_termios(struct tty_struct *tty,
2111 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -08002112 struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002113{
2114 int status;
2115 unsigned int cflag;
2116 struct usb_serial *serial;
2117 struct moschip_port *mos7840_port;
Tony Cook84fe6e72009-04-18 22:55:06 +09302118 dbg("mos7840_set_termios: START");
Harvey Harrison441b62c2008-03-03 16:08:34 -08002119 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302120 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002121 return;
2122 }
2123
2124 serial = port->serial;
2125
Harvey Harrison441b62c2008-03-03 16:08:34 -08002126 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302127 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002128 return;
2129 }
2130
2131 mos7840_port = mos7840_get_port_private(port);
2132
2133 if (mos7840_port == NULL)
2134 return;
2135
Paul B Schroeder3f542972006-08-31 19:41:47 -05002136 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002137 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002138 return;
2139 }
2140
Tony Cook84fe6e72009-04-18 22:55:06 +09302141 dbg("%s", "setting termios - ");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002142
2143 cflag = tty->termios->c_cflag;
2144
Harvey Harrison441b62c2008-03-03 16:08:34 -08002145 dbg("%s - clfag %08x iflag %08x", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002146 tty->termios->c_cflag, RELEVANT_IFLAG(tty->termios->c_iflag));
Harvey Harrison441b62c2008-03-03 16:08:34 -08002147 dbg("%s - old clfag %08x old iflag %08x", __func__,
Alan Cox3d3ddce2007-10-15 20:53:35 +01002148 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
Harvey Harrison441b62c2008-03-03 16:08:34 -08002149 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002150
2151 /* change the port settings to the new ones specified */
2152
Alan Cox95da3102008-07-22 11:09:07 +01002153 mos7840_change_port_settings(tty, mos7840_port, old_termios);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002154
2155 if (!mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302156 dbg("%s", "URB KILLED !!!!!");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002157 return;
2158 }
2159
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002160 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002161 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002162 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2163 if (status) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002164 dbg("usb_submit_urb(read bulk) failed, status = %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002165 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002166 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002167 }
2168 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002169}
2170
2171/*****************************************************************************
2172 * mos7840_get_lsr_info - get line status register info
2173 *
2174 * Purpose: Let user call ioctl() to get info when the UART physically
2175 * is emptied. On bus types like RS485, the transmitter must
2176 * release the bus after transmitting. This must be done when
2177 * the transmit shift register is empty, not be done when the
2178 * transmit holding register is empty. This functionality
2179 * allows an RS485 driver to be written in user space.
2180 *****************************************************************************/
2181
Alan Cox95da3102008-07-22 11:09:07 +01002182static int mos7840_get_lsr_info(struct tty_struct *tty,
Al Viro97c49652006-10-09 20:29:03 +01002183 unsigned int __user *value)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002184{
2185 int count;
2186 unsigned int result = 0;
2187
Alan Cox95da3102008-07-22 11:09:07 +01002188 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002189 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002190 dbg("%s -- Empty", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002191 result = TIOCSER_TEMT;
2192 }
2193
2194 if (copy_to_user(value, &result, sizeof(int)))
2195 return -EFAULT;
2196 return 0;
2197}
2198
2199/*****************************************************************************
Paul B Schroeder3f542972006-08-31 19:41:47 -05002200 * mos7840_get_serial_info
2201 * function to get information about serial port
2202 *****************************************************************************/
2203
2204static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
Al Viro97c49652006-10-09 20:29:03 +01002205 struct serial_struct __user *retinfo)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002206{
2207 struct serial_struct tmp;
2208
2209 if (mos7840_port == NULL)
2210 return -1;
2211
2212 if (!retinfo)
2213 return -EFAULT;
2214
2215 memset(&tmp, 0, sizeof(tmp));
2216
2217 tmp.type = PORT_16550A;
2218 tmp.line = mos7840_port->port->serial->minor;
2219 tmp.port = mos7840_port->port->number;
2220 tmp.irq = 0;
2221 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2222 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2223 tmp.baud_base = 9600;
2224 tmp.close_delay = 5 * HZ;
2225 tmp.closing_wait = 30 * HZ;
2226
2227 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2228 return -EFAULT;
2229 return 0;
2230}
2231
Alan Cox0bca1b92010-09-16 18:21:40 +01002232static int mos7840_get_icount(struct tty_struct *tty,
2233 struct serial_icounter_struct *icount)
2234{
2235 struct usb_serial_port *port = tty->driver_data;
2236 struct moschip_port *mos7840_port;
2237 struct async_icount cnow;
2238
2239 mos7840_port = mos7840_get_port_private(port);
2240 cnow = mos7840_port->icount;
2241
2242 smp_rmb();
2243 icount->cts = cnow.cts;
2244 icount->dsr = cnow.dsr;
2245 icount->rng = cnow.rng;
2246 icount->dcd = cnow.dcd;
2247 icount->rx = cnow.rx;
2248 icount->tx = cnow.tx;
2249 icount->frame = cnow.frame;
2250 icount->overrun = cnow.overrun;
2251 icount->parity = cnow.parity;
2252 icount->brk = cnow.brk;
2253 icount->buf_overrun = cnow.buf_overrun;
2254
2255 dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
2256 port->number, icount->rx, icount->tx);
2257 return 0;
2258}
2259
Paul B Schroeder3f542972006-08-31 19:41:47 -05002260/*****************************************************************************
2261 * SerialIoctl
2262 * this function handles any ioctl calls to the driver
2263 *****************************************************************************/
2264
Alan Cox00a0d0d2011-02-14 16:27:06 +00002265static int mos7840_ioctl(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002266 unsigned int cmd, unsigned long arg)
2267{
Alan Cox95da3102008-07-22 11:09:07 +01002268 struct usb_serial_port *port = tty->driver_data;
Al Viro97c49652006-10-09 20:29:03 +01002269 void __user *argp = (void __user *)arg;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002270 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002271
2272 struct async_icount cnow;
2273 struct async_icount cprev;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002274
Harvey Harrison441b62c2008-03-03 16:08:34 -08002275 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302276 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002277 return -1;
2278 }
2279
2280 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002281
2282 if (mos7840_port == NULL)
2283 return -1;
2284
Harvey Harrison441b62c2008-03-03 16:08:34 -08002285 dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002286
2287 switch (cmd) {
2288 /* return number of bytes available */
2289
Paul B Schroeder3f542972006-08-31 19:41:47 -05002290 case TIOCSERGETLSR:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002291 dbg("%s (%d) TIOCSERGETLSR", __func__, port->number);
Alan Cox95da3102008-07-22 11:09:07 +01002292 return mos7840_get_lsr_info(tty, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002293
Paul B Schroeder3f542972006-08-31 19:41:47 -05002294 case TIOCGSERIAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002295 dbg("%s (%d) TIOCGSERIAL", __func__, port->number);
Al Viro97c49652006-10-09 20:29:03 +01002296 return mos7840_get_serial_info(mos7840_port, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002297
2298 case TIOCSSERIAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002299 dbg("%s (%d) TIOCSSERIAL", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002300 break;
2301
2302 case TIOCMIWAIT:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002303 dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002304 cprev = mos7840_port->icount;
2305 while (1) {
Alan Cox880af9d2008-07-22 11:16:12 +01002306 /* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002307 mos7840_port->delta_msr_cond = 0;
Johan Hovoldced638a2013-03-19 09:21:20 +01002308 wait_event_interruptible(port->delta_msr_wait,
2309 (port->serial->disconnected ||
2310 mos7840_port->
Paul B Schroeder3f542972006-08-31 19:41:47 -05002311 delta_msr_cond == 1));
2312
2313 /* see if a signal did it */
2314 if (signal_pending(current))
2315 return -ERESTARTSYS;
Johan Hovoldced638a2013-03-19 09:21:20 +01002316
2317 if (port->serial->disconnected)
2318 return -EIO;
2319
Paul B Schroeder3f542972006-08-31 19:41:47 -05002320 cnow = mos7840_port->icount;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002321 smp_rmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -05002322 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2323 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2324 return -EIO; /* no change => error */
2325 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2326 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2327 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2328 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2329 return 0;
2330 }
2331 cprev = cnow;
2332 }
2333 /* NOTREACHED */
2334 break;
2335
Paul B Schroeder3f542972006-08-31 19:41:47 -05002336 default:
2337 break;
2338 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002339 return -ENOIOCTLCMD;
2340}
2341
2342static int mos7840_calc_num_ports(struct usb_serial *serial)
2343{
Donald Lee093ea2d2012-03-14 15:26:33 +08002344 __u16 Data = 0x00;
2345 int ret = 0;
2346 int mos7840_num_ports;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002347
Donald Lee093ea2d2012-03-14 15:26:33 +08002348 ret = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
2349 MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, &Data,
2350 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2351
2352 if ((Data & 0x01) == 0) {
2353 mos7840_num_ports = 2;
2354 serial->num_bulk_in = 2;
2355 serial->num_bulk_out = 2;
2356 serial->num_ports = 2;
2357 } else {
2358 mos7840_num_ports = 4;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002359 serial->num_bulk_in = 4;
2360 serial->num_bulk_out = 4;
Donald Lee093ea2d2012-03-14 15:26:33 +08002361 serial->num_ports = 4;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002362 }
Donald Lee093ea2d2012-03-14 15:26:33 +08002363
Paul B Schroeder3f542972006-08-31 19:41:47 -05002364 return mos7840_num_ports;
2365}
2366
2367/****************************************************************************
2368 * mos7840_startup
2369 ****************************************************************************/
2370
2371static int mos7840_startup(struct usb_serial *serial)
2372{
2373 struct moschip_port *mos7840_port;
2374 struct usb_device *dev;
2375 int i, status;
2376
2377 __u16 Data;
Tony Cook84fe6e72009-04-18 22:55:06 +09302378 dbg("%s", "mos7840_startup :Entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002379
2380 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302381 dbg("%s", "Invalid Handler");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002382 return -1;
2383 }
2384
2385 dev = serial->dev;
2386
Tony Cook84fe6e72009-04-18 22:55:06 +09302387 dbg("%s", "Entering...");
2388 dbg ("mos7840_startup: serial = %p", serial);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002389
2390 /* we set up the pointers to the endpoints in the mos7840_open *
2391 * function, as the structures aren't created yet. */
2392
2393 /* set up port private structures */
2394 for (i = 0; i < serial->num_ports; ++i) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302395 dbg ("mos7840_startup: configuring port %d............", i);
Burman Yan7ac9da12006-11-22 20:54:38 +02002396 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002397 if (mos7840_port == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002398 dev_err(&dev->dev, "%s - Out of memory\n", __func__);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002399 status = -ENOMEM;
2400 i--; /* don't follow NULL pointer cleaning up */
2401 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002402 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002403
Alan Cox880af9d2008-07-22 11:16:12 +01002404 /* Initialize all port interrupt end point to port 0 int
2405 * endpoint. Our device has only one interrupt end point
2406 * common to all port */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002407
2408 mos7840_port->port = serial->port[i];
2409 mos7840_set_port_private(serial->port[i], mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002410 spin_lock_init(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002411
Tony Cook37768ad2009-04-18 22:42:18 +09302412 /* minor is not initialised until later by
2413 * usb-serial.c:get_free_serial() and cannot therefore be used
2414 * to index device instances */
2415 mos7840_port->port_num = i + 1;
2416 dbg ("serial->port[i]->number = %d", serial->port[i]->number);
2417 dbg ("serial->port[i]->serial->minor = %d", serial->port[i]->serial->minor);
2418 dbg ("mos7840_port->port_num = %d", mos7840_port->port_num);
2419 dbg ("serial->minor = %d", serial->minor);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002420
2421 if (mos7840_port->port_num == 1) {
2422 mos7840_port->SpRegOffset = 0x0;
2423 mos7840_port->ControlRegOffset = 0x1;
2424 mos7840_port->DcrRegOffset = 0x4;
2425 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002426 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002427 mos7840_port->SpRegOffset = 0x8;
2428 mos7840_port->ControlRegOffset = 0x9;
2429 mos7840_port->DcrRegOffset = 0x16;
2430 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002431 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002432 mos7840_port->SpRegOffset = 0xa;
2433 mos7840_port->ControlRegOffset = 0xb;
2434 mos7840_port->DcrRegOffset = 0x19;
2435 } else if ((mos7840_port->port_num == 3)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002436 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002437 mos7840_port->SpRegOffset = 0xa;
2438 mos7840_port->ControlRegOffset = 0xb;
2439 mos7840_port->DcrRegOffset = 0x19;
2440 } else if ((mos7840_port->port_num == 4)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002441 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002442 mos7840_port->SpRegOffset = 0xc;
2443 mos7840_port->ControlRegOffset = 0xd;
2444 mos7840_port->DcrRegOffset = 0x1c;
2445 }
2446 mos7840_dump_serial_port(mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002447 mos7840_set_port_private(serial->port[i], mos7840_port);
2448
Alan Cox880af9d2008-07-22 11:16:12 +01002449 /* enable rx_disable bit in control register */
2450 status = mos7840_get_reg_sync(serial->port[i],
2451 mos7840_port->ControlRegOffset, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002452 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302453 dbg("Reading ControlReg failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002454 break;
2455 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302456 dbg("ControlReg Reading success val is %x, status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002457 Data, status);
Alan Cox880af9d2008-07-22 11:16:12 +01002458 Data |= 0x08; /* setting driver done bit */
2459 Data |= 0x04; /* sp1_bit to have cts change reflect in
2460 modem status reg */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002461
Alan Cox880af9d2008-07-22 11:16:12 +01002462 /* Data |= 0x20; //rx_disable bit */
2463 status = mos7840_set_reg_sync(serial->port[i],
Paul B Schroeder3f542972006-08-31 19:41:47 -05002464 mos7840_port->ControlRegOffset, Data);
2465 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302466 dbg("Writing ControlReg failed(rx_disable) status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002467 break;
2468 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302469 dbg("ControlReg Writing success(rx_disable) status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002470 status);
2471
Alan Cox880af9d2008-07-22 11:16:12 +01002472 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2473 and 0x24 in DCR3 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002474 Data = 0x01;
Alan Cox880af9d2008-07-22 11:16:12 +01002475 status = mos7840_set_reg_sync(serial->port[i],
2476 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002477 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302478 dbg("Writing DCR0 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002479 break;
2480 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302481 dbg("DCR0 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002482
2483 Data = 0x05;
Alan Cox880af9d2008-07-22 11:16:12 +01002484 status = mos7840_set_reg_sync(serial->port[i],
2485 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002486 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302487 dbg("Writing DCR1 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002488 break;
2489 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302490 dbg("DCR1 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002491
2492 Data = 0x24;
Alan Cox880af9d2008-07-22 11:16:12 +01002493 status = mos7840_set_reg_sync(serial->port[i],
2494 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002495 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302496 dbg("Writing DCR2 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002497 break;
2498 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302499 dbg("DCR2 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002500
Alan Cox880af9d2008-07-22 11:16:12 +01002501 /* write values in clkstart0x0 and clkmulti 0x20 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002502 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01002503 status = mos7840_set_reg_sync(serial->port[i],
Paul B Schroeder3f542972006-08-31 19:41:47 -05002504 CLK_START_VALUE_REGISTER, Data);
2505 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302506 dbg("Writing CLK_START_VALUE_REGISTER failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002507 break;
2508 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302509 dbg("CLK_START_VALUE_REGISTER Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002510
2511 Data = 0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01002512 status = mos7840_set_reg_sync(serial->port[i],
2513 CLK_MULTI_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002514 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302515 dbg("Writing CLK_MULTI_REGISTER failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002516 status);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002517 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002518 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302519 dbg("CLK_MULTI_REGISTER Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002520 status);
2521
Alan Cox880af9d2008-07-22 11:16:12 +01002522 /* write value 0x0 to scratchpad register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002523 Data = 0x00;
Alan Cox880af9d2008-07-22 11:16:12 +01002524 status = mos7840_set_uart_reg(serial->port[i],
2525 SCRATCH_PAD_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002526 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302527 dbg("Writing SCRATCH_PAD_REGISTER failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002528 status);
2529 break;
2530 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302531 dbg("SCRATCH_PAD_REGISTER Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002532 status);
2533
Alan Cox880af9d2008-07-22 11:16:12 +01002534 /* Zero Length flag register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002535 if ((mos7840_port->port_num != 1)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002536 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002537
2538 Data = 0xff;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002539 status = mos7840_set_reg_sync(serial->port[i],
Alan Cox880af9d2008-07-22 11:16:12 +01002540 (__u16) (ZLP_REG1 +
2541 ((__u16)mos7840_port->port_num)), Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09302542 dbg("ZLIP offset %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002543 (__u16) (ZLP_REG1 +
Alan Cox880af9d2008-07-22 11:16:12 +01002544 ((__u16) mos7840_port->port_num)));
Paul B Schroeder3f542972006-08-31 19:41:47 -05002545 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302546 dbg("Writing ZLP_REG%d failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002547 i + 2, status);
2548 break;
2549 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302550 dbg("ZLP_REG%d Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002551 i + 2, status);
2552 } else {
2553 Data = 0xff;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002554 status = mos7840_set_reg_sync(serial->port[i],
Alan Cox880af9d2008-07-22 11:16:12 +01002555 (__u16) (ZLP_REG1 +
2556 ((__u16)mos7840_port->port_num) - 0x1), Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09302557 dbg("ZLIP offset %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002558 (__u16) (ZLP_REG1 +
2559 ((__u16) mos7840_port->port_num) - 0x1));
2560 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302561 dbg("Writing ZLP_REG%d failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002562 i + 1, status);
2563 break;
2564 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302565 dbg("ZLP_REG%d Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002566 i + 1, status);
2567
2568 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01002569 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002570 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
Alan Cox880af9d2008-07-22 11:16:12 +01002571 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2572 GFP_KERNEL);
2573 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2574 !mos7840_port->dr) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002575 status = -ENOMEM;
2576 goto error;
2577 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002578 }
Tony Cook84fe6e72009-04-18 22:55:06 +09302579 dbg ("mos7840_startup: all ports configured...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002580
Alan Cox880af9d2008-07-22 11:16:12 +01002581 /* Zero Length flag enable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002582 Data = 0x0f;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002583 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2584 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302585 dbg("Writing ZLP_REG5 failed status-0x%x", status);
Roel Kluin7ced46c2007-10-27 03:36:37 +02002586 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002587 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302588 dbg("ZLP_REG5 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002589
2590 /* setting configuration feature to one */
2591 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
Al Viro97c49652006-10-09 20:29:03 +01002592 (__u8) 0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5 * HZ);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002593 return 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002594error:
2595 for (/* nothing */; i >= 0; i--) {
2596 mos7840_port = mos7840_get_port_private(serial->port[i]);
2597
2598 kfree(mos7840_port->dr);
2599 kfree(mos7840_port->ctrl_buf);
2600 usb_free_urb(mos7840_port->control_urb);
2601 kfree(mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002602 }
2603 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002604}
2605
2606/****************************************************************************
Alan Sternf9c99bb2009-06-02 11:53:55 -04002607 * mos7840_disconnect
Paul B Schroeder3f542972006-08-31 19:41:47 -05002608 * This function is called whenever the device is removed from the usb bus.
2609 ****************************************************************************/
2610
Alan Sternf9c99bb2009-06-02 11:53:55 -04002611static void mos7840_disconnect(struct usb_serial *serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002612{
2613 int i;
2614 struct moschip_port *mos7840_port;
Alan Sternf9c99bb2009-06-02 11:53:55 -04002615 dbg("%s", " disconnect :entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002616
2617 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302618 dbg("%s", "Invalid Handler");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002619 return;
2620 }
2621
Alan Cox880af9d2008-07-22 11:16:12 +01002622 /* check for the ports to be closed,close the ports and disconnect */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002623
2624 /* free private structure allocated for serial port *
2625 * stop reads and writes on all ports */
2626
2627 for (i = 0; i < serial->num_ports; ++i) {
2628 mos7840_port = mos7840_get_port_private(serial->port[i]);
Tony Cook37768ad2009-04-18 22:42:18 +09302629 dbg ("mos7840_port %d = %p", i, mos7840_port);
2630 if (mos7840_port) {
Tony Cook37768ad2009-04-18 22:42:18 +09302631 usb_kill_urb(mos7840_port->control_urb);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002632 }
2633 }
2634
2635 dbg("%s", "Thank u :: ");
2636
2637}
2638
2639/****************************************************************************
2640 * mos7840_release
2641 * This function is called when the usb_serial structure is freed.
2642 ****************************************************************************/
2643
2644static void mos7840_release(struct usb_serial *serial)
2645{
2646 int i;
2647 struct moschip_port *mos7840_port;
2648 dbg("%s", " release :entering..........");
2649
2650 if (!serial) {
2651 dbg("%s", "Invalid Handler");
2652 return;
2653 }
2654
2655 /* check for the ports to be closed,close the ports and disconnect */
2656
2657 /* free private structure allocated for serial port *
2658 * stop reads and writes on all ports */
2659
2660 for (i = 0; i < serial->num_ports; ++i) {
2661 mos7840_port = mos7840_get_port_private(serial->port[i]);
2662 dbg("mos7840_port %d = %p", i, mos7840_port);
2663 if (mos7840_port) {
Johan Hovoldb296aac2012-10-25 13:35:09 +02002664 usb_free_urb(mos7840_port->control_urb);
Tony Cook37768ad2009-04-18 22:42:18 +09302665 kfree(mos7840_port->ctrl_buf);
2666 kfree(mos7840_port->dr);
2667 kfree(mos7840_port);
2668 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002669 }
2670
Tony Cook84fe6e72009-04-18 22:55:06 +09302671 dbg("%s", "Thank u :: ");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002672
2673}
2674
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002675static struct usb_driver io_driver = {
2676 .name = "mos7840",
2677 .probe = usb_serial_probe,
2678 .disconnect = usb_serial_disconnect,
2679 .id_table = moschip_id_table_combined,
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002680};
2681
Paul B Schroeder3f542972006-08-31 19:41:47 -05002682static struct usb_serial_driver moschip7840_4port_device = {
2683 .driver = {
2684 .owner = THIS_MODULE,
2685 .name = "mos7840",
2686 },
2687 .description = DRIVER_DESC,
2688 .id_table = moschip_port_id_table,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002689 .num_ports = 4,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002690 .open = mos7840_open,
2691 .close = mos7840_close,
2692 .write = mos7840_write,
2693 .write_room = mos7840_write_room,
2694 .chars_in_buffer = mos7840_chars_in_buffer,
2695 .throttle = mos7840_throttle,
2696 .unthrottle = mos7840_unthrottle,
2697 .calc_num_ports = mos7840_calc_num_ports,
2698#ifdef MCSSerialProbe
2699 .probe = mos7840_serial_probe,
2700#endif
2701 .ioctl = mos7840_ioctl,
2702 .set_termios = mos7840_set_termios,
2703 .break_ctl = mos7840_break,
2704 .tiocmget = mos7840_tiocmget,
2705 .tiocmset = mos7840_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +01002706 .get_icount = mos7840_get_icount,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002707 .attach = mos7840_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -04002708 .disconnect = mos7840_disconnect,
2709 .release = mos7840_release,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002710 .read_bulk_callback = mos7840_bulk_in_callback,
2711 .read_int_callback = mos7840_interrupt_callback,
2712};
2713
Alan Stern4d2a7af2012-02-23 14:57:09 -05002714static struct usb_serial_driver * const serial_drivers[] = {
2715 &moschip7840_4port_device, NULL
2716};
2717
Greg Kroah-Hartmane7414d92012-02-28 13:12:10 -08002718module_usb_serial_driver(io_driver, serial_drivers);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002719
Paul B Schroeder3f542972006-08-31 19:41:47 -05002720MODULE_DESCRIPTION(DRIVER_DESC);
2721MODULE_LICENSE("GPL");
2722
2723module_param(debug, bool, S_IRUGO | S_IWUSR);
2724MODULE_PARM_DESC(debug, "Debug enabled or not");