blob: 585b7e6637405981e5019790bbdb0700109f87d0 [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 */
122#define USB_VENDOR_ID_BANDB 0x0856
Cliff Brakeacf509a2009-12-01 09:53:43 -0500123#define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
124#define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
125#define BANDB_DEVICE_ID_US9ML2_2 0xAC29
126#define BANDB_DEVICE_ID_US9ML2_4 0xAC30
127#define BANDB_DEVICE_ID_USPTL4_2 0xAC31
128#define BANDB_DEVICE_ID_USPTL4_4 0xAC32
Blaise Gassend27f12812009-12-18 15:23:38 -0800129#define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
130#define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
131#define BANDB_DEVICE_ID_USOPTL2_4 0xAC24
Paul B Schroeder3f542972006-08-31 19:41:47 -0500132
Russell Lang9d498be2009-07-17 19:29:20 +1000133/* This driver also supports
134 * ATEN UC2324 device using Moschip MCS7840
135 * ATEN UC2322 device using Moschip MCS7820
136 */
Tony Cooke9b8cff2009-04-18 22:42:18 +0930137#define USB_VENDOR_ID_ATENINTL 0x0557
138#define ATENINTL_DEVICE_ID_UC2324 0x2011
Russell Lang9d498be2009-07-17 19:29:20 +1000139#define ATENINTL_DEVICE_ID_UC2322 0x7820
Tony Cooke9b8cff2009-04-18 22:42:18 +0930140
David Ludlow11e1abb2008-02-25 17:30:52 -0500141/* Interrupt Routine Defines */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500142
143#define SERIAL_IIR_RLS 0x06
144#define SERIAL_IIR_MS 0x00
145
146/*
147 * Emulation of the bit mask on the LINE STATUS REGISTER.
148 */
149#define SERIAL_LSR_DR 0x0001
150#define SERIAL_LSR_OE 0x0002
151#define SERIAL_LSR_PE 0x0004
152#define SERIAL_LSR_FE 0x0008
153#define SERIAL_LSR_BI 0x0010
154
155#define MOS_MSR_DELTA_CTS 0x10
156#define MOS_MSR_DELTA_DSR 0x20
157#define MOS_MSR_DELTA_RI 0x40
158#define MOS_MSR_DELTA_CD 0x80
159
Alan Cox880af9d2008-07-22 11:16:12 +0100160/* Serial Port register Address */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500161#define INTERRUPT_ENABLE_REGISTER ((__u16)(0x01))
162#define FIFO_CONTROL_REGISTER ((__u16)(0x02))
163#define LINE_CONTROL_REGISTER ((__u16)(0x03))
164#define MODEM_CONTROL_REGISTER ((__u16)(0x04))
165#define LINE_STATUS_REGISTER ((__u16)(0x05))
166#define MODEM_STATUS_REGISTER ((__u16)(0x06))
167#define SCRATCH_PAD_REGISTER ((__u16)(0x07))
168#define DIVISOR_LATCH_LSB ((__u16)(0x00))
169#define DIVISOR_LATCH_MSB ((__u16)(0x01))
170
171#define CLK_MULTI_REGISTER ((__u16)(0x02))
172#define CLK_START_VALUE_REGISTER ((__u16)(0x03))
173
174#define SERIAL_LCR_DLAB ((__u16)(0x0080))
175
176/*
177 * URB POOL related defines
178 */
179#define NUM_URBS 16 /* URB Count */
180#define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
181
182
Németh Márton7d40d7e2010-01-10 15:34:24 +0100183static const struct usb_device_id moschip_port_id_table[] = {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500184 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
185 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500186 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
187 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
188 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
189 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
190 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
191 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500192 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500193 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800194 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930195 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000196 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500197 {} /* terminating entry */
198};
199
Németh Márton7d40d7e2010-01-10 15:34:24 +0100200static const struct usb_device_id moschip_id_table_combined[] __devinitconst = {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500201 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
202 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
207 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
208 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500209 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500210 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800211 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930212 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000213 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500214 {} /* terminating entry */
215};
216
217MODULE_DEVICE_TABLE(usb, moschip_id_table_combined);
218
219/* This structure holds all of the local port information */
220
221struct moschip_port {
222 int port_num; /*Actual port number in the device(1,2,etc) */
223 struct urb *write_urb; /* write URB for this port */
224 struct urb *read_urb; /* read URB for this port */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100225 struct urb *int_urb;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500226 __u8 shadowLCR; /* last LCR value received */
227 __u8 shadowMCR; /* last MCR value received */
228 char open;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100229 char open_ports;
230 char zombie;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500231 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
232 wait_queue_head_t delta_msr_wait; /* for handling sleeping while waiting for msr change to happen */
233 int delta_msr_cond;
234 struct async_icount icount;
235 struct usb_serial_port *port; /* loop back to the owner of this object */
236
Alan Cox880af9d2008-07-22 11:16:12 +0100237 /* Offsets */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500238 __u8 SpRegOffset;
239 __u8 ControlRegOffset;
240 __u8 DcrRegOffset;
Alan Cox880af9d2008-07-22 11:16:12 +0100241 /* for processing control URBS in interrupt context */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500242 struct urb *control_urb;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100243 struct usb_ctrlrequest *dr;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500244 char *ctrl_buf;
245 int MsrLsr;
246
Oliver Neukum0de9a702007-03-16 20:28:28 +0100247 spinlock_t pool_lock;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500248 struct urb *write_urb_pool[NUM_URBS];
Oliver Neukum0de9a702007-03-16 20:28:28 +0100249 char busy[NUM_URBS];
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800250 bool read_urb_busy;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500251};
252
253
254static int debug;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500255
256/*
257 * mos7840_set_reg_sync
258 * To set the Control register by calling usb_fill_control_urb function
259 * by passing usb_sndctrlpipe function as parameter.
260 */
261
262static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
263 __u16 val)
264{
265 struct usb_device *dev = port->serial->dev;
266 val = val & 0x00ff;
Tony Cook84fe6e72009-04-18 22:55:06 +0930267 dbg("mos7840_set_reg_sync offset is %x, value %x", reg, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500268
269 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
270 MCS_WR_RTYPE, val, reg, NULL, 0,
271 MOS_WDR_TIMEOUT);
272}
273
274/*
275 * mos7840_get_reg_sync
276 * To set the Uart register by calling usb_fill_control_urb function by
277 * passing usb_rcvctrlpipe function as parameter.
278 */
279
280static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100281 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500282{
283 struct usb_device *dev = port->serial->dev;
284 int ret = 0;
Johan Hovold9e221a32009-12-28 23:01:55 +0100285 u8 *buf;
286
287 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
288 if (!buf)
289 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500290
291 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100292 MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500293 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100294 *val = buf[0];
Tony Cook84fe6e72009-04-18 22:55:06 +0930295 dbg("mos7840_get_reg_sync offset is %x, return val %x", reg, *val);
Johan Hovold9e221a32009-12-28 23:01:55 +0100296
297 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500298 return ret;
299}
300
301/*
302 * mos7840_set_uart_reg
303 * To set the Uart register by calling usb_fill_control_urb function by
304 * passing usb_sndctrlpipe function as parameter.
305 */
306
307static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
308 __u16 val)
309{
310
311 struct usb_device *dev = port->serial->dev;
312 val = val & 0x00ff;
Alan Cox880af9d2008-07-22 11:16:12 +0100313 /* For the UART control registers, the application number need
314 to be Or'ed */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100315 if (port->serial->num_ports == 4) {
Alan Cox880af9d2008-07-22 11:16:12 +0100316 val |= (((__u16) port->number -
317 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930318 dbg("mos7840_set_uart_reg application number is %x", val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500319 } else {
320 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100321 val |= (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500322 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930323 dbg("mos7840_set_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500324 val);
325 } else {
326 val |=
327 (((__u16) port->number -
328 (__u16) (port->serial->minor)) + 2) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930329 dbg("mos7840_set_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500330 val);
331 }
332 }
333 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
334 MCS_WR_RTYPE, val, reg, NULL, 0,
335 MOS_WDR_TIMEOUT);
336
337}
338
339/*
340 * mos7840_get_uart_reg
341 * To set the Control register by calling usb_fill_control_urb function
342 * by passing usb_rcvctrlpipe function as parameter.
343 */
344static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100345 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500346{
347 struct usb_device *dev = port->serial->dev;
348 int ret = 0;
349 __u16 Wval;
Johan Hovold9e221a32009-12-28 23:01:55 +0100350 u8 *buf;
351
352 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
353 if (!buf)
354 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500355
Tony Cook84fe6e72009-04-18 22:55:06 +0930356 /* dbg("application number is %4x",
Alan Cox880af9d2008-07-22 11:16:12 +0100357 (((__u16)port->number - (__u16)(port->serial->minor))+1)<<8); */
358 /* Wval is same as application number */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100359 if (port->serial->num_ports == 4) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500360 Wval =
361 (((__u16) port->number - (__u16) (port->serial->minor)) +
362 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930363 dbg("mos7840_get_uart_reg application number is %x", Wval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500364 } else {
365 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100366 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500367 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930368 dbg("mos7840_get_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500369 Wval);
370 } else {
Alan Cox880af9d2008-07-22 11:16:12 +0100371 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500372 (__u16) (port->serial->minor)) + 2) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930373 dbg("mos7840_get_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500374 Wval);
375 }
376 }
377 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100378 MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500379 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100380 *val = buf[0];
381
382 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500383 return ret;
384}
385
386static void mos7840_dump_serial_port(struct moschip_port *mos7840_port)
387{
388
Tony Cook84fe6e72009-04-18 22:55:06 +0930389 dbg("***************************************");
390 dbg("SpRegOffset is %2x", mos7840_port->SpRegOffset);
391 dbg("ControlRegOffset is %2x", mos7840_port->ControlRegOffset);
392 dbg("DCRRegOffset is %2x", mos7840_port->DcrRegOffset);
393 dbg("***************************************");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500394
395}
396
397/************************************************************************/
398/************************************************************************/
399/* I N T E R F A C E F U N C T I O N S */
400/* I N T E R F A C E F U N C T I O N S */
401/************************************************************************/
402/************************************************************************/
403
404static inline void mos7840_set_port_private(struct usb_serial_port *port,
405 struct moschip_port *data)
406{
407 usb_set_serial_port_data(port, (void *)data);
408}
409
410static inline struct moschip_port *mos7840_get_port_private(struct
411 usb_serial_port
412 *port)
413{
414 return (struct moschip_port *)usb_get_serial_port_data(port);
415}
416
Oliver Neukum0de9a702007-03-16 20:28:28 +0100417static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500418{
419 struct moschip_port *mos7840_port;
420 struct async_icount *icount;
421 mos7840_port = port;
422 icount = &mos7840_port->icount;
423 if (new_msr &
424 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
425 MOS_MSR_DELTA_CD)) {
426 icount = &mos7840_port->icount;
427
428 /* update input line counters */
429 if (new_msr & MOS_MSR_DELTA_CTS) {
430 icount->cts++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100431 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500432 }
433 if (new_msr & MOS_MSR_DELTA_DSR) {
434 icount->dsr++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100435 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500436 }
437 if (new_msr & MOS_MSR_DELTA_CD) {
438 icount->dcd++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100439 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500440 }
441 if (new_msr & MOS_MSR_DELTA_RI) {
442 icount->rng++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100443 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500444 }
445 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500446}
447
Oliver Neukum0de9a702007-03-16 20:28:28 +0100448static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500449{
450 struct async_icount *icount;
451
Harvey Harrison441b62c2008-03-03 16:08:34 -0800452 dbg("%s - %02x", __func__, new_lsr);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500453
454 if (new_lsr & SERIAL_LSR_BI) {
Alan Cox880af9d2008-07-22 11:16:12 +0100455 /*
456 * Parity and Framing errors only count if they
457 * occur exclusive of a break being
458 * received.
459 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500460 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
461 }
462
463 /* update input line counters */
464 icount = &port->icount;
465 if (new_lsr & SERIAL_LSR_BI) {
466 icount->brk++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100467 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500468 }
469 if (new_lsr & SERIAL_LSR_OE) {
470 icount->overrun++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100471 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500472 }
473 if (new_lsr & SERIAL_LSR_PE) {
474 icount->parity++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100475 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500476 }
477 if (new_lsr & SERIAL_LSR_FE) {
478 icount->frame++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100479 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500480 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500481}
482
483/************************************************************************/
484/************************************************************************/
485/* U S B C A L L B A C K F U N C T I O N S */
486/* U S B C A L L B A C K F U N C T I O N S */
487/************************************************************************/
488/************************************************************************/
489
David Howells7d12e782006-10-05 14:55:46 +0100490static void mos7840_control_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500491{
492 unsigned char *data;
493 struct moschip_port *mos7840_port;
494 __u8 regval = 0x0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100495 int result = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700496 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500497
Ming Leicdc97792008-02-24 18:41:47 +0800498 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100499
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700500 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500501 case 0:
502 /* success */
503 break;
504 case -ECONNRESET:
505 case -ENOENT:
506 case -ESHUTDOWN:
507 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800508 dbg("%s - urb shutting down with status: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700509 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500510 return;
511 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800512 dbg("%s - nonzero urb status received: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700513 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500514 goto exit;
515 }
516
Tony Cook84fe6e72009-04-18 22:55:06 +0930517 dbg("%s urb buffer size is %d", __func__, urb->actual_length);
518 dbg("%s mos7840_port->MsrLsr is %d port %d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500519 mos7840_port->MsrLsr, mos7840_port->port_num);
520 data = urb->transfer_buffer;
521 regval = (__u8) data[0];
Tony Cook84fe6e72009-04-18 22:55:06 +0930522 dbg("%s data is %x", __func__, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500523 if (mos7840_port->MsrLsr == 0)
524 mos7840_handle_new_msr(mos7840_port, regval);
525 else if (mos7840_port->MsrLsr == 1)
526 mos7840_handle_new_lsr(mos7840_port, regval);
527
Oliver Neukum0de9a702007-03-16 20:28:28 +0100528exit:
529 spin_lock(&mos7840_port->pool_lock);
530 if (!mos7840_port->zombie)
531 result = usb_submit_urb(mos7840_port->int_urb, GFP_ATOMIC);
532 spin_unlock(&mos7840_port->pool_lock);
533 if (result) {
534 dev_err(&urb->dev->dev,
535 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800536 __func__, result);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100537 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500538}
539
540static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100541 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500542{
543 struct usb_device *dev = mcs->port->serial->dev;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100544 struct usb_ctrlrequest *dr = mcs->dr;
545 unsigned char *buffer = mcs->ctrl_buf;
546 int ret;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500547
Paul B Schroeder3f542972006-08-31 19:41:47 -0500548 dr->bRequestType = MCS_RD_RTYPE;
549 dr->bRequest = MCS_RDREQ;
Alan Cox880af9d2008-07-22 11:16:12 +0100550 dr->wValue = cpu_to_le16(Wval); /* 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500551 dr->wIndex = cpu_to_le16(reg);
552 dr->wLength = cpu_to_le16(2);
553
554 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
555 (unsigned char *)dr, buffer, 2,
556 mos7840_control_callback, mcs);
557 mcs->control_urb->transfer_buffer_length = 2;
558 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
559 return ret;
560}
561
562/*****************************************************************************
563 * mos7840_interrupt_callback
564 * this is the callback function for when we have received data on the
565 * interrupt endpoint.
566 *****************************************************************************/
567
David Howells7d12e782006-10-05 14:55:46 +0100568static void mos7840_interrupt_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500569{
570 int result;
571 int length;
572 struct moschip_port *mos7840_port;
573 struct usb_serial *serial;
574 __u16 Data;
575 unsigned char *data;
576 __u8 sp[5], st;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100577 int i, rv = 0;
578 __u16 wval, wreg = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700579 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500580
Tony Cook84fe6e72009-04-18 22:55:06 +0930581 dbg("%s", " : Entering");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500582
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700583 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500584 case 0:
585 /* success */
586 break;
587 case -ECONNRESET:
588 case -ENOENT:
589 case -ESHUTDOWN:
590 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800591 dbg("%s - urb shutting down with status: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700592 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500593 return;
594 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800595 dbg("%s - nonzero urb status received: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700596 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500597 goto exit;
598 }
599
600 length = urb->actual_length;
601 data = urb->transfer_buffer;
602
Ming Leicdc97792008-02-24 18:41:47 +0800603 serial = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500604
605 /* Moschip get 5 bytes
606 * Byte 1 IIR Port 1 (port.number is 0)
607 * Byte 2 IIR Port 2 (port.number is 1)
608 * Byte 3 IIR Port 3 (port.number is 2)
609 * Byte 4 IIR Port 4 (port.number is 3)
610 * Byte 5 FIFO status for both */
611
612 if (length && length > 5) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930613 dbg("%s", "Wrong data !!!");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500614 return;
615 }
616
617 sp[0] = (__u8) data[0];
618 sp[1] = (__u8) data[1];
619 sp[2] = (__u8) data[2];
620 sp[3] = (__u8) data[3];
621 st = (__u8) data[4];
622
623 for (i = 0; i < serial->num_ports; i++) {
624 mos7840_port = mos7840_get_port_private(serial->port[i]);
625 wval =
626 (((__u16) serial->port[i]->number -
627 (__u16) (serial->minor)) + 1) << 8;
628 if (mos7840_port->open) {
629 if (sp[i] & 0x01) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930630 dbg("SP%d No Interrupt !!!", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500631 } else {
632 switch (sp[i] & 0x0f) {
633 case SERIAL_IIR_RLS:
634 dbg("Serial Port %d: Receiver status error or ", i);
Tony Cook84fe6e72009-04-18 22:55:06 +0930635 dbg("address bit detected in 9-bit mode");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500636 mos7840_port->MsrLsr = 1;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100637 wreg = LINE_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500638 break;
639 case SERIAL_IIR_MS:
Tony Cook84fe6e72009-04-18 22:55:06 +0930640 dbg("Serial Port %d: Modem status change", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500641 mos7840_port->MsrLsr = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100642 wreg = MODEM_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500643 break;
644 }
Oliver Neukum0de9a702007-03-16 20:28:28 +0100645 spin_lock(&mos7840_port->pool_lock);
646 if (!mos7840_port->zombie) {
647 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
648 } else {
649 spin_unlock(&mos7840_port->pool_lock);
650 return;
651 }
652 spin_unlock(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500653 }
654 }
655 }
Alan Cox880af9d2008-07-22 11:16:12 +0100656 if (!(rv < 0))
657 /* the completion handler for the control urb will resubmit */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100658 return;
659exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -0500660 result = usb_submit_urb(urb, GFP_ATOMIC);
661 if (result) {
662 dev_err(&urb->dev->dev,
663 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800664 __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500665 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500666}
667
668static int mos7840_port_paranoia_check(struct usb_serial_port *port,
669 const char *function)
670{
671 if (!port) {
672 dbg("%s - port == NULL", function);
673 return -1;
674 }
675 if (!port->serial) {
676 dbg("%s - port->serial == NULL", function);
677 return -1;
678 }
679
680 return 0;
681}
682
683/* Inline functions to check the sanity of a pointer that is passed to us */
684static int mos7840_serial_paranoia_check(struct usb_serial *serial,
685 const char *function)
686{
687 if (!serial) {
688 dbg("%s - serial == NULL", function);
689 return -1;
690 }
691 if (!serial->type) {
692 dbg("%s - serial->type == NULL!", function);
693 return -1;
694 }
695
696 return 0;
697}
698
699static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
700 const char *function)
701{
702 /* if no port was specified, or it fails a paranoia check */
703 if (!port ||
704 mos7840_port_paranoia_check(port, function) ||
705 mos7840_serial_paranoia_check(port->serial, function)) {
Alan Cox880af9d2008-07-22 11:16:12 +0100706 /* then say that we don't have a valid usb_serial thing,
707 * which will end up genrating -ENODEV return values */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500708 return NULL;
709 }
710
711 return port->serial;
712}
713
714/*****************************************************************************
715 * mos7840_bulk_in_callback
716 * this is the callback function for when we have received data on the
717 * bulk in endpoint.
718 *****************************************************************************/
719
David Howells7d12e782006-10-05 14:55:46 +0100720static void mos7840_bulk_in_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500721{
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700722 int retval;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500723 unsigned char *data;
724 struct usb_serial *serial;
725 struct usb_serial_port *port;
726 struct moschip_port *mos7840_port;
727 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700728 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500729
Ming Leicdc97792008-02-24 18:41:47 +0800730 mos7840_port = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500731 if (!mos7840_port) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930732 dbg("%s", "NULL mos7840_port pointer");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800733 return;
734 }
735
736 if (status) {
737 dbg("nonzero read bulk status received: %d", status);
738 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500739 return;
740 }
741
742 port = (struct usb_serial_port *)mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800743 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930744 dbg("%s", "Port Paranoia failed");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800745 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500746 return;
747 }
748
Harvey Harrison441b62c2008-03-03 16:08:34 -0800749 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500750 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930751 dbg("%s", "Bad serial pointer");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800752 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500753 return;
754 }
755
Tony Cook84fe6e72009-04-18 22:55:06 +0930756 dbg("%s", "Entering... ");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500757
758 data = urb->transfer_buffer;
759
Tony Cook84fe6e72009-04-18 22:55:06 +0930760 dbg("%s", "Entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500761
762 if (urb->actual_length) {
Alan Cox4a90f092008-10-13 10:39:46 +0100763 tty = tty_port_tty_get(&mos7840_port->port->port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500764 if (tty) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500765 tty_insert_flip_string(tty, data, urb->actual_length);
Tony Cook84fe6e72009-04-18 22:55:06 +0930766 dbg(" %s ", data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500767 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100768 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500769 }
770 mos7840_port->icount.rx += urb->actual_length;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100771 smp_wmb();
Tony Cook84fe6e72009-04-18 22:55:06 +0930772 dbg("mos7840_port->icount.rx is %d:",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500773 mos7840_port->icount.rx);
774 }
775
776 if (!mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930777 dbg("%s", "URB KILLED !!!");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800778 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500779 return;
780 }
781
Paul B Schroeder3f542972006-08-31 19:41:47 -0500782
Oliver Neukum0de9a702007-03-16 20:28:28 +0100783 mos7840_port->read_urb->dev = serial->dev;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500784
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800785 mos7840_port->read_urb_busy = true;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700786 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100787
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700788 if (retval) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800789 dbg("usb_submit_urb(read bulk) failed, retval = %d", retval);
790 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500791 }
792}
793
794/*****************************************************************************
795 * mos7840_bulk_out_data_callback
Alan Cox880af9d2008-07-22 11:16:12 +0100796 * this is the callback function for when we have finished sending
797 * serial data on the bulk out endpoint.
Paul B Schroeder3f542972006-08-31 19:41:47 -0500798 *****************************************************************************/
799
David Howells7d12e782006-10-05 14:55:46 +0100800static void mos7840_bulk_out_data_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500801{
802 struct moschip_port *mos7840_port;
803 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700804 int status = urb->status;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100805 int i;
806
Ming Leicdc97792008-02-24 18:41:47 +0800807 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100808 spin_lock(&mos7840_port->pool_lock);
809 for (i = 0; i < NUM_URBS; i++) {
810 if (urb == mos7840_port->write_urb_pool[i]) {
811 mos7840_port->busy[i] = 0;
812 break;
813 }
814 }
815 spin_unlock(&mos7840_port->pool_lock);
816
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700817 if (status) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930818 dbg("nonzero write bulk status received:%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500819 return;
820 }
821
Harvey Harrison441b62c2008-03-03 16:08:34 -0800822 if (mos7840_port_paranoia_check(mos7840_port->port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930823 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500824 return;
825 }
826
Tony Cook84fe6e72009-04-18 22:55:06 +0930827 dbg("%s", "Entering .........");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500828
Alan Cox4a90f092008-10-13 10:39:46 +0100829 tty = tty_port_tty_get(&mos7840_port->port->port);
Jiri Slabyb963a842007-02-10 01:44:55 -0800830 if (tty && mos7840_port->open)
831 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100832 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500833
834}
835
836/************************************************************************/
837/* 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 */
838/************************************************************************/
839#ifdef MCSSerialProbe
840static int mos7840_serial_probe(struct usb_serial *serial,
841 const struct usb_device_id *id)
842{
843
844 /*need to implement the mode_reg reading and updating\
845 structures usb_serial_ device_type\
846 (i.e num_ports, num_bulkin,bulkout etc) */
847 /* Also we can update the changes attach */
848 return 1;
849}
850#endif
851
852/*****************************************************************************
853 * mos7840_open
854 * this function is called by the tty driver when a port is opened
855 * If successful, we return 0
856 * Otherwise we return a negative error number.
857 *****************************************************************************/
858
Alan Coxa509a7e2009-09-19 13:13:26 -0700859static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500860{
861 int response;
862 int j;
863 struct usb_serial *serial;
864 struct urb *urb;
865 __u16 Data;
866 int status;
867 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100868 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500869
Tony Cook84fe6e72009-04-18 22:55:06 +0930870 dbg ("%s enter", __func__);
871
Harvey Harrison441b62c2008-03-03 16:08:34 -0800872 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930873 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500874 return -ENODEV;
875 }
876
Paul B Schroeder3f542972006-08-31 19:41:47 -0500877 serial = port->serial;
878
Harvey Harrison441b62c2008-03-03 16:08:34 -0800879 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930880 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500881 return -ENODEV;
882 }
883
884 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100885 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500886
Oliver Neukum0de9a702007-03-16 20:28:28 +0100887 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500888 return -ENODEV;
889
890 usb_clear_halt(serial->dev, port->write_urb->pipe);
891 usb_clear_halt(serial->dev, port->read_urb->pipe);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100892 port0->open_ports++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500893
894 /* Initialising the write urb pool */
895 for (j = 0; j < NUM_URBS; ++j) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100896 urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500897 mos7840_port->write_urb_pool[j] = urb;
898
899 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700900 dev_err(&port->dev, "No more urbs???\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500901 continue;
902 }
903
Alan Cox880af9d2008-07-22 11:16:12 +0100904 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
905 GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500906 if (!urb->transfer_buffer) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100907 usb_free_urb(urb);
908 mos7840_port->write_urb_pool[j] = NULL;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700909 dev_err(&port->dev,
910 "%s-out of memory for urb buffers.\n",
911 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500912 continue;
913 }
914 }
915
916/*****************************************************************************
917 * Initialize MCS7840 -- Write Init values to corresponding Registers
918 *
919 * Register Index
920 * 1 : IER
921 * 2 : FCR
922 * 3 : LCR
923 * 4 : MCR
924 *
925 * 0x08 : SP1/2 Control Reg
926 *****************************************************************************/
927
Alan Cox880af9d2008-07-22 11:16:12 +0100928 /* NEED to check the following Block */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500929
Paul B Schroeder3f542972006-08-31 19:41:47 -0500930 Data = 0x0;
931 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
932 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930933 dbg("Reading Spreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500934 return -1;
935 }
936 Data |= 0x80;
937 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
938 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930939 dbg("writing Spreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500940 return -1;
941 }
942
943 Data &= ~0x80;
944 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
945 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930946 dbg("writing Spreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500947 return -1;
948 }
Alan Cox880af9d2008-07-22 11:16:12 +0100949 /* End of block to be checked */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500950
Paul B Schroeder3f542972006-08-31 19:41:47 -0500951 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +0100952 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
953 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500954 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930955 dbg("Reading Controlreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500956 return -1;
957 }
Alan Cox880af9d2008-07-22 11:16:12 +0100958 Data |= 0x08; /* Driver done bit */
959 Data |= 0x20; /* rx_disable */
960 status = mos7840_set_reg_sync(port,
961 mos7840_port->ControlRegOffset, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500962 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930963 dbg("writing Controlreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500964 return -1;
965 }
Alan Cox880af9d2008-07-22 11:16:12 +0100966 /* do register settings here */
967 /* Set all regs to the device default values. */
968 /***********************************
969 * First Disable all interrupts.
970 ***********************************/
Paul B Schroeder3f542972006-08-31 19:41:47 -0500971 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500972 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
973 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930974 dbg("disabling interrupts failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500975 return -1;
976 }
Alan Cox880af9d2008-07-22 11:16:12 +0100977 /* Set FIFO_CONTROL_REGISTER to the default value */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500978 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500979 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
980 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930981 dbg("Writing FIFO_CONTROL_REGISTER failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500982 return -1;
983 }
984
985 Data = 0xcf;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500986 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
987 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930988 dbg("Writing FIFO_CONTROL_REGISTER failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500989 return -1;
990 }
991
992 Data = 0x03;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500993 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
994 mos7840_port->shadowLCR = Data;
995
996 Data = 0x0b;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500997 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
998 mos7840_port->shadowMCR = Data;
999
1000 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001001 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1002 mos7840_port->shadowLCR = Data;
1003
Alan Cox880af9d2008-07-22 11:16:12 +01001004 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001005 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1006
1007 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001008 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1009
1010 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001011 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1012
1013 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001014 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1015
1016 Data = Data & ~SERIAL_LCR_DLAB;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001017 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1018 mos7840_port->shadowLCR = Data;
1019
Alan Cox880af9d2008-07-22 11:16:12 +01001020 /* clearing Bulkin and Bulkout Fifo */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001021 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001022 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
1023
1024 Data = Data | 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001025 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1026
1027 Data = Data & ~0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001028 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
Alan Cox880af9d2008-07-22 11:16:12 +01001029 /* Finally enable all interrupts */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001030 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001031 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1032
Alan Cox880af9d2008-07-22 11:16:12 +01001033 /* clearing rx_disable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001034 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001035 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1036 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001037 Data = Data & ~0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01001038 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1039 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001040
Alan Cox880af9d2008-07-22 11:16:12 +01001041 /* rx_negate */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001042 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001043 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1044 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001045 Data = Data | 0x10;
Alan Cox880af9d2008-07-22 11:16:12 +01001046 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1047 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001048
Alan Cox880af9d2008-07-22 11:16:12 +01001049 /* Check to see if we've set up our endpoint info yet *
1050 * (can't set it up in mos7840_startup as the structures *
1051 * were not set up at that time.) */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001052 if (port0->open_ports == 1) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001053 if (serial->port[0]->interrupt_in_buffer == NULL) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001054 /* set up interrupt urb */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001055 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
Alan Cox880af9d2008-07-22 11:16:12 +01001056 serial->dev,
1057 usb_rcvintpipe(serial->dev,
1058 serial->port[0]->interrupt_in_endpointAddress),
1059 serial->port[0]->interrupt_in_buffer,
1060 serial->port[0]->interrupt_in_urb->
1061 transfer_buffer_length,
1062 mos7840_interrupt_callback,
1063 serial,
1064 serial->port[0]->interrupt_in_urb->interval);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001065
1066 /* start interrupt read for mos7840 *
1067 * will continue as long as mos7840 is connected */
1068
1069 response =
1070 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1071 GFP_KERNEL);
1072 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001073 dev_err(&port->dev, "%s - Error %d submitting "
1074 "interrupt urb\n", __func__, response);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001075 }
1076
1077 }
1078
1079 }
1080
1081 /* see if we've set up our endpoint info yet *
1082 * (can't set it up in mos7840_startup as the *
1083 * structures were not set up at that time.) */
1084
Tony Cook84fe6e72009-04-18 22:55:06 +09301085 dbg("port number is %d", port->number);
1086 dbg("serial number is %d", port->serial->minor);
1087 dbg("Bulkin endpoint is %d", port->bulk_in_endpointAddress);
1088 dbg("BulkOut endpoint is %d", port->bulk_out_endpointAddress);
1089 dbg("Interrupt endpoint is %d", port->interrupt_in_endpointAddress);
1090 dbg("port's number in the device is %d", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001091 mos7840_port->read_urb = port->read_urb;
1092
1093 /* set up our bulk in urb */
1094
1095 usb_fill_bulk_urb(mos7840_port->read_urb,
1096 serial->dev,
1097 usb_rcvbulkpipe(serial->dev,
1098 port->bulk_in_endpointAddress),
1099 port->bulk_in_buffer,
1100 mos7840_port->read_urb->transfer_buffer_length,
1101 mos7840_bulk_in_callback, mos7840_port);
1102
Tony Cook84fe6e72009-04-18 22:55:06 +09301103 dbg("mos7840_open: bulkin endpoint is %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001104 port->bulk_in_endpointAddress);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001105 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001106 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1107 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001108 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1109 __func__, response);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001110 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001111 }
1112
1113 /* initialize our wait queues */
1114 init_waitqueue_head(&mos7840_port->wait_chase);
1115 init_waitqueue_head(&mos7840_port->delta_msr_wait);
1116
1117 /* initialize our icount structure */
1118 memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount));
1119
1120 /* initialize our port settings */
Alan Cox880af9d2008-07-22 11:16:12 +01001121 /* Must set to enable ints! */
1122 mos7840_port->shadowMCR = MCR_MASTER_IE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001123 /* send a open port command */
1124 mos7840_port->open = 1;
Alan Cox880af9d2008-07-22 11:16:12 +01001125 /* mos7840_change_port_settings(mos7840_port,old_termios); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001126 mos7840_port->icount.tx = 0;
1127 mos7840_port->icount.rx = 0;
1128
Tony Cook84fe6e72009-04-18 22:55:06 +09301129 dbg("usb_serial serial:%p mos7840_port:%p\n usb_serial_port port:%p",
Alan Cox880af9d2008-07-22 11:16:12 +01001130 serial, mos7840_port, port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001131
Tony Cook84fe6e72009-04-18 22:55:06 +09301132 dbg ("%s leave", __func__);
1133
Paul B Schroeder3f542972006-08-31 19:41:47 -05001134 return 0;
1135
1136}
1137
1138/*****************************************************************************
1139 * mos7840_chars_in_buffer
1140 * this function is called by the tty driver when it wants to know how many
1141 * bytes of data we currently have outstanding in the port (data that has
1142 * been written, but hasn't made it out the port yet)
1143 * If successful, we return the number of bytes left to be written in the
1144 * system,
Alan Cox95da3102008-07-22 11:09:07 +01001145 * Otherwise we return zero.
Paul B Schroeder3f542972006-08-31 19:41:47 -05001146 *****************************************************************************/
1147
Alan Cox95da3102008-07-22 11:09:07 +01001148static int mos7840_chars_in_buffer(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001149{
Alan Cox95da3102008-07-22 11:09:07 +01001150 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001151 int i;
1152 int chars = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001153 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001154 struct moschip_port *mos7840_port;
1155
Tony Cook84fe6e72009-04-18 22:55:06 +09301156 dbg("%s", " mos7840_chars_in_buffer:entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001157
Harvey Harrison441b62c2008-03-03 16:08:34 -08001158 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301159 dbg("%s", "Invalid port");
Alan Cox95da3102008-07-22 11:09:07 +01001160 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001161 }
1162
1163 mos7840_port = mos7840_get_port_private(port);
1164 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301165 dbg("%s", "mos7840_break:leaving ...........");
Alan Cox95da3102008-07-22 11:09:07 +01001166 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001167 }
1168
Alan Cox880af9d2008-07-22 11:16:12 +01001169 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Alan Cox95da3102008-07-22 11:09:07 +01001170 for (i = 0; i < NUM_URBS; ++i)
1171 if (mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001172 chars += URB_TRANSFER_BUFFER_SIZE;
Alan Cox880af9d2008-07-22 11:16:12 +01001173 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001174 dbg("%s - returns %d", __func__, chars);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001175 return chars;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001176
1177}
1178
Paul B Schroeder3f542972006-08-31 19:41:47 -05001179/*****************************************************************************
1180 * mos7840_close
1181 * this function is called by the tty driver when a port is closed
1182 *****************************************************************************/
1183
Alan Cox335f8512009-06-11 12:26:29 +01001184static void mos7840_close(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001185{
1186 struct usb_serial *serial;
1187 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001188 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001189 int j;
1190 __u16 Data;
1191
Tony Cook84fe6e72009-04-18 22:55:06 +09301192 dbg("%s", "mos7840_close:entering...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001193
Harvey Harrison441b62c2008-03-03 16:08:34 -08001194 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301195 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001196 return;
1197 }
1198
Harvey Harrison441b62c2008-03-03 16:08:34 -08001199 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001200 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301201 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001202 return;
1203 }
1204
1205 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001206 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001207
Oliver Neukum0de9a702007-03-16 20:28:28 +01001208 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001209 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001210
1211 for (j = 0; j < NUM_URBS; ++j)
1212 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1213
1214 /* Freeing Write URBs */
1215 for (j = 0; j < NUM_URBS; ++j) {
1216 if (mos7840_port->write_urb_pool[j]) {
1217 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1218 kfree(mos7840_port->write_urb_pool[j]->
1219 transfer_buffer);
1220
1221 usb_free_urb(mos7840_port->write_urb_pool[j]);
1222 }
1223 }
1224
Paul B Schroeder3f542972006-08-31 19:41:47 -05001225 /* While closing port, shutdown all bulk read, write *
1226 * and interrupt read if they exists */
1227 if (serial->dev) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001228 if (mos7840_port->write_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301229 dbg("%s", "Shutdown bulk write");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001230 usb_kill_urb(mos7840_port->write_urb);
1231 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001232 if (mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301233 dbg("%s", "Shutdown bulk read");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001234 usb_kill_urb(mos7840_port->read_urb);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001235 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001236 }
1237 if ((&mos7840_port->control_urb)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301238 dbg("%s", "Shutdown control read");
Alan Cox880af9d2008-07-22 11:16:12 +01001239 /*/ usb_kill_urb (mos7840_port->control_urb); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001240 }
1241 }
Alan Cox880af9d2008-07-22 11:16:12 +01001242/* if(mos7840_port->ctrl_buf != NULL) */
1243/* kfree(mos7840_port->ctrl_buf); */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001244 port0->open_ports--;
Tony Cook84fe6e72009-04-18 22:55:06 +09301245 dbg("mos7840_num_open_ports in close%d:in port%d",
Oliver Neukum0de9a702007-03-16 20:28:28 +01001246 port0->open_ports, port->number);
1247 if (port0->open_ports == 0) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001248 if (serial->port[0]->interrupt_in_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301249 dbg("%s", "Shutdown interrupt_in_urb");
Oliver Neukum0de9a702007-03-16 20:28:28 +01001250 usb_kill_urb(serial->port[0]->interrupt_in_urb);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001251 }
1252 }
1253
1254 if (mos7840_port->write_urb) {
1255 /* if this urb had a transfer buffer already (old tx) free it */
Alan Cox880af9d2008-07-22 11:16:12 +01001256 if (mos7840_port->write_urb->transfer_buffer != NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001257 kfree(mos7840_port->write_urb->transfer_buffer);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001258 usb_free_urb(mos7840_port->write_urb);
1259 }
1260
1261 Data = 0x0;
1262 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1263
1264 Data = 0x00;
1265 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1266
1267 mos7840_port->open = 0;
1268
Tony Cook84fe6e72009-04-18 22:55:06 +09301269 dbg("%s", "Leaving ............");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001270}
1271
1272/************************************************************************
1273 *
1274 * mos7840_block_until_chase_response
1275 *
1276 * This function will block the close until one of the following:
1277 * 1. Response to our Chase comes from mos7840
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001278 * 2. A timeout of 10 seconds without activity has expired
Paul B Schroeder3f542972006-08-31 19:41:47 -05001279 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1280 *
1281 ************************************************************************/
1282
Alan Cox95da3102008-07-22 11:09:07 +01001283static void mos7840_block_until_chase_response(struct tty_struct *tty,
1284 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001285{
1286 int timeout = 1 * HZ;
1287 int wait = 10;
1288 int count;
1289
1290 while (1) {
Alan Cox95da3102008-07-22 11:09:07 +01001291 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001292
1293 /* Check for Buffer status */
Alan Cox880af9d2008-07-22 11:16:12 +01001294 if (count <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001295 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001296
1297 /* Block the thread for a while */
1298 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1299 timeout);
1300 /* No activity.. count down section */
1301 wait--;
1302 if (wait == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001303 dbg("%s - TIMEOUT", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001304 return;
1305 } else {
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001306 /* Reset timeout value back to seconds */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001307 wait = 10;
1308 }
1309 }
1310
1311}
1312
1313/*****************************************************************************
1314 * mos7840_break
1315 * this function sends a break to the port
1316 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001317static void mos7840_break(struct tty_struct *tty, int break_state)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001318{
Alan Cox95da3102008-07-22 11:09:07 +01001319 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001320 unsigned char data;
1321 struct usb_serial *serial;
1322 struct moschip_port *mos7840_port;
1323
Tony Cook84fe6e72009-04-18 22:55:06 +09301324 dbg("%s", "Entering ...........");
1325 dbg("mos7840_break: Start");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001326
Harvey Harrison441b62c2008-03-03 16:08:34 -08001327 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301328 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001329 return;
1330 }
1331
Harvey Harrison441b62c2008-03-03 16:08:34 -08001332 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001333 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301334 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001335 return;
1336 }
1337
1338 mos7840_port = mos7840_get_port_private(port);
1339
Alan Cox880af9d2008-07-22 11:16:12 +01001340 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001341 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001342
Alan Cox95da3102008-07-22 11:09:07 +01001343 if (serial->dev)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001344 /* flush and block until tx is empty */
Alan Cox95da3102008-07-22 11:09:07 +01001345 mos7840_block_until_chase_response(tty, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001346
Alan Cox95da3102008-07-22 11:09:07 +01001347 if (break_state == -1)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001348 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
Alan Cox95da3102008-07-22 11:09:07 +01001349 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001350 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001351
Alan Cox6b447f042009-01-02 13:48:56 +00001352 /* FIXME: no locking on shadowLCR anywhere in driver */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001353 mos7840_port->shadowLCR = data;
Tony Cook84fe6e72009-04-18 22:55:06 +09301354 dbg("mcs7840_break mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001355 mos7840_port->shadowLCR);
1356 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1357 mos7840_port->shadowLCR);
1358
1359 return;
1360}
1361
1362/*****************************************************************************
1363 * mos7840_write_room
1364 * this function is called by the tty driver when it wants to know how many
1365 * bytes of data we can accept for a specific port.
1366 * If successful, we return the amount of room that we have for this port
1367 * Otherwise we return a negative error number.
1368 *****************************************************************************/
1369
Alan Cox95da3102008-07-22 11:09:07 +01001370static int mos7840_write_room(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001371{
Alan Cox95da3102008-07-22 11:09:07 +01001372 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001373 int i;
1374 int room = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001375 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001376 struct moschip_port *mos7840_port;
1377
Tony Cook84fe6e72009-04-18 22:55:06 +09301378 dbg("%s", " mos7840_write_room:entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001379
Harvey Harrison441b62c2008-03-03 16:08:34 -08001380 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301381 dbg("%s", "Invalid port");
1382 dbg("%s", " mos7840_write_room:leaving ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001383 return -1;
1384 }
1385
1386 mos7840_port = mos7840_get_port_private(port);
1387 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301388 dbg("%s", "mos7840_break:leaving ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001389 return -1;
1390 }
1391
Oliver Neukum0de9a702007-03-16 20:28:28 +01001392 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001393 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox880af9d2008-07-22 11:16:12 +01001394 if (!mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001395 room += URB_TRANSFER_BUFFER_SIZE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001396 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001397 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001398
Oliver Neukum0de9a702007-03-16 20:28:28 +01001399 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001400 dbg("%s - returns %d", __func__, room);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001401 return room;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001402
1403}
1404
1405/*****************************************************************************
1406 * mos7840_write
1407 * this function is called by the tty driver when data should be written to
1408 * the port.
1409 * If successful, we return the number of bytes written, otherwise we
1410 * return a negative error number.
1411 *****************************************************************************/
1412
Alan Cox95da3102008-07-22 11:09:07 +01001413static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001414 const unsigned char *data, int count)
1415{
1416 int status;
1417 int i;
1418 int bytes_sent = 0;
1419 int transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001420 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001421
1422 struct moschip_port *mos7840_port;
1423 struct usb_serial *serial;
1424 struct urb *urb;
Alan Cox880af9d2008-07-22 11:16:12 +01001425 /* __u16 Data; */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001426 const unsigned char *current_position = data;
1427 unsigned char *data1;
Tony Cook84fe6e72009-04-18 22:55:06 +09301428 dbg("%s", "entering ...........");
1429 /* dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Alan Cox880af9d2008-07-22 11:16:12 +01001430 mos7840_port->shadowLCR); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001431
1432#ifdef NOTMOS7840
1433 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001434 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1435 mos7840_port->shadowLCR = Data;
Tony Cook84fe6e72009-04-18 22:55:06 +09301436 dbg("mos7840_write: LINE_CONTROL_REGISTER is %x", Data);
1437 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001438 mos7840_port->shadowLCR);
1439
Alan Cox880af9d2008-07-22 11:16:12 +01001440 /* Data = 0x03; */
1441 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1442 /* mos7840_port->shadowLCR=Data;//Need to add later */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001443
Alan Cox880af9d2008-07-22 11:16:12 +01001444 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001445 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1446
Alan Cox880af9d2008-07-22 11:16:12 +01001447 /* Data = 0x0c; */
1448 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001449 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001450 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09301451 dbg("mos7840_write:DLL value is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001452
1453 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001454 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09301455 dbg("mos7840_write:DLM value is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001456
1457 Data = Data & ~SERIAL_LCR_DLAB;
Tony Cook84fe6e72009-04-18 22:55:06 +09301458 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001459 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001460 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1461#endif
1462
Harvey Harrison441b62c2008-03-03 16:08:34 -08001463 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301464 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001465 return -1;
1466 }
1467
1468 serial = port->serial;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001469 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301470 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001471 return -1;
1472 }
1473
1474 mos7840_port = mos7840_get_port_private(port);
1475 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301476 dbg("%s", "mos7840_port is NULL");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001477 return -1;
1478 }
1479
1480 /* try to find a free urb in the list */
1481 urb = NULL;
1482
Oliver Neukum0de9a702007-03-16 20:28:28 +01001483 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001484 for (i = 0; i < NUM_URBS; ++i) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001485 if (!mos7840_port->busy[i]) {
1486 mos7840_port->busy[i] = 1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001487 urb = mos7840_port->write_urb_pool[i];
Tony Cook84fe6e72009-04-18 22:55:06 +09301488 dbg("URB:%d", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001489 break;
1490 }
1491 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001492 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001493
1494 if (urb == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001495 dbg("%s - no more free urbs", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001496 goto exit;
1497 }
1498
1499 if (urb->transfer_buffer == NULL) {
1500 urb->transfer_buffer =
1501 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1502
1503 if (urb->transfer_buffer == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001504 dev_err(&port->dev, "%s no more kernel memory...\n",
1505 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001506 goto exit;
1507 }
1508 }
1509 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1510
Al Viro97c49652006-10-09 20:29:03 +01001511 memcpy(urb->transfer_buffer, current_position, transfer_size);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001512
1513 /* fill urb with data and submit */
1514 usb_fill_bulk_urb(urb,
1515 serial->dev,
1516 usb_sndbulkpipe(serial->dev,
1517 port->bulk_out_endpointAddress),
1518 urb->transfer_buffer,
1519 transfer_size,
1520 mos7840_bulk_out_data_callback, mos7840_port);
1521
1522 data1 = urb->transfer_buffer;
Tony Cook84fe6e72009-04-18 22:55:06 +09301523 dbg("bulkout endpoint is %d", port->bulk_out_endpointAddress);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001524
1525 /* send it down the pipe */
1526 status = usb_submit_urb(urb, GFP_ATOMIC);
1527
1528 if (status) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001529 mos7840_port->busy[i] = 0;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001530 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
1531 "with status = %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001532 bytes_sent = status;
1533 goto exit;
1534 }
1535 bytes_sent = transfer_size;
1536 mos7840_port->icount.tx += transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001537 smp_wmb();
Tony Cook84fe6e72009-04-18 22:55:06 +09301538 dbg("mos7840_port->icount.tx is %d:", mos7840_port->icount.tx);
Alan Cox95da3102008-07-22 11:09:07 +01001539exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -05001540 return bytes_sent;
1541
1542}
1543
1544/*****************************************************************************
1545 * mos7840_throttle
1546 * this function is called by the tty driver when it wants to stop the data
1547 * being read from the port.
1548 *****************************************************************************/
1549
Alan Cox95da3102008-07-22 11:09:07 +01001550static void mos7840_throttle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001551{
Alan Cox95da3102008-07-22 11:09:07 +01001552 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001553 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001554 int status;
1555
Harvey Harrison441b62c2008-03-03 16:08:34 -08001556 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301557 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001558 return;
1559 }
1560
Tony Cook84fe6e72009-04-18 22:55:06 +09301561 dbg("- port %d", port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001562
1563 mos7840_port = mos7840_get_port_private(port);
1564
1565 if (mos7840_port == NULL)
1566 return;
1567
1568 if (!mos7840_port->open) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301569 dbg("%s", "port not opened");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001570 return;
1571 }
1572
Tony Cook84fe6e72009-04-18 22:55:06 +09301573 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001574
Paul B Schroeder3f542972006-08-31 19:41:47 -05001575 /* if we are implementing XON/XOFF, send the stop character */
1576 if (I_IXOFF(tty)) {
1577 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001578 status = mos7840_write(tty, port, &stop_char, 1);
1579 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001580 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001581 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001582 /* if we are implementing RTS/CTS, toggle that line */
1583 if (tty->termios->c_cflag & CRTSCTS) {
1584 mos7840_port->shadowMCR &= ~MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001585 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001586 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001587 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001588 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001589 }
1590
1591 return;
1592}
1593
1594/*****************************************************************************
1595 * mos7840_unthrottle
Alan Cox880af9d2008-07-22 11:16:12 +01001596 * this function is called by the tty driver when it wants to resume
1597 * the data being read from the port (called after mos7840_throttle is
1598 * called)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001599 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001600static void mos7840_unthrottle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001601{
Alan Cox95da3102008-07-22 11:09:07 +01001602 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001603 int status;
1604 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1605
Harvey Harrison441b62c2008-03-03 16:08:34 -08001606 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301607 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001608 return;
1609 }
1610
1611 if (mos7840_port == NULL)
1612 return;
1613
1614 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001615 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001616 return;
1617 }
1618
Tony Cook84fe6e72009-04-18 22:55:06 +09301619 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001620
Paul B Schroeder3f542972006-08-31 19:41:47 -05001621 /* if we are implementing XON/XOFF, send the start character */
1622 if (I_IXOFF(tty)) {
1623 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001624 status = mos7840_write(tty, port, &start_char, 1);
1625 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001626 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001627 }
1628
1629 /* if we are implementing RTS/CTS, toggle that line */
1630 if (tty->termios->c_cflag & CRTSCTS) {
1631 mos7840_port->shadowMCR |= MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001632 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001633 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001634 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001635 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001636 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001637}
1638
Alan Cox95da3102008-07-22 11:09:07 +01001639static int mos7840_tiocmget(struct tty_struct *tty, struct file *file)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001640{
Alan Cox95da3102008-07-22 11:09:07 +01001641 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001642 struct moschip_port *mos7840_port;
1643 unsigned int result;
1644 __u16 msr;
1645 __u16 mcr;
Alan Cox880af9d2008-07-22 11:16:12 +01001646 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001647 mos7840_port = mos7840_get_port_private(port);
1648
Harvey Harrison441b62c2008-03-03 16:08:34 -08001649 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001650
1651 if (mos7840_port == NULL)
1652 return -ENODEV;
1653
1654 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1655 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1656 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1657 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1658 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1659 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1660 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1661 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1662 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1663
Harvey Harrison441b62c2008-03-03 16:08:34 -08001664 dbg("%s - 0x%04X", __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001665
1666 return result;
1667}
1668
Alan Cox95da3102008-07-22 11:09:07 +01001669static int mos7840_tiocmset(struct tty_struct *tty, struct file *file,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001670 unsigned int set, unsigned int clear)
1671{
Alan Cox95da3102008-07-22 11:09:07 +01001672 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001673 struct moschip_port *mos7840_port;
1674 unsigned int mcr;
Roel Kluin87521c42008-04-17 06:16:24 +02001675 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001676
Harvey Harrison441b62c2008-03-03 16:08:34 -08001677 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001678
1679 mos7840_port = mos7840_get_port_private(port);
1680
1681 if (mos7840_port == NULL)
1682 return -ENODEV;
1683
Alan Coxe2984492008-02-20 20:51:45 +00001684 /* FIXME: What locks the port registers ? */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001685 mcr = mos7840_port->shadowMCR;
1686 if (clear & TIOCM_RTS)
1687 mcr &= ~MCR_RTS;
1688 if (clear & TIOCM_DTR)
1689 mcr &= ~MCR_DTR;
1690 if (clear & TIOCM_LOOP)
1691 mcr &= ~MCR_LOOPBACK;
1692
1693 if (set & TIOCM_RTS)
1694 mcr |= MCR_RTS;
1695 if (set & TIOCM_DTR)
1696 mcr |= MCR_DTR;
1697 if (set & TIOCM_LOOP)
1698 mcr |= MCR_LOOPBACK;
1699
1700 mos7840_port->shadowMCR = mcr;
1701
Paul B Schroeder3f542972006-08-31 19:41:47 -05001702 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1703 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301704 dbg("setting MODEM_CONTROL_REGISTER Failed");
Roel Kluin87521c42008-04-17 06:16:24 +02001705 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001706 }
1707
1708 return 0;
1709}
1710
1711/*****************************************************************************
1712 * mos7840_calc_baud_rate_divisor
1713 * this function calculates the proper baud rate divisor for the specified
1714 * baud rate.
1715 *****************************************************************************/
1716static int mos7840_calc_baud_rate_divisor(int baudRate, int *divisor,
Alan Cox880af9d2008-07-22 11:16:12 +01001717 __u16 *clk_sel_val)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001718{
1719
Harvey Harrison441b62c2008-03-03 16:08:34 -08001720 dbg("%s - %d", __func__, baudRate);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001721
1722 if (baudRate <= 115200) {
1723 *divisor = 115200 / baudRate;
1724 *clk_sel_val = 0x0;
1725 }
1726 if ((baudRate > 115200) && (baudRate <= 230400)) {
1727 *divisor = 230400 / baudRate;
1728 *clk_sel_val = 0x10;
1729 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1730 *divisor = 403200 / baudRate;
1731 *clk_sel_val = 0x20;
1732 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1733 *divisor = 460800 / baudRate;
1734 *clk_sel_val = 0x30;
1735 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1736 *divisor = 806400 / baudRate;
1737 *clk_sel_val = 0x40;
1738 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1739 *divisor = 921600 / baudRate;
1740 *clk_sel_val = 0x50;
1741 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1742 *divisor = 1572864 / baudRate;
1743 *clk_sel_val = 0x60;
1744 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1745 *divisor = 3145728 / baudRate;
1746 *clk_sel_val = 0x70;
1747 }
1748 return 0;
1749
1750#ifdef NOTMCS7840
1751
1752 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1753 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1754 *divisor = mos7840_divisor_table[i].Divisor;
1755 return 0;
1756 }
1757 }
1758
1759 /* After trying for all the standard baud rates *
1760 * Try calculating the divisor for this baud rate */
1761
1762 if (baudrate > 75 && baudrate < 230400) {
1763 /* get the divisor */
1764 custom = (__u16) (230400L / baudrate);
1765
1766 /* Check for round off */
1767 round1 = (__u16) (2304000L / baudrate);
1768 round = (__u16) (round1 - (custom * 10));
Alan Cox880af9d2008-07-22 11:16:12 +01001769 if (round > 4)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001770 custom++;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001771 *divisor = custom;
1772
Tony Cook84fe6e72009-04-18 22:55:06 +09301773 dbg(" Baud %d = %d", baudrate, custom);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001774 return 0;
1775 }
1776
Tony Cook84fe6e72009-04-18 22:55:06 +09301777 dbg("%s", " Baud calculation Failed...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001778 return -1;
1779#endif
1780}
1781
1782/*****************************************************************************
1783 * mos7840_send_cmd_write_baud_rate
1784 * this function sends the proper command to change the baud rate of the
1785 * specified port.
1786 *****************************************************************************/
1787
1788static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1789 int baudRate)
1790{
1791 int divisor = 0;
1792 int status;
1793 __u16 Data;
1794 unsigned char number;
1795 __u16 clk_sel_val;
1796 struct usb_serial_port *port;
1797
1798 if (mos7840_port == NULL)
1799 return -1;
1800
1801 port = (struct usb_serial_port *)mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001802 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301803 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001804 return -1;
1805 }
1806
Harvey Harrison441b62c2008-03-03 16:08:34 -08001807 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301808 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001809 return -1;
1810 }
1811
Tony Cook84fe6e72009-04-18 22:55:06 +09301812 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001813
1814 number = mos7840_port->port->number - mos7840_port->port->serial->minor;
1815
Harvey Harrison441b62c2008-03-03 16:08:34 -08001816 dbg("%s - port = %d, baud = %d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001817 mos7840_port->port->number, baudRate);
Alan Cox880af9d2008-07-22 11:16:12 +01001818 /* reset clk_uart_sel in spregOffset */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001819 if (baudRate > 115200) {
1820#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001821 /* NOTE: need to see the pther register to modify */
1822 /* setting h/w flow control bit to 1 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001823 Data = 0x2b;
1824 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001825 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1826 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001827 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301828 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001829 return -1;
1830 }
1831#endif
1832
1833 } else {
1834#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001835 / *setting h/w flow control bit to 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001836 Data = 0xb;
1837 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001838 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1839 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001840 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301841 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001842 return -1;
1843 }
1844#endif
1845
1846 }
1847
Alan Cox880af9d2008-07-22 11:16:12 +01001848 if (1) { /* baudRate <= 115200) */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001849 clk_sel_val = 0x0;
1850 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001851 status = mos7840_calc_baud_rate_divisor(baudRate, &divisor,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001852 &clk_sel_val);
Alan Cox880af9d2008-07-22 11:16:12 +01001853 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1854 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001855 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301856 dbg("reading spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001857 return -1;
1858 }
1859 Data = (Data & 0x8f) | clk_sel_val;
Alan Cox880af9d2008-07-22 11:16:12 +01001860 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1861 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001862 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301863 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001864 return -1;
1865 }
1866 /* Calculate the Divisor */
1867
1868 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001869 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001870 return status;
1871 }
1872 /* Enable access to divisor latch */
1873 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1874 mos7840_port->shadowLCR = Data;
1875 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1876
1877 /* Write the divisor */
1878 Data = (unsigned char)(divisor & 0xff);
Tony Cook84fe6e72009-04-18 22:55:06 +09301879 dbg("set_serial_baud Value to write DLL is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001880 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1881
1882 Data = (unsigned char)((divisor & 0xff00) >> 8);
Tony Cook84fe6e72009-04-18 22:55:06 +09301883 dbg("set_serial_baud Value to write DLM is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001884 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1885
1886 /* Disable access to divisor latch */
1887 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1888 mos7840_port->shadowLCR = Data;
1889 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1890
1891 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001892 return status;
1893}
1894
1895/*****************************************************************************
1896 * mos7840_change_port_settings
1897 * This routine is called to set the UART on the device to match
1898 * the specified new settings.
1899 *****************************************************************************/
1900
Alan Cox95da3102008-07-22 11:09:07 +01001901static void mos7840_change_port_settings(struct tty_struct *tty,
1902 struct moschip_port *mos7840_port, struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001903{
Paul B Schroeder3f542972006-08-31 19:41:47 -05001904 int baud;
1905 unsigned cflag;
1906 unsigned iflag;
1907 __u8 lData;
1908 __u8 lParity;
1909 __u8 lStop;
1910 int status;
1911 __u16 Data;
1912 struct usb_serial_port *port;
1913 struct usb_serial *serial;
1914
1915 if (mos7840_port == NULL)
1916 return;
1917
1918 port = (struct usb_serial_port *)mos7840_port->port;
1919
Harvey Harrison441b62c2008-03-03 16:08:34 -08001920 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301921 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001922 return;
1923 }
1924
Harvey Harrison441b62c2008-03-03 16:08:34 -08001925 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301926 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001927 return;
1928 }
1929
1930 serial = port->serial;
1931
Harvey Harrison441b62c2008-03-03 16:08:34 -08001932 dbg("%s - port %d", __func__, mos7840_port->port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001933
1934 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001935 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001936 return;
1937 }
1938
Tony Cook84fe6e72009-04-18 22:55:06 +09301939 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001940
1941 lData = LCR_BITS_8;
1942 lStop = LCR_STOP_1;
1943 lParity = LCR_PAR_NONE;
1944
1945 cflag = tty->termios->c_cflag;
1946 iflag = tty->termios->c_iflag;
1947
1948 /* Change the number of bits */
1949 if (cflag & CSIZE) {
1950 switch (cflag & CSIZE) {
1951 case CS5:
1952 lData = LCR_BITS_5;
1953 break;
1954
1955 case CS6:
1956 lData = LCR_BITS_6;
1957 break;
1958
1959 case CS7:
1960 lData = LCR_BITS_7;
1961 break;
1962 default:
1963 case CS8:
1964 lData = LCR_BITS_8;
1965 break;
1966 }
1967 }
1968 /* Change the Parity bit */
1969 if (cflag & PARENB) {
1970 if (cflag & PARODD) {
1971 lParity = LCR_PAR_ODD;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001972 dbg("%s - parity = odd", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001973 } else {
1974 lParity = LCR_PAR_EVEN;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001975 dbg("%s - parity = even", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001976 }
1977
1978 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001979 dbg("%s - parity = none", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001980 }
1981
Alan Cox880af9d2008-07-22 11:16:12 +01001982 if (cflag & CMSPAR)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001983 lParity = lParity | 0x20;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001984
1985 /* Change the Stop bit */
1986 if (cflag & CSTOPB) {
1987 lStop = LCR_STOP_2;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001988 dbg("%s - stop bits = 2", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001989 } else {
1990 lStop = LCR_STOP_1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001991 dbg("%s - stop bits = 1", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001992 }
1993
1994 /* Update the LCR with the correct value */
1995 mos7840_port->shadowLCR &=
1996 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1997 mos7840_port->shadowLCR |= (lData | lParity | lStop);
1998
Tony Cook84fe6e72009-04-18 22:55:06 +09301999 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002000 mos7840_port->shadowLCR);
2001 /* Disable Interrupts */
2002 Data = 0x00;
2003 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2004
2005 Data = 0x00;
2006 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2007
2008 Data = 0xcf;
2009 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2010
2011 /* Send the updated LCR value to the mos7840 */
2012 Data = mos7840_port->shadowLCR;
2013
2014 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
2015
2016 Data = 0x00b;
2017 mos7840_port->shadowMCR = Data;
2018 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2019 Data = 0x00b;
2020 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2021
2022 /* set up the MCR register and send it to the mos7840 */
2023
2024 mos7840_port->shadowMCR = MCR_MASTER_IE;
Alan Cox880af9d2008-07-22 11:16:12 +01002025 if (cflag & CBAUD)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002026 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002027
Alan Cox880af9d2008-07-22 11:16:12 +01002028 if (cflag & CRTSCTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002029 mos7840_port->shadowMCR |= (MCR_XON_ANY);
Alan Cox880af9d2008-07-22 11:16:12 +01002030 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05002031 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002032
2033 Data = mos7840_port->shadowMCR;
2034 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2035
2036 /* Determine divisor based on baud rate */
2037 baud = tty_get_baud_rate(tty);
2038
2039 if (!baud) {
2040 /* pick a default, any default... */
Tony Cook84fe6e72009-04-18 22:55:06 +09302041 dbg("%s", "Picked default baud...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002042 baud = 9600;
2043 }
2044
Harvey Harrison441b62c2008-03-03 16:08:34 -08002045 dbg("%s - baud rate = %d", __func__, baud);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002046 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
2047
2048 /* Enable Interrupts */
2049 Data = 0x0c;
2050 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2051
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002052 if (mos7840_port->read_urb_busy == false) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002053 mos7840_port->read_urb->dev = serial->dev;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002054 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002055 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002056 if (status) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002057 dbg("usb_submit_urb(read bulk) failed, status = %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002058 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002059 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002060 }
2061 }
2062 wake_up(&mos7840_port->delta_msr_wait);
2063 mos7840_port->delta_msr_cond = 1;
Tony Cook84fe6e72009-04-18 22:55:06 +09302064 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002065 mos7840_port->shadowLCR);
2066
2067 return;
2068}
2069
2070/*****************************************************************************
2071 * mos7840_set_termios
2072 * this function is called by the tty driver when it wants to change
2073 * the termios structure
2074 *****************************************************************************/
2075
Alan Cox95da3102008-07-22 11:09:07 +01002076static void mos7840_set_termios(struct tty_struct *tty,
2077 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -08002078 struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002079{
2080 int status;
2081 unsigned int cflag;
2082 struct usb_serial *serial;
2083 struct moschip_port *mos7840_port;
Tony Cook84fe6e72009-04-18 22:55:06 +09302084 dbg("mos7840_set_termios: START");
Harvey Harrison441b62c2008-03-03 16:08:34 -08002085 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302086 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002087 return;
2088 }
2089
2090 serial = port->serial;
2091
Harvey Harrison441b62c2008-03-03 16:08:34 -08002092 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302093 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002094 return;
2095 }
2096
2097 mos7840_port = mos7840_get_port_private(port);
2098
2099 if (mos7840_port == NULL)
2100 return;
2101
Paul B Schroeder3f542972006-08-31 19:41:47 -05002102 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002103 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002104 return;
2105 }
2106
Tony Cook84fe6e72009-04-18 22:55:06 +09302107 dbg("%s", "setting termios - ");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002108
2109 cflag = tty->termios->c_cflag;
2110
Harvey Harrison441b62c2008-03-03 16:08:34 -08002111 dbg("%s - clfag %08x iflag %08x", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002112 tty->termios->c_cflag, RELEVANT_IFLAG(tty->termios->c_iflag));
Harvey Harrison441b62c2008-03-03 16:08:34 -08002113 dbg("%s - old clfag %08x old iflag %08x", __func__,
Alan Cox3d3ddce2007-10-15 20:53:35 +01002114 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
Harvey Harrison441b62c2008-03-03 16:08:34 -08002115 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002116
2117 /* change the port settings to the new ones specified */
2118
Alan Cox95da3102008-07-22 11:09:07 +01002119 mos7840_change_port_settings(tty, mos7840_port, old_termios);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002120
2121 if (!mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302122 dbg("%s", "URB KILLED !!!!!");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002123 return;
2124 }
2125
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002126 if (mos7840_port->read_urb_busy == false) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002127 mos7840_port->read_urb->dev = serial->dev;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002128 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002129 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2130 if (status) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002131 dbg("usb_submit_urb(read bulk) failed, status = %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002132 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002133 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002134 }
2135 }
2136 return;
2137}
2138
2139/*****************************************************************************
2140 * mos7840_get_lsr_info - get line status register info
2141 *
2142 * Purpose: Let user call ioctl() to get info when the UART physically
2143 * is emptied. On bus types like RS485, the transmitter must
2144 * release the bus after transmitting. This must be done when
2145 * the transmit shift register is empty, not be done when the
2146 * transmit holding register is empty. This functionality
2147 * allows an RS485 driver to be written in user space.
2148 *****************************************************************************/
2149
Alan Cox95da3102008-07-22 11:09:07 +01002150static int mos7840_get_lsr_info(struct tty_struct *tty,
Al Viro97c49652006-10-09 20:29:03 +01002151 unsigned int __user *value)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002152{
2153 int count;
2154 unsigned int result = 0;
2155
Alan Cox95da3102008-07-22 11:09:07 +01002156 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002157 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002158 dbg("%s -- Empty", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002159 result = TIOCSER_TEMT;
2160 }
2161
2162 if (copy_to_user(value, &result, sizeof(int)))
2163 return -EFAULT;
2164 return 0;
2165}
2166
2167/*****************************************************************************
Paul B Schroeder3f542972006-08-31 19:41:47 -05002168 * mos7840_get_serial_info
2169 * function to get information about serial port
2170 *****************************************************************************/
2171
2172static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
Al Viro97c49652006-10-09 20:29:03 +01002173 struct serial_struct __user *retinfo)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002174{
2175 struct serial_struct tmp;
2176
2177 if (mos7840_port == NULL)
2178 return -1;
2179
2180 if (!retinfo)
2181 return -EFAULT;
2182
2183 memset(&tmp, 0, sizeof(tmp));
2184
2185 tmp.type = PORT_16550A;
2186 tmp.line = mos7840_port->port->serial->minor;
2187 tmp.port = mos7840_port->port->number;
2188 tmp.irq = 0;
2189 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2190 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2191 tmp.baud_base = 9600;
2192 tmp.close_delay = 5 * HZ;
2193 tmp.closing_wait = 30 * HZ;
2194
2195 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2196 return -EFAULT;
2197 return 0;
2198}
2199
2200/*****************************************************************************
2201 * SerialIoctl
2202 * this function handles any ioctl calls to the driver
2203 *****************************************************************************/
2204
Alan Cox95da3102008-07-22 11:09:07 +01002205static int mos7840_ioctl(struct tty_struct *tty, struct file *file,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002206 unsigned int cmd, unsigned long arg)
2207{
Alan Cox95da3102008-07-22 11:09:07 +01002208 struct usb_serial_port *port = tty->driver_data;
Al Viro97c49652006-10-09 20:29:03 +01002209 void __user *argp = (void __user *)arg;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002210 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002211
2212 struct async_icount cnow;
2213 struct async_icount cprev;
2214 struct serial_icounter_struct icount;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002215
Harvey Harrison441b62c2008-03-03 16:08:34 -08002216 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302217 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002218 return -1;
2219 }
2220
2221 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002222
2223 if (mos7840_port == NULL)
2224 return -1;
2225
Harvey Harrison441b62c2008-03-03 16:08:34 -08002226 dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002227
2228 switch (cmd) {
2229 /* return number of bytes available */
2230
Paul B Schroeder3f542972006-08-31 19:41:47 -05002231 case TIOCSERGETLSR:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002232 dbg("%s (%d) TIOCSERGETLSR", __func__, port->number);
Alan Cox95da3102008-07-22 11:09:07 +01002233 return mos7840_get_lsr_info(tty, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002234 return 0;
2235
Paul B Schroeder3f542972006-08-31 19:41:47 -05002236 case TIOCGSERIAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002237 dbg("%s (%d) TIOCGSERIAL", __func__, port->number);
Al Viro97c49652006-10-09 20:29:03 +01002238 return mos7840_get_serial_info(mos7840_port, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002239
2240 case TIOCSSERIAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002241 dbg("%s (%d) TIOCSSERIAL", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002242 break;
2243
2244 case TIOCMIWAIT:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002245 dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002246 cprev = mos7840_port->icount;
2247 while (1) {
Alan Cox880af9d2008-07-22 11:16:12 +01002248 /* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002249 mos7840_port->delta_msr_cond = 0;
2250 wait_event_interruptible(mos7840_port->delta_msr_wait,
2251 (mos7840_port->
2252 delta_msr_cond == 1));
2253
2254 /* see if a signal did it */
2255 if (signal_pending(current))
2256 return -ERESTARTSYS;
2257 cnow = mos7840_port->icount;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002258 smp_rmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -05002259 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2260 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2261 return -EIO; /* no change => error */
2262 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2263 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2264 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2265 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2266 return 0;
2267 }
2268 cprev = cnow;
2269 }
2270 /* NOTREACHED */
2271 break;
2272
2273 case TIOCGICOUNT:
2274 cnow = mos7840_port->icount;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002275 smp_rmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -05002276 icount.cts = cnow.cts;
2277 icount.dsr = cnow.dsr;
2278 icount.rng = cnow.rng;
2279 icount.dcd = cnow.dcd;
2280 icount.rx = cnow.rx;
2281 icount.tx = cnow.tx;
2282 icount.frame = cnow.frame;
2283 icount.overrun = cnow.overrun;
2284 icount.parity = cnow.parity;
2285 icount.brk = cnow.brk;
2286 icount.buf_overrun = cnow.buf_overrun;
2287
Harvey Harrison441b62c2008-03-03 16:08:34 -08002288 dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002289 port->number, icount.rx, icount.tx);
Al Viro97c49652006-10-09 20:29:03 +01002290 if (copy_to_user(argp, &icount, sizeof(icount)))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002291 return -EFAULT;
2292 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002293 default:
2294 break;
2295 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002296 return -ENOIOCTLCMD;
2297}
2298
2299static int mos7840_calc_num_ports(struct usb_serial *serial)
2300{
Oliver Neukum0de9a702007-03-16 20:28:28 +01002301 int mos7840_num_ports = 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002302
Tony Cook84fe6e72009-04-18 22:55:06 +09302303 dbg("numberofendpoints: cur %d, alt %d",
2304 (int)serial->interface->cur_altsetting->desc.bNumEndpoints,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002305 (int)serial->interface->altsetting->desc.bNumEndpoints);
2306 if (serial->interface->cur_altsetting->desc.bNumEndpoints == 5) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002307 mos7840_num_ports = serial->num_ports = 2;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002308 } else if (serial->interface->cur_altsetting->desc.bNumEndpoints == 9) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002309 serial->num_bulk_in = 4;
2310 serial->num_bulk_out = 4;
2311 mos7840_num_ports = serial->num_ports = 4;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002312 }
Tony Cook84fe6e72009-04-18 22:55:06 +09302313 dbg ("mos7840_num_ports = %d", mos7840_num_ports);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002314 return mos7840_num_ports;
2315}
2316
2317/****************************************************************************
2318 * mos7840_startup
2319 ****************************************************************************/
2320
2321static int mos7840_startup(struct usb_serial *serial)
2322{
2323 struct moschip_port *mos7840_port;
2324 struct usb_device *dev;
2325 int i, status;
2326
2327 __u16 Data;
Tony Cook84fe6e72009-04-18 22:55:06 +09302328 dbg("%s", "mos7840_startup :Entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002329
2330 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302331 dbg("%s", "Invalid Handler");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002332 return -1;
2333 }
2334
2335 dev = serial->dev;
2336
Tony Cook84fe6e72009-04-18 22:55:06 +09302337 dbg("%s", "Entering...");
2338 dbg ("mos7840_startup: serial = %p", serial);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002339
2340 /* we set up the pointers to the endpoints in the mos7840_open *
2341 * function, as the structures aren't created yet. */
2342
2343 /* set up port private structures */
2344 for (i = 0; i < serial->num_ports; ++i) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302345 dbg ("mos7840_startup: configuring port %d............", i);
Burman Yan7ac9da12006-11-22 20:54:38 +02002346 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002347 if (mos7840_port == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002348 dev_err(&dev->dev, "%s - Out of memory\n", __func__);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002349 status = -ENOMEM;
2350 i--; /* don't follow NULL pointer cleaning up */
2351 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002352 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002353
Alan Cox880af9d2008-07-22 11:16:12 +01002354 /* Initialize all port interrupt end point to port 0 int
2355 * endpoint. Our device has only one interrupt end point
2356 * common to all port */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002357
2358 mos7840_port->port = serial->port[i];
2359 mos7840_set_port_private(serial->port[i], mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002360 spin_lock_init(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002361
Tony Cook37768ad2009-04-18 22:42:18 +09302362 /* minor is not initialised until later by
2363 * usb-serial.c:get_free_serial() and cannot therefore be used
2364 * to index device instances */
2365 mos7840_port->port_num = i + 1;
2366 dbg ("serial->port[i]->number = %d", serial->port[i]->number);
2367 dbg ("serial->port[i]->serial->minor = %d", serial->port[i]->serial->minor);
2368 dbg ("mos7840_port->port_num = %d", mos7840_port->port_num);
2369 dbg ("serial->minor = %d", serial->minor);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002370
2371 if (mos7840_port->port_num == 1) {
2372 mos7840_port->SpRegOffset = 0x0;
2373 mos7840_port->ControlRegOffset = 0x1;
2374 mos7840_port->DcrRegOffset = 0x4;
2375 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002376 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002377 mos7840_port->SpRegOffset = 0x8;
2378 mos7840_port->ControlRegOffset = 0x9;
2379 mos7840_port->DcrRegOffset = 0x16;
2380 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002381 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002382 mos7840_port->SpRegOffset = 0xa;
2383 mos7840_port->ControlRegOffset = 0xb;
2384 mos7840_port->DcrRegOffset = 0x19;
2385 } else if ((mos7840_port->port_num == 3)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002386 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002387 mos7840_port->SpRegOffset = 0xa;
2388 mos7840_port->ControlRegOffset = 0xb;
2389 mos7840_port->DcrRegOffset = 0x19;
2390 } else if ((mos7840_port->port_num == 4)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002391 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002392 mos7840_port->SpRegOffset = 0xc;
2393 mos7840_port->ControlRegOffset = 0xd;
2394 mos7840_port->DcrRegOffset = 0x1c;
2395 }
2396 mos7840_dump_serial_port(mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002397 mos7840_set_port_private(serial->port[i], mos7840_port);
2398
Alan Cox880af9d2008-07-22 11:16:12 +01002399 /* enable rx_disable bit in control register */
2400 status = mos7840_get_reg_sync(serial->port[i],
2401 mos7840_port->ControlRegOffset, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002402 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302403 dbg("Reading ControlReg failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002404 break;
2405 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302406 dbg("ControlReg Reading success val is %x, status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002407 Data, status);
Alan Cox880af9d2008-07-22 11:16:12 +01002408 Data |= 0x08; /* setting driver done bit */
2409 Data |= 0x04; /* sp1_bit to have cts change reflect in
2410 modem status reg */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002411
Alan Cox880af9d2008-07-22 11:16:12 +01002412 /* Data |= 0x20; //rx_disable bit */
2413 status = mos7840_set_reg_sync(serial->port[i],
Paul B Schroeder3f542972006-08-31 19:41:47 -05002414 mos7840_port->ControlRegOffset, Data);
2415 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302416 dbg("Writing ControlReg failed(rx_disable) status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002417 break;
2418 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302419 dbg("ControlReg Writing success(rx_disable) status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002420 status);
2421
Alan Cox880af9d2008-07-22 11:16:12 +01002422 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2423 and 0x24 in DCR3 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002424 Data = 0x01;
Alan Cox880af9d2008-07-22 11:16:12 +01002425 status = mos7840_set_reg_sync(serial->port[i],
2426 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002427 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302428 dbg("Writing DCR0 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002429 break;
2430 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302431 dbg("DCR0 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002432
2433 Data = 0x05;
Alan Cox880af9d2008-07-22 11:16:12 +01002434 status = mos7840_set_reg_sync(serial->port[i],
2435 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002436 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302437 dbg("Writing DCR1 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002438 break;
2439 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302440 dbg("DCR1 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002441
2442 Data = 0x24;
Alan Cox880af9d2008-07-22 11:16:12 +01002443 status = mos7840_set_reg_sync(serial->port[i],
2444 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002445 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302446 dbg("Writing DCR2 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002447 break;
2448 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302449 dbg("DCR2 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002450
Alan Cox880af9d2008-07-22 11:16:12 +01002451 /* write values in clkstart0x0 and clkmulti 0x20 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002452 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01002453 status = mos7840_set_reg_sync(serial->port[i],
Paul B Schroeder3f542972006-08-31 19:41:47 -05002454 CLK_START_VALUE_REGISTER, Data);
2455 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302456 dbg("Writing CLK_START_VALUE_REGISTER failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002457 break;
2458 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302459 dbg("CLK_START_VALUE_REGISTER Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002460
2461 Data = 0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01002462 status = mos7840_set_reg_sync(serial->port[i],
2463 CLK_MULTI_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002464 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302465 dbg("Writing CLK_MULTI_REGISTER failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002466 status);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002467 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002468 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302469 dbg("CLK_MULTI_REGISTER Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002470 status);
2471
Alan Cox880af9d2008-07-22 11:16:12 +01002472 /* write value 0x0 to scratchpad register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002473 Data = 0x00;
Alan Cox880af9d2008-07-22 11:16:12 +01002474 status = mos7840_set_uart_reg(serial->port[i],
2475 SCRATCH_PAD_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002476 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302477 dbg("Writing SCRATCH_PAD_REGISTER failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002478 status);
2479 break;
2480 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302481 dbg("SCRATCH_PAD_REGISTER Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002482 status);
2483
Alan Cox880af9d2008-07-22 11:16:12 +01002484 /* Zero Length flag register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002485 if ((mos7840_port->port_num != 1)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002486 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002487
2488 Data = 0xff;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002489 status = mos7840_set_reg_sync(serial->port[i],
Alan Cox880af9d2008-07-22 11:16:12 +01002490 (__u16) (ZLP_REG1 +
2491 ((__u16)mos7840_port->port_num)), Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09302492 dbg("ZLIP offset %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002493 (__u16) (ZLP_REG1 +
Alan Cox880af9d2008-07-22 11:16:12 +01002494 ((__u16) mos7840_port->port_num)));
Paul B Schroeder3f542972006-08-31 19:41:47 -05002495 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302496 dbg("Writing ZLP_REG%d failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002497 i + 2, status);
2498 break;
2499 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302500 dbg("ZLP_REG%d Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002501 i + 2, status);
2502 } else {
2503 Data = 0xff;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002504 status = mos7840_set_reg_sync(serial->port[i],
Alan Cox880af9d2008-07-22 11:16:12 +01002505 (__u16) (ZLP_REG1 +
2506 ((__u16)mos7840_port->port_num) - 0x1), Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09302507 dbg("ZLIP offset %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002508 (__u16) (ZLP_REG1 +
2509 ((__u16) mos7840_port->port_num) - 0x1));
2510 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302511 dbg("Writing ZLP_REG%d failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002512 i + 1, status);
2513 break;
2514 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302515 dbg("ZLP_REG%d Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002516 i + 1, status);
2517
2518 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01002519 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002520 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
Alan Cox880af9d2008-07-22 11:16:12 +01002521 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2522 GFP_KERNEL);
2523 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2524 !mos7840_port->dr) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002525 status = -ENOMEM;
2526 goto error;
2527 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002528 }
Tony Cook84fe6e72009-04-18 22:55:06 +09302529 dbg ("mos7840_startup: all ports configured...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002530
Alan Cox880af9d2008-07-22 11:16:12 +01002531 /* Zero Length flag enable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002532 Data = 0x0f;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002533 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2534 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302535 dbg("Writing ZLP_REG5 failed status-0x%x", status);
Roel Kluin7ced46c2007-10-27 03:36:37 +02002536 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002537 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302538 dbg("ZLP_REG5 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002539
2540 /* setting configuration feature to one */
2541 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
Al Viro97c49652006-10-09 20:29:03 +01002542 (__u8) 0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5 * HZ);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002543 return 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002544error:
2545 for (/* nothing */; i >= 0; i--) {
2546 mos7840_port = mos7840_get_port_private(serial->port[i]);
2547
2548 kfree(mos7840_port->dr);
2549 kfree(mos7840_port->ctrl_buf);
2550 usb_free_urb(mos7840_port->control_urb);
2551 kfree(mos7840_port);
2552 serial->port[i] = NULL;
2553 }
2554 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002555}
2556
2557/****************************************************************************
Alan Sternf9c99bb2009-06-02 11:53:55 -04002558 * mos7840_disconnect
Paul B Schroeder3f542972006-08-31 19:41:47 -05002559 * This function is called whenever the device is removed from the usb bus.
2560 ****************************************************************************/
2561
Alan Sternf9c99bb2009-06-02 11:53:55 -04002562static void mos7840_disconnect(struct usb_serial *serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002563{
2564 int i;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002565 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002566 struct moschip_port *mos7840_port;
Alan Sternf9c99bb2009-06-02 11:53:55 -04002567 dbg("%s", " disconnect :entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002568
2569 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302570 dbg("%s", "Invalid Handler");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002571 return;
2572 }
2573
Alan Cox880af9d2008-07-22 11:16:12 +01002574 /* check for the ports to be closed,close the ports and disconnect */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002575
2576 /* free private structure allocated for serial port *
2577 * stop reads and writes on all ports */
2578
2579 for (i = 0; i < serial->num_ports; ++i) {
2580 mos7840_port = mos7840_get_port_private(serial->port[i]);
Tony Cook37768ad2009-04-18 22:42:18 +09302581 dbg ("mos7840_port %d = %p", i, mos7840_port);
2582 if (mos7840_port) {
2583 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
2584 mos7840_port->zombie = 1;
2585 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
2586 usb_kill_urb(mos7840_port->control_urb);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002587 }
2588 }
2589
2590 dbg("%s", "Thank u :: ");
2591
2592}
2593
2594/****************************************************************************
2595 * mos7840_release
2596 * This function is called when the usb_serial structure is freed.
2597 ****************************************************************************/
2598
2599static void mos7840_release(struct usb_serial *serial)
2600{
2601 int i;
2602 struct moschip_port *mos7840_port;
2603 dbg("%s", " release :entering..........");
2604
2605 if (!serial) {
2606 dbg("%s", "Invalid Handler");
2607 return;
2608 }
2609
2610 /* check for the ports to be closed,close the ports and disconnect */
2611
2612 /* free private structure allocated for serial port *
2613 * stop reads and writes on all ports */
2614
2615 for (i = 0; i < serial->num_ports; ++i) {
2616 mos7840_port = mos7840_get_port_private(serial->port[i]);
2617 dbg("mos7840_port %d = %p", i, mos7840_port);
2618 if (mos7840_port) {
Tony Cook37768ad2009-04-18 22:42:18 +09302619 kfree(mos7840_port->ctrl_buf);
2620 kfree(mos7840_port->dr);
2621 kfree(mos7840_port);
2622 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002623 }
2624
Tony Cook84fe6e72009-04-18 22:55:06 +09302625 dbg("%s", "Thank u :: ");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002626
2627}
2628
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002629static struct usb_driver io_driver = {
2630 .name = "mos7840",
2631 .probe = usb_serial_probe,
2632 .disconnect = usb_serial_disconnect,
2633 .id_table = moschip_id_table_combined,
2634 .no_dynamic_id = 1,
2635};
2636
Paul B Schroeder3f542972006-08-31 19:41:47 -05002637static struct usb_serial_driver moschip7840_4port_device = {
2638 .driver = {
2639 .owner = THIS_MODULE,
2640 .name = "mos7840",
2641 },
2642 .description = DRIVER_DESC,
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002643 .usb_driver = &io_driver,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002644 .id_table = moschip_port_id_table,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002645 .num_ports = 4,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002646 .open = mos7840_open,
2647 .close = mos7840_close,
2648 .write = mos7840_write,
2649 .write_room = mos7840_write_room,
2650 .chars_in_buffer = mos7840_chars_in_buffer,
2651 .throttle = mos7840_throttle,
2652 .unthrottle = mos7840_unthrottle,
2653 .calc_num_ports = mos7840_calc_num_ports,
2654#ifdef MCSSerialProbe
2655 .probe = mos7840_serial_probe,
2656#endif
2657 .ioctl = mos7840_ioctl,
2658 .set_termios = mos7840_set_termios,
2659 .break_ctl = mos7840_break,
2660 .tiocmget = mos7840_tiocmget,
2661 .tiocmset = mos7840_tiocmset,
2662 .attach = mos7840_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -04002663 .disconnect = mos7840_disconnect,
2664 .release = mos7840_release,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002665 .read_bulk_callback = mos7840_bulk_in_callback,
2666 .read_int_callback = mos7840_interrupt_callback,
2667};
2668
Paul B Schroeder3f542972006-08-31 19:41:47 -05002669/****************************************************************************
2670 * moschip7840_init
2671 * This is called by the module subsystem, or on startup to initialize us
2672 ****************************************************************************/
2673static int __init moschip7840_init(void)
2674{
2675 int retval;
2676
Tony Cook84fe6e72009-04-18 22:55:06 +09302677 dbg("%s", " mos7840_init :entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002678
2679 /* Register with the usb serial */
2680 retval = usb_serial_register(&moschip7840_4port_device);
2681
2682 if (retval)
2683 goto failed_port_device_register;
2684
Tony Cook84fe6e72009-04-18 22:55:06 +09302685 dbg("%s", "Entering...");
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07002686 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
2687 DRIVER_DESC "\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002688
2689 /* Register with the usb */
2690 retval = usb_register(&io_driver);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002691 if (retval == 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302692 dbg("%s", "Leaving...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002693 return 0;
2694 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002695 usb_serial_deregister(&moschip7840_4port_device);
Alan Cox880af9d2008-07-22 11:16:12 +01002696failed_port_device_register:
Paul B Schroeder3f542972006-08-31 19:41:47 -05002697 return retval;
2698}
2699
2700/****************************************************************************
2701 * moschip7840_exit
2702 * Called when the driver is about to be unloaded.
2703 ****************************************************************************/
2704static void __exit moschip7840_exit(void)
2705{
2706
Tony Cook84fe6e72009-04-18 22:55:06 +09302707 dbg("%s", " mos7840_exit :entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002708
2709 usb_deregister(&io_driver);
2710
2711 usb_serial_deregister(&moschip7840_4port_device);
2712
Tony Cook84fe6e72009-04-18 22:55:06 +09302713 dbg("%s", "Entering...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002714}
2715
2716module_init(moschip7840_init);
2717module_exit(moschip7840_exit);
2718
2719/* Module information */
2720MODULE_DESCRIPTION(DRIVER_DESC);
2721MODULE_LICENSE("GPL");
2722
2723module_param(debug, bool, S_IRUGO | S_IWUSR);
2724MODULE_PARM_DESC(debug, "Debug enabled or not");