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.
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.
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
16 * Clean ups from Moschip version and a few ioctl implementations by:
17 * Paul B Schroeder <pschroeder "at" uplogix "dot" com>
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>
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>
36 #include <asm/uaccess.h>
41 #define DRIVER_VERSION "1.3.1"
42 #define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
45 * 16C50 UART register defines
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 */
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 */
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 */
66 #define LCR_SET_BREAK 0x40 /* Set Break condition */
67 #define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
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 */
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 */
82 * Defines used for sending commands to port
85 #define WAIT_FOR_EVER (HZ * 0 ) /* timeout urb is wait for ever */
86 #define MOS_WDR_TIMEOUT (HZ * 5 ) /* default urb timeout */
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
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)
103 #define MAX_NAME_LEN 64
105 #define ZLP_REG1 0x3A //Zero_Flag_Reg1 58
106 #define ZLP_REG5 0x3E //Zero_Flag_Reg5 62
108 /* For higher baud Rates use TIOCEXBAUD */
109 #define TIOCEXBAUD 0x5462
111 /* vendor id and device id defines */
113 #define USB_VENDOR_ID_MOSCHIP 0x9710
114 #define MOSCHIP_DEVICE_ID_7840 0x7840
115 #define MOSCHIP_DEVICE_ID_7820 0x7820
117 /* Interrupt Rotinue Defines */
119 #define SERIAL_IIR_RLS 0x06
120 #define SERIAL_IIR_MS 0x00
123 * Emulation of the bit mask on the LINE STATUS REGISTER.
125 #define SERIAL_LSR_DR 0x0001
126 #define SERIAL_LSR_OE 0x0002
127 #define SERIAL_LSR_PE 0x0004
128 #define SERIAL_LSR_FE 0x0008
129 #define SERIAL_LSR_BI 0x0010
131 #define MOS_MSR_DELTA_CTS 0x10
132 #define MOS_MSR_DELTA_DSR 0x20
133 #define MOS_MSR_DELTA_RI 0x40
134 #define MOS_MSR_DELTA_CD 0x80
136 // Serial Port register Address
137 #define INTERRUPT_ENABLE_REGISTER ((__u16)(0x01))
138 #define FIFO_CONTROL_REGISTER ((__u16)(0x02))
139 #define LINE_CONTROL_REGISTER ((__u16)(0x03))
140 #define MODEM_CONTROL_REGISTER ((__u16)(0x04))
141 #define LINE_STATUS_REGISTER ((__u16)(0x05))
142 #define MODEM_STATUS_REGISTER ((__u16)(0x06))
143 #define SCRATCH_PAD_REGISTER ((__u16)(0x07))
144 #define DIVISOR_LATCH_LSB ((__u16)(0x00))
145 #define DIVISOR_LATCH_MSB ((__u16)(0x01))
147 #define CLK_MULTI_REGISTER ((__u16)(0x02))
148 #define CLK_START_VALUE_REGISTER ((__u16)(0x03))
150 #define SERIAL_LCR_DLAB ((__u16)(0x0080))
153 * URB POOL related defines
155 #define NUM_URBS 16 /* URB Count */
156 #define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
159 static struct usb_device_id moschip_port_id_table[] = {
160 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
161 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
162 {} /* terminating entry */
165 static __devinitdata struct usb_device_id moschip_id_table_combined[] = {
166 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
167 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
168 {} /* terminating entry */
171 MODULE_DEVICE_TABLE(usb, moschip_id_table_combined);
173 /* This structure holds all of the local port information */
175 struct moschip_port {
176 int port_num; /*Actual port number in the device(1,2,etc) */
177 struct urb *write_urb; /* write URB for this port */
178 struct urb *read_urb; /* read URB for this port */
179 __u8 shadowLCR; /* last LCR value received */
180 __u8 shadowMCR; /* last MCR value received */
182 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
183 wait_queue_head_t delta_msr_wait; /* for handling sleeping while waiting for msr change to happen */
185 struct async_icount icount;
186 struct usb_serial_port *port; /* loop back to the owner of this object */
190 __u8 ControlRegOffset;
192 //for processing control URBS in interrupt context
193 struct urb *control_urb;
197 struct urb *write_urb_pool[NUM_URBS];
202 static int mos7840_num_ports; //this says the number of ports in the device
203 static int mos7840_num_open_ports;
207 * mos7840_set_reg_sync
208 * To set the Control register by calling usb_fill_control_urb function
209 * by passing usb_sndctrlpipe function as parameter.
212 static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
215 struct usb_device *dev = port->serial->dev;
217 dbg("mos7840_set_reg_sync offset is %x, value %x\n", reg, val);
219 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
220 MCS_WR_RTYPE, val, reg, NULL, 0,
225 * mos7840_get_reg_sync
226 * To set the Uart register by calling usb_fill_control_urb function by
227 * passing usb_rcvctrlpipe function as parameter.
230 static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
233 struct usb_device *dev = port->serial->dev;
236 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
237 MCS_RD_RTYPE, 0, reg, val, VENDOR_READ_LENGTH,
239 dbg("mos7840_get_reg_sync offset is %x, return val %x\n", reg, *val);
240 *val = (*val) & 0x00ff;
245 * mos7840_set_uart_reg
246 * To set the Uart register by calling usb_fill_control_urb function by
247 * passing usb_sndctrlpipe function as parameter.
250 static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
254 struct usb_device *dev = port->serial->dev;
256 // For the UART control registers, the application number need to be Or'ed
257 if (mos7840_num_ports == 4) {
259 (((__u16) port->number - (__u16) (port->serial->minor)) +
261 dbg("mos7840_set_uart_reg application number is %x\n", val);
263 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
265 (((__u16) port->number -
266 (__u16) (port->serial->minor)) + 1) << 8;
267 dbg("mos7840_set_uart_reg application number is %x\n",
271 (((__u16) port->number -
272 (__u16) (port->serial->minor)) + 2) << 8;
273 dbg("mos7840_set_uart_reg application number is %x\n",
277 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
278 MCS_WR_RTYPE, val, reg, NULL, 0,
284 * mos7840_get_uart_reg
285 * To set the Control register by calling usb_fill_control_urb function
286 * by passing usb_rcvctrlpipe function as parameter.
288 static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
291 struct usb_device *dev = port->serial->dev;
295 //dbg("application number is %4x \n",(((__u16)port->number - (__u16)(port->serial->minor))+1)<<8);
296 /*Wval is same as application number */
297 if (mos7840_num_ports == 4) {
299 (((__u16) port->number - (__u16) (port->serial->minor)) +
301 dbg("mos7840_get_uart_reg application number is %x\n", Wval);
303 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
305 (((__u16) port->number -
306 (__u16) (port->serial->minor)) + 1) << 8;
307 dbg("mos7840_get_uart_reg application number is %x\n",
311 (((__u16) port->number -
312 (__u16) (port->serial->minor)) + 2) << 8;
313 dbg("mos7840_get_uart_reg application number is %x\n",
317 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
318 MCS_RD_RTYPE, Wval, reg, val, VENDOR_READ_LENGTH,
320 *val = (*val) & 0x00ff;
324 static void mos7840_dump_serial_port(struct moschip_port *mos7840_port)
327 dbg("***************************************\n");
328 dbg("SpRegOffset is %2x\n", mos7840_port->SpRegOffset);
329 dbg("ControlRegOffset is %2x \n", mos7840_port->ControlRegOffset);
330 dbg("DCRRegOffset is %2x \n", mos7840_port->DcrRegOffset);
331 dbg("***************************************\n");
335 /************************************************************************/
336 /************************************************************************/
337 /* I N T E R F A C E F U N C T I O N S */
338 /* I N T E R F A C E F U N C T I O N S */
339 /************************************************************************/
340 /************************************************************************/
342 static inline void mos7840_set_port_private(struct usb_serial_port *port,
343 struct moschip_port *data)
345 usb_set_serial_port_data(port, (void *)data);
348 static inline struct moschip_port *mos7840_get_port_private(struct
352 return (struct moschip_port *)usb_get_serial_port_data(port);
355 static int mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
357 struct moschip_port *mos7840_port;
358 struct async_icount *icount;
360 icount = &mos7840_port->icount;
362 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
364 icount = &mos7840_port->icount;
366 /* update input line counters */
367 if (new_msr & MOS_MSR_DELTA_CTS) {
370 if (new_msr & MOS_MSR_DELTA_DSR) {
373 if (new_msr & MOS_MSR_DELTA_CD) {
376 if (new_msr & MOS_MSR_DELTA_RI) {
384 static int mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
386 struct async_icount *icount;
388 dbg("%s - %02x", __FUNCTION__, new_lsr);
390 if (new_lsr & SERIAL_LSR_BI) {
392 // Parity and Framing errors only count if they
393 // occur exclusive of a break being
396 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
399 /* update input line counters */
400 icount = &port->icount;
401 if (new_lsr & SERIAL_LSR_BI) {
404 if (new_lsr & SERIAL_LSR_OE) {
407 if (new_lsr & SERIAL_LSR_PE) {
410 if (new_lsr & SERIAL_LSR_FE) {
417 /************************************************************************/
418 /************************************************************************/
419 /* U S B C A L L B A C K F U N C T I O N S */
420 /* U S B C A L L B A C K F U N C T I O N S */
421 /************************************************************************/
422 /************************************************************************/
424 static void mos7840_control_callback(struct urb *urb)
427 struct moschip_port *mos7840_port;
431 dbg("%s", "Invalid Pointer !!!!:\n");
435 switch (urb->status) {
442 /* this urb is terminated, clean up */
443 dbg("%s - urb shutting down with status: %d", __FUNCTION__,
447 dbg("%s - nonzero urb status received: %d", __FUNCTION__,
452 mos7840_port = (struct moschip_port *)urb->context;
454 dbg("%s urb buffer size is %d\n", __FUNCTION__, urb->actual_length);
455 dbg("%s mos7840_port->MsrLsr is %d port %d\n", __FUNCTION__,
456 mos7840_port->MsrLsr, mos7840_port->port_num);
457 data = urb->transfer_buffer;
458 regval = (__u8) data[0];
459 dbg("%s data is %x\n", __FUNCTION__, regval);
460 if (mos7840_port->MsrLsr == 0)
461 mos7840_handle_new_msr(mos7840_port, regval);
462 else if (mos7840_port->MsrLsr == 1)
463 mos7840_handle_new_lsr(mos7840_port, regval);
469 static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
472 struct usb_device *dev = mcs->port->serial->dev;
473 struct usb_ctrlrequest *dr = NULL;
474 unsigned char *buffer = NULL;
476 buffer = (__u8 *) mcs->ctrl_buf;
478 // dr=(struct usb_ctrlrequest *)(buffer);
479 dr = (void *)(buffer + 2);
480 dr->bRequestType = MCS_RD_RTYPE;
481 dr->bRequest = MCS_RDREQ;
482 dr->wValue = cpu_to_le16(Wval); //0;
483 dr->wIndex = cpu_to_le16(reg);
484 dr->wLength = cpu_to_le16(2);
486 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
487 (unsigned char *)dr, buffer, 2,
488 mos7840_control_callback, mcs);
489 mcs->control_urb->transfer_buffer_length = 2;
490 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
494 /*****************************************************************************
495 * mos7840_interrupt_callback
496 * this is the callback function for when we have received data on the
497 * interrupt endpoint.
498 *****************************************************************************/
500 static void mos7840_interrupt_callback(struct urb *urb)
504 struct moschip_port *mos7840_port;
505 struct usb_serial *serial;
512 dbg("%s", " : Entering\n");
514 dbg("%s", "Invalid Pointer !!!!:\n");
518 switch (urb->status) {
525 /* this urb is terminated, clean up */
526 dbg("%s - urb shutting down with status: %d", __FUNCTION__,
530 dbg("%s - nonzero urb status received: %d", __FUNCTION__,
535 length = urb->actual_length;
536 data = urb->transfer_buffer;
538 serial = (struct usb_serial *)urb->context;
540 /* Moschip get 5 bytes
541 * Byte 1 IIR Port 1 (port.number is 0)
542 * Byte 2 IIR Port 2 (port.number is 1)
543 * Byte 3 IIR Port 3 (port.number is 2)
544 * Byte 4 IIR Port 4 (port.number is 3)
545 * Byte 5 FIFO status for both */
547 if (length && length > 5) {
548 dbg("%s \n", "Wrong data !!!");
552 sp[0] = (__u8) data[0];
553 sp[1] = (__u8) data[1];
554 sp[2] = (__u8) data[2];
555 sp[3] = (__u8) data[3];
558 for (i = 0; i < serial->num_ports; i++) {
559 mos7840_port = mos7840_get_port_private(serial->port[i]);
561 (((__u16) serial->port[i]->number -
562 (__u16) (serial->minor)) + 1) << 8;
563 if (mos7840_port->open) {
565 dbg("SP%d No Interrupt !!!\n", i);
567 switch (sp[i] & 0x0f) {
569 dbg("Serial Port %d: Receiver status error or ", i);
570 dbg("address bit detected in 9-bit mode\n");
571 mos7840_port->MsrLsr = 1;
572 mos7840_get_reg(mos7840_port, wval,
573 LINE_STATUS_REGISTER,
577 dbg("Serial Port %d: Modem status change\n", i);
578 mos7840_port->MsrLsr = 0;
579 mos7840_get_reg(mos7840_port, wval,
580 MODEM_STATUS_REGISTER,
588 result = usb_submit_urb(urb, GFP_ATOMIC);
590 dev_err(&urb->dev->dev,
591 "%s - Error %d submitting interrupt urb\n",
592 __FUNCTION__, result);
599 static int mos7840_port_paranoia_check(struct usb_serial_port *port,
600 const char *function)
603 dbg("%s - port == NULL", function);
607 dbg("%s - port->serial == NULL", function);
614 /* Inline functions to check the sanity of a pointer that is passed to us */
615 static int mos7840_serial_paranoia_check(struct usb_serial *serial,
616 const char *function)
619 dbg("%s - serial == NULL", function);
623 dbg("%s - serial->type == NULL!", function);
630 static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
631 const char *function)
633 /* if no port was specified, or it fails a paranoia check */
635 mos7840_port_paranoia_check(port, function) ||
636 mos7840_serial_paranoia_check(port->serial, function)) {
637 /* then say that we don't have a valid usb_serial thing, which will * end up genrating -ENODEV return values */
644 /*****************************************************************************
645 * mos7840_bulk_in_callback
646 * this is the callback function for when we have received data on the
648 *****************************************************************************/
650 static void mos7840_bulk_in_callback(struct urb *urb)
654 struct usb_serial *serial;
655 struct usb_serial_port *port;
656 struct moschip_port *mos7840_port;
657 struct tty_struct *tty;
660 dbg("%s", "Invalid Pointer !!!!:\n");
665 dbg("nonzero read bulk status received: %d", urb->status);
669 mos7840_port = (struct moschip_port *)urb->context;
671 dbg("%s", "NULL mos7840_port pointer \n");
675 port = (struct usb_serial_port *)mos7840_port->port;
676 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
677 dbg("%s", "Port Paranoia failed \n");
681 serial = mos7840_get_usb_serial(port, __FUNCTION__);
683 dbg("%s\n", "Bad serial pointer ");
687 dbg("%s\n", "Entering... \n");
689 data = urb->transfer_buffer;
691 dbg("%s", "Entering ........... \n");
693 if (urb->actual_length) {
694 tty = mos7840_port->port->tty;
696 tty_buffer_request_room(tty, urb->actual_length);
697 tty_insert_flip_string(tty, data, urb->actual_length);
699 tty_flip_buffer_push(tty);
701 mos7840_port->icount.rx += urb->actual_length;
702 dbg("mos7840_port->icount.rx is %d:\n",
703 mos7840_port->icount.rx);
706 if (!mos7840_port->read_urb) {
707 dbg("%s", "URB KILLED !!!\n");
711 if (mos7840_port->read_urb->status != -EINPROGRESS) {
712 mos7840_port->read_urb->dev = serial->dev;
714 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
717 dbg(" usb_submit_urb(read bulk) failed, status = %d",
723 /*****************************************************************************
724 * mos7840_bulk_out_data_callback
725 * this is the callback function for when we have finished sending serial data
726 * on the bulk out endpoint.
727 *****************************************************************************/
729 static void mos7840_bulk_out_data_callback(struct urb *urb)
731 struct moschip_port *mos7840_port;
732 struct tty_struct *tty;
734 dbg("%s", "Invalid Pointer !!!!:\n");
739 dbg("nonzero write bulk status received:%d\n", urb->status);
743 mos7840_port = (struct moschip_port *)urb->context;
745 dbg("%s", "NULL mos7840_port pointer \n");
749 if (mos7840_port_paranoia_check(mos7840_port->port, __FUNCTION__)) {
750 dbg("%s", "Port Paranoia failed \n");
754 dbg("%s \n", "Entering .........");
756 tty = mos7840_port->port->tty;
758 if (tty && mos7840_port->open) {
759 /* let the tty driver wakeup if it has a special *
760 * write_wakeup function */
762 if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP))
763 && tty->ldisc.write_wakeup) {
764 (tty->ldisc.write_wakeup) (tty);
767 /* tell the tty driver that something has changed */
768 wake_up_interruptible(&tty->write_wait);
773 /************************************************************************/
774 /* 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 */
775 /************************************************************************/
776 #ifdef MCSSerialProbe
777 static int mos7840_serial_probe(struct usb_serial *serial,
778 const struct usb_device_id *id)
781 /*need to implement the mode_reg reading and updating\
782 structures usb_serial_ device_type\
783 (i.e num_ports, num_bulkin,bulkout etc) */
784 /* Also we can update the changes attach */
789 /*****************************************************************************
791 * this function is called by the tty driver when a port is opened
792 * If successful, we return 0
793 * Otherwise we return a negative error number.
794 *****************************************************************************/
796 static int mos7840_open(struct usb_serial_port *port, struct file *filp)
800 struct usb_serial *serial;
804 struct moschip_port *mos7840_port;
806 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
807 dbg("%s", "Port Paranoia failed \n");
811 mos7840_num_open_ports++;
812 serial = port->serial;
814 if (mos7840_serial_paranoia_check(serial, __FUNCTION__)) {
815 dbg("%s", "Serial Paranoia failed \n");
819 mos7840_port = mos7840_get_port_private(port);
821 if (mos7840_port == NULL)
824 usb_clear_halt(serial->dev, port->write_urb->pipe);
825 usb_clear_halt(serial->dev, port->read_urb->pipe);
827 /* Initialising the write urb pool */
828 for (j = 0; j < NUM_URBS; ++j) {
829 urb = usb_alloc_urb(0, SLAB_ATOMIC);
830 mos7840_port->write_urb_pool[j] = urb;
833 err("No more urbs???");
837 urb->transfer_buffer = NULL;
838 urb->transfer_buffer =
839 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
840 if (!urb->transfer_buffer) {
841 err("%s-out of memory for urb buffers.", __FUNCTION__);
846 /*****************************************************************************
847 * Initialize MCS7840 -- Write Init values to corresponding Registers
855 * 0x08 : SP1/2 Control Reg
856 *****************************************************************************/
858 //NEED to check the following Block
862 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
864 dbg("Reading Spreg failed\n");
868 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
870 dbg("writing Spreg failed\n");
875 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
877 dbg("writing Spreg failed\n");
880 //End of block to be checked
885 mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset, &Data);
887 dbg("Reading Controlreg failed\n");
890 Data |= 0x08; //Driver done bit
891 Data |= 0x20; //rx_disable
894 mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset, Data);
896 dbg("writing Controlreg failed\n");
899 //do register settings here
900 // Set all regs to the device default values.
901 ////////////////////////////////////
902 // First Disable all interrupts.
903 ////////////////////////////////////
907 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
909 dbg("disableing interrupts failed\n");
912 // Set FIFO_CONTROL_REGISTER to the default value
915 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
917 dbg("Writing FIFO_CONTROL_REGISTER failed\n");
923 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
925 dbg("Writing FIFO_CONTROL_REGISTER failed\n");
931 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
932 mos7840_port->shadowLCR = Data;
936 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
937 mos7840_port->shadowMCR = Data;
941 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
942 mos7840_port->shadowLCR = Data;
944 Data |= SERIAL_LCR_DLAB; //data latch enable in LCR 0x80
946 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
950 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
954 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
958 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
960 Data = Data & ~SERIAL_LCR_DLAB;
962 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
963 mos7840_port->shadowLCR = Data;
965 //clearing Bulkin and Bulkout Fifo
968 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
972 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
976 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
977 //Finally enable all interrupts
981 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
983 //clearing rx_disable
987 mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset, &Data);
991 mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset, Data);
997 mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset, &Data);
1001 mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset, Data);
1003 /* force low_latency on so that our tty_push actually forces *
1004 * the data through,otherwise it is scheduled, and with *
1005 * high data rates (like with OHCI) data can get lost. */
1008 port->tty->low_latency = 1;
1009 /* Check to see if we've set up our endpoint info yet *
1010 * (can't set it up in mos7840_startup as the structures *
1011 * were not set up at that time.) */
1012 if (mos7840_num_open_ports == 1) {
1013 if (serial->port[0]->interrupt_in_buffer == NULL) {
1015 /* set up interrupt urb */
1017 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
1019 usb_rcvintpipe(serial->dev,
1021 interrupt_in_endpointAddress),
1022 serial->port[0]->interrupt_in_buffer,
1023 serial->port[0]->interrupt_in_urb->
1024 transfer_buffer_length,
1025 mos7840_interrupt_callback,
1027 serial->port[0]->interrupt_in_urb->
1030 /* start interrupt read for mos7840 *
1031 * will continue as long as mos7840 is connected */
1034 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1037 err("%s - Error %d submitting interrupt urb",
1038 __FUNCTION__, response);
1045 /* see if we've set up our endpoint info yet *
1046 * (can't set it up in mos7840_startup as the *
1047 * structures were not set up at that time.) */
1049 dbg("port number is %d \n", port->number);
1050 dbg("serial number is %d \n", port->serial->minor);
1051 dbg("Bulkin endpoint is %d \n", port->bulk_in_endpointAddress);
1052 dbg("BulkOut endpoint is %d \n", port->bulk_out_endpointAddress);
1053 dbg("Interrupt endpoint is %d \n", port->interrupt_in_endpointAddress);
1054 dbg("port's number in the device is %d\n", mos7840_port->port_num);
1055 mos7840_port->read_urb = port->read_urb;
1057 /* set up our bulk in urb */
1059 usb_fill_bulk_urb(mos7840_port->read_urb,
1061 usb_rcvbulkpipe(serial->dev,
1062 port->bulk_in_endpointAddress),
1063 port->bulk_in_buffer,
1064 mos7840_port->read_urb->transfer_buffer_length,
1065 mos7840_bulk_in_callback, mos7840_port);
1067 dbg("mos7840_open: bulkin endpoint is %d\n",
1068 port->bulk_in_endpointAddress);
1069 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1071 err("%s - Error %d submitting control urb", __FUNCTION__,
1075 /* initialize our wait queues */
1076 init_waitqueue_head(&mos7840_port->wait_chase);
1077 init_waitqueue_head(&mos7840_port->delta_msr_wait);
1079 /* initialize our icount structure */
1080 memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount));
1082 /* initialize our port settings */
1083 mos7840_port->shadowMCR = MCR_MASTER_IE; /* Must set to enable ints! */
1084 /* send a open port command */
1085 mos7840_port->open = 1;
1086 //mos7840_change_port_settings(mos7840_port,old_termios);
1087 mos7840_port->icount.tx = 0;
1088 mos7840_port->icount.rx = 0;
1090 dbg("\n\nusb_serial serial:%x mos7840_port:%x\n usb_serial_port port:%x\n\n", (unsigned int)serial, (unsigned int)mos7840_port, (unsigned int)port);
1096 /*****************************************************************************
1097 * mos7840_chars_in_buffer
1098 * this function is called by the tty driver when it wants to know how many
1099 * bytes of data we currently have outstanding in the port (data that has
1100 * been written, but hasn't made it out the port yet)
1101 * If successful, we return the number of bytes left to be written in the
1103 * Otherwise we return a negative error number.
1104 *****************************************************************************/
1106 static int mos7840_chars_in_buffer(struct usb_serial_port *port)
1110 struct moschip_port *mos7840_port;
1112 dbg("%s \n", " mos7840_chars_in_buffer:entering ...........");
1114 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1115 dbg("%s", "Invalid port \n");
1119 mos7840_port = mos7840_get_port_private(port);
1120 if (mos7840_port == NULL) {
1121 dbg("%s \n", "mos7840_break:leaving ...........");
1125 for (i = 0; i < NUM_URBS; ++i) {
1126 if (mos7840_port->write_urb_pool[i]->status == -EINPROGRESS) {
1127 chars += URB_TRANSFER_BUFFER_SIZE;
1130 dbg("%s - returns %d", __FUNCTION__, chars);
1135 /************************************************************************
1137 * mos7840_block_until_tx_empty
1139 * This function will block the close until one of the following:
1141 * 2. The mos7840 has stopped
1142 * 3. A timout of 3 seconds without activity has expired
1144 ************************************************************************/
1145 static void mos7840_block_until_tx_empty(struct moschip_port *mos7840_port)
1147 int timeout = HZ / 10;
1153 count = mos7840_chars_in_buffer(mos7840_port->port);
1155 /* Check for Buffer status */
1160 /* Block the thread for a while */
1161 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1164 /* No activity.. count down section */
1167 dbg("%s - TIMEOUT", __FUNCTION__);
1170 /* Reset timout value back to seconds */
1176 /*****************************************************************************
1178 * this function is called by the tty driver when a port is closed
1179 *****************************************************************************/
1181 static void mos7840_close(struct usb_serial_port *port, struct file *filp)
1183 struct usb_serial *serial;
1184 struct moschip_port *mos7840_port;
1188 dbg("%s\n", "mos7840_close:entering...");
1190 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1191 dbg("%s", "Port Paranoia failed \n");
1195 serial = mos7840_get_usb_serial(port, __FUNCTION__);
1197 dbg("%s", "Serial Paranoia failed \n");
1201 mos7840_port = mos7840_get_port_private(port);
1203 if (mos7840_port == NULL) {
1207 for (j = 0; j < NUM_URBS; ++j)
1208 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1210 /* Freeing Write URBs */
1211 for (j = 0; j < NUM_URBS; ++j) {
1212 if (mos7840_port->write_urb_pool[j]) {
1213 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1214 kfree(mos7840_port->write_urb_pool[j]->
1217 usb_free_urb(mos7840_port->write_urb_pool[j]);
1222 /* flush and block until tx is empty */
1223 mos7840_block_until_tx_empty(mos7840_port);
1226 /* While closing port, shutdown all bulk read, write *
1227 * and interrupt read if they exists */
1230 if (mos7840_port->write_urb) {
1231 dbg("%s", "Shutdown bulk write\n");
1232 usb_kill_urb(mos7840_port->write_urb);
1235 if (mos7840_port->read_urb) {
1236 dbg("%s", "Shutdown bulk read\n");
1237 usb_kill_urb(mos7840_port->read_urb);
1239 if ((&mos7840_port->control_urb)) {
1240 dbg("%s", "Shutdown control read\n");
1241 // usb_kill_urb (mos7840_port->control_urb);
1245 // if(mos7840_port->ctrl_buf != NULL)
1246 // kfree(mos7840_port->ctrl_buf);
1247 mos7840_num_open_ports--;
1248 dbg("mos7840_num_open_ports in close%d:in port%d\n",
1249 mos7840_num_open_ports, port->number);
1250 if (mos7840_num_open_ports == 0) {
1251 if (serial->port[0]->interrupt_in_urb) {
1252 dbg("%s", "Shutdown interrupt_in_urb\n");
1256 if (mos7840_port->write_urb) {
1257 /* if this urb had a transfer buffer already (old tx) free it */
1259 if (mos7840_port->write_urb->transfer_buffer != NULL) {
1260 kfree(mos7840_port->write_urb->transfer_buffer);
1262 usb_free_urb(mos7840_port->write_urb);
1266 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1269 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1271 mos7840_port->open = 0;
1273 dbg("%s \n", "Leaving ............");
1276 /************************************************************************
1278 * mos7840_block_until_chase_response
1280 * This function will block the close until one of the following:
1281 * 1. Response to our Chase comes from mos7840
1282 * 2. A timout of 10 seconds without activity has expired
1283 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1285 ************************************************************************/
1287 static void mos7840_block_until_chase_response(struct moschip_port
1290 int timeout = 1 * HZ;
1295 count = mos7840_chars_in_buffer(mos7840_port->port);
1297 /* Check for Buffer status */
1302 /* Block the thread for a while */
1303 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1305 /* No activity.. count down section */
1308 dbg("%s - TIMEOUT", __FUNCTION__);
1311 /* Reset timout value back to seconds */
1318 /*****************************************************************************
1320 * this function sends a break to the port
1321 *****************************************************************************/
1322 static void mos7840_break(struct usb_serial_port *port, int break_state)
1325 struct usb_serial *serial;
1326 struct moschip_port *mos7840_port;
1328 dbg("%s \n", "Entering ...........");
1329 dbg("mos7840_break: Start\n");
1331 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1332 dbg("%s", "Port Paranoia failed \n");
1336 serial = mos7840_get_usb_serial(port, __FUNCTION__);
1338 dbg("%s", "Serial Paranoia failed \n");
1342 mos7840_port = mos7840_get_port_private(port);
1344 if (mos7840_port == NULL) {
1350 /* flush and block until tx is empty */
1351 mos7840_block_until_chase_response(mos7840_port);
1354 if (break_state == -1) {
1355 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
1357 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
1360 mos7840_port->shadowLCR = data;
1361 dbg("mcs7840_break mos7840_port->shadowLCR is %x\n",
1362 mos7840_port->shadowLCR);
1363 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1364 mos7840_port->shadowLCR);
1369 /*****************************************************************************
1370 * mos7840_write_room
1371 * this function is called by the tty driver when it wants to know how many
1372 * bytes of data we can accept for a specific port.
1373 * If successful, we return the amount of room that we have for this port
1374 * Otherwise we return a negative error number.
1375 *****************************************************************************/
1377 static int mos7840_write_room(struct usb_serial_port *port)
1381 struct moschip_port *mos7840_port;
1383 dbg("%s \n", " mos7840_write_room:entering ...........");
1385 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1386 dbg("%s", "Invalid port \n");
1387 dbg("%s \n", " mos7840_write_room:leaving ...........");
1391 mos7840_port = mos7840_get_port_private(port);
1392 if (mos7840_port == NULL) {
1393 dbg("%s \n", "mos7840_break:leaving ...........");
1397 for (i = 0; i < NUM_URBS; ++i) {
1398 if (mos7840_port->write_urb_pool[i]->status != -EINPROGRESS) {
1399 room += URB_TRANSFER_BUFFER_SIZE;
1403 dbg("%s - returns %d", __FUNCTION__, room);
1408 /*****************************************************************************
1410 * this function is called by the tty driver when data should be written to
1412 * If successful, we return the number of bytes written, otherwise we
1413 * return a negative error number.
1414 *****************************************************************************/
1416 static int mos7840_write(struct usb_serial_port *port,
1417 const unsigned char *data, int count)
1425 struct moschip_port *mos7840_port;
1426 struct usb_serial *serial;
1429 const unsigned char *current_position = data;
1430 unsigned char *data1;
1431 dbg("%s \n", "entering ...........");
1432 //dbg("mos7840_write: mos7840_port->shadowLCR is %x\n",mos7840_port->shadowLCR);
1437 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1438 mos7840_port->shadowLCR = Data;
1439 dbg("mos7840_write: LINE_CONTROL_REGISTER is %x\n", Data);
1440 dbg("mos7840_write: mos7840_port->shadowLCR is %x\n",
1441 mos7840_port->shadowLCR);
1444 //status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data);
1445 //mos7840_port->shadowLCR=Data;//Need to add later
1447 Data |= SERIAL_LCR_DLAB; //data latch enable in LCR 0x80
1449 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1452 //status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data);
1455 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
1456 dbg("mos7840_write:DLL value is %x\n", Data);
1460 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
1461 dbg("mos7840_write:DLM value is %x\n", Data);
1463 Data = Data & ~SERIAL_LCR_DLAB;
1464 dbg("mos7840_write: mos7840_port->shadowLCR is %x\n",
1465 mos7840_port->shadowLCR);
1467 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1470 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1471 dbg("%s", "Port Paranoia failed \n");
1475 serial = port->serial;
1476 if (mos7840_serial_paranoia_check(serial, __FUNCTION__)) {
1477 dbg("%s", "Serial Paranoia failed \n");
1481 mos7840_port = mos7840_get_port_private(port);
1482 if (mos7840_port == NULL) {
1483 dbg("%s", "mos7840_port is NULL\n");
1487 /* try to find a free urb in the list */
1490 for (i = 0; i < NUM_URBS; ++i) {
1491 if (mos7840_port->write_urb_pool[i]->status != -EINPROGRESS) {
1492 urb = mos7840_port->write_urb_pool[i];
1499 dbg("%s - no more free urbs", __FUNCTION__);
1503 if (urb->transfer_buffer == NULL) {
1504 urb->transfer_buffer =
1505 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1507 if (urb->transfer_buffer == NULL) {
1508 err("%s no more kernel memory...", __FUNCTION__);
1512 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1516 (urb->transfer_buffer, current_position, transfer_size)) {
1517 bytes_sent = -EFAULT;
1521 memcpy(urb->transfer_buffer, current_position, transfer_size);
1524 /* fill urb with data and submit */
1525 usb_fill_bulk_urb(urb,
1527 usb_sndbulkpipe(serial->dev,
1528 port->bulk_out_endpointAddress),
1529 urb->transfer_buffer,
1531 mos7840_bulk_out_data_callback, mos7840_port);
1533 data1 = urb->transfer_buffer;
1534 dbg("\nbulkout endpoint is %d", port->bulk_out_endpointAddress);
1536 /* send it down the pipe */
1537 status = usb_submit_urb(urb, GFP_ATOMIC);
1540 err("%s - usb_submit_urb(write bulk) failed with status = %d",
1541 __FUNCTION__, status);
1542 bytes_sent = status;
1545 bytes_sent = transfer_size;
1546 mos7840_port->icount.tx += transfer_size;
1547 dbg("mos7840_port->icount.tx is %d:\n", mos7840_port->icount.tx);
1554 /*****************************************************************************
1556 * this function is called by the tty driver when it wants to stop the data
1557 * being read from the port.
1558 *****************************************************************************/
1560 static void mos7840_throttle(struct usb_serial_port *port)
1562 struct moschip_port *mos7840_port;
1563 struct tty_struct *tty;
1566 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1567 dbg("%s", "Invalid port \n");
1571 dbg("- port %d\n", port->number);
1573 mos7840_port = mos7840_get_port_private(port);
1575 if (mos7840_port == NULL)
1578 if (!mos7840_port->open) {
1579 dbg("%s\n", "port not opened");
1583 dbg("%s", "Entering .......... \n");
1587 dbg("%s - no tty available", __FUNCTION__);
1591 /* if we are implementing XON/XOFF, send the stop character */
1593 unsigned char stop_char = STOP_CHAR(tty);
1594 status = mos7840_write(port, &stop_char, 1);
1600 /* if we are implementing RTS/CTS, toggle that line */
1601 if (tty->termios->c_cflag & CRTSCTS) {
1602 mos7840_port->shadowMCR &= ~MCR_RTS;
1605 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1606 mos7840_port->shadowMCR);
1616 /*****************************************************************************
1617 * mos7840_unthrottle
1618 * this function is called by the tty driver when it wants to resume the data
1619 * being read from the port (called after SerialThrottle is called)
1620 *****************************************************************************/
1621 static void mos7840_unthrottle(struct usb_serial_port *port)
1623 struct tty_struct *tty;
1625 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1627 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1628 dbg("%s", "Invalid port \n");
1632 if (mos7840_port == NULL)
1635 if (!mos7840_port->open) {
1636 dbg("%s - port not opened", __FUNCTION__);
1640 dbg("%s", "Entering .......... \n");
1644 dbg("%s - no tty available", __FUNCTION__);
1648 /* if we are implementing XON/XOFF, send the start character */
1650 unsigned char start_char = START_CHAR(tty);
1651 status = mos7840_write(port, &start_char, 1);
1657 /* if we are implementing RTS/CTS, toggle that line */
1658 if (tty->termios->c_cflag & CRTSCTS) {
1659 mos7840_port->shadowMCR |= MCR_RTS;
1662 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1663 mos7840_port->shadowMCR);
1672 static int mos7840_tiocmget(struct usb_serial_port *port, struct file *file)
1674 struct moschip_port *mos7840_port;
1675 unsigned int result;
1679 mos7840_port = mos7840_get_port_private(port);
1681 dbg("%s - port %d", __FUNCTION__, port->number);
1683 if (mos7840_port == NULL)
1686 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1687 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1688 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1689 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1690 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1691 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1692 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1693 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1694 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1696 dbg("%s - 0x%04X", __FUNCTION__, result);
1701 static int mos7840_tiocmset(struct usb_serial_port *port, struct file *file,
1702 unsigned int set, unsigned int clear)
1704 struct moschip_port *mos7840_port;
1706 unsigned int status;
1708 dbg("%s - port %d", __FUNCTION__, port->number);
1710 mos7840_port = mos7840_get_port_private(port);
1712 if (mos7840_port == NULL)
1715 mcr = mos7840_port->shadowMCR;
1716 if (clear & TIOCM_RTS)
1718 if (clear & TIOCM_DTR)
1720 if (clear & TIOCM_LOOP)
1721 mcr &= ~MCR_LOOPBACK;
1723 if (set & TIOCM_RTS)
1725 if (set & TIOCM_DTR)
1727 if (set & TIOCM_LOOP)
1728 mcr |= MCR_LOOPBACK;
1730 mos7840_port->shadowMCR = mcr;
1733 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1735 dbg("setting MODEM_CONTROL_REGISTER Failed\n");
1742 /*****************************************************************************
1743 * mos7840_calc_baud_rate_divisor
1744 * this function calculates the proper baud rate divisor for the specified
1746 *****************************************************************************/
1747 static int mos7840_calc_baud_rate_divisor(int baudRate, int *divisor,
1748 __u16 * clk_sel_val)
1751 dbg("%s - %d", __FUNCTION__, baudRate);
1753 if (baudRate <= 115200) {
1754 *divisor = 115200 / baudRate;
1757 if ((baudRate > 115200) && (baudRate <= 230400)) {
1758 *divisor = 230400 / baudRate;
1759 *clk_sel_val = 0x10;
1760 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1761 *divisor = 403200 / baudRate;
1762 *clk_sel_val = 0x20;
1763 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1764 *divisor = 460800 / baudRate;
1765 *clk_sel_val = 0x30;
1766 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1767 *divisor = 806400 / baudRate;
1768 *clk_sel_val = 0x40;
1769 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1770 *divisor = 921600 / baudRate;
1771 *clk_sel_val = 0x50;
1772 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1773 *divisor = 1572864 / baudRate;
1774 *clk_sel_val = 0x60;
1775 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1776 *divisor = 3145728 / baudRate;
1777 *clk_sel_val = 0x70;
1783 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1784 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1785 *divisor = mos7840_divisor_table[i].Divisor;
1790 /* After trying for all the standard baud rates *
1791 * Try calculating the divisor for this baud rate */
1793 if (baudrate > 75 && baudrate < 230400) {
1794 /* get the divisor */
1795 custom = (__u16) (230400L / baudrate);
1797 /* Check for round off */
1798 round1 = (__u16) (2304000L / baudrate);
1799 round = (__u16) (round1 - (custom * 10));
1805 dbg(" Baud %d = %d\n", baudrate, custom);
1809 dbg("%s\n", " Baud calculation Failed...");
1814 /*****************************************************************************
1815 * mos7840_send_cmd_write_baud_rate
1816 * this function sends the proper command to change the baud rate of the
1818 *****************************************************************************/
1820 static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1826 unsigned char number;
1828 struct usb_serial_port *port;
1830 if (mos7840_port == NULL)
1833 port = (struct usb_serial_port *)mos7840_port->port;
1834 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1835 dbg("%s", "Invalid port \n");
1839 if (mos7840_serial_paranoia_check(port->serial, __FUNCTION__)) {
1840 dbg("%s", "Invalid Serial \n");
1844 dbg("%s", "Entering .......... \n");
1846 number = mos7840_port->port->number - mos7840_port->port->serial->minor;
1848 dbg("%s - port = %d, baud = %d", __FUNCTION__,
1849 mos7840_port->port->number, baudRate);
1850 //reset clk_uart_sel in spregOffset
1851 if (baudRate > 115200) {
1852 #ifdef HW_flow_control
1853 //NOTE: need to see the pther register to modify
1854 //setting h/w flow control bit to 1;
1857 mos7840_port->shadowMCR = Data;
1859 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1861 dbg("Writing spreg failed in set_serial_baud\n");
1867 #ifdef HW_flow_control
1868 //setting h/w flow control bit to 0;
1871 mos7840_port->shadowMCR = Data;
1873 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1875 dbg("Writing spreg failed in set_serial_baud\n");
1882 if (1) //baudRate <= 115200)
1888 mos7840_calc_baud_rate_divisor(baudRate, &divisor,
1891 mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1894 dbg("reading spreg failed in set_serial_baud\n");
1897 Data = (Data & 0x8f) | clk_sel_val;
1900 mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1902 dbg("Writing spreg failed in set_serial_baud\n");
1905 /* Calculate the Divisor */
1908 err("%s - bad baud rate", __FUNCTION__);
1909 dbg("%s\n", "bad baud rate");
1912 /* Enable access to divisor latch */
1913 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1914 mos7840_port->shadowLCR = Data;
1915 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1917 /* Write the divisor */
1918 Data = (unsigned char)(divisor & 0xff);
1919 dbg("set_serial_baud Value to write DLL is %x\n", Data);
1920 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1922 Data = (unsigned char)((divisor & 0xff00) >> 8);
1923 dbg("set_serial_baud Value to write DLM is %x\n", Data);
1924 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1926 /* Disable access to divisor latch */
1927 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1928 mos7840_port->shadowLCR = Data;
1929 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1936 /*****************************************************************************
1937 * mos7840_change_port_settings
1938 * This routine is called to set the UART on the device to match
1939 * the specified new settings.
1940 *****************************************************************************/
1942 static void mos7840_change_port_settings(struct moschip_port *mos7840_port,
1943 struct termios *old_termios)
1945 struct tty_struct *tty;
1954 struct usb_serial_port *port;
1955 struct usb_serial *serial;
1957 if (mos7840_port == NULL)
1960 port = (struct usb_serial_port *)mos7840_port->port;
1962 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
1963 dbg("%s", "Invalid port \n");
1967 if (mos7840_serial_paranoia_check(port->serial, __FUNCTION__)) {
1968 dbg("%s", "Invalid Serial \n");
1972 serial = port->serial;
1974 dbg("%s - port %d", __FUNCTION__, mos7840_port->port->number);
1976 if (!mos7840_port->open) {
1977 dbg("%s - port not opened", __FUNCTION__);
1981 tty = mos7840_port->port->tty;
1983 if ((!tty) || (!tty->termios)) {
1984 dbg("%s - no tty structures", __FUNCTION__);
1988 dbg("%s", "Entering .......... \n");
1992 lParity = LCR_PAR_NONE;
1994 cflag = tty->termios->c_cflag;
1995 iflag = tty->termios->c_iflag;
1997 /* Change the number of bits */
1998 if (cflag & CSIZE) {
1999 switch (cflag & CSIZE) {
2017 /* Change the Parity bit */
2018 if (cflag & PARENB) {
2019 if (cflag & PARODD) {
2020 lParity = LCR_PAR_ODD;
2021 dbg("%s - parity = odd", __FUNCTION__);
2023 lParity = LCR_PAR_EVEN;
2024 dbg("%s - parity = even", __FUNCTION__);
2028 dbg("%s - parity = none", __FUNCTION__);
2031 if (cflag & CMSPAR) {
2032 lParity = lParity | 0x20;
2035 /* Change the Stop bit */
2036 if (cflag & CSTOPB) {
2038 dbg("%s - stop bits = 2", __FUNCTION__);
2041 dbg("%s - stop bits = 1", __FUNCTION__);
2044 /* Update the LCR with the correct value */
2045 mos7840_port->shadowLCR &=
2046 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
2047 mos7840_port->shadowLCR |= (lData | lParity | lStop);
2049 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is %x\n",
2050 mos7840_port->shadowLCR);
2051 /* Disable Interrupts */
2053 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2056 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2059 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
2061 /* Send the updated LCR value to the mos7840 */
2062 Data = mos7840_port->shadowLCR;
2064 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
2067 mos7840_port->shadowMCR = Data;
2068 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2070 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2072 /* set up the MCR register and send it to the mos7840 */
2074 mos7840_port->shadowMCR = MCR_MASTER_IE;
2075 if (cflag & CBAUD) {
2076 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
2079 if (cflag & CRTSCTS) {
2080 mos7840_port->shadowMCR |= (MCR_XON_ANY);
2083 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
2086 Data = mos7840_port->shadowMCR;
2087 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2089 /* Determine divisor based on baud rate */
2090 baud = tty_get_baud_rate(tty);
2093 /* pick a default, any default... */
2094 dbg("%s\n", "Picked default baud...");
2098 dbg("%s - baud rate = %d", __FUNCTION__, baud);
2099 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
2101 /* Enable Interrupts */
2103 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2105 if (mos7840_port->read_urb->status != -EINPROGRESS) {
2106 mos7840_port->read_urb->dev = serial->dev;
2108 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2111 dbg(" usb_submit_urb(read bulk) failed, status = %d",
2115 wake_up(&mos7840_port->delta_msr_wait);
2116 mos7840_port->delta_msr_cond = 1;
2117 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x\n",
2118 mos7840_port->shadowLCR);
2123 /*****************************************************************************
2124 * mos7840_set_termios
2125 * this function is called by the tty driver when it wants to change
2126 * the termios structure
2127 *****************************************************************************/
2129 static void mos7840_set_termios(struct usb_serial_port *port,
2130 struct termios *old_termios)
2134 struct usb_serial *serial;
2135 struct moschip_port *mos7840_port;
2136 struct tty_struct *tty;
2137 dbg("mos7840_set_termios: START\n");
2138 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
2139 dbg("%s", "Invalid port \n");
2143 serial = port->serial;
2145 if (mos7840_serial_paranoia_check(serial, __FUNCTION__)) {
2146 dbg("%s", "Invalid Serial \n");
2150 mos7840_port = mos7840_get_port_private(port);
2152 if (mos7840_port == NULL)
2157 if (!port->tty || !port->tty->termios) {
2158 dbg("%s - no tty or termios", __FUNCTION__);
2162 if (!mos7840_port->open) {
2163 dbg("%s - port not opened", __FUNCTION__);
2167 dbg("%s\n", "setting termios - ");
2169 cflag = tty->termios->c_cflag;
2172 dbg("%s %s\n", __FUNCTION__, "cflag is NULL");
2176 /* check that they really want us to change something */
2178 if ((cflag == old_termios->c_cflag) &&
2179 (RELEVANT_IFLAG(tty->termios->c_iflag) ==
2180 RELEVANT_IFLAG(old_termios->c_iflag))) {
2181 dbg("%s\n", "Nothing to change");
2186 dbg("%s - clfag %08x iflag %08x", __FUNCTION__,
2187 tty->termios->c_cflag, RELEVANT_IFLAG(tty->termios->c_iflag));
2190 dbg("%s - old clfag %08x old iflag %08x", __FUNCTION__,
2191 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
2194 dbg("%s - port %d", __FUNCTION__, port->number);
2196 /* change the port settings to the new ones specified */
2198 mos7840_change_port_settings(mos7840_port, old_termios);
2200 if (!mos7840_port->read_urb) {
2201 dbg("%s", "URB KILLED !!!!!\n");
2205 if (mos7840_port->read_urb->status != -EINPROGRESS) {
2206 mos7840_port->read_urb->dev = serial->dev;
2207 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2209 dbg(" usb_submit_urb(read bulk) failed, status = %d",
2216 /*****************************************************************************
2217 * mos7840_get_lsr_info - get line status register info
2219 * Purpose: Let user call ioctl() to get info when the UART physically
2220 * is emptied. On bus types like RS485, the transmitter must
2221 * release the bus after transmitting. This must be done when
2222 * the transmit shift register is empty, not be done when the
2223 * transmit holding register is empty. This functionality
2224 * allows an RS485 driver to be written in user space.
2225 *****************************************************************************/
2227 static int mos7840_get_lsr_info(struct moschip_port *mos7840_port,
2228 unsigned int *value)
2231 unsigned int result = 0;
2233 count = mos7840_chars_in_buffer(mos7840_port->port);
2235 dbg("%s -- Empty", __FUNCTION__);
2236 result = TIOCSER_TEMT;
2239 if (copy_to_user(value, &result, sizeof(int)))
2244 /*****************************************************************************
2245 * mos7840_get_bytes_avail - get number of bytes available
2247 * Purpose: Let user call ioctl to get the count of number of bytes available.
2248 *****************************************************************************/
2250 static int mos7840_get_bytes_avail(struct moschip_port *mos7840_port,
2251 unsigned int *value)
2253 unsigned int result = 0;
2254 struct tty_struct *tty = mos7840_port->port->tty;
2257 return -ENOIOCTLCMD;
2259 result = tty->read_cnt;
2261 dbg("%s(%d) = %d", __FUNCTION__, mos7840_port->port->number, result);
2262 if (copy_to_user(value, &result, sizeof(int)))
2265 return -ENOIOCTLCMD;
2268 /*****************************************************************************
2269 * mos7840_set_modem_info
2270 * function to set modem info
2271 *****************************************************************************/
2273 static int mos7840_set_modem_info(struct moschip_port *mos7840_port,
2274 unsigned int cmd, unsigned int *value)
2280 struct usb_serial_port *port;
2282 if (mos7840_port == NULL)
2285 port = (struct usb_serial_port *)mos7840_port->port;
2286 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
2287 dbg("%s", "Invalid port \n");
2291 mcr = mos7840_port->shadowMCR;
2293 if (copy_from_user(&arg, value, sizeof(int)))
2298 if (arg & TIOCM_RTS)
2300 if (arg & TIOCM_DTR)
2302 if (arg & TIOCM_LOOP)
2303 mcr |= MCR_LOOPBACK;
2307 if (arg & TIOCM_RTS)
2309 if (arg & TIOCM_DTR)
2311 if (arg & TIOCM_LOOP)
2312 mcr &= ~MCR_LOOPBACK;
2316 /* turn off the RTS and DTR and LOOPBACK
2317 * and then only turn on what was asked to */
2318 mcr &= ~(MCR_RTS | MCR_DTR | MCR_LOOPBACK);
2319 mcr |= ((arg & TIOCM_RTS) ? MCR_RTS : 0);
2320 mcr |= ((arg & TIOCM_DTR) ? MCR_DTR : 0);
2321 mcr |= ((arg & TIOCM_LOOP) ? MCR_LOOPBACK : 0);
2325 mos7840_port->shadowMCR = mcr;
2327 Data = mos7840_port->shadowMCR;
2329 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2331 dbg("setting MODEM_CONTROL_REGISTER Failed\n");
2338 /*****************************************************************************
2339 * mos7840_get_modem_info
2340 * function to get modem info
2341 *****************************************************************************/
2343 static int mos7840_get_modem_info(struct moschip_port *mos7840_port,
2344 unsigned int *value)
2346 unsigned int result = 0;
2348 unsigned int mcr = mos7840_port->shadowMCR;
2351 mos7840_get_uart_reg(mos7840_port->port, MODEM_STATUS_REGISTER,
2353 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0) /* 0x002 */
2354 |((mcr & MCR_RTS) ? TIOCM_RTS : 0) /* 0x004 */
2355 |((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0) /* 0x020 */
2356 |((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0) /* 0x040 */
2357 |((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0) /* 0x080 */
2358 |((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0); /* 0x100 */
2360 dbg("%s -- %x", __FUNCTION__, result);
2362 if (copy_to_user(value, &result, sizeof(int)))
2367 /*****************************************************************************
2368 * mos7840_get_serial_info
2369 * function to get information about serial port
2370 *****************************************************************************/
2372 static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
2373 struct serial_struct *retinfo)
2375 struct serial_struct tmp;
2377 if (mos7840_port == NULL)
2383 memset(&tmp, 0, sizeof(tmp));
2385 tmp.type = PORT_16550A;
2386 tmp.line = mos7840_port->port->serial->minor;
2387 tmp.port = mos7840_port->port->number;
2389 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2390 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2391 tmp.baud_base = 9600;
2392 tmp.close_delay = 5 * HZ;
2393 tmp.closing_wait = 30 * HZ;
2395 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2400 /*****************************************************************************
2402 * this function handles any ioctl calls to the driver
2403 *****************************************************************************/
2405 static int mos7840_ioctl(struct usb_serial_port *port, struct file *file,
2406 unsigned int cmd, unsigned long arg)
2408 struct moschip_port *mos7840_port;
2409 struct tty_struct *tty;
2411 struct async_icount cnow;
2412 struct async_icount cprev;
2413 struct serial_icounter_struct icount;
2416 struct tty_ldisc *ld;
2418 if (mos7840_port_paranoia_check(port, __FUNCTION__)) {
2419 dbg("%s", "Invalid port \n");
2423 mos7840_port = mos7840_get_port_private(port);
2424 tty = mos7840_port->port->tty;
2426 if (mos7840_port == NULL)
2429 dbg("%s - port %d, cmd = 0x%x", __FUNCTION__, port->number, cmd);
2432 /* return number of bytes available */
2435 dbg("%s (%d) TIOCINQ", __FUNCTION__, port->number);
2436 return mos7840_get_bytes_avail(mos7840_port,
2437 (unsigned int *)arg);
2441 dbg("%s (%d) TIOCOUTQ", __FUNCTION__, port->number);
2442 return put_user(tty->driver->chars_in_buffer ?
2443 tty->driver->chars_in_buffer(tty) : 0,
2448 retval = tty_check_change(tty);
2452 ld = tty_ldisc_ref(tty);
2455 if (ld && ld->flush_buffer)
2456 ld->flush_buffer(tty);
2459 if (ld && ld->flush_buffer)
2460 ld->flush_buffer(tty);
2463 if (tty->driver->flush_buffer)
2464 tty->driver->flush_buffer(tty);
2467 tty_ldisc_deref(ld);
2470 tty_ldisc_deref(ld);
2474 if (kernel_termios_to_user_termios
2475 ((struct termios __user *)arg, tty->termios))
2480 dbg("%s (%d) TIOCSERGETLSR", __FUNCTION__, port->number);
2481 return mos7840_get_lsr_info(mos7840_port, (unsigned int *)arg);
2487 dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET", __FUNCTION__,
2490 mos7840_set_modem_info(mos7840_port, cmd,
2491 (unsigned int *)arg);
2495 dbg("%s (%d) TIOCMGET", __FUNCTION__, port->number);
2496 return mos7840_get_modem_info(mos7840_port,
2497 (unsigned int *)arg);
2500 dbg("%s (%d) TIOCGSERIAL", __FUNCTION__, port->number);
2501 return mos7840_get_serial_info(mos7840_port,
2502 (struct serial_struct *)arg);
2505 dbg("%s (%d) TIOCSSERIAL", __FUNCTION__, port->number);
2509 dbg("%s (%d) TIOCMIWAIT", __FUNCTION__, port->number);
2510 cprev = mos7840_port->icount;
2512 //interruptible_sleep_on(&mos7840_port->delta_msr_wait);
2513 mos7840_port->delta_msr_cond = 0;
2514 wait_event_interruptible(mos7840_port->delta_msr_wait,
2516 delta_msr_cond == 1));
2518 /* see if a signal did it */
2519 if (signal_pending(current))
2520 return -ERESTARTSYS;
2521 cnow = mos7840_port->icount;
2522 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2523 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2524 return -EIO; /* no change => error */
2525 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2526 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2527 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2528 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2537 cnow = mos7840_port->icount;
2538 icount.cts = cnow.cts;
2539 icount.dsr = cnow.dsr;
2540 icount.rng = cnow.rng;
2541 icount.dcd = cnow.dcd;
2542 icount.rx = cnow.rx;
2543 icount.tx = cnow.tx;
2544 icount.frame = cnow.frame;
2545 icount.overrun = cnow.overrun;
2546 icount.parity = cnow.parity;
2547 icount.brk = cnow.brk;
2548 icount.buf_overrun = cnow.buf_overrun;
2550 dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __FUNCTION__,
2551 port->number, icount.rx, icount.tx);
2552 if (copy_to_user((void *)arg, &icount, sizeof(icount)))
2562 return -ENOIOCTLCMD;
2565 static int mos7840_calc_num_ports(struct usb_serial *serial)
2568 dbg("numberofendpoints: %d \n",
2569 (int)serial->interface->cur_altsetting->desc.bNumEndpoints);
2570 dbg("numberofendpoints: %d \n",
2571 (int)serial->interface->altsetting->desc.bNumEndpoints);
2572 if (serial->interface->cur_altsetting->desc.bNumEndpoints == 5) {
2573 mos7840_num_ports = 2;
2574 serial->type->num_ports = 2;
2575 } else if (serial->interface->cur_altsetting->desc.bNumEndpoints == 9) {
2576 mos7840_num_ports = 4;
2577 serial->type->num_bulk_in = 4;
2578 serial->type->num_bulk_out = 4;
2579 serial->type->num_ports = 4;
2582 return mos7840_num_ports;
2585 /****************************************************************************
2587 ****************************************************************************/
2589 static int mos7840_startup(struct usb_serial *serial)
2591 struct moschip_port *mos7840_port;
2592 struct usb_device *dev;
2596 dbg("%s \n", " mos7840_startup :entering..........");
2599 dbg("%s\n", "Invalid Handler");
2605 dbg("%s\n", "Entering...");
2607 /* we set up the pointers to the endpoints in the mos7840_open *
2608 * function, as the structures aren't created yet. */
2610 /* set up port private structures */
2611 for (i = 0; i < serial->num_ports; ++i) {
2612 mos7840_port = kmalloc(sizeof(struct moschip_port), GFP_KERNEL);
2613 if (mos7840_port == NULL) {
2614 err("%s - Out of memory", __FUNCTION__);
2617 memset(mos7840_port, 0, sizeof(struct moschip_port));
2619 /* Initialize all port interrupt end point to port 0 int endpoint *
2620 * Our device has only one interrupt end point comman to all port */
2622 mos7840_port->port = serial->port[i];
2623 mos7840_set_port_private(serial->port[i], mos7840_port);
2625 mos7840_port->port_num = ((serial->port[i]->number -
2626 (serial->port[i]->serial->minor)) +
2629 if (mos7840_port->port_num == 1) {
2630 mos7840_port->SpRegOffset = 0x0;
2631 mos7840_port->ControlRegOffset = 0x1;
2632 mos7840_port->DcrRegOffset = 0x4;
2633 } else if ((mos7840_port->port_num == 2)
2634 && (mos7840_num_ports == 4)) {
2635 mos7840_port->SpRegOffset = 0x8;
2636 mos7840_port->ControlRegOffset = 0x9;
2637 mos7840_port->DcrRegOffset = 0x16;
2638 } else if ((mos7840_port->port_num == 2)
2639 && (mos7840_num_ports == 2)) {
2640 mos7840_port->SpRegOffset = 0xa;
2641 mos7840_port->ControlRegOffset = 0xb;
2642 mos7840_port->DcrRegOffset = 0x19;
2643 } else if ((mos7840_port->port_num == 3)
2644 && (mos7840_num_ports == 4)) {
2645 mos7840_port->SpRegOffset = 0xa;
2646 mos7840_port->ControlRegOffset = 0xb;
2647 mos7840_port->DcrRegOffset = 0x19;
2648 } else if ((mos7840_port->port_num == 4)
2649 && (mos7840_num_ports == 4)) {
2650 mos7840_port->SpRegOffset = 0xc;
2651 mos7840_port->ControlRegOffset = 0xd;
2652 mos7840_port->DcrRegOffset = 0x1c;
2654 mos7840_dump_serial_port(mos7840_port);
2656 mos7840_set_port_private(serial->port[i], mos7840_port);
2658 //enable rx_disable bit in control register
2661 mos7840_get_reg_sync(serial->port[i],
2662 mos7840_port->ControlRegOffset, &Data);
2664 dbg("Reading ControlReg failed status-0x%x\n", status);
2667 dbg("ControlReg Reading success val is %x, status%d\n",
2669 Data |= 0x08; //setting driver done bit
2670 Data |= 0x04; //sp1_bit to have cts change reflect in modem status reg
2672 //Data |= 0x20; //rx_disable bit
2675 mos7840_set_reg_sync(serial->port[i],
2676 mos7840_port->ControlRegOffset, Data);
2678 dbg("Writing ControlReg failed(rx_disable) status-0x%x\n", status);
2681 dbg("ControlReg Writing success(rx_disable) status%d\n",
2684 //Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2 and 0x24 in DCR3
2688 mos7840_set_reg_sync(serial->port[i],
2689 (__u16) (mos7840_port->DcrRegOffset +
2692 dbg("Writing DCR0 failed status-0x%x\n", status);
2695 dbg("DCR0 Writing success status%d\n", status);
2700 mos7840_set_reg_sync(serial->port[i],
2701 (__u16) (mos7840_port->DcrRegOffset +
2704 dbg("Writing DCR1 failed status-0x%x\n", status);
2707 dbg("DCR1 Writing success status%d\n", status);
2712 mos7840_set_reg_sync(serial->port[i],
2713 (__u16) (mos7840_port->DcrRegOffset +
2716 dbg("Writing DCR2 failed status-0x%x\n", status);
2719 dbg("DCR2 Writing success status%d\n", status);
2721 // write values in clkstart0x0 and clkmulti 0x20
2725 mos7840_set_reg_sync(serial->port[i],
2726 CLK_START_VALUE_REGISTER, Data);
2728 dbg("Writing CLK_START_VALUE_REGISTER failed status-0x%x\n", status);
2731 dbg("CLK_START_VALUE_REGISTER Writing success status%d\n", status);
2736 mos7840_set_reg_sync(serial->port[i], CLK_MULTI_REGISTER,
2739 dbg("Writing CLK_MULTI_REGISTER failed status-0x%x\n",
2743 dbg("CLK_MULTI_REGISTER Writing success status%d\n",
2746 //write value 0x0 to scratchpad register
2750 mos7840_set_uart_reg(serial->port[i], SCRATCH_PAD_REGISTER,
2753 dbg("Writing SCRATCH_PAD_REGISTER failed status-0x%x\n",
2757 dbg("SCRATCH_PAD_REGISTER Writing success status%d\n",
2760 //Zero Length flag register
2761 if ((mos7840_port->port_num != 1)
2762 && (mos7840_num_ports == 2)) {
2766 status = mos7840_set_reg_sync(serial->port[i],
2772 dbg("ZLIP offset%x\n",
2774 ((__u16) mos7840_port->port_num)));
2776 dbg("Writing ZLP_REG%d failed status-0x%x\n",
2780 dbg("ZLP_REG%d Writing success status%d\n",
2785 status = mos7840_set_reg_sync(serial->port[i],
2791 dbg("ZLIP offset%x\n",
2793 ((__u16) mos7840_port->port_num) - 0x1));
2795 dbg("Writing ZLP_REG%d failed status-0x%x\n",
2799 dbg("ZLP_REG%d Writing success status%d\n",
2803 mos7840_port->control_urb = usb_alloc_urb(0, SLAB_ATOMIC);
2804 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
2808 //Zero Length flag enable
2811 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2813 dbg("Writing ZLP_REG5 failed status-0x%x\n", status);
2816 dbg("ZLP_REG5 Writing success status%d\n", status);
2818 /* setting configuration feature to one */
2819 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2820 (__u8) 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 5 * HZ);
2824 /****************************************************************************
2826 * This function is called whenever the device is removed from the usb bus.
2827 ****************************************************************************/
2829 static void mos7840_shutdown(struct usb_serial *serial)
2832 struct moschip_port *mos7840_port;
2833 dbg("%s \n", " shutdown :entering..........");
2836 dbg("%s", "Invalid Handler \n");
2840 /* check for the ports to be closed,close the ports and disconnect */
2842 /* free private structure allocated for serial port *
2843 * stop reads and writes on all ports */
2845 for (i = 0; i < serial->num_ports; ++i) {
2846 mos7840_port = mos7840_get_port_private(serial->port[i]);
2847 kfree(mos7840_port->ctrl_buf);
2848 usb_kill_urb(mos7840_port->control_urb);
2849 kfree(mos7840_port);
2850 mos7840_set_port_private(serial->port[i], NULL);
2853 dbg("%s\n", "Thank u :: ");
2857 static struct usb_serial_driver moschip7840_4port_device = {
2859 .owner = THIS_MODULE,
2862 .description = DRIVER_DESC,
2863 .id_table = moschip_port_id_table,
2864 .num_interrupt_in = 1, //NUM_DONT_CARE,//1,
2870 .open = mos7840_open,
2871 .close = mos7840_close,
2872 .write = mos7840_write,
2873 .write_room = mos7840_write_room,
2874 .chars_in_buffer = mos7840_chars_in_buffer,
2875 .throttle = mos7840_throttle,
2876 .unthrottle = mos7840_unthrottle,
2877 .calc_num_ports = mos7840_calc_num_ports,
2878 #ifdef MCSSerialProbe
2879 .probe = mos7840_serial_probe,
2881 .ioctl = mos7840_ioctl,
2882 .set_termios = mos7840_set_termios,
2883 .break_ctl = mos7840_break,
2884 .tiocmget = mos7840_tiocmget,
2885 .tiocmset = mos7840_tiocmset,
2886 .attach = mos7840_startup,
2887 .shutdown = mos7840_shutdown,
2888 .read_bulk_callback = mos7840_bulk_in_callback,
2889 .read_int_callback = mos7840_interrupt_callback,
2892 static struct usb_driver io_driver = {
2894 .probe = usb_serial_probe,
2895 .disconnect = usb_serial_disconnect,
2896 .id_table = moschip_id_table_combined,
2899 /****************************************************************************
2901 * This is called by the module subsystem, or on startup to initialize us
2902 ****************************************************************************/
2903 static int __init moschip7840_init(void)
2907 dbg("%s \n", " mos7840_init :entering..........");
2909 /* Register with the usb serial */
2910 retval = usb_serial_register(&moschip7840_4port_device);
2913 goto failed_port_device_register;
2915 dbg("%s\n", "Entring...");
2916 info(DRIVER_DESC " " DRIVER_VERSION);
2918 /* Register with the usb */
2919 retval = usb_register(&io_driver);
2922 goto failed_usb_register;
2925 dbg("%s\n", "Leaving...");
2929 failed_usb_register:
2930 usb_serial_deregister(&moschip7840_4port_device);
2932 failed_port_device_register:
2937 /****************************************************************************
2939 * Called when the driver is about to be unloaded.
2940 ****************************************************************************/
2941 static void __exit moschip7840_exit(void)
2944 dbg("%s \n", " mos7840_exit :entering..........");
2946 usb_deregister(&io_driver);
2948 usb_serial_deregister(&moschip7840_4port_device);
2950 dbg("%s\n", "Entring...");
2953 module_init(moschip7840_init);
2954 module_exit(moschip7840_exit);
2956 /* Module information */
2957 MODULE_DESCRIPTION(DRIVER_DESC);
2958 MODULE_LICENSE("GPL");
2960 module_param(debug, bool, S_IRUGO | S_IWUSR);
2961 MODULE_PARM_DESC(debug, "Debug enabled or not");