]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/usb/serial/mos7840.c
Merge branch 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[net-next-2.6.git] / drivers / usb / serial / mos7840.c
CommitLineData
3f542974
PS
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 *
16 * Clean ups from Moschip version and a few ioctl implementations by:
17 * Paul B Schroeder <pschroeder "at" uplogix "dot" com>
18 *
19 * Originally based on drivers/usb/serial/io_edgeport.c which is:
20 * Copyright (C) 2000 Inside Out Networks, All rights reserved.
21 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
22 *
23 */
24
25#include <linux/kernel.h>
26#include <linux/errno.h>
27#include <linux/init.h>
28#include <linux/slab.h>
29#include <linux/tty.h>
30#include <linux/tty_driver.h>
31#include <linux/tty_flip.h>
32#include <linux/module.h>
33#include <linux/serial.h>
34#include <linux/usb.h>
35#include <linux/usb/serial.h>
880af9db 36#include <linux/uaccess.h>
3f542974
PS
37
38/*
39 * Version Information
40 */
37768adf 41#define DRIVER_VERSION "1.3.2"
3f542974
PS
42#define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
43
44/*
45 * 16C50 UART register defines
46 */
47
48#define LCR_BITS_5 0x00 /* 5 bits/char */
49#define LCR_BITS_6 0x01 /* 6 bits/char */
50#define LCR_BITS_7 0x02 /* 7 bits/char */
51#define LCR_BITS_8 0x03 /* 8 bits/char */
52#define LCR_BITS_MASK 0x03 /* Mask for bits/char field */
53
54#define LCR_STOP_1 0x00 /* 1 stop bit */
55#define LCR_STOP_1_5 0x04 /* 1.5 stop bits (if 5 bits/char) */
56#define LCR_STOP_2 0x04 /* 2 stop bits (if 6-8 bits/char) */
57#define LCR_STOP_MASK 0x04 /* Mask for stop bits field */
58
59#define LCR_PAR_NONE 0x00 /* No parity */
60#define LCR_PAR_ODD 0x08 /* Odd parity */
61#define LCR_PAR_EVEN 0x18 /* Even parity */
62#define LCR_PAR_MARK 0x28 /* Force parity bit to 1 */
63#define LCR_PAR_SPACE 0x38 /* Force parity bit to 0 */
64#define LCR_PAR_MASK 0x38 /* Mask for parity field */
65
66#define LCR_SET_BREAK 0x40 /* Set Break condition */
67#define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
68
69#define MCR_DTR 0x01 /* Assert DTR */
70#define MCR_RTS 0x02 /* Assert RTS */
71#define MCR_OUT1 0x04 /* Loopback only: Sets state of RI */
72#define MCR_MASTER_IE 0x08 /* Enable interrupt outputs */
73#define MCR_LOOPBACK 0x10 /* Set internal (digital) loopback mode */
74#define MCR_XON_ANY 0x20 /* Enable any char to exit XOFF mode */
75
76#define MOS7840_MSR_CTS 0x10 /* Current state of CTS */
77#define MOS7840_MSR_DSR 0x20 /* Current state of DSR */
78#define MOS7840_MSR_RI 0x40 /* Current state of RI */
79#define MOS7840_MSR_CD 0x80 /* Current state of CD */
80
81/*
82 * Defines used for sending commands to port
83 */
84
880af9db
AC
85#define WAIT_FOR_EVER (HZ * 0) /* timeout urb is wait for ever */
86#define MOS_WDR_TIMEOUT (HZ * 5) /* default urb timeout */
3f542974
PS
87
88#define MOS_PORT1 0x0200
89#define MOS_PORT2 0x0300
90#define MOS_VENREG 0x0000
91#define MOS_MAX_PORT 0x02
92#define MOS_WRITE 0x0E
93#define MOS_READ 0x0D
94
95/* Requests */
96#define MCS_RD_RTYPE 0xC0
97#define MCS_WR_RTYPE 0x40
98#define MCS_RDREQ 0x0D
99#define MCS_WRREQ 0x0E
100#define MCS_CTRL_TIMEOUT 500
101#define VENDOR_READ_LENGTH (0x01)
102
103#define MAX_NAME_LEN 64
104
880af9db
AC
105#define ZLP_REG1 0x3A /* Zero_Flag_Reg1 58 */
106#define ZLP_REG5 0x3E /* Zero_Flag_Reg5 62 */
3f542974
PS
107
108/* For higher baud Rates use TIOCEXBAUD */
109#define TIOCEXBAUD 0x5462
110
111/* vendor id and device id defines */
112
11e1abb4 113/* The native mos7840/7820 component */
3f542974
PS
114#define USB_VENDOR_ID_MOSCHIP 0x9710
115#define MOSCHIP_DEVICE_ID_7840 0x7840
116#define MOSCHIP_DEVICE_ID_7820 0x7820
11e1abb4
DL
117/* The native component can have its vendor/device id's overridden
118 * in vendor-specific implementations. Such devices can be handled
119 * by making a change here, in moschip_port_id_table, and in
120 * moschip_id_table_combined
121 */
122#define USB_VENDOR_ID_BANDB 0x0856
acf509ae
CB
123#define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
124#define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
125#define BANDB_DEVICE_ID_US9ML2_2 0xAC29
126#define BANDB_DEVICE_ID_US9ML2_4 0xAC30
127#define BANDB_DEVICE_ID_USPTL4_2 0xAC31
128#define BANDB_DEVICE_ID_USPTL4_4 0xAC32
27f1281d
BG
129#define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
130#define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
131#define BANDB_DEVICE_ID_USOPTL2_4 0xAC24
3f542974 132
9d498bea
RL
133/* This driver also supports
134 * ATEN UC2324 device using Moschip MCS7840
135 * ATEN UC2322 device using Moschip MCS7820
136 */
e9b8cffa
TC
137#define USB_VENDOR_ID_ATENINTL 0x0557
138#define ATENINTL_DEVICE_ID_UC2324 0x2011
9d498bea 139#define ATENINTL_DEVICE_ID_UC2322 0x7820
e9b8cffa 140
11e1abb4 141/* Interrupt Routine Defines */
3f542974
PS
142
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
880af9db 160/* Serial Port register Address */
3f542974
PS
161#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
7d40d7e8 183static const struct usb_device_id moschip_port_id_table[] = {
3f542974
PS
184 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
185 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
acf509ae
CB
186 {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)},
11e1abb4 192 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
acf509ae 193 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
27f1281d 194 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
e9b8cffa 195 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
9d498bea 196 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
3f542974
PS
197 {} /* terminating entry */
198};
199
7d40d7e8 200static const struct usb_device_id moschip_id_table_combined[] __devinitconst = {
3f542974
PS
201 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
202 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
acf509ae
CB
203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
207 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
208 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
11e1abb4 209 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
acf509ae 210 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
27f1281d 211 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
e9b8cffa 212 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
9d498bea 213 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
3f542974
PS
214 {} /* terminating entry */
215};
216
217MODULE_DEVICE_TABLE(usb, moschip_id_table_combined);
218
219/* This structure holds all of the local port information */
220
221struct moschip_port {
222 int port_num; /*Actual port number in the device(1,2,etc) */
223 struct urb *write_urb; /* write URB for this port */
224 struct urb *read_urb; /* read URB for this port */
0de9a702 225 struct urb *int_urb;
3f542974
PS
226 __u8 shadowLCR; /* last LCR value received */
227 __u8 shadowMCR; /* last MCR value received */
228 char open;
0de9a702
ON
229 char open_ports;
230 char zombie;
3f542974
PS
231 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
232 wait_queue_head_t delta_msr_wait; /* for handling sleeping while waiting for msr change to happen */
233 int delta_msr_cond;
234 struct async_icount icount;
235 struct usb_serial_port *port; /* loop back to the owner of this object */
236
880af9db 237 /* Offsets */
3f542974
PS
238 __u8 SpRegOffset;
239 __u8 ControlRegOffset;
240 __u8 DcrRegOffset;
880af9db 241 /* for processing control URBS in interrupt context */
3f542974 242 struct urb *control_urb;
0de9a702 243 struct usb_ctrlrequest *dr;
3f542974
PS
244 char *ctrl_buf;
245 int MsrLsr;
246
0de9a702 247 spinlock_t pool_lock;
3f542974 248 struct urb *write_urb_pool[NUM_URBS];
0de9a702 249 char busy[NUM_URBS];
50de36f7 250 bool read_urb_busy;
3f542974
PS
251};
252
253
254static int debug;
3f542974
PS
255
256/*
257 * mos7840_set_reg_sync
258 * To set the Control register by calling usb_fill_control_urb function
259 * by passing usb_sndctrlpipe function as parameter.
260 */
261
262static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
263 __u16 val)
264{
265 struct usb_device *dev = port->serial->dev;
266 val = val & 0x00ff;
84fe6e79 267 dbg("mos7840_set_reg_sync offset is %x, value %x", reg, val);
3f542974
PS
268
269 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
270 MCS_WR_RTYPE, val, reg, NULL, 0,
271 MOS_WDR_TIMEOUT);
272}
273
274/*
275 * mos7840_get_reg_sync
276 * To set the Uart register by calling usb_fill_control_urb function by
277 * passing usb_rcvctrlpipe function as parameter.
278 */
279
280static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
880af9db 281 __u16 *val)
3f542974
PS
282{
283 struct usb_device *dev = port->serial->dev;
284 int ret = 0;
9e221a35
JH
285 u8 *buf;
286
287 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
288 if (!buf)
289 return -ENOMEM;
3f542974
PS
290
291 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
9e221a35 292 MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
3f542974 293 MOS_WDR_TIMEOUT);
9e221a35 294 *val = buf[0];
84fe6e79 295 dbg("mos7840_get_reg_sync offset is %x, return val %x", reg, *val);
9e221a35
JH
296
297 kfree(buf);
3f542974
PS
298 return ret;
299}
300
301/*
302 * mos7840_set_uart_reg
303 * To set the Uart register by calling usb_fill_control_urb function by
304 * passing usb_sndctrlpipe function as parameter.
305 */
306
307static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
308 __u16 val)
309{
310
311 struct usb_device *dev = port->serial->dev;
312 val = val & 0x00ff;
880af9db
AC
313 /* For the UART control registers, the application number need
314 to be Or'ed */
0de9a702 315 if (port->serial->num_ports == 4) {
880af9db
AC
316 val |= (((__u16) port->number -
317 (__u16) (port->serial->minor)) + 1) << 8;
84fe6e79 318 dbg("mos7840_set_uart_reg application number is %x", val);
3f542974
PS
319 } else {
320 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
880af9db 321 val |= (((__u16) port->number -
3f542974 322 (__u16) (port->serial->minor)) + 1) << 8;
84fe6e79 323 dbg("mos7840_set_uart_reg application number is %x",
3f542974
PS
324 val);
325 } else {
326 val |=
327 (((__u16) port->number -
328 (__u16) (port->serial->minor)) + 2) << 8;
84fe6e79 329 dbg("mos7840_set_uart_reg application number is %x",
3f542974
PS
330 val);
331 }
332 }
333 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
334 MCS_WR_RTYPE, val, reg, NULL, 0,
335 MOS_WDR_TIMEOUT);
336
337}
338
339/*
340 * mos7840_get_uart_reg
341 * To set the Control register by calling usb_fill_control_urb function
342 * by passing usb_rcvctrlpipe function as parameter.
343 */
344static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
880af9db 345 __u16 *val)
3f542974
PS
346{
347 struct usb_device *dev = port->serial->dev;
348 int ret = 0;
349 __u16 Wval;
9e221a35
JH
350 u8 *buf;
351
352 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
353 if (!buf)
354 return -ENOMEM;
3f542974 355
84fe6e79 356 /* dbg("application number is %4x",
880af9db
AC
357 (((__u16)port->number - (__u16)(port->serial->minor))+1)<<8); */
358 /* Wval is same as application number */
0de9a702 359 if (port->serial->num_ports == 4) {
3f542974
PS
360 Wval =
361 (((__u16) port->number - (__u16) (port->serial->minor)) +
362 1) << 8;
84fe6e79 363 dbg("mos7840_get_uart_reg application number is %x", Wval);
3f542974
PS
364 } else {
365 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
880af9db 366 Wval = (((__u16) port->number -
3f542974 367 (__u16) (port->serial->minor)) + 1) << 8;
84fe6e79 368 dbg("mos7840_get_uart_reg application number is %x",
3f542974
PS
369 Wval);
370 } else {
880af9db 371 Wval = (((__u16) port->number -
3f542974 372 (__u16) (port->serial->minor)) + 2) << 8;
84fe6e79 373 dbg("mos7840_get_uart_reg application number is %x",
3f542974
PS
374 Wval);
375 }
376 }
377 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
9e221a35 378 MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
3f542974 379 MOS_WDR_TIMEOUT);
9e221a35
JH
380 *val = buf[0];
381
382 kfree(buf);
3f542974
PS
383 return ret;
384}
385
386static void mos7840_dump_serial_port(struct moschip_port *mos7840_port)
387{
388
84fe6e79
TC
389 dbg("***************************************");
390 dbg("SpRegOffset is %2x", mos7840_port->SpRegOffset);
391 dbg("ControlRegOffset is %2x", mos7840_port->ControlRegOffset);
392 dbg("DCRRegOffset is %2x", mos7840_port->DcrRegOffset);
393 dbg("***************************************");
3f542974
PS
394
395}
396
397/************************************************************************/
398/************************************************************************/
399/* I N T E R F A C E F U N C T I O N S */
400/* I N T E R F A C E F U N C T I O N S */
401/************************************************************************/
402/************************************************************************/
403
404static inline void mos7840_set_port_private(struct usb_serial_port *port,
405 struct moschip_port *data)
406{
407 usb_set_serial_port_data(port, (void *)data);
408}
409
410static inline struct moschip_port *mos7840_get_port_private(struct
411 usb_serial_port
412 *port)
413{
414 return (struct moschip_port *)usb_get_serial_port_data(port);
415}
416
0de9a702 417static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
3f542974
PS
418{
419 struct moschip_port *mos7840_port;
420 struct async_icount *icount;
421 mos7840_port = port;
422 icount = &mos7840_port->icount;
423 if (new_msr &
424 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
425 MOS_MSR_DELTA_CD)) {
426 icount = &mos7840_port->icount;
427
428 /* update input line counters */
429 if (new_msr & MOS_MSR_DELTA_CTS) {
430 icount->cts++;
0de9a702 431 smp_wmb();
3f542974
PS
432 }
433 if (new_msr & MOS_MSR_DELTA_DSR) {
434 icount->dsr++;
0de9a702 435 smp_wmb();
3f542974
PS
436 }
437 if (new_msr & MOS_MSR_DELTA_CD) {
438 icount->dcd++;
0de9a702 439 smp_wmb();
3f542974
PS
440 }
441 if (new_msr & MOS_MSR_DELTA_RI) {
442 icount->rng++;
0de9a702 443 smp_wmb();
3f542974
PS
444 }
445 }
3f542974
PS
446}
447
0de9a702 448static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
3f542974
PS
449{
450 struct async_icount *icount;
451
441b62c1 452 dbg("%s - %02x", __func__, new_lsr);
3f542974
PS
453
454 if (new_lsr & SERIAL_LSR_BI) {
880af9db
AC
455 /*
456 * Parity and Framing errors only count if they
457 * occur exclusive of a break being
458 * received.
459 */
3f542974
PS
460 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
461 }
462
463 /* update input line counters */
464 icount = &port->icount;
465 if (new_lsr & SERIAL_LSR_BI) {
466 icount->brk++;
0de9a702 467 smp_wmb();
3f542974
PS
468 }
469 if (new_lsr & SERIAL_LSR_OE) {
470 icount->overrun++;
0de9a702 471 smp_wmb();
3f542974
PS
472 }
473 if (new_lsr & SERIAL_LSR_PE) {
474 icount->parity++;
0de9a702 475 smp_wmb();
3f542974
PS
476 }
477 if (new_lsr & SERIAL_LSR_FE) {
478 icount->frame++;
0de9a702 479 smp_wmb();
3f542974 480 }
3f542974
PS
481}
482
483/************************************************************************/
484/************************************************************************/
485/* U S B C A L L B A C K F U N C T I O N S */
486/* U S B C A L L B A C K F U N C T I O N S */
487/************************************************************************/
488/************************************************************************/
489
7d12e780 490static void mos7840_control_callback(struct urb *urb)
3f542974
PS
491{
492 unsigned char *data;
493 struct moschip_port *mos7840_port;
494 __u8 regval = 0x0;
0de9a702 495 int result = 0;
0643c724 496 int status = urb->status;
3f542974 497
cdc97792 498 mos7840_port = urb->context;
0de9a702 499
0643c724 500 switch (status) {
3f542974
PS
501 case 0:
502 /* success */
503 break;
504 case -ECONNRESET:
505 case -ENOENT:
506 case -ESHUTDOWN:
507 /* this urb is terminated, clean up */
441b62c1 508 dbg("%s - urb shutting down with status: %d", __func__,
0643c724 509 status);
3f542974
PS
510 return;
511 default:
441b62c1 512 dbg("%s - nonzero urb status received: %d", __func__,
0643c724 513 status);
3f542974
PS
514 goto exit;
515 }
516
84fe6e79
TC
517 dbg("%s urb buffer size is %d", __func__, urb->actual_length);
518 dbg("%s mos7840_port->MsrLsr is %d port %d", __func__,
3f542974
PS
519 mos7840_port->MsrLsr, mos7840_port->port_num);
520 data = urb->transfer_buffer;
521 regval = (__u8) data[0];
84fe6e79 522 dbg("%s data is %x", __func__, regval);
3f542974
PS
523 if (mos7840_port->MsrLsr == 0)
524 mos7840_handle_new_msr(mos7840_port, regval);
525 else if (mos7840_port->MsrLsr == 1)
526 mos7840_handle_new_lsr(mos7840_port, regval);
527
0de9a702
ON
528exit:
529 spin_lock(&mos7840_port->pool_lock);
530 if (!mos7840_port->zombie)
531 result = usb_submit_urb(mos7840_port->int_urb, GFP_ATOMIC);
532 spin_unlock(&mos7840_port->pool_lock);
533 if (result) {
534 dev_err(&urb->dev->dev,
535 "%s - Error %d submitting interrupt urb\n",
441b62c1 536 __func__, result);
0de9a702 537 }
3f542974
PS
538}
539
540static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
880af9db 541 __u16 *val)
3f542974
PS
542{
543 struct usb_device *dev = mcs->port->serial->dev;
0de9a702
ON
544 struct usb_ctrlrequest *dr = mcs->dr;
545 unsigned char *buffer = mcs->ctrl_buf;
546 int ret;
3f542974 547
3f542974
PS
548 dr->bRequestType = MCS_RD_RTYPE;
549 dr->bRequest = MCS_RDREQ;
880af9db 550 dr->wValue = cpu_to_le16(Wval); /* 0 */
3f542974
PS
551 dr->wIndex = cpu_to_le16(reg);
552 dr->wLength = cpu_to_le16(2);
553
554 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
555 (unsigned char *)dr, buffer, 2,
556 mos7840_control_callback, mcs);
557 mcs->control_urb->transfer_buffer_length = 2;
558 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
559 return ret;
560}
561
562/*****************************************************************************
563 * mos7840_interrupt_callback
564 * this is the callback function for when we have received data on the
565 * interrupt endpoint.
566 *****************************************************************************/
567
7d12e780 568static void mos7840_interrupt_callback(struct urb *urb)
3f542974
PS
569{
570 int result;
571 int length;
572 struct moschip_port *mos7840_port;
573 struct usb_serial *serial;
574 __u16 Data;
575 unsigned char *data;
576 __u8 sp[5], st;
0de9a702
ON
577 int i, rv = 0;
578 __u16 wval, wreg = 0;
0643c724 579 int status = urb->status;
3f542974 580
84fe6e79 581 dbg("%s", " : Entering");
3f542974 582
0643c724 583 switch (status) {
3f542974
PS
584 case 0:
585 /* success */
586 break;
587 case -ECONNRESET:
588 case -ENOENT:
589 case -ESHUTDOWN:
590 /* this urb is terminated, clean up */
441b62c1 591 dbg("%s - urb shutting down with status: %d", __func__,
0643c724 592 status);
3f542974
PS
593 return;
594 default:
441b62c1 595 dbg("%s - nonzero urb status received: %d", __func__,
0643c724 596 status);
3f542974
PS
597 goto exit;
598 }
599
600 length = urb->actual_length;
601 data = urb->transfer_buffer;
602
cdc97792 603 serial = urb->context;
3f542974
PS
604
605 /* Moschip get 5 bytes
606 * Byte 1 IIR Port 1 (port.number is 0)
607 * Byte 2 IIR Port 2 (port.number is 1)
608 * Byte 3 IIR Port 3 (port.number is 2)
609 * Byte 4 IIR Port 4 (port.number is 3)
610 * Byte 5 FIFO status for both */
611
612 if (length && length > 5) {
84fe6e79 613 dbg("%s", "Wrong data !!!");
3f542974
PS
614 return;
615 }
616
617 sp[0] = (__u8) data[0];
618 sp[1] = (__u8) data[1];
619 sp[2] = (__u8) data[2];
620 sp[3] = (__u8) data[3];
621 st = (__u8) data[4];
622
623 for (i = 0; i < serial->num_ports; i++) {
624 mos7840_port = mos7840_get_port_private(serial->port[i]);
625 wval =
626 (((__u16) serial->port[i]->number -
627 (__u16) (serial->minor)) + 1) << 8;
628 if (mos7840_port->open) {
629 if (sp[i] & 0x01) {
84fe6e79 630 dbg("SP%d No Interrupt !!!", i);
3f542974
PS
631 } else {
632 switch (sp[i] & 0x0f) {
633 case SERIAL_IIR_RLS:
634 dbg("Serial Port %d: Receiver status error or ", i);
84fe6e79 635 dbg("address bit detected in 9-bit mode");
3f542974 636 mos7840_port->MsrLsr = 1;
0de9a702 637 wreg = LINE_STATUS_REGISTER;
3f542974
PS
638 break;
639 case SERIAL_IIR_MS:
84fe6e79 640 dbg("Serial Port %d: Modem status change", i);
3f542974 641 mos7840_port->MsrLsr = 0;
0de9a702 642 wreg = MODEM_STATUS_REGISTER;
3f542974
PS
643 break;
644 }
0de9a702
ON
645 spin_lock(&mos7840_port->pool_lock);
646 if (!mos7840_port->zombie) {
647 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
648 } else {
649 spin_unlock(&mos7840_port->pool_lock);
650 return;
651 }
652 spin_unlock(&mos7840_port->pool_lock);
3f542974
PS
653 }
654 }
655 }
880af9db
AC
656 if (!(rv < 0))
657 /* the completion handler for the control urb will resubmit */
0de9a702
ON
658 return;
659exit:
3f542974
PS
660 result = usb_submit_urb(urb, GFP_ATOMIC);
661 if (result) {
662 dev_err(&urb->dev->dev,
663 "%s - Error %d submitting interrupt urb\n",
441b62c1 664 __func__, result);
3f542974 665 }
3f542974
PS
666}
667
668static int mos7840_port_paranoia_check(struct usb_serial_port *port,
669 const char *function)
670{
671 if (!port) {
672 dbg("%s - port == NULL", function);
673 return -1;
674 }
675 if (!port->serial) {
676 dbg("%s - port->serial == NULL", function);
677 return -1;
678 }
679
680 return 0;
681}
682
683/* Inline functions to check the sanity of a pointer that is passed to us */
684static int mos7840_serial_paranoia_check(struct usb_serial *serial,
685 const char *function)
686{
687 if (!serial) {
688 dbg("%s - serial == NULL", function);
689 return -1;
690 }
691 if (!serial->type) {
692 dbg("%s - serial->type == NULL!", function);
693 return -1;
694 }
695
696 return 0;
697}
698
699static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
700 const char *function)
701{
702 /* if no port was specified, or it fails a paranoia check */
703 if (!port ||
704 mos7840_port_paranoia_check(port, function) ||
705 mos7840_serial_paranoia_check(port->serial, function)) {
880af9db
AC
706 /* then say that we don't have a valid usb_serial thing,
707 * which will end up genrating -ENODEV return values */
3f542974
PS
708 return NULL;
709 }
710
711 return port->serial;
712}
713
714/*****************************************************************************
715 * mos7840_bulk_in_callback
716 * this is the callback function for when we have received data on the
717 * bulk in endpoint.
718 *****************************************************************************/
719
7d12e780 720static void mos7840_bulk_in_callback(struct urb *urb)
3f542974 721{
0643c724 722 int retval;
3f542974
PS
723 unsigned char *data;
724 struct usb_serial *serial;
725 struct usb_serial_port *port;
726 struct moschip_port *mos7840_port;
727 struct tty_struct *tty;
0643c724 728 int status = urb->status;
3f542974 729
cdc97792 730 mos7840_port = urb->context;
3f542974 731 if (!mos7840_port) {
84fe6e79 732 dbg("%s", "NULL mos7840_port pointer");
50de36f7
GKH
733 return;
734 }
735
736 if (status) {
737 dbg("nonzero read bulk status received: %d", status);
738 mos7840_port->read_urb_busy = false;
3f542974
PS
739 return;
740 }
741
742 port = (struct usb_serial_port *)mos7840_port->port;
441b62c1 743 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 744 dbg("%s", "Port Paranoia failed");
50de36f7 745 mos7840_port->read_urb_busy = false;
3f542974
PS
746 return;
747 }
748
441b62c1 749 serial = mos7840_get_usb_serial(port, __func__);
3f542974 750 if (!serial) {
84fe6e79 751 dbg("%s", "Bad serial pointer");
50de36f7 752 mos7840_port->read_urb_busy = false;
3f542974
PS
753 return;
754 }
755
84fe6e79 756 dbg("%s", "Entering... ");
3f542974
PS
757
758 data = urb->transfer_buffer;
759
84fe6e79 760 dbg("%s", "Entering ...........");
3f542974
PS
761
762 if (urb->actual_length) {
4a90f09b 763 tty = tty_port_tty_get(&mos7840_port->port->port);
3f542974 764 if (tty) {
3f542974 765 tty_insert_flip_string(tty, data, urb->actual_length);
84fe6e79 766 dbg(" %s ", data);
3f542974 767 tty_flip_buffer_push(tty);
4a90f09b 768 tty_kref_put(tty);
3f542974
PS
769 }
770 mos7840_port->icount.rx += urb->actual_length;
0de9a702 771 smp_wmb();
84fe6e79 772 dbg("mos7840_port->icount.rx is %d:",
3f542974
PS
773 mos7840_port->icount.rx);
774 }
775
776 if (!mos7840_port->read_urb) {
84fe6e79 777 dbg("%s", "URB KILLED !!!");
50de36f7 778 mos7840_port->read_urb_busy = false;
3f542974
PS
779 return;
780 }
781
3f542974 782
0de9a702 783 mos7840_port->read_urb->dev = serial->dev;
3f542974 784
50de36f7 785 mos7840_port->read_urb_busy = true;
0643c724 786 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
0de9a702 787
0643c724 788 if (retval) {
50de36f7
GKH
789 dbg("usb_submit_urb(read bulk) failed, retval = %d", retval);
790 mos7840_port->read_urb_busy = false;
3f542974
PS
791 }
792}
793
794/*****************************************************************************
795 * mos7840_bulk_out_data_callback
880af9db
AC
796 * this is the callback function for when we have finished sending
797 * serial data on the bulk out endpoint.
3f542974
PS
798 *****************************************************************************/
799
7d12e780 800static void mos7840_bulk_out_data_callback(struct urb *urb)
3f542974
PS
801{
802 struct moschip_port *mos7840_port;
803 struct tty_struct *tty;
0643c724 804 int status = urb->status;
0de9a702
ON
805 int i;
806
cdc97792 807 mos7840_port = urb->context;
0de9a702
ON
808 spin_lock(&mos7840_port->pool_lock);
809 for (i = 0; i < NUM_URBS; i++) {
810 if (urb == mos7840_port->write_urb_pool[i]) {
811 mos7840_port->busy[i] = 0;
812 break;
813 }
814 }
815 spin_unlock(&mos7840_port->pool_lock);
816
0643c724 817 if (status) {
84fe6e79 818 dbg("nonzero write bulk status received:%d", status);
3f542974
PS
819 return;
820 }
821
441b62c1 822 if (mos7840_port_paranoia_check(mos7840_port->port, __func__)) {
84fe6e79 823 dbg("%s", "Port Paranoia failed");
3f542974
PS
824 return;
825 }
826
84fe6e79 827 dbg("%s", "Entering .........");
3f542974 828
4a90f09b 829 tty = tty_port_tty_get(&mos7840_port->port->port);
b963a844
JS
830 if (tty && mos7840_port->open)
831 tty_wakeup(tty);
4a90f09b 832 tty_kref_put(tty);
3f542974
PS
833
834}
835
836/************************************************************************/
837/* D R I V E R T T Y I N T E R F A C E F U N C T I O N S */
838/************************************************************************/
839#ifdef MCSSerialProbe
840static int mos7840_serial_probe(struct usb_serial *serial,
841 const struct usb_device_id *id)
842{
843
844 /*need to implement the mode_reg reading and updating\
845 structures usb_serial_ device_type\
846 (i.e num_ports, num_bulkin,bulkout etc) */
847 /* Also we can update the changes attach */
848 return 1;
849}
850#endif
851
852/*****************************************************************************
853 * mos7840_open
854 * this function is called by the tty driver when a port is opened
855 * If successful, we return 0
856 * Otherwise we return a negative error number.
857 *****************************************************************************/
858
a509a7e4 859static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
3f542974
PS
860{
861 int response;
862 int j;
863 struct usb_serial *serial;
864 struct urb *urb;
865 __u16 Data;
866 int status;
867 struct moschip_port *mos7840_port;
0de9a702 868 struct moschip_port *port0;
3f542974 869
84fe6e79
TC
870 dbg ("%s enter", __func__);
871
441b62c1 872 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 873 dbg("%s", "Port Paranoia failed");
3f542974
PS
874 return -ENODEV;
875 }
876
3f542974
PS
877 serial = port->serial;
878
441b62c1 879 if (mos7840_serial_paranoia_check(serial, __func__)) {
84fe6e79 880 dbg("%s", "Serial Paranoia failed");
3f542974
PS
881 return -ENODEV;
882 }
883
884 mos7840_port = mos7840_get_port_private(port);
0de9a702 885 port0 = mos7840_get_port_private(serial->port[0]);
3f542974 886
0de9a702 887 if (mos7840_port == NULL || port0 == NULL)
3f542974
PS
888 return -ENODEV;
889
890 usb_clear_halt(serial->dev, port->write_urb->pipe);
891 usb_clear_halt(serial->dev, port->read_urb->pipe);
0de9a702 892 port0->open_ports++;
3f542974
PS
893
894 /* Initialising the write urb pool */
895 for (j = 0; j < NUM_URBS; ++j) {
0de9a702 896 urb = usb_alloc_urb(0, GFP_KERNEL);
3f542974
PS
897 mos7840_port->write_urb_pool[j] = urb;
898
899 if (urb == NULL) {
194343d9 900 dev_err(&port->dev, "No more urbs???\n");
3f542974
PS
901 continue;
902 }
903
880af9db
AC
904 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
905 GFP_KERNEL);
3f542974 906 if (!urb->transfer_buffer) {
0de9a702
ON
907 usb_free_urb(urb);
908 mos7840_port->write_urb_pool[j] = NULL;
194343d9
GKH
909 dev_err(&port->dev,
910 "%s-out of memory for urb buffers.\n",
911 __func__);
3f542974
PS
912 continue;
913 }
914 }
915
916/*****************************************************************************
917 * Initialize MCS7840 -- Write Init values to corresponding Registers
918 *
919 * Register Index
920 * 1 : IER
921 * 2 : FCR
922 * 3 : LCR
923 * 4 : MCR
924 *
925 * 0x08 : SP1/2 Control Reg
926 *****************************************************************************/
927
880af9db 928 /* NEED to check the following Block */
3f542974 929
3f542974
PS
930 Data = 0x0;
931 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
932 if (status < 0) {
84fe6e79 933 dbg("Reading Spreg failed");
3f542974
PS
934 return -1;
935 }
936 Data |= 0x80;
937 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
938 if (status < 0) {
84fe6e79 939 dbg("writing Spreg failed");
3f542974
PS
940 return -1;
941 }
942
943 Data &= ~0x80;
944 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
945 if (status < 0) {
84fe6e79 946 dbg("writing Spreg failed");
3f542974
PS
947 return -1;
948 }
880af9db 949 /* End of block to be checked */
3f542974 950
3f542974 951 Data = 0x0;
880af9db
AC
952 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
953 &Data);
3f542974 954 if (status < 0) {
84fe6e79 955 dbg("Reading Controlreg failed");
3f542974
PS
956 return -1;
957 }
880af9db
AC
958 Data |= 0x08; /* Driver done bit */
959 Data |= 0x20; /* rx_disable */
960 status = mos7840_set_reg_sync(port,
961 mos7840_port->ControlRegOffset, Data);
3f542974 962 if (status < 0) {
84fe6e79 963 dbg("writing Controlreg failed");
3f542974
PS
964 return -1;
965 }
880af9db
AC
966 /* do register settings here */
967 /* Set all regs to the device default values. */
968 /***********************************
969 * First Disable all interrupts.
970 ***********************************/
3f542974 971 Data = 0x00;
3f542974
PS
972 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
973 if (status < 0) {
84fe6e79 974 dbg("disabling interrupts failed");
3f542974
PS
975 return -1;
976 }
880af9db 977 /* Set FIFO_CONTROL_REGISTER to the default value */
3f542974 978 Data = 0x00;
3f542974
PS
979 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
980 if (status < 0) {
84fe6e79 981 dbg("Writing FIFO_CONTROL_REGISTER failed");
3f542974
PS
982 return -1;
983 }
984
985 Data = 0xcf;
3f542974
PS
986 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
987 if (status < 0) {
84fe6e79 988 dbg("Writing FIFO_CONTROL_REGISTER failed");
3f542974
PS
989 return -1;
990 }
991
992 Data = 0x03;
3f542974
PS
993 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
994 mos7840_port->shadowLCR = Data;
995
996 Data = 0x0b;
3f542974
PS
997 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
998 mos7840_port->shadowMCR = Data;
999
1000 Data = 0x00;
3f542974
PS
1001 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1002 mos7840_port->shadowLCR = Data;
1003
880af9db 1004 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
3f542974
PS
1005 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1006
1007 Data = 0x0c;
3f542974
PS
1008 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1009
1010 Data = 0x0;
3f542974
PS
1011 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1012
1013 Data = 0x00;
3f542974
PS
1014 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1015
1016 Data = Data & ~SERIAL_LCR_DLAB;
3f542974
PS
1017 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1018 mos7840_port->shadowLCR = Data;
1019
880af9db 1020 /* clearing Bulkin and Bulkout Fifo */
3f542974 1021 Data = 0x0;
3f542974
PS
1022 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
1023
1024 Data = Data | 0x0c;
3f542974
PS
1025 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1026
1027 Data = Data & ~0x0c;
3f542974 1028 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
880af9db 1029 /* Finally enable all interrupts */
3f542974 1030 Data = 0x0c;
3f542974
PS
1031 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1032
880af9db 1033 /* clearing rx_disable */
3f542974 1034 Data = 0x0;
880af9db
AC
1035 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1036 &Data);
3f542974 1037 Data = Data & ~0x20;
880af9db
AC
1038 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1039 Data);
3f542974 1040
880af9db 1041 /* rx_negate */
3f542974 1042 Data = 0x0;
880af9db
AC
1043 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1044 &Data);
3f542974 1045 Data = Data | 0x10;
880af9db
AC
1046 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1047 Data);
3f542974 1048
880af9db
AC
1049 /* Check to see if we've set up our endpoint info yet *
1050 * (can't set it up in mos7840_startup as the structures *
1051 * were not set up at that time.) */
0de9a702 1052 if (port0->open_ports == 1) {
3f542974 1053 if (serial->port[0]->interrupt_in_buffer == NULL) {
3f542974 1054 /* set up interrupt urb */
3f542974 1055 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
880af9db
AC
1056 serial->dev,
1057 usb_rcvintpipe(serial->dev,
1058 serial->port[0]->interrupt_in_endpointAddress),
1059 serial->port[0]->interrupt_in_buffer,
1060 serial->port[0]->interrupt_in_urb->
1061 transfer_buffer_length,
1062 mos7840_interrupt_callback,
1063 serial,
1064 serial->port[0]->interrupt_in_urb->interval);
3f542974
PS
1065
1066 /* start interrupt read for mos7840 *
1067 * will continue as long as mos7840 is connected */
1068
1069 response =
1070 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1071 GFP_KERNEL);
1072 if (response) {
194343d9
GKH
1073 dev_err(&port->dev, "%s - Error %d submitting "
1074 "interrupt urb\n", __func__, response);
3f542974
PS
1075 }
1076
1077 }
1078
1079 }
1080
1081 /* see if we've set up our endpoint info yet *
1082 * (can't set it up in mos7840_startup as the *
1083 * structures were not set up at that time.) */
1084
84fe6e79
TC
1085 dbg("port number is %d", port->number);
1086 dbg("serial number is %d", port->serial->minor);
1087 dbg("Bulkin endpoint is %d", port->bulk_in_endpointAddress);
1088 dbg("BulkOut endpoint is %d", port->bulk_out_endpointAddress);
1089 dbg("Interrupt endpoint is %d", port->interrupt_in_endpointAddress);
1090 dbg("port's number in the device is %d", mos7840_port->port_num);
3f542974
PS
1091 mos7840_port->read_urb = port->read_urb;
1092
1093 /* set up our bulk in urb */
1094
1095 usb_fill_bulk_urb(mos7840_port->read_urb,
1096 serial->dev,
1097 usb_rcvbulkpipe(serial->dev,
1098 port->bulk_in_endpointAddress),
1099 port->bulk_in_buffer,
1100 mos7840_port->read_urb->transfer_buffer_length,
1101 mos7840_bulk_in_callback, mos7840_port);
1102
84fe6e79 1103 dbg("mos7840_open: bulkin endpoint is %d",
3f542974 1104 port->bulk_in_endpointAddress);
50de36f7 1105 mos7840_port->read_urb_busy = true;
3f542974
PS
1106 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1107 if (response) {
194343d9
GKH
1108 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1109 __func__, response);
50de36f7 1110 mos7840_port->read_urb_busy = false;
3f542974
PS
1111 }
1112
1113 /* initialize our wait queues */
1114 init_waitqueue_head(&mos7840_port->wait_chase);
1115 init_waitqueue_head(&mos7840_port->delta_msr_wait);
1116
1117 /* initialize our icount structure */
1118 memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount));
1119
1120 /* initialize our port settings */
880af9db
AC
1121 /* Must set to enable ints! */
1122 mos7840_port->shadowMCR = MCR_MASTER_IE;
3f542974
PS
1123 /* send a open port command */
1124 mos7840_port->open = 1;
880af9db 1125 /* mos7840_change_port_settings(mos7840_port,old_termios); */
3f542974
PS
1126 mos7840_port->icount.tx = 0;
1127 mos7840_port->icount.rx = 0;
1128
84fe6e79 1129 dbg("usb_serial serial:%p mos7840_port:%p\n usb_serial_port port:%p",
880af9db 1130 serial, mos7840_port, port);
3f542974 1131
84fe6e79
TC
1132 dbg ("%s leave", __func__);
1133
3f542974
PS
1134 return 0;
1135
1136}
1137
1138/*****************************************************************************
1139 * mos7840_chars_in_buffer
1140 * this function is called by the tty driver when it wants to know how many
1141 * bytes of data we currently have outstanding in the port (data that has
1142 * been written, but hasn't made it out the port yet)
1143 * If successful, we return the number of bytes left to be written in the
1144 * system,
95da310e 1145 * Otherwise we return zero.
3f542974
PS
1146 *****************************************************************************/
1147
95da310e 1148static int mos7840_chars_in_buffer(struct tty_struct *tty)
3f542974 1149{
95da310e 1150 struct usb_serial_port *port = tty->driver_data;
3f542974
PS
1151 int i;
1152 int chars = 0;
0de9a702 1153 unsigned long flags;
3f542974
PS
1154 struct moschip_port *mos7840_port;
1155
84fe6e79 1156 dbg("%s", " mos7840_chars_in_buffer:entering ...........");
3f542974 1157
441b62c1 1158 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1159 dbg("%s", "Invalid port");
95da310e 1160 return 0;
3f542974
PS
1161 }
1162
1163 mos7840_port = mos7840_get_port_private(port);
1164 if (mos7840_port == NULL) {
84fe6e79 1165 dbg("%s", "mos7840_break:leaving ...........");
95da310e 1166 return 0;
3f542974
PS
1167 }
1168
880af9db 1169 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
95da310e
AC
1170 for (i = 0; i < NUM_URBS; ++i)
1171 if (mos7840_port->busy[i])
3f542974 1172 chars += URB_TRANSFER_BUFFER_SIZE;
880af9db 1173 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
441b62c1 1174 dbg("%s - returns %d", __func__, chars);
0de9a702 1175 return chars;
3f542974
PS
1176
1177}
1178
3f542974
PS
1179/*****************************************************************************
1180 * mos7840_close
1181 * this function is called by the tty driver when a port is closed
1182 *****************************************************************************/
1183
335f8514 1184static void mos7840_close(struct usb_serial_port *port)
3f542974
PS
1185{
1186 struct usb_serial *serial;
1187 struct moschip_port *mos7840_port;
0de9a702 1188 struct moschip_port *port0;
3f542974
PS
1189 int j;
1190 __u16 Data;
1191
84fe6e79 1192 dbg("%s", "mos7840_close:entering...");
3f542974 1193
441b62c1 1194 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1195 dbg("%s", "Port Paranoia failed");
3f542974
PS
1196 return;
1197 }
1198
441b62c1 1199 serial = mos7840_get_usb_serial(port, __func__);
3f542974 1200 if (!serial) {
84fe6e79 1201 dbg("%s", "Serial Paranoia failed");
3f542974
PS
1202 return;
1203 }
1204
1205 mos7840_port = mos7840_get_port_private(port);
0de9a702 1206 port0 = mos7840_get_port_private(serial->port[0]);
3f542974 1207
0de9a702 1208 if (mos7840_port == NULL || port0 == NULL)
3f542974 1209 return;
3f542974
PS
1210
1211 for (j = 0; j < NUM_URBS; ++j)
1212 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1213
1214 /* Freeing Write URBs */
1215 for (j = 0; j < NUM_URBS; ++j) {
1216 if (mos7840_port->write_urb_pool[j]) {
1217 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1218 kfree(mos7840_port->write_urb_pool[j]->
1219 transfer_buffer);
1220
1221 usb_free_urb(mos7840_port->write_urb_pool[j]);
1222 }
1223 }
1224
3f542974
PS
1225 /* While closing port, shutdown all bulk read, write *
1226 * and interrupt read if they exists */
1227 if (serial->dev) {
3f542974 1228 if (mos7840_port->write_urb) {
84fe6e79 1229 dbg("%s", "Shutdown bulk write");
3f542974
PS
1230 usb_kill_urb(mos7840_port->write_urb);
1231 }
3f542974 1232 if (mos7840_port->read_urb) {
84fe6e79 1233 dbg("%s", "Shutdown bulk read");
3f542974 1234 usb_kill_urb(mos7840_port->read_urb);
50de36f7 1235 mos7840_port->read_urb_busy = false;
3f542974
PS
1236 }
1237 if ((&mos7840_port->control_urb)) {
84fe6e79 1238 dbg("%s", "Shutdown control read");
880af9db 1239 /*/ usb_kill_urb (mos7840_port->control_urb); */
3f542974
PS
1240 }
1241 }
880af9db
AC
1242/* if(mos7840_port->ctrl_buf != NULL) */
1243/* kfree(mos7840_port->ctrl_buf); */
0de9a702 1244 port0->open_ports--;
84fe6e79 1245 dbg("mos7840_num_open_ports in close%d:in port%d",
0de9a702
ON
1246 port0->open_ports, port->number);
1247 if (port0->open_ports == 0) {
3f542974 1248 if (serial->port[0]->interrupt_in_urb) {
84fe6e79 1249 dbg("%s", "Shutdown interrupt_in_urb");
0de9a702 1250 usb_kill_urb(serial->port[0]->interrupt_in_urb);
3f542974
PS
1251 }
1252 }
1253
1254 if (mos7840_port->write_urb) {
1255 /* if this urb had a transfer buffer already (old tx) free it */
880af9db 1256 if (mos7840_port->write_urb->transfer_buffer != NULL)
3f542974 1257 kfree(mos7840_port->write_urb->transfer_buffer);
3f542974
PS
1258 usb_free_urb(mos7840_port->write_urb);
1259 }
1260
1261 Data = 0x0;
1262 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1263
1264 Data = 0x00;
1265 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1266
1267 mos7840_port->open = 0;
1268
84fe6e79 1269 dbg("%s", "Leaving ............");
3f542974
PS
1270}
1271
1272/************************************************************************
1273 *
1274 * mos7840_block_until_chase_response
1275 *
1276 * This function will block the close until one of the following:
1277 * 1. Response to our Chase comes from mos7840
dc0d5c1e 1278 * 2. A timeout of 10 seconds without activity has expired
3f542974
PS
1279 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1280 *
1281 ************************************************************************/
1282
95da310e
AC
1283static void mos7840_block_until_chase_response(struct tty_struct *tty,
1284 struct moschip_port *mos7840_port)
3f542974
PS
1285{
1286 int timeout = 1 * HZ;
1287 int wait = 10;
1288 int count;
1289
1290 while (1) {
95da310e 1291 count = mos7840_chars_in_buffer(tty);
3f542974
PS
1292
1293 /* Check for Buffer status */
880af9db 1294 if (count <= 0)
3f542974 1295 return;
3f542974
PS
1296
1297 /* Block the thread for a while */
1298 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1299 timeout);
1300 /* No activity.. count down section */
1301 wait--;
1302 if (wait == 0) {
441b62c1 1303 dbg("%s - TIMEOUT", __func__);
3f542974
PS
1304 return;
1305 } else {
dc0d5c1e 1306 /* Reset timeout value back to seconds */
3f542974
PS
1307 wait = 10;
1308 }
1309 }
1310
1311}
1312
1313/*****************************************************************************
1314 * mos7840_break
1315 * this function sends a break to the port
1316 *****************************************************************************/
95da310e 1317static void mos7840_break(struct tty_struct *tty, int break_state)
3f542974 1318{
95da310e 1319 struct usb_serial_port *port = tty->driver_data;
3f542974
PS
1320 unsigned char data;
1321 struct usb_serial *serial;
1322 struct moschip_port *mos7840_port;
1323
84fe6e79
TC
1324 dbg("%s", "Entering ...........");
1325 dbg("mos7840_break: Start");
3f542974 1326
441b62c1 1327 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1328 dbg("%s", "Port Paranoia failed");
3f542974
PS
1329 return;
1330 }
1331
441b62c1 1332 serial = mos7840_get_usb_serial(port, __func__);
3f542974 1333 if (!serial) {
84fe6e79 1334 dbg("%s", "Serial Paranoia failed");
3f542974
PS
1335 return;
1336 }
1337
1338 mos7840_port = mos7840_get_port_private(port);
1339
880af9db 1340 if (mos7840_port == NULL)
3f542974 1341 return;
3f542974 1342
95da310e 1343 if (serial->dev)
3f542974 1344 /* flush and block until tx is empty */
95da310e 1345 mos7840_block_until_chase_response(tty, mos7840_port);
3f542974 1346
95da310e 1347 if (break_state == -1)
3f542974 1348 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
95da310e 1349 else
3f542974 1350 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
3f542974 1351
6b447f04 1352 /* FIXME: no locking on shadowLCR anywhere in driver */
3f542974 1353 mos7840_port->shadowLCR = data;
84fe6e79 1354 dbg("mcs7840_break mos7840_port->shadowLCR is %x",
3f542974
PS
1355 mos7840_port->shadowLCR);
1356 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1357 mos7840_port->shadowLCR);
1358
1359 return;
1360}
1361
1362/*****************************************************************************
1363 * mos7840_write_room
1364 * this function is called by the tty driver when it wants to know how many
1365 * bytes of data we can accept for a specific port.
1366 * If successful, we return the amount of room that we have for this port
1367 * Otherwise we return a negative error number.
1368 *****************************************************************************/
1369
95da310e 1370static int mos7840_write_room(struct tty_struct *tty)
3f542974 1371{
95da310e 1372 struct usb_serial_port *port = tty->driver_data;
3f542974
PS
1373 int i;
1374 int room = 0;
0de9a702 1375 unsigned long flags;
3f542974
PS
1376 struct moschip_port *mos7840_port;
1377
84fe6e79 1378 dbg("%s", " mos7840_write_room:entering ...........");
3f542974 1379
441b62c1 1380 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79
TC
1381 dbg("%s", "Invalid port");
1382 dbg("%s", " mos7840_write_room:leaving ...........");
3f542974
PS
1383 return -1;
1384 }
1385
1386 mos7840_port = mos7840_get_port_private(port);
1387 if (mos7840_port == NULL) {
84fe6e79 1388 dbg("%s", "mos7840_break:leaving ...........");
3f542974
PS
1389 return -1;
1390 }
1391
0de9a702 1392 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
3f542974 1393 for (i = 0; i < NUM_URBS; ++i) {
880af9db 1394 if (!mos7840_port->busy[i])
3f542974 1395 room += URB_TRANSFER_BUFFER_SIZE;
3f542974 1396 }
0de9a702 1397 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
3f542974 1398
0de9a702 1399 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
441b62c1 1400 dbg("%s - returns %d", __func__, room);
0de9a702 1401 return room;
3f542974
PS
1402
1403}
1404
1405/*****************************************************************************
1406 * mos7840_write
1407 * this function is called by the tty driver when data should be written to
1408 * the port.
1409 * If successful, we return the number of bytes written, otherwise we
1410 * return a negative error number.
1411 *****************************************************************************/
1412
95da310e 1413static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
3f542974
PS
1414 const unsigned char *data, int count)
1415{
1416 int status;
1417 int i;
1418 int bytes_sent = 0;
1419 int transfer_size;
0de9a702 1420 unsigned long flags;
3f542974
PS
1421
1422 struct moschip_port *mos7840_port;
1423 struct usb_serial *serial;
1424 struct urb *urb;
880af9db 1425 /* __u16 Data; */
3f542974
PS
1426 const unsigned char *current_position = data;
1427 unsigned char *data1;
84fe6e79
TC
1428 dbg("%s", "entering ...........");
1429 /* dbg("mos7840_write: mos7840_port->shadowLCR is %x",
880af9db 1430 mos7840_port->shadowLCR); */
3f542974
PS
1431
1432#ifdef NOTMOS7840
1433 Data = 0x00;
3f542974
PS
1434 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1435 mos7840_port->shadowLCR = Data;
84fe6e79
TC
1436 dbg("mos7840_write: LINE_CONTROL_REGISTER is %x", Data);
1437 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
3f542974
PS
1438 mos7840_port->shadowLCR);
1439
880af9db
AC
1440 /* Data = 0x03; */
1441 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1442 /* mos7840_port->shadowLCR=Data;//Need to add later */
3f542974 1443
880af9db 1444 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
3f542974
PS
1445 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1446
880af9db
AC
1447 /* Data = 0x0c; */
1448 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
3f542974 1449 Data = 0x00;
3f542974 1450 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
84fe6e79 1451 dbg("mos7840_write:DLL value is %x", Data);
3f542974
PS
1452
1453 Data = 0x0;
3f542974 1454 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
84fe6e79 1455 dbg("mos7840_write:DLM value is %x", Data);
3f542974
PS
1456
1457 Data = Data & ~SERIAL_LCR_DLAB;
84fe6e79 1458 dbg("mos7840_write: mos7840_port->shadowLCR is %x",
3f542974 1459 mos7840_port->shadowLCR);
3f542974
PS
1460 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1461#endif
1462
441b62c1 1463 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1464 dbg("%s", "Port Paranoia failed");
3f542974
PS
1465 return -1;
1466 }
1467
1468 serial = port->serial;
441b62c1 1469 if (mos7840_serial_paranoia_check(serial, __func__)) {
84fe6e79 1470 dbg("%s", "Serial Paranoia failed");
3f542974
PS
1471 return -1;
1472 }
1473
1474 mos7840_port = mos7840_get_port_private(port);
1475 if (mos7840_port == NULL) {
84fe6e79 1476 dbg("%s", "mos7840_port is NULL");
3f542974
PS
1477 return -1;
1478 }
1479
1480 /* try to find a free urb in the list */
1481 urb = NULL;
1482
0de9a702 1483 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
3f542974 1484 for (i = 0; i < NUM_URBS; ++i) {
0de9a702
ON
1485 if (!mos7840_port->busy[i]) {
1486 mos7840_port->busy[i] = 1;
3f542974 1487 urb = mos7840_port->write_urb_pool[i];
84fe6e79 1488 dbg("URB:%d", i);
3f542974
PS
1489 break;
1490 }
1491 }
0de9a702 1492 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
3f542974
PS
1493
1494 if (urb == NULL) {
441b62c1 1495 dbg("%s - no more free urbs", __func__);
3f542974
PS
1496 goto exit;
1497 }
1498
1499 if (urb->transfer_buffer == NULL) {
1500 urb->transfer_buffer =
1501 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1502
1503 if (urb->transfer_buffer == NULL) {
194343d9
GKH
1504 dev_err(&port->dev, "%s no more kernel memory...\n",
1505 __func__);
3f542974
PS
1506 goto exit;
1507 }
1508 }
1509 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1510
97c4965d 1511 memcpy(urb->transfer_buffer, current_position, transfer_size);
3f542974
PS
1512
1513 /* fill urb with data and submit */
1514 usb_fill_bulk_urb(urb,
1515 serial->dev,
1516 usb_sndbulkpipe(serial->dev,
1517 port->bulk_out_endpointAddress),
1518 urb->transfer_buffer,
1519 transfer_size,
1520 mos7840_bulk_out_data_callback, mos7840_port);
1521
1522 data1 = urb->transfer_buffer;
84fe6e79 1523 dbg("bulkout endpoint is %d", port->bulk_out_endpointAddress);
3f542974
PS
1524
1525 /* send it down the pipe */
1526 status = usb_submit_urb(urb, GFP_ATOMIC);
1527
1528 if (status) {
0de9a702 1529 mos7840_port->busy[i] = 0;
194343d9
GKH
1530 dev_err(&port->dev, "%s - usb_submit_urb(write bulk) failed "
1531 "with status = %d\n", __func__, status);
3f542974
PS
1532 bytes_sent = status;
1533 goto exit;
1534 }
1535 bytes_sent = transfer_size;
1536 mos7840_port->icount.tx += transfer_size;
0de9a702 1537 smp_wmb();
84fe6e79 1538 dbg("mos7840_port->icount.tx is %d:", mos7840_port->icount.tx);
95da310e 1539exit:
3f542974
PS
1540 return bytes_sent;
1541
1542}
1543
1544/*****************************************************************************
1545 * mos7840_throttle
1546 * this function is called by the tty driver when it wants to stop the data
1547 * being read from the port.
1548 *****************************************************************************/
1549
95da310e 1550static void mos7840_throttle(struct tty_struct *tty)
3f542974 1551{
95da310e 1552 struct usb_serial_port *port = tty->driver_data;
3f542974 1553 struct moschip_port *mos7840_port;
3f542974
PS
1554 int status;
1555
441b62c1 1556 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1557 dbg("%s", "Invalid port");
3f542974
PS
1558 return;
1559 }
1560
84fe6e79 1561 dbg("- port %d", port->number);
3f542974
PS
1562
1563 mos7840_port = mos7840_get_port_private(port);
1564
1565 if (mos7840_port == NULL)
1566 return;
1567
1568 if (!mos7840_port->open) {
84fe6e79 1569 dbg("%s", "port not opened");
3f542974
PS
1570 return;
1571 }
1572
84fe6e79 1573 dbg("%s", "Entering ..........");
3f542974 1574
3f542974
PS
1575 /* if we are implementing XON/XOFF, send the stop character */
1576 if (I_IXOFF(tty)) {
1577 unsigned char stop_char = STOP_CHAR(tty);
95da310e
AC
1578 status = mos7840_write(tty, port, &stop_char, 1);
1579 if (status <= 0)
3f542974 1580 return;
3f542974 1581 }
3f542974
PS
1582 /* if we are implementing RTS/CTS, toggle that line */
1583 if (tty->termios->c_cflag & CRTSCTS) {
1584 mos7840_port->shadowMCR &= ~MCR_RTS;
95da310e 1585 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
3f542974 1586 mos7840_port->shadowMCR);
95da310e 1587 if (status < 0)
3f542974 1588 return;
3f542974
PS
1589 }
1590
1591 return;
1592}
1593
1594/*****************************************************************************
1595 * mos7840_unthrottle
880af9db
AC
1596 * this function is called by the tty driver when it wants to resume
1597 * the data being read from the port (called after mos7840_throttle is
1598 * called)
3f542974 1599 *****************************************************************************/
95da310e 1600static void mos7840_unthrottle(struct tty_struct *tty)
3f542974 1601{
95da310e 1602 struct usb_serial_port *port = tty->driver_data;
3f542974
PS
1603 int status;
1604 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1605
441b62c1 1606 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1607 dbg("%s", "Invalid port");
3f542974
PS
1608 return;
1609 }
1610
1611 if (mos7840_port == NULL)
1612 return;
1613
1614 if (!mos7840_port->open) {
441b62c1 1615 dbg("%s - port not opened", __func__);
3f542974
PS
1616 return;
1617 }
1618
84fe6e79 1619 dbg("%s", "Entering ..........");
3f542974 1620
3f542974
PS
1621 /* if we are implementing XON/XOFF, send the start character */
1622 if (I_IXOFF(tty)) {
1623 unsigned char start_char = START_CHAR(tty);
95da310e
AC
1624 status = mos7840_write(tty, port, &start_char, 1);
1625 if (status <= 0)
3f542974 1626 return;
3f542974
PS
1627 }
1628
1629 /* if we are implementing RTS/CTS, toggle that line */
1630 if (tty->termios->c_cflag & CRTSCTS) {
1631 mos7840_port->shadowMCR |= MCR_RTS;
95da310e 1632 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
3f542974 1633 mos7840_port->shadowMCR);
95da310e 1634 if (status < 0)
3f542974 1635 return;
3f542974 1636 }
3f542974
PS
1637}
1638
95da310e 1639static int mos7840_tiocmget(struct tty_struct *tty, struct file *file)
3f542974 1640{
95da310e 1641 struct usb_serial_port *port = tty->driver_data;
3f542974
PS
1642 struct moschip_port *mos7840_port;
1643 unsigned int result;
1644 __u16 msr;
1645 __u16 mcr;
880af9db 1646 int status;
3f542974
PS
1647 mos7840_port = mos7840_get_port_private(port);
1648
441b62c1 1649 dbg("%s - port %d", __func__, port->number);
3f542974
PS
1650
1651 if (mos7840_port == NULL)
1652 return -ENODEV;
1653
1654 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1655 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1656 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1657 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1658 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1659 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1660 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1661 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1662 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1663
441b62c1 1664 dbg("%s - 0x%04X", __func__, result);
3f542974
PS
1665
1666 return result;
1667}
1668
95da310e 1669static int mos7840_tiocmset(struct tty_struct *tty, struct file *file,
3f542974
PS
1670 unsigned int set, unsigned int clear)
1671{
95da310e 1672 struct usb_serial_port *port = tty->driver_data;
3f542974
PS
1673 struct moschip_port *mos7840_port;
1674 unsigned int mcr;
87521c46 1675 int status;
3f542974 1676
441b62c1 1677 dbg("%s - port %d", __func__, port->number);
3f542974
PS
1678
1679 mos7840_port = mos7840_get_port_private(port);
1680
1681 if (mos7840_port == NULL)
1682 return -ENODEV;
1683
e2984494 1684 /* FIXME: What locks the port registers ? */
3f542974
PS
1685 mcr = mos7840_port->shadowMCR;
1686 if (clear & TIOCM_RTS)
1687 mcr &= ~MCR_RTS;
1688 if (clear & TIOCM_DTR)
1689 mcr &= ~MCR_DTR;
1690 if (clear & TIOCM_LOOP)
1691 mcr &= ~MCR_LOOPBACK;
1692
1693 if (set & TIOCM_RTS)
1694 mcr |= MCR_RTS;
1695 if (set & TIOCM_DTR)
1696 mcr |= MCR_DTR;
1697 if (set & TIOCM_LOOP)
1698 mcr |= MCR_LOOPBACK;
1699
1700 mos7840_port->shadowMCR = mcr;
1701
3f542974
PS
1702 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1703 if (status < 0) {
84fe6e79 1704 dbg("setting MODEM_CONTROL_REGISTER Failed");
87521c46 1705 return status;
3f542974
PS
1706 }
1707
1708 return 0;
1709}
1710
1711/*****************************************************************************
1712 * mos7840_calc_baud_rate_divisor
1713 * this function calculates the proper baud rate divisor for the specified
1714 * baud rate.
1715 *****************************************************************************/
1716static int mos7840_calc_baud_rate_divisor(int baudRate, int *divisor,
880af9db 1717 __u16 *clk_sel_val)
3f542974
PS
1718{
1719
441b62c1 1720 dbg("%s - %d", __func__, baudRate);
3f542974
PS
1721
1722 if (baudRate <= 115200) {
1723 *divisor = 115200 / baudRate;
1724 *clk_sel_val = 0x0;
1725 }
1726 if ((baudRate > 115200) && (baudRate <= 230400)) {
1727 *divisor = 230400 / baudRate;
1728 *clk_sel_val = 0x10;
1729 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1730 *divisor = 403200 / baudRate;
1731 *clk_sel_val = 0x20;
1732 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1733 *divisor = 460800 / baudRate;
1734 *clk_sel_val = 0x30;
1735 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1736 *divisor = 806400 / baudRate;
1737 *clk_sel_val = 0x40;
1738 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1739 *divisor = 921600 / baudRate;
1740 *clk_sel_val = 0x50;
1741 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1742 *divisor = 1572864 / baudRate;
1743 *clk_sel_val = 0x60;
1744 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1745 *divisor = 3145728 / baudRate;
1746 *clk_sel_val = 0x70;
1747 }
1748 return 0;
1749
1750#ifdef NOTMCS7840
1751
1752 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1753 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1754 *divisor = mos7840_divisor_table[i].Divisor;
1755 return 0;
1756 }
1757 }
1758
1759 /* After trying for all the standard baud rates *
1760 * Try calculating the divisor for this baud rate */
1761
1762 if (baudrate > 75 && baudrate < 230400) {
1763 /* get the divisor */
1764 custom = (__u16) (230400L / baudrate);
1765
1766 /* Check for round off */
1767 round1 = (__u16) (2304000L / baudrate);
1768 round = (__u16) (round1 - (custom * 10));
880af9db 1769 if (round > 4)
3f542974 1770 custom++;
3f542974
PS
1771 *divisor = custom;
1772
84fe6e79 1773 dbg(" Baud %d = %d", baudrate, custom);
3f542974
PS
1774 return 0;
1775 }
1776
84fe6e79 1777 dbg("%s", " Baud calculation Failed...");
3f542974
PS
1778 return -1;
1779#endif
1780}
1781
1782/*****************************************************************************
1783 * mos7840_send_cmd_write_baud_rate
1784 * this function sends the proper command to change the baud rate of the
1785 * specified port.
1786 *****************************************************************************/
1787
1788static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1789 int baudRate)
1790{
1791 int divisor = 0;
1792 int status;
1793 __u16 Data;
1794 unsigned char number;
1795 __u16 clk_sel_val;
1796 struct usb_serial_port *port;
1797
1798 if (mos7840_port == NULL)
1799 return -1;
1800
1801 port = (struct usb_serial_port *)mos7840_port->port;
441b62c1 1802 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1803 dbg("%s", "Invalid port");
3f542974
PS
1804 return -1;
1805 }
1806
441b62c1 1807 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
84fe6e79 1808 dbg("%s", "Invalid Serial");
3f542974
PS
1809 return -1;
1810 }
1811
84fe6e79 1812 dbg("%s", "Entering ..........");
3f542974
PS
1813
1814 number = mos7840_port->port->number - mos7840_port->port->serial->minor;
1815
441b62c1 1816 dbg("%s - port = %d, baud = %d", __func__,
3f542974 1817 mos7840_port->port->number, baudRate);
880af9db 1818 /* reset clk_uart_sel in spregOffset */
3f542974
PS
1819 if (baudRate > 115200) {
1820#ifdef HW_flow_control
880af9db
AC
1821 /* NOTE: need to see the pther register to modify */
1822 /* setting h/w flow control bit to 1 */
3f542974
PS
1823 Data = 0x2b;
1824 mos7840_port->shadowMCR = Data;
880af9db
AC
1825 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1826 Data);
3f542974 1827 if (status < 0) {
84fe6e79 1828 dbg("Writing spreg failed in set_serial_baud");
3f542974
PS
1829 return -1;
1830 }
1831#endif
1832
1833 } else {
1834#ifdef HW_flow_control
880af9db 1835 / *setting h/w flow control bit to 0 */
3f542974
PS
1836 Data = 0xb;
1837 mos7840_port->shadowMCR = Data;
880af9db
AC
1838 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1839 Data);
3f542974 1840 if (status < 0) {
84fe6e79 1841 dbg("Writing spreg failed in set_serial_baud");
3f542974
PS
1842 return -1;
1843 }
1844#endif
1845
1846 }
1847
880af9db 1848 if (1) { /* baudRate <= 115200) */
3f542974
PS
1849 clk_sel_val = 0x0;
1850 Data = 0x0;
880af9db 1851 status = mos7840_calc_baud_rate_divisor(baudRate, &divisor,
3f542974 1852 &clk_sel_val);
880af9db
AC
1853 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1854 &Data);
3f542974 1855 if (status < 0) {
84fe6e79 1856 dbg("reading spreg failed in set_serial_baud");
3f542974
PS
1857 return -1;
1858 }
1859 Data = (Data & 0x8f) | clk_sel_val;
880af9db
AC
1860 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1861 Data);
3f542974 1862 if (status < 0) {
84fe6e79 1863 dbg("Writing spreg failed in set_serial_baud");
3f542974
PS
1864 return -1;
1865 }
1866 /* Calculate the Divisor */
1867
1868 if (status) {
194343d9 1869 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
3f542974
PS
1870 return status;
1871 }
1872 /* Enable access to divisor latch */
1873 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1874 mos7840_port->shadowLCR = Data;
1875 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1876
1877 /* Write the divisor */
1878 Data = (unsigned char)(divisor & 0xff);
84fe6e79 1879 dbg("set_serial_baud Value to write DLL is %x", Data);
3f542974
PS
1880 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1881
1882 Data = (unsigned char)((divisor & 0xff00) >> 8);
84fe6e79 1883 dbg("set_serial_baud Value to write DLM is %x", Data);
3f542974
PS
1884 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1885
1886 /* Disable access to divisor latch */
1887 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1888 mos7840_port->shadowLCR = Data;
1889 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1890
1891 }
3f542974
PS
1892 return status;
1893}
1894
1895/*****************************************************************************
1896 * mos7840_change_port_settings
1897 * This routine is called to set the UART on the device to match
1898 * the specified new settings.
1899 *****************************************************************************/
1900
95da310e
AC
1901static void mos7840_change_port_settings(struct tty_struct *tty,
1902 struct moschip_port *mos7840_port, struct ktermios *old_termios)
3f542974 1903{
3f542974
PS
1904 int baud;
1905 unsigned cflag;
1906 unsigned iflag;
1907 __u8 lData;
1908 __u8 lParity;
1909 __u8 lStop;
1910 int status;
1911 __u16 Data;
1912 struct usb_serial_port *port;
1913 struct usb_serial *serial;
1914
1915 if (mos7840_port == NULL)
1916 return;
1917
1918 port = (struct usb_serial_port *)mos7840_port->port;
1919
441b62c1 1920 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 1921 dbg("%s", "Invalid port");
3f542974
PS
1922 return;
1923 }
1924
441b62c1 1925 if (mos7840_serial_paranoia_check(port->serial, __func__)) {
84fe6e79 1926 dbg("%s", "Invalid Serial");
3f542974
PS
1927 return;
1928 }
1929
1930 serial = port->serial;
1931
441b62c1 1932 dbg("%s - port %d", __func__, mos7840_port->port->number);
3f542974
PS
1933
1934 if (!mos7840_port->open) {
441b62c1 1935 dbg("%s - port not opened", __func__);
3f542974
PS
1936 return;
1937 }
1938
84fe6e79 1939 dbg("%s", "Entering ..........");
3f542974
PS
1940
1941 lData = LCR_BITS_8;
1942 lStop = LCR_STOP_1;
1943 lParity = LCR_PAR_NONE;
1944
1945 cflag = tty->termios->c_cflag;
1946 iflag = tty->termios->c_iflag;
1947
1948 /* Change the number of bits */
1949 if (cflag & CSIZE) {
1950 switch (cflag & CSIZE) {
1951 case CS5:
1952 lData = LCR_BITS_5;
1953 break;
1954
1955 case CS6:
1956 lData = LCR_BITS_6;
1957 break;
1958
1959 case CS7:
1960 lData = LCR_BITS_7;
1961 break;
1962 default:
1963 case CS8:
1964 lData = LCR_BITS_8;
1965 break;
1966 }
1967 }
1968 /* Change the Parity bit */
1969 if (cflag & PARENB) {
1970 if (cflag & PARODD) {
1971 lParity = LCR_PAR_ODD;
441b62c1 1972 dbg("%s - parity = odd", __func__);
3f542974
PS
1973 } else {
1974 lParity = LCR_PAR_EVEN;
441b62c1 1975 dbg("%s - parity = even", __func__);
3f542974
PS
1976 }
1977
1978 } else {
441b62c1 1979 dbg("%s - parity = none", __func__);
3f542974
PS
1980 }
1981
880af9db 1982 if (cflag & CMSPAR)
3f542974 1983 lParity = lParity | 0x20;
3f542974
PS
1984
1985 /* Change the Stop bit */
1986 if (cflag & CSTOPB) {
1987 lStop = LCR_STOP_2;
441b62c1 1988 dbg("%s - stop bits = 2", __func__);
3f542974
PS
1989 } else {
1990 lStop = LCR_STOP_1;
441b62c1 1991 dbg("%s - stop bits = 1", __func__);
3f542974
PS
1992 }
1993
1994 /* Update the LCR with the correct value */
1995 mos7840_port->shadowLCR &=
1996 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1997 mos7840_port->shadowLCR |= (lData | lParity | lStop);
1998
84fe6e79 1999 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is %x",
3f542974
PS
2000 mos7840_port->shadowLCR);
2001 /* Disable Interrupts */
2002 Data = 0x00;
2003 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2004
2005 Data = 0x00;
2006 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2007
2008 Data = 0xcf;
2009 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2010
2011 /* Send the updated LCR value to the mos7840 */
2012 Data = mos7840_port->shadowLCR;
2013
2014 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
2015
2016 Data = 0x00b;
2017 mos7840_port->shadowMCR = Data;
2018 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2019 Data = 0x00b;
2020 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2021
2022 /* set up the MCR register and send it to the mos7840 */
2023
2024 mos7840_port->shadowMCR = MCR_MASTER_IE;
880af9db 2025 if (cflag & CBAUD)
3f542974 2026 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
3f542974 2027
880af9db 2028 if (cflag & CRTSCTS)
3f542974 2029 mos7840_port->shadowMCR |= (MCR_XON_ANY);
880af9db 2030 else
3f542974 2031 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
3f542974
PS
2032
2033 Data = mos7840_port->shadowMCR;
2034 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2035
2036 /* Determine divisor based on baud rate */
2037 baud = tty_get_baud_rate(tty);
2038
2039 if (!baud) {
2040 /* pick a default, any default... */
84fe6e79 2041 dbg("%s", "Picked default baud...");
3f542974
PS
2042 baud = 9600;
2043 }
2044
441b62c1 2045 dbg("%s - baud rate = %d", __func__, baud);
3f542974
PS
2046 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
2047
2048 /* Enable Interrupts */
2049 Data = 0x0c;
2050 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2051
50de36f7 2052 if (mos7840_port->read_urb_busy == false) {
3f542974 2053 mos7840_port->read_urb->dev = serial->dev;
50de36f7 2054 mos7840_port->read_urb_busy = true;
3f542974 2055 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
3f542974 2056 if (status) {
50de36f7 2057 dbg("usb_submit_urb(read bulk) failed, status = %d",
3f542974 2058 status);
50de36f7 2059 mos7840_port->read_urb_busy = false;
3f542974
PS
2060 }
2061 }
2062 wake_up(&mos7840_port->delta_msr_wait);
2063 mos7840_port->delta_msr_cond = 1;
84fe6e79 2064 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x",
3f542974
PS
2065 mos7840_port->shadowLCR);
2066
2067 return;
2068}
2069
2070/*****************************************************************************
2071 * mos7840_set_termios
2072 * this function is called by the tty driver when it wants to change
2073 * the termios structure
2074 *****************************************************************************/
2075
95da310e
AC
2076static void mos7840_set_termios(struct tty_struct *tty,
2077 struct usb_serial_port *port,
606d099c 2078 struct ktermios *old_termios)
3f542974
PS
2079{
2080 int status;
2081 unsigned int cflag;
2082 struct usb_serial *serial;
2083 struct moschip_port *mos7840_port;
84fe6e79 2084 dbg("mos7840_set_termios: START");
441b62c1 2085 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 2086 dbg("%s", "Invalid port");
3f542974
PS
2087 return;
2088 }
2089
2090 serial = port->serial;
2091
441b62c1 2092 if (mos7840_serial_paranoia_check(serial, __func__)) {
84fe6e79 2093 dbg("%s", "Invalid Serial");
3f542974
PS
2094 return;
2095 }
2096
2097 mos7840_port = mos7840_get_port_private(port);
2098
2099 if (mos7840_port == NULL)
2100 return;
2101
3f542974 2102 if (!mos7840_port->open) {
441b62c1 2103 dbg("%s - port not opened", __func__);
3f542974
PS
2104 return;
2105 }
2106
84fe6e79 2107 dbg("%s", "setting termios - ");
3f542974
PS
2108
2109 cflag = tty->termios->c_cflag;
2110
441b62c1 2111 dbg("%s - clfag %08x iflag %08x", __func__,
3f542974 2112 tty->termios->c_cflag, RELEVANT_IFLAG(tty->termios->c_iflag));
441b62c1 2113 dbg("%s - old clfag %08x old iflag %08x", __func__,
3d3ddce5 2114 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
441b62c1 2115 dbg("%s - port %d", __func__, port->number);
3f542974
PS
2116
2117 /* change the port settings to the new ones specified */
2118
95da310e 2119 mos7840_change_port_settings(tty, mos7840_port, old_termios);
3f542974
PS
2120
2121 if (!mos7840_port->read_urb) {
84fe6e79 2122 dbg("%s", "URB KILLED !!!!!");
3f542974
PS
2123 return;
2124 }
2125
50de36f7 2126 if (mos7840_port->read_urb_busy == false) {
3f542974 2127 mos7840_port->read_urb->dev = serial->dev;
50de36f7 2128 mos7840_port->read_urb_busy = true;
3f542974
PS
2129 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2130 if (status) {
50de36f7 2131 dbg("usb_submit_urb(read bulk) failed, status = %d",
3f542974 2132 status);
50de36f7 2133 mos7840_port->read_urb_busy = false;
3f542974
PS
2134 }
2135 }
2136 return;
2137}
2138
2139/*****************************************************************************
2140 * mos7840_get_lsr_info - get line status register info
2141 *
2142 * Purpose: Let user call ioctl() to get info when the UART physically
2143 * is emptied. On bus types like RS485, the transmitter must
2144 * release the bus after transmitting. This must be done when
2145 * the transmit shift register is empty, not be done when the
2146 * transmit holding register is empty. This functionality
2147 * allows an RS485 driver to be written in user space.
2148 *****************************************************************************/
2149
95da310e 2150static int mos7840_get_lsr_info(struct tty_struct *tty,
97c4965d 2151 unsigned int __user *value)
3f542974
PS
2152{
2153 int count;
2154 unsigned int result = 0;
2155
95da310e 2156 count = mos7840_chars_in_buffer(tty);
3f542974 2157 if (count == 0) {
441b62c1 2158 dbg("%s -- Empty", __func__);
3f542974
PS
2159 result = TIOCSER_TEMT;
2160 }
2161
2162 if (copy_to_user(value, &result, sizeof(int)))
2163 return -EFAULT;
2164 return 0;
2165}
2166
3f542974
PS
2167/*****************************************************************************
2168 * mos7840_get_serial_info
2169 * function to get information about serial port
2170 *****************************************************************************/
2171
2172static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
97c4965d 2173 struct serial_struct __user *retinfo)
3f542974
PS
2174{
2175 struct serial_struct tmp;
2176
2177 if (mos7840_port == NULL)
2178 return -1;
2179
2180 if (!retinfo)
2181 return -EFAULT;
2182
2183 memset(&tmp, 0, sizeof(tmp));
2184
2185 tmp.type = PORT_16550A;
2186 tmp.line = mos7840_port->port->serial->minor;
2187 tmp.port = mos7840_port->port->number;
2188 tmp.irq = 0;
2189 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2190 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2191 tmp.baud_base = 9600;
2192 tmp.close_delay = 5 * HZ;
2193 tmp.closing_wait = 30 * HZ;
2194
2195 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2196 return -EFAULT;
2197 return 0;
2198}
2199
2200/*****************************************************************************
2201 * SerialIoctl
2202 * this function handles any ioctl calls to the driver
2203 *****************************************************************************/
2204
95da310e 2205static int mos7840_ioctl(struct tty_struct *tty, struct file *file,
3f542974
PS
2206 unsigned int cmd, unsigned long arg)
2207{
95da310e 2208 struct usb_serial_port *port = tty->driver_data;
97c4965d 2209 void __user *argp = (void __user *)arg;
3f542974 2210 struct moschip_port *mos7840_port;
3f542974
PS
2211
2212 struct async_icount cnow;
2213 struct async_icount cprev;
2214 struct serial_icounter_struct icount;
3f542974 2215
441b62c1 2216 if (mos7840_port_paranoia_check(port, __func__)) {
84fe6e79 2217 dbg("%s", "Invalid port");
3f542974
PS
2218 return -1;
2219 }
2220
2221 mos7840_port = mos7840_get_port_private(port);
3f542974
PS
2222
2223 if (mos7840_port == NULL)
2224 return -1;
2225
441b62c1 2226 dbg("%s - port %d, cmd = 0x%x", __func__, port->number, cmd);
3f542974
PS
2227
2228 switch (cmd) {
2229 /* return number of bytes available */
2230
3f542974 2231 case TIOCSERGETLSR:
441b62c1 2232 dbg("%s (%d) TIOCSERGETLSR", __func__, port->number);
95da310e 2233 return mos7840_get_lsr_info(tty, argp);
3f542974
PS
2234 return 0;
2235
3f542974 2236 case TIOCGSERIAL:
441b62c1 2237 dbg("%s (%d) TIOCGSERIAL", __func__, port->number);
97c4965d 2238 return mos7840_get_serial_info(mos7840_port, argp);
3f542974
PS
2239
2240 case TIOCSSERIAL:
441b62c1 2241 dbg("%s (%d) TIOCSSERIAL", __func__, port->number);
3f542974
PS
2242 break;
2243
2244 case TIOCMIWAIT:
441b62c1 2245 dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
3f542974
PS
2246 cprev = mos7840_port->icount;
2247 while (1) {
880af9db 2248 /* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */
3f542974
PS
2249 mos7840_port->delta_msr_cond = 0;
2250 wait_event_interruptible(mos7840_port->delta_msr_wait,
2251 (mos7840_port->
2252 delta_msr_cond == 1));
2253
2254 /* see if a signal did it */
2255 if (signal_pending(current))
2256 return -ERESTARTSYS;
2257 cnow = mos7840_port->icount;
0de9a702 2258 smp_rmb();
3f542974
PS
2259 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2260 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2261 return -EIO; /* no change => error */
2262 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2263 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2264 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2265 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2266 return 0;
2267 }
2268 cprev = cnow;
2269 }
2270 /* NOTREACHED */
2271 break;
2272
2273 case TIOCGICOUNT:
2274 cnow = mos7840_port->icount;
0de9a702 2275 smp_rmb();
3f542974
PS
2276 icount.cts = cnow.cts;
2277 icount.dsr = cnow.dsr;
2278 icount.rng = cnow.rng;
2279 icount.dcd = cnow.dcd;
2280 icount.rx = cnow.rx;
2281 icount.tx = cnow.tx;
2282 icount.frame = cnow.frame;
2283 icount.overrun = cnow.overrun;
2284 icount.parity = cnow.parity;
2285 icount.brk = cnow.brk;
2286 icount.buf_overrun = cnow.buf_overrun;
2287
441b62c1 2288 dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
3f542974 2289 port->number, icount.rx, icount.tx);
97c4965d 2290 if (copy_to_user(argp, &icount, sizeof(icount)))
3f542974
PS
2291 return -EFAULT;
2292 return 0;
3f542974
PS
2293 default:
2294 break;
2295 }
3f542974
PS
2296 return -ENOIOCTLCMD;
2297}
2298
2299static int mos7840_calc_num_ports(struct usb_serial *serial)
2300{
0de9a702 2301 int mos7840_num_ports = 0;
3f542974 2302
84fe6e79
TC
2303 dbg("numberofendpoints: cur %d, alt %d",
2304 (int)serial->interface->cur_altsetting->desc.bNumEndpoints,
3f542974
PS
2305 (int)serial->interface->altsetting->desc.bNumEndpoints);
2306 if (serial->interface->cur_altsetting->desc.bNumEndpoints == 5) {
0de9a702 2307 mos7840_num_ports = serial->num_ports = 2;
3f542974 2308 } else if (serial->interface->cur_altsetting->desc.bNumEndpoints == 9) {
0de9a702
ON
2309 serial->num_bulk_in = 4;
2310 serial->num_bulk_out = 4;
2311 mos7840_num_ports = serial->num_ports = 4;
3f542974 2312 }
84fe6e79 2313 dbg ("mos7840_num_ports = %d", mos7840_num_ports);
3f542974
PS
2314 return mos7840_num_ports;
2315}
2316
2317/****************************************************************************
2318 * mos7840_startup
2319 ****************************************************************************/
2320
2321static int mos7840_startup(struct usb_serial *serial)
2322{
2323 struct moschip_port *mos7840_port;
2324 struct usb_device *dev;
2325 int i, status;
2326
2327 __u16 Data;
84fe6e79 2328 dbg("%s", "mos7840_startup :Entering..........");
3f542974
PS
2329
2330 if (!serial) {
84fe6e79 2331 dbg("%s", "Invalid Handler");
3f542974
PS
2332 return -1;
2333 }
2334
2335 dev = serial->dev;
2336
84fe6e79
TC
2337 dbg("%s", "Entering...");
2338 dbg ("mos7840_startup: serial = %p", serial);
3f542974
PS
2339
2340 /* we set up the pointers to the endpoints in the mos7840_open *
2341 * function, as the structures aren't created yet. */
2342
2343 /* set up port private structures */
2344 for (i = 0; i < serial->num_ports; ++i) {
84fe6e79 2345 dbg ("mos7840_startup: configuring port %d............", i);
7ac9da10 2346 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
3f542974 2347 if (mos7840_port == NULL) {
194343d9 2348 dev_err(&dev->dev, "%s - Out of memory\n", __func__);
0de9a702
ON
2349 status = -ENOMEM;
2350 i--; /* don't follow NULL pointer cleaning up */
2351 goto error;
3f542974 2352 }
3f542974 2353
880af9db
AC
2354 /* Initialize all port interrupt end point to port 0 int
2355 * endpoint. Our device has only one interrupt end point
2356 * common to all port */
3f542974
PS
2357
2358 mos7840_port->port = serial->port[i];
2359 mos7840_set_port_private(serial->port[i], mos7840_port);
0de9a702 2360 spin_lock_init(&mos7840_port->pool_lock);
3f542974 2361
37768adf
TC
2362 /* minor is not initialised until later by
2363 * usb-serial.c:get_free_serial() and cannot therefore be used
2364 * to index device instances */
2365 mos7840_port->port_num = i + 1;
2366 dbg ("serial->port[i]->number = %d", serial->port[i]->number);
2367 dbg ("serial->port[i]->serial->minor = %d", serial->port[i]->serial->minor);
2368 dbg ("mos7840_port->port_num = %d", mos7840_port->port_num);
2369 dbg ("serial->minor = %d", serial->minor);
3f542974
PS
2370
2371 if (mos7840_port->port_num == 1) {
2372 mos7840_port->SpRegOffset = 0x0;
2373 mos7840_port->ControlRegOffset = 0x1;
2374 mos7840_port->DcrRegOffset = 0x4;
2375 } else if ((mos7840_port->port_num == 2)
0de9a702 2376 && (serial->num_ports == 4)) {
3f542974
PS
2377 mos7840_port->SpRegOffset = 0x8;
2378 mos7840_port->ControlRegOffset = 0x9;
2379 mos7840_port->DcrRegOffset = 0x16;
2380 } else if ((mos7840_port->port_num == 2)
0de9a702 2381 && (serial->num_ports == 2)) {
3f542974
PS
2382 mos7840_port->SpRegOffset = 0xa;
2383 mos7840_port->ControlRegOffset = 0xb;
2384 mos7840_port->DcrRegOffset = 0x19;
2385 } else if ((mos7840_port->port_num == 3)
0de9a702 2386 && (serial->num_ports == 4)) {
3f542974
PS
2387 mos7840_port->SpRegOffset = 0xa;
2388 mos7840_port->ControlRegOffset = 0xb;
2389 mos7840_port->DcrRegOffset = 0x19;
2390 } else if ((mos7840_port->port_num == 4)
0de9a702 2391 && (serial->num_ports == 4)) {
3f542974
PS
2392 mos7840_port->SpRegOffset = 0xc;
2393 mos7840_port->ControlRegOffset = 0xd;
2394 mos7840_port->DcrRegOffset = 0x1c;
2395 }
2396 mos7840_dump_serial_port(mos7840_port);
3f542974
PS
2397 mos7840_set_port_private(serial->port[i], mos7840_port);
2398
880af9db
AC
2399 /* enable rx_disable bit in control register */
2400 status = mos7840_get_reg_sync(serial->port[i],
2401 mos7840_port->ControlRegOffset, &Data);
3f542974 2402 if (status < 0) {
84fe6e79 2403 dbg("Reading ControlReg failed status-0x%x", status);
3f542974
PS
2404 break;
2405 } else
84fe6e79 2406 dbg("ControlReg Reading success val is %x, status%d",
3f542974 2407 Data, status);
880af9db
AC
2408 Data |= 0x08; /* setting driver done bit */
2409 Data |= 0x04; /* sp1_bit to have cts change reflect in
2410 modem status reg */
3f542974 2411
880af9db
AC
2412 /* Data |= 0x20; //rx_disable bit */
2413 status = mos7840_set_reg_sync(serial->port[i],
3f542974
PS
2414 mos7840_port->ControlRegOffset, Data);
2415 if (status < 0) {
84fe6e79 2416 dbg("Writing ControlReg failed(rx_disable) status-0x%x", status);
3f542974
PS
2417 break;
2418 } else
84fe6e79 2419 dbg("ControlReg Writing success(rx_disable) status%d",
3f542974
PS
2420 status);
2421
880af9db
AC
2422 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2423 and 0x24 in DCR3 */
3f542974 2424 Data = 0x01;
880af9db
AC
2425 status = mos7840_set_reg_sync(serial->port[i],
2426 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
3f542974 2427 if (status < 0) {
84fe6e79 2428 dbg("Writing DCR0 failed status-0x%x", status);
3f542974
PS
2429 break;
2430 } else
84fe6e79 2431 dbg("DCR0 Writing success status%d", status);
3f542974
PS
2432
2433 Data = 0x05;
880af9db
AC
2434 status = mos7840_set_reg_sync(serial->port[i],
2435 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
3f542974 2436 if (status < 0) {
84fe6e79 2437 dbg("Writing DCR1 failed status-0x%x", status);
3f542974
PS
2438 break;
2439 } else
84fe6e79 2440 dbg("DCR1 Writing success status%d", status);
3f542974
PS
2441
2442 Data = 0x24;
880af9db
AC
2443 status = mos7840_set_reg_sync(serial->port[i],
2444 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
3f542974 2445 if (status < 0) {
84fe6e79 2446 dbg("Writing DCR2 failed status-0x%x", status);
3f542974
PS
2447 break;
2448 } else
84fe6e79 2449 dbg("DCR2 Writing success status%d", status);
3f542974 2450
880af9db 2451 /* write values in clkstart0x0 and clkmulti 0x20 */
3f542974 2452 Data = 0x0;
880af9db 2453 status = mos7840_set_reg_sync(serial->port[i],
3f542974
PS
2454 CLK_START_VALUE_REGISTER, Data);
2455 if (status < 0) {
84fe6e79 2456 dbg("Writing CLK_START_VALUE_REGISTER failed status-0x%x", status);
3f542974
PS
2457 break;
2458 } else
84fe6e79 2459 dbg("CLK_START_VALUE_REGISTER Writing success status%d", status);
3f542974
PS
2460
2461 Data = 0x20;
880af9db
AC
2462 status = mos7840_set_reg_sync(serial->port[i],
2463 CLK_MULTI_REGISTER, Data);
3f542974 2464 if (status < 0) {
84fe6e79 2465 dbg("Writing CLK_MULTI_REGISTER failed status-0x%x",
3f542974 2466 status);
0de9a702 2467 goto error;
3f542974 2468 } else
84fe6e79 2469 dbg("CLK_MULTI_REGISTER Writing success status%d",
3f542974
PS
2470 status);
2471
880af9db 2472 /* write value 0x0 to scratchpad register */
3f542974 2473 Data = 0x00;
880af9db
AC
2474 status = mos7840_set_uart_reg(serial->port[i],
2475 SCRATCH_PAD_REGISTER, Data);
3f542974 2476 if (status < 0) {
84fe6e79 2477 dbg("Writing SCRATCH_PAD_REGISTER failed status-0x%x",
3f542974
PS
2478 status);
2479 break;
2480 } else
84fe6e79 2481 dbg("SCRATCH_PAD_REGISTER Writing success status%d",
3f542974
PS
2482 status);
2483
880af9db 2484 /* Zero Length flag register */
3f542974 2485 if ((mos7840_port->port_num != 1)
0de9a702 2486 && (serial->num_ports == 2)) {
3f542974
PS
2487
2488 Data = 0xff;
3f542974 2489 status = mos7840_set_reg_sync(serial->port[i],
880af9db
AC
2490 (__u16) (ZLP_REG1 +
2491 ((__u16)mos7840_port->port_num)), Data);
84fe6e79 2492 dbg("ZLIP offset %x",
3f542974 2493 (__u16) (ZLP_REG1 +
880af9db 2494 ((__u16) mos7840_port->port_num)));
3f542974 2495 if (status < 0) {
84fe6e79 2496 dbg("Writing ZLP_REG%d failed status-0x%x",
3f542974
PS
2497 i + 2, status);
2498 break;
2499 } else
84fe6e79 2500 dbg("ZLP_REG%d Writing success status%d",
3f542974
PS
2501 i + 2, status);
2502 } else {
2503 Data = 0xff;
3f542974 2504 status = mos7840_set_reg_sync(serial->port[i],
880af9db
AC
2505 (__u16) (ZLP_REG1 +
2506 ((__u16)mos7840_port->port_num) - 0x1), Data);
84fe6e79 2507 dbg("ZLIP offset %x",
3f542974
PS
2508 (__u16) (ZLP_REG1 +
2509 ((__u16) mos7840_port->port_num) - 0x1));
2510 if (status < 0) {
84fe6e79 2511 dbg("Writing ZLP_REG%d failed status-0x%x",
3f542974
PS
2512 i + 1, status);
2513 break;
2514 } else
84fe6e79 2515 dbg("ZLP_REG%d Writing success status%d",
3f542974
PS
2516 i + 1, status);
2517
2518 }
0de9a702 2519 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
3f542974 2520 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
880af9db
AC
2521 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2522 GFP_KERNEL);
2523 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2524 !mos7840_port->dr) {
0de9a702
ON
2525 status = -ENOMEM;
2526 goto error;
2527 }
3f542974 2528 }
84fe6e79 2529 dbg ("mos7840_startup: all ports configured...........");
3f542974 2530
880af9db 2531 /* Zero Length flag enable */
3f542974 2532 Data = 0x0f;
3f542974
PS
2533 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2534 if (status < 0) {
84fe6e79 2535 dbg("Writing ZLP_REG5 failed status-0x%x", status);
7ced46c3 2536 goto error;
3f542974 2537 } else
84fe6e79 2538 dbg("ZLP_REG5 Writing success status%d", status);
3f542974
PS
2539
2540 /* setting configuration feature to one */
2541 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
97c4965d 2542 (__u8) 0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5 * HZ);
3f542974 2543 return 0;
0de9a702
ON
2544error:
2545 for (/* nothing */; i >= 0; i--) {
2546 mos7840_port = mos7840_get_port_private(serial->port[i]);
2547
2548 kfree(mos7840_port->dr);
2549 kfree(mos7840_port->ctrl_buf);
2550 usb_free_urb(mos7840_port->control_urb);
2551 kfree(mos7840_port);
2552 serial->port[i] = NULL;
2553 }
2554 return status;
3f542974
PS
2555}
2556
2557/****************************************************************************
f9c99bb8 2558 * mos7840_disconnect
3f542974
PS
2559 * This function is called whenever the device is removed from the usb bus.
2560 ****************************************************************************/
2561
f9c99bb8 2562static void mos7840_disconnect(struct usb_serial *serial)
3f542974
PS
2563{
2564 int i;
0de9a702 2565 unsigned long flags;
3f542974 2566 struct moschip_port *mos7840_port;
f9c99bb8 2567 dbg("%s", " disconnect :entering..........");
3f542974
PS
2568
2569 if (!serial) {
84fe6e79 2570 dbg("%s", "Invalid Handler");
3f542974
PS
2571 return;
2572 }
2573
880af9db 2574 /* check for the ports to be closed,close the ports and disconnect */
3f542974
PS
2575
2576 /* free private structure allocated for serial port *
2577 * stop reads and writes on all ports */
2578
2579 for (i = 0; i < serial->num_ports; ++i) {
2580 mos7840_port = mos7840_get_port_private(serial->port[i]);
37768adf
TC
2581 dbg ("mos7840_port %d = %p", i, mos7840_port);
2582 if (mos7840_port) {
2583 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
2584 mos7840_port->zombie = 1;
2585 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
2586 usb_kill_urb(mos7840_port->control_urb);
f9c99bb8
AS
2587 }
2588 }
2589
2590 dbg("%s", "Thank u :: ");
2591
2592}
2593
2594/****************************************************************************
2595 * mos7840_release
2596 * This function is called when the usb_serial structure is freed.
2597 ****************************************************************************/
2598
2599static void mos7840_release(struct usb_serial *serial)
2600{
2601 int i;
2602 struct moschip_port *mos7840_port;
2603 dbg("%s", " release :entering..........");
2604
2605 if (!serial) {
2606 dbg("%s", "Invalid Handler");
2607 return;
2608 }
2609
2610 /* check for the ports to be closed,close the ports and disconnect */
2611
2612 /* free private structure allocated for serial port *
2613 * stop reads and writes on all ports */
2614
2615 for (i = 0; i < serial->num_ports; ++i) {
2616 mos7840_port = mos7840_get_port_private(serial->port[i]);
2617 dbg("mos7840_port %d = %p", i, mos7840_port);
2618 if (mos7840_port) {
37768adf
TC
2619 kfree(mos7840_port->ctrl_buf);
2620 kfree(mos7840_port->dr);
2621 kfree(mos7840_port);
2622 }
3f542974
PS
2623 }
2624
84fe6e79 2625 dbg("%s", "Thank u :: ");
3f542974
PS
2626
2627}
2628
d9b1b787
JH
2629static struct usb_driver io_driver = {
2630 .name = "mos7840",
2631 .probe = usb_serial_probe,
2632 .disconnect = usb_serial_disconnect,
2633 .id_table = moschip_id_table_combined,
2634 .no_dynamic_id = 1,
2635};
2636
3f542974
PS
2637static struct usb_serial_driver moschip7840_4port_device = {
2638 .driver = {
2639 .owner = THIS_MODULE,
2640 .name = "mos7840",
2641 },
2642 .description = DRIVER_DESC,
d9b1b787 2643 .usb_driver = &io_driver,
3f542974 2644 .id_table = moschip_port_id_table,
3f542974 2645 .num_ports = 4,
3f542974
PS
2646 .open = mos7840_open,
2647 .close = mos7840_close,
2648 .write = mos7840_write,
2649 .write_room = mos7840_write_room,
2650 .chars_in_buffer = mos7840_chars_in_buffer,
2651 .throttle = mos7840_throttle,
2652 .unthrottle = mos7840_unthrottle,
2653 .calc_num_ports = mos7840_calc_num_ports,
2654#ifdef MCSSerialProbe
2655 .probe = mos7840_serial_probe,
2656#endif
2657 .ioctl = mos7840_ioctl,
2658 .set_termios = mos7840_set_termios,
2659 .break_ctl = mos7840_break,
2660 .tiocmget = mos7840_tiocmget,
2661 .tiocmset = mos7840_tiocmset,
2662 .attach = mos7840_startup,
f9c99bb8
AS
2663 .disconnect = mos7840_disconnect,
2664 .release = mos7840_release,
3f542974
PS
2665 .read_bulk_callback = mos7840_bulk_in_callback,
2666 .read_int_callback = mos7840_interrupt_callback,
2667};
2668
3f542974
PS
2669/****************************************************************************
2670 * moschip7840_init
2671 * This is called by the module subsystem, or on startup to initialize us
2672 ****************************************************************************/
2673static int __init moschip7840_init(void)
2674{
2675 int retval;
2676
84fe6e79 2677 dbg("%s", " mos7840_init :entering..........");
3f542974
PS
2678
2679 /* Register with the usb serial */
2680 retval = usb_serial_register(&moschip7840_4port_device);
2681
2682 if (retval)
2683 goto failed_port_device_register;
2684
84fe6e79 2685 dbg("%s", "Entering...");
c197a8db
GKH
2686 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
2687 DRIVER_DESC "\n");
3f542974
PS
2688
2689 /* Register with the usb */
2690 retval = usb_register(&io_driver);
3f542974 2691 if (retval == 0) {
84fe6e79 2692 dbg("%s", "Leaving...");
3f542974
PS
2693 return 0;
2694 }
3f542974 2695 usb_serial_deregister(&moschip7840_4port_device);
880af9db 2696failed_port_device_register:
3f542974
PS
2697 return retval;
2698}
2699
2700/****************************************************************************
2701 * moschip7840_exit
2702 * Called when the driver is about to be unloaded.
2703 ****************************************************************************/
2704static void __exit moschip7840_exit(void)
2705{
2706
84fe6e79 2707 dbg("%s", " mos7840_exit :entering..........");
3f542974
PS
2708
2709 usb_deregister(&io_driver);
2710
2711 usb_serial_deregister(&moschip7840_4port_device);
2712
84fe6e79 2713 dbg("%s", "Entering...");
3f542974
PS
2714}
2715
2716module_init(moschip7840_init);
2717module_exit(moschip7840_exit);
2718
2719/* Module information */
2720MODULE_DESCRIPTION(DRIVER_DESC);
2721MODULE_LICENSE("GPL");
2722
2723module_param(debug, bool, S_IRUGO | S_IWUSR);
2724MODULE_PARM_DESC(debug, "Debug enabled or not");