blob: bc3df86134feb4b1e54478d39dfd1518ff8bf2d9 [file] [log] [blame]
Paul B Schroeder3f542972006-08-31 19:41:47 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 *
16 * Clean ups from Moschip version and a few ioctl implementations by:
17 * Paul B Schroeder <pschroeder "at" uplogix "dot" com>
18 *
19 * Originally based on drivers/usb/serial/io_edgeport.c which is:
20 * Copyright (C) 2000 Inside Out Networks, All rights reserved.
21 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
22 *
23 */
24
25#include <linux/kernel.h>
26#include <linux/errno.h>
27#include <linux/init.h>
28#include <linux/slab.h>
29#include <linux/tty.h>
30#include <linux/tty_driver.h>
31#include <linux/tty_flip.h>
32#include <linux/module.h>
33#include <linux/serial.h>
34#include <linux/usb.h>
35#include <linux/usb/serial.h>
Alan Cox880af9d2008-07-22 11:16:12 +010036#include <linux/uaccess.h>
Paul B Schroeder3f542972006-08-31 19:41:47 -050037
38/*
39 * Version Information
40 */
Tony Cook37768ad2009-04-18 22:42:18 +093041#define DRIVER_VERSION "1.3.2"
Paul B Schroeder3f542972006-08-31 19:41:47 -050042#define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver"
43
44/*
45 * 16C50 UART register defines
46 */
47
48#define LCR_BITS_5 0x00 /* 5 bits/char */
49#define LCR_BITS_6 0x01 /* 6 bits/char */
50#define LCR_BITS_7 0x02 /* 7 bits/char */
51#define LCR_BITS_8 0x03 /* 8 bits/char */
52#define LCR_BITS_MASK 0x03 /* Mask for bits/char field */
53
54#define LCR_STOP_1 0x00 /* 1 stop bit */
55#define LCR_STOP_1_5 0x04 /* 1.5 stop bits (if 5 bits/char) */
56#define LCR_STOP_2 0x04 /* 2 stop bits (if 6-8 bits/char) */
57#define LCR_STOP_MASK 0x04 /* Mask for stop bits field */
58
59#define LCR_PAR_NONE 0x00 /* No parity */
60#define LCR_PAR_ODD 0x08 /* Odd parity */
61#define LCR_PAR_EVEN 0x18 /* Even parity */
62#define LCR_PAR_MARK 0x28 /* Force parity bit to 1 */
63#define LCR_PAR_SPACE 0x38 /* Force parity bit to 0 */
64#define LCR_PAR_MASK 0x38 /* Mask for parity field */
65
66#define LCR_SET_BREAK 0x40 /* Set Break condition */
67#define LCR_DL_ENABLE 0x80 /* Enable access to divisor latch */
68
69#define MCR_DTR 0x01 /* Assert DTR */
70#define MCR_RTS 0x02 /* Assert RTS */
71#define MCR_OUT1 0x04 /* Loopback only: Sets state of RI */
72#define MCR_MASTER_IE 0x08 /* Enable interrupt outputs */
73#define MCR_LOOPBACK 0x10 /* Set internal (digital) loopback mode */
74#define MCR_XON_ANY 0x20 /* Enable any char to exit XOFF mode */
75
76#define MOS7840_MSR_CTS 0x10 /* Current state of CTS */
77#define MOS7840_MSR_DSR 0x20 /* Current state of DSR */
78#define MOS7840_MSR_RI 0x40 /* Current state of RI */
79#define MOS7840_MSR_CD 0x80 /* Current state of CD */
80
81/*
82 * Defines used for sending commands to port
83 */
84
Mark Ferrell1e658482012-07-24 13:38:31 -050085#define MOS_WDR_TIMEOUT 5000 /* default urb timeout */
Paul B Schroeder3f542972006-08-31 19:41:47 -050086
87#define MOS_PORT1 0x0200
88#define MOS_PORT2 0x0300
89#define MOS_VENREG 0x0000
90#define MOS_MAX_PORT 0x02
91#define MOS_WRITE 0x0E
92#define MOS_READ 0x0D
93
94/* Requests */
95#define MCS_RD_RTYPE 0xC0
96#define MCS_WR_RTYPE 0x40
97#define MCS_RDREQ 0x0D
98#define MCS_WRREQ 0x0E
99#define MCS_CTRL_TIMEOUT 500
100#define VENDOR_READ_LENGTH (0x01)
101
102#define MAX_NAME_LEN 64
103
Alan Cox880af9d2008-07-22 11:16:12 +0100104#define ZLP_REG1 0x3A /* Zero_Flag_Reg1 58 */
105#define ZLP_REG5 0x3E /* Zero_Flag_Reg5 62 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500106
107/* For higher baud Rates use TIOCEXBAUD */
108#define TIOCEXBAUD 0x5462
109
110/* vendor id and device id defines */
111
David Ludlow11e1abb2008-02-25 17:30:52 -0500112/* The native mos7840/7820 component */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500113#define USB_VENDOR_ID_MOSCHIP 0x9710
114#define MOSCHIP_DEVICE_ID_7840 0x7840
115#define MOSCHIP_DEVICE_ID_7820 0x7820
Donald0eafe4d2012-04-19 15:00:45 +0800116#define MOSCHIP_DEVICE_ID_7810 0x7810
David Ludlow11e1abb2008-02-25 17:30:52 -0500117/* The native component can have its vendor/device id's overridden
118 * in vendor-specific implementations. Such devices can be handled
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700119 * by making a change here, in id_table.
David Ludlow11e1abb2008-02-25 17:30:52 -0500120 */
Dave Ludlow870408c2010-09-01 12:33:30 -0400121#define USB_VENDOR_ID_BANDB 0x0856
122#define BANDB_DEVICE_ID_USO9ML2_2 0xAC22
123#define BANDB_DEVICE_ID_USO9ML2_2P 0xBC00
124#define BANDB_DEVICE_ID_USO9ML2_4 0xAC24
125#define BANDB_DEVICE_ID_USO9ML2_4P 0xBC01
126#define BANDB_DEVICE_ID_US9ML2_2 0xAC29
127#define BANDB_DEVICE_ID_US9ML2_4 0xAC30
128#define BANDB_DEVICE_ID_USPTL4_2 0xAC31
129#define BANDB_DEVICE_ID_USPTL4_4 0xAC32
130#define BANDB_DEVICE_ID_USOPTL4_2 0xAC42
131#define BANDB_DEVICE_ID_USOPTL4_2P 0xBC02
132#define BANDB_DEVICE_ID_USOPTL4_4 0xAC44
133#define BANDB_DEVICE_ID_USOPTL4_4P 0xBC03
134#define BANDB_DEVICE_ID_USOPTL2_4 0xAC24
Paul B Schroeder3f542972006-08-31 19:41:47 -0500135
Russell Lang9d498be2009-07-17 19:29:20 +1000136/* This driver also supports
137 * ATEN UC2324 device using Moschip MCS7840
138 * ATEN UC2322 device using Moschip MCS7820
139 */
Tony Cooke9b8cff2009-04-18 22:42:18 +0930140#define USB_VENDOR_ID_ATENINTL 0x0557
141#define ATENINTL_DEVICE_ID_UC2324 0x2011
Russell Lang9d498be2009-07-17 19:29:20 +1000142#define ATENINTL_DEVICE_ID_UC2322 0x7820
Tony Cooke9b8cff2009-04-18 22:42:18 +0930143
David Ludlow11e1abb2008-02-25 17:30:52 -0500144/* Interrupt Routine Defines */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500145
146#define SERIAL_IIR_RLS 0x06
147#define SERIAL_IIR_MS 0x00
148
149/*
150 * Emulation of the bit mask on the LINE STATUS REGISTER.
151 */
152#define SERIAL_LSR_DR 0x0001
153#define SERIAL_LSR_OE 0x0002
154#define SERIAL_LSR_PE 0x0004
155#define SERIAL_LSR_FE 0x0008
156#define SERIAL_LSR_BI 0x0010
157
158#define MOS_MSR_DELTA_CTS 0x10
159#define MOS_MSR_DELTA_DSR 0x20
160#define MOS_MSR_DELTA_RI 0x40
161#define MOS_MSR_DELTA_CD 0x80
162
Alan Cox880af9d2008-07-22 11:16:12 +0100163/* Serial Port register Address */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500164#define INTERRUPT_ENABLE_REGISTER ((__u16)(0x01))
165#define FIFO_CONTROL_REGISTER ((__u16)(0x02))
166#define LINE_CONTROL_REGISTER ((__u16)(0x03))
167#define MODEM_CONTROL_REGISTER ((__u16)(0x04))
168#define LINE_STATUS_REGISTER ((__u16)(0x05))
169#define MODEM_STATUS_REGISTER ((__u16)(0x06))
170#define SCRATCH_PAD_REGISTER ((__u16)(0x07))
171#define DIVISOR_LATCH_LSB ((__u16)(0x00))
172#define DIVISOR_LATCH_MSB ((__u16)(0x01))
173
174#define CLK_MULTI_REGISTER ((__u16)(0x02))
175#define CLK_START_VALUE_REGISTER ((__u16)(0x03))
Donald Lee093ea2d2012-03-14 15:26:33 +0800176#define GPIO_REGISTER ((__u16)(0x07))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500177
178#define SERIAL_LCR_DLAB ((__u16)(0x0080))
179
180/*
181 * URB POOL related defines
182 */
183#define NUM_URBS 16 /* URB Count */
184#define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
185
Donald0eafe4d2012-04-19 15:00:45 +0800186/* LED on/off milliseconds*/
187#define LED_ON_MS 500
188#define LED_OFF_MS 500
189
190static int device_type;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500191
Tony Zelenoffb9c87662012-06-05 17:58:04 +0400192static const struct usb_device_id id_table[] = {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500193 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7840)},
194 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)},
Donald0eafe4d2012-04-19 15:00:45 +0800195 {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7810)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500196 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400197 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500198 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400199 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USO9ML2_4P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500200 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_2)},
201 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_US9ML2_4)},
202 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_2)},
203 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USPTL4_4)},
David Ludlow11e1abb2008-02-25 17:30:52 -0500204 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400205 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2P)},
Cliff Brakeacf509a2009-12-01 09:53:43 -0500206 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)},
Dave Ludlow870408c2010-09-01 12:33:30 -0400207 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4P)},
Blaise Gassend27f12812009-12-18 15:23:38 -0800208 {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL2_4)},
Tony Cooke9b8cff2009-04-18 22:42:18 +0930209 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)},
Russell Lang9d498be2009-07-17 19:29:20 +1000210 {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2322)},
Paul B Schroeder3f542972006-08-31 19:41:47 -0500211 {} /* terminating entry */
212};
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -0700213MODULE_DEVICE_TABLE(usb, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500214
215/* This structure holds all of the local port information */
216
217struct moschip_port {
218 int port_num; /*Actual port number in the device(1,2,etc) */
219 struct urb *write_urb; /* write URB for this port */
220 struct urb *read_urb; /* read URB for this port */
221 __u8 shadowLCR; /* last LCR value received */
222 __u8 shadowMCR; /* last MCR value received */
223 char open;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100224 char open_ports;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500225 wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */
226 wait_queue_head_t delta_msr_wait; /* for handling sleeping while waiting for msr change to happen */
227 int delta_msr_cond;
228 struct async_icount icount;
229 struct usb_serial_port *port; /* loop back to the owner of this object */
230
Alan Cox880af9d2008-07-22 11:16:12 +0100231 /* Offsets */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500232 __u8 SpRegOffset;
233 __u8 ControlRegOffset;
234 __u8 DcrRegOffset;
Alan Cox880af9d2008-07-22 11:16:12 +0100235 /* for processing control URBS in interrupt context */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500236 struct urb *control_urb;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100237 struct usb_ctrlrequest *dr;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500238 char *ctrl_buf;
239 int MsrLsr;
240
Oliver Neukum0de9a702007-03-16 20:28:28 +0100241 spinlock_t pool_lock;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500242 struct urb *write_urb_pool[NUM_URBS];
Oliver Neukum0de9a702007-03-16 20:28:28 +0100243 char busy[NUM_URBS];
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800244 bool read_urb_busy;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500245
Donald0eafe4d2012-04-19 15:00:45 +0800246 /* For device(s) with LED indicator */
247 bool has_led;
248 bool led_flag;
249 struct timer_list led_timer1; /* Timer for LED on */
250 struct timer_list led_timer2; /* Timer for LED off */
251};
Paul B Schroeder3f542972006-08-31 19:41:47 -0500252
Paul B Schroeder3f542972006-08-31 19:41:47 -0500253/*
254 * mos7840_set_reg_sync
255 * To set the Control register by calling usb_fill_control_urb function
256 * by passing usb_sndctrlpipe function as parameter.
257 */
258
259static int mos7840_set_reg_sync(struct usb_serial_port *port, __u16 reg,
260 __u16 val)
261{
262 struct usb_device *dev = port->serial->dev;
263 val = val & 0x00ff;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700264 dev_dbg(&port->dev, "mos7840_set_reg_sync offset is %x, value %x\n", reg, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500265
266 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
267 MCS_WR_RTYPE, val, reg, NULL, 0,
268 MOS_WDR_TIMEOUT);
269}
270
271/*
272 * mos7840_get_reg_sync
273 * To set the Uart register by calling usb_fill_control_urb function by
274 * passing usb_rcvctrlpipe function as parameter.
275 */
276
277static int mos7840_get_reg_sync(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100278 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500279{
280 struct usb_device *dev = port->serial->dev;
281 int ret = 0;
Johan Hovold9e221a32009-12-28 23:01:55 +0100282 u8 *buf;
283
284 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
285 if (!buf)
286 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500287
288 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100289 MCS_RD_RTYPE, 0, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500290 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100291 *val = buf[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700292 dev_dbg(&port->dev, "%s offset is %x, return val %x\n", __func__, reg, *val);
Johan Hovold9e221a32009-12-28 23:01:55 +0100293
294 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500295 return ret;
296}
297
298/*
299 * mos7840_set_uart_reg
300 * To set the Uart register by calling usb_fill_control_urb function by
301 * passing usb_sndctrlpipe function as parameter.
302 */
303
304static int mos7840_set_uart_reg(struct usb_serial_port *port, __u16 reg,
305 __u16 val)
306{
307
308 struct usb_device *dev = port->serial->dev;
309 val = val & 0x00ff;
Alan Cox880af9d2008-07-22 11:16:12 +0100310 /* For the UART control registers, the application number need
311 to be Or'ed */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100312 if (port->serial->num_ports == 4) {
Alan Cox880af9d2008-07-22 11:16:12 +0100313 val |= (((__u16) port->number -
314 (__u16) (port->serial->minor)) + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500315 } else {
316 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100317 val |= (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500318 (__u16) (port->serial->minor)) + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500319 } else {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700320 val |= (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500321 (__u16) (port->serial->minor)) + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500322 }
323 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700324 dev_dbg(&port->dev, "%s application number is %x\n", __func__, val);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500325 return usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ,
326 MCS_WR_RTYPE, val, reg, NULL, 0,
327 MOS_WDR_TIMEOUT);
328
329}
330
331/*
332 * mos7840_get_uart_reg
333 * To set the Control register by calling usb_fill_control_urb function
334 * by passing usb_rcvctrlpipe function as parameter.
335 */
336static int mos7840_get_uart_reg(struct usb_serial_port *port, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100337 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500338{
339 struct usb_device *dev = port->serial->dev;
340 int ret = 0;
341 __u16 Wval;
Johan Hovold9e221a32009-12-28 23:01:55 +0100342 u8 *buf;
343
344 buf = kmalloc(VENDOR_READ_LENGTH, GFP_KERNEL);
345 if (!buf)
346 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500347
Alan Cox880af9d2008-07-22 11:16:12 +0100348 /* Wval is same as application number */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100349 if (port->serial->num_ports == 4) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500350 Wval =
351 (((__u16) port->number - (__u16) (port->serial->minor)) +
352 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500353 } else {
354 if (((__u16) port->number - (__u16) (port->serial->minor)) == 0) {
Alan Cox880af9d2008-07-22 11:16:12 +0100355 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500356 (__u16) (port->serial->minor)) + 1) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500357 } else {
Alan Cox880af9d2008-07-22 11:16:12 +0100358 Wval = (((__u16) port->number -
Paul B Schroeder3f542972006-08-31 19:41:47 -0500359 (__u16) (port->serial->minor)) + 2) << 8;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500360 }
361 }
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700362 dev_dbg(&port->dev, "%s application number is %x\n", __func__, Wval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500363 ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), MCS_RDREQ,
Johan Hovold9e221a32009-12-28 23:01:55 +0100364 MCS_RD_RTYPE, Wval, reg, buf, VENDOR_READ_LENGTH,
Paul B Schroeder3f542972006-08-31 19:41:47 -0500365 MOS_WDR_TIMEOUT);
Johan Hovold9e221a32009-12-28 23:01:55 +0100366 *val = buf[0];
367
368 kfree(buf);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500369 return ret;
370}
371
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700372static void mos7840_dump_serial_port(struct usb_serial_port *port,
373 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500374{
375
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700376 dev_dbg(&port->dev, "SpRegOffset is %2x\n", mos7840_port->SpRegOffset);
377 dev_dbg(&port->dev, "ControlRegOffset is %2x\n", mos7840_port->ControlRegOffset);
378 dev_dbg(&port->dev, "DCRRegOffset is %2x\n", mos7840_port->DcrRegOffset);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500379
380}
381
382/************************************************************************/
383/************************************************************************/
384/* I N T E R F A C E F U N C T I O N S */
385/* I N T E R F A C E F U N C T I O N S */
386/************************************************************************/
387/************************************************************************/
388
389static inline void mos7840_set_port_private(struct usb_serial_port *port,
390 struct moschip_port *data)
391{
392 usb_set_serial_port_data(port, (void *)data);
393}
394
395static inline struct moschip_port *mos7840_get_port_private(struct
396 usb_serial_port
397 *port)
398{
399 return (struct moschip_port *)usb_get_serial_port_data(port);
400}
401
Oliver Neukum0de9a702007-03-16 20:28:28 +0100402static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500403{
404 struct moschip_port *mos7840_port;
405 struct async_icount *icount;
406 mos7840_port = port;
407 icount = &mos7840_port->icount;
408 if (new_msr &
409 (MOS_MSR_DELTA_CTS | MOS_MSR_DELTA_DSR | MOS_MSR_DELTA_RI |
410 MOS_MSR_DELTA_CD)) {
411 icount = &mos7840_port->icount;
412
413 /* update input line counters */
414 if (new_msr & MOS_MSR_DELTA_CTS) {
415 icount->cts++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100416 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500417 }
418 if (new_msr & MOS_MSR_DELTA_DSR) {
419 icount->dsr++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100420 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500421 }
422 if (new_msr & MOS_MSR_DELTA_CD) {
423 icount->dcd++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100424 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500425 }
426 if (new_msr & MOS_MSR_DELTA_RI) {
427 icount->rng++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100428 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500429 }
430 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500431}
432
Oliver Neukum0de9a702007-03-16 20:28:28 +0100433static void mos7840_handle_new_lsr(struct moschip_port *port, __u8 new_lsr)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500434{
435 struct async_icount *icount;
436
Paul B Schroeder3f542972006-08-31 19:41:47 -0500437 if (new_lsr & SERIAL_LSR_BI) {
Alan Cox880af9d2008-07-22 11:16:12 +0100438 /*
439 * Parity and Framing errors only count if they
440 * occur exclusive of a break being
441 * received.
442 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500443 new_lsr &= (__u8) (SERIAL_LSR_OE | SERIAL_LSR_BI);
444 }
445
446 /* update input line counters */
447 icount = &port->icount;
448 if (new_lsr & SERIAL_LSR_BI) {
449 icount->brk++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100450 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500451 }
452 if (new_lsr & SERIAL_LSR_OE) {
453 icount->overrun++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100454 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500455 }
456 if (new_lsr & SERIAL_LSR_PE) {
457 icount->parity++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100458 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500459 }
460 if (new_lsr & SERIAL_LSR_FE) {
461 icount->frame++;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100462 smp_wmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -0500463 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500464}
465
466/************************************************************************/
467/************************************************************************/
468/* U S B C A L L B A C K F U N C T I O N S */
469/* U S B C A L L B A C K F U N C T I O N S */
470/************************************************************************/
471/************************************************************************/
472
David Howells7d12e782006-10-05 14:55:46 +0100473static void mos7840_control_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500474{
475 unsigned char *data;
476 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700477 struct device *dev = &urb->dev->dev;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500478 __u8 regval = 0x0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700479 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500480
Ming Leicdc97792008-02-24 18:41:47 +0800481 mos7840_port = urb->context;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100482
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700483 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500484 case 0:
485 /* success */
486 break;
487 case -ECONNRESET:
488 case -ENOENT:
489 case -ESHUTDOWN:
490 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700491 dev_dbg(dev, "%s - urb shutting down with status: %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500492 return;
493 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700494 dev_dbg(dev, "%s - nonzero urb status received: %d\n", __func__, status);
Johan Hovold28c3ae92012-10-25 18:56:32 +0200495 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500496 }
497
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700498 dev_dbg(dev, "%s urb buffer size is %d\n", __func__, urb->actual_length);
499 dev_dbg(dev, "%s mos7840_port->MsrLsr is %d port %d\n", __func__,
500 mos7840_port->MsrLsr, mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500501 data = urb->transfer_buffer;
502 regval = (__u8) data[0];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700503 dev_dbg(dev, "%s data is %x\n", __func__, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500504 if (mos7840_port->MsrLsr == 0)
505 mos7840_handle_new_msr(mos7840_port, regval);
506 else if (mos7840_port->MsrLsr == 1)
507 mos7840_handle_new_lsr(mos7840_port, regval);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500508}
509
510static int mos7840_get_reg(struct moschip_port *mcs, __u16 Wval, __u16 reg,
Alan Cox880af9d2008-07-22 11:16:12 +0100511 __u16 *val)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500512{
513 struct usb_device *dev = mcs->port->serial->dev;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100514 struct usb_ctrlrequest *dr = mcs->dr;
515 unsigned char *buffer = mcs->ctrl_buf;
516 int ret;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500517
Paul B Schroeder3f542972006-08-31 19:41:47 -0500518 dr->bRequestType = MCS_RD_RTYPE;
519 dr->bRequest = MCS_RDREQ;
Alan Cox880af9d2008-07-22 11:16:12 +0100520 dr->wValue = cpu_to_le16(Wval); /* 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500521 dr->wIndex = cpu_to_le16(reg);
522 dr->wLength = cpu_to_le16(2);
523
524 usb_fill_control_urb(mcs->control_urb, dev, usb_rcvctrlpipe(dev, 0),
525 (unsigned char *)dr, buffer, 2,
526 mos7840_control_callback, mcs);
527 mcs->control_urb->transfer_buffer_length = 2;
528 ret = usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
529 return ret;
530}
531
Donald0eafe4d2012-04-19 15:00:45 +0800532static void mos7840_set_led_callback(struct urb *urb)
533{
534 switch (urb->status) {
535 case 0:
536 /* Success */
537 break;
538 case -ECONNRESET:
539 case -ENOENT:
540 case -ESHUTDOWN:
541 /* This urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700542 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d",
543 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800544 break;
545 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700546 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d",
547 __func__, urb->status);
Donald0eafe4d2012-04-19 15:00:45 +0800548 }
549}
550
551static void mos7840_set_led_async(struct moschip_port *mcs, __u16 wval,
552 __u16 reg)
553{
554 struct usb_device *dev = mcs->port->serial->dev;
555 struct usb_ctrlrequest *dr = mcs->dr;
556
557 dr->bRequestType = MCS_WR_RTYPE;
558 dr->bRequest = MCS_WRREQ;
559 dr->wValue = cpu_to_le16(wval);
560 dr->wIndex = cpu_to_le16(reg);
561 dr->wLength = cpu_to_le16(0);
562
563 usb_fill_control_urb(mcs->control_urb, dev, usb_sndctrlpipe(dev, 0),
564 (unsigned char *)dr, NULL, 0, mos7840_set_led_callback, NULL);
565
566 usb_submit_urb(mcs->control_urb, GFP_ATOMIC);
567}
568
569static void mos7840_set_led_sync(struct usb_serial_port *port, __u16 reg,
570 __u16 val)
571{
572 struct usb_device *dev = port->serial->dev;
573
574 usb_control_msg(dev, usb_sndctrlpipe(dev, 0), MCS_WRREQ, MCS_WR_RTYPE,
575 val, reg, NULL, 0, MOS_WDR_TIMEOUT);
576}
577
578static void mos7840_led_off(unsigned long arg)
579{
580 struct moschip_port *mcs = (struct moschip_port *) arg;
581
582 /* Turn off LED */
583 mos7840_set_led_async(mcs, 0x0300, MODEM_CONTROL_REGISTER);
584 mod_timer(&mcs->led_timer2,
585 jiffies + msecs_to_jiffies(LED_OFF_MS));
586}
587
588static void mos7840_led_flag_off(unsigned long arg)
589{
590 struct moschip_port *mcs = (struct moschip_port *) arg;
591
592 mcs->led_flag = false;
593}
594
Paul B Schroeder3f542972006-08-31 19:41:47 -0500595/*****************************************************************************
596 * mos7840_interrupt_callback
597 * this is the callback function for when we have received data on the
598 * interrupt endpoint.
599 *****************************************************************************/
600
David Howells7d12e782006-10-05 14:55:46 +0100601static void mos7840_interrupt_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500602{
603 int result;
604 int length;
605 struct moschip_port *mos7840_port;
606 struct usb_serial *serial;
607 __u16 Data;
608 unsigned char *data;
609 __u8 sp[5], st;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100610 int i, rv = 0;
611 __u16 wval, wreg = 0;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700612 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500613
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700614 switch (status) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500615 case 0:
616 /* success */
617 break;
618 case -ECONNRESET:
619 case -ENOENT:
620 case -ESHUTDOWN:
621 /* this urb is terminated, clean up */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700622 dev_dbg(&urb->dev->dev, "%s - urb shutting down with status: %d\n",
623 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500624 return;
625 default:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700626 dev_dbg(&urb->dev->dev, "%s - nonzero urb status received: %d\n",
627 __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500628 goto exit;
629 }
630
631 length = urb->actual_length;
632 data = urb->transfer_buffer;
633
Ming Leicdc97792008-02-24 18:41:47 +0800634 serial = urb->context;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500635
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 */
642
643 if (length && length > 5) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700644 dev_dbg(&urb->dev->dev, "%s", "Wrong data !!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500645 return;
646 }
647
648 sp[0] = (__u8) data[0];
649 sp[1] = (__u8) data[1];
650 sp[2] = (__u8) data[2];
651 sp[3] = (__u8) data[3];
652 st = (__u8) data[4];
653
654 for (i = 0; i < serial->num_ports; i++) {
655 mos7840_port = mos7840_get_port_private(serial->port[i]);
656 wval =
657 (((__u16) serial->port[i]->number -
658 (__u16) (serial->minor)) + 1) << 8;
659 if (mos7840_port->open) {
660 if (sp[i] & 0x01) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700661 dev_dbg(&urb->dev->dev, "SP%d No Interrupt !!!\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500662 } else {
663 switch (sp[i] & 0x0f) {
664 case SERIAL_IIR_RLS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700665 dev_dbg(&urb->dev->dev, "Serial Port %d: Receiver status error or \n", i);
666 dev_dbg(&urb->dev->dev, "address bit detected in 9-bit mode\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500667 mos7840_port->MsrLsr = 1;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100668 wreg = LINE_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500669 break;
670 case SERIAL_IIR_MS:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700671 dev_dbg(&urb->dev->dev, "Serial Port %d: Modem status change\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500672 mos7840_port->MsrLsr = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100673 wreg = MODEM_STATUS_REGISTER;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500674 break;
675 }
Johan Hovolde681b662012-10-25 18:56:33 +0200676 rv = mos7840_get_reg(mos7840_port, wval, wreg, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500677 }
678 }
679 }
Alan Cox880af9d2008-07-22 11:16:12 +0100680 if (!(rv < 0))
681 /* the completion handler for the control urb will resubmit */
Oliver Neukum0de9a702007-03-16 20:28:28 +0100682 return;
683exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -0500684 result = usb_submit_urb(urb, GFP_ATOMIC);
685 if (result) {
686 dev_err(&urb->dev->dev,
687 "%s - Error %d submitting interrupt urb\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800688 __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500689 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500690}
691
692static int mos7840_port_paranoia_check(struct usb_serial_port *port,
693 const char *function)
694{
695 if (!port) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700696 pr_debug("%s - port == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500697 return -1;
698 }
699 if (!port->serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700700 pr_debug("%s - port->serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500701 return -1;
702 }
703
704 return 0;
705}
706
707/* Inline functions to check the sanity of a pointer that is passed to us */
708static int mos7840_serial_paranoia_check(struct usb_serial *serial,
709 const char *function)
710{
711 if (!serial) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700712 pr_debug("%s - serial == NULL\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500713 return -1;
714 }
715 if (!serial->type) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700716 pr_debug("%s - serial->type == NULL!\n", function);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500717 return -1;
718 }
719
720 return 0;
721}
722
723static struct usb_serial *mos7840_get_usb_serial(struct usb_serial_port *port,
724 const char *function)
725{
726 /* if no port was specified, or it fails a paranoia check */
727 if (!port ||
728 mos7840_port_paranoia_check(port, function) ||
729 mos7840_serial_paranoia_check(port->serial, function)) {
Alan Cox880af9d2008-07-22 11:16:12 +0100730 /* then say that we don't have a valid usb_serial thing,
731 * which will end up genrating -ENODEV return values */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500732 return NULL;
733 }
734
735 return port->serial;
736}
737
738/*****************************************************************************
739 * mos7840_bulk_in_callback
740 * this is the callback function for when we have received data on the
741 * bulk in endpoint.
742 *****************************************************************************/
743
David Howells7d12e782006-10-05 14:55:46 +0100744static void mos7840_bulk_in_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500745{
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700746 int retval;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500747 unsigned char *data;
748 struct usb_serial *serial;
749 struct usb_serial_port *port;
750 struct moschip_port *mos7840_port;
751 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700752 int status = urb->status;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500753
Ming Leicdc97792008-02-24 18:41:47 +0800754 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700755 if (!mos7840_port)
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800756 return;
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800757
758 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700759 dev_dbg(&urb->dev->dev, "nonzero read bulk status received: %d\n", status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800760 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500761 return;
762 }
763
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700764 port = mos7840_port->port;
Harvey Harrison441b62c2008-03-03 16:08:34 -0800765 if (mos7840_port_paranoia_check(port, __func__)) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800766 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500767 return;
768 }
769
Harvey Harrison441b62c2008-03-03 16:08:34 -0800770 serial = mos7840_get_usb_serial(port, __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500771 if (!serial) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800772 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500773 return;
774 }
775
Paul B Schroeder3f542972006-08-31 19:41:47 -0500776 data = urb->transfer_buffer;
Greg Kroah-Hartman59d33f22012-09-18 09:58:57 +0100777 usb_serial_debug_data(&port->dev, __func__, urb->actual_length, data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500778
Paul B Schroeder3f542972006-08-31 19:41:47 -0500779 if (urb->actual_length) {
Alan Cox4a90f092008-10-13 10:39:46 +0100780 tty = tty_port_tty_get(&mos7840_port->port->port);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500781 if (tty) {
Paul B Schroeder3f542972006-08-31 19:41:47 -0500782 tty_insert_flip_string(tty, data, urb->actual_length);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500783 tty_flip_buffer_push(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100784 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500785 }
786 mos7840_port->icount.rx += urb->actual_length;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100787 smp_wmb();
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700788 dev_dbg(&port->dev, "mos7840_port->icount.rx is %d:\n", mos7840_port->icount.rx);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500789 }
790
791 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700792 dev_dbg(&port->dev, "%s", "URB KILLED !!!\n");
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800793 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500794 return;
795 }
796
Donald0eafe4d2012-04-19 15:00:45 +0800797 /* Turn on LED */
798 if (mos7840_port->has_led && !mos7840_port->led_flag) {
799 mos7840_port->led_flag = true;
800 mos7840_set_led_async(mos7840_port, 0x0301,
801 MODEM_CONTROL_REGISTER);
802 mod_timer(&mos7840_port->led_timer1,
803 jiffies + msecs_to_jiffies(LED_ON_MS));
804 }
Paul B Schroeder3f542972006-08-31 19:41:47 -0500805
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800806 mos7840_port->read_urb_busy = true;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700807 retval = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100808
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700809 if (retval) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700810 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, retval = %d\n", retval);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -0800811 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500812 }
813}
814
815/*****************************************************************************
816 * mos7840_bulk_out_data_callback
Alan Cox880af9d2008-07-22 11:16:12 +0100817 * this is the callback function for when we have finished sending
818 * serial data on the bulk out endpoint.
Paul B Schroeder3f542972006-08-31 19:41:47 -0500819 *****************************************************************************/
820
David Howells7d12e782006-10-05 14:55:46 +0100821static void mos7840_bulk_out_data_callback(struct urb *urb)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500822{
823 struct moschip_port *mos7840_port;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700824 struct usb_serial_port *port;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500825 struct tty_struct *tty;
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700826 int status = urb->status;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100827 int i;
828
Ming Leicdc97792008-02-24 18:41:47 +0800829 mos7840_port = urb->context;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700830 port = mos7840_port->port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100831 spin_lock(&mos7840_port->pool_lock);
832 for (i = 0; i < NUM_URBS; i++) {
833 if (urb == mos7840_port->write_urb_pool[i]) {
834 mos7840_port->busy[i] = 0;
835 break;
836 }
837 }
838 spin_unlock(&mos7840_port->pool_lock);
839
Greg Kroah-Hartman0643c722007-06-15 15:44:13 -0700840 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700841 dev_dbg(&port->dev, "nonzero write bulk status received:%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500842 return;
843 }
844
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700845 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500846 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500847
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700848 tty = tty_port_tty_get(&port->port);
Jiri Slabyb963a842007-02-10 01:44:55 -0800849 if (tty && mos7840_port->open)
850 tty_wakeup(tty);
Alan Cox4a90f092008-10-13 10:39:46 +0100851 tty_kref_put(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500852
853}
854
855/************************************************************************/
856/* 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 */
857/************************************************************************/
858#ifdef MCSSerialProbe
859static int mos7840_serial_probe(struct usb_serial *serial,
860 const struct usb_device_id *id)
861{
862
863 /*need to implement the mode_reg reading and updating\
864 structures usb_serial_ device_type\
865 (i.e num_ports, num_bulkin,bulkout etc) */
866 /* Also we can update the changes attach */
867 return 1;
868}
869#endif
870
871/*****************************************************************************
872 * mos7840_open
873 * this function is called by the tty driver when a port is opened
874 * If successful, we return 0
875 * Otherwise we return a negative error number.
876 *****************************************************************************/
877
Alan Coxa509a7e2009-09-19 13:13:26 -0700878static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500879{
880 int response;
881 int j;
882 struct usb_serial *serial;
883 struct urb *urb;
884 __u16 Data;
885 int status;
886 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +0100887 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500888
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700889 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500890 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500891
Paul B Schroeder3f542972006-08-31 19:41:47 -0500892 serial = port->serial;
893
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700894 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -0500895 return -ENODEV;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500896
897 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100898 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500899
Oliver Neukum0de9a702007-03-16 20:28:28 +0100900 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -0500901 return -ENODEV;
902
903 usb_clear_halt(serial->dev, port->write_urb->pipe);
904 usb_clear_halt(serial->dev, port->read_urb->pipe);
Oliver Neukum0de9a702007-03-16 20:28:28 +0100905 port0->open_ports++;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500906
907 /* Initialising the write urb pool */
908 for (j = 0; j < NUM_URBS; ++j) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100909 urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500910 mos7840_port->write_urb_pool[j] = urb;
911
912 if (urb == NULL) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700913 dev_err(&port->dev, "No more urbs???\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500914 continue;
915 }
916
Alan Cox880af9d2008-07-22 11:16:12 +0100917 urb->transfer_buffer = kmalloc(URB_TRANSFER_BUFFER_SIZE,
918 GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500919 if (!urb->transfer_buffer) {
Oliver Neukum0de9a702007-03-16 20:28:28 +0100920 usb_free_urb(urb);
921 mos7840_port->write_urb_pool[j] = NULL;
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -0700922 dev_err(&port->dev,
923 "%s-out of memory for urb buffers.\n",
924 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500925 continue;
926 }
927 }
928
929/*****************************************************************************
930 * Initialize MCS7840 -- Write Init values to corresponding Registers
931 *
932 * Register Index
933 * 1 : IER
934 * 2 : FCR
935 * 3 : LCR
936 * 4 : MCR
937 *
938 * 0x08 : SP1/2 Control Reg
939 *****************************************************************************/
940
Alan Cox880af9d2008-07-22 11:16:12 +0100941 /* NEED to check the following Block */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500942
Paul B Schroeder3f542972006-08-31 19:41:47 -0500943 Data = 0x0;
944 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
945 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700946 dev_dbg(&port->dev, "Reading Spreg failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500947 return -1;
948 }
949 Data |= 0x80;
950 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
951 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700952 dev_dbg(&port->dev, "writing Spreg failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500953 return -1;
954 }
955
956 Data &= ~0x80;
957 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
958 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700959 dev_dbg(&port->dev, "writing Spreg failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500960 return -1;
961 }
Alan Cox880af9d2008-07-22 11:16:12 +0100962 /* End of block to be checked */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500963
Paul B Schroeder3f542972006-08-31 19:41:47 -0500964 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +0100965 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
966 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500967 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700968 dev_dbg(&port->dev, "Reading Controlreg failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500969 return -1;
970 }
Alan Cox880af9d2008-07-22 11:16:12 +0100971 Data |= 0x08; /* Driver done bit */
972 Data |= 0x20; /* rx_disable */
973 status = mos7840_set_reg_sync(port,
974 mos7840_port->ControlRegOffset, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -0500975 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700976 dev_dbg(&port->dev, "writing Controlreg failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500977 return -1;
978 }
Alan Cox880af9d2008-07-22 11:16:12 +0100979 /* do register settings here */
980 /* Set all regs to the device default values. */
981 /***********************************
982 * First Disable all interrupts.
983 ***********************************/
Paul B Schroeder3f542972006-08-31 19:41:47 -0500984 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500985 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
986 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700987 dev_dbg(&port->dev, "disabling interrupts failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500988 return -1;
989 }
Alan Cox880af9d2008-07-22 11:16:12 +0100990 /* Set FIFO_CONTROL_REGISTER to the default value */
Paul B Schroeder3f542972006-08-31 19:41:47 -0500991 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500992 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
993 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -0700994 dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -0500995 return -1;
996 }
997
998 Data = 0xcf;
Paul B Schroeder3f542972006-08-31 19:41:47 -0500999 status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1000 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001001 dev_dbg(&port->dev, "Writing FIFO_CONTROL_REGISTER failed\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001002 return -1;
1003 }
1004
1005 Data = 0x03;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001006 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1007 mos7840_port->shadowLCR = Data;
1008
1009 Data = 0x0b;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001010 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1011 mos7840_port->shadowMCR = Data;
1012
1013 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001014 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1015 mos7840_port->shadowLCR = Data;
1016
Alan Cox880af9d2008-07-22 11:16:12 +01001017 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001018 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1019
1020 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001021 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1022
1023 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001024 status = mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1025
1026 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001027 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1028
1029 Data = Data & ~SERIAL_LCR_DLAB;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001030 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1031 mos7840_port->shadowLCR = Data;
1032
Alan Cox880af9d2008-07-22 11:16:12 +01001033 /* clearing Bulkin and Bulkout Fifo */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001034 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001035 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data);
1036
1037 Data = Data | 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001038 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
1039
1040 Data = Data & ~0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001041 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data);
Alan Cox880af9d2008-07-22 11:16:12 +01001042 /* Finally enable all interrupts */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001043 Data = 0x0c;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001044 status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1045
Alan Cox880af9d2008-07-22 11:16:12 +01001046 /* clearing rx_disable */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001047 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001048 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1049 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001050 Data = Data & ~0x20;
Alan Cox880af9d2008-07-22 11:16:12 +01001051 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1052 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001053
Alan Cox880af9d2008-07-22 11:16:12 +01001054 /* rx_negate */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001055 Data = 0x0;
Alan Cox880af9d2008-07-22 11:16:12 +01001056 status = mos7840_get_reg_sync(port, mos7840_port->ControlRegOffset,
1057 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001058 Data = Data | 0x10;
Alan Cox880af9d2008-07-22 11:16:12 +01001059 status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset,
1060 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001061
Alan Cox880af9d2008-07-22 11:16:12 +01001062 /* Check to see if we've set up our endpoint info yet *
1063 * (can't set it up in mos7840_startup as the structures *
1064 * were not set up at that time.) */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001065 if (port0->open_ports == 1) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001066 if (serial->port[0]->interrupt_in_buffer == NULL) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001067 /* set up interrupt urb */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001068 usb_fill_int_urb(serial->port[0]->interrupt_in_urb,
Alan Cox880af9d2008-07-22 11:16:12 +01001069 serial->dev,
1070 usb_rcvintpipe(serial->dev,
1071 serial->port[0]->interrupt_in_endpointAddress),
1072 serial->port[0]->interrupt_in_buffer,
1073 serial->port[0]->interrupt_in_urb->
1074 transfer_buffer_length,
1075 mos7840_interrupt_callback,
1076 serial,
1077 serial->port[0]->interrupt_in_urb->interval);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001078
1079 /* start interrupt read for mos7840 *
1080 * will continue as long as mos7840 is connected */
1081
1082 response =
1083 usb_submit_urb(serial->port[0]->interrupt_in_urb,
1084 GFP_KERNEL);
1085 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001086 dev_err(&port->dev, "%s - Error %d submitting "
1087 "interrupt urb\n", __func__, response);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001088 }
1089
1090 }
1091
1092 }
1093
1094 /* see if we've set up our endpoint info yet *
1095 * (can't set it up in mos7840_startup as the *
1096 * structures were not set up at that time.) */
1097
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001098 dev_dbg(&port->dev, "port number is %d\n", port->number);
1099 dev_dbg(&port->dev, "serial number is %d\n", port->serial->minor);
1100 dev_dbg(&port->dev, "Bulkin endpoint is %d\n", port->bulk_in_endpointAddress);
1101 dev_dbg(&port->dev, "BulkOut endpoint is %d\n", port->bulk_out_endpointAddress);
1102 dev_dbg(&port->dev, "Interrupt endpoint is %d\n", port->interrupt_in_endpointAddress);
1103 dev_dbg(&port->dev, "port's number in the device is %d\n", mos7840_port->port_num);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001104 mos7840_port->read_urb = port->read_urb;
1105
1106 /* set up our bulk in urb */
Donald Lee093ea2d2012-03-14 15:26:33 +08001107 if ((serial->num_ports == 2)
1108 && ((((__u16)port->number -
1109 (__u16)(port->serial->minor)) % 2) != 0)) {
1110 usb_fill_bulk_urb(mos7840_port->read_urb,
1111 serial->dev,
1112 usb_rcvbulkpipe(serial->dev,
1113 (port->bulk_in_endpointAddress) + 2),
1114 port->bulk_in_buffer,
1115 mos7840_port->read_urb->transfer_buffer_length,
1116 mos7840_bulk_in_callback, mos7840_port);
1117 } else {
1118 usb_fill_bulk_urb(mos7840_port->read_urb,
1119 serial->dev,
1120 usb_rcvbulkpipe(serial->dev,
1121 port->bulk_in_endpointAddress),
1122 port->bulk_in_buffer,
1123 mos7840_port->read_urb->transfer_buffer_length,
1124 mos7840_bulk_in_callback, mos7840_port);
1125 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001126
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001127 dev_dbg(&port->dev, "%s: bulkin endpoint is %d\n", __func__, port->bulk_in_endpointAddress);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001128 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001129 response = usb_submit_urb(mos7840_port->read_urb, GFP_KERNEL);
1130 if (response) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001131 dev_err(&port->dev, "%s - Error %d submitting control urb\n",
1132 __func__, response);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001133 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001134 }
1135
1136 /* initialize our wait queues */
1137 init_waitqueue_head(&mos7840_port->wait_chase);
1138 init_waitqueue_head(&mos7840_port->delta_msr_wait);
1139
1140 /* initialize our icount structure */
1141 memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount));
1142
1143 /* initialize our port settings */
Alan Cox880af9d2008-07-22 11:16:12 +01001144 /* Must set to enable ints! */
1145 mos7840_port->shadowMCR = MCR_MASTER_IE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001146 /* send a open port command */
1147 mos7840_port->open = 1;
Alan Cox880af9d2008-07-22 11:16:12 +01001148 /* mos7840_change_port_settings(mos7840_port,old_termios); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001149 mos7840_port->icount.tx = 0;
1150 mos7840_port->icount.rx = 0;
1151
Paul B Schroeder3f542972006-08-31 19:41:47 -05001152 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001153}
1154
1155/*****************************************************************************
1156 * mos7840_chars_in_buffer
1157 * this function is called by the tty driver when it wants to know how many
1158 * bytes of data we currently have outstanding in the port (data that has
1159 * been written, but hasn't made it out the port yet)
1160 * If successful, we return the number of bytes left to be written in the
1161 * system,
Alan Cox95da3102008-07-22 11:09:07 +01001162 * Otherwise we return zero.
Paul B Schroeder3f542972006-08-31 19:41:47 -05001163 *****************************************************************************/
1164
Alan Cox95da3102008-07-22 11:09:07 +01001165static int mos7840_chars_in_buffer(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001166{
Alan Cox95da3102008-07-22 11:09:07 +01001167 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001168 int i;
1169 int chars = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001170 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001171 struct moschip_port *mos7840_port;
1172
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001173 if (mos7840_port_paranoia_check(port, __func__))
Alan Cox95da3102008-07-22 11:09:07 +01001174 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001175
1176 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07001177 if (mos7840_port == NULL)
Alan Cox95da3102008-07-22 11:09:07 +01001178 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001179
Alan Cox880af9d2008-07-22 11:16:12 +01001180 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Mark Ferrell5c263b92012-07-24 14:15:13 -05001181 for (i = 0; i < NUM_URBS; ++i) {
1182 if (mos7840_port->busy[i]) {
1183 struct urb *urb = mos7840_port->write_urb_pool[i];
1184 chars += urb->transfer_buffer_length;
1185 }
1186 }
Alan Cox880af9d2008-07-22 11:16:12 +01001187 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001188 dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001189 return chars;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001190
1191}
1192
Paul B Schroeder3f542972006-08-31 19:41:47 -05001193/*****************************************************************************
1194 * mos7840_close
1195 * this function is called by the tty driver when a port is closed
1196 *****************************************************************************/
1197
Alan Cox335f8512009-06-11 12:26:29 +01001198static void mos7840_close(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001199{
1200 struct usb_serial *serial;
1201 struct moschip_port *mos7840_port;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001202 struct moschip_port *port0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001203 int j;
1204 __u16 Data;
1205
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001206 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001207 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001208
Harvey Harrison441b62c2008-03-03 16:08:34 -08001209 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001210 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001211 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001212
1213 mos7840_port = mos7840_get_port_private(port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001214 port0 = mos7840_get_port_private(serial->port[0]);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001215
Oliver Neukum0de9a702007-03-16 20:28:28 +01001216 if (mos7840_port == NULL || port0 == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001217 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001218
1219 for (j = 0; j < NUM_URBS; ++j)
1220 usb_kill_urb(mos7840_port->write_urb_pool[j]);
1221
1222 /* Freeing Write URBs */
1223 for (j = 0; j < NUM_URBS; ++j) {
1224 if (mos7840_port->write_urb_pool[j]) {
1225 if (mos7840_port->write_urb_pool[j]->transfer_buffer)
1226 kfree(mos7840_port->write_urb_pool[j]->
1227 transfer_buffer);
1228
1229 usb_free_urb(mos7840_port->write_urb_pool[j]);
1230 }
1231 }
1232
Paul B Schroeder3f542972006-08-31 19:41:47 -05001233 /* While closing port, shutdown all bulk read, write *
1234 * and interrupt read if they exists */
1235 if (serial->dev) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001236 if (mos7840_port->write_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001237 dev_dbg(&port->dev, "%s", "Shutdown bulk write\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001238 usb_kill_urb(mos7840_port->write_urb);
1239 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001240 if (mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001241 dev_dbg(&port->dev, "%s", "Shutdown bulk read\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001242 usb_kill_urb(mos7840_port->read_urb);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08001243 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001244 }
1245 if ((&mos7840_port->control_urb)) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001246 dev_dbg(&port->dev, "%s", "Shutdown control read\n");
Alan Cox880af9d2008-07-22 11:16:12 +01001247 /*/ usb_kill_urb (mos7840_port->control_urb); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001248 }
1249 }
Alan Cox880af9d2008-07-22 11:16:12 +01001250/* if(mos7840_port->ctrl_buf != NULL) */
1251/* kfree(mos7840_port->ctrl_buf); */
Oliver Neukum0de9a702007-03-16 20:28:28 +01001252 port0->open_ports--;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001253 dev_dbg(&port->dev, "%s in close%d:in port%d\n", __func__, port0->open_ports, port->number);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001254 if (port0->open_ports == 0) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001255 if (serial->port[0]->interrupt_in_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001256 dev_dbg(&port->dev, "Shutdown interrupt_in_urb\n");
Oliver Neukum0de9a702007-03-16 20:28:28 +01001257 usb_kill_urb(serial->port[0]->interrupt_in_urb);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001258 }
1259 }
1260
1261 if (mos7840_port->write_urb) {
1262 /* if this urb had a transfer buffer already (old tx) free it */
Alan Cox880af9d2008-07-22 11:16:12 +01001263 if (mos7840_port->write_urb->transfer_buffer != NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001264 kfree(mos7840_port->write_urb->transfer_buffer);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001265 usb_free_urb(mos7840_port->write_urb);
1266 }
1267
1268 Data = 0x0;
1269 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1270
1271 Data = 0x00;
1272 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1273
1274 mos7840_port->open = 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001275}
1276
1277/************************************************************************
1278 *
1279 * mos7840_block_until_chase_response
1280 *
1281 * This function will block the close until one of the following:
1282 * 1. Response to our Chase comes from mos7840
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001283 * 2. A timeout of 10 seconds without activity has expired
Paul B Schroeder3f542972006-08-31 19:41:47 -05001284 * (1K of mos7840 data @ 2400 baud ==> 4 sec to empty)
1285 *
1286 ************************************************************************/
1287
Alan Cox95da3102008-07-22 11:09:07 +01001288static void mos7840_block_until_chase_response(struct tty_struct *tty,
1289 struct moschip_port *mos7840_port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001290{
Mark Ferrell1e658482012-07-24 13:38:31 -05001291 int timeout = msecs_to_jiffies(1000);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001292 int wait = 10;
1293 int count;
1294
1295 while (1) {
Alan Cox95da3102008-07-22 11:09:07 +01001296 count = mos7840_chars_in_buffer(tty);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001297
1298 /* Check for Buffer status */
Alan Cox880af9d2008-07-22 11:16:12 +01001299 if (count <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001300 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001301
1302 /* Block the thread for a while */
1303 interruptible_sleep_on_timeout(&mos7840_port->wait_chase,
1304 timeout);
1305 /* No activity.. count down section */
1306 wait--;
1307 if (wait == 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001308 dev_dbg(&mos7840_port->port->dev, "%s - TIMEOUT\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001309 return;
1310 } else {
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001311 /* Reset timeout value back to seconds */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001312 wait = 10;
1313 }
1314 }
1315
1316}
1317
1318/*****************************************************************************
1319 * mos7840_break
1320 * this function sends a break to the port
1321 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001322static void mos7840_break(struct tty_struct *tty, int break_state)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001323{
Alan Cox95da3102008-07-22 11:09:07 +01001324 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001325 unsigned char data;
1326 struct usb_serial *serial;
1327 struct moschip_port *mos7840_port;
1328
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001329 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001330 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001331
Harvey Harrison441b62c2008-03-03 16:08:34 -08001332 serial = mos7840_get_usb_serial(port, __func__);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001333 if (!serial)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001334 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001335
1336 mos7840_port = mos7840_get_port_private(port);
1337
Alan Cox880af9d2008-07-22 11:16:12 +01001338 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001339 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001340
Alan Cox95da3102008-07-22 11:09:07 +01001341 if (serial->dev)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001342 /* flush and block until tx is empty */
Alan Cox95da3102008-07-22 11:09:07 +01001343 mos7840_block_until_chase_response(tty, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001344
Alan Cox95da3102008-07-22 11:09:07 +01001345 if (break_state == -1)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001346 data = mos7840_port->shadowLCR | LCR_SET_BREAK;
Alan Cox95da3102008-07-22 11:09:07 +01001347 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001348 data = mos7840_port->shadowLCR & ~LCR_SET_BREAK;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001349
Alan Cox6b447f042009-01-02 13:48:56 +00001350 /* FIXME: no locking on shadowLCR anywhere in driver */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001351 mos7840_port->shadowLCR = data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001352 dev_dbg(&port->dev, "%s mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001353 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER,
1354 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001355}
1356
1357/*****************************************************************************
1358 * mos7840_write_room
1359 * this function is called by the tty driver when it wants to know how many
1360 * bytes of data we can accept for a specific port.
1361 * If successful, we return the amount of room that we have for this port
1362 * Otherwise we return a negative error number.
1363 *****************************************************************************/
1364
Alan Cox95da3102008-07-22 11:09:07 +01001365static int mos7840_write_room(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001366{
Alan Cox95da3102008-07-22 11:09:07 +01001367 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001368 int i;
1369 int room = 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001370 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001371 struct moschip_port *mos7840_port;
1372
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001373 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001374 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001375
1376 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001377 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001378 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001379
Oliver Neukum0de9a702007-03-16 20:28:28 +01001380 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001381 for (i = 0; i < NUM_URBS; ++i) {
Alan Cox880af9d2008-07-22 11:16:12 +01001382 if (!mos7840_port->busy[i])
Paul B Schroeder3f542972006-08-31 19:41:47 -05001383 room += URB_TRANSFER_BUFFER_SIZE;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001384 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001385 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001386
Oliver Neukum0de9a702007-03-16 20:28:28 +01001387 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001388 dev_dbg(&mos7840_port->port->dev, "%s - returns %d\n", __func__, room);
Oliver Neukum0de9a702007-03-16 20:28:28 +01001389 return room;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001390
1391}
1392
1393/*****************************************************************************
1394 * mos7840_write
1395 * this function is called by the tty driver when data should be written to
1396 * the port.
1397 * If successful, we return the number of bytes written, otherwise we
1398 * return a negative error number.
1399 *****************************************************************************/
1400
Alan Cox95da3102008-07-22 11:09:07 +01001401static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001402 const unsigned char *data, int count)
1403{
1404 int status;
1405 int i;
1406 int bytes_sent = 0;
1407 int transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001408 unsigned long flags;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001409
1410 struct moschip_port *mos7840_port;
1411 struct usb_serial *serial;
1412 struct urb *urb;
Alan Cox880af9d2008-07-22 11:16:12 +01001413 /* __u16 Data; */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001414 const unsigned char *current_position = data;
1415 unsigned char *data1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001416
1417#ifdef NOTMOS7840
1418 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001419 status = mos7840_get_uart_reg(port, LINE_CONTROL_REGISTER, &Data);
1420 mos7840_port->shadowLCR = Data;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001421 dev_dbg(&port->dev, "%s: LINE_CONTROL_REGISTER is %x\n", __func__, Data);
1422 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001423
Alan Cox880af9d2008-07-22 11:16:12 +01001424 /* Data = 0x03; */
1425 /* status = mos7840_set_uart_reg(port,LINE_CONTROL_REGISTER,Data); */
1426 /* mos7840_port->shadowLCR=Data;//Need to add later */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001427
Alan Cox880af9d2008-07-22 11:16:12 +01001428 Data |= SERIAL_LCR_DLAB; /* data latch enable in LCR 0x80 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001429 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1430
Alan Cox880af9d2008-07-22 11:16:12 +01001431 /* Data = 0x0c; */
1432 /* status = mos7840_set_uart_reg(port,DIVISOR_LATCH_LSB,Data); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001433 Data = 0x00;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001434 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_LSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001435 dev_dbg(&port->dev, "%s: DLL value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001436
1437 Data = 0x0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001438 status = mos7840_get_uart_reg(port, DIVISOR_LATCH_MSB, &Data);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001439 dev_dbg(&port->dev, "%s: DLM value is %x\n", __func__, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001440
1441 Data = Data & ~SERIAL_LCR_DLAB;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001442 dev_dbg(&port->dev, "%s: mos7840_port->shadowLCR is %x\n", __func__, mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001443 status = mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1444#endif
1445
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001446 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001447 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001448
1449 serial = port->serial;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001450 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001451 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001452
1453 mos7840_port = mos7840_get_port_private(port);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001454 if (mos7840_port == NULL)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001455 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001456
1457 /* try to find a free urb in the list */
1458 urb = NULL;
1459
Oliver Neukum0de9a702007-03-16 20:28:28 +01001460 spin_lock_irqsave(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001461 for (i = 0; i < NUM_URBS; ++i) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001462 if (!mos7840_port->busy[i]) {
1463 mos7840_port->busy[i] = 1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001464 urb = mos7840_port->write_urb_pool[i];
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001465 dev_dbg(&port->dev, "URB:%d\n", i);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001466 break;
1467 }
1468 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01001469 spin_unlock_irqrestore(&mos7840_port->pool_lock, flags);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001470
1471 if (urb == NULL) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001472 dev_dbg(&port->dev, "%s - no more free urbs\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001473 goto exit;
1474 }
1475
1476 if (urb->transfer_buffer == NULL) {
1477 urb->transfer_buffer =
1478 kmalloc(URB_TRANSFER_BUFFER_SIZE, GFP_KERNEL);
1479
1480 if (urb->transfer_buffer == NULL) {
Johan Hovold22a416c2012-02-10 13:20:51 +01001481 dev_err_console(port, "%s no more kernel memory...\n",
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001482 __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001483 goto exit;
1484 }
1485 }
1486 transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
1487
Al Viro97c49652006-10-09 20:29:03 +01001488 memcpy(urb->transfer_buffer, current_position, transfer_size);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001489
1490 /* fill urb with data and submit */
Donald Lee093ea2d2012-03-14 15:26:33 +08001491 if ((serial->num_ports == 2)
1492 && ((((__u16)port->number -
1493 (__u16)(port->serial->minor)) % 2) != 0)) {
1494 usb_fill_bulk_urb(urb,
1495 serial->dev,
1496 usb_sndbulkpipe(serial->dev,
1497 (port->bulk_out_endpointAddress) + 2),
1498 urb->transfer_buffer,
1499 transfer_size,
1500 mos7840_bulk_out_data_callback, mos7840_port);
1501 } else {
1502 usb_fill_bulk_urb(urb,
1503 serial->dev,
1504 usb_sndbulkpipe(serial->dev,
1505 port->bulk_out_endpointAddress),
1506 urb->transfer_buffer,
1507 transfer_size,
1508 mos7840_bulk_out_data_callback, mos7840_port);
1509 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001510
1511 data1 = urb->transfer_buffer;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001512 dev_dbg(&port->dev, "bulkout endpoint is %d\n", port->bulk_out_endpointAddress);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001513
Donald0eafe4d2012-04-19 15:00:45 +08001514 /* Turn on LED */
1515 if (mos7840_port->has_led && !mos7840_port->led_flag) {
1516 mos7840_port->led_flag = true;
1517 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0301);
1518 mod_timer(&mos7840_port->led_timer1,
1519 jiffies + msecs_to_jiffies(LED_ON_MS));
1520 }
1521
Paul B Schroeder3f542972006-08-31 19:41:47 -05001522 /* send it down the pipe */
1523 status = usb_submit_urb(urb, GFP_ATOMIC);
1524
1525 if (status) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01001526 mos7840_port->busy[i] = 0;
Johan Hovold22a416c2012-02-10 13:20:51 +01001527 dev_err_console(port, "%s - usb_submit_urb(write bulk) failed "
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001528 "with status = %d\n", __func__, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001529 bytes_sent = status;
1530 goto exit;
1531 }
1532 bytes_sent = transfer_size;
1533 mos7840_port->icount.tx += transfer_size;
Oliver Neukum0de9a702007-03-16 20:28:28 +01001534 smp_wmb();
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001535 dev_dbg(&port->dev, "mos7840_port->icount.tx is %d:\n", mos7840_port->icount.tx);
Alan Cox95da3102008-07-22 11:09:07 +01001536exit:
Paul B Schroeder3f542972006-08-31 19:41:47 -05001537 return bytes_sent;
1538
1539}
1540
1541/*****************************************************************************
1542 * mos7840_throttle
1543 * this function is called by the tty driver when it wants to stop the data
1544 * being read from the port.
1545 *****************************************************************************/
1546
Alan Cox95da3102008-07-22 11:09:07 +01001547static void mos7840_throttle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001548{
Alan Cox95da3102008-07-22 11:09:07 +01001549 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001550 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001551 int status;
1552
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001553 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001554 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001555
1556 mos7840_port = mos7840_get_port_private(port);
1557
1558 if (mos7840_port == NULL)
1559 return;
1560
1561 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001562 dev_dbg(&port->dev, "%s", "port not opened\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001563 return;
1564 }
1565
Paul B Schroeder3f542972006-08-31 19:41:47 -05001566 /* if we are implementing XON/XOFF, send the stop character */
1567 if (I_IXOFF(tty)) {
1568 unsigned char stop_char = STOP_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001569 status = mos7840_write(tty, port, &stop_char, 1);
1570 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001571 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001572 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001573 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001574 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001575 mos7840_port->shadowMCR &= ~MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001576 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001577 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001578 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001579 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001580 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001581}
1582
1583/*****************************************************************************
1584 * mos7840_unthrottle
Alan Cox880af9d2008-07-22 11:16:12 +01001585 * this function is called by the tty driver when it wants to resume
1586 * the data being read from the port (called after mos7840_throttle is
1587 * called)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001588 *****************************************************************************/
Alan Cox95da3102008-07-22 11:09:07 +01001589static void mos7840_unthrottle(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001590{
Alan Cox95da3102008-07-22 11:09:07 +01001591 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001592 int status;
1593 struct moschip_port *mos7840_port = mos7840_get_port_private(port);
1594
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001595 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001596 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001597
1598 if (mos7840_port == NULL)
1599 return;
1600
1601 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001602 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001603 return;
1604 }
1605
Paul B Schroeder3f542972006-08-31 19:41:47 -05001606 /* if we are implementing XON/XOFF, send the start character */
1607 if (I_IXOFF(tty)) {
1608 unsigned char start_char = START_CHAR(tty);
Alan Cox95da3102008-07-22 11:09:07 +01001609 status = mos7840_write(tty, port, &start_char, 1);
1610 if (status <= 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001611 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001612 }
1613
1614 /* if we are implementing RTS/CTS, toggle that line */
Alan Coxadc8d742012-07-14 15:31:47 +01001615 if (tty->termios.c_cflag & CRTSCTS) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05001616 mos7840_port->shadowMCR |= MCR_RTS;
Alan Cox95da3102008-07-22 11:09:07 +01001617 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001618 mos7840_port->shadowMCR);
Alan Cox95da3102008-07-22 11:09:07 +01001619 if (status < 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001620 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001621 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001622}
1623
Alan Cox60b33c12011-02-14 16:26:14 +00001624static int mos7840_tiocmget(struct tty_struct *tty)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001625{
Alan Cox95da3102008-07-22 11:09:07 +01001626 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001627 struct moschip_port *mos7840_port;
1628 unsigned int result;
1629 __u16 msr;
1630 __u16 mcr;
Alan Cox880af9d2008-07-22 11:16:12 +01001631 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001632 mos7840_port = mos7840_get_port_private(port);
1633
Paul B Schroeder3f542972006-08-31 19:41:47 -05001634 if (mos7840_port == NULL)
1635 return -ENODEV;
1636
1637 status = mos7840_get_uart_reg(port, MODEM_STATUS_REGISTER, &msr);
1638 status = mos7840_get_uart_reg(port, MODEM_CONTROL_REGISTER, &mcr);
1639 result = ((mcr & MCR_DTR) ? TIOCM_DTR : 0)
1640 | ((mcr & MCR_RTS) ? TIOCM_RTS : 0)
1641 | ((mcr & MCR_LOOPBACK) ? TIOCM_LOOP : 0)
1642 | ((msr & MOS7840_MSR_CTS) ? TIOCM_CTS : 0)
1643 | ((msr & MOS7840_MSR_CD) ? TIOCM_CAR : 0)
1644 | ((msr & MOS7840_MSR_RI) ? TIOCM_RI : 0)
1645 | ((msr & MOS7840_MSR_DSR) ? TIOCM_DSR : 0);
1646
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001647 dev_dbg(&port->dev, "%s - 0x%04X\n", __func__, result);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001648
1649 return result;
1650}
1651
Alan Cox20b9d172011-02-14 16:26:50 +00001652static int mos7840_tiocmset(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001653 unsigned int set, unsigned int clear)
1654{
Alan Cox95da3102008-07-22 11:09:07 +01001655 struct usb_serial_port *port = tty->driver_data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001656 struct moschip_port *mos7840_port;
1657 unsigned int mcr;
Roel Kluin87521c42008-04-17 06:16:24 +02001658 int status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001659
Paul B Schroeder3f542972006-08-31 19:41:47 -05001660 mos7840_port = mos7840_get_port_private(port);
1661
1662 if (mos7840_port == NULL)
1663 return -ENODEV;
1664
Alan Coxe2984492008-02-20 20:51:45 +00001665 /* FIXME: What locks the port registers ? */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001666 mcr = mos7840_port->shadowMCR;
1667 if (clear & TIOCM_RTS)
1668 mcr &= ~MCR_RTS;
1669 if (clear & TIOCM_DTR)
1670 mcr &= ~MCR_DTR;
1671 if (clear & TIOCM_LOOP)
1672 mcr &= ~MCR_LOOPBACK;
1673
1674 if (set & TIOCM_RTS)
1675 mcr |= MCR_RTS;
1676 if (set & TIOCM_DTR)
1677 mcr |= MCR_DTR;
1678 if (set & TIOCM_LOOP)
1679 mcr |= MCR_LOOPBACK;
1680
1681 mos7840_port->shadowMCR = mcr;
1682
Paul B Schroeder3f542972006-08-31 19:41:47 -05001683 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, mcr);
1684 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001685 dev_dbg(&port->dev, "setting MODEM_CONTROL_REGISTER Failed\n");
Roel Kluin87521c42008-04-17 06:16:24 +02001686 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001687 }
1688
1689 return 0;
1690}
1691
1692/*****************************************************************************
1693 * mos7840_calc_baud_rate_divisor
1694 * this function calculates the proper baud rate divisor for the specified
1695 * baud rate.
1696 *****************************************************************************/
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001697static int mos7840_calc_baud_rate_divisor(struct usb_serial_port *port,
1698 int baudRate, int *divisor,
Alan Cox880af9d2008-07-22 11:16:12 +01001699 __u16 *clk_sel_val)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001700{
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001701 dev_dbg(&port->dev, "%s - %d\n", __func__, baudRate);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001702
1703 if (baudRate <= 115200) {
1704 *divisor = 115200 / baudRate;
1705 *clk_sel_val = 0x0;
1706 }
1707 if ((baudRate > 115200) && (baudRate <= 230400)) {
1708 *divisor = 230400 / baudRate;
1709 *clk_sel_val = 0x10;
1710 } else if ((baudRate > 230400) && (baudRate <= 403200)) {
1711 *divisor = 403200 / baudRate;
1712 *clk_sel_val = 0x20;
1713 } else if ((baudRate > 403200) && (baudRate <= 460800)) {
1714 *divisor = 460800 / baudRate;
1715 *clk_sel_val = 0x30;
1716 } else if ((baudRate > 460800) && (baudRate <= 806400)) {
1717 *divisor = 806400 / baudRate;
1718 *clk_sel_val = 0x40;
1719 } else if ((baudRate > 806400) && (baudRate <= 921600)) {
1720 *divisor = 921600 / baudRate;
1721 *clk_sel_val = 0x50;
1722 } else if ((baudRate > 921600) && (baudRate <= 1572864)) {
1723 *divisor = 1572864 / baudRate;
1724 *clk_sel_val = 0x60;
1725 } else if ((baudRate > 1572864) && (baudRate <= 3145728)) {
1726 *divisor = 3145728 / baudRate;
1727 *clk_sel_val = 0x70;
1728 }
1729 return 0;
1730
1731#ifdef NOTMCS7840
1732
1733 for (i = 0; i < ARRAY_SIZE(mos7840_divisor_table); i++) {
1734 if (mos7840_divisor_table[i].BaudRate == baudrate) {
1735 *divisor = mos7840_divisor_table[i].Divisor;
1736 return 0;
1737 }
1738 }
1739
1740 /* After trying for all the standard baud rates *
1741 * Try calculating the divisor for this baud rate */
1742
1743 if (baudrate > 75 && baudrate < 230400) {
1744 /* get the divisor */
1745 custom = (__u16) (230400L / baudrate);
1746
1747 /* Check for round off */
1748 round1 = (__u16) (2304000L / baudrate);
1749 round = (__u16) (round1 - (custom * 10));
Alan Cox880af9d2008-07-22 11:16:12 +01001750 if (round > 4)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001751 custom++;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001752 *divisor = custom;
1753
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001754 dev_dbg(&port->dev, " Baud %d = %d\n", baudrate, custom);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001755 return 0;
1756 }
1757
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001758 dev_dbg(&port->dev, "%s", " Baud calculation Failed...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001759 return -1;
1760#endif
1761}
1762
1763/*****************************************************************************
1764 * mos7840_send_cmd_write_baud_rate
1765 * this function sends the proper command to change the baud rate of the
1766 * specified port.
1767 *****************************************************************************/
1768
1769static int mos7840_send_cmd_write_baud_rate(struct moschip_port *mos7840_port,
1770 int baudRate)
1771{
1772 int divisor = 0;
1773 int status;
1774 __u16 Data;
1775 unsigned char number;
1776 __u16 clk_sel_val;
1777 struct usb_serial_port *port;
1778
1779 if (mos7840_port == NULL)
1780 return -1;
1781
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001782 port = mos7840_port->port;
1783 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001784 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001785
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001786 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001787 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001788
Paul B Schroeder3f542972006-08-31 19:41:47 -05001789 number = mos7840_port->port->number - mos7840_port->port->serial->minor;
1790
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001791 dev_dbg(&port->dev, "%s - port = %d, baud = %d\n", __func__,
1792 mos7840_port->port->number, baudRate);
Alan Cox880af9d2008-07-22 11:16:12 +01001793 /* reset clk_uart_sel in spregOffset */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001794 if (baudRate > 115200) {
1795#ifdef HW_flow_control
Alan Cox880af9d2008-07-22 11:16:12 +01001796 /* NOTE: need to see the pther register to modify */
1797 /* setting h/w flow control bit to 1 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001798 Data = 0x2b;
1799 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001800 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1801 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001802 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001803 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001804 return -1;
1805 }
1806#endif
1807
1808 } else {
1809#ifdef HW_flow_control
Donald Lee093ea2d2012-03-14 15:26:33 +08001810 /* setting h/w flow control bit to 0 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001811 Data = 0xb;
1812 mos7840_port->shadowMCR = Data;
Alan Cox880af9d2008-07-22 11:16:12 +01001813 status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER,
1814 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001815 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001816 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001817 return -1;
1818 }
1819#endif
1820
1821 }
1822
Alan Cox880af9d2008-07-22 11:16:12 +01001823 if (1) { /* baudRate <= 115200) */
Paul B Schroeder3f542972006-08-31 19:41:47 -05001824 clk_sel_val = 0x0;
1825 Data = 0x0;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001826 status = mos7840_calc_baud_rate_divisor(port, baudRate, &divisor,
Paul B Schroeder3f542972006-08-31 19:41:47 -05001827 &clk_sel_val);
Alan Cox880af9d2008-07-22 11:16:12 +01001828 status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset,
1829 &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001830 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001831 dev_dbg(&port->dev, "reading spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001832 return -1;
1833 }
1834 Data = (Data & 0x8f) | clk_sel_val;
Alan Cox880af9d2008-07-22 11:16:12 +01001835 status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset,
1836 Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001837 if (status < 0) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001838 dev_dbg(&port->dev, "Writing spreg failed in set_serial_baud\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05001839 return -1;
1840 }
1841 /* Calculate the Divisor */
1842
1843 if (status) {
Greg Kroah-Hartman194343d2008-08-20 16:56:34 -07001844 dev_err(&port->dev, "%s - bad baud rate\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001845 return status;
1846 }
1847 /* Enable access to divisor latch */
1848 Data = mos7840_port->shadowLCR | SERIAL_LCR_DLAB;
1849 mos7840_port->shadowLCR = Data;
1850 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1851
1852 /* Write the divisor */
1853 Data = (unsigned char)(divisor & 0xff);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001854 dev_dbg(&port->dev, "set_serial_baud Value to write DLL is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001855 mos7840_set_uart_reg(port, DIVISOR_LATCH_LSB, Data);
1856
1857 Data = (unsigned char)((divisor & 0xff00) >> 8);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001858 dev_dbg(&port->dev, "set_serial_baud Value to write DLM is %x\n", Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001859 mos7840_set_uart_reg(port, DIVISOR_LATCH_MSB, Data);
1860
1861 /* Disable access to divisor latch */
1862 Data = mos7840_port->shadowLCR & ~SERIAL_LCR_DLAB;
1863 mos7840_port->shadowLCR = Data;
1864 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1865
1866 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05001867 return status;
1868}
1869
1870/*****************************************************************************
1871 * mos7840_change_port_settings
1872 * This routine is called to set the UART on the device to match
1873 * the specified new settings.
1874 *****************************************************************************/
1875
Alan Cox95da3102008-07-22 11:09:07 +01001876static void mos7840_change_port_settings(struct tty_struct *tty,
1877 struct moschip_port *mos7840_port, struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001878{
Paul B Schroeder3f542972006-08-31 19:41:47 -05001879 int baud;
1880 unsigned cflag;
1881 unsigned iflag;
1882 __u8 lData;
1883 __u8 lParity;
1884 __u8 lStop;
1885 int status;
1886 __u16 Data;
1887 struct usb_serial_port *port;
1888 struct usb_serial *serial;
1889
1890 if (mos7840_port == NULL)
1891 return;
1892
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001893 port = mos7840_port->port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001894
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001895 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001896 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001897
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001898 if (mos7840_serial_paranoia_check(port->serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05001899 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001900
1901 serial = port->serial;
1902
Paul B Schroeder3f542972006-08-31 19:41:47 -05001903 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001904 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001905 return;
1906 }
1907
Paul B Schroeder3f542972006-08-31 19:41:47 -05001908 lData = LCR_BITS_8;
1909 lStop = LCR_STOP_1;
1910 lParity = LCR_PAR_NONE;
1911
Alan Coxadc8d742012-07-14 15:31:47 +01001912 cflag = tty->termios.c_cflag;
1913 iflag = tty->termios.c_iflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001914
1915 /* Change the number of bits */
1916 if (cflag & CSIZE) {
1917 switch (cflag & CSIZE) {
1918 case CS5:
1919 lData = LCR_BITS_5;
1920 break;
1921
1922 case CS6:
1923 lData = LCR_BITS_6;
1924 break;
1925
1926 case CS7:
1927 lData = LCR_BITS_7;
1928 break;
1929 default:
1930 case CS8:
1931 lData = LCR_BITS_8;
1932 break;
1933 }
1934 }
1935 /* Change the Parity bit */
1936 if (cflag & PARENB) {
1937 if (cflag & PARODD) {
1938 lParity = LCR_PAR_ODD;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001939 dev_dbg(&port->dev, "%s - parity = odd\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001940 } else {
1941 lParity = LCR_PAR_EVEN;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001942 dev_dbg(&port->dev, "%s - parity = even\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001943 }
1944
1945 } else {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001946 dev_dbg(&port->dev, "%s - parity = none\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001947 }
1948
Alan Cox880af9d2008-07-22 11:16:12 +01001949 if (cflag & CMSPAR)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001950 lParity = lParity | 0x20;
Paul B Schroeder3f542972006-08-31 19:41:47 -05001951
1952 /* Change the Stop bit */
1953 if (cflag & CSTOPB) {
1954 lStop = LCR_STOP_2;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001955 dev_dbg(&port->dev, "%s - stop bits = 2\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001956 } else {
1957 lStop = LCR_STOP_1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001958 dev_dbg(&port->dev, "%s - stop bits = 1\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001959 }
1960
1961 /* Update the LCR with the correct value */
1962 mos7840_port->shadowLCR &=
1963 ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
1964 mos7840_port->shadowLCR |= (lData | lParity | lStop);
1965
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07001966 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is %x\n", __func__,
1967 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001968 /* Disable Interrupts */
1969 Data = 0x00;
1970 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
1971
1972 Data = 0x00;
1973 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1974
1975 Data = 0xcf;
1976 mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data);
1977
1978 /* Send the updated LCR value to the mos7840 */
1979 Data = mos7840_port->shadowLCR;
1980
1981 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, Data);
1982
1983 Data = 0x00b;
1984 mos7840_port->shadowMCR = Data;
1985 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1986 Data = 0x00b;
1987 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
1988
1989 /* set up the MCR register and send it to the mos7840 */
1990
1991 mos7840_port->shadowMCR = MCR_MASTER_IE;
Alan Cox880af9d2008-07-22 11:16:12 +01001992 if (cflag & CBAUD)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001993 mos7840_port->shadowMCR |= (MCR_DTR | MCR_RTS);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001994
Alan Cox880af9d2008-07-22 11:16:12 +01001995 if (cflag & CRTSCTS)
Paul B Schroeder3f542972006-08-31 19:41:47 -05001996 mos7840_port->shadowMCR |= (MCR_XON_ANY);
Alan Cox880af9d2008-07-22 11:16:12 +01001997 else
Paul B Schroeder3f542972006-08-31 19:41:47 -05001998 mos7840_port->shadowMCR &= ~(MCR_XON_ANY);
Paul B Schroeder3f542972006-08-31 19:41:47 -05001999
2000 Data = mos7840_port->shadowMCR;
2001 mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, Data);
2002
2003 /* Determine divisor based on baud rate */
2004 baud = tty_get_baud_rate(tty);
2005
2006 if (!baud) {
2007 /* pick a default, any default... */
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002008 dev_dbg(&port->dev, "%s", "Picked default baud...\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002009 baud = 9600;
2010 }
2011
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002012 dev_dbg(&port->dev, "%s - baud rate = %d\n", __func__, baud);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002013 status = mos7840_send_cmd_write_baud_rate(mos7840_port, baud);
2014
2015 /* Enable Interrupts */
2016 Data = 0x0c;
2017 mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data);
2018
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002019 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002020 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002021 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002022 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002023 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002024 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002025 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002026 }
2027 }
2028 wake_up(&mos7840_port->delta_msr_wait);
2029 mos7840_port->delta_msr_cond = 1;
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002030 dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is End %x\n", __func__,
2031 mos7840_port->shadowLCR);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002032}
2033
2034/*****************************************************************************
2035 * mos7840_set_termios
2036 * this function is called by the tty driver when it wants to change
2037 * the termios structure
2038 *****************************************************************************/
2039
Alan Cox95da3102008-07-22 11:09:07 +01002040static void mos7840_set_termios(struct tty_struct *tty,
2041 struct usb_serial_port *port,
Alan Cox606d0992006-12-08 02:38:45 -08002042 struct ktermios *old_termios)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002043{
2044 int status;
2045 unsigned int cflag;
2046 struct usb_serial *serial;
2047 struct moschip_port *mos7840_port;
Greg Kroah-Hartman33631552012-05-03 16:44:33 -07002048
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002049 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002050 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002051
2052 serial = port->serial;
2053
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002054 if (mos7840_serial_paranoia_check(serial, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002055 return;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002056
2057 mos7840_port = mos7840_get_port_private(port);
2058
2059 if (mos7840_port == NULL)
2060 return;
2061
Paul B Schroeder3f542972006-08-31 19:41:47 -05002062 if (!mos7840_port->open) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002063 dev_dbg(&port->dev, "%s - port not opened\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002064 return;
2065 }
2066
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002067 dev_dbg(&port->dev, "%s", "setting termios - \n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002068
Alan Coxadc8d742012-07-14 15:31:47 +01002069 cflag = tty->termios.c_cflag;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002070
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002071 dev_dbg(&port->dev, "%s - clfag %08x iflag %08x\n", __func__,
Linus Torvaldsd9a80742012-10-01 13:23:01 -07002072 tty->termios.c_cflag, RELEVANT_IFLAG(tty->termios.c_iflag));
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002073 dev_dbg(&port->dev, "%s - old clfag %08x old iflag %08x\n", __func__,
2074 old_termios->c_cflag, RELEVANT_IFLAG(old_termios->c_iflag));
2075 dev_dbg(&port->dev, "%s - port %d\n", __func__, port->number);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002076
2077 /* change the port settings to the new ones specified */
2078
Alan Cox95da3102008-07-22 11:09:07 +01002079 mos7840_change_port_settings(tty, mos7840_port, old_termios);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002080
2081 if (!mos7840_port->read_urb) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002082 dev_dbg(&port->dev, "%s", "URB KILLED !!!!!\n");
Paul B Schroeder3f542972006-08-31 19:41:47 -05002083 return;
2084 }
2085
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002086 if (mos7840_port->read_urb_busy == false) {
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002087 mos7840_port->read_urb_busy = true;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002088 status = usb_submit_urb(mos7840_port->read_urb, GFP_ATOMIC);
2089 if (status) {
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002090 dev_dbg(&port->dev, "usb_submit_urb(read bulk) failed, status = %d\n",
Paul B Schroeder3f542972006-08-31 19:41:47 -05002091 status);
Greg Kroah-Hartman50de36f2008-12-10 16:00:30 -08002092 mos7840_port->read_urb_busy = false;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002093 }
2094 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002095}
2096
2097/*****************************************************************************
2098 * mos7840_get_lsr_info - get line status register info
2099 *
2100 * Purpose: Let user call ioctl() to get info when the UART physically
2101 * is emptied. On bus types like RS485, the transmitter must
2102 * release the bus after transmitting. This must be done when
2103 * the transmit shift register is empty, not be done when the
2104 * transmit holding register is empty. This functionality
2105 * allows an RS485 driver to be written in user space.
2106 *****************************************************************************/
2107
Alan Cox95da3102008-07-22 11:09:07 +01002108static int mos7840_get_lsr_info(struct tty_struct *tty,
Al Viro97c49652006-10-09 20:29:03 +01002109 unsigned int __user *value)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002110{
2111 int count;
2112 unsigned int result = 0;
2113
Alan Cox95da3102008-07-22 11:09:07 +01002114 count = mos7840_chars_in_buffer(tty);
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002115 if (count == 0)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002116 result = TIOCSER_TEMT;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002117
2118 if (copy_to_user(value, &result, sizeof(int)))
2119 return -EFAULT;
2120 return 0;
2121}
2122
2123/*****************************************************************************
Paul B Schroeder3f542972006-08-31 19:41:47 -05002124 * mos7840_get_serial_info
2125 * function to get information about serial port
2126 *****************************************************************************/
2127
2128static int mos7840_get_serial_info(struct moschip_port *mos7840_port,
Al Viro97c49652006-10-09 20:29:03 +01002129 struct serial_struct __user *retinfo)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002130{
2131 struct serial_struct tmp;
2132
2133 if (mos7840_port == NULL)
2134 return -1;
2135
2136 if (!retinfo)
2137 return -EFAULT;
2138
2139 memset(&tmp, 0, sizeof(tmp));
2140
2141 tmp.type = PORT_16550A;
2142 tmp.line = mos7840_port->port->serial->minor;
2143 tmp.port = mos7840_port->port->number;
2144 tmp.irq = 0;
2145 tmp.flags = ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
2146 tmp.xmit_fifo_size = NUM_URBS * URB_TRANSFER_BUFFER_SIZE;
2147 tmp.baud_base = 9600;
2148 tmp.close_delay = 5 * HZ;
2149 tmp.closing_wait = 30 * HZ;
2150
2151 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2152 return -EFAULT;
2153 return 0;
2154}
2155
Alan Cox0bca1b92010-09-16 18:21:40 +01002156static int mos7840_get_icount(struct tty_struct *tty,
2157 struct serial_icounter_struct *icount)
2158{
2159 struct usb_serial_port *port = tty->driver_data;
2160 struct moschip_port *mos7840_port;
2161 struct async_icount cnow;
2162
2163 mos7840_port = mos7840_get_port_private(port);
2164 cnow = mos7840_port->icount;
2165
2166 smp_rmb();
2167 icount->cts = cnow.cts;
2168 icount->dsr = cnow.dsr;
2169 icount->rng = cnow.rng;
2170 icount->dcd = cnow.dcd;
2171 icount->rx = cnow.rx;
2172 icount->tx = cnow.tx;
2173 icount->frame = cnow.frame;
2174 icount->overrun = cnow.overrun;
2175 icount->parity = cnow.parity;
2176 icount->brk = cnow.brk;
2177 icount->buf_overrun = cnow.buf_overrun;
2178
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002179 dev_dbg(&port->dev, "%s TIOCGICOUNT RX=%d, TX=%d\n", __func__,
2180 icount->rx, icount->tx);
Alan Cox0bca1b92010-09-16 18:21:40 +01002181 return 0;
2182}
2183
Paul B Schroeder3f542972006-08-31 19:41:47 -05002184/*****************************************************************************
2185 * SerialIoctl
2186 * this function handles any ioctl calls to the driver
2187 *****************************************************************************/
2188
Alan Cox00a0d0d2011-02-14 16:27:06 +00002189static int mos7840_ioctl(struct tty_struct *tty,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002190 unsigned int cmd, unsigned long arg)
2191{
Alan Cox95da3102008-07-22 11:09:07 +01002192 struct usb_serial_port *port = tty->driver_data;
Al Viro97c49652006-10-09 20:29:03 +01002193 void __user *argp = (void __user *)arg;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002194 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002195
2196 struct async_icount cnow;
2197 struct async_icount cprev;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002198
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002199 if (mos7840_port_paranoia_check(port, __func__))
Paul B Schroeder3f542972006-08-31 19:41:47 -05002200 return -1;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002201
2202 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002203
2204 if (mos7840_port == NULL)
2205 return -1;
2206
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002207 dev_dbg(&port->dev, "%s - cmd = 0x%x\n", __func__, cmd);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002208
2209 switch (cmd) {
2210 /* return number of bytes available */
2211
Paul B Schroeder3f542972006-08-31 19:41:47 -05002212 case TIOCSERGETLSR:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002213 dev_dbg(&port->dev, "%s TIOCSERGETLSR\n", __func__);
Alan Cox95da3102008-07-22 11:09:07 +01002214 return mos7840_get_lsr_info(tty, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002215
Paul B Schroeder3f542972006-08-31 19:41:47 -05002216 case TIOCGSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002217 dev_dbg(&port->dev, "%s TIOCGSERIAL\n", __func__);
Al Viro97c49652006-10-09 20:29:03 +01002218 return mos7840_get_serial_info(mos7840_port, argp);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002219
2220 case TIOCSSERIAL:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002221 dev_dbg(&port->dev, "%s TIOCSSERIAL\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002222 break;
2223
2224 case TIOCMIWAIT:
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002225 dev_dbg(&port->dev, "%s TIOCMIWAIT\n", __func__);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002226 cprev = mos7840_port->icount;
2227 while (1) {
Alan Cox880af9d2008-07-22 11:16:12 +01002228 /* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002229 mos7840_port->delta_msr_cond = 0;
2230 wait_event_interruptible(mos7840_port->delta_msr_wait,
2231 (mos7840_port->
2232 delta_msr_cond == 1));
2233
2234 /* see if a signal did it */
2235 if (signal_pending(current))
2236 return -ERESTARTSYS;
2237 cnow = mos7840_port->icount;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002238 smp_rmb();
Paul B Schroeder3f542972006-08-31 19:41:47 -05002239 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2240 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2241 return -EIO; /* no change => error */
2242 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2243 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2244 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2245 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2246 return 0;
2247 }
2248 cprev = cnow;
2249 }
2250 /* NOTREACHED */
2251 break;
2252
Paul B Schroeder3f542972006-08-31 19:41:47 -05002253 default:
2254 break;
2255 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002256 return -ENOIOCTLCMD;
2257}
2258
Donald0eafe4d2012-04-19 15:00:45 +08002259static int mos7810_check(struct usb_serial *serial)
2260{
2261 int i, pass_count = 0;
2262 __u16 data = 0, mcr_data = 0;
2263 __u16 test_pattern = 0x55AA;
2264
2265 /* Store MCR setting */
2266 usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
2267 MCS_RDREQ, MCS_RD_RTYPE, 0x0300, MODEM_CONTROL_REGISTER,
2268 &mcr_data, VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2269
2270 for (i = 0; i < 16; i++) {
2271 /* Send the 1-bit test pattern out to MCS7810 test pin */
2272 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2273 MCS_WRREQ, MCS_WR_RTYPE,
2274 (0x0300 | (((test_pattern >> i) & 0x0001) << 1)),
2275 MODEM_CONTROL_REGISTER, NULL, 0, MOS_WDR_TIMEOUT);
2276
2277 /* Read the test pattern back */
2278 usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
2279 MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, &data,
2280 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2281
2282 /* If this is a MCS7810 device, both test patterns must match */
2283 if (((test_pattern >> i) ^ (~data >> 1)) & 0x0001)
2284 break;
2285
2286 pass_count++;
2287 }
2288
2289 /* Restore MCR setting */
2290 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), MCS_WRREQ,
2291 MCS_WR_RTYPE, 0x0300 | mcr_data, MODEM_CONTROL_REGISTER, NULL,
2292 0, MOS_WDR_TIMEOUT);
2293
2294 if (pass_count == 16)
2295 return 1;
2296
2297 return 0;
2298}
2299
Paul B Schroeder3f542972006-08-31 19:41:47 -05002300static int mos7840_calc_num_ports(struct usb_serial *serial)
2301{
Donald0eafe4d2012-04-19 15:00:45 +08002302 __u16 data = 0x00;
Donald Lee093ea2d2012-03-14 15:26:33 +08002303 int mos7840_num_ports;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002304
Donald0eafe4d2012-04-19 15:00:45 +08002305 usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
2306 MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, &data,
Donald Lee093ea2d2012-03-14 15:26:33 +08002307 VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT);
2308
Donald0eafe4d2012-04-19 15:00:45 +08002309 if (serial->dev->descriptor.idProduct == MOSCHIP_DEVICE_ID_7810 ||
2310 serial->dev->descriptor.idProduct == MOSCHIP_DEVICE_ID_7820) {
2311 device_type = serial->dev->descriptor.idProduct;
Donald Lee093ea2d2012-03-14 15:26:33 +08002312 } else {
Donald0eafe4d2012-04-19 15:00:45 +08002313 /* For a MCS7840 device GPIO0 must be set to 1 */
2314 if ((data & 0x01) == 1)
2315 device_type = MOSCHIP_DEVICE_ID_7840;
2316 else if (mos7810_check(serial))
2317 device_type = MOSCHIP_DEVICE_ID_7810;
2318 else
2319 device_type = MOSCHIP_DEVICE_ID_7820;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002320 }
Donald Lee093ea2d2012-03-14 15:26:33 +08002321
Donald0eafe4d2012-04-19 15:00:45 +08002322 mos7840_num_ports = (device_type >> 4) & 0x000F;
2323 serial->num_bulk_in = mos7840_num_ports;
2324 serial->num_bulk_out = mos7840_num_ports;
2325 serial->num_ports = mos7840_num_ports;
2326
Paul B Schroeder3f542972006-08-31 19:41:47 -05002327 return mos7840_num_ports;
2328}
2329
Johan Hovold80c00752012-10-25 18:56:34 +02002330static int mos7840_port_probe(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002331{
Johan Hovold80c00752012-10-25 18:56:34 +02002332 struct usb_serial *serial = port->serial;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002333 struct moschip_port *mos7840_port;
Johan Hovold80c00752012-10-25 18:56:34 +02002334 int status;
2335 int pnum;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002336 __u16 Data;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002337
Paul B Schroeder3f542972006-08-31 19:41:47 -05002338 /* we set up the pointers to the endpoints in the mos7840_open *
2339 * function, as the structures aren't created yet. */
2340
Johan Hovold80c00752012-10-25 18:56:34 +02002341 pnum = port->number - serial->minor;
2342
2343 /* FIXME: remove do-while(0) loop used to keep stable patch minimal.
2344 */
2345 do {
2346 dev_dbg(&port->dev, "mos7840_startup: configuring port %d............\n", pnum);
Burman Yan7ac9da12006-11-22 20:54:38 +02002347 mos7840_port = kzalloc(sizeof(struct moschip_port), GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002348 if (mos7840_port == NULL) {
Johan Hovold80c00752012-10-25 18:56:34 +02002349 dev_err(&port->dev, "%s - Out of memory\n", __func__);
2350 return -ENOMEM;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002351 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002352
Alan Cox880af9d2008-07-22 11:16:12 +01002353 /* Initialize all port interrupt end point to port 0 int
2354 * endpoint. Our device has only one interrupt end point
2355 * common to all port */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002356
Johan Hovold80c00752012-10-25 18:56:34 +02002357 mos7840_port->port = port;
2358 mos7840_set_port_private(port, mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002359 spin_lock_init(&mos7840_port->pool_lock);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002360
Tony Cook37768ad2009-04-18 22:42:18 +09302361 /* minor is not initialised until later by
2362 * usb-serial.c:get_free_serial() and cannot therefore be used
2363 * to index device instances */
Johan Hovold80c00752012-10-25 18:56:34 +02002364 mos7840_port->port_num = pnum + 1;
2365 dev_dbg(&port->dev, "port->number = %d\n", port->number);
2366 dev_dbg(&port->dev, "port->serial->minor = %d\n", port->serial->minor);
2367 dev_dbg(&port->dev, "mos7840_port->port_num = %d\n", mos7840_port->port_num);
2368 dev_dbg(&port->dev, "serial->minor = %d\n", serial->minor);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002369
2370 if (mos7840_port->port_num == 1) {
2371 mos7840_port->SpRegOffset = 0x0;
2372 mos7840_port->ControlRegOffset = 0x1;
2373 mos7840_port->DcrRegOffset = 0x4;
2374 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002375 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002376 mos7840_port->SpRegOffset = 0x8;
2377 mos7840_port->ControlRegOffset = 0x9;
2378 mos7840_port->DcrRegOffset = 0x16;
2379 } else if ((mos7840_port->port_num == 2)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002380 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002381 mos7840_port->SpRegOffset = 0xa;
2382 mos7840_port->ControlRegOffset = 0xb;
2383 mos7840_port->DcrRegOffset = 0x19;
2384 } else if ((mos7840_port->port_num == 3)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002385 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002386 mos7840_port->SpRegOffset = 0xa;
2387 mos7840_port->ControlRegOffset = 0xb;
2388 mos7840_port->DcrRegOffset = 0x19;
2389 } else if ((mos7840_port->port_num == 4)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002390 && (serial->num_ports == 4)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002391 mos7840_port->SpRegOffset = 0xc;
2392 mos7840_port->ControlRegOffset = 0xd;
2393 mos7840_port->DcrRegOffset = 0x1c;
2394 }
Johan Hovold80c00752012-10-25 18:56:34 +02002395 mos7840_dump_serial_port(port, mos7840_port);
2396 mos7840_set_port_private(port, mos7840_port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002397
Alan Cox880af9d2008-07-22 11:16:12 +01002398 /* enable rx_disable bit in control register */
Johan Hovold80c00752012-10-25 18:56:34 +02002399 status = mos7840_get_reg_sync(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002400 mos7840_port->ControlRegOffset, &Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002401 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002402 dev_dbg(&port->dev, "Reading ControlReg failed status-0x%x\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002403 break;
2404 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002405 dev_dbg(&port->dev, "ControlReg Reading success val is %x, status%d\n", Data, status);
Alan Cox880af9d2008-07-22 11:16:12 +01002406 Data |= 0x08; /* setting driver done bit */
2407 Data |= 0x04; /* sp1_bit to have cts change reflect in
2408 modem status reg */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002409
Alan Cox880af9d2008-07-22 11:16:12 +01002410 /* Data |= 0x20; //rx_disable bit */
Johan Hovold80c00752012-10-25 18:56:34 +02002411 status = mos7840_set_reg_sync(port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002412 mos7840_port->ControlRegOffset, Data);
2413 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002414 dev_dbg(&port->dev, "Writing ControlReg failed(rx_disable) status-0x%x\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002415 break;
2416 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002417 dev_dbg(&port->dev, "ControlReg Writing success(rx_disable) status%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002418
Alan Cox880af9d2008-07-22 11:16:12 +01002419 /* Write default values in DCR (i.e 0x01 in DCR0, 0x05 in DCR2
2420 and 0x24 in DCR3 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002421 Data = 0x01;
Johan Hovold80c00752012-10-25 18:56:34 +02002422 status = mos7840_set_reg_sync(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002423 (__u16) (mos7840_port->DcrRegOffset + 0), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002424 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002425 dev_dbg(&port->dev, "Writing DCR0 failed status-0x%x\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002426 break;
2427 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002428 dev_dbg(&port->dev, "DCR0 Writing success status%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002429
2430 Data = 0x05;
Johan Hovold80c00752012-10-25 18:56:34 +02002431 status = mos7840_set_reg_sync(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002432 (__u16) (mos7840_port->DcrRegOffset + 1), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002433 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002434 dev_dbg(&port->dev, "Writing DCR1 failed status-0x%x\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002435 break;
2436 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002437 dev_dbg(&port->dev, "DCR1 Writing success status%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002438
2439 Data = 0x24;
Johan Hovold80c00752012-10-25 18:56:34 +02002440 status = mos7840_set_reg_sync(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002441 (__u16) (mos7840_port->DcrRegOffset + 2), Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002442 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002443 dev_dbg(&port->dev, "Writing DCR2 failed status-0x%x\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002444 break;
2445 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002446 dev_dbg(&port->dev, "DCR2 Writing success status%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002447
Alan Cox880af9d2008-07-22 11:16:12 +01002448 /* write values in clkstart0x0 and clkmulti 0x20 */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002449 Data = 0x0;
Johan Hovold80c00752012-10-25 18:56:34 +02002450 status = mos7840_set_reg_sync(port,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002451 CLK_START_VALUE_REGISTER, Data);
2452 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002453 dev_dbg(&port->dev, "Writing CLK_START_VALUE_REGISTER failed status-0x%x\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002454 break;
2455 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002456 dev_dbg(&port->dev, "CLK_START_VALUE_REGISTER Writing success status%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002457
2458 Data = 0x20;
Johan Hovold80c00752012-10-25 18:56:34 +02002459 status = mos7840_set_reg_sync(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002460 CLK_MULTI_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002461 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002462 dev_dbg(&port->dev, "Writing CLK_MULTI_REGISTER failed status-0x%x\n", status);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002463 goto error;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002464 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002465 dev_dbg(&port->dev, "CLK_MULTI_REGISTER Writing success status%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002466
Alan Cox880af9d2008-07-22 11:16:12 +01002467 /* write value 0x0 to scratchpad register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002468 Data = 0x00;
Johan Hovold80c00752012-10-25 18:56:34 +02002469 status = mos7840_set_uart_reg(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002470 SCRATCH_PAD_REGISTER, Data);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002471 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002472 dev_dbg(&port->dev, "Writing SCRATCH_PAD_REGISTER failed status-0x%x\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002473 break;
2474 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002475 dev_dbg(&port->dev, "SCRATCH_PAD_REGISTER Writing success status%d\n", status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002476
Alan Cox880af9d2008-07-22 11:16:12 +01002477 /* Zero Length flag register */
Paul B Schroeder3f542972006-08-31 19:41:47 -05002478 if ((mos7840_port->port_num != 1)
Oliver Neukum0de9a702007-03-16 20:28:28 +01002479 && (serial->num_ports == 2)) {
Paul B Schroeder3f542972006-08-31 19:41:47 -05002480
2481 Data = 0xff;
Johan Hovold80c00752012-10-25 18:56:34 +02002482 status = mos7840_set_reg_sync(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002483 (__u16) (ZLP_REG1 +
2484 ((__u16)mos7840_port->port_num)), Data);
Johan Hovold80c00752012-10-25 18:56:34 +02002485 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002486 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num)));
Paul B Schroeder3f542972006-08-31 19:41:47 -05002487 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002488 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 2, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002489 break;
2490 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002491 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 2, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002492 } else {
2493 Data = 0xff;
Johan Hovold80c00752012-10-25 18:56:34 +02002494 status = mos7840_set_reg_sync(port,
Alan Cox880af9d2008-07-22 11:16:12 +01002495 (__u16) (ZLP_REG1 +
2496 ((__u16)mos7840_port->port_num) - 0x1), Data);
Johan Hovold80c00752012-10-25 18:56:34 +02002497 dev_dbg(&port->dev, "ZLIP offset %x\n",
Greg Kroah-Hartman9c134a12012-09-14 16:06:04 -07002498 (__u16)(ZLP_REG1 + ((__u16) mos7840_port->port_num) - 0x1));
Paul B Schroeder3f542972006-08-31 19:41:47 -05002499 if (status < 0) {
Johan Hovold80c00752012-10-25 18:56:34 +02002500 dev_dbg(&port->dev, "Writing ZLP_REG%d failed status-0x%x\n", pnum + 1, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002501 break;
2502 } else
Johan Hovold80c00752012-10-25 18:56:34 +02002503 dev_dbg(&port->dev, "ZLP_REG%d Writing success status%d\n", pnum + 1, status);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002504
2505 }
Oliver Neukum0de9a702007-03-16 20:28:28 +01002506 mos7840_port->control_urb = usb_alloc_urb(0, GFP_KERNEL);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002507 mos7840_port->ctrl_buf = kmalloc(16, GFP_KERNEL);
Alan Cox880af9d2008-07-22 11:16:12 +01002508 mos7840_port->dr = kmalloc(sizeof(struct usb_ctrlrequest),
2509 GFP_KERNEL);
2510 if (!mos7840_port->control_urb || !mos7840_port->ctrl_buf ||
2511 !mos7840_port->dr) {
Oliver Neukum0de9a702007-03-16 20:28:28 +01002512 status = -ENOMEM;
2513 goto error;
2514 }
Donald0eafe4d2012-04-19 15:00:45 +08002515
2516 mos7840_port->has_led = false;
2517
2518 /* Initialize LED timers */
2519 if (device_type == MOSCHIP_DEVICE_ID_7810) {
2520 mos7840_port->has_led = true;
2521
2522 init_timer(&mos7840_port->led_timer1);
2523 mos7840_port->led_timer1.function = mos7840_led_off;
2524 mos7840_port->led_timer1.expires =
2525 jiffies + msecs_to_jiffies(LED_ON_MS);
2526 mos7840_port->led_timer1.data =
2527 (unsigned long)mos7840_port;
2528
2529 init_timer(&mos7840_port->led_timer2);
2530 mos7840_port->led_timer2.function =
2531 mos7840_led_flag_off;
2532 mos7840_port->led_timer2.expires =
2533 jiffies + msecs_to_jiffies(LED_OFF_MS);
2534 mos7840_port->led_timer2.data =
2535 (unsigned long)mos7840_port;
2536
2537 mos7840_port->led_flag = false;
2538
2539 /* Turn off LED */
Johan Hovold80c00752012-10-25 18:56:34 +02002540 mos7840_set_led_sync(port,
Donald0eafe4d2012-04-19 15:00:45 +08002541 MODEM_CONTROL_REGISTER, 0x0300);
2542 }
Johan Hovold80c00752012-10-25 18:56:34 +02002543 } while (0);
2544
2545 if (pnum == serial->num_ports - 1) {
2546 /* Zero Length flag enable */
2547 Data = 0x0f;
2548 status = mos7840_set_reg_sync(serial->port[0], ZLP_REG5, Data);
2549 if (status < 0) {
2550 dev_dbg(&port->dev, "Writing ZLP_REG5 failed status-0x%x\n", status);
2551 goto error;
2552 } else
2553 dev_dbg(&port->dev, "ZLP_REG5 Writing success status%d\n", status);
2554
2555 /* setting configuration feature to one */
2556 usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
2557 0x03, 0x00, 0x01, 0x00, NULL, 0x00,
2558 MOS_WDR_TIMEOUT);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002559 }
Paul B Schroeder3f542972006-08-31 19:41:47 -05002560 return 0;
Oliver Neukum0de9a702007-03-16 20:28:28 +01002561error:
Johan Hovold80c00752012-10-25 18:56:34 +02002562 kfree(mos7840_port->dr);
2563 kfree(mos7840_port->ctrl_buf);
2564 usb_free_urb(mos7840_port->control_urb);
2565 kfree(mos7840_port);
Oliver Neukum0de9a702007-03-16 20:28:28 +01002566
Oliver Neukum0de9a702007-03-16 20:28:28 +01002567 return status;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002568}
2569
Johan Hovold80c00752012-10-25 18:56:34 +02002570static int mos7840_port_remove(struct usb_serial_port *port)
Paul B Schroeder3f542972006-08-31 19:41:47 -05002571{
Paul B Schroeder3f542972006-08-31 19:41:47 -05002572 struct moschip_port *mos7840_port;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002573
Johan Hovold80c00752012-10-25 18:56:34 +02002574 mos7840_port = mos7840_get_port_private(port);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002575
Johan Hovold80c00752012-10-25 18:56:34 +02002576 if (mos7840_port->has_led) {
2577 /* Turn off LED */
2578 mos7840_set_led_sync(port, MODEM_CONTROL_REGISTER, 0x0300);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002579
Johan Hovold80c00752012-10-25 18:56:34 +02002580 del_timer_sync(&mos7840_port->led_timer1);
2581 del_timer_sync(&mos7840_port->led_timer2);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002582 }
Johan Hovold80c00752012-10-25 18:56:34 +02002583 usb_kill_urb(mos7840_port->control_urb);
2584 usb_free_urb(mos7840_port->control_urb);
2585 kfree(mos7840_port->ctrl_buf);
2586 kfree(mos7840_port->dr);
2587 kfree(mos7840_port);
Alan Sternf9c99bb2009-06-02 11:53:55 -04002588
Johan Hovold80c00752012-10-25 18:56:34 +02002589 return 0;
Paul B Schroeder3f542972006-08-31 19:41:47 -05002590}
2591
2592static struct usb_serial_driver moschip7840_4port_device = {
2593 .driver = {
2594 .owner = THIS_MODULE,
2595 .name = "mos7840",
2596 },
2597 .description = DRIVER_DESC,
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002598 .id_table = id_table,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002599 .num_ports = 4,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002600 .open = mos7840_open,
2601 .close = mos7840_close,
2602 .write = mos7840_write,
2603 .write_room = mos7840_write_room,
2604 .chars_in_buffer = mos7840_chars_in_buffer,
2605 .throttle = mos7840_throttle,
2606 .unthrottle = mos7840_unthrottle,
2607 .calc_num_ports = mos7840_calc_num_ports,
2608#ifdef MCSSerialProbe
2609 .probe = mos7840_serial_probe,
2610#endif
2611 .ioctl = mos7840_ioctl,
2612 .set_termios = mos7840_set_termios,
2613 .break_ctl = mos7840_break,
2614 .tiocmget = mos7840_tiocmget,
2615 .tiocmset = mos7840_tiocmset,
Alan Cox0bca1b92010-09-16 18:21:40 +01002616 .get_icount = mos7840_get_icount,
Johan Hovold80c00752012-10-25 18:56:34 +02002617 .port_probe = mos7840_port_probe,
2618 .port_remove = mos7840_port_remove,
Paul B Schroeder3f542972006-08-31 19:41:47 -05002619 .read_bulk_callback = mos7840_bulk_in_callback,
2620 .read_int_callback = mos7840_interrupt_callback,
2621};
2622
Alan Stern4d2a7af2012-02-23 14:57:09 -05002623static struct usb_serial_driver * const serial_drivers[] = {
2624 &moschip7840_4port_device, NULL
2625};
2626
Greg Kroah-Hartman68e24112012-05-08 15:46:14 -07002627module_usb_serial_driver(serial_drivers, id_table);
Paul B Schroeder3f542972006-08-31 19:41:47 -05002628
Paul B Schroeder3f542972006-08-31 19:41:47 -05002629MODULE_DESCRIPTION(DRIVER_DESC);
2630MODULE_LICENSE("GPL");