blob: 485fa9c5b10766698caabf03c580f92715c86bba [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>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040029#include <linux/smp_lock.h>
Paul B Schroeder3f542972006-08-31 19:41:47 -050030#include <linux/tty.h>
31#include <linux/tty_driver.h>
32#include <linux/tty_flip.h>
33#include <linux/module.h>
34#include <linux/serial.h>
35#include <linux/usb.h>
36#include <linux/usb/serial.h>
Alan Cox880af9d2008-07-22 11:16:12 +010037#include <linux/uaccess.h>
Paul B Schroeder3f542972006-08-31 19:41:47 -050038
39/*
40 * Version Information
41 */
Tony Cook37768ad2009-04-18 22:42:18 +093042#define DRIVER_VERSION "1.3.2"
Paul B Schroeder3f542972006-08-31 19:41:47 -050043#define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
44
45/*
46 * 16C50 UART register defines
47 */
48
49#define LCR_BITS_5 0x00 /* 5 bits/char */
50#define LCR_BITS_6 0x01 /* 6 bits/char */
51#define LCR_BITS_7 0x02 /* 7 bits/char */
52#define LCR_BITS_8 0x03 /* 8 bits/char */
53#define LCR_BITS_MASK 0x03 /* Mask for bits/char field */
54
55#define LCR_STOP_1 0x00 /* 1 stop bit */
56#define LCR_STOP_1_5 0x04 /* 1.5 stop bits (if 5 bits/char) */
57#define LCR_STOP_2 0x04 /* 2 stop bits (if 6-8 bits/char) */
58#define LCR_STOP_MASK 0x04 /* Mask for stop bits field */
59
60#define LCR_PAR_NONE 0x00 /* No parity */
61#define LCR_PAR_ODD 0x08 /* Odd parity */
62#define LCR_PAR_EVEN 0x18 /* Even parity */
63#define LCR_PAR_MARK 0x28 /* Force parity bit to 1 */
64#define LCR_PAR_SPACE 0x38 /* Force parity bit to 0 */
65#define LCR_PAR_MASK 0x38 /* Mask for parity field */
66
67#define LCR_SET_BREAK 0x40 /* Set Break condition */
68#define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
69
70#define MCR_DTR 0x01 /* Assert DTR */
71#define MCR_RTS 0x02 /* Assert RTS */
72#define MCR_OUT1 0x04 /* Loopback only: Sets state of RI */
73#define MCR_MASTER_IE 0x08 /* Enable interrupt outputs */
74#define MCR_LOOPBACK 0x10 /* Set internal (digital) loopback mode */
75#define MCR_XON_ANY 0x20 /* Enable any char to exit XOFF mode */
76
77#define MOS7840_MSR_CTS 0x10 /* Current state of CTS */
78#define MOS7840_MSR_DSR 0x20 /* Current state of DSR */
79#define MOS7840_MSR_RI 0x40 /* Current state of RI */
80#define MOS7840_MSR_CD 0x80 /* Current state of CD */
81
82/*
83 * Defines used for sending commands to port
84 */
85
Alan Cox880af9d2008-07-22 11:16:12 +010086#define WAIT_FOR_EVER (HZ * 0) /* timeout urb is wait for ever */
87#define MOS_WDR_TIMEOUT (HZ * 5) /* default urb timeout */
Paul B Schroeder3f542972006-08-31 19:41:47 -050088
89#define MOS_PORT1 0x0200
90#define MOS_PORT2 0x0300
91#define MOS_VENREG 0x0000
92#define MOS_MAX_PORT 0x02
93#define MOS_WRITE 0x0E
94#define MOS_READ 0x0D
95
96/* Requests */
97#define MCS_RD_RTYPE 0xC0
98#define MCS_WR_RTYPE 0x40
99#define MCS_RDREQ 0x0D
100#define MCS_WRREQ 0x0E
101#define MCS_CTRL_TIMEOUT 500
102#define VENDOR_READ_LENGTH (0x01)
103
104#define MAX_NAME_LEN 64
105
Alan Cox880af9d2008-07-22 11:16:12 +0100106#define ZLP_REG1 0x3A /* Zero_Flag_Reg1 58 */
107#define ZLP_REG5 0x3E /* Zero_Flag_Reg5 62 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500108
109/* For higher baud Rates use TIOCEXBAUD */
110#define TIOCEXBAUD 0x5462
111
112/* vendor id and device id defines */
113
David Ludlow11e1abb2008-02-25 17:30:52 -0500114/* The native mos7840/7820 component */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500115#define USB_VENDOR_ID_MOSCHIP 0x9710
116#define MOSCHIP_DEVICE_ID_7840 0x7840
117#define MOSCHIP_DEVICE_ID_7820 0x7820
David Ludlow11e1abb2008-02-25 17:30:52 -0500118/* The native component can have its vendor/device id's overridden
119 * in vendor-specific implementations. Such devices can be handled
120 * by making a change here, in moschip_port_id_table, and in
121 * moschip_id_table_combined
122 */
123#define USB_VENDOR_ID_BANDB 0x0856
Cliff Brakeacf509a2009-12-01 09:53:43 -0500124#define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
125#define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
126#define BANDB_DEVICE_ID_US9ML2_2 0xAC29
127#define BANDB_DEVICE_ID_US9ML2_4 0xAC30
128#define BANDB_DEVICE_ID_USPTL4_2 0xAC31
129#define BANDB_DEVICE_ID_USPTL4_4 0xAC32
David Ludlow11e1abb2008-02-25 17:30:52 -0500130#define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
Cliff Brakeacf509a2009-12-01 09:53:43 -0500131#define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
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
183static struct usb_device_id moschip_port_id_table[] = {
184 {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)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930194 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000195 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500196 {} /* terminating entry */
197};
198
199static __devinitdata struct usb_device_id moschip_id_table_combined[] = {
200 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
201 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500202 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
207 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500208 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500209 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930210 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000211 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500212 {} /* terminating entry */
213};
214
215MODULE_DEVICE_TABLE(usb, moschip_id_table_combined);
216
217/* This structure holds all of the local port information */
218
219struct moschip_port {
220 int port_num; /*Actual port number in the device(1,2,etc) */
221 struct urb *write_urb; /* write URB for this port */
222 struct urb *read_urb; /* read URB for this port */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100223 struct urb *int_urb;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500224 __u8 shadowLCR; /* last LCR value received */
225 __u8 shadowMCR; /* last MCR value received */
226 char open;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100227 char open_ports;
228 char zombie;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500229 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
230 wait_queue_head_t delta_msr_wait; /* for handling sleeping while waiting for msr change to happen */
231 int delta_msr_cond;
232 struct async_icount icount;
233 struct usb_serial_port *port; /* loop back to the owner of this object */
234
Alan Cox880af9d2008-07-22 11:16:12 +0100235 /* Offsets */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500236 __u8 SpRegOffset;
237 __u8 ControlRegOffset;
238 __u8 DcrRegOffset;
Alan Cox880af9d2008-07-22 11:16:12 +0100239 /* for processing control URBS in interrupt context */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500240 struct urb *control_urb;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100241 struct usb_ctrlrequest *dr;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500242 char *ctrl_buf;
243 int MsrLsr;
244
Oliver Neukum0de9a702007-03-16 20:28:28 +0100245 spinlock_t pool_lock;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500246 struct urb *write_urb_pool[NUM_URBS];
Oliver Neukum0de9a702007-03-16 20:28:28 +0100247 char busy[NUM_URBS];
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800248 bool read_urb_busy;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500249};
250
251
252static int debug;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500253
254/*
255 * mos7840_set_reg_sync
256 * To set the Control register by calling usb_fill_control_urb function
257 * by passing usb_sndctrlpipe function as parameter.
258 */
259
260static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
261 __u16 val)
262{
263 struct usb_device *dev = port->serial->dev;
264 val = val & 0x00ff;
Tony Cook84fe6e72009-04-18 22:55:06 +0930265 dbg("mos7840_set_reg_sync offset is %x, value %x", reg, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500266
267 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
268 MCS_WR_RTYPE, val, reg, NULL, 0,
269 MOS_WDR_TIMEOUT);
270}
271
272/*
273 * mos7840_get_reg_sync
274 * To set the Uart register by calling usb_fill_control_urb function by
275 * passing usb_rcvctrlpipe function as parameter.
276 */
277
278static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100279 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500280{
281 struct usb_device *dev = port->serial->dev;
282 int ret = 0;
283
284 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
285 MCS_RD_RTYPE, 0, reg, val, VENDOR_READ_LENGTH,
286 MOS_WDR_TIMEOUT);
Tony Cook84fe6e72009-04-18 22:55:06 +0930287 dbg("mos7840_get_reg_sync offset is %x, return val %x", reg, *val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500288 *val = (*val) & 0x00ff;
289 return ret;
290}
291
292/*
293 * mos7840_set_uart_reg
294 * To set the Uart register by calling usb_fill_control_urb function by
295 * passing usb_sndctrlpipe function as parameter.
296 */
297
298static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
299 __u16 val)
300{
301
302 struct usb_device *dev = port->serial->dev;
303 val = val & 0x00ff;
Alan Cox880af9d2008-07-22 11:16:12 +0100304 /* For the UART control registers, the application number need
305 to be Or'ed */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100306 if (port->serial->num_ports == 4) {
Alan Cox880af9d2008-07-22 11:16:12 +0100307 val |= (((__u16) port->number -
308 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930309 dbg("mos7840_set_uart_reg application number is %x", val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500310 } else {
311 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100312 val |= (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500313 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930314 dbg("mos7840_set_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500315 val);
316 } else {
317 val |=
318 (((__u16) port->number -
319 (__u16) (port->serial->minor)) + 2) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930320 dbg("mos7840_set_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500321 val);
322 }
323 }
324 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
325 MCS_WR_RTYPE, val, reg, NULL, 0,
326 MOS_WDR_TIMEOUT);
327
328}
329
330/*
331 * mos7840_get_uart_reg
332 * To set the Control register by calling usb_fill_control_urb function
333 * by passing usb_rcvctrlpipe function as parameter.
334 */
335static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100336 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500337{
338 struct usb_device *dev = port->serial->dev;
339 int ret = 0;
340 __u16 Wval;
341
Tony Cook84fe6e72009-04-18 22:55:06 +0930342 /* dbg("application number is %4x",
Alan Cox880af9d2008-07-22 11:16:12 +0100343 (((__u16)port->number - (__u16)(port->serial->minor))+1)<<8); */
344 /* Wval is same as application number */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100345 if (port->serial->num_ports == 4) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500346 Wval =
347 (((__u16) port->number - (__u16) (port->serial->minor)) +
348 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930349 dbg("mos7840_get_uart_reg application number is %x", Wval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500350 } else {
351 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100352 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500353 (__u16) (port->serial->minor)) + 1) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930354 dbg("mos7840_get_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500355 Wval);
356 } else {
Alan Cox880af9d2008-07-22 11:16:12 +0100357 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500358 (__u16) (port->serial->minor)) + 2) << 8;
Tony Cook84fe6e72009-04-18 22:55:06 +0930359 dbg("mos7840_get_uart_reg application number is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500360 Wval);
361 }
362 }
363 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
364 MCS_RD_RTYPE, Wval, reg, val, VENDOR_READ_LENGTH,
365 MOS_WDR_TIMEOUT);
366 *val = (*val) & 0x00ff;
367 return ret;
368}
369
370static void mos7840_dump_serial_port(struct moschip_port *mos7840_port)
371{
372
Tony Cook84fe6e72009-04-18 22:55:06 +0930373 dbg("***************************************");
374 dbg("SpRegOffset is %2x", mos7840_port->SpRegOffset);
375 dbg("ControlRegOffset is %2x", mos7840_port->ControlRegOffset);
376 dbg("DCRRegOffset is %2x", mos7840_port->DcrRegOffset);
377 dbg("***************************************");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500378
379}
380
381/************************************************************************/
382/************************************************************************/
383/* I N T E R F A C E F U N C T I O N S */
384/* I N T E R F A C E F U N C T I O N S */
385/************************************************************************/
386/************************************************************************/
387
388static inline void mos7840_set_port_private(struct usb_serial_port *port,
389 struct moschip_port *data)
390{
391 usb_set_serial_port_data(port, (void *)data);
392}
393
394static inline struct moschip_port *mos7840_get_port_private(struct
395 usb_serial_port
396 *port)
397{
398 return (struct moschip_port *)usb_get_serial_port_data(port);
399}
400
Oliver Neukum0de9a702007-03-16 20:28:28 +0100401static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500402{
403 struct moschip_port *mos7840_port;
404 struct async_icount *icount;
405 mos7840_port = port;
406 icount = &mos7840_port->icount;
407 if (new_msr &
408 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
409 MOS_MSR_DELTA_CD)) {
410 icount = &mos7840_port->icount;
411
412 /* update input line counters */
413 if (new_msr & MOS_MSR_DELTA_CTS) {
414 icount->cts++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100415 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500416 }
417 if (new_msr & MOS_MSR_DELTA_DSR) {
418 icount->dsr++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100419 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500420 }
421 if (new_msr & MOS_MSR_DELTA_CD) {
422 icount->dcd++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100423 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500424 }
425 if (new_msr & MOS_MSR_DELTA_RI) {
426 icount->rng++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100427 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500428 }
429 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500430}
431
Oliver Neukum0de9a702007-03-16 20:28:28 +0100432static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500433{
434 struct async_icount *icount;
435
Harvey Harrison441b62c2008-03-03 16:08:34 -0800436 dbg("%s - %02x", __func__, new_lsr);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500437
438 if (new_lsr & SERIAL_LSR_BI) {
Alan Cox880af9d2008-07-22 11:16:12 +0100439 /*
440 * Parity and Framing errors only count if they
441 * occur exclusive of a break being
442 * received.
443 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500444 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
445 }
446
447 /* update input line counters */
448 icount = &port->icount;
449 if (new_lsr & SERIAL_LSR_BI) {
450 icount->brk++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100451 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500452 }
453 if (new_lsr & SERIAL_LSR_OE) {
454 icount->overrun++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100455 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500456 }
457 if (new_lsr & SERIAL_LSR_PE) {
458 icount->parity++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100459 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500460 }
461 if (new_lsr & SERIAL_LSR_FE) {
462 icount->frame++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100463 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500464 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500465}
466
467/************************************************************************/
468/************************************************************************/
469/* U S B C A L L B A C K F U N C T I O N S */
470/* U S B C A L L B A C K F U N C T I O N S */
471/************************************************************************/
472/************************************************************************/
473
David Howells7d12e782006-10-05 14:55:46 +0100474static void mos7840_control_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500475{
476 unsigned char *data;
477 struct moschip_port *mos7840_port;
478 __u8 regval = 0x0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100479 int result = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700480 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500481
Ming Leicdc97792008-02-24 18:41:47 +0800482 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100483
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700484 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500485 case 0:
486 /* success */
487 break;
488 case -ECONNRESET:
489 case -ENOENT:
490 case -ESHUTDOWN:
491 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800492 dbg("%s - urb shutting down with status: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700493 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500494 return;
495 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800496 dbg("%s - nonzero urb status received: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700497 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500498 goto exit;
499 }
500
Tony Cook84fe6e72009-04-18 22:55:06 +0930501 dbg("%s urb buffer size is %d", __func__, urb->actual_length);
502 dbg("%s mos7840_port->MsrLsr is %d port %d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500503 mos7840_port->MsrLsr, mos7840_port->port_num);
504 data = urb->transfer_buffer;
505 regval = (__u8) data[0];
Tony Cook84fe6e72009-04-18 22:55:06 +0930506 dbg("%s data is %x", __func__, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500507 if (mos7840_port->MsrLsr == 0)
508 mos7840_handle_new_msr(mos7840_port, regval);
509 else if (mos7840_port->MsrLsr == 1)
510 mos7840_handle_new_lsr(mos7840_port, regval);
511
Oliver Neukum0de9a702007-03-16 20:28:28 +0100512exit:
513 spin_lock(&mos7840_port->pool_lock);
514 if (!mos7840_port->zombie)
515 result = usb_submit_urb(mos7840_port->int_urb, GFP_ATOMIC);
516 spin_unlock(&mos7840_port->pool_lock);
517 if (result) {
518 dev_err(&urb->dev->dev,
519 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800520 __func__, result);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100521 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500522}
523
524static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100525 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500526{
527 struct usb_device *dev = mcs->port->serial->dev;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100528 struct usb_ctrlrequest *dr = mcs->dr;
529 unsigned char *buffer = mcs->ctrl_buf;
530 int ret;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500531
Paul B Schroeder3f542972006-08-31 19:41:47 -0500532 dr->bRequestType = MCS_RD_RTYPE;
533 dr->bRequest = MCS_RDREQ;
Alan Cox880af9d2008-07-22 11:16:12 +0100534 dr->wValue = cpu_to_le16(Wval); /* 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500535 dr->wIndex = cpu_to_le16(reg);
536 dr->wLength = cpu_to_le16(2);
537
538 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
539 (unsigned char *)dr, buffer, 2,
540 mos7840_control_callback, mcs);
541 mcs->control_urb->transfer_buffer_length = 2;
542 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
543 return ret;
544}
545
546/*****************************************************************************
547 * mos7840_interrupt_callback
548 * this is the callback function for when we have received data on the
549 * interrupt endpoint.
550 *****************************************************************************/
551
David Howells7d12e782006-10-05 14:55:46 +0100552static void mos7840_interrupt_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500553{
554 int result;
555 int length;
556 struct moschip_port *mos7840_port;
557 struct usb_serial *serial;
558 __u16 Data;
559 unsigned char *data;
560 __u8 sp[5], st;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100561 int i, rv = 0;
562 __u16 wval, wreg = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700563 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500564
Tony Cook84fe6e72009-04-18 22:55:06 +0930565 dbg("%s", " : Entering");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500566
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700567 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500568 case 0:
569 /* success */
570 break;
571 case -ECONNRESET:
572 case -ENOENT:
573 case -ESHUTDOWN:
574 /* this urb is terminated, clean up */
Harvey Harrison441b62c2008-03-03 16:08:34 -0800575 dbg("%s - urb shutting down with status: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700576 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500577 return;
578 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -0800579 dbg("%s - nonzero urb status received: %d", __func__,
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700580 status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500581 goto exit;
582 }
583
584 length = urb->actual_length;
585 data = urb->transfer_buffer;
586
Ming Leicdc97792008-02-24 18:41:47 +0800587 serial = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500588
589 /* Moschip get 5 bytes
590 * Byte 1 IIR Port 1 (port.number is 0)
591 * Byte 2 IIR Port 2 (port.number is 1)
592 * Byte 3 IIR Port 3 (port.number is 2)
593 * Byte 4 IIR Port 4 (port.number is 3)
594 * Byte 5 FIFO status for both */
595
596 if (length && length > 5) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930597 dbg("%s", "Wrong data !!!");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500598 return;
599 }
600
601 sp[0] = (__u8) data[0];
602 sp[1] = (__u8) data[1];
603 sp[2] = (__u8) data[2];
604 sp[3] = (__u8) data[3];
605 st = (__u8) data[4];
606
607 for (i = 0; i < serial->num_ports; i++) {
608 mos7840_port = mos7840_get_port_private(serial->port[i]);
609 wval =
610 (((__u16) serial->port[i]->number -
611 (__u16) (serial->minor)) + 1) << 8;
612 if (mos7840_port->open) {
613 if (sp[i] & 0x01) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930614 dbg("SP%d No Interrupt !!!", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500615 } else {
616 switch (sp[i] & 0x0f) {
617 case SERIAL_IIR_RLS:
618 dbg("Serial Port %d: Receiver status error or ", i);
Tony Cook84fe6e72009-04-18 22:55:06 +0930619 dbg("address bit detected in 9-bit mode");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500620 mos7840_port->MsrLsr = 1;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100621 wreg = LINE_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500622 break;
623 case SERIAL_IIR_MS:
Tony Cook84fe6e72009-04-18 22:55:06 +0930624 dbg("Serial Port %d: Modem status change", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500625 mos7840_port->MsrLsr = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100626 wreg = MODEM_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500627 break;
628 }
Oliver Neukum0de9a702007-03-16 20:28:28 +0100629 spin_lock(&mos7840_port->pool_lock);
630 if (!mos7840_port->zombie) {
631 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
632 } else {
633 spin_unlock(&mos7840_port->pool_lock);
634 return;
635 }
636 spin_unlock(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500637 }
638 }
639 }
Alan Cox880af9d2008-07-22 11:16:12 +0100640 if (!(rv < 0))
641 /* the completion handler for the control urb will resubmit */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100642 return;
643exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -0500644 result = usb_submit_urb(urb, GFP_ATOMIC);
645 if (result) {
646 dev_err(&urb->dev->dev,
647 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800648 __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500649 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500650}
651
652static int mos7840_port_paranoia_check(struct usb_serial_port *port,
653 const char *function)
654{
655 if (!port) {
656 dbg("%s - port == NULL", function);
657 return -1;
658 }
659 if (!port->serial) {
660 dbg("%s - port->serial == NULL", function);
661 return -1;
662 }
663
664 return 0;
665}
666
667/* Inline functions to check the sanity of a pointer that is passed to us */
668static int mos7840_serial_paranoia_check(struct usb_serial *serial,
669 const char *function)
670{
671 if (!serial) {
672 dbg("%s - serial == NULL", function);
673 return -1;
674 }
675 if (!serial->type) {
676 dbg("%s - serial->type == NULL!", function);
677 return -1;
678 }
679
680 return 0;
681}
682
683static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
684 const char *function)
685{
686 /* if no port was specified, or it fails a paranoia check */
687 if (!port ||
688 mos7840_port_paranoia_check(port, function) ||
689 mos7840_serial_paranoia_check(port->serial, function)) {
Alan Cox880af9d2008-07-22 11:16:12 +0100690 /* then say that we don't have a valid usb_serial thing,
691 * which will end up genrating -ENODEV return values */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500692 return NULL;
693 }
694
695 return port->serial;
696}
697
698/*****************************************************************************
699 * mos7840_bulk_in_callback
700 * this is the callback function for when we have received data on the
701 * bulk in endpoint.
702 *****************************************************************************/
703
David Howells7d12e782006-10-05 14:55:46 +0100704static void mos7840_bulk_in_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500705{
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700706 int retval;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500707 unsigned char *data;
708 struct usb_serial *serial;
709 struct usb_serial_port *port;
710 struct moschip_port *mos7840_port;
711 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700712 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500713
Ming Leicdc97792008-02-24 18:41:47 +0800714 mos7840_port = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500715 if (!mos7840_port) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930716 dbg("%s", "NULL mos7840_port pointer");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800717 mos7840_port->read_urb_busy = false;
718 return;
719 }
720
721 if (status) {
722 dbg("nonzero read bulk status received: %d", status);
723 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500724 return;
725 }
726
727 port = (struct usb_serial_port *)mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800728 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930729 dbg("%s", "Port Paranoia failed");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800730 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500731 return;
732 }
733
Harvey Harrison441b62c2008-03-03 16:08:34 -0800734 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500735 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930736 dbg("%s", "Bad serial pointer");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800737 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500738 return;
739 }
740
Tony Cook84fe6e72009-04-18 22:55:06 +0930741 dbg("%s", "Entering... ");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500742
743 data = urb->transfer_buffer;
744
Tony Cook84fe6e72009-04-18 22:55:06 +0930745 dbg("%s", "Entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500746
747 if (urb->actual_length) {
Alan Cox4a90f092008-10-13 10:39:46 +0100748 tty = tty_port_tty_get(&mos7840_port->port->port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500749 if (tty) {
750 tty_buffer_request_room(tty, urb->actual_length);
751 tty_insert_flip_string(tty, data, urb->actual_length);
Tony Cook84fe6e72009-04-18 22:55:06 +0930752 dbg(" %s ", data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500753 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100754 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500755 }
756 mos7840_port->icount.rx += urb->actual_length;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100757 smp_wmb();
Tony Cook84fe6e72009-04-18 22:55:06 +0930758 dbg("mos7840_port->icount.rx is %d:",
Paul B Schroeder3f542972006-08-31 19:41:47 -0500759 mos7840_port->icount.rx);
760 }
761
762 if (!mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930763 dbg("%s", "URB KILLED !!!");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800764 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500765 return;
766 }
767
Paul B Schroeder3f542972006-08-31 19:41:47 -0500768
Oliver Neukum0de9a702007-03-16 20:28:28 +0100769 mos7840_port->read_urb->dev = serial->dev;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500770
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800771 mos7840_port->read_urb_busy = true;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700772 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100773
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700774 if (retval) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800775 dbg("usb_submit_urb(read bulk) failed, retval = %d", retval);
776 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500777 }
778}
779
780/*****************************************************************************
781 * mos7840_bulk_out_data_callback
Alan Cox880af9d2008-07-22 11:16:12 +0100782 * this is the callback function for when we have finished sending
783 * serial data on the bulk out endpoint.
Paul B Schroeder3f542972006-08-31 19:41:47 -0500784 *****************************************************************************/
785
David Howells7d12e782006-10-05 14:55:46 +0100786static void mos7840_bulk_out_data_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500787{
788 struct moschip_port *mos7840_port;
789 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700790 int status = urb->status;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100791 int i;
792
Ming Leicdc97792008-02-24 18:41:47 +0800793 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100794 spin_lock(&mos7840_port->pool_lock);
795 for (i = 0; i < NUM_URBS; i++) {
796 if (urb == mos7840_port->write_urb_pool[i]) {
797 mos7840_port->busy[i] = 0;
798 break;
799 }
800 }
801 spin_unlock(&mos7840_port->pool_lock);
802
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700803 if (status) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930804 dbg("nonzero write bulk status received:%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500805 return;
806 }
807
Harvey Harrison441b62c2008-03-03 16:08:34 -0800808 if (mos7840_port_paranoia_check(mos7840_port->port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930809 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500810 return;
811 }
812
Tony Cook84fe6e72009-04-18 22:55:06 +0930813 dbg("%s", "Entering .........");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500814
Alan Cox4a90f092008-10-13 10:39:46 +0100815 tty = tty_port_tty_get(&mos7840_port->port->port);
Jiri Slabyb963a842007-02-10 01:44:55 -0800816 if (tty && mos7840_port->open)
817 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100818 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500819
820}
821
822/************************************************************************/
823/* 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 */
824/************************************************************************/
825#ifdef MCSSerialProbe
826static int mos7840_serial_probe(struct usb_serial *serial,
827 const struct usb_device_id *id)
828{
829
830 /*need to implement the mode_reg reading and updating\
831 structures usb_serial_ device_type\
832 (i.e num_ports, num_bulkin,bulkout etc) */
833 /* Also we can update the changes attach */
834 return 1;
835}
836#endif
837
838/*****************************************************************************
839 * mos7840_open
840 * this function is called by the tty driver when a port is opened
841 * If successful, we return 0
842 * Otherwise we return a negative error number.
843 *****************************************************************************/
844
Alan Coxa509a7e2009-09-19 13:13:26 -0700845static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500846{
847 int response;
848 int j;
849 struct usb_serial *serial;
850 struct urb *urb;
851 __u16 Data;
852 int status;
853 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100854 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500855
Tony Cook84fe6e72009-04-18 22:55:06 +0930856 dbg ("%s enter", __func__);
857
Harvey Harrison441b62c2008-03-03 16:08:34 -0800858 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930859 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500860 return -ENODEV;
861 }
862
Paul B Schroeder3f542972006-08-31 19:41:47 -0500863 serial = port->serial;
864
Harvey Harrison441b62c2008-03-03 16:08:34 -0800865 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930866 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500867 return -ENODEV;
868 }
869
870 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100871 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500872
Oliver Neukum0de9a702007-03-16 20:28:28 +0100873 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500874 return -ENODEV;
875
876 usb_clear_halt(serial->dev, port->write_urb->pipe);
877 usb_clear_halt(serial->dev, port->read_urb->pipe);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100878 port0->open_ports++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500879
880 /* Initialising the write urb pool */
881 for (j = 0; j < NUM_URBS; ++j) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100882 urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500883 mos7840_port->write_urb_pool[j] = urb;
884
885 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700886 dev_err(&port->dev, "No more urbs???\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500887 continue;
888 }
889
Alan Cox880af9d2008-07-22 11:16:12 +0100890 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
891 GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500892 if (!urb->transfer_buffer) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100893 usb_free_urb(urb);
894 mos7840_port->write_urb_pool[j] = NULL;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700895 dev_err(&port->dev,
896 "%s-out of memory for urb buffers.\n",
897 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500898 continue;
899 }
900 }
901
902/*****************************************************************************
903 * Initialize MCS7840 -- Write Init values to corresponding Registers
904 *
905 * Register Index
906 * 1 : IER
907 * 2 : FCR
908 * 3 : LCR
909 * 4 : MCR
910 *
911 * 0x08 : SP1/2 Control Reg
912 *****************************************************************************/
913
Alan Cox880af9d2008-07-22 11:16:12 +0100914 /* NEED to check the following Block */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500915
Paul B Schroeder3f542972006-08-31 19:41:47 -0500916 Data = 0x0;
917 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
918 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930919 dbg("Reading Spreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500920 return -1;
921 }
922 Data |= 0x80;
923 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
924 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930925 dbg("writing Spreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500926 return -1;
927 }
928
929 Data &= ~0x80;
930 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
931 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930932 dbg("writing Spreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500933 return -1;
934 }
Alan Cox880af9d2008-07-22 11:16:12 +0100935 /* End of block to be checked */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500936
Paul B Schroeder3f542972006-08-31 19:41:47 -0500937 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +0100938 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
939 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500940 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930941 dbg("Reading Controlreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500942 return -1;
943 }
Alan Cox880af9d2008-07-22 11:16:12 +0100944 Data |= 0x08; /* Driver done bit */
945 Data |= 0x20; /* rx_disable */
946 status = mos7840_set_reg_sync(port,
947 mos7840_port->ControlRegOffset, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500948 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930949 dbg("writing Controlreg failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500950 return -1;
951 }
Alan Cox880af9d2008-07-22 11:16:12 +0100952 /* do register settings here */
953 /* Set all regs to the device default values. */
954 /***********************************
955 * First Disable all interrupts.
956 ***********************************/
Paul B Schroeder3f542972006-08-31 19:41:47 -0500957 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500958 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
959 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930960 dbg("disabling interrupts failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500961 return -1;
962 }
Alan Cox880af9d2008-07-22 11:16:12 +0100963 /* Set FIFO_CONTROL_REGISTER to the default value */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500964 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500965 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
966 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930967 dbg("Writing FIFO_CONTROL_REGISTER failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500968 return -1;
969 }
970
971 Data = 0xcf;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500972 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
973 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +0930974 dbg("Writing FIFO_CONTROL_REGISTER failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500975 return -1;
976 }
977
978 Data = 0x03;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500979 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
980 mos7840_port->shadowLCR = Data;
981
982 Data = 0x0b;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500983 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
984 mos7840_port->shadowMCR = Data;
985
986 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500987 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
988 mos7840_port->shadowLCR = Data;
989
Alan Cox880af9d2008-07-22 11:16:12 +0100990 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500991 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
992
993 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500994 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
995
996 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500997 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
998
999 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001000 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1001
1002 Data = Data & ~SERIAL_LCR_DLAB;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001003 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1004 mos7840_port->shadowLCR = Data;
1005
Alan Cox880af9d2008-07-22 11:16:12 +01001006 /* clearing Bulkin and Bulkout Fifo */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001007 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001008 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
1009
1010 Data = Data | 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001011 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1012
1013 Data = Data & ~0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001014 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
Alan Cox880af9d2008-07-22 11:16:12 +01001015 /* Finally enable all interrupts */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001016 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001017 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1018
Alan Cox880af9d2008-07-22 11:16:12 +01001019 /* clearing rx_disable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001020 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001021 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1022 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001023 Data = Data & ~0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01001024 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1025 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001026
Alan Cox880af9d2008-07-22 11:16:12 +01001027 /* rx_negate */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001028 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001029 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1030 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001031 Data = Data | 0x10;
Alan Cox880af9d2008-07-22 11:16:12 +01001032 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1033 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001034
Alan Cox880af9d2008-07-22 11:16:12 +01001035 /* Check to see if we've set up our endpoint info yet *
1036 * (can't set it up in mos7840_startup as the structures *
1037 * were not set up at that time.) */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001038 if (port0->open_ports == 1) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001039 if (serial->port[0]->interrupt_in_buffer == NULL) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001040 /* set up interrupt urb */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001041 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
Alan Cox880af9d2008-07-22 11:16:12 +01001042 serial->dev,
1043 usb_rcvintpipe(serial->dev,
1044 serial->port[0]->interrupt_in_endpointAddress),
1045 serial->port[0]->interrupt_in_buffer,
1046 serial->port[0]->interrupt_in_urb->
1047 transfer_buffer_length,
1048 mos7840_interrupt_callback,
1049 serial,
1050 serial->port[0]->interrupt_in_urb->interval);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001051
1052 /* start interrupt read for mos7840 *
1053 * will continue as long as mos7840 is connected */
1054
1055 response =
1056 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1057 GFP_KERNEL);
1058 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001059 dev_err(&port->dev, "%s - Error %d submitting "
1060 "interrupt urb\n", __func__, response);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001061 }
1062
1063 }
1064
1065 }
1066
1067 /* see if we've set up our endpoint info yet *
1068 * (can't set it up in mos7840_startup as the *
1069 * structures were not set up at that time.) */
1070
Tony Cook84fe6e72009-04-18 22:55:06 +09301071 dbg("port number is %d", port->number);
1072 dbg("serial number is %d", port->serial->minor);
1073 dbg("Bulkin endpoint is %d", port->bulk_in_endpointAddress);
1074 dbg("BulkOut endpoint is %d", port->bulk_out_endpointAddress);
1075 dbg("Interrupt endpoint is %d", port->interrupt_in_endpointAddress);
1076 dbg("port's number in the device is %d", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001077 mos7840_port->read_urb = port->read_urb;
1078
1079 /* set up our bulk in urb */
1080
1081 usb_fill_bulk_urb(mos7840_port->read_urb,
1082 serial->dev,
1083 usb_rcvbulkpipe(serial->dev,
1084 port->bulk_in_endpointAddress),
1085 port->bulk_in_buffer,
1086 mos7840_port->read_urb->transfer_buffer_length,
1087 mos7840_bulk_in_callback, mos7840_port);
1088
Tony Cook84fe6e72009-04-18 22:55:06 +09301089 dbg("mos7840_open: bulkin endpoint is %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001090 port->bulk_in_endpointAddress);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001091 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001092 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1093 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001094 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1095 __func__, response);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001096 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001097 }
1098
1099 /* initialize our wait queues */
1100 init_waitqueue_head(&mos7840_port->wait_chase);
1101 init_waitqueue_head(&mos7840_port->delta_msr_wait);
1102
1103 /* initialize our icount structure */
1104 memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount));
1105
1106 /* initialize our port settings */
Alan Cox880af9d2008-07-22 11:16:12 +01001107 /* Must set to enable ints! */
1108 mos7840_port->shadowMCR = MCR_MASTER_IE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001109 /* send a open port command */
1110 mos7840_port->open = 1;
Alan Cox880af9d2008-07-22 11:16:12 +01001111 /* mos7840_change_port_settings(mos7840_port,old_termios); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001112 mos7840_port->icount.tx = 0;
1113 mos7840_port->icount.rx = 0;
1114
Tony Cook84fe6e72009-04-18 22:55:06 +09301115 dbg("usb_serial serial:%p mos7840_port:%p\n usb_serial_port port:%p",
Alan Cox880af9d2008-07-22 11:16:12 +01001116 serial, mos7840_port, port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001117
Tony Cook84fe6e72009-04-18 22:55:06 +09301118 dbg ("%s leave", __func__);
1119
Paul B Schroeder3f542972006-08-31 19:41:47 -05001120 return 0;
1121
1122}
1123
1124/*****************************************************************************
1125 * mos7840_chars_in_buffer
1126 * this function is called by the tty driver when it wants to know how many
1127 * bytes of data we currently have outstanding in the port (data that has
1128 * been written, but hasn't made it out the port yet)
1129 * If successful, we return the number of bytes left to be written in the
1130 * system,
Alan Cox95da3102008-07-22 11:09:07 +01001131 * Otherwise we return zero.
Paul B Schroeder3f542972006-08-31 19:41:47 -05001132 *****************************************************************************/
1133
Alan Cox95da3102008-07-22 11:09:07 +01001134static int mos7840_chars_in_buffer(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001135{
Alan Cox95da3102008-07-22 11:09:07 +01001136 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001137 int i;
1138 int chars = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001139 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001140 struct moschip_port *mos7840_port;
1141
Tony Cook84fe6e72009-04-18 22:55:06 +09301142 dbg("%s", " mos7840_chars_in_buffer:entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001143
Harvey Harrison441b62c2008-03-03 16:08:34 -08001144 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301145 dbg("%s", "Invalid port");
Alan Cox95da3102008-07-22 11:09:07 +01001146 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001147 }
1148
1149 mos7840_port = mos7840_get_port_private(port);
1150 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301151 dbg("%s", "mos7840_break:leaving ...........");
Alan Cox95da3102008-07-22 11:09:07 +01001152 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001153 }
1154
Alan Cox880af9d2008-07-22 11:16:12 +01001155 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Alan Cox95da3102008-07-22 11:09:07 +01001156 for (i = 0; i < NUM_URBS; ++i)
1157 if (mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001158 chars += URB_TRANSFER_BUFFER_SIZE;
Alan Cox880af9d2008-07-22 11:16:12 +01001159 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001160 dbg("%s - returns %d", __func__, chars);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001161 return chars;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001162
1163}
1164
Paul B Schroeder3f542972006-08-31 19:41:47 -05001165/*****************************************************************************
1166 * mos7840_close
1167 * this function is called by the tty driver when a port is closed
1168 *****************************************************************************/
1169
Alan Cox335f8512009-06-11 12:26:29 +01001170static void mos7840_close(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001171{
1172 struct usb_serial *serial;
1173 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001174 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001175 int j;
1176 __u16 Data;
1177
Tony Cook84fe6e72009-04-18 22:55:06 +09301178 dbg("%s", "mos7840_close:entering...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001179
Harvey Harrison441b62c2008-03-03 16:08:34 -08001180 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301181 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001182 return;
1183 }
1184
Harvey Harrison441b62c2008-03-03 16:08:34 -08001185 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001186 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301187 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001188 return;
1189 }
1190
1191 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001192 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001193
Oliver Neukum0de9a702007-03-16 20:28:28 +01001194 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001195 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001196
1197 for (j = 0; j < NUM_URBS; ++j)
1198 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1199
1200 /* Freeing Write URBs */
1201 for (j = 0; j < NUM_URBS; ++j) {
1202 if (mos7840_port->write_urb_pool[j]) {
1203 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1204 kfree(mos7840_port->write_urb_pool[j]->
1205 transfer_buffer);
1206
1207 usb_free_urb(mos7840_port->write_urb_pool[j]);
1208 }
1209 }
1210
Paul B Schroeder3f542972006-08-31 19:41:47 -05001211 /* While closing port, shutdown all bulk read, write *
1212 * and interrupt read if they exists */
1213 if (serial->dev) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001214 if (mos7840_port->write_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301215 dbg("%s", "Shutdown bulk write");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001216 usb_kill_urb(mos7840_port->write_urb);
1217 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001218 if (mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301219 dbg("%s", "Shutdown bulk read");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001220 usb_kill_urb(mos7840_port->read_urb);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001221 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001222 }
1223 if ((&mos7840_port->control_urb)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301224 dbg("%s", "Shutdown control read");
Alan Cox880af9d2008-07-22 11:16:12 +01001225 /*/ usb_kill_urb (mos7840_port->control_urb); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001226 }
1227 }
Alan Cox880af9d2008-07-22 11:16:12 +01001228/* if(mos7840_port->ctrl_buf != NULL) */
1229/* kfree(mos7840_port->ctrl_buf); */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001230 port0->open_ports--;
Tony Cook84fe6e72009-04-18 22:55:06 +09301231 dbg("mos7840_num_open_ports in close%d:in port%d",
Oliver Neukum0de9a702007-03-16 20:28:28 +01001232 port0->open_ports, port->number);
1233 if (port0->open_ports == 0) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001234 if (serial->port[0]->interrupt_in_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301235 dbg("%s", "Shutdown interrupt_in_urb");
Oliver Neukum0de9a702007-03-16 20:28:28 +01001236 usb_kill_urb(serial->port[0]->interrupt_in_urb);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001237 }
1238 }
1239
1240 if (mos7840_port->write_urb) {
1241 /* if this urb had a transfer buffer already (old tx) free it */
Alan Cox880af9d2008-07-22 11:16:12 +01001242 if (mos7840_port->write_urb->transfer_buffer != NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001243 kfree(mos7840_port->write_urb->transfer_buffer);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001244 usb_free_urb(mos7840_port->write_urb);
1245 }
1246
1247 Data = 0x0;
1248 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1249
1250 Data = 0x00;
1251 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1252
1253 mos7840_port->open = 0;
1254
Tony Cook84fe6e72009-04-18 22:55:06 +09301255 dbg("%s", "Leaving ............");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001256}
1257
1258/************************************************************************
1259 *
1260 * mos7840_block_until_chase_response
1261 *
1262 * This function will block the close until one of the following:
1263 * 1. Response to our Chase comes from mos7840
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001264 * 2. A timeout of 10 seconds without activity has expired
Paul B Schroeder3f542972006-08-31 19:41:47 -05001265 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1266 *
1267 ************************************************************************/
1268
Alan Cox95da3102008-07-22 11:09:07 +01001269static void mos7840_block_until_chase_response(struct tty_struct *tty,
1270 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001271{
1272 int timeout = 1 * HZ;
1273 int wait = 10;
1274 int count;
1275
1276 while (1) {
Alan Cox95da3102008-07-22 11:09:07 +01001277 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001278
1279 /* Check for Buffer status */
Alan Cox880af9d2008-07-22 11:16:12 +01001280 if (count <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001281 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001282
1283 /* Block the thread for a while */
1284 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1285 timeout);
1286 /* No activity.. count down section */
1287 wait--;
1288 if (wait == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001289 dbg("%s - TIMEOUT", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001290 return;
1291 } else {
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001292 /* Reset timeout value back to seconds */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001293 wait = 10;
1294 }
1295 }
1296
1297}
1298
1299/*****************************************************************************
1300 * mos7840_break
1301 * this function sends a break to the port
1302 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001303static void mos7840_break(struct tty_struct *tty, int break_state)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001304{
Alan Cox95da3102008-07-22 11:09:07 +01001305 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001306 unsigned char data;
1307 struct usb_serial *serial;
1308 struct moschip_port *mos7840_port;
1309
Tony Cook84fe6e72009-04-18 22:55:06 +09301310 dbg("%s", "Entering ...........");
1311 dbg("mos7840_break: Start");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001312
Harvey Harrison441b62c2008-03-03 16:08:34 -08001313 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301314 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001315 return;
1316 }
1317
Harvey Harrison441b62c2008-03-03 16:08:34 -08001318 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001319 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301320 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001321 return;
1322 }
1323
1324 mos7840_port = mos7840_get_port_private(port);
1325
Alan Cox880af9d2008-07-22 11:16:12 +01001326 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001327 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001328
Alan Cox95da3102008-07-22 11:09:07 +01001329 if (serial->dev)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001330 /* flush and block until tx is empty */
Alan Cox95da3102008-07-22 11:09:07 +01001331 mos7840_block_until_chase_response(tty, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001332
Alan Cox95da3102008-07-22 11:09:07 +01001333 if (break_state == -1)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001334 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
Alan Cox95da3102008-07-22 11:09:07 +01001335 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001336 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001337
Alan Cox6b447f042009-01-02 13:48:56 +00001338 /* FIXME: no locking on shadowLCR anywhere in driver */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001339 mos7840_port->shadowLCR = data;
Tony Cook84fe6e72009-04-18 22:55:06 +09301340 dbg("mcs7840_break mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001341 mos7840_port->shadowLCR);
1342 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1343 mos7840_port->shadowLCR);
1344
1345 return;
1346}
1347
1348/*****************************************************************************
1349 * mos7840_write_room
1350 * this function is called by the tty driver when it wants to know how many
1351 * bytes of data we can accept for a specific port.
1352 * If successful, we return the amount of room that we have for this port
1353 * Otherwise we return a negative error number.
1354 *****************************************************************************/
1355
Alan Cox95da3102008-07-22 11:09:07 +01001356static int mos7840_write_room(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001357{
Alan Cox95da3102008-07-22 11:09:07 +01001358 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001359 int i;
1360 int room = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001361 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001362 struct moschip_port *mos7840_port;
1363
Tony Cook84fe6e72009-04-18 22:55:06 +09301364 dbg("%s", " mos7840_write_room:entering ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001365
Harvey Harrison441b62c2008-03-03 16:08:34 -08001366 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301367 dbg("%s", "Invalid port");
1368 dbg("%s", " mos7840_write_room:leaving ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001369 return -1;
1370 }
1371
1372 mos7840_port = mos7840_get_port_private(port);
1373 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301374 dbg("%s", "mos7840_break:leaving ...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001375 return -1;
1376 }
1377
Oliver Neukum0de9a702007-03-16 20:28:28 +01001378 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001379 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox880af9d2008-07-22 11:16:12 +01001380 if (!mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001381 room += URB_TRANSFER_BUFFER_SIZE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001382 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001383 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001384
Oliver Neukum0de9a702007-03-16 20:28:28 +01001385 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001386 dbg("%s - returns %d", __func__, room);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001387 return room;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001388
1389}
1390
1391/*****************************************************************************
1392 * mos7840_write
1393 * this function is called by the tty driver when data should be written to
1394 * the port.
1395 * If successful, we return the number of bytes written, otherwise we
1396 * return a negative error number.
1397 *****************************************************************************/
1398
Alan Cox95da3102008-07-22 11:09:07 +01001399static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001400 const unsigned char *data, int count)
1401{
1402 int status;
1403 int i;
1404 int bytes_sent = 0;
1405 int transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001406 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001407
1408 struct moschip_port *mos7840_port;
1409 struct usb_serial *serial;
1410 struct urb *urb;
Alan Cox880af9d2008-07-22 11:16:12 +01001411 /* __u16 Data; */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001412 const unsigned char *current_position = data;
1413 unsigned char *data1;
Tony Cook84fe6e72009-04-18 22:55:06 +09301414 dbg("%s", "entering ...........");
1415 /* dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Alan Cox880af9d2008-07-22 11:16:12 +01001416 mos7840_port->shadowLCR); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001417
1418#ifdef NOTMOS7840
1419 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001420 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1421 mos7840_port->shadowLCR = Data;
Tony Cook84fe6e72009-04-18 22:55:06 +09301422 dbg("mos7840_write: LINE_CONTROL_REGISTER is %x", Data);
1423 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001424 mos7840_port->shadowLCR);
1425
Alan Cox880af9d2008-07-22 11:16:12 +01001426 /* Data = 0x03; */
1427 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1428 /* mos7840_port->shadowLCR=Data;//Need to add later */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001429
Alan Cox880af9d2008-07-22 11:16:12 +01001430 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001431 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1432
Alan Cox880af9d2008-07-22 11:16:12 +01001433 /* Data = 0x0c; */
1434 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001435 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001436 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09301437 dbg("mos7840_write:DLL value is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001438
1439 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001440 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09301441 dbg("mos7840_write:DLM value is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001442
1443 Data = Data & ~SERIAL_LCR_DLAB;
Tony Cook84fe6e72009-04-18 22:55:06 +09301444 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001445 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001446 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1447#endif
1448
Harvey Harrison441b62c2008-03-03 16:08:34 -08001449 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301450 dbg("%s", "Port Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001451 return -1;
1452 }
1453
1454 serial = port->serial;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001455 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301456 dbg("%s", "Serial Paranoia failed");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001457 return -1;
1458 }
1459
1460 mos7840_port = mos7840_get_port_private(port);
1461 if (mos7840_port == NULL) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301462 dbg("%s", "mos7840_port is NULL");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001463 return -1;
1464 }
1465
1466 /* try to find a free urb in the list */
1467 urb = NULL;
1468
Oliver Neukum0de9a702007-03-16 20:28:28 +01001469 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001470 for (i = 0; i < NUM_URBS; ++i) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001471 if (!mos7840_port->busy[i]) {
1472 mos7840_port->busy[i] = 1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001473 urb = mos7840_port->write_urb_pool[i];
Tony Cook84fe6e72009-04-18 22:55:06 +09301474 dbg("URB:%d", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001475 break;
1476 }
1477 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001478 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001479
1480 if (urb == NULL) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001481 dbg("%s - no more free urbs", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001482 goto exit;
1483 }
1484
1485 if (urb->transfer_buffer == NULL) {
1486 urb->transfer_buffer =
1487 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1488
1489 if (urb->transfer_buffer == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001490 dev_err(&port->dev, "%s no more kernel memory...\n",
1491 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001492 goto exit;
1493 }
1494 }
1495 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1496
Al Viro97c49652006-10-09 20:29:03 +01001497 memcpy(urb->transfer_buffer, current_position, transfer_size);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001498
1499 /* fill urb with data and submit */
1500 usb_fill_bulk_urb(urb,
1501 serial->dev,
1502 usb_sndbulkpipe(serial->dev,
1503 port->bulk_out_endpointAddress),
1504 urb->transfer_buffer,
1505 transfer_size,
1506 mos7840_bulk_out_data_callback, mos7840_port);
1507
1508 data1 = urb->transfer_buffer;
Tony Cook84fe6e72009-04-18 22:55:06 +09301509 dbg("bulkout endpoint is %d", port->bulk_out_endpointAddress);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001510
1511 /* send it down the pipe */
1512 status = usb_submit_urb(urb, GFP_ATOMIC);
1513
1514 if (status) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001515 mos7840_port->busy[i] = 0;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001516 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
1517 "with status = %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001518 bytes_sent = status;
1519 goto exit;
1520 }
1521 bytes_sent = transfer_size;
1522 mos7840_port->icount.tx += transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001523 smp_wmb();
Tony Cook84fe6e72009-04-18 22:55:06 +09301524 dbg("mos7840_port->icount.tx is %d:", mos7840_port->icount.tx);
Alan Cox95da3102008-07-22 11:09:07 +01001525exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -05001526 return bytes_sent;
1527
1528}
1529
1530/*****************************************************************************
1531 * mos7840_throttle
1532 * this function is called by the tty driver when it wants to stop the data
1533 * being read from the port.
1534 *****************************************************************************/
1535
Alan Cox95da3102008-07-22 11:09:07 +01001536static void mos7840_throttle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001537{
Alan Cox95da3102008-07-22 11:09:07 +01001538 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001539 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001540 int status;
1541
Harvey Harrison441b62c2008-03-03 16:08:34 -08001542 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301543 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001544 return;
1545 }
1546
Tony Cook84fe6e72009-04-18 22:55:06 +09301547 dbg("- port %d", port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001548
1549 mos7840_port = mos7840_get_port_private(port);
1550
1551 if (mos7840_port == NULL)
1552 return;
1553
1554 if (!mos7840_port->open) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301555 dbg("%s", "port not opened");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001556 return;
1557 }
1558
Tony Cook84fe6e72009-04-18 22:55:06 +09301559 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001560
Paul B Schroeder3f542972006-08-31 19:41:47 -05001561 /* if we are implementing XON/XOFF, send the stop character */
1562 if (I_IXOFF(tty)) {
1563 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001564 status = mos7840_write(tty, port, &stop_char, 1);
1565 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001566 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001567 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001568 /* if we are implementing RTS/CTS, toggle that line */
1569 if (tty->termios->c_cflag & CRTSCTS) {
1570 mos7840_port->shadowMCR &= ~MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001571 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001572 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001573 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001574 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001575 }
1576
1577 return;
1578}
1579
1580/*****************************************************************************
1581 * mos7840_unthrottle
Alan Cox880af9d2008-07-22 11:16:12 +01001582 * this function is called by the tty driver when it wants to resume
1583 * the data being read from the port (called after mos7840_throttle is
1584 * called)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001585 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001586static void mos7840_unthrottle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001587{
Alan Cox95da3102008-07-22 11:09:07 +01001588 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001589 int status;
1590 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1591
Harvey Harrison441b62c2008-03-03 16:08:34 -08001592 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301593 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001594 return;
1595 }
1596
1597 if (mos7840_port == NULL)
1598 return;
1599
1600 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001601 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001602 return;
1603 }
1604
Tony Cook84fe6e72009-04-18 22:55:06 +09301605 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001606
Paul B Schroeder3f542972006-08-31 19:41:47 -05001607 /* if we are implementing XON/XOFF, send the start character */
1608 if (I_IXOFF(tty)) {
1609 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001610 status = mos7840_write(tty, port, &start_char, 1);
1611 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001612 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001613 }
1614
1615 /* if we are implementing RTS/CTS, toggle that line */
1616 if (tty->termios->c_cflag & CRTSCTS) {
1617 mos7840_port->shadowMCR |= MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001618 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001619 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001620 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001621 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001622 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001623}
1624
Alan Cox95da3102008-07-22 11:09:07 +01001625static int mos7840_tiocmget(struct tty_struct *tty, struct file *file)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001626{
Alan Cox95da3102008-07-22 11:09:07 +01001627 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001628 struct moschip_port *mos7840_port;
1629 unsigned int result;
1630 __u16 msr;
1631 __u16 mcr;
Alan Cox880af9d2008-07-22 11:16:12 +01001632 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001633 mos7840_port = mos7840_get_port_private(port);
1634
Harvey Harrison441b62c2008-03-03 16:08:34 -08001635 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001636
1637 if (mos7840_port == NULL)
1638 return -ENODEV;
1639
1640 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1641 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1642 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1643 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1644 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1645 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1646 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1647 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1648 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1649
Harvey Harrison441b62c2008-03-03 16:08:34 -08001650 dbg("%s - 0x%04X", __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001651
1652 return result;
1653}
1654
Alan Cox95da3102008-07-22 11:09:07 +01001655static int mos7840_tiocmset(struct tty_struct *tty, struct file *file,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001656 unsigned int set, unsigned int clear)
1657{
Alan Cox95da3102008-07-22 11:09:07 +01001658 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001659 struct moschip_port *mos7840_port;
1660 unsigned int mcr;
Roel Kluin87521c42008-04-17 06:16:24 +02001661 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001662
Harvey Harrison441b62c2008-03-03 16:08:34 -08001663 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001664
1665 mos7840_port = mos7840_get_port_private(port);
1666
1667 if (mos7840_port == NULL)
1668 return -ENODEV;
1669
Alan Coxe2984492008-02-20 20:51:45 +00001670 /* FIXME: What locks the port registers ? */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001671 mcr = mos7840_port->shadowMCR;
1672 if (clear & TIOCM_RTS)
1673 mcr &= ~MCR_RTS;
1674 if (clear & TIOCM_DTR)
1675 mcr &= ~MCR_DTR;
1676 if (clear & TIOCM_LOOP)
1677 mcr &= ~MCR_LOOPBACK;
1678
1679 if (set & TIOCM_RTS)
1680 mcr |= MCR_RTS;
1681 if (set & TIOCM_DTR)
1682 mcr |= MCR_DTR;
1683 if (set & TIOCM_LOOP)
1684 mcr |= MCR_LOOPBACK;
1685
1686 mos7840_port->shadowMCR = mcr;
1687
Paul B Schroeder3f542972006-08-31 19:41:47 -05001688 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1689 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301690 dbg("setting MODEM_CONTROL_REGISTER Failed");
Roel Kluin87521c42008-04-17 06:16:24 +02001691 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001692 }
1693
1694 return 0;
1695}
1696
1697/*****************************************************************************
1698 * mos7840_calc_baud_rate_divisor
1699 * this function calculates the proper baud rate divisor for the specified
1700 * baud rate.
1701 *****************************************************************************/
1702static int mos7840_calc_baud_rate_divisor(int baudRate, int *divisor,
Alan Cox880af9d2008-07-22 11:16:12 +01001703 __u16 *clk_sel_val)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001704{
1705
Harvey Harrison441b62c2008-03-03 16:08:34 -08001706 dbg("%s - %d", __func__, baudRate);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001707
1708 if (baudRate <= 115200) {
1709 *divisor = 115200 / baudRate;
1710 *clk_sel_val = 0x0;
1711 }
1712 if ((baudRate > 115200) && (baudRate <= 230400)) {
1713 *divisor = 230400 / baudRate;
1714 *clk_sel_val = 0x10;
1715 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1716 *divisor = 403200 / baudRate;
1717 *clk_sel_val = 0x20;
1718 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1719 *divisor = 460800 / baudRate;
1720 *clk_sel_val = 0x30;
1721 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1722 *divisor = 806400 / baudRate;
1723 *clk_sel_val = 0x40;
1724 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1725 *divisor = 921600 / baudRate;
1726 *clk_sel_val = 0x50;
1727 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1728 *divisor = 1572864 / baudRate;
1729 *clk_sel_val = 0x60;
1730 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1731 *divisor = 3145728 / baudRate;
1732 *clk_sel_val = 0x70;
1733 }
1734 return 0;
1735
1736#ifdef NOTMCS7840
1737
1738 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1739 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1740 *divisor = mos7840_divisor_table[i].Divisor;
1741 return 0;
1742 }
1743 }
1744
1745 /* After trying for all the standard baud rates *
1746 * Try calculating the divisor for this baud rate */
1747
1748 if (baudrate > 75 && baudrate < 230400) {
1749 /* get the divisor */
1750 custom = (__u16) (230400L / baudrate);
1751
1752 /* Check for round off */
1753 round1 = (__u16) (2304000L / baudrate);
1754 round = (__u16) (round1 - (custom * 10));
Alan Cox880af9d2008-07-22 11:16:12 +01001755 if (round > 4)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001756 custom++;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001757 *divisor = custom;
1758
Tony Cook84fe6e72009-04-18 22:55:06 +09301759 dbg(" Baud %d = %d", baudrate, custom);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001760 return 0;
1761 }
1762
Tony Cook84fe6e72009-04-18 22:55:06 +09301763 dbg("%s", " Baud calculation Failed...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001764 return -1;
1765#endif
1766}
1767
1768/*****************************************************************************
1769 * mos7840_send_cmd_write_baud_rate
1770 * this function sends the proper command to change the baud rate of the
1771 * specified port.
1772 *****************************************************************************/
1773
1774static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1775 int baudRate)
1776{
1777 int divisor = 0;
1778 int status;
1779 __u16 Data;
1780 unsigned char number;
1781 __u16 clk_sel_val;
1782 struct usb_serial_port *port;
1783
1784 if (mos7840_port == NULL)
1785 return -1;
1786
1787 port = (struct usb_serial_port *)mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001788 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301789 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001790 return -1;
1791 }
1792
Harvey Harrison441b62c2008-03-03 16:08:34 -08001793 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301794 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001795 return -1;
1796 }
1797
Tony Cook84fe6e72009-04-18 22:55:06 +09301798 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001799
1800 number = mos7840_port->port->number - mos7840_port->port->serial->minor;
1801
Harvey Harrison441b62c2008-03-03 16:08:34 -08001802 dbg("%s - port = %d, baud = %d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001803 mos7840_port->port->number, baudRate);
Alan Cox880af9d2008-07-22 11:16:12 +01001804 /* reset clk_uart_sel in spregOffset */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001805 if (baudRate > 115200) {
1806#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001807 /* NOTE: need to see the pther register to modify */
1808 /* setting h/w flow control bit to 1 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001809 Data = 0x2b;
1810 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001811 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1812 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001813 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301814 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001815 return -1;
1816 }
1817#endif
1818
1819 } else {
1820#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001821 / *setting h/w flow control bit to 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001822 Data = 0xb;
1823 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001824 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1825 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001826 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301827 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001828 return -1;
1829 }
1830#endif
1831
1832 }
1833
Alan Cox880af9d2008-07-22 11:16:12 +01001834 if (1) { /* baudRate <= 115200) */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001835 clk_sel_val = 0x0;
1836 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001837 status = mos7840_calc_baud_rate_divisor(baudRate, &divisor,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001838 &clk_sel_val);
Alan Cox880af9d2008-07-22 11:16:12 +01001839 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1840 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001841 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301842 dbg("reading spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001843 return -1;
1844 }
1845 Data = (Data & 0x8f) | clk_sel_val;
Alan Cox880af9d2008-07-22 11:16:12 +01001846 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1847 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001848 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301849 dbg("Writing spreg failed in set_serial_baud");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001850 return -1;
1851 }
1852 /* Calculate the Divisor */
1853
1854 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001855 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001856 return status;
1857 }
1858 /* Enable access to divisor latch */
1859 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1860 mos7840_port->shadowLCR = Data;
1861 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1862
1863 /* Write the divisor */
1864 Data = (unsigned char)(divisor & 0xff);
Tony Cook84fe6e72009-04-18 22:55:06 +09301865 dbg("set_serial_baud Value to write DLL is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001866 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1867
1868 Data = (unsigned char)((divisor & 0xff00) >> 8);
Tony Cook84fe6e72009-04-18 22:55:06 +09301869 dbg("set_serial_baud Value to write DLM is %x", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001870 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1871
1872 /* Disable 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 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001878 return status;
1879}
1880
1881/*****************************************************************************
1882 * mos7840_change_port_settings
1883 * This routine is called to set the UART on the device to match
1884 * the specified new settings.
1885 *****************************************************************************/
1886
Alan Cox95da3102008-07-22 11:09:07 +01001887static void mos7840_change_port_settings(struct tty_struct *tty,
1888 struct moschip_port *mos7840_port, struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001889{
Paul B Schroeder3f542972006-08-31 19:41:47 -05001890 int baud;
1891 unsigned cflag;
1892 unsigned iflag;
1893 __u8 lData;
1894 __u8 lParity;
1895 __u8 lStop;
1896 int status;
1897 __u16 Data;
1898 struct usb_serial_port *port;
1899 struct usb_serial *serial;
1900
1901 if (mos7840_port == NULL)
1902 return;
1903
1904 port = (struct usb_serial_port *)mos7840_port->port;
1905
Harvey Harrison441b62c2008-03-03 16:08:34 -08001906 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301907 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001908 return;
1909 }
1910
Harvey Harrison441b62c2008-03-03 16:08:34 -08001911 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09301912 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001913 return;
1914 }
1915
1916 serial = port->serial;
1917
Harvey Harrison441b62c2008-03-03 16:08:34 -08001918 dbg("%s - port %d", __func__, mos7840_port->port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001919
1920 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001921 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001922 return;
1923 }
1924
Tony Cook84fe6e72009-04-18 22:55:06 +09301925 dbg("%s", "Entering ..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001926
1927 lData = LCR_BITS_8;
1928 lStop = LCR_STOP_1;
1929 lParity = LCR_PAR_NONE;
1930
1931 cflag = tty->termios->c_cflag;
1932 iflag = tty->termios->c_iflag;
1933
1934 /* Change the number of bits */
1935 if (cflag & CSIZE) {
1936 switch (cflag & CSIZE) {
1937 case CS5:
1938 lData = LCR_BITS_5;
1939 break;
1940
1941 case CS6:
1942 lData = LCR_BITS_6;
1943 break;
1944
1945 case CS7:
1946 lData = LCR_BITS_7;
1947 break;
1948 default:
1949 case CS8:
1950 lData = LCR_BITS_8;
1951 break;
1952 }
1953 }
1954 /* Change the Parity bit */
1955 if (cflag & PARENB) {
1956 if (cflag & PARODD) {
1957 lParity = LCR_PAR_ODD;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001958 dbg("%s - parity = odd", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001959 } else {
1960 lParity = LCR_PAR_EVEN;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001961 dbg("%s - parity = even", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001962 }
1963
1964 } else {
Harvey Harrison441b62c2008-03-03 16:08:34 -08001965 dbg("%s - parity = none", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001966 }
1967
Alan Cox880af9d2008-07-22 11:16:12 +01001968 if (cflag & CMSPAR)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001969 lParity = lParity | 0x20;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001970
1971 /* Change the Stop bit */
1972 if (cflag & CSTOPB) {
1973 lStop = LCR_STOP_2;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001974 dbg("%s - stop bits = 2", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001975 } else {
1976 lStop = LCR_STOP_1;
Harvey Harrison441b62c2008-03-03 16:08:34 -08001977 dbg("%s - stop bits = 1", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001978 }
1979
1980 /* Update the LCR with the correct value */
1981 mos7840_port->shadowLCR &=
1982 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1983 mos7840_port->shadowLCR |= (lData | lParity | lStop);
1984
Tony Cook84fe6e72009-04-18 22:55:06 +09301985 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05001986 mos7840_port->shadowLCR);
1987 /* Disable Interrupts */
1988 Data = 0x00;
1989 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1990
1991 Data = 0x00;
1992 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1993
1994 Data = 0xcf;
1995 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1996
1997 /* Send the updated LCR value to the mos7840 */
1998 Data = mos7840_port->shadowLCR;
1999
2000 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
2001
2002 Data = 0x00b;
2003 mos7840_port->shadowMCR = Data;
2004 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2005 Data = 0x00b;
2006 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2007
2008 /* set up the MCR register and send it to the mos7840 */
2009
2010 mos7840_port->shadowMCR = MCR_MASTER_IE;
Alan Cox880af9d2008-07-22 11:16:12 +01002011 if (cflag & CBAUD)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002012 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002013
Alan Cox880af9d2008-07-22 11:16:12 +01002014 if (cflag & CRTSCTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002015 mos7840_port->shadowMCR |= (MCR_XON_ANY);
Alan Cox880af9d2008-07-22 11:16:12 +01002016 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05002017 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002018
2019 Data = mos7840_port->shadowMCR;
2020 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2021
2022 /* Determine divisor based on baud rate */
2023 baud = tty_get_baud_rate(tty);
2024
2025 if (!baud) {
2026 /* pick a default, any default... */
Tony Cook84fe6e72009-04-18 22:55:06 +09302027 dbg("%s", "Picked default baud...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002028 baud = 9600;
2029 }
2030
Harvey Harrison441b62c2008-03-03 16:08:34 -08002031 dbg("%s - baud rate = %d", __func__, baud);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002032 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
2033
2034 /* Enable Interrupts */
2035 Data = 0x0c;
2036 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2037
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002038 if (mos7840_port->read_urb_busy == false) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002039 mos7840_port->read_urb->dev = serial->dev;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002040 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002041 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002042 if (status) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002043 dbg("usb_submit_urb(read bulk) failed, status = %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002044 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002045 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002046 }
2047 }
2048 wake_up(&mos7840_port->delta_msr_wait);
2049 mos7840_port->delta_msr_cond = 1;
Tony Cook84fe6e72009-04-18 22:55:06 +09302050 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002051 mos7840_port->shadowLCR);
2052
2053 return;
2054}
2055
2056/*****************************************************************************
2057 * mos7840_set_termios
2058 * this function is called by the tty driver when it wants to change
2059 * the termios structure
2060 *****************************************************************************/
2061
Alan Cox95da3102008-07-22 11:09:07 +01002062static void mos7840_set_termios(struct tty_struct *tty,
2063 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -08002064 struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002065{
2066 int status;
2067 unsigned int cflag;
2068 struct usb_serial *serial;
2069 struct moschip_port *mos7840_port;
Tony Cook84fe6e72009-04-18 22:55:06 +09302070 dbg("mos7840_set_termios: START");
Harvey Harrison441b62c2008-03-03 16:08:34 -08002071 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302072 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002073 return;
2074 }
2075
2076 serial = port->serial;
2077
Harvey Harrison441b62c2008-03-03 16:08:34 -08002078 if (mos7840_serial_paranoia_check(serial, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302079 dbg("%s", "Invalid Serial");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002080 return;
2081 }
2082
2083 mos7840_port = mos7840_get_port_private(port);
2084
2085 if (mos7840_port == NULL)
2086 return;
2087
Paul B Schroeder3f542972006-08-31 19:41:47 -05002088 if (!mos7840_port->open) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002089 dbg("%s - port not opened", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002090 return;
2091 }
2092
Tony Cook84fe6e72009-04-18 22:55:06 +09302093 dbg("%s", "setting termios - ");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002094
2095 cflag = tty->termios->c_cflag;
2096
Harvey Harrison441b62c2008-03-03 16:08:34 -08002097 dbg("%s - clfag %08x iflag %08x", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002098 tty->termios->c_cflag, RELEVANT_IFLAG(tty->termios->c_iflag));
Harvey Harrison441b62c2008-03-03 16:08:34 -08002099 dbg("%s - old clfag %08x old iflag %08x", __func__,
Alan Cox3d3ddce2007-10-15 20:53:35 +01002100 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
Harvey Harrison441b62c2008-03-03 16:08:34 -08002101 dbg("%s - port %d", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002102
2103 /* change the port settings to the new ones specified */
2104
Alan Cox95da3102008-07-22 11:09:07 +01002105 mos7840_change_port_settings(tty, mos7840_port, old_termios);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002106
2107 if (!mos7840_port->read_urb) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302108 dbg("%s", "URB KILLED !!!!!");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002109 return;
2110 }
2111
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002112 if (mos7840_port->read_urb_busy == false) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002113 mos7840_port->read_urb->dev = serial->dev;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002114 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002115 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2116 if (status) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002117 dbg("usb_submit_urb(read bulk) failed, status = %d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002118 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002119 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002120 }
2121 }
2122 return;
2123}
2124
2125/*****************************************************************************
2126 * mos7840_get_lsr_info - get line status register info
2127 *
2128 * Purpose: Let user call ioctl() to get info when the UART physically
2129 * is emptied. On bus types like RS485, the transmitter must
2130 * release the bus after transmitting. This must be done when
2131 * the transmit shift register is empty, not be done when the
2132 * transmit holding register is empty. This functionality
2133 * allows an RS485 driver to be written in user space.
2134 *****************************************************************************/
2135
Alan Cox95da3102008-07-22 11:09:07 +01002136static int mos7840_get_lsr_info(struct tty_struct *tty,
Al Viro97c49652006-10-09 20:29:03 +01002137 unsigned int __user *value)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002138{
2139 int count;
2140 unsigned int result = 0;
2141
Alan Cox95da3102008-07-22 11:09:07 +01002142 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002143 if (count == 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -08002144 dbg("%s -- Empty", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002145 result = TIOCSER_TEMT;
2146 }
2147
2148 if (copy_to_user(value, &result, sizeof(int)))
2149 return -EFAULT;
2150 return 0;
2151}
2152
2153/*****************************************************************************
Paul B Schroeder3f542972006-08-31 19:41:47 -05002154 * mos7840_get_serial_info
2155 * function to get information about serial port
2156 *****************************************************************************/
2157
2158static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
Al Viro97c49652006-10-09 20:29:03 +01002159 struct serial_struct __user *retinfo)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002160{
2161 struct serial_struct tmp;
2162
2163 if (mos7840_port == NULL)
2164 return -1;
2165
2166 if (!retinfo)
2167 return -EFAULT;
2168
2169 memset(&tmp, 0, sizeof(tmp));
2170
2171 tmp.type = PORT_16550A;
2172 tmp.line = mos7840_port->port->serial->minor;
2173 tmp.port = mos7840_port->port->number;
2174 tmp.irq = 0;
2175 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2176 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2177 tmp.baud_base = 9600;
2178 tmp.close_delay = 5 * HZ;
2179 tmp.closing_wait = 30 * HZ;
2180
2181 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2182 return -EFAULT;
2183 return 0;
2184}
2185
2186/*****************************************************************************
2187 * SerialIoctl
2188 * this function handles any ioctl calls to the driver
2189 *****************************************************************************/
2190
Alan Cox95da3102008-07-22 11:09:07 +01002191static int mos7840_ioctl(struct tty_struct *tty, struct file *file,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002192 unsigned int cmd, unsigned long arg)
2193{
Alan Cox95da3102008-07-22 11:09:07 +01002194 struct usb_serial_port *port = tty->driver_data;
Al Viro97c49652006-10-09 20:29:03 +01002195 void __user *argp = (void __user *)arg;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002196 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002197
2198 struct async_icount cnow;
2199 struct async_icount cprev;
2200 struct serial_icounter_struct icount;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002201
Harvey Harrison441b62c2008-03-03 16:08:34 -08002202 if (mos7840_port_paranoia_check(port, __func__)) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302203 dbg("%s", "Invalid port");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002204 return -1;
2205 }
2206
2207 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002208
2209 if (mos7840_port == NULL)
2210 return -1;
2211
Harvey Harrison441b62c2008-03-03 16:08:34 -08002212 dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002213
2214 switch (cmd) {
2215 /* return number of bytes available */
2216
Paul B Schroeder3f542972006-08-31 19:41:47 -05002217 case TIOCSERGETLSR:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002218 dbg("%s (%d) TIOCSERGETLSR", __func__, port->number);
Alan Cox95da3102008-07-22 11:09:07 +01002219 return mos7840_get_lsr_info(tty, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002220 return 0;
2221
Paul B Schroeder3f542972006-08-31 19:41:47 -05002222 case TIOCGSERIAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002223 dbg("%s (%d) TIOCGSERIAL", __func__, port->number);
Al Viro97c49652006-10-09 20:29:03 +01002224 return mos7840_get_serial_info(mos7840_port, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002225
2226 case TIOCSSERIAL:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002227 dbg("%s (%d) TIOCSSERIAL", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002228 break;
2229
2230 case TIOCMIWAIT:
Harvey Harrison441b62c2008-03-03 16:08:34 -08002231 dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002232 cprev = mos7840_port->icount;
2233 while (1) {
Alan Cox880af9d2008-07-22 11:16:12 +01002234 /* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002235 mos7840_port->delta_msr_cond = 0;
2236 wait_event_interruptible(mos7840_port->delta_msr_wait,
2237 (mos7840_port->
2238 delta_msr_cond == 1));
2239
2240 /* see if a signal did it */
2241 if (signal_pending(current))
2242 return -ERESTARTSYS;
2243 cnow = mos7840_port->icount;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002244 smp_rmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -05002245 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2246 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2247 return -EIO; /* no change => error */
2248 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2249 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2250 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2251 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2252 return 0;
2253 }
2254 cprev = cnow;
2255 }
2256 /* NOTREACHED */
2257 break;
2258
2259 case TIOCGICOUNT:
2260 cnow = mos7840_port->icount;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002261 smp_rmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -05002262 icount.cts = cnow.cts;
2263 icount.dsr = cnow.dsr;
2264 icount.rng = cnow.rng;
2265 icount.dcd = cnow.dcd;
2266 icount.rx = cnow.rx;
2267 icount.tx = cnow.tx;
2268 icount.frame = cnow.frame;
2269 icount.overrun = cnow.overrun;
2270 icount.parity = cnow.parity;
2271 icount.brk = cnow.brk;
2272 icount.buf_overrun = cnow.buf_overrun;
2273
Harvey Harrison441b62c2008-03-03 16:08:34 -08002274 dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002275 port->number, icount.rx, icount.tx);
Al Viro97c49652006-10-09 20:29:03 +01002276 if (copy_to_user(argp, &icount, sizeof(icount)))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002277 return -EFAULT;
2278 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002279 default:
2280 break;
2281 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002282 return -ENOIOCTLCMD;
2283}
2284
2285static int mos7840_calc_num_ports(struct usb_serial *serial)
2286{
Oliver Neukum0de9a702007-03-16 20:28:28 +01002287 int mos7840_num_ports = 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002288
Tony Cook84fe6e72009-04-18 22:55:06 +09302289 dbg("numberofendpoints: cur %d, alt %d",
2290 (int)serial->interface->cur_altsetting->desc.bNumEndpoints,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002291 (int)serial->interface->altsetting->desc.bNumEndpoints);
2292 if (serial->interface->cur_altsetting->desc.bNumEndpoints == 5) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002293 mos7840_num_ports = serial->num_ports = 2;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002294 } else if (serial->interface->cur_altsetting->desc.bNumEndpoints == 9) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002295 serial->num_bulk_in = 4;
2296 serial->num_bulk_out = 4;
2297 mos7840_num_ports = serial->num_ports = 4;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002298 }
Tony Cook84fe6e72009-04-18 22:55:06 +09302299 dbg ("mos7840_num_ports = %d", mos7840_num_ports);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002300 return mos7840_num_ports;
2301}
2302
2303/****************************************************************************
2304 * mos7840_startup
2305 ****************************************************************************/
2306
2307static int mos7840_startup(struct usb_serial *serial)
2308{
2309 struct moschip_port *mos7840_port;
2310 struct usb_device *dev;
2311 int i, status;
2312
2313 __u16 Data;
Tony Cook84fe6e72009-04-18 22:55:06 +09302314 dbg("%s", "mos7840_startup :Entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002315
2316 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302317 dbg("%s", "Invalid Handler");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002318 return -1;
2319 }
2320
2321 dev = serial->dev;
2322
Tony Cook84fe6e72009-04-18 22:55:06 +09302323 dbg("%s", "Entering...");
2324 dbg ("mos7840_startup: serial = %p", serial);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002325
2326 /* we set up the pointers to the endpoints in the mos7840_open *
2327 * function, as the structures aren't created yet. */
2328
2329 /* set up port private structures */
2330 for (i = 0; i < serial->num_ports; ++i) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302331 dbg ("mos7840_startup: configuring port %d............", i);
Burman Yan7ac9da12006-11-22 20:54:38 +02002332 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002333 if (mos7840_port == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07002334 dev_err(&dev->dev, "%s - Out of memory\n", __func__);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002335 status = -ENOMEM;
2336 i--; /* don't follow NULL pointer cleaning up */
2337 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002338 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002339
Alan Cox880af9d2008-07-22 11:16:12 +01002340 /* Initialize all port interrupt end point to port 0 int
2341 * endpoint. Our device has only one interrupt end point
2342 * common to all port */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002343
2344 mos7840_port->port = serial->port[i];
2345 mos7840_set_port_private(serial->port[i], mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002346 spin_lock_init(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002347
Tony Cook37768ad2009-04-18 22:42:18 +09302348 /* minor is not initialised until later by
2349 * usb-serial.c:get_free_serial() and cannot therefore be used
2350 * to index device instances */
2351 mos7840_port->port_num = i + 1;
2352 dbg ("serial->port[i]->number = %d", serial->port[i]->number);
2353 dbg ("serial->port[i]->serial->minor = %d", serial->port[i]->serial->minor);
2354 dbg ("mos7840_port->port_num = %d", mos7840_port->port_num);
2355 dbg ("serial->minor = %d", serial->minor);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002356
2357 if (mos7840_port->port_num == 1) {
2358 mos7840_port->SpRegOffset = 0x0;
2359 mos7840_port->ControlRegOffset = 0x1;
2360 mos7840_port->DcrRegOffset = 0x4;
2361 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002362 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002363 mos7840_port->SpRegOffset = 0x8;
2364 mos7840_port->ControlRegOffset = 0x9;
2365 mos7840_port->DcrRegOffset = 0x16;
2366 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002367 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002368 mos7840_port->SpRegOffset = 0xa;
2369 mos7840_port->ControlRegOffset = 0xb;
2370 mos7840_port->DcrRegOffset = 0x19;
2371 } else if ((mos7840_port->port_num == 3)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002372 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002373 mos7840_port->SpRegOffset = 0xa;
2374 mos7840_port->ControlRegOffset = 0xb;
2375 mos7840_port->DcrRegOffset = 0x19;
2376 } else if ((mos7840_port->port_num == 4)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002377 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002378 mos7840_port->SpRegOffset = 0xc;
2379 mos7840_port->ControlRegOffset = 0xd;
2380 mos7840_port->DcrRegOffset = 0x1c;
2381 }
2382 mos7840_dump_serial_port(mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002383 mos7840_set_port_private(serial->port[i], mos7840_port);
2384
Alan Cox880af9d2008-07-22 11:16:12 +01002385 /* enable rx_disable bit in control register */
2386 status = mos7840_get_reg_sync(serial->port[i],
2387 mos7840_port->ControlRegOffset, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002388 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302389 dbg("Reading ControlReg failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002390 break;
2391 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302392 dbg("ControlReg Reading success val is %x, status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002393 Data, status);
Alan Cox880af9d2008-07-22 11:16:12 +01002394 Data |= 0x08; /* setting driver done bit */
2395 Data |= 0x04; /* sp1_bit to have cts change reflect in
2396 modem status reg */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002397
Alan Cox880af9d2008-07-22 11:16:12 +01002398 /* Data |= 0x20; //rx_disable bit */
2399 status = mos7840_set_reg_sync(serial->port[i],
Paul B Schroeder3f542972006-08-31 19:41:47 -05002400 mos7840_port->ControlRegOffset, Data);
2401 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302402 dbg("Writing ControlReg failed(rx_disable) status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002403 break;
2404 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302405 dbg("ControlReg Writing success(rx_disable) status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002406 status);
2407
Alan Cox880af9d2008-07-22 11:16:12 +01002408 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2409 and 0x24 in DCR3 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002410 Data = 0x01;
Alan Cox880af9d2008-07-22 11:16:12 +01002411 status = mos7840_set_reg_sync(serial->port[i],
2412 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002413 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302414 dbg("Writing DCR0 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002415 break;
2416 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302417 dbg("DCR0 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002418
2419 Data = 0x05;
Alan Cox880af9d2008-07-22 11:16:12 +01002420 status = mos7840_set_reg_sync(serial->port[i],
2421 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002422 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302423 dbg("Writing DCR1 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002424 break;
2425 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302426 dbg("DCR1 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002427
2428 Data = 0x24;
Alan Cox880af9d2008-07-22 11:16:12 +01002429 status = mos7840_set_reg_sync(serial->port[i],
2430 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002431 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302432 dbg("Writing DCR2 failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002433 break;
2434 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302435 dbg("DCR2 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002436
Alan Cox880af9d2008-07-22 11:16:12 +01002437 /* write values in clkstart0x0 and clkmulti 0x20 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002438 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01002439 status = mos7840_set_reg_sync(serial->port[i],
Paul B Schroeder3f542972006-08-31 19:41:47 -05002440 CLK_START_VALUE_REGISTER, Data);
2441 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302442 dbg("Writing CLK_START_VALUE_REGISTER failed status-0x%x", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002443 break;
2444 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302445 dbg("CLK_START_VALUE_REGISTER Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002446
2447 Data = 0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01002448 status = mos7840_set_reg_sync(serial->port[i],
2449 CLK_MULTI_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002450 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302451 dbg("Writing CLK_MULTI_REGISTER failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002452 status);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002453 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002454 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302455 dbg("CLK_MULTI_REGISTER Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002456 status);
2457
Alan Cox880af9d2008-07-22 11:16:12 +01002458 /* write value 0x0 to scratchpad register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002459 Data = 0x00;
Alan Cox880af9d2008-07-22 11:16:12 +01002460 status = mos7840_set_uart_reg(serial->port[i],
2461 SCRATCH_PAD_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002462 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302463 dbg("Writing SCRATCH_PAD_REGISTER failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002464 status);
2465 break;
2466 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302467 dbg("SCRATCH_PAD_REGISTER Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002468 status);
2469
Alan Cox880af9d2008-07-22 11:16:12 +01002470 /* Zero Length flag register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002471 if ((mos7840_port->port_num != 1)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002472 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002473
2474 Data = 0xff;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002475 status = mos7840_set_reg_sync(serial->port[i],
Alan Cox880af9d2008-07-22 11:16:12 +01002476 (__u16) (ZLP_REG1 +
2477 ((__u16)mos7840_port->port_num)), Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09302478 dbg("ZLIP offset %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002479 (__u16) (ZLP_REG1 +
Alan Cox880af9d2008-07-22 11:16:12 +01002480 ((__u16) mos7840_port->port_num)));
Paul B Schroeder3f542972006-08-31 19:41:47 -05002481 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302482 dbg("Writing ZLP_REG%d failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002483 i + 2, status);
2484 break;
2485 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302486 dbg("ZLP_REG%d Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002487 i + 2, status);
2488 } else {
2489 Data = 0xff;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002490 status = mos7840_set_reg_sync(serial->port[i],
Alan Cox880af9d2008-07-22 11:16:12 +01002491 (__u16) (ZLP_REG1 +
2492 ((__u16)mos7840_port->port_num) - 0x1), Data);
Tony Cook84fe6e72009-04-18 22:55:06 +09302493 dbg("ZLIP offset %x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002494 (__u16) (ZLP_REG1 +
2495 ((__u16) mos7840_port->port_num) - 0x1));
2496 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302497 dbg("Writing ZLP_REG%d failed status-0x%x",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002498 i + 1, status);
2499 break;
2500 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302501 dbg("ZLP_REG%d Writing success status%d",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002502 i + 1, status);
2503
2504 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01002505 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002506 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
Alan Cox880af9d2008-07-22 11:16:12 +01002507 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2508 GFP_KERNEL);
2509 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2510 !mos7840_port->dr) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002511 status = -ENOMEM;
2512 goto error;
2513 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002514 }
Tony Cook84fe6e72009-04-18 22:55:06 +09302515 dbg ("mos7840_startup: all ports configured...........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002516
Alan Cox880af9d2008-07-22 11:16:12 +01002517 /* Zero Length flag enable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002518 Data = 0x0f;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002519 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2520 if (status < 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302521 dbg("Writing ZLP_REG5 failed status-0x%x", status);
Roel Kluin7ced46c2007-10-27 03:36:37 +02002522 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002523 } else
Tony Cook84fe6e72009-04-18 22:55:06 +09302524 dbg("ZLP_REG5 Writing success status%d", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002525
2526 /* setting configuration feature to one */
2527 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
Al Viro97c49652006-10-09 20:29:03 +01002528 (__u8) 0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5 * HZ);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002529 return 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002530error:
2531 for (/* nothing */; i >= 0; i--) {
2532 mos7840_port = mos7840_get_port_private(serial->port[i]);
2533
2534 kfree(mos7840_port->dr);
2535 kfree(mos7840_port->ctrl_buf);
2536 usb_free_urb(mos7840_port->control_urb);
2537 kfree(mos7840_port);
2538 serial->port[i] = NULL;
2539 }
2540 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002541}
2542
2543/****************************************************************************
Alan Sternf9c99bb2009-06-02 11:53:55 -04002544 * mos7840_disconnect
Paul B Schroeder3f542972006-08-31 19:41:47 -05002545 * This function is called whenever the device is removed from the usb bus.
2546 ****************************************************************************/
2547
Alan Sternf9c99bb2009-06-02 11:53:55 -04002548static void mos7840_disconnect(struct usb_serial *serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002549{
2550 int i;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002551 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002552 struct moschip_port *mos7840_port;
Alan Sternf9c99bb2009-06-02 11:53:55 -04002553 dbg("%s", " disconnect :entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002554
2555 if (!serial) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302556 dbg("%s", "Invalid Handler");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002557 return;
2558 }
2559
Alan Cox880af9d2008-07-22 11:16:12 +01002560 /* check for the ports to be closed,close the ports and disconnect */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002561
2562 /* free private structure allocated for serial port *
2563 * stop reads and writes on all ports */
2564
2565 for (i = 0; i < serial->num_ports; ++i) {
2566 mos7840_port = mos7840_get_port_private(serial->port[i]);
Tony Cook37768ad2009-04-18 22:42:18 +09302567 dbg ("mos7840_port %d = %p", i, mos7840_port);
2568 if (mos7840_port) {
2569 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
2570 mos7840_port->zombie = 1;
2571 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
2572 usb_kill_urb(mos7840_port->control_urb);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002573 }
2574 }
2575
2576 dbg("%s", "Thank u :: ");
2577
2578}
2579
2580/****************************************************************************
2581 * mos7840_release
2582 * This function is called when the usb_serial structure is freed.
2583 ****************************************************************************/
2584
2585static void mos7840_release(struct usb_serial *serial)
2586{
2587 int i;
2588 struct moschip_port *mos7840_port;
2589 dbg("%s", " release :entering..........");
2590
2591 if (!serial) {
2592 dbg("%s", "Invalid Handler");
2593 return;
2594 }
2595
2596 /* check for the ports to be closed,close the ports and disconnect */
2597
2598 /* free private structure allocated for serial port *
2599 * stop reads and writes on all ports */
2600
2601 for (i = 0; i < serial->num_ports; ++i) {
2602 mos7840_port = mos7840_get_port_private(serial->port[i]);
2603 dbg("mos7840_port %d = %p", i, mos7840_port);
2604 if (mos7840_port) {
Tony Cook37768ad2009-04-18 22:42:18 +09302605 kfree(mos7840_port->ctrl_buf);
2606 kfree(mos7840_port->dr);
2607 kfree(mos7840_port);
2608 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002609 }
2610
Tony Cook84fe6e72009-04-18 22:55:06 +09302611 dbg("%s", "Thank u :: ");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002612
2613}
2614
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002615static struct usb_driver io_driver = {
2616 .name = "mos7840",
2617 .probe = usb_serial_probe,
2618 .disconnect = usb_serial_disconnect,
2619 .id_table = moschip_id_table_combined,
2620 .no_dynamic_id = 1,
2621};
2622
Paul B Schroeder3f542972006-08-31 19:41:47 -05002623static struct usb_serial_driver moschip7840_4port_device = {
2624 .driver = {
2625 .owner = THIS_MODULE,
2626 .name = "mos7840",
2627 },
2628 .description = DRIVER_DESC,
Johannes Hölzld9b1b782006-12-17 21:50:24 +01002629 .usb_driver = &io_driver,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002630 .id_table = moschip_port_id_table,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002631 .num_ports = 4,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002632 .open = mos7840_open,
2633 .close = mos7840_close,
2634 .write = mos7840_write,
2635 .write_room = mos7840_write_room,
2636 .chars_in_buffer = mos7840_chars_in_buffer,
2637 .throttle = mos7840_throttle,
2638 .unthrottle = mos7840_unthrottle,
2639 .calc_num_ports = mos7840_calc_num_ports,
2640#ifdef MCSSerialProbe
2641 .probe = mos7840_serial_probe,
2642#endif
2643 .ioctl = mos7840_ioctl,
2644 .set_termios = mos7840_set_termios,
2645 .break_ctl = mos7840_break,
2646 .tiocmget = mos7840_tiocmget,
2647 .tiocmset = mos7840_tiocmset,
2648 .attach = mos7840_startup,
Alan Sternf9c99bb2009-06-02 11:53:55 -04002649 .disconnect = mos7840_disconnect,
2650 .release = mos7840_release,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002651 .read_bulk_callback = mos7840_bulk_in_callback,
2652 .read_int_callback = mos7840_interrupt_callback,
2653};
2654
Paul B Schroeder3f542972006-08-31 19:41:47 -05002655/****************************************************************************
2656 * moschip7840_init
2657 * This is called by the module subsystem, or on startup to initialize us
2658 ****************************************************************************/
2659static int __init moschip7840_init(void)
2660{
2661 int retval;
2662
Tony Cook84fe6e72009-04-18 22:55:06 +09302663 dbg("%s", " mos7840_init :entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002664
2665 /* Register with the usb serial */
2666 retval = usb_serial_register(&moschip7840_4port_device);
2667
2668 if (retval)
2669 goto failed_port_device_register;
2670
Tony Cook84fe6e72009-04-18 22:55:06 +09302671 dbg("%s", "Entering...");
Greg Kroah-Hartmanc197a8d2008-08-18 13:21:04 -07002672 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
2673 DRIVER_DESC "\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002674
2675 /* Register with the usb */
2676 retval = usb_register(&io_driver);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002677 if (retval == 0) {
Tony Cook84fe6e72009-04-18 22:55:06 +09302678 dbg("%s", "Leaving...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002679 return 0;
2680 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002681 usb_serial_deregister(&moschip7840_4port_device);
Alan Cox880af9d2008-07-22 11:16:12 +01002682failed_port_device_register:
Paul B Schroeder3f542972006-08-31 19:41:47 -05002683 return retval;
2684}
2685
2686/****************************************************************************
2687 * moschip7840_exit
2688 * Called when the driver is about to be unloaded.
2689 ****************************************************************************/
2690static void __exit moschip7840_exit(void)
2691{
2692
Tony Cook84fe6e72009-04-18 22:55:06 +09302693 dbg("%s", " mos7840_exit :entering..........");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002694
2695 usb_deregister(&io_driver);
2696
2697 usb_serial_deregister(&moschip7840_4port_device);
2698
Tony Cook84fe6e72009-04-18 22:55:06 +09302699 dbg("%s", "Entering...");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002700}
2701
2702module_init(moschip7840_init);
2703module_exit(moschip7840_exit);
2704
2705/* Module information */
2706MODULE_DESCRIPTION(DRIVER_DESC);
2707MODULE_LICENSE("GPL");
2708
2709module_param(debug, bool, S_IRUGO | S_IWUSR);
2710MODULE_PARM_DESC(debug, "Debug enabled or not");