1 // SPDX-License-Identifier: GPL-2.0+
3 * Clean ups from Moschip version and a few ioctl implementations by:
4 * Paul B Schroeder <pschroeder "at" uplogix "dot" com>
6 * Originally based on drivers/usb/serial/io_edgeport.c which is:
7 * Copyright (C) 2000 Inside Out Networks, All rights reserved.
8 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/slab.h>
15 #include <linux/tty.h>
16 #include <linux/tty_driver.h>
17 #include <linux/tty_flip.h>
18 #include <linux/module.h>
19 #include <linux/serial.h>
20 #include <linux/usb.h>
21 #include <linux/usb/serial.h>
22 #include <linux/uaccess.h>
24 #define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
27 * 16C50 UART register defines
30 #define LCR_BITS_5 0x00 /* 5 bits/char */
31 #define LCR_BITS_6 0x01 /* 6 bits/char */
32 #define LCR_BITS_7 0x02 /* 7 bits/char */
33 #define LCR_BITS_8 0x03 /* 8 bits/char */
34 #define LCR_BITS_MASK 0x03 /* Mask for bits/char field */
36 #define LCR_STOP_1 0x00 /* 1 stop bit */
37 #define LCR_STOP_1_5 0x04 /* 1.5 stop bits (if 5 bits/char) */
38 #define LCR_STOP_2 0x04 /* 2 stop bits (if 6-8 bits/char) */
39 #define LCR_STOP_MASK 0x04 /* Mask for stop bits field */
41 #define LCR_PAR_NONE 0x00 /* No parity */
42 #define LCR_PAR_ODD 0x08 /* Odd parity */
43 #define LCR_PAR_EVEN 0x18 /* Even parity */
44 #define LCR_PAR_MARK 0x28 /* Force parity bit to 1 */
45 #define LCR_PAR_SPACE 0x38 /* Force parity bit to 0 */
46 #define LCR_PAR_MASK 0x38 /* Mask for parity field */
48 #define LCR_SET_BREAK 0x40 /* Set Break condition */
49 #define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
51 #define MCR_DTR 0x01 /* Assert DTR */
52 #define MCR_RTS 0x02 /* Assert RTS */
53 #define MCR_OUT1 0x04 /* Loopback only: Sets state of RI */
54 #define MCR_MASTER_IE 0x08 /* Enable interrupt outputs */
55 #define MCR_LOOPBACK 0x10 /* Set internal (digital) loopback mode */
56 #define MCR_XON_ANY 0x20 /* Enable any char to exit XOFF mode */
58 #define MOS7840_MSR_CTS 0x10 /* Current state of CTS */
59 #define MOS7840_MSR_DSR 0x20 /* Current state of DSR */
60 #define MOS7840_MSR_RI 0x40 /* Current state of RI */
61 #define MOS7840_MSR_CD 0x80 /* Current state of CD */
64 * Defines used for sending commands to port
67 #define MOS_WDR_TIMEOUT 5000 /* default urb timeout */
69 #define MOS_PORT1 0x0200
70 #define MOS_PORT2 0x0300
71 #define MOS_VENREG 0x0000
72 #define MOS_MAX_PORT 0x02
73 #define MOS_WRITE 0x0E
77 #define MCS_RD_RTYPE 0xC0
78 #define MCS_WR_RTYPE 0x40
79 #define MCS_RDREQ 0x0D
80 #define MCS_WRREQ 0x0E
81 #define MCS_CTRL_TIMEOUT 500
82 #define VENDOR_READ_LENGTH (0x01)
84 #define MAX_NAME_LEN 64
86 #define ZLP_REG1 0x3A /* Zero_Flag_Reg1 58 */
87 #define ZLP_REG5 0x3E /* Zero_Flag_Reg5 62 */
89 /* For higher baud Rates use TIOCEXBAUD */
90 #define TIOCEXBAUD 0x5462
92 /* vendor id and device id defines */
94 /* The native mos7840/7820 component */
95 #define USB_VENDOR_ID_MOSCHIP 0x9710
96 #define MOSCHIP_DEVICE_ID_7840 0x7840
97 #define MOSCHIP_DEVICE_ID_7820 0x7820
98 #define MOSCHIP_DEVICE_ID_7810 0x7810
99 /* The native component can have its vendor/device id's overridden
100 * in vendor-specific implementations. Such devices can be handled
101 * by making a change here, in id_table.
103 #define USB_VENDOR_ID_BANDB 0x0856
104 #define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
105 #define BANDB_DEVICE_ID_USO9ML2_2P 0xBC00
106 #define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
107 #define BANDB_DEVICE_ID_USO9ML2_4P 0xBC01
108 #define BANDB_DEVICE_ID_US9ML2_2 0xAC29
109 #define BANDB_DEVICE_ID_US9ML2_4 0xAC30
110 #define BANDB_DEVICE_ID_USPTL4_2 0xAC31
111 #define BANDB_DEVICE_ID_USPTL4_4 0xAC32
112 #define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
113 #define BANDB_DEVICE_ID_USOPTL4_2P 0xBC02
114 #define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
115 #define BANDB_DEVICE_ID_USOPTL4_4P 0xBC03
116 #define BANDB_DEVICE_ID_USOPTL2_4 0xAC24
118 /* This driver also supports
119 * ATEN UC2324 device using Moschip MCS7840
120 * ATEN UC2322 device using Moschip MCS7820
121 * MOXA UPort 2210 device using Moschip MCS7820
123 #define USB_VENDOR_ID_ATENINTL 0x0557
124 #define ATENINTL_DEVICE_ID_UC2324 0x2011
125 #define ATENINTL_DEVICE_ID_UC2322 0x7820
127 #define USB_VENDOR_ID_MOXA 0x110a
128 #define MOXA_DEVICE_ID_2210 0x2210
130 /* Interrupt Routine Defines */
132 #define SERIAL_IIR_RLS 0x06
133 #define SERIAL_IIR_MS 0x00
136 * Emulation of the bit mask on the LINE STATUS REGISTER.
138 #define SERIAL_LSR_DR 0x0001
139 #define SERIAL_LSR_OE 0x0002
140 #define SERIAL_LSR_PE 0x0004
141 #define SERIAL_LSR_FE 0x0008
142 #define SERIAL_LSR_BI 0x0010
144 #define MOS_MSR_DELTA_CTS 0x10
145 #define MOS_MSR_DELTA_DSR 0x20
146 #define MOS_MSR_DELTA_RI 0x40
147 #define MOS_MSR_DELTA_CD 0x80
149 /* Serial Port register Address */
150 #define INTERRUPT_ENABLE_REGISTER ((__u16)(0x01))
151 #define FIFO_CONTROL_REGISTER ((__u16)(0x02))
152 #define LINE_CONTROL_REGISTER ((__u16)(0x03))
153 #define MODEM_CONTROL_REGISTER ((__u16)(0x04))
154 #define LINE_STATUS_REGISTER ((__u16)(0x05))
155 #define MODEM_STATUS_REGISTER ((__u16)(0x06))
156 #define SCRATCH_PAD_REGISTER ((__u16)(0x07))
157 #define DIVISOR_LATCH_LSB ((__u16)(0x00))
158 #define DIVISOR_LATCH_MSB ((__u16)(0x01))
160 #define CLK_MULTI_REGISTER ((__u16)(0x02))
161 #define CLK_START_VALUE_REGISTER ((__u16)(0x03))
162 #define GPIO_REGISTER ((__u16)(0x07))
164 #define SERIAL_LCR_DLAB ((__u16)(0x0080))
167 * URB POOL related defines
169 #define NUM_URBS 16 /* URB Count */
170 #define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
172 /* LED on/off milliseconds*/
173 #define LED_ON_MS 500
174 #define LED_OFF_MS 500
177 MOS7840_FLAG_CTRL_BUSY
,
178 MOS7840_FLAG_LED_BUSY
,
181 static const struct usb_device_id id_table
[] = {
182 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP
, MOSCHIP_DEVICE_ID_7840
)},
183 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP
, MOSCHIP_DEVICE_ID_7820
)},
184 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP
, MOSCHIP_DEVICE_ID_7810
)},
185 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USO9ML2_2
)},
186 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USO9ML2_2P
)},
187 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USO9ML2_4
)},
188 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USO9ML2_4P
)},
189 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_US9ML2_2
)},
190 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_US9ML2_4
)},
191 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USPTL4_2
)},
192 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USPTL4_4
)},
193 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USOPTL4_2
)},
194 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USOPTL4_2P
)},
195 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USOPTL4_4
)},
196 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USOPTL4_4P
)},
197 {USB_DEVICE(USB_VENDOR_ID_BANDB
, BANDB_DEVICE_ID_USOPTL2_4
)},
198 {USB_DEVICE(USB_VENDOR_ID_ATENINTL
, ATENINTL_DEVICE_ID_UC2324
)},
199 {USB_DEVICE(USB_VENDOR_ID_ATENINTL
, ATENINTL_DEVICE_ID_UC2322
)},
200 {USB_DEVICE(USB_VENDOR_ID_MOXA
, MOXA_DEVICE_ID_2210
)},
201 {} /* terminating entry */
203 MODULE_DEVICE_TABLE(usb
, id_table
);
205 /* This structure holds all of the local port information */
207 struct moschip_port
{
208 int port_num
; /*Actual port number in the device(1,2,etc) */
209 struct urb
*read_urb
; /* read URB for this port */
210 __u8 shadowLCR
; /* last LCR value received */
211 __u8 shadowMCR
; /* last MCR value received */
214 struct usb_serial_port
*port
; /* loop back to the owner of this object */
218 __u8 ControlRegOffset
;
220 /* for processing control URBS in interrupt context */
221 struct urb
*control_urb
;
222 struct usb_ctrlrequest
*dr
;
226 spinlock_t pool_lock
;
227 struct urb
*write_urb_pool
[NUM_URBS
];
231 /* For device(s) with LED indicator */
233 struct timer_list led_timer1
; /* Timer for LED on */
234 struct timer_list led_timer2
; /* Timer for LED off */
236 struct usb_ctrlrequest
*led_dr
;
242 * mos7840_set_reg_sync
243 * To set the Control register by calling usb_fill_control_urb function
244 * by passing usb_sndctrlpipe function as parameter.
247 static int mos7840_set_reg_sync(struct usb_serial_port
*port
, __u16 reg
,
250 struct usb_device
*dev
= port
->serial
->dev
;
252 dev_dbg(&port
->dev
, "mos7840_set_reg_sync offset is %x, value %x\n", reg
, val
);
254 return usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), MCS_WRREQ
,
255 MCS_WR_RTYPE
, val
, reg
, NULL
, 0,
260 * mos7840_get_reg_sync
261 * To set the Uart register by calling usb_fill_control_urb function by
262 * passing usb_rcvctrlpipe function as parameter.
265 static int mos7840_get_reg_sync(struct usb_serial_port
*port
, __u16 reg
,
268 struct usb_device
*dev
= port
->serial
->dev
;
272 buf
= kmalloc(VENDOR_READ_LENGTH
, GFP_KERNEL
);
276 ret
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0), MCS_RDREQ
,
277 MCS_RD_RTYPE
, 0, reg
, buf
, VENDOR_READ_LENGTH
,
279 if (ret
< VENDOR_READ_LENGTH
) {
286 dev_dbg(&port
->dev
, "%s offset is %x, return val %x\n", __func__
, reg
, *val
);
293 * mos7840_set_uart_reg
294 * To set the Uart register by calling usb_fill_control_urb function by
295 * passing usb_sndctrlpipe function as parameter.
298 static int mos7840_set_uart_reg(struct usb_serial_port
*port
, __u16 reg
,
302 struct usb_device
*dev
= port
->serial
->dev
;
304 /* For the UART control registers, the application number need
306 if (port
->serial
->num_ports
== 4) {
307 val
|= ((__u16
)port
->port_number
+ 1) << 8;
309 if (port
->port_number
== 0) {
310 val
|= ((__u16
)port
->port_number
+ 1) << 8;
312 val
|= ((__u16
)port
->port_number
+ 2) << 8;
315 dev_dbg(&port
->dev
, "%s application number is %x\n", __func__
, val
);
316 return usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), MCS_WRREQ
,
317 MCS_WR_RTYPE
, val
, reg
, NULL
, 0,
323 * mos7840_get_uart_reg
324 * To set the Control register by calling usb_fill_control_urb function
325 * by passing usb_rcvctrlpipe function as parameter.
327 static int mos7840_get_uart_reg(struct usb_serial_port
*port
, __u16 reg
,
330 struct usb_device
*dev
= port
->serial
->dev
;
335 buf
= kmalloc(VENDOR_READ_LENGTH
, GFP_KERNEL
);
339 /* Wval is same as application number */
340 if (port
->serial
->num_ports
== 4) {
341 Wval
= ((__u16
)port
->port_number
+ 1) << 8;
343 if (port
->port_number
== 0) {
344 Wval
= ((__u16
)port
->port_number
+ 1) << 8;
346 Wval
= ((__u16
)port
->port_number
+ 2) << 8;
349 dev_dbg(&port
->dev
, "%s application number is %x\n", __func__
, Wval
);
350 ret
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0), MCS_RDREQ
,
351 MCS_RD_RTYPE
, Wval
, reg
, buf
, VENDOR_READ_LENGTH
,
353 if (ret
< VENDOR_READ_LENGTH
) {
364 static void mos7840_dump_serial_port(struct usb_serial_port
*port
,
365 struct moschip_port
*mos7840_port
)
368 dev_dbg(&port
->dev
, "SpRegOffset is %2x\n", mos7840_port
->SpRegOffset
);
369 dev_dbg(&port
->dev
, "ControlRegOffset is %2x\n", mos7840_port
->ControlRegOffset
);
370 dev_dbg(&port
->dev
, "DCRRegOffset is %2x\n", mos7840_port
->DcrRegOffset
);
374 /************************************************************************/
375 /************************************************************************/
376 /* I N T E R F A C E F U N C T I O N S */
377 /* I N T E R F A C E F U N C T I O N S */
378 /************************************************************************/
379 /************************************************************************/
381 static inline void mos7840_set_port_private(struct usb_serial_port
*port
,
382 struct moschip_port
*data
)
384 usb_set_serial_port_data(port
, (void *)data
);
387 static inline struct moschip_port
*mos7840_get_port_private(struct
391 return (struct moschip_port
*)usb_get_serial_port_data(port
);
394 static void mos7840_handle_new_msr(struct moschip_port
*port
, __u8 new_msr
)
396 struct moschip_port
*mos7840_port
;
397 struct async_icount
*icount
;
400 (MOS_MSR_DELTA_CTS
| MOS_MSR_DELTA_DSR
| MOS_MSR_DELTA_RI
|
402 icount
= &mos7840_port
->port
->icount
;
404 /* update input line counters */
405 if (new_msr
& MOS_MSR_DELTA_CTS
)
407 if (new_msr
& MOS_MSR_DELTA_DSR
)
409 if (new_msr
& MOS_MSR_DELTA_CD
)
411 if (new_msr
& MOS_MSR_DELTA_RI
)
414 wake_up_interruptible(&port
->port
->port
.delta_msr_wait
);
418 static void mos7840_handle_new_lsr(struct moschip_port
*port
, __u8 new_lsr
)
420 struct async_icount
*icount
;
422 if (new_lsr
& SERIAL_LSR_BI
) {
424 * Parity and Framing errors only count if they
425 * occur exclusive of a break being
428 new_lsr
&= (__u8
) (SERIAL_LSR_OE
| SERIAL_LSR_BI
);
431 /* update input line counters */
432 icount
= &port
->port
->icount
;
433 if (new_lsr
& SERIAL_LSR_BI
)
435 if (new_lsr
& SERIAL_LSR_OE
)
437 if (new_lsr
& SERIAL_LSR_PE
)
439 if (new_lsr
& SERIAL_LSR_FE
)
443 /************************************************************************/
444 /************************************************************************/
445 /* U S B C A L L B A C K F U N C T I O N S */
446 /* U S B C A L L B A C K F U N C T I O N S */
447 /************************************************************************/
448 /************************************************************************/
450 static void mos7840_control_callback(struct urb
*urb
)
453 struct moschip_port
*mos7840_port
;
454 struct device
*dev
= &urb
->dev
->dev
;
456 int status
= urb
->status
;
458 mos7840_port
= urb
->context
;
467 /* this urb is terminated, clean up */
468 dev_dbg(dev
, "%s - urb shutting down with status: %d\n", __func__
, status
);
471 dev_dbg(dev
, "%s - nonzero urb status received: %d\n", __func__
, status
);
475 dev_dbg(dev
, "%s urb buffer size is %d\n", __func__
, urb
->actual_length
);
476 if (urb
->actual_length
< 1)
479 dev_dbg(dev
, "%s mos7840_port->MsrLsr is %d port %d\n", __func__
,
480 mos7840_port
->MsrLsr
, mos7840_port
->port_num
);
481 data
= urb
->transfer_buffer
;
482 regval
= (__u8
) data
[0];
483 dev_dbg(dev
, "%s data is %x\n", __func__
, regval
);
484 if (mos7840_port
->MsrLsr
== 0)
485 mos7840_handle_new_msr(mos7840_port
, regval
);
486 else if (mos7840_port
->MsrLsr
== 1)
487 mos7840_handle_new_lsr(mos7840_port
, regval
);
489 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY
, &mos7840_port
->flags
);
492 static int mos7840_get_reg(struct moschip_port
*mcs
, __u16 Wval
, __u16 reg
,
495 struct usb_device
*dev
= mcs
->port
->serial
->dev
;
496 struct usb_ctrlrequest
*dr
= mcs
->dr
;
497 unsigned char *buffer
= mcs
->ctrl_buf
;
500 if (test_and_set_bit_lock(MOS7840_FLAG_CTRL_BUSY
, &mcs
->flags
))
503 dr
->bRequestType
= MCS_RD_RTYPE
;
504 dr
->bRequest
= MCS_RDREQ
;
505 dr
->wValue
= cpu_to_le16(Wval
); /* 0 */
506 dr
->wIndex
= cpu_to_le16(reg
);
507 dr
->wLength
= cpu_to_le16(2);
509 usb_fill_control_urb(mcs
->control_urb
, dev
, usb_rcvctrlpipe(dev
, 0),
510 (unsigned char *)dr
, buffer
, 2,
511 mos7840_control_callback
, mcs
);
512 mcs
->control_urb
->transfer_buffer_length
= 2;
513 ret
= usb_submit_urb(mcs
->control_urb
, GFP_ATOMIC
);
515 clear_bit_unlock(MOS7840_FLAG_CTRL_BUSY
, &mcs
->flags
);
520 static void mos7840_set_led_callback(struct urb
*urb
)
522 switch (urb
->status
) {
529 /* This urb is terminated, clean up */
530 dev_dbg(&urb
->dev
->dev
, "%s - urb shutting down: %d\n",
531 __func__
, urb
->status
);
534 dev_dbg(&urb
->dev
->dev
, "%s - nonzero urb status: %d\n",
535 __func__
, urb
->status
);
539 static void mos7840_set_led_async(struct moschip_port
*mcs
, __u16 wval
,
542 struct usb_device
*dev
= mcs
->port
->serial
->dev
;
543 struct usb_ctrlrequest
*dr
= mcs
->led_dr
;
545 dr
->bRequestType
= MCS_WR_RTYPE
;
546 dr
->bRequest
= MCS_WRREQ
;
547 dr
->wValue
= cpu_to_le16(wval
);
548 dr
->wIndex
= cpu_to_le16(reg
);
549 dr
->wLength
= cpu_to_le16(0);
551 usb_fill_control_urb(mcs
->led_urb
, dev
, usb_sndctrlpipe(dev
, 0),
552 (unsigned char *)dr
, NULL
, 0, mos7840_set_led_callback
, NULL
);
554 usb_submit_urb(mcs
->led_urb
, GFP_ATOMIC
);
557 static void mos7840_set_led_sync(struct usb_serial_port
*port
, __u16 reg
,
560 struct usb_device
*dev
= port
->serial
->dev
;
562 usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), MCS_WRREQ
, MCS_WR_RTYPE
,
563 val
, reg
, NULL
, 0, MOS_WDR_TIMEOUT
);
566 static void mos7840_led_off(struct timer_list
*t
)
568 struct moschip_port
*mcs
= from_timer(mcs
, t
, led_timer1
);
571 mos7840_set_led_async(mcs
, 0x0300, MODEM_CONTROL_REGISTER
);
572 mod_timer(&mcs
->led_timer2
,
573 jiffies
+ msecs_to_jiffies(LED_OFF_MS
));
576 static void mos7840_led_flag_off(struct timer_list
*t
)
578 struct moschip_port
*mcs
= from_timer(mcs
, t
, led_timer2
);
580 clear_bit_unlock(MOS7840_FLAG_LED_BUSY
, &mcs
->flags
);
583 static void mos7840_led_activity(struct usb_serial_port
*port
)
585 struct moschip_port
*mos7840_port
= usb_get_serial_port_data(port
);
587 if (test_and_set_bit_lock(MOS7840_FLAG_LED_BUSY
, &mos7840_port
->flags
))
590 mos7840_set_led_async(mos7840_port
, 0x0301, MODEM_CONTROL_REGISTER
);
591 mod_timer(&mos7840_port
->led_timer1
,
592 jiffies
+ msecs_to_jiffies(LED_ON_MS
));
595 /*****************************************************************************
596 * mos7840_interrupt_callback
597 * this is the callback function for when we have received data on the
598 * interrupt endpoint.
599 *****************************************************************************/
601 static void mos7840_interrupt_callback(struct urb
*urb
)
605 struct moschip_port
*mos7840_port
;
606 struct usb_serial
*serial
;
611 __u16 wval
, wreg
= 0;
612 int status
= urb
->status
;
621 /* this urb is terminated, clean up */
622 dev_dbg(&urb
->dev
->dev
, "%s - urb shutting down with status: %d\n",
626 dev_dbg(&urb
->dev
->dev
, "%s - nonzero urb status received: %d\n",
631 length
= urb
->actual_length
;
632 data
= urb
->transfer_buffer
;
634 serial
= urb
->context
;
636 /* Moschip get 5 bytes
637 * Byte 1 IIR Port 1 (port.number is 0)
638 * Byte 2 IIR Port 2 (port.number is 1)
639 * Byte 3 IIR Port 3 (port.number is 2)
640 * Byte 4 IIR Port 4 (port.number is 3)
641 * Byte 5 FIFO status for both */
644 dev_dbg(&urb
->dev
->dev
, "%s", "Wrong data !!!\n");
648 sp
[0] = (__u8
) data
[0];
649 sp
[1] = (__u8
) data
[1];
650 sp
[2] = (__u8
) data
[2];
651 sp
[3] = (__u8
) data
[3];
654 for (i
= 0; i
< serial
->num_ports
; i
++) {
655 mos7840_port
= mos7840_get_port_private(serial
->port
[i
]);
656 wval
= ((__u16
)serial
->port
[i
]->port_number
+ 1) << 8;
657 if (mos7840_port
->open
) {
659 dev_dbg(&urb
->dev
->dev
, "SP%d No Interrupt !!!\n", i
);
661 switch (sp
[i
] & 0x0f) {
663 dev_dbg(&urb
->dev
->dev
, "Serial Port %d: Receiver status error or \n", i
);
664 dev_dbg(&urb
->dev
->dev
, "address bit detected in 9-bit mode\n");
665 mos7840_port
->MsrLsr
= 1;
666 wreg
= LINE_STATUS_REGISTER
;
669 dev_dbg(&urb
->dev
->dev
, "Serial Port %d: Modem status change\n", i
);
670 mos7840_port
->MsrLsr
= 0;
671 wreg
= MODEM_STATUS_REGISTER
;
674 rv
= mos7840_get_reg(mos7840_port
, wval
, wreg
, &Data
);
679 /* the completion handler for the control urb will resubmit */
682 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
684 dev_err(&urb
->dev
->dev
,
685 "%s - Error %d submitting interrupt urb\n",
690 static int mos7840_port_paranoia_check(struct usb_serial_port
*port
,
691 const char *function
)
694 pr_debug("%s - port == NULL\n", function
);
698 pr_debug("%s - port->serial == NULL\n", function
);
705 /* Inline functions to check the sanity of a pointer that is passed to us */
706 static int mos7840_serial_paranoia_check(struct usb_serial
*serial
,
707 const char *function
)
710 pr_debug("%s - serial == NULL\n", function
);
714 pr_debug("%s - serial->type == NULL!\n", function
);
721 static struct usb_serial
*mos7840_get_usb_serial(struct usb_serial_port
*port
,
722 const char *function
)
724 /* if no port was specified, or it fails a paranoia check */
726 mos7840_port_paranoia_check(port
, function
) ||
727 mos7840_serial_paranoia_check(port
->serial
, function
)) {
728 /* then say that we don't have a valid usb_serial thing,
729 * which will end up genrating -ENODEV return values */
736 /*****************************************************************************
737 * mos7840_bulk_in_callback
738 * this is the callback function for when we have received data on the
740 *****************************************************************************/
742 static void mos7840_bulk_in_callback(struct urb
*urb
)
746 struct usb_serial
*serial
;
747 struct usb_serial_port
*port
;
748 struct moschip_port
*mos7840_port
;
749 int status
= urb
->status
;
751 mos7840_port
= urb
->context
;
756 dev_dbg(&urb
->dev
->dev
, "nonzero read bulk status received: %d\n", status
);
757 mos7840_port
->read_urb_busy
= false;
761 port
= mos7840_port
->port
;
762 if (mos7840_port_paranoia_check(port
, __func__
)) {
763 mos7840_port
->read_urb_busy
= false;
767 serial
= mos7840_get_usb_serial(port
, __func__
);
769 mos7840_port
->read_urb_busy
= false;
773 data
= urb
->transfer_buffer
;
774 usb_serial_debug_data(&port
->dev
, __func__
, urb
->actual_length
, data
);
776 if (urb
->actual_length
) {
777 struct tty_port
*tport
= &mos7840_port
->port
->port
;
778 tty_insert_flip_string(tport
, data
, urb
->actual_length
);
779 tty_flip_buffer_push(tport
);
780 port
->icount
.rx
+= urb
->actual_length
;
781 dev_dbg(&port
->dev
, "icount.rx is %d:\n", port
->icount
.rx
);
784 if (!mos7840_port
->read_urb
) {
785 dev_dbg(&port
->dev
, "%s", "URB KILLED !!!\n");
786 mos7840_port
->read_urb_busy
= false;
790 if (mos7840_port
->has_led
)
791 mos7840_led_activity(port
);
793 mos7840_port
->read_urb_busy
= true;
794 retval
= usb_submit_urb(mos7840_port
->read_urb
, GFP_ATOMIC
);
797 dev_dbg(&port
->dev
, "usb_submit_urb(read bulk) failed, retval = %d\n", retval
);
798 mos7840_port
->read_urb_busy
= false;
802 /*****************************************************************************
803 * mos7840_bulk_out_data_callback
804 * this is the callback function for when we have finished sending
805 * serial data on the bulk out endpoint.
806 *****************************************************************************/
808 static void mos7840_bulk_out_data_callback(struct urb
*urb
)
810 struct moschip_port
*mos7840_port
;
811 struct usb_serial_port
*port
;
812 int status
= urb
->status
;
816 mos7840_port
= urb
->context
;
817 port
= mos7840_port
->port
;
818 spin_lock_irqsave(&mos7840_port
->pool_lock
, flags
);
819 for (i
= 0; i
< NUM_URBS
; i
++) {
820 if (urb
== mos7840_port
->write_urb_pool
[i
]) {
821 mos7840_port
->busy
[i
] = 0;
825 spin_unlock_irqrestore(&mos7840_port
->pool_lock
, flags
);
828 dev_dbg(&port
->dev
, "nonzero write bulk status received:%d\n", status
);
832 if (mos7840_port_paranoia_check(port
, __func__
))
835 if (mos7840_port
->open
)
836 tty_port_tty_wakeup(&port
->port
);
840 /************************************************************************/
841 /* 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 */
842 /************************************************************************/
844 /*****************************************************************************
846 * this function is called by the tty driver when a port is opened
847 * If successful, we return 0
848 * Otherwise we return a negative error number.
849 *****************************************************************************/
851 static int mos7840_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
855 struct usb_serial
*serial
;
859 struct moschip_port
*mos7840_port
;
860 struct moschip_port
*port0
;
862 if (mos7840_port_paranoia_check(port
, __func__
))
865 serial
= port
->serial
;
867 if (mos7840_serial_paranoia_check(serial
, __func__
))
870 mos7840_port
= mos7840_get_port_private(port
);
871 port0
= mos7840_get_port_private(serial
->port
[0]);
873 if (mos7840_port
== NULL
|| port0
== NULL
)
876 usb_clear_halt(serial
->dev
, port
->write_urb
->pipe
);
877 usb_clear_halt(serial
->dev
, port
->read_urb
->pipe
);
880 /* Initialising the write urb pool */
881 for (j
= 0; j
< NUM_URBS
; ++j
) {
882 urb
= usb_alloc_urb(0, GFP_KERNEL
);
883 mos7840_port
->write_urb_pool
[j
] = urb
;
887 urb
->transfer_buffer
= kmalloc(URB_TRANSFER_BUFFER_SIZE
,
889 if (!urb
->transfer_buffer
) {
891 mos7840_port
->write_urb_pool
[j
] = NULL
;
896 /*****************************************************************************
897 * Initialize MCS7840 -- Write Init values to corresponding Registers
905 * 0x08 : SP1/2 Control Reg
906 *****************************************************************************/
908 /* NEED to check the following Block */
911 status
= mos7840_get_reg_sync(port
, mos7840_port
->SpRegOffset
, &Data
);
913 dev_dbg(&port
->dev
, "Reading Spreg failed\n");
917 status
= mos7840_set_reg_sync(port
, mos7840_port
->SpRegOffset
, Data
);
919 dev_dbg(&port
->dev
, "writing Spreg failed\n");
924 status
= mos7840_set_reg_sync(port
, mos7840_port
->SpRegOffset
, Data
);
926 dev_dbg(&port
->dev
, "writing Spreg failed\n");
929 /* End of block to be checked */
932 status
= mos7840_get_reg_sync(port
, mos7840_port
->ControlRegOffset
,
935 dev_dbg(&port
->dev
, "Reading Controlreg failed\n");
938 Data
|= 0x08; /* Driver done bit */
939 Data
|= 0x20; /* rx_disable */
940 status
= mos7840_set_reg_sync(port
,
941 mos7840_port
->ControlRegOffset
, Data
);
943 dev_dbg(&port
->dev
, "writing Controlreg failed\n");
946 /* do register settings here */
947 /* Set all regs to the device default values. */
948 /***********************************
949 * First Disable all interrupts.
950 ***********************************/
952 status
= mos7840_set_uart_reg(port
, INTERRUPT_ENABLE_REGISTER
, Data
);
954 dev_dbg(&port
->dev
, "disabling interrupts failed\n");
957 /* Set FIFO_CONTROL_REGISTER to the default value */
959 status
= mos7840_set_uart_reg(port
, FIFO_CONTROL_REGISTER
, Data
);
961 dev_dbg(&port
->dev
, "Writing FIFO_CONTROL_REGISTER failed\n");
966 status
= mos7840_set_uart_reg(port
, FIFO_CONTROL_REGISTER
, Data
);
968 dev_dbg(&port
->dev
, "Writing FIFO_CONTROL_REGISTER failed\n");
973 status
= mos7840_set_uart_reg(port
, LINE_CONTROL_REGISTER
, Data
);
974 mos7840_port
->shadowLCR
= Data
;
977 status
= mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
, Data
);
978 mos7840_port
->shadowMCR
= Data
;
981 status
= mos7840_get_uart_reg(port
, LINE_CONTROL_REGISTER
, &Data
);
982 mos7840_port
->shadowLCR
= Data
;
984 Data
|= SERIAL_LCR_DLAB
; /* data latch enable in LCR 0x80 */
985 status
= mos7840_set_uart_reg(port
, LINE_CONTROL_REGISTER
, Data
);
988 status
= mos7840_set_uart_reg(port
, DIVISOR_LATCH_LSB
, Data
);
991 status
= mos7840_set_uart_reg(port
, DIVISOR_LATCH_MSB
, Data
);
994 status
= mos7840_get_uart_reg(port
, LINE_CONTROL_REGISTER
, &Data
);
996 Data
= Data
& ~SERIAL_LCR_DLAB
;
997 status
= mos7840_set_uart_reg(port
, LINE_CONTROL_REGISTER
, Data
);
998 mos7840_port
->shadowLCR
= Data
;
1000 /* clearing Bulkin and Bulkout Fifo */
1002 status
= mos7840_get_reg_sync(port
, mos7840_port
->SpRegOffset
, &Data
);
1005 status
= mos7840_set_reg_sync(port
, mos7840_port
->SpRegOffset
, Data
);
1007 Data
= Data
& ~0x0c;
1008 status
= mos7840_set_reg_sync(port
, mos7840_port
->SpRegOffset
, Data
);
1009 /* Finally enable all interrupts */
1011 status
= mos7840_set_uart_reg(port
, INTERRUPT_ENABLE_REGISTER
, Data
);
1013 /* clearing rx_disable */
1015 status
= mos7840_get_reg_sync(port
, mos7840_port
->ControlRegOffset
,
1017 Data
= Data
& ~0x20;
1018 status
= mos7840_set_reg_sync(port
, mos7840_port
->ControlRegOffset
,
1023 status
= mos7840_get_reg_sync(port
, mos7840_port
->ControlRegOffset
,
1026 status
= mos7840_set_reg_sync(port
, mos7840_port
->ControlRegOffset
,
1029 /* Check to see if we've set up our endpoint info yet *
1030 * (can't set it up in mos7840_startup as the structures *
1031 * were not set up at that time.) */
1032 if (port0
->open_ports
== 1) {
1033 /* FIXME: Buffer never NULL, so URB is not submitted. */
1034 if (serial
->port
[0]->interrupt_in_buffer
== NULL
) {
1035 /* set up interrupt urb */
1036 usb_fill_int_urb(serial
->port
[0]->interrupt_in_urb
,
1038 usb_rcvintpipe(serial
->dev
,
1039 serial
->port
[0]->interrupt_in_endpointAddress
),
1040 serial
->port
[0]->interrupt_in_buffer
,
1041 serial
->port
[0]->interrupt_in_urb
->
1042 transfer_buffer_length
,
1043 mos7840_interrupt_callback
,
1045 serial
->port
[0]->interrupt_in_urb
->interval
);
1047 /* start interrupt read for mos7840 */
1049 usb_submit_urb(serial
->port
[0]->interrupt_in_urb
,
1052 dev_err(&port
->dev
, "%s - Error %d submitting "
1053 "interrupt urb\n", __func__
, response
);
1060 /* see if we've set up our endpoint info yet *
1061 * (can't set it up in mos7840_startup as the *
1062 * structures were not set up at that time.) */
1064 dev_dbg(&port
->dev
, "port number is %d\n", port
->port_number
);
1065 dev_dbg(&port
->dev
, "minor number is %d\n", port
->minor
);
1066 dev_dbg(&port
->dev
, "Bulkin endpoint is %d\n", port
->bulk_in_endpointAddress
);
1067 dev_dbg(&port
->dev
, "BulkOut endpoint is %d\n", port
->bulk_out_endpointAddress
);
1068 dev_dbg(&port
->dev
, "Interrupt endpoint is %d\n", port
->interrupt_in_endpointAddress
);
1069 dev_dbg(&port
->dev
, "port's number in the device is %d\n", mos7840_port
->port_num
);
1070 mos7840_port
->read_urb
= port
->read_urb
;
1072 /* set up our bulk in urb */
1073 if ((serial
->num_ports
== 2) && (((__u16
)port
->port_number
% 2) != 0)) {
1074 usb_fill_bulk_urb(mos7840_port
->read_urb
,
1076 usb_rcvbulkpipe(serial
->dev
,
1077 (port
->bulk_in_endpointAddress
) + 2),
1078 port
->bulk_in_buffer
,
1079 mos7840_port
->read_urb
->transfer_buffer_length
,
1080 mos7840_bulk_in_callback
, mos7840_port
);
1082 usb_fill_bulk_urb(mos7840_port
->read_urb
,
1084 usb_rcvbulkpipe(serial
->dev
,
1085 port
->bulk_in_endpointAddress
),
1086 port
->bulk_in_buffer
,
1087 mos7840_port
->read_urb
->transfer_buffer_length
,
1088 mos7840_bulk_in_callback
, mos7840_port
);
1091 dev_dbg(&port
->dev
, "%s: bulkin endpoint is %d\n", __func__
, port
->bulk_in_endpointAddress
);
1092 mos7840_port
->read_urb_busy
= true;
1093 response
= usb_submit_urb(mos7840_port
->read_urb
, GFP_KERNEL
);
1095 dev_err(&port
->dev
, "%s - Error %d submitting control urb\n",
1096 __func__
, response
);
1097 mos7840_port
->read_urb_busy
= false;
1100 /* initialize our port settings */
1101 /* Must set to enable ints! */
1102 mos7840_port
->shadowMCR
= MCR_MASTER_IE
;
1103 /* send a open port command */
1104 mos7840_port
->open
= 1;
1105 /* mos7840_change_port_settings(mos7840_port,old_termios); */
1109 for (j
= 0; j
< NUM_URBS
; ++j
) {
1110 urb
= mos7840_port
->write_urb_pool
[j
];
1113 kfree(urb
->transfer_buffer
);
1119 /*****************************************************************************
1120 * mos7840_chars_in_buffer
1121 * this function is called by the tty driver when it wants to know how many
1122 * bytes of data we currently have outstanding in the port (data that has
1123 * been written, but hasn't made it out the port yet)
1124 * If successful, we return the number of bytes left to be written in the
1126 * Otherwise we return zero.
1127 *****************************************************************************/
1129 static int mos7840_chars_in_buffer(struct tty_struct
*tty
)
1131 struct usb_serial_port
*port
= tty
->driver_data
;
1134 unsigned long flags
;
1135 struct moschip_port
*mos7840_port
;
1137 if (mos7840_port_paranoia_check(port
, __func__
))
1140 mos7840_port
= mos7840_get_port_private(port
);
1141 if (mos7840_port
== NULL
)
1144 spin_lock_irqsave(&mos7840_port
->pool_lock
, flags
);
1145 for (i
= 0; i
< NUM_URBS
; ++i
) {
1146 if (mos7840_port
->busy
[i
]) {
1147 struct urb
*urb
= mos7840_port
->write_urb_pool
[i
];
1148 chars
+= urb
->transfer_buffer_length
;
1151 spin_unlock_irqrestore(&mos7840_port
->pool_lock
, flags
);
1152 dev_dbg(&port
->dev
, "%s - returns %d\n", __func__
, chars
);
1157 /*****************************************************************************
1159 * this function is called by the tty driver when a port is closed
1160 *****************************************************************************/
1162 static void mos7840_close(struct usb_serial_port
*port
)
1164 struct usb_serial
*serial
;
1165 struct moschip_port
*mos7840_port
;
1166 struct moschip_port
*port0
;
1170 if (mos7840_port_paranoia_check(port
, __func__
))
1173 serial
= mos7840_get_usb_serial(port
, __func__
);
1177 mos7840_port
= mos7840_get_port_private(port
);
1178 port0
= mos7840_get_port_private(serial
->port
[0]);
1180 if (mos7840_port
== NULL
|| port0
== NULL
)
1183 for (j
= 0; j
< NUM_URBS
; ++j
)
1184 usb_kill_urb(mos7840_port
->write_urb_pool
[j
]);
1186 /* Freeing Write URBs */
1187 for (j
= 0; j
< NUM_URBS
; ++j
) {
1188 if (mos7840_port
->write_urb_pool
[j
]) {
1189 kfree(mos7840_port
->write_urb_pool
[j
]->transfer_buffer
);
1190 usb_free_urb(mos7840_port
->write_urb_pool
[j
]);
1194 usb_kill_urb(mos7840_port
->read_urb
);
1195 mos7840_port
->read_urb_busy
= false;
1197 port0
->open_ports
--;
1198 dev_dbg(&port
->dev
, "%s in close%d\n", __func__
, port0
->open_ports
);
1199 if (port0
->open_ports
== 0) {
1200 if (serial
->port
[0]->interrupt_in_urb
) {
1201 dev_dbg(&port
->dev
, "Shutdown interrupt_in_urb\n");
1202 usb_kill_urb(serial
->port
[0]->interrupt_in_urb
);
1207 mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
, Data
);
1210 mos7840_set_uart_reg(port
, INTERRUPT_ENABLE_REGISTER
, Data
);
1212 mos7840_port
->open
= 0;
1215 /*****************************************************************************
1217 * this function sends a break to the port
1218 *****************************************************************************/
1219 static void mos7840_break(struct tty_struct
*tty
, int break_state
)
1221 struct usb_serial_port
*port
= tty
->driver_data
;
1223 struct usb_serial
*serial
;
1224 struct moschip_port
*mos7840_port
;
1226 if (mos7840_port_paranoia_check(port
, __func__
))
1229 serial
= mos7840_get_usb_serial(port
, __func__
);
1233 mos7840_port
= mos7840_get_port_private(port
);
1235 if (mos7840_port
== NULL
)
1238 if (break_state
== -1)
1239 data
= mos7840_port
->shadowLCR
| LCR_SET_BREAK
;
1241 data
= mos7840_port
->shadowLCR
& ~LCR_SET_BREAK
;
1243 /* FIXME: no locking on shadowLCR anywhere in driver */
1244 mos7840_port
->shadowLCR
= data
;
1245 dev_dbg(&port
->dev
, "%s mos7840_port->shadowLCR is %x\n", __func__
, mos7840_port
->shadowLCR
);
1246 mos7840_set_uart_reg(port
, LINE_CONTROL_REGISTER
,
1247 mos7840_port
->shadowLCR
);
1250 /*****************************************************************************
1251 * mos7840_write_room
1252 * this function is called by the tty driver when it wants to know how many
1253 * bytes of data we can accept for a specific port.
1254 * If successful, we return the amount of room that we have for this port
1255 * Otherwise we return a negative error number.
1256 *****************************************************************************/
1258 static int mos7840_write_room(struct tty_struct
*tty
)
1260 struct usb_serial_port
*port
= tty
->driver_data
;
1263 unsigned long flags
;
1264 struct moschip_port
*mos7840_port
;
1266 if (mos7840_port_paranoia_check(port
, __func__
))
1269 mos7840_port
= mos7840_get_port_private(port
);
1270 if (mos7840_port
== NULL
)
1273 spin_lock_irqsave(&mos7840_port
->pool_lock
, flags
);
1274 for (i
= 0; i
< NUM_URBS
; ++i
) {
1275 if (!mos7840_port
->busy
[i
])
1276 room
+= URB_TRANSFER_BUFFER_SIZE
;
1278 spin_unlock_irqrestore(&mos7840_port
->pool_lock
, flags
);
1280 room
= (room
== 0) ? 0 : room
- URB_TRANSFER_BUFFER_SIZE
+ 1;
1281 dev_dbg(&mos7840_port
->port
->dev
, "%s - returns %d\n", __func__
, room
);
1286 /*****************************************************************************
1288 * this function is called by the tty driver when data should be written to
1290 * If successful, we return the number of bytes written, otherwise we
1291 * return a negative error number.
1292 *****************************************************************************/
1294 static int mos7840_write(struct tty_struct
*tty
, struct usb_serial_port
*port
,
1295 const unsigned char *data
, int count
)
1301 unsigned long flags
;
1303 struct moschip_port
*mos7840_port
;
1304 struct usb_serial
*serial
;
1307 const unsigned char *current_position
= data
;
1308 unsigned char *data1
;
1310 if (mos7840_port_paranoia_check(port
, __func__
))
1313 serial
= port
->serial
;
1314 if (mos7840_serial_paranoia_check(serial
, __func__
))
1317 mos7840_port
= mos7840_get_port_private(port
);
1318 if (mos7840_port
== NULL
)
1321 /* try to find a free urb in the list */
1324 spin_lock_irqsave(&mos7840_port
->pool_lock
, flags
);
1325 for (i
= 0; i
< NUM_URBS
; ++i
) {
1326 if (!mos7840_port
->busy
[i
]) {
1327 mos7840_port
->busy
[i
] = 1;
1328 urb
= mos7840_port
->write_urb_pool
[i
];
1329 dev_dbg(&port
->dev
, "URB:%d\n", i
);
1333 spin_unlock_irqrestore(&mos7840_port
->pool_lock
, flags
);
1336 dev_dbg(&port
->dev
, "%s - no more free urbs\n", __func__
);
1340 if (urb
->transfer_buffer
== NULL
) {
1341 urb
->transfer_buffer
= kmalloc(URB_TRANSFER_BUFFER_SIZE
,
1343 if (!urb
->transfer_buffer
)
1346 transfer_size
= min(count
, URB_TRANSFER_BUFFER_SIZE
);
1348 memcpy(urb
->transfer_buffer
, current_position
, transfer_size
);
1350 /* fill urb with data and submit */
1351 if ((serial
->num_ports
== 2) && (((__u16
)port
->port_number
% 2) != 0)) {
1352 usb_fill_bulk_urb(urb
,
1354 usb_sndbulkpipe(serial
->dev
,
1355 (port
->bulk_out_endpointAddress
) + 2),
1356 urb
->transfer_buffer
,
1358 mos7840_bulk_out_data_callback
, mos7840_port
);
1360 usb_fill_bulk_urb(urb
,
1362 usb_sndbulkpipe(serial
->dev
,
1363 port
->bulk_out_endpointAddress
),
1364 urb
->transfer_buffer
,
1366 mos7840_bulk_out_data_callback
, mos7840_port
);
1369 data1
= urb
->transfer_buffer
;
1370 dev_dbg(&port
->dev
, "bulkout endpoint is %d\n", port
->bulk_out_endpointAddress
);
1372 if (mos7840_port
->has_led
)
1373 mos7840_led_activity(port
);
1375 /* send it down the pipe */
1376 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
1379 mos7840_port
->busy
[i
] = 0;
1380 dev_err_console(port
, "%s - usb_submit_urb(write bulk) failed "
1381 "with status = %d\n", __func__
, status
);
1382 bytes_sent
= status
;
1385 bytes_sent
= transfer_size
;
1386 port
->icount
.tx
+= transfer_size
;
1387 dev_dbg(&port
->dev
, "icount.tx is %d:\n", port
->icount
.tx
);
1393 /*****************************************************************************
1395 * this function is called by the tty driver when it wants to stop the data
1396 * being read from the port.
1397 *****************************************************************************/
1399 static void mos7840_throttle(struct tty_struct
*tty
)
1401 struct usb_serial_port
*port
= tty
->driver_data
;
1402 struct moschip_port
*mos7840_port
;
1405 if (mos7840_port_paranoia_check(port
, __func__
))
1408 mos7840_port
= mos7840_get_port_private(port
);
1410 if (mos7840_port
== NULL
)
1413 if (!mos7840_port
->open
) {
1414 dev_dbg(&port
->dev
, "%s", "port not opened\n");
1418 /* if we are implementing XON/XOFF, send the stop character */
1420 unsigned char stop_char
= STOP_CHAR(tty
);
1421 status
= mos7840_write(tty
, port
, &stop_char
, 1);
1425 /* if we are implementing RTS/CTS, toggle that line */
1426 if (C_CRTSCTS(tty
)) {
1427 mos7840_port
->shadowMCR
&= ~MCR_RTS
;
1428 status
= mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
,
1429 mos7840_port
->shadowMCR
);
1435 /*****************************************************************************
1436 * mos7840_unthrottle
1437 * this function is called by the tty driver when it wants to resume
1438 * the data being read from the port (called after mos7840_throttle is
1440 *****************************************************************************/
1441 static void mos7840_unthrottle(struct tty_struct
*tty
)
1443 struct usb_serial_port
*port
= tty
->driver_data
;
1445 struct moschip_port
*mos7840_port
= mos7840_get_port_private(port
);
1447 if (mos7840_port_paranoia_check(port
, __func__
))
1450 if (mos7840_port
== NULL
)
1453 if (!mos7840_port
->open
) {
1454 dev_dbg(&port
->dev
, "%s - port not opened\n", __func__
);
1458 /* if we are implementing XON/XOFF, send the start character */
1460 unsigned char start_char
= START_CHAR(tty
);
1461 status
= mos7840_write(tty
, port
, &start_char
, 1);
1466 /* if we are implementing RTS/CTS, toggle that line */
1467 if (C_CRTSCTS(tty
)) {
1468 mos7840_port
->shadowMCR
|= MCR_RTS
;
1469 status
= mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
,
1470 mos7840_port
->shadowMCR
);
1476 static int mos7840_tiocmget(struct tty_struct
*tty
)
1478 struct usb_serial_port
*port
= tty
->driver_data
;
1479 struct moschip_port
*mos7840_port
;
1480 unsigned int result
;
1484 mos7840_port
= mos7840_get_port_private(port
);
1486 if (mos7840_port
== NULL
)
1489 status
= mos7840_get_uart_reg(port
, MODEM_STATUS_REGISTER
, &msr
);
1492 status
= mos7840_get_uart_reg(port
, MODEM_CONTROL_REGISTER
, &mcr
);
1495 result
= ((mcr
& MCR_DTR
) ? TIOCM_DTR
: 0)
1496 | ((mcr
& MCR_RTS
) ? TIOCM_RTS
: 0)
1497 | ((mcr
& MCR_LOOPBACK
) ? TIOCM_LOOP
: 0)
1498 | ((msr
& MOS7840_MSR_CTS
) ? TIOCM_CTS
: 0)
1499 | ((msr
& MOS7840_MSR_CD
) ? TIOCM_CAR
: 0)
1500 | ((msr
& MOS7840_MSR_RI
) ? TIOCM_RI
: 0)
1501 | ((msr
& MOS7840_MSR_DSR
) ? TIOCM_DSR
: 0);
1503 dev_dbg(&port
->dev
, "%s - 0x%04X\n", __func__
, result
);
1508 static int mos7840_tiocmset(struct tty_struct
*tty
,
1509 unsigned int set
, unsigned int clear
)
1511 struct usb_serial_port
*port
= tty
->driver_data
;
1512 struct moschip_port
*mos7840_port
;
1516 mos7840_port
= mos7840_get_port_private(port
);
1518 if (mos7840_port
== NULL
)
1521 /* FIXME: What locks the port registers ? */
1522 mcr
= mos7840_port
->shadowMCR
;
1523 if (clear
& TIOCM_RTS
)
1525 if (clear
& TIOCM_DTR
)
1527 if (clear
& TIOCM_LOOP
)
1528 mcr
&= ~MCR_LOOPBACK
;
1530 if (set
& TIOCM_RTS
)
1532 if (set
& TIOCM_DTR
)
1534 if (set
& TIOCM_LOOP
)
1535 mcr
|= MCR_LOOPBACK
;
1537 mos7840_port
->shadowMCR
= mcr
;
1539 status
= mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
, mcr
);
1541 dev_dbg(&port
->dev
, "setting MODEM_CONTROL_REGISTER Failed\n");
1548 /*****************************************************************************
1549 * mos7840_calc_baud_rate_divisor
1550 * this function calculates the proper baud rate divisor for the specified
1552 *****************************************************************************/
1553 static int mos7840_calc_baud_rate_divisor(struct usb_serial_port
*port
,
1554 int baudRate
, int *divisor
,
1557 dev_dbg(&port
->dev
, "%s - %d\n", __func__
, baudRate
);
1559 if (baudRate
<= 115200) {
1560 *divisor
= 115200 / baudRate
;
1563 if ((baudRate
> 115200) && (baudRate
<= 230400)) {
1564 *divisor
= 230400 / baudRate
;
1565 *clk_sel_val
= 0x10;
1566 } else if ((baudRate
> 230400) && (baudRate
<= 403200)) {
1567 *divisor
= 403200 / baudRate
;
1568 *clk_sel_val
= 0x20;
1569 } else if ((baudRate
> 403200) && (baudRate
<= 460800)) {
1570 *divisor
= 460800 / baudRate
;
1571 *clk_sel_val
= 0x30;
1572 } else if ((baudRate
> 460800) && (baudRate
<= 806400)) {
1573 *divisor
= 806400 / baudRate
;
1574 *clk_sel_val
= 0x40;
1575 } else if ((baudRate
> 806400) && (baudRate
<= 921600)) {
1576 *divisor
= 921600 / baudRate
;
1577 *clk_sel_val
= 0x50;
1578 } else if ((baudRate
> 921600) && (baudRate
<= 1572864)) {
1579 *divisor
= 1572864 / baudRate
;
1580 *clk_sel_val
= 0x60;
1581 } else if ((baudRate
> 1572864) && (baudRate
<= 3145728)) {
1582 *divisor
= 3145728 / baudRate
;
1583 *clk_sel_val
= 0x70;
1588 /*****************************************************************************
1589 * mos7840_send_cmd_write_baud_rate
1590 * this function sends the proper command to change the baud rate of the
1592 *****************************************************************************/
1594 static int mos7840_send_cmd_write_baud_rate(struct moschip_port
*mos7840_port
,
1600 unsigned char number
;
1602 struct usb_serial_port
*port
;
1604 if (mos7840_port
== NULL
)
1607 port
= mos7840_port
->port
;
1608 if (mos7840_port_paranoia_check(port
, __func__
))
1611 if (mos7840_serial_paranoia_check(port
->serial
, __func__
))
1614 number
= mos7840_port
->port
->port_number
;
1616 dev_dbg(&port
->dev
, "%s - baud = %d\n", __func__
, baudRate
);
1617 /* reset clk_uart_sel in spregOffset */
1618 if (baudRate
> 115200) {
1619 #ifdef HW_flow_control
1620 /* NOTE: need to see the pther register to modify */
1621 /* setting h/w flow control bit to 1 */
1623 mos7840_port
->shadowMCR
= Data
;
1624 status
= mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
,
1627 dev_dbg(&port
->dev
, "Writing spreg failed in set_serial_baud\n");
1633 #ifdef HW_flow_control
1634 /* setting h/w flow control bit to 0 */
1636 mos7840_port
->shadowMCR
= Data
;
1637 status
= mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
,
1640 dev_dbg(&port
->dev
, "Writing spreg failed in set_serial_baud\n");
1647 if (1) { /* baudRate <= 115200) */
1650 status
= mos7840_calc_baud_rate_divisor(port
, baudRate
, &divisor
,
1652 status
= mos7840_get_reg_sync(port
, mos7840_port
->SpRegOffset
,
1655 dev_dbg(&port
->dev
, "reading spreg failed in set_serial_baud\n");
1658 Data
= (Data
& 0x8f) | clk_sel_val
;
1659 status
= mos7840_set_reg_sync(port
, mos7840_port
->SpRegOffset
,
1662 dev_dbg(&port
->dev
, "Writing spreg failed in set_serial_baud\n");
1665 /* Calculate the Divisor */
1668 dev_err(&port
->dev
, "%s - bad baud rate\n", __func__
);
1671 /* Enable access to divisor latch */
1672 Data
= mos7840_port
->shadowLCR
| SERIAL_LCR_DLAB
;
1673 mos7840_port
->shadowLCR
= Data
;
1674 mos7840_set_uart_reg(port
, LINE_CONTROL_REGISTER
, Data
);
1676 /* Write the divisor */
1677 Data
= (unsigned char)(divisor
& 0xff);
1678 dev_dbg(&port
->dev
, "set_serial_baud Value to write DLL is %x\n", Data
);
1679 mos7840_set_uart_reg(port
, DIVISOR_LATCH_LSB
, Data
);
1681 Data
= (unsigned char)((divisor
& 0xff00) >> 8);
1682 dev_dbg(&port
->dev
, "set_serial_baud Value to write DLM is %x\n", Data
);
1683 mos7840_set_uart_reg(port
, DIVISOR_LATCH_MSB
, Data
);
1685 /* Disable access to divisor latch */
1686 Data
= mos7840_port
->shadowLCR
& ~SERIAL_LCR_DLAB
;
1687 mos7840_port
->shadowLCR
= Data
;
1688 mos7840_set_uart_reg(port
, LINE_CONTROL_REGISTER
, Data
);
1694 /*****************************************************************************
1695 * mos7840_change_port_settings
1696 * This routine is called to set the UART on the device to match
1697 * the specified new settings.
1698 *****************************************************************************/
1700 static void mos7840_change_port_settings(struct tty_struct
*tty
,
1701 struct moschip_port
*mos7840_port
, struct ktermios
*old_termios
)
1711 struct usb_serial_port
*port
;
1712 struct usb_serial
*serial
;
1714 if (mos7840_port
== NULL
)
1717 port
= mos7840_port
->port
;
1719 if (mos7840_port_paranoia_check(port
, __func__
))
1722 if (mos7840_serial_paranoia_check(port
->serial
, __func__
))
1725 serial
= port
->serial
;
1727 if (!mos7840_port
->open
) {
1728 dev_dbg(&port
->dev
, "%s - port not opened\n", __func__
);
1734 lParity
= LCR_PAR_NONE
;
1736 cflag
= tty
->termios
.c_cflag
;
1737 iflag
= tty
->termios
.c_iflag
;
1739 /* Change the number of bits */
1740 switch (cflag
& CSIZE
) {
1759 /* Change the Parity bit */
1760 if (cflag
& PARENB
) {
1761 if (cflag
& PARODD
) {
1762 lParity
= LCR_PAR_ODD
;
1763 dev_dbg(&port
->dev
, "%s - parity = odd\n", __func__
);
1765 lParity
= LCR_PAR_EVEN
;
1766 dev_dbg(&port
->dev
, "%s - parity = even\n", __func__
);
1770 dev_dbg(&port
->dev
, "%s - parity = none\n", __func__
);
1774 lParity
= lParity
| 0x20;
1776 /* Change the Stop bit */
1777 if (cflag
& CSTOPB
) {
1779 dev_dbg(&port
->dev
, "%s - stop bits = 2\n", __func__
);
1782 dev_dbg(&port
->dev
, "%s - stop bits = 1\n", __func__
);
1785 /* Update the LCR with the correct value */
1786 mos7840_port
->shadowLCR
&=
1787 ~(LCR_BITS_MASK
| LCR_STOP_MASK
| LCR_PAR_MASK
);
1788 mos7840_port
->shadowLCR
|= (lData
| lParity
| lStop
);
1790 dev_dbg(&port
->dev
, "%s - mos7840_port->shadowLCR is %x\n", __func__
,
1791 mos7840_port
->shadowLCR
);
1792 /* Disable Interrupts */
1794 mos7840_set_uart_reg(port
, INTERRUPT_ENABLE_REGISTER
, Data
);
1797 mos7840_set_uart_reg(port
, FIFO_CONTROL_REGISTER
, Data
);
1800 mos7840_set_uart_reg(port
, FIFO_CONTROL_REGISTER
, Data
);
1802 /* Send the updated LCR value to the mos7840 */
1803 Data
= mos7840_port
->shadowLCR
;
1805 mos7840_set_uart_reg(port
, LINE_CONTROL_REGISTER
, Data
);
1808 mos7840_port
->shadowMCR
= Data
;
1809 mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
, Data
);
1811 mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
, Data
);
1813 /* set up the MCR register and send it to the mos7840 */
1815 mos7840_port
->shadowMCR
= MCR_MASTER_IE
;
1817 mos7840_port
->shadowMCR
|= (MCR_DTR
| MCR_RTS
);
1819 if (cflag
& CRTSCTS
)
1820 mos7840_port
->shadowMCR
|= (MCR_XON_ANY
);
1822 mos7840_port
->shadowMCR
&= ~(MCR_XON_ANY
);
1824 Data
= mos7840_port
->shadowMCR
;
1825 mos7840_set_uart_reg(port
, MODEM_CONTROL_REGISTER
, Data
);
1827 /* Determine divisor based on baud rate */
1828 baud
= tty_get_baud_rate(tty
);
1831 /* pick a default, any default... */
1832 dev_dbg(&port
->dev
, "%s", "Picked default baud...\n");
1836 dev_dbg(&port
->dev
, "%s - baud rate = %d\n", __func__
, baud
);
1837 status
= mos7840_send_cmd_write_baud_rate(mos7840_port
, baud
);
1839 /* Enable Interrupts */
1841 mos7840_set_uart_reg(port
, INTERRUPT_ENABLE_REGISTER
, Data
);
1843 if (!mos7840_port
->read_urb_busy
) {
1844 mos7840_port
->read_urb_busy
= true;
1845 status
= usb_submit_urb(mos7840_port
->read_urb
, GFP_KERNEL
);
1847 dev_dbg(&port
->dev
, "usb_submit_urb(read bulk) failed, status = %d\n",
1849 mos7840_port
->read_urb_busy
= false;
1852 dev_dbg(&port
->dev
, "%s - mos7840_port->shadowLCR is End %x\n", __func__
,
1853 mos7840_port
->shadowLCR
);
1856 /*****************************************************************************
1857 * mos7840_set_termios
1858 * this function is called by the tty driver when it wants to change
1859 * the termios structure
1860 *****************************************************************************/
1862 static void mos7840_set_termios(struct tty_struct
*tty
,
1863 struct usb_serial_port
*port
,
1864 struct ktermios
*old_termios
)
1867 struct usb_serial
*serial
;
1868 struct moschip_port
*mos7840_port
;
1870 if (mos7840_port_paranoia_check(port
, __func__
))
1873 serial
= port
->serial
;
1875 if (mos7840_serial_paranoia_check(serial
, __func__
))
1878 mos7840_port
= mos7840_get_port_private(port
);
1880 if (mos7840_port
== NULL
)
1883 if (!mos7840_port
->open
) {
1884 dev_dbg(&port
->dev
, "%s - port not opened\n", __func__
);
1888 /* change the port settings to the new ones specified */
1890 mos7840_change_port_settings(tty
, mos7840_port
, old_termios
);
1892 if (!mos7840_port
->read_urb
) {
1893 dev_dbg(&port
->dev
, "%s", "URB KILLED !!!!!\n");
1897 if (!mos7840_port
->read_urb_busy
) {
1898 mos7840_port
->read_urb_busy
= true;
1899 status
= usb_submit_urb(mos7840_port
->read_urb
, GFP_KERNEL
);
1901 dev_dbg(&port
->dev
, "usb_submit_urb(read bulk) failed, status = %d\n",
1903 mos7840_port
->read_urb_busy
= false;
1908 /*****************************************************************************
1909 * mos7840_get_lsr_info - get line status register info
1911 * Purpose: Let user call ioctl() to get info when the UART physically
1912 * is emptied. On bus types like RS485, the transmitter must
1913 * release the bus after transmitting. This must be done when
1914 * the transmit shift register is empty, not be done when the
1915 * transmit holding register is empty. This functionality
1916 * allows an RS485 driver to be written in user space.
1917 *****************************************************************************/
1919 static int mos7840_get_lsr_info(struct tty_struct
*tty
,
1920 unsigned int __user
*value
)
1923 unsigned int result
= 0;
1925 count
= mos7840_chars_in_buffer(tty
);
1927 result
= TIOCSER_TEMT
;
1929 if (copy_to_user(value
, &result
, sizeof(int)))
1934 /*****************************************************************************
1935 * mos7840_get_serial_info
1936 * function to get information about serial port
1937 *****************************************************************************/
1939 static int mos7840_get_serial_info(struct moschip_port
*mos7840_port
,
1940 struct serial_struct __user
*retinfo
)
1942 struct serial_struct tmp
;
1944 if (mos7840_port
== NULL
)
1947 memset(&tmp
, 0, sizeof(tmp
));
1949 tmp
.type
= PORT_16550A
;
1950 tmp
.line
= mos7840_port
->port
->minor
;
1951 tmp
.port
= mos7840_port
->port
->port_number
;
1953 tmp
.xmit_fifo_size
= NUM_URBS
* URB_TRANSFER_BUFFER_SIZE
;
1954 tmp
.baud_base
= 9600;
1955 tmp
.close_delay
= 5 * HZ
;
1956 tmp
.closing_wait
= 30 * HZ
;
1958 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1963 /*****************************************************************************
1965 * this function handles any ioctl calls to the driver
1966 *****************************************************************************/
1968 static int mos7840_ioctl(struct tty_struct
*tty
,
1969 unsigned int cmd
, unsigned long arg
)
1971 struct usb_serial_port
*port
= tty
->driver_data
;
1972 void __user
*argp
= (void __user
*)arg
;
1973 struct moschip_port
*mos7840_port
;
1975 if (mos7840_port_paranoia_check(port
, __func__
))
1978 mos7840_port
= mos7840_get_port_private(port
);
1980 if (mos7840_port
== NULL
)
1984 /* return number of bytes available */
1987 dev_dbg(&port
->dev
, "%s TIOCSERGETLSR\n", __func__
);
1988 return mos7840_get_lsr_info(tty
, argp
);
1991 dev_dbg(&port
->dev
, "%s TIOCGSERIAL\n", __func__
);
1992 return mos7840_get_serial_info(mos7840_port
, argp
);
1995 dev_dbg(&port
->dev
, "%s TIOCSSERIAL\n", __func__
);
2000 return -ENOIOCTLCMD
;
2003 static int mos7810_check(struct usb_serial
*serial
)
2005 int i
, pass_count
= 0;
2007 __u16 data
= 0, mcr_data
= 0;
2008 __u16 test_pattern
= 0x55AA;
2011 buf
= kmalloc(VENDOR_READ_LENGTH
, GFP_KERNEL
);
2013 return 0; /* failed to identify 7810 */
2015 /* Store MCR setting */
2016 res
= usb_control_msg(serial
->dev
, usb_rcvctrlpipe(serial
->dev
, 0),
2017 MCS_RDREQ
, MCS_RD_RTYPE
, 0x0300, MODEM_CONTROL_REGISTER
,
2018 buf
, VENDOR_READ_LENGTH
, MOS_WDR_TIMEOUT
);
2019 if (res
== VENDOR_READ_LENGTH
)
2022 for (i
= 0; i
< 16; i
++) {
2023 /* Send the 1-bit test pattern out to MCS7810 test pin */
2024 usb_control_msg(serial
->dev
, usb_sndctrlpipe(serial
->dev
, 0),
2025 MCS_WRREQ
, MCS_WR_RTYPE
,
2026 (0x0300 | (((test_pattern
>> i
) & 0x0001) << 1)),
2027 MODEM_CONTROL_REGISTER
, NULL
, 0, MOS_WDR_TIMEOUT
);
2029 /* Read the test pattern back */
2030 res
= usb_control_msg(serial
->dev
,
2031 usb_rcvctrlpipe(serial
->dev
, 0), MCS_RDREQ
,
2032 MCS_RD_RTYPE
, 0, GPIO_REGISTER
, buf
,
2033 VENDOR_READ_LENGTH
, MOS_WDR_TIMEOUT
);
2034 if (res
== VENDOR_READ_LENGTH
)
2037 /* If this is a MCS7810 device, both test patterns must match */
2038 if (((test_pattern
>> i
) ^ (~data
>> 1)) & 0x0001)
2044 /* Restore MCR setting */
2045 usb_control_msg(serial
->dev
, usb_sndctrlpipe(serial
->dev
, 0), MCS_WRREQ
,
2046 MCS_WR_RTYPE
, 0x0300 | mcr_data
, MODEM_CONTROL_REGISTER
, NULL
,
2047 0, MOS_WDR_TIMEOUT
);
2051 if (pass_count
== 16)
2057 static int mos7840_probe(struct usb_serial
*serial
,
2058 const struct usb_device_id
*id
)
2060 u16 product
= le16_to_cpu(serial
->dev
->descriptor
.idProduct
);
2061 u16 vid
= le16_to_cpu(serial
->dev
->descriptor
.idVendor
);
2065 if (product
== MOSCHIP_DEVICE_ID_7810
||
2066 product
== MOSCHIP_DEVICE_ID_7820
) {
2067 device_type
= product
;
2071 if (vid
== USB_VENDOR_ID_MOXA
&& product
== MOXA_DEVICE_ID_2210
) {
2072 device_type
= MOSCHIP_DEVICE_ID_7820
;
2076 buf
= kzalloc(VENDOR_READ_LENGTH
, GFP_KERNEL
);
2080 usb_control_msg(serial
->dev
, usb_rcvctrlpipe(serial
->dev
, 0),
2081 MCS_RDREQ
, MCS_RD_RTYPE
, 0, GPIO_REGISTER
, buf
,
2082 VENDOR_READ_LENGTH
, MOS_WDR_TIMEOUT
);
2084 /* For a MCS7840 device GPIO0 must be set to 1 */
2086 device_type
= MOSCHIP_DEVICE_ID_7840
;
2087 else if (mos7810_check(serial
))
2088 device_type
= MOSCHIP_DEVICE_ID_7810
;
2090 device_type
= MOSCHIP_DEVICE_ID_7820
;
2094 usb_set_serial_data(serial
, (void *)(unsigned long)device_type
);
2099 static int mos7840_calc_num_ports(struct usb_serial
*serial
,
2100 struct usb_serial_endpoints
*epds
)
2102 int device_type
= (unsigned long)usb_get_serial_data(serial
);
2105 num_ports
= (device_type
>> 4) & 0x000F;
2108 * num_ports is currently never zero as device_type is one of
2109 * MOSCHIP_DEVICE_ID_78{1,2,4}0.
2114 if (epds
->num_bulk_in
< num_ports
|| epds
->num_bulk_out
< num_ports
) {
2115 dev_err(&serial
->interface
->dev
, "missing endpoints\n");
2122 static int mos7840_port_probe(struct usb_serial_port
*port
)
2124 struct usb_serial
*serial
= port
->serial
;
2125 int device_type
= (unsigned long)usb_get_serial_data(serial
);
2126 struct moschip_port
*mos7840_port
;
2131 /* we set up the pointers to the endpoints in the mos7840_open *
2132 * function, as the structures aren't created yet. */
2134 pnum
= port
->port_number
;
2136 dev_dbg(&port
->dev
, "mos7840_startup: configuring port %d\n", pnum
);
2137 mos7840_port
= kzalloc(sizeof(struct moschip_port
), GFP_KERNEL
);
2141 /* Initialize all port interrupt end point to port 0 int
2142 * endpoint. Our device has only one interrupt end point
2143 * common to all port */
2145 mos7840_port
->port
= port
;
2146 mos7840_set_port_private(port
, mos7840_port
);
2147 spin_lock_init(&mos7840_port
->pool_lock
);
2149 /* minor is not initialised until later by
2150 * usb-serial.c:get_free_serial() and cannot therefore be used
2151 * to index device instances */
2152 mos7840_port
->port_num
= pnum
+ 1;
2153 dev_dbg(&port
->dev
, "port->minor = %d\n", port
->minor
);
2154 dev_dbg(&port
->dev
, "mos7840_port->port_num = %d\n", mos7840_port
->port_num
);
2156 if (mos7840_port
->port_num
== 1) {
2157 mos7840_port
->SpRegOffset
= 0x0;
2158 mos7840_port
->ControlRegOffset
= 0x1;
2159 mos7840_port
->DcrRegOffset
= 0x4;
2160 } else if ((mos7840_port
->port_num
== 2) && (serial
->num_ports
== 4)) {
2161 mos7840_port
->SpRegOffset
= 0x8;
2162 mos7840_port
->ControlRegOffset
= 0x9;
2163 mos7840_port
->DcrRegOffset
= 0x16;
2164 } else if ((mos7840_port
->port_num
== 2) && (serial
->num_ports
== 2)) {
2165 mos7840_port
->SpRegOffset
= 0xa;
2166 mos7840_port
->ControlRegOffset
= 0xb;
2167 mos7840_port
->DcrRegOffset
= 0x19;
2168 } else if ((mos7840_port
->port_num
== 3) && (serial
->num_ports
== 4)) {
2169 mos7840_port
->SpRegOffset
= 0xa;
2170 mos7840_port
->ControlRegOffset
= 0xb;
2171 mos7840_port
->DcrRegOffset
= 0x19;
2172 } else if ((mos7840_port
->port_num
== 4) && (serial
->num_ports
== 4)) {
2173 mos7840_port
->SpRegOffset
= 0xc;
2174 mos7840_port
->ControlRegOffset
= 0xd;
2175 mos7840_port
->DcrRegOffset
= 0x1c;
2177 mos7840_dump_serial_port(port
, mos7840_port
);
2178 mos7840_set_port_private(port
, mos7840_port
);
2180 /* enable rx_disable bit in control register */
2181 status
= mos7840_get_reg_sync(port
,
2182 mos7840_port
->ControlRegOffset
, &Data
);
2184 dev_dbg(&port
->dev
, "Reading ControlReg failed status-0x%x\n", status
);
2187 dev_dbg(&port
->dev
, "ControlReg Reading success val is %x, status%d\n", Data
, status
);
2188 Data
|= 0x08; /* setting driver done bit */
2189 Data
|= 0x04; /* sp1_bit to have cts change reflect in
2192 /* Data |= 0x20; //rx_disable bit */
2193 status
= mos7840_set_reg_sync(port
,
2194 mos7840_port
->ControlRegOffset
, Data
);
2196 dev_dbg(&port
->dev
, "Writing ControlReg failed(rx_disable) status-0x%x\n", status
);
2199 dev_dbg(&port
->dev
, "ControlReg Writing success(rx_disable) status%d\n", status
);
2201 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2204 status
= mos7840_set_reg_sync(port
,
2205 (__u16
) (mos7840_port
->DcrRegOffset
+ 0), Data
);
2207 dev_dbg(&port
->dev
, "Writing DCR0 failed status-0x%x\n", status
);
2210 dev_dbg(&port
->dev
, "DCR0 Writing success status%d\n", status
);
2213 status
= mos7840_set_reg_sync(port
,
2214 (__u16
) (mos7840_port
->DcrRegOffset
+ 1), Data
);
2216 dev_dbg(&port
->dev
, "Writing DCR1 failed status-0x%x\n", status
);
2219 dev_dbg(&port
->dev
, "DCR1 Writing success status%d\n", status
);
2222 status
= mos7840_set_reg_sync(port
,
2223 (__u16
) (mos7840_port
->DcrRegOffset
+ 2), Data
);
2225 dev_dbg(&port
->dev
, "Writing DCR2 failed status-0x%x\n", status
);
2228 dev_dbg(&port
->dev
, "DCR2 Writing success status%d\n", status
);
2230 /* write values in clkstart0x0 and clkmulti 0x20 */
2232 status
= mos7840_set_reg_sync(port
, CLK_START_VALUE_REGISTER
, Data
);
2234 dev_dbg(&port
->dev
, "Writing CLK_START_VALUE_REGISTER failed status-0x%x\n", status
);
2237 dev_dbg(&port
->dev
, "CLK_START_VALUE_REGISTER Writing success status%d\n", status
);
2240 status
= mos7840_set_reg_sync(port
, CLK_MULTI_REGISTER
, Data
);
2242 dev_dbg(&port
->dev
, "Writing CLK_MULTI_REGISTER failed status-0x%x\n", status
);
2245 dev_dbg(&port
->dev
, "CLK_MULTI_REGISTER Writing success status%d\n", status
);
2247 /* write value 0x0 to scratchpad register */
2249 status
= mos7840_set_uart_reg(port
, SCRATCH_PAD_REGISTER
, Data
);
2251 dev_dbg(&port
->dev
, "Writing SCRATCH_PAD_REGISTER failed status-0x%x\n", status
);
2254 dev_dbg(&port
->dev
, "SCRATCH_PAD_REGISTER Writing success status%d\n", status
);
2256 /* Zero Length flag register */
2257 if ((mos7840_port
->port_num
!= 1) && (serial
->num_ports
== 2)) {
2259 status
= mos7840_set_reg_sync(port
,
2261 ((__u16
)mos7840_port
->port_num
)), Data
);
2262 dev_dbg(&port
->dev
, "ZLIP offset %x\n",
2263 (__u16
)(ZLP_REG1
+ ((__u16
) mos7840_port
->port_num
)));
2265 dev_dbg(&port
->dev
, "Writing ZLP_REG%d failed status-0x%x\n", pnum
+ 2, status
);
2268 dev_dbg(&port
->dev
, "ZLP_REG%d Writing success status%d\n", pnum
+ 2, status
);
2271 status
= mos7840_set_reg_sync(port
,
2273 ((__u16
)mos7840_port
->port_num
) - 0x1), Data
);
2274 dev_dbg(&port
->dev
, "ZLIP offset %x\n",
2275 (__u16
)(ZLP_REG1
+ ((__u16
) mos7840_port
->port_num
) - 0x1));
2277 dev_dbg(&port
->dev
, "Writing ZLP_REG%d failed status-0x%x\n", pnum
+ 1, status
);
2280 dev_dbg(&port
->dev
, "ZLP_REG%d Writing success status%d\n", pnum
+ 1, status
);
2283 mos7840_port
->control_urb
= usb_alloc_urb(0, GFP_KERNEL
);
2284 mos7840_port
->ctrl_buf
= kmalloc(16, GFP_KERNEL
);
2285 mos7840_port
->dr
= kmalloc(sizeof(struct usb_ctrlrequest
),
2287 if (!mos7840_port
->control_urb
|| !mos7840_port
->ctrl_buf
||
2288 !mos7840_port
->dr
) {
2293 mos7840_port
->has_led
= false;
2295 /* Initialize LED timers */
2296 if (device_type
== MOSCHIP_DEVICE_ID_7810
) {
2297 mos7840_port
->has_led
= true;
2299 mos7840_port
->led_urb
= usb_alloc_urb(0, GFP_KERNEL
);
2300 mos7840_port
->led_dr
= kmalloc(sizeof(*mos7840_port
->led_dr
),
2302 if (!mos7840_port
->led_urb
|| !mos7840_port
->led_dr
) {
2307 timer_setup(&mos7840_port
->led_timer1
, mos7840_led_off
, 0);
2308 mos7840_port
->led_timer1
.expires
=
2309 jiffies
+ msecs_to_jiffies(LED_ON_MS
);
2310 timer_setup(&mos7840_port
->led_timer2
, mos7840_led_flag_off
,
2312 mos7840_port
->led_timer2
.expires
=
2313 jiffies
+ msecs_to_jiffies(LED_OFF_MS
);
2316 mos7840_set_led_sync(port
, MODEM_CONTROL_REGISTER
, 0x0300);
2319 if (pnum
== serial
->num_ports
- 1) {
2320 /* Zero Length flag enable */
2322 status
= mos7840_set_reg_sync(serial
->port
[0], ZLP_REG5
, Data
);
2324 dev_dbg(&port
->dev
, "Writing ZLP_REG5 failed status-0x%x\n", status
);
2327 dev_dbg(&port
->dev
, "ZLP_REG5 Writing success status%d\n", status
);
2331 kfree(mos7840_port
->led_dr
);
2332 usb_free_urb(mos7840_port
->led_urb
);
2333 kfree(mos7840_port
->dr
);
2334 kfree(mos7840_port
->ctrl_buf
);
2335 usb_free_urb(mos7840_port
->control_urb
);
2336 kfree(mos7840_port
);
2341 static int mos7840_port_remove(struct usb_serial_port
*port
)
2343 struct moschip_port
*mos7840_port
;
2345 mos7840_port
= mos7840_get_port_private(port
);
2347 if (mos7840_port
->has_led
) {
2349 mos7840_set_led_sync(port
, MODEM_CONTROL_REGISTER
, 0x0300);
2351 del_timer_sync(&mos7840_port
->led_timer1
);
2352 del_timer_sync(&mos7840_port
->led_timer2
);
2354 usb_kill_urb(mos7840_port
->led_urb
);
2355 usb_free_urb(mos7840_port
->led_urb
);
2356 kfree(mos7840_port
->led_dr
);
2358 usb_kill_urb(mos7840_port
->control_urb
);
2359 usb_free_urb(mos7840_port
->control_urb
);
2360 kfree(mos7840_port
->ctrl_buf
);
2361 kfree(mos7840_port
->dr
);
2362 kfree(mos7840_port
);
2367 static struct usb_serial_driver moschip7840_4port_device
= {
2369 .owner
= THIS_MODULE
,
2372 .description
= DRIVER_DESC
,
2373 .id_table
= id_table
,
2374 .num_interrupt_in
= 1,
2375 .open
= mos7840_open
,
2376 .close
= mos7840_close
,
2377 .write
= mos7840_write
,
2378 .write_room
= mos7840_write_room
,
2379 .chars_in_buffer
= mos7840_chars_in_buffer
,
2380 .throttle
= mos7840_throttle
,
2381 .unthrottle
= mos7840_unthrottle
,
2382 .calc_num_ports
= mos7840_calc_num_ports
,
2383 .probe
= mos7840_probe
,
2384 .ioctl
= mos7840_ioctl
,
2385 .set_termios
= mos7840_set_termios
,
2386 .break_ctl
= mos7840_break
,
2387 .tiocmget
= mos7840_tiocmget
,
2388 .tiocmset
= mos7840_tiocmset
,
2389 .tiocmiwait
= usb_serial_generic_tiocmiwait
,
2390 .get_icount
= usb_serial_generic_get_icount
,
2391 .port_probe
= mos7840_port_probe
,
2392 .port_remove
= mos7840_port_remove
,
2393 .read_bulk_callback
= mos7840_bulk_in_callback
,
2394 .read_int_callback
= mos7840_interrupt_callback
,
2397 static struct usb_serial_driver
* const serial_drivers
[] = {
2398 &moschip7840_4port_device
, NULL
2401 module_usb_serial_driver(serial_drivers
, id_table
);
2403 MODULE_DESCRIPTION(DRIVER_DESC
);
2404 MODULE_LICENSE("GPL");