blob: 7680d5213ff840a095e94b1ce666b41a266617c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/pcmcia/synclink_cs.c
3 *
Paul Fulghuma7482a22005-09-10 00:26:07 -07004 * $Id: synclink_cs.c,v 4.34 2005/09/08 13:20:54 paulkf Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Device driver for Microgate SyncLink PC Card
7 * multiprotocol serial adapter.
8 *
9 * written by Paul Fulghum for Microgate Corporation
10 * paulkf@microgate.com
11 *
12 * Microgate and SyncLink are trademarks of Microgate Corporation
13 *
14 * This code is released under the GNU General Public License (GPL)
15 *
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
20 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
24 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
26 * OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#define VERSION(ver,rel,seq) (((ver)<<16) | ((rel)<<8) | (seq))
30#if defined(__i386__)
31# define BREAKPOINT() asm(" int $3");
32#else
33# define BREAKPOINT() { }
34#endif
35
36#define MAX_DEVICE_COUNT 4
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/module.h>
39#include <linux/errno.h>
40#include <linux/signal.h>
41#include <linux/sched.h>
42#include <linux/timer.h>
43#include <linux/time.h>
44#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/tty.h>
46#include <linux/tty_flip.h>
47#include <linux/serial.h>
48#include <linux/major.h>
49#include <linux/string.h>
50#include <linux/fcntl.h>
51#include <linux/ptrace.h>
52#include <linux/ioport.h>
53#include <linux/mm.h>
Alexey Dobriyan87687142009-03-31 15:19:17 -070054#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/slab.h>
56#include <linux/netdevice.h>
57#include <linux/vmalloc.h>
58#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/delay.h>
60#include <linux/ioctl.h>
Robert P. J. Day3dd12472008-02-06 01:37:17 -080061#include <linux/synclink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <asm/io.h>
64#include <asm/irq.h>
65#include <asm/dma.h>
66#include <linux/bitops.h>
67#include <asm/types.h>
68#include <linux/termios.h>
69#include <linux/workqueue.h>
70#include <linux/hdlc.h>
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <pcmcia/cistpl.h>
73#include <pcmcia/cisreg.h>
74#include <pcmcia/ds.h>
75
Paul Fulghumaf69c7f2006-12-06 20:40:24 -080076#if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_CS_MODULE))
77#define SYNCLINK_GENERIC_HDLC 1
78#else
79#define SYNCLINK_GENERIC_HDLC 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#endif
81
82#define GET_USER(error,value,addr) error = get_user(value,addr)
83#define COPY_FROM_USER(error,dest,src,size) error = copy_from_user(dest,src,size) ? -EFAULT : 0
84#define PUT_USER(error,value,addr) error = put_user(value,addr)
85#define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
86
87#include <asm/uaccess.h>
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static MGSL_PARAMS default_params = {
90 MGSL_MODE_HDLC, /* unsigned long mode */
91 0, /* unsigned char loopback; */
92 HDLC_FLAG_UNDERRUN_ABORT15, /* unsigned short flags; */
93 HDLC_ENCODING_NRZI_SPACE, /* unsigned char encoding; */
94 0, /* unsigned long clock_speed; */
95 0xff, /* unsigned char addr_filter; */
96 HDLC_CRC_16_CCITT, /* unsigned short crc_type; */
97 HDLC_PREAMBLE_LENGTH_8BITS, /* unsigned char preamble_length; */
98 HDLC_PREAMBLE_PATTERN_NONE, /* unsigned char preamble; */
99 9600, /* unsigned long data_rate; */
100 8, /* unsigned char data_bits; */
101 1, /* unsigned char stop_bits; */
102 ASYNC_PARITY_NONE /* unsigned char parity; */
103};
104
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100105typedef struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int count;
107 unsigned char status;
108 char data[1];
109} RXBUF;
110
111/* The queue of BH actions to be performed */
112
113#define BH_RECEIVE 1
114#define BH_TRANSMIT 2
115#define BH_STATUS 4
116
117#define IO_PIN_SHUTDOWN_LIMIT 100
118
119#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
120
121struct _input_signal_events {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400122 int ri_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 int ri_down;
124 int dsr_up;
125 int dsr_down;
126 int dcd_up;
127 int dcd_down;
128 int cts_up;
129 int cts_down;
130};
131
132
133/*
134 * Device instance data structure
135 */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137typedef struct _mgslpc_info {
Alan Coxeeb46132009-01-02 13:48:47 +0000138 struct tty_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 void *if_ptr; /* General purpose pointer (used by SPPP) */
140 int magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int line;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct mgsl_icount icount;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int timeout;
146 int x_char; /* xon/xoff character */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 unsigned char read_status_mask;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400148 unsigned char ignore_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 unsigned char *tx_buf;
151 int tx_put;
152 int tx_get;
153 int tx_count;
154
155 /* circular list of fixed length rx buffers */
156
157 unsigned char *rx_buf; /* memory allocated for all rx buffers */
158 int rx_buf_total_size; /* size of memory allocated for rx buffers */
159 int rx_put; /* index of next empty rx buffer */
160 int rx_get; /* index of next full rx buffer */
161 int rx_buf_size; /* size in bytes of single rx buffer */
162 int rx_buf_count; /* total number of rx buffers */
163 int rx_frame_count; /* number of full rx buffers */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 wait_queue_head_t status_event_wait_q;
166 wait_queue_head_t event_wait_q;
167 struct timer_list tx_timer; /* HDLC transmit timeout timer */
168 struct _mgslpc_info *next_device; /* device list link */
169
170 unsigned short imra_value;
171 unsigned short imrb_value;
172 unsigned char pim_value;
173
174 spinlock_t lock;
175 struct work_struct task; /* task structure for scheduling bh */
176
177 u32 max_frame_size;
178
179 u32 pending_bh;
180
Joe Perches0fab6de2008-04-28 02:14:02 -0700181 bool bh_running;
182 bool bh_requested;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 int dcd_chkcount; /* check counts to prevent */
185 int cts_chkcount; /* too many IRQs if a signal */
186 int dsr_chkcount; /* is floating */
187 int ri_chkcount;
188
Joe Perches0fab6de2008-04-28 02:14:02 -0700189 bool rx_enabled;
190 bool rx_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Joe Perches0fab6de2008-04-28 02:14:02 -0700192 bool tx_enabled;
193 bool tx_active;
194 bool tx_aborting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 u32 idle_mode;
196
197 int if_mode; /* serial interface selection (RS-232, v.35 etc) */
198
199 char device_name[25]; /* device instance name */
200
201 unsigned int io_base; /* base I/O address of adapter */
202 unsigned int irq_level;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 MGSL_PARAMS params; /* communications parameters */
205
206 unsigned char serial_signals; /* current serial signal states */
207
Joe Perches0fab6de2008-04-28 02:14:02 -0700208 bool irq_occurred; /* for diagnostics use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 char testing_irq;
210 unsigned int init_error; /* startup error (DIAGS) */
211
Paul Fulghuma6b68a62012-12-03 11:13:24 -0600212 char *flag_buf;
Joe Perches0fab6de2008-04-28 02:14:02 -0700213 bool drop_rts_on_tx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 struct _input_signal_events input_signal_events;
216
217 /* PCMCIA support */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100218 struct pcmcia_device *p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 int stop;
220
221 /* SPPP/Cisco HDLC device parts */
222 int netcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 spinlock_t netlock;
224
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800225#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 struct net_device *netdev;
227#endif
228
229} MGSLPC_INFO;
230
231#define MGSLPC_MAGIC 0x5402
232
233/*
234 * The size of the serial xmit buffer is 1 page, or 4096 bytes
235 */
236#define TXBUFSIZE 4096
237
Jeff Garzikd12341f2007-10-19 15:45:35 -0400238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239#define CHA 0x00 /* channel A offset */
240#define CHB 0x40 /* channel B offset */
241
242/*
243 * FIXME: PPC has PVR defined in asm/reg.h. For now we just undef it.
244 */
245#undef PVR
246
247#define RXFIFO 0
248#define TXFIFO 0
249#define STAR 0x20
250#define CMDR 0x20
251#define RSTA 0x21
252#define PRE 0x21
253#define MODE 0x22
254#define TIMR 0x23
255#define XAD1 0x24
256#define XAD2 0x25
257#define RAH1 0x26
258#define RAH2 0x27
259#define DAFO 0x27
260#define RAL1 0x28
261#define RFC 0x28
262#define RHCR 0x29
263#define RAL2 0x29
264#define RBCL 0x2a
265#define XBCL 0x2a
266#define RBCH 0x2b
267#define XBCH 0x2b
268#define CCR0 0x2c
269#define CCR1 0x2d
270#define CCR2 0x2e
271#define CCR3 0x2f
272#define VSTR 0x34
273#define BGR 0x34
274#define RLCR 0x35
275#define AML 0x36
276#define AMH 0x37
277#define GIS 0x38
278#define IVA 0x38
279#define IPC 0x39
280#define ISR 0x3a
281#define IMR 0x3a
282#define PVR 0x3c
283#define PIS 0x3d
284#define PIM 0x3d
285#define PCR 0x3e
286#define CCR4 0x3f
Jeff Garzikd12341f2007-10-19 15:45:35 -0400287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288// IMR/ISR
Jeff Garzikd12341f2007-10-19 15:45:35 -0400289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290#define IRQ_BREAK_ON BIT15 // rx break detected
291#define IRQ_DATAOVERRUN BIT14 // receive data overflow
292#define IRQ_ALLSENT BIT13 // all sent
293#define IRQ_UNDERRUN BIT12 // transmit data underrun
294#define IRQ_TIMER BIT11 // timer interrupt
295#define IRQ_CTS BIT10 // CTS status change
296#define IRQ_TXREPEAT BIT9 // tx message repeat
297#define IRQ_TXFIFO BIT8 // transmit pool ready
298#define IRQ_RXEOM BIT7 // receive message end
299#define IRQ_EXITHUNT BIT6 // receive frame start
300#define IRQ_RXTIME BIT6 // rx char timeout
301#define IRQ_DCD BIT2 // carrier detect status change
302#define IRQ_OVERRUN BIT1 // receive frame overflow
303#define IRQ_RXFIFO BIT0 // receive pool full
Jeff Garzikd12341f2007-10-19 15:45:35 -0400304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305// STAR
Jeff Garzikd12341f2007-10-19 15:45:35 -0400306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#define XFW BIT6 // transmit FIFO write enable
308#define CEC BIT2 // command executing
309#define CTS BIT1 // CTS state
Jeff Garzikd12341f2007-10-19 15:45:35 -0400310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311#define PVR_DTR BIT0
312#define PVR_DSR BIT1
313#define PVR_RI BIT2
314#define PVR_AUTOCTS BIT3
315#define PVR_RS232 0x20 /* 0010b */
316#define PVR_V35 0xe0 /* 1110b */
317#define PVR_RS422 0x40 /* 0100b */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400318
319/* Register access functions */
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#define write_reg(info, reg, val) outb((val),(info)->io_base + (reg))
322#define read_reg(info, reg) inb((info)->io_base + (reg))
323
Jeff Garzikd12341f2007-10-19 15:45:35 -0400324#define read_reg16(info, reg) inw((info)->io_base + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#define write_reg16(info, reg, val) outw((val), (info)->io_base + (reg))
Jeff Garzikd12341f2007-10-19 15:45:35 -0400326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#define set_reg_bits(info, reg, mask) \
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100328 write_reg(info, (reg), \
Jeff Garzikd12341f2007-10-19 15:45:35 -0400329 (unsigned char) (read_reg(info, (reg)) | (mask)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#define clear_reg_bits(info, reg, mask) \
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100331 write_reg(info, (reg), \
Jeff Garzikd12341f2007-10-19 15:45:35 -0400332 (unsigned char) (read_reg(info, (reg)) & ~(mask)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/*
334 * interrupt enable/disable routines
Jeff Garzikd12341f2007-10-19 15:45:35 -0400335 */
336static void irq_disable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 if (channel == CHA) {
339 info->imra_value |= mask;
340 write_reg16(info, CHA + IMR, info->imra_value);
341 } else {
342 info->imrb_value |= mask;
343 write_reg16(info, CHB + IMR, info->imrb_value);
344 }
345}
Jeff Garzikd12341f2007-10-19 15:45:35 -0400346static void irq_enable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 if (channel == CHA) {
349 info->imra_value &= ~mask;
350 write_reg16(info, CHA + IMR, info->imra_value);
351 } else {
352 info->imrb_value &= ~mask;
353 write_reg16(info, CHB + IMR, info->imrb_value);
354 }
355}
356
357#define port_irq_disable(info, mask) \
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100358 { info->pim_value |= (mask); write_reg(info, PIM, info->pim_value); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360#define port_irq_enable(info, mask) \
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100361 { info->pim_value &= ~(mask); write_reg(info, PIM, info->pim_value); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363static void rx_start(MGSLPC_INFO *info);
364static void rx_stop(MGSLPC_INFO *info);
365
Alan Coxeeb46132009-01-02 13:48:47 +0000366static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367static void tx_stop(MGSLPC_INFO *info);
368static void tx_set_idle(MGSLPC_INFO *info);
369
370static void get_signals(MGSLPC_INFO *info);
371static void set_signals(MGSLPC_INFO *info);
372
373static void reset_device(MGSLPC_INFO *info);
374
375static void hdlc_mode(MGSLPC_INFO *info);
376static void async_mode(MGSLPC_INFO *info);
377
378static void tx_timeout(unsigned long context);
379
Alan Coxeeb46132009-01-02 13:48:47 +0000380static int carrier_raised(struct tty_port *port);
Alan Coxfcc8ac12009-06-11 12:24:17 +0100381static void dtr_rts(struct tty_port *port, int onoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800383#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#define dev_to_port(D) (dev_to_hdlc(D)->priv)
385static void hdlcdev_tx_done(MGSLPC_INFO *info);
386static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size);
387static int hdlcdev_init(MGSLPC_INFO *info);
388static void hdlcdev_exit(MGSLPC_INFO *info);
389#endif
390
391static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit);
392
Joe Perches0fab6de2008-04-28 02:14:02 -0700393static bool register_test(MGSLPC_INFO *info);
394static bool irq_test(MGSLPC_INFO *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static int adapter_test(MGSLPC_INFO *info);
396
397static int claim_resources(MGSLPC_INFO *info);
398static void release_resources(MGSLPC_INFO *info);
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +0100399static int mgslpc_add_device(MGSLPC_INFO *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static void mgslpc_remove_device(MGSLPC_INFO *info);
401
Alan Coxeeb46132009-01-02 13:48:47 +0000402static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403static void rx_reset_buffers(MGSLPC_INFO *info);
404static int rx_alloc_buffers(MGSLPC_INFO *info);
405static void rx_free_buffers(MGSLPC_INFO *info);
406
David Howells7d12e782006-10-05 14:55:46 +0100407static irqreturn_t mgslpc_isr(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409/*
410 * Bottom half interrupt handlers
411 */
David Howellsc4028952006-11-22 14:57:56 +0000412static void bh_handler(struct work_struct *work);
Alan Coxeeb46132009-01-02 13:48:47 +0000413static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static void bh_status(MGSLPC_INFO *info);
415
416/*
417 * ioctl handlers
418 */
Alan Cox60b33c12011-02-14 16:26:14 +0000419static int tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000420static int tiocmset(struct tty_struct *tty,
421 unsigned int set, unsigned int clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422static int get_stats(MGSLPC_INFO *info, struct mgsl_icount __user *user_icount);
423static int get_params(MGSLPC_INFO *info, MGSL_PARAMS __user *user_params);
Alan Coxeeb46132009-01-02 13:48:47 +0000424static int set_params(MGSLPC_INFO *info, MGSL_PARAMS __user *new_params, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425static int get_txidle(MGSLPC_INFO *info, int __user *idle_mode);
426static int set_txidle(MGSLPC_INFO *info, int idle_mode);
Alan Coxeeb46132009-01-02 13:48:47 +0000427static int set_txenable(MGSLPC_INFO *info, int enable, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428static int tx_abort(MGSLPC_INFO *info);
429static int set_rxenable(MGSLPC_INFO *info, int enable);
430static int wait_events(MGSLPC_INFO *info, int __user *mask);
431
432static MGSLPC_INFO *mgslpc_device_list = NULL;
433static int mgslpc_device_count = 0;
434
435/*
436 * Set this param to non-zero to load eax with the
437 * .text section address and breakpoint on module load.
438 * This is useful for use with gdb and add-symbol-file command.
439 */
Shailendra Verma208250d2015-05-26 01:01:52 +0530440static bool break_on_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442/*
443 * Driver major number, defaults to zero to get auto
444 * assigned major number. May be forced as module parameter.
445 */
446static int ttymajor=0;
447
448static int debug_level = 0;
449static int maxframe[MAX_DEVICE_COUNT] = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451module_param(break_on_load, bool, 0);
452module_param(ttymajor, int, 0);
453module_param(debug_level, int, 0);
454module_param_array(maxframe, int, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456MODULE_LICENSE("GPL");
457
458static char *driver_name = "SyncLink PC Card driver";
Paul Fulghuma7482a22005-09-10 00:26:07 -0700459static char *driver_version = "$Revision: 4.34 $";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461static struct tty_driver *serial_driver;
462
463/* number of characters left in xmit buffer before we ask for more */
464#define WAKEUP_CHARS 256
465
Alan Coxeeb46132009-01-02 13:48:47 +0000466static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout);
468
469/* PCMCIA prototypes */
470
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200471static int mgslpc_config(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472static void mgslpc_release(u_long arg);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100473static void mgslpc_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/*
476 * 1st function defined in .text section. Calling this function in
477 * init_module() followed by a breakpoint allows a remote debugger
478 * (gdb) to get the .text address for the add-symbol-file command.
479 * This allows remote debugging of dynamically loadable modules.
480 */
481static void* mgslpc_get_text_ptr(void)
482{
483 return mgslpc_get_text_ptr;
484}
485
486/**
487 * line discipline callback wrappers
488 *
489 * The wrappers maintain line discipline references
490 * while calling into the line discipline.
491 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 * ldisc_receive_buf - pass receive data to line discipline
493 */
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495static void ldisc_receive_buf(struct tty_struct *tty,
496 const __u8 *data, char *flags, int count)
497{
498 struct tty_ldisc *ld;
499 if (!tty)
500 return;
501 ld = tty_ldisc_ref(tty);
502 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100503 if (ld->ops->receive_buf)
504 ld->ops->receive_buf(tty, data, flags, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 tty_ldisc_deref(ld);
506 }
507}
508
Alan Coxeeb46132009-01-02 13:48:47 +0000509static const struct tty_port_operations mgslpc_port_ops = {
510 .carrier_raised = carrier_raised,
Alan Coxfcc8ac12009-06-11 12:24:17 +0100511 .dtr_rts = dtr_rts
Alan Coxeeb46132009-01-02 13:48:47 +0000512};
513
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200514static int mgslpc_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100516 MGSLPC_INFO *info;
517 int ret;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100518
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100519 if (debug_level >= DEBUG_LEVEL_INFO)
520 printk("mgslpc_attach\n");
Dominik Brodowskifd238232006-03-05 10:45:09 +0100521
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100522 info = kzalloc(sizeof(MGSLPC_INFO), GFP_KERNEL);
523 if (!info) {
524 printk("Error can't allocate device instance data\n");
525 return -ENOMEM;
526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100528 info->magic = MGSLPC_MAGIC;
529 tty_port_init(&info->port);
530 info->port.ops = &mgslpc_port_ops;
531 INIT_WORK(&info->task, bh_handler);
532 info->max_frame_size = 4096;
533 info->port.close_delay = 5*HZ/10;
534 info->port.closing_wait = 30*HZ;
535 init_waitqueue_head(&info->status_event_wait_q);
536 init_waitqueue_head(&info->event_wait_q);
537 spin_lock_init(&info->lock);
538 spin_lock_init(&info->netlock);
539 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
540 info->idle_mode = HDLC_TXIDLE_FLAGS;
541 info->imra_value = 0xffff;
542 info->imrb_value = 0xffff;
543 info->pim_value = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100545 info->p_dev = link;
546 link->priv = info;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100547
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100548 /* Initialize the struct pcmcia_device structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100550 ret = mgslpc_config(link);
551 if (ret != 0)
552 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100554 ret = mgslpc_add_device(info);
555 if (ret != 0)
556 goto failed_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100558 return 0;
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +0100559
560failed_release:
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100561 mgslpc_release((u_long)link);
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +0100562failed:
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100563 tty_port_destroy(&info->port);
564 kfree(info);
565 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568/* Card has been inserted.
569 */
570
Dominik Brodowski00990e72010-07-30 13:13:46 +0200571static int mgslpc_ioprobe(struct pcmcia_device *p_dev, void *priv_data)
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200572{
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200573 return pcmcia_request_io(p_dev);
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200574}
575
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200576static int mgslpc_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100578 MGSLPC_INFO *info = link->priv;
579 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400580
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100581 if (debug_level >= DEBUG_LEVEL_INFO)
582 printk("mgslpc_config(0x%p)\n", link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100584 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
Dominik Brodowski00990e72010-07-30 13:13:46 +0200585
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100586 ret = pcmcia_loop_config(link, mgslpc_ioprobe, NULL);
587 if (ret != 0)
588 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100590 link->config_index = 8;
591 link->config_regs = PRESENT_OPTION;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400592
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100593 ret = pcmcia_request_irq(link, mgslpc_isr);
594 if (ret)
595 goto failed;
596 ret = pcmcia_enable_device(link);
597 if (ret)
598 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100600 info->io_base = link->resource[0]->start;
601 info->irq_level = link->irq;
602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200604failed:
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100605 mgslpc_release((u_long)link);
606 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/* Card has been removed.
610 * Unregister device and release PCMCIA configuration.
611 * If device is open, postpone until it is closed.
612 */
613static void mgslpc_release(u_long arg)
614{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100615 struct pcmcia_device *link = (struct pcmcia_device *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100617 if (debug_level >= DEBUG_LEVEL_INFO)
618 printk("mgslpc_release(0x%p)\n", link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100620 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200623static void mgslpc_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100625 if (debug_level >= DEBUG_LEVEL_INFO)
626 printk("mgslpc_detach(0x%p)\n", link);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100627
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100628 ((MGSLPC_INFO *)link->priv)->stop = 1;
629 mgslpc_release((u_long)link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100631 mgslpc_remove_device((MGSLPC_INFO *)link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200634static int mgslpc_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100635{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100636 MGSLPC_INFO *info = link->priv;
637
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100638 info->stop = 1;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100639
640 return 0;
641}
642
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200643static int mgslpc_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100644{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100645 MGSLPC_INFO *info = link->priv;
646
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100647 info->stop = 0;
648
649 return 0;
650}
651
652
Joe Perches0fab6de2008-04-28 02:14:02 -0700653static inline bool mgslpc_paranoia_check(MGSLPC_INFO *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 char *name, const char *routine)
655{
656#ifdef MGSLPC_PARANOIA_CHECK
657 static const char *badmagic =
658 "Warning: bad magic number for mgsl struct (%s) in %s\n";
659 static const char *badinfo =
660 "Warning: null mgslpc_info for (%s) in %s\n";
661
662 if (!info) {
663 printk(badinfo, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700664 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 if (info->magic != MGSLPC_MAGIC) {
667 printk(badmagic, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700668 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670#else
671 if (!info)
Joe Perches0fab6de2008-04-28 02:14:02 -0700672 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673#endif
Joe Perches0fab6de2008-04-28 02:14:02 -0700674 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
677
678#define CMD_RXFIFO BIT7 // release current rx FIFO
679#define CMD_RXRESET BIT6 // receiver reset
680#define CMD_RXFIFO_READ BIT5
681#define CMD_START_TIMER BIT4
682#define CMD_TXFIFO BIT3 // release current tx FIFO
683#define CMD_TXEOM BIT1 // transmit end message
684#define CMD_TXRESET BIT0 // transmit reset
685
Joe Perches0fab6de2008-04-28 02:14:02 -0700686static bool wait_command_complete(MGSLPC_INFO *info, unsigned char channel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 int i = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400689 /* wait for command completion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 while (read_reg(info, (unsigned char)(channel+STAR)) & BIT2) {
691 udelay(1);
692 if (i++ == 1000)
Joe Perches0fab6de2008-04-28 02:14:02 -0700693 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700695 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Jeff Garzikd12341f2007-10-19 15:45:35 -0400698static void issue_command(MGSLPC_INFO *info, unsigned char channel, unsigned char cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 wait_command_complete(info, channel);
701 write_reg(info, (unsigned char) (channel + CMDR), cmd);
702}
703
704static void tx_pause(struct tty_struct *tty)
705{
706 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
707 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (mgslpc_paranoia_check(info, tty->name, "tx_pause"))
710 return;
711 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100712 printk("tx_pause(%s)\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400713
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100714 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (info->tx_enabled)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100716 tx_stop(info);
717 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
720static void tx_release(struct tty_struct *tty)
721{
722 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
723 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (mgslpc_paranoia_check(info, tty->name, "tx_release"))
726 return;
727 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100728 printk("tx_release(%s)\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400729
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100730 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (!info->tx_enabled)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100732 tx_start(info, tty);
733 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736/* Return next bottom half action to perform.
737 * or 0 if nothing to do.
738 */
739static int bh_action(MGSLPC_INFO *info)
740{
741 unsigned long flags;
742 int rc = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400743
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100744 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 if (info->pending_bh & BH_RECEIVE) {
747 info->pending_bh &= ~BH_RECEIVE;
748 rc = BH_RECEIVE;
749 } else if (info->pending_bh & BH_TRANSMIT) {
750 info->pending_bh &= ~BH_TRANSMIT;
751 rc = BH_TRANSMIT;
752 } else if (info->pending_bh & BH_STATUS) {
753 info->pending_bh &= ~BH_STATUS;
754 rc = BH_STATUS;
755 }
756
757 if (!rc) {
758 /* Mark BH routine as complete */
Joe Perches0fab6de2008-04-28 02:14:02 -0700759 info->bh_running = false;
760 info->bh_requested = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400762
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100763 spin_unlock_irqrestore(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return rc;
766}
767
David Howellsc4028952006-11-22 14:57:56 +0000768static void bh_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
David Howellsc4028952006-11-22 14:57:56 +0000770 MGSLPC_INFO *info = container_of(work, MGSLPC_INFO, task);
Alan Coxeeb46132009-01-02 13:48:47 +0000771 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 int action;
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (debug_level >= DEBUG_LEVEL_BH)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100775 printk("%s(%d):bh_handler(%s) entry\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 __FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400777
Joe Perches0fab6de2008-04-28 02:14:02 -0700778 info->bh_running = true;
Alan Coxeeb46132009-01-02 13:48:47 +0000779 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 while((action = bh_action(info)) != 0) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /* Process work item */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100784 if (debug_level >= DEBUG_LEVEL_BH)
785 printk("%s(%d):bh_handler() work item action=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 __FILE__,__LINE__,action);
787
788 switch (action) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 case BH_RECEIVE:
Alan Coxeeb46132009-01-02 13:48:47 +0000791 while(rx_get_frame(info, tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 break;
793 case BH_TRANSMIT:
Alan Coxeeb46132009-01-02 13:48:47 +0000794 bh_transmit(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 break;
796 case BH_STATUS:
797 bh_status(info);
798 break;
799 default:
800 /* unknown work item ID */
801 printk("Unknown work item ID=%08X!\n", action);
802 break;
803 }
804 }
805
Alan Coxeeb46132009-01-02 13:48:47 +0000806 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (debug_level >= DEBUG_LEVEL_BH)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100808 printk("%s(%d):bh_handler(%s) exit\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 __FILE__,__LINE__,info->device_name);
810}
811
Alan Coxeeb46132009-01-02 13:48:47 +0000812static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (debug_level >= DEBUG_LEVEL_BH)
815 printk("bh_transmit() entry on %s\n", info->device_name);
816
Jiri Slabyb963a842007-02-10 01:44:55 -0800817 if (tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Peter Hagervallcdaad342006-06-23 02:06:04 -0700821static void bh_status(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 info->ri_chkcount = 0;
824 info->dsr_chkcount = 0;
825 info->dcd_chkcount = 0;
826 info->cts_chkcount = 0;
827}
828
Jeff Garzikd12341f2007-10-19 15:45:35 -0400829/* eom: non-zero = end of frame */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830static void rx_ready_hdlc(MGSLPC_INFO *info, int eom)
831{
832 unsigned char data[2];
833 unsigned char fifo_count, read_count, i;
834 RXBUF *buf = (RXBUF*)(info->rx_buf + (info->rx_put * info->rx_buf_size));
835
836 if (debug_level >= DEBUG_LEVEL_ISR)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100837 printk("%s(%d):rx_ready_hdlc(eom=%d)\n", __FILE__, __LINE__, eom);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (!info->rx_enabled)
840 return;
841
842 if (info->rx_frame_count >= info->rx_buf_count) {
843 /* no more free buffers */
844 issue_command(info, CHA, CMD_RXRESET);
845 info->pending_bh |= BH_RECEIVE;
Joe Perches0fab6de2008-04-28 02:14:02 -0700846 info->rx_overflow = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 info->icount.buf_overrun++;
848 return;
849 }
850
851 if (eom) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400852 /* end of frame, get FIFO count from RBCL register */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100853 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
854 if (fifo_count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 fifo_count = 32;
856 } else
857 fifo_count = 32;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 do {
860 if (fifo_count == 1) {
861 read_count = 1;
862 data[0] = read_reg(info, CHA + RXFIFO);
863 } else {
864 read_count = 2;
865 *((unsigned short *) data) = read_reg16(info, CHA + RXFIFO);
866 }
867 fifo_count -= read_count;
868 if (!fifo_count && eom)
869 buf->status = data[--read_count];
870
871 for (i = 0; i < read_count; i++) {
872 if (buf->count >= info->max_frame_size) {
873 /* frame too large, reset receiver and reset current buffer */
874 issue_command(info, CHA, CMD_RXRESET);
875 buf->count = 0;
876 return;
877 }
878 *(buf->data + buf->count) = data[i];
879 buf->count++;
880 }
881 } while (fifo_count);
882
883 if (eom) {
884 info->pending_bh |= BH_RECEIVE;
885 info->rx_frame_count++;
886 info->rx_put++;
887 if (info->rx_put >= info->rx_buf_count)
888 info->rx_put = 0;
889 }
890 issue_command(info, CHA, CMD_RXFIFO);
891}
892
Jiri Slaby2e124b42013-01-03 15:53:06 +0100893static void rx_ready_async(MGSLPC_INFO *info, int tcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Jiri Slaby227434f2013-01-03 15:53:01 +0100895 struct tty_port *port = &info->port;
Alan Cox33f0f882006-01-09 20:54:13 -0800896 unsigned char data, status, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 int fifo_count;
Alan Cox33f0f882006-01-09 20:54:13 -0800898 int work = 0;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +0100899 struct mgsl_icount *icount = &info->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 if (tcd) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400902 /* early termination, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
904
905 /* Zero fifo count could mean 0 or 32 bytes available.
906 * If BIT5 of STAR is set then at least 1 byte is available.
907 */
908 if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
909 fifo_count = 32;
910 } else
911 fifo_count = 32;
Alan Cox33f0f882006-01-09 20:54:13 -0800912
Jiri Slaby227434f2013-01-03 15:53:01 +0100913 tty_buffer_request_room(port, fifo_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400914 /* Flush received async data to receive data buffer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 while (fifo_count) {
916 data = read_reg(info, CHA + RXFIFO);
917 status = read_reg(info, CHA + RXFIFO);
918 fifo_count -= 2;
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 icount->rx++;
Alan Cox33f0f882006-01-09 20:54:13 -0800921 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 // if no frameing/crc error then save data
924 // BIT7:parity error
925 // BIT6:framing error
926
927 if (status & (BIT7 + BIT6)) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400928 if (status & BIT7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 icount->parity++;
930 else
931 icount->frame++;
932
933 /* discard char if tty control flags say so */
934 if (status & info->ignore_status_mask)
935 continue;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 status &= info->read_status_mask;
938
939 if (status & BIT7)
Alan Cox33f0f882006-01-09 20:54:13 -0800940 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 else if (status & BIT6)
Alan Cox33f0f882006-01-09 20:54:13 -0800942 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Jiri Slaby92a19f92013-01-03 15:53:03 +0100944 work += tty_insert_flip_char(port, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946 issue_command(info, CHA, CMD_RXFIFO);
947
948 if (debug_level >= DEBUG_LEVEL_ISR) {
Alan Cox33f0f882006-01-09 20:54:13 -0800949 printk("%s(%d):rx_ready_async",
950 __FILE__,__LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
952 __FILE__,__LINE__,icount->rx,icount->brk,
953 icount->parity,icount->frame,icount->overrun);
954 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400955
Alan Cox33f0f882006-01-09 20:54:13 -0800956 if (work)
Jiri Slaby2e124b42013-01-03 15:53:06 +0100957 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960
Alan Coxeeb46132009-01-02 13:48:47 +0000961static void tx_done(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 if (!info->tx_active)
964 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400965
Joe Perches0fab6de2008-04-28 02:14:02 -0700966 info->tx_active = false;
967 info->tx_aborting = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 if (info->params.mode == MGSL_MODE_ASYNC)
970 return;
971
972 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400973 del_timer(&info->tx_timer);
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (info->drop_rts_on_tx_done) {
976 get_signals(info);
977 if (info->serial_signals & SerialSignal_RTS) {
978 info->serial_signals &= ~SerialSignal_RTS;
979 set_signals(info);
980 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700981 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800984#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (info->netcount)
986 hdlcdev_tx_done(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400987 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988#endif
989 {
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +0400990 if (tty && (tty->stopped || tty->hw_stopped)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 tx_stop(info);
992 return;
993 }
994 info->pending_bh |= BH_TRANSMIT;
995 }
996}
997
Alan Coxeeb46132009-01-02 13:48:47 +0000998static void tx_ready(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 unsigned char fifo_count = 32;
1001 int c;
1002
1003 if (debug_level >= DEBUG_LEVEL_ISR)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001004 printk("%s(%d):tx_ready(%s)\n", __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 if (info->params.mode == MGSL_MODE_HDLC) {
1007 if (!info->tx_active)
1008 return;
1009 } else {
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001010 if (tty && (tty->stopped || tty->hw_stopped)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 tx_stop(info);
1012 return;
1013 }
1014 if (!info->tx_count)
Joe Perches0fab6de2008-04-28 02:14:02 -07001015 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017
1018 if (!info->tx_count)
1019 return;
1020
1021 while (info->tx_count && fifo_count) {
1022 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (c == 1) {
1025 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
1026 } else {
1027 write_reg16(info, CHA + TXFIFO,
1028 *((unsigned short*)(info->tx_buf + info->tx_get)));
1029 }
1030 info->tx_count -= c;
1031 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1032 fifo_count -= c;
1033 }
1034
1035 if (info->params.mode == MGSL_MODE_ASYNC) {
1036 if (info->tx_count < WAKEUP_CHARS)
1037 info->pending_bh |= BH_TRANSMIT;
1038 issue_command(info, CHA, CMD_TXFIFO);
1039 } else {
1040 if (info->tx_count)
1041 issue_command(info, CHA, CMD_TXFIFO);
1042 else
1043 issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
1044 }
1045}
1046
Alan Coxeeb46132009-01-02 13:48:47 +00001047static void cts_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 get_signals(info);
1050 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1051 irq_disable(info, CHB, IRQ_CTS);
1052 info->icount.cts++;
1053 if (info->serial_signals & SerialSignal_CTS)
1054 info->input_signal_events.cts_up++;
1055 else
1056 info->input_signal_events.cts_down++;
1057 wake_up_interruptible(&info->status_event_wait_q);
1058 wake_up_interruptible(&info->event_wait_q);
1059
Linus Torvalds3498d132012-10-01 12:26:52 -07001060 if (tty && tty_port_cts_enabled(&info->port)) {
Alan Coxeeb46132009-01-02 13:48:47 +00001061 if (tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (info->serial_signals & SerialSignal_CTS) {
1063 if (debug_level >= DEBUG_LEVEL_ISR)
1064 printk("CTS tx start...");
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001065 tty->hw_stopped = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001066 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 info->pending_bh |= BH_TRANSMIT;
1068 return;
1069 }
1070 } else {
1071 if (!(info->serial_signals & SerialSignal_CTS)) {
1072 if (debug_level >= DEBUG_LEVEL_ISR)
1073 printk("CTS tx stop...");
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001074 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 tx_stop(info);
1076 }
1077 }
1078 }
1079 info->pending_bh |= BH_STATUS;
1080}
1081
Alan Coxeeb46132009-01-02 13:48:47 +00001082static void dcd_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 get_signals(info);
1085 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1086 irq_disable(info, CHB, IRQ_DCD);
1087 info->icount.dcd++;
1088 if (info->serial_signals & SerialSignal_DCD) {
1089 info->input_signal_events.dcd_up++;
1090 }
1091 else
1092 info->input_signal_events.dcd_down++;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08001093#if SYNCLINK_GENERIC_HDLC
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07001094 if (info->netcount) {
1095 if (info->serial_signals & SerialSignal_DCD)
1096 netif_carrier_on(info->netdev);
1097 else
1098 netif_carrier_off(info->netdev);
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#endif
1101 wake_up_interruptible(&info->status_event_wait_q);
1102 wake_up_interruptible(&info->event_wait_q);
1103
Alan Coxeeb46132009-01-02 13:48:47 +00001104 if (info->port.flags & ASYNC_CHECK_CD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (debug_level >= DEBUG_LEVEL_ISR)
1106 printk("%s CD now %s...", info->device_name,
1107 (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
1108 if (info->serial_signals & SerialSignal_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001109 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 else {
1111 if (debug_level >= DEBUG_LEVEL_ISR)
1112 printk("doing serial hangup...");
Alan Coxeeb46132009-01-02 13:48:47 +00001113 if (tty)
1114 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116 }
1117 info->pending_bh |= BH_STATUS;
1118}
1119
1120static void dsr_change(MGSLPC_INFO *info)
1121{
1122 get_signals(info);
1123 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1124 port_irq_disable(info, PVR_DSR);
1125 info->icount.dsr++;
1126 if (info->serial_signals & SerialSignal_DSR)
1127 info->input_signal_events.dsr_up++;
1128 else
1129 info->input_signal_events.dsr_down++;
1130 wake_up_interruptible(&info->status_event_wait_q);
1131 wake_up_interruptible(&info->event_wait_q);
1132 info->pending_bh |= BH_STATUS;
1133}
1134
1135static void ri_change(MGSLPC_INFO *info)
1136{
1137 get_signals(info);
1138 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1139 port_irq_disable(info, PVR_RI);
1140 info->icount.rng++;
1141 if (info->serial_signals & SerialSignal_RI)
1142 info->input_signal_events.ri_up++;
1143 else
1144 info->input_signal_events.ri_down++;
1145 wake_up_interruptible(&info->status_event_wait_q);
1146 wake_up_interruptible(&info->event_wait_q);
1147 info->pending_bh |= BH_STATUS;
1148}
1149
1150/* Interrupt service routine entry point.
Jeff Garzikd12341f2007-10-19 15:45:35 -04001151 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001153 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 * irq interrupt number that caused interrupt
1155 * dev_id device ID supplied during interrupt registration
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
Jeff Garzika6f97b22007-10-31 05:20:49 -04001157static irqreturn_t mgslpc_isr(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Jeff Garzika6f97b22007-10-31 05:20:49 -04001159 MGSLPC_INFO *info = dev_id;
Alan Coxeeb46132009-01-02 13:48:47 +00001160 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 unsigned short isr;
1162 unsigned char gis, pis;
1163 int count=0;
1164
Jeff Garzikd12341f2007-10-19 15:45:35 -04001165 if (debug_level >= DEBUG_LEVEL_ISR)
Jeff Garzika6f97b22007-10-31 05:20:49 -04001166 printk("mgslpc_isr(%d) entry.\n", info->irq_level);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001167
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001168 if (!(info->p_dev->_locked))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return IRQ_HANDLED;
1170
Alan Coxeeb46132009-01-02 13:48:47 +00001171 tty = tty_port_tty_get(&info->port);
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 spin_lock(&info->lock);
1174
1175 while ((gis = read_reg(info, CHA + GIS))) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001176 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);
1178
1179 if ((gis & 0x70) || count > 1000) {
1180 printk("synclink_cs:hardware failed or ejected\n");
1181 break;
1182 }
1183 count++;
1184
Alexandru Juncuecda0402013-07-19 11:24:03 +03001185 if (gis & (BIT1 | BIT0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 isr = read_reg16(info, CHB + ISR);
1187 if (isr & IRQ_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001188 dcd_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (isr & IRQ_CTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001190 cts_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
Alexandru Juncuecda0402013-07-19 11:24:03 +03001192 if (gis & (BIT3 | BIT2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 {
1194 isr = read_reg16(info, CHA + ISR);
1195 if (isr & IRQ_TIMER) {
Joe Perches0fab6de2008-04-28 02:14:02 -07001196 info->irq_occurred = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 irq_disable(info, CHA, IRQ_TIMER);
1198 }
1199
Jeff Garzikd12341f2007-10-19 15:45:35 -04001200 /* receive IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (isr & IRQ_EXITHUNT) {
1202 info->icount.exithunt++;
1203 wake_up_interruptible(&info->event_wait_q);
1204 }
1205 if (isr & IRQ_BREAK_ON) {
1206 info->icount.brk++;
Alan Coxeeb46132009-01-02 13:48:47 +00001207 if (info->port.flags & ASYNC_SAK)
1208 do_SAK(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210 if (isr & IRQ_RXTIME) {
1211 issue_command(info, CHA, CMD_RXFIFO_READ);
1212 }
Alexandru Juncuecda0402013-07-19 11:24:03 +03001213 if (isr & (IRQ_RXEOM | IRQ_RXFIFO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (info->params.mode == MGSL_MODE_HDLC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04001215 rx_ready_hdlc(info, isr & IRQ_RXEOM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 else
Jiri Slaby2e124b42013-01-03 15:53:06 +01001217 rx_ready_async(info, isr & IRQ_RXEOM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219
Jeff Garzikd12341f2007-10-19 15:45:35 -04001220 /* transmit IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (isr & IRQ_UNDERRUN) {
1222 if (info->tx_aborting)
1223 info->icount.txabort++;
1224 else
1225 info->icount.txunder++;
Alan Coxeeb46132009-01-02 13:48:47 +00001226 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228 else if (isr & IRQ_ALLSENT) {
1229 info->icount.txok++;
Alan Coxeeb46132009-01-02 13:48:47 +00001230 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232 else if (isr & IRQ_TXFIFO)
Alan Coxeeb46132009-01-02 13:48:47 +00001233 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235 if (gis & BIT7) {
1236 pis = read_reg(info, CHA + PIS);
1237 if (pis & BIT1)
1238 dsr_change(info);
1239 if (pis & BIT2)
1240 ri_change(info);
1241 }
1242 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001243
1244 /* Request bottom half processing if there's something
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * for it to do and the bh is not already running
1246 */
1247
1248 if (info->pending_bh && !info->bh_running && !info->bh_requested) {
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001249 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 printk("%s(%d):%s queueing bh task.\n",
1251 __FILE__,__LINE__,info->device_name);
1252 schedule_work(&info->task);
Joe Perches0fab6de2008-04-28 02:14:02 -07001253 info->bh_requested = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255
1256 spin_unlock(&info->lock);
Alan Coxeeb46132009-01-02 13:48:47 +00001257 tty_kref_put(tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001258
1259 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 printk("%s(%d):mgslpc_isr(%d)exit.\n",
Jeff Garzika6f97b22007-10-31 05:20:49 -04001261 __FILE__, __LINE__, info->irq_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 return IRQ_HANDLED;
1264}
1265
1266/* Initialize and start device.
1267 */
Alan Coxeeb46132009-01-02 13:48:47 +00001268static int startup(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 int retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001273 printk("%s(%d):startup(%s)\n", __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001274
Alan Coxeeb46132009-01-02 13:48:47 +00001275 if (info->port.flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (!info->tx_buf) {
1279 /* allocate a page of memory for a transmit buffer */
1280 info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1281 if (!info->tx_buf) {
1282 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001283 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return -ENOMEM;
1285 }
1286 }
1287
1288 info->pending_bh = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001289
Paul Fulghuma7482a22005-09-10 00:26:07 -07001290 memset(&info->icount, 0, sizeof(info->icount));
1291
Jiri Slaby40565f12007-02-12 00:52:31 -08001292 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 /* Allocate and claim adapter resources */
1295 retval = claim_resources(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001296
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001297 /* perform existence check and diagnostics */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001298 if (!retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 retval = adapter_test(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001300
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001301 if (retval) {
1302 if (capable(CAP_SYS_ADMIN) && tty)
Alan Coxeeb46132009-01-02 13:48:47 +00001303 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 release_resources(info);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001305 return retval;
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 /* program hardware for current parameters */
Alan Coxeeb46132009-01-02 13:48:47 +00001309 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001310
Alan Coxeeb46132009-01-02 13:48:47 +00001311 if (tty)
1312 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Alan Coxeeb46132009-01-02 13:48:47 +00001314 info->port.flags |= ASYNC_INITIALIZED;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 return 0;
1317}
1318
1319/* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1320 */
Alan Coxeeb46132009-01-02 13:48:47 +00001321static void shutdown(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
1323 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001324
Alan Coxeeb46132009-01-02 13:48:47 +00001325 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return;
1327
1328 if (debug_level >= DEBUG_LEVEL_INFO)
1329 printk("%s(%d):mgslpc_shutdown(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001330 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 /* clear status wait queue because status changes */
1333 /* can't happen after shutting down the hardware */
1334 wake_up_interruptible(&info->status_event_wait_q);
1335 wake_up_interruptible(&info->event_wait_q);
1336
Jiri Slaby40565f12007-02-12 00:52:31 -08001337 del_timer_sync(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 if (info->tx_buf) {
1340 free_page((unsigned long) info->tx_buf);
1341 info->tx_buf = NULL;
1342 }
1343
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001344 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 rx_stop(info);
1347 tx_stop(info);
1348
1349 /* TODO:disable interrupts instead of reset to preserve signal states */
1350 reset_device(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001351
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001352 if (!tty || tty->termios.c_cflag & HUPCL) {
Joe Perches9fe80742013-01-27 18:21:00 -08001353 info->serial_signals &= ~(SerialSignal_RTS | SerialSignal_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 set_signals(info);
1355 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001356
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001357 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Jeff Garzikd12341f2007-10-19 15:45:35 -04001359 release_resources(info);
1360
Alan Coxeeb46132009-01-02 13:48:47 +00001361 if (tty)
1362 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Alan Coxeeb46132009-01-02 13:48:47 +00001364 info->port.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Alan Coxeeb46132009-01-02 13:48:47 +00001367static void mgslpc_program_hw(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 unsigned long flags;
1370
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001371 spin_lock_irqsave(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 rx_stop(info);
1374 tx_stop(info);
1375 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
1378 hdlc_mode(info);
1379 else
1380 async_mode(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 set_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 info->dcd_chkcount = 0;
1385 info->cts_chkcount = 0;
1386 info->ri_chkcount = 0;
1387 info->dsr_chkcount = 0;
1388
1389 irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
1390 port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
1391 get_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001392
Alan Cox373f5ae2012-07-19 12:23:28 +01001393 if (info->netcount || (tty && (tty->termios.c_cflag & CREAD)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 rx_start(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001395
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001396 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
1399/* Reconfigure adapter based on new parameters
1400 */
Alan Coxeeb46132009-01-02 13:48:47 +00001401static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
1403 unsigned cflag;
1404 int bits_per_char;
1405
Alan Cox373f5ae2012-07-19 12:23:28 +01001406 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (debug_level >= DEBUG_LEVEL_INFO)
1410 printk("%s(%d):mgslpc_change_params(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001411 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001412
Alan Cox373f5ae2012-07-19 12:23:28 +01001413 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Joe Perches9fe80742013-01-27 18:21:00 -08001415 /* if B0 rate (hangup) specified then negate RTS and DTR */
1416 /* otherwise assert RTS and DTR */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001417 if (cflag & CBAUD)
Joe Perches9fe80742013-01-27 18:21:00 -08001418 info->serial_signals |= SerialSignal_RTS | SerialSignal_DTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 else
Joe Perches9fe80742013-01-27 18:21:00 -08001420 info->serial_signals &= ~(SerialSignal_RTS | SerialSignal_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /* byte size and parity */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 switch (cflag & CSIZE) {
1425 case CS5: info->params.data_bits = 5; break;
1426 case CS6: info->params.data_bits = 6; break;
1427 case CS7: info->params.data_bits = 7; break;
1428 case CS8: info->params.data_bits = 8; break;
1429 default: info->params.data_bits = 7; break;
1430 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (cflag & CSTOPB)
1433 info->params.stop_bits = 2;
1434 else
1435 info->params.stop_bits = 1;
1436
1437 info->params.parity = ASYNC_PARITY_NONE;
1438 if (cflag & PARENB) {
1439 if (cflag & PARODD)
1440 info->params.parity = ASYNC_PARITY_ODD;
1441 else
1442 info->params.parity = ASYNC_PARITY_EVEN;
1443#ifdef CMSPAR
1444 if (cflag & CMSPAR)
1445 info->params.parity = ASYNC_PARITY_SPACE;
1446#endif
1447 }
1448
1449 /* calculate number of jiffies to transmit a full
1450 * FIFO (32 bytes) at specified data rate
1451 */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001452 bits_per_char = info->params.data_bits +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 info->params.stop_bits + 1;
1454
1455 /* if port data rate is set to 460800 or less then
1456 * allow tty settings to override, otherwise keep the
1457 * current data rate.
1458 */
1459 if (info->params.data_rate <= 460800) {
Alan Coxeeb46132009-01-02 13:48:47 +00001460 info->params.data_rate = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001462
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001463 if (info->params.data_rate) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001464 info->timeout = (32*HZ*bits_per_char) /
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 info->params.data_rate;
1466 }
1467 info->timeout += HZ/50; /* Add .02 seconds of slop */
1468
1469 if (cflag & CRTSCTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001470 info->port.flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 else
Alan Coxeeb46132009-01-02 13:48:47 +00001472 info->port.flags &= ~ASYNC_CTS_FLOW;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (cflag & CLOCAL)
Alan Coxeeb46132009-01-02 13:48:47 +00001475 info->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 else
Alan Coxeeb46132009-01-02 13:48:47 +00001477 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 /* process tty input control flags */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 info->read_status_mask = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001482 if (I_INPCK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 info->read_status_mask |= BIT7 | BIT6;
Alan Coxeeb46132009-01-02 13:48:47 +00001484 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 info->ignore_status_mask |= BIT7 | BIT6;
1486
Alan Coxeeb46132009-01-02 13:48:47 +00001487 mgslpc_program_hw(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
1490/* Add a character to the transmit buffer
1491 */
Alan Coxd7e752e2008-04-30 00:54:04 -07001492static int mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
1494 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1495 unsigned long flags;
1496
1497 if (debug_level >= DEBUG_LEVEL_INFO) {
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001498 printk("%s(%d):mgslpc_put_char(%d) on %s\n",
1499 __FILE__, __LINE__, ch, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501
1502 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
Alan Coxd7e752e2008-04-30 00:54:04 -07001503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001505 if (!info->tx_buf)
Alan Coxd7e752e2008-04-30 00:54:04 -07001506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001508 spin_lock_irqsave(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
1511 if (info->tx_count < TXBUFSIZE - 1) {
1512 info->tx_buf[info->tx_put++] = ch;
1513 info->tx_put &= TXBUFSIZE-1;
1514 info->tx_count++;
1515 }
1516 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001517
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001518 spin_unlock_irqrestore(&info->lock, flags);
Alan Coxd7e752e2008-04-30 00:54:04 -07001519 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
1522/* Enable transmitter so remaining characters in the
1523 * transmit buffer are sent.
1524 */
1525static void mgslpc_flush_chars(struct tty_struct *tty)
1526{
1527 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1528 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001531 printk("%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1532 __FILE__, __LINE__, info->device_name, info->tx_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
1535 return;
1536
1537 if (info->tx_count <= 0 || tty->stopped ||
1538 tty->hw_stopped || !info->tx_buf)
1539 return;
1540
1541 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001542 printk("%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1543 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001545 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (!info->tx_active)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001547 tx_start(info, tty);
1548 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
1551/* Send a block of data
Jeff Garzikd12341f2007-10-19 15:45:35 -04001552 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001554 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 * tty pointer to tty information structure
1556 * buf pointer to buffer containing send data
1557 * count size of send data in bytes
Jeff Garzikd12341f2007-10-19 15:45:35 -04001558 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 * Returns: number of characters written
1560 */
1561static int mgslpc_write(struct tty_struct * tty,
1562 const unsigned char *buf, int count)
1563{
1564 int c, ret = 0;
1565 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1566 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001569 printk("%s(%d):mgslpc_write(%s) count=%d\n",
1570 __FILE__, __LINE__, info->device_name, count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001573 !info->tx_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 goto cleanup;
1575
1576 if (info->params.mode == MGSL_MODE_HDLC) {
1577 if (count > TXBUFSIZE) {
1578 ret = -EIO;
1579 goto cleanup;
1580 }
1581 if (info->tx_active)
1582 goto cleanup;
1583 else if (info->tx_count)
1584 goto start;
1585 }
1586
1587 for (;;) {
1588 c = min(count,
1589 min(TXBUFSIZE - info->tx_count - 1,
1590 TXBUFSIZE - info->tx_put));
1591 if (c <= 0)
1592 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 memcpy(info->tx_buf + info->tx_put, buf, c);
1595
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001596 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1598 info->tx_count += c;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001599 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 buf += c;
1602 count -= c;
1603 ret += c;
1604 }
1605start:
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001606 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
1607 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (!info->tx_active)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001609 tx_start(info, tty);
1610 spin_unlock_irqrestore(&info->lock, flags);
1611 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001612cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001614 printk("%s(%d):mgslpc_write(%s) returning=%d\n",
1615 __FILE__, __LINE__, info->device_name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return ret;
1617}
1618
1619/* Return the count of free bytes in transmit buffer
1620 */
1621static int mgslpc_write_room(struct tty_struct *tty)
1622{
1623 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1624 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
1627 return 0;
1628
1629 if (info->params.mode == MGSL_MODE_HDLC) {
1630 /* HDLC (frame oriented) mode */
1631 if (info->tx_active)
1632 return 0;
1633 else
1634 return HDLC_MAX_FRAME_SIZE;
1635 } else {
1636 ret = TXBUFSIZE - info->tx_count - 1;
1637 if (ret < 0)
1638 ret = 0;
1639 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (debug_level >= DEBUG_LEVEL_INFO)
1642 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001643 __FILE__, __LINE__, info->device_name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return ret;
1645}
1646
1647/* Return the count of bytes in transmit buffer
1648 */
1649static int mgslpc_chars_in_buffer(struct tty_struct *tty)
1650{
1651 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1652 int rc;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (debug_level >= DEBUG_LEVEL_INFO)
1655 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001656 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
1659 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (info->params.mode == MGSL_MODE_HDLC)
1662 rc = info->tx_active ? info->max_frame_size : 0;
1663 else
1664 rc = info->tx_count;
1665
1666 if (debug_level >= DEBUG_LEVEL_INFO)
1667 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001668 __FILE__, __LINE__, info->device_name, rc);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return rc;
1671}
1672
1673/* Discard all data in the send buffer
1674 */
1675static void mgslpc_flush_buffer(struct tty_struct *tty)
1676{
1677 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1678 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if (debug_level >= DEBUG_LEVEL_INFO)
1681 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001682 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
1685 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001686
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001687 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001689 del_timer(&info->tx_timer);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001690 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692 wake_up_interruptible(&tty->write_wait);
1693 tty_wakeup(tty);
1694}
1695
1696/* Send a high-priority XON/XOFF character
1697 */
1698static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
1699{
1700 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1701 unsigned long flags;
1702
1703 if (debug_level >= DEBUG_LEVEL_INFO)
1704 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001705 __FILE__, __LINE__, info->device_name, ch);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
1708 return;
1709
1710 info->x_char = ch;
1711 if (ch) {
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001712 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (!info->tx_enabled)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001714 tx_start(info, tty);
1715 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717}
1718
1719/* Signal remote device to throttle send data (our receive data)
1720 */
1721static void mgslpc_throttle(struct tty_struct * tty)
1722{
1723 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1724 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (debug_level >= DEBUG_LEVEL_INFO)
1727 printk("%s(%d):mgslpc_throttle(%s) entry\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001728 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
1731 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (I_IXOFF(tty))
1734 mgslpc_send_xchar(tty, STOP_CHAR(tty));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001735
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001736 if (tty->termios.c_cflag & CRTSCTS) {
1737 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 info->serial_signals &= ~SerialSignal_RTS;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001739 set_signals(info);
1740 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
1742}
1743
1744/* Signal remote device to stop throttling send data (our receive data)
1745 */
1746static void mgslpc_unthrottle(struct tty_struct * tty)
1747{
1748 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1749 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (debug_level >= DEBUG_LEVEL_INFO)
1752 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001753 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
1756 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (I_IXOFF(tty)) {
1759 if (info->x_char)
1760 info->x_char = 0;
1761 else
1762 mgslpc_send_xchar(tty, START_CHAR(tty));
1763 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001764
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001765 if (tty->termios.c_cflag & CRTSCTS) {
1766 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 info->serial_signals |= SerialSignal_RTS;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001768 set_signals(info);
1769 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771}
1772
1773/* get the current serial statistics
1774 */
1775static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
1776{
1777 int err;
1778 if (debug_level >= DEBUG_LEVEL_INFO)
1779 printk("get_params(%s)\n", info->device_name);
Paul Fulghuma7482a22005-09-10 00:26:07 -07001780 if (!user_icount) {
1781 memset(&info->icount, 0, sizeof(info->icount));
1782 } else {
1783 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
1784 if (err)
1785 return -EFAULT;
1786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 return 0;
1788}
1789
1790/* get the current serial parameters
1791 */
1792static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
1793{
1794 int err;
1795 if (debug_level >= DEBUG_LEVEL_INFO)
1796 printk("get_params(%s)\n", info->device_name);
1797 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
1798 if (err)
1799 return -EFAULT;
1800 return 0;
1801}
1802
1803/* set the serial parameters
Jeff Garzikd12341f2007-10-19 15:45:35 -04001804 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001806 *
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001807 * info pointer to device instance data
1808 * new_params user buffer containing new serial params
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 *
1810 * Returns: 0 if success, otherwise error code
1811 */
Alan Coxeeb46132009-01-02 13:48:47 +00001812static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001814 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 MGSL_PARAMS tmp_params;
1816 int err;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 if (debug_level >= DEBUG_LEVEL_INFO)
1819 printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001820 info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
1822 if (err) {
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001823 if (debug_level >= DEBUG_LEVEL_INFO)
1824 printk("%s(%d):set_params(%s) user buffer copy failed\n",
1825 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return -EFAULT;
1827 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001828
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001829 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001831 spin_unlock_irqrestore(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001832
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001833 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return 0;
1836}
1837
1838static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
1839{
1840 int err;
1841 if (debug_level >= DEBUG_LEVEL_INFO)
1842 printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
1843 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
1844 if (err)
1845 return -EFAULT;
1846 return 0;
1847}
1848
1849static int set_txidle(MGSLPC_INFO * info, int idle_mode)
1850{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001851 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 if (debug_level >= DEBUG_LEVEL_INFO)
1853 printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001854 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 info->idle_mode = idle_mode;
1856 tx_set_idle(info);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001857 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return 0;
1859}
1860
1861static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
1862{
1863 int err;
1864 if (debug_level >= DEBUG_LEVEL_INFO)
1865 printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
1866 COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
1867 if (err)
1868 return -EFAULT;
1869 return 0;
1870}
1871
1872static int set_interface(MGSLPC_INFO * info, int if_mode)
1873{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001874 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 unsigned char val;
1876 if (debug_level >= DEBUG_LEVEL_INFO)
1877 printk("set_interface(%s,%d)\n", info->device_name, if_mode);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001878 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 info->if_mode = if_mode;
1880
1881 val = read_reg(info, PVR) & 0x0f;
1882 switch (info->if_mode)
1883 {
1884 case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
1885 case MGSL_INTERFACE_V35: val |= PVR_V35; break;
1886 case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
1887 }
1888 write_reg(info, PVR, val);
1889
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001890 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 return 0;
1892}
1893
Alan Coxeeb46132009-01-02 13:48:47 +00001894static int set_txenable(MGSLPC_INFO * info, int enable, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001896 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 if (debug_level >= DEBUG_LEVEL_INFO)
1899 printk("set_txenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001900
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001901 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (enable) {
1903 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001904 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 } else {
1906 if (info->tx_enabled)
1907 tx_stop(info);
1908 }
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001909 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 return 0;
1911}
1912
1913static int tx_abort(MGSLPC_INFO * info)
1914{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001915 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (debug_level >= DEBUG_LEVEL_INFO)
1918 printk("tx_abort(%s)\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001919
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001920 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (info->tx_active && info->tx_count &&
1922 info->params.mode == MGSL_MODE_HDLC) {
1923 /* clear data count so FIFO is not filled on next IRQ.
1924 * This results in underrun and abort transmission.
1925 */
1926 info->tx_count = info->tx_put = info->tx_get = 0;
Joe Perches0fab6de2008-04-28 02:14:02 -07001927 info->tx_aborting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001929 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return 0;
1931}
1932
1933static int set_rxenable(MGSLPC_INFO * info, int enable)
1934{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001935 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (debug_level >= DEBUG_LEVEL_INFO)
1938 printk("set_rxenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001939
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001940 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (enable) {
1942 if (!info->rx_enabled)
1943 rx_start(info);
1944 } else {
1945 if (info->rx_enabled)
1946 rx_stop(info);
1947 }
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001948 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return 0;
1950}
1951
1952/* wait for specified event to occur
Jeff Garzikd12341f2007-10-19 15:45:35 -04001953 *
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001954 * Arguments: info pointer to device instance data
1955 * mask pointer to bitmask of events to wait for
1956 * Return Value: 0 if successful and bit mask updated with
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 * of events triggerred,
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001958 * otherwise error code
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 */
1960static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
1961{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001962 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 int s;
1964 int rc=0;
1965 struct mgsl_icount cprev, cnow;
1966 int events;
1967 int mask;
1968 struct _input_signal_events oldsigs, newsigs;
1969 DECLARE_WAITQUEUE(wait, current);
1970
1971 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
1972 if (rc)
1973 return -EFAULT;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if (debug_level >= DEBUG_LEVEL_INFO)
1976 printk("wait_events(%s,%d)\n", info->device_name, mask);
1977
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001978 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 /* return immediately if state matches requested events */
1981 get_signals(info);
1982 s = info->serial_signals;
1983 events = mask &
1984 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001985 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
1987 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
1988 if (events) {
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01001989 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 goto exit;
1991 }
1992
1993 /* save current irq counts */
1994 cprev = info->icount;
1995 oldsigs = info->input_signal_events;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if ((info->params.mode == MGSL_MODE_HDLC) &&
1998 (mask & MgslEvent_ExitHuntMode))
1999 irq_enable(info, CHA, IRQ_EXITHUNT);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 set_current_state(TASK_INTERRUPTIBLE);
2002 add_wait_queue(&info->event_wait_q, &wait);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002003
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002004 spin_unlock_irqrestore(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002005
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 for(;;) {
2008 schedule();
2009 if (signal_pending(current)) {
2010 rc = -ERESTARTSYS;
2011 break;
2012 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 /* get current irq counts */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002015 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 cnow = info->icount;
2017 newsigs = info->input_signal_events;
2018 set_current_state(TASK_INTERRUPTIBLE);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002019 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /* if no change, wait aborted for some reason */
2022 if (newsigs.dsr_up == oldsigs.dsr_up &&
2023 newsigs.dsr_down == oldsigs.dsr_down &&
2024 newsigs.dcd_up == oldsigs.dcd_up &&
2025 newsigs.dcd_down == oldsigs.dcd_down &&
2026 newsigs.cts_up == oldsigs.cts_up &&
2027 newsigs.cts_down == oldsigs.cts_down &&
2028 newsigs.ri_up == oldsigs.ri_up &&
2029 newsigs.ri_down == oldsigs.ri_down &&
2030 cnow.exithunt == cprev.exithunt &&
2031 cnow.rxidle == cprev.rxidle) {
2032 rc = -EIO;
2033 break;
2034 }
2035
2036 events = mask &
2037 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2038 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2039 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2040 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2041 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2042 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2043 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2044 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2045 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2046 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2047 if (events)
2048 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 cprev = cnow;
2051 oldsigs = newsigs;
2052 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 remove_wait_queue(&info->event_wait_q, &wait);
2055 set_current_state(TASK_RUNNING);
2056
2057 if (mask & MgslEvent_ExitHuntMode) {
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002058 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (!waitqueue_active(&info->event_wait_q))
2060 irq_disable(info, CHA, IRQ_EXITHUNT);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002061 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 }
2063exit:
2064 if (rc == 0)
2065 PUT_USER(rc, events, mask_ptr);
2066 return rc;
2067}
2068
2069static int modem_input_wait(MGSLPC_INFO *info,int arg)
2070{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002071 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 int rc;
2073 struct mgsl_icount cprev, cnow;
2074 DECLARE_WAITQUEUE(wait, current);
2075
2076 /* save current irq counts */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002077 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 cprev = info->icount;
2079 add_wait_queue(&info->status_event_wait_q, &wait);
2080 set_current_state(TASK_INTERRUPTIBLE);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002081 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 for(;;) {
2084 schedule();
2085 if (signal_pending(current)) {
2086 rc = -ERESTARTSYS;
2087 break;
2088 }
2089
2090 /* get new irq counts */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002091 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 cnow = info->icount;
2093 set_current_state(TASK_INTERRUPTIBLE);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002094 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 /* if no change, wait aborted for some reason */
2097 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2098 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2099 rc = -EIO;
2100 break;
2101 }
2102
2103 /* check for change in caller specified modem input */
2104 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2105 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2106 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2107 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2108 rc = 0;
2109 break;
2110 }
2111
2112 cprev = cnow;
2113 }
2114 remove_wait_queue(&info->status_event_wait_q, &wait);
2115 set_current_state(TASK_RUNNING);
2116 return rc;
2117}
2118
2119/* return the state of the serial control and status signals
2120 */
Alan Cox60b33c12011-02-14 16:26:14 +00002121static int tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2124 unsigned int result;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002125 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002127 spin_lock_irqsave(&info->lock, flags);
2128 get_signals(info);
2129 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2132 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2133 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2134 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2135 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2136 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2137
2138 if (debug_level >= DEBUG_LEVEL_INFO)
2139 printk("%s(%d):%s tiocmget() value=%08X\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002140 __FILE__, __LINE__, info->device_name, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 return result;
2142}
2143
2144/* set modem control signals (DTR/RTS)
2145 */
Alan Cox20b9d172011-02-14 16:26:50 +00002146static int tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 unsigned int set, unsigned int clear)
2148{
2149 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002150 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 if (debug_level >= DEBUG_LEVEL_INFO)
2153 printk("%s(%d):%s tiocmset(%x,%x)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002154 __FILE__, __LINE__, info->device_name, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 if (set & TIOCM_RTS)
2157 info->serial_signals |= SerialSignal_RTS;
2158 if (set & TIOCM_DTR)
2159 info->serial_signals |= SerialSignal_DTR;
2160 if (clear & TIOCM_RTS)
2161 info->serial_signals &= ~SerialSignal_RTS;
2162 if (clear & TIOCM_DTR)
2163 info->serial_signals &= ~SerialSignal_DTR;
2164
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002165 spin_lock_irqsave(&info->lock, flags);
2166 set_signals(info);
2167 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
2169 return 0;
2170}
2171
2172/* Set or clear transmit break condition
2173 *
2174 * Arguments: tty pointer to tty instance data
2175 * break_state -1=set break condition, 0=clear
2176 */
Alan Cox9e989662008-07-22 11:18:03 +01002177static int mgslpc_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2180 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (debug_level >= DEBUG_LEVEL_INFO)
2183 printk("%s(%d):mgslpc_break(%s,%d)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002184 __FILE__, __LINE__, info->device_name, break_state);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
Alan Cox9e989662008-07-22 11:18:03 +01002187 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002189 spin_lock_irqsave(&info->lock, flags);
2190 if (break_state == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 set_reg_bits(info, CHA+DAFO, BIT6);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002192 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 clear_reg_bits(info, CHA+DAFO, BIT6);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002194 spin_unlock_irqrestore(&info->lock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196}
2197
Alan Cox05871022010-09-16 18:21:52 +01002198static int mgslpc_get_icount(struct tty_struct *tty,
2199 struct serial_icounter_struct *icount)
2200{
2201 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2202 struct mgsl_icount cnow; /* kernel counter temps */
2203 unsigned long flags;
2204
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002205 spin_lock_irqsave(&info->lock, flags);
Alan Cox05871022010-09-16 18:21:52 +01002206 cnow = info->icount;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002207 spin_unlock_irqrestore(&info->lock, flags);
Alan Cox05871022010-09-16 18:21:52 +01002208
2209 icount->cts = cnow.cts;
2210 icount->dsr = cnow.dsr;
2211 icount->rng = cnow.rng;
2212 icount->dcd = cnow.dcd;
2213 icount->rx = cnow.rx;
2214 icount->tx = cnow.tx;
2215 icount->frame = cnow.frame;
2216 icount->overrun = cnow.overrun;
2217 icount->parity = cnow.parity;
2218 icount->brk = cnow.brk;
2219 icount->buf_overrun = cnow.buf_overrun;
2220
2221 return 0;
2222}
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224/* Service an IOCTL request
Jeff Garzikd12341f2007-10-19 15:45:35 -04002225 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002227 *
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002228 * tty pointer to tty instance data
2229 * cmd IOCTL command code
2230 * arg command argument/context
Jeff Garzikd12341f2007-10-19 15:45:35 -04002231 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 * Return Value: 0 if success, otherwise error code
2233 */
Axel Lin751b3842011-03-01 13:12:47 +08002234static int mgslpc_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 unsigned int cmd, unsigned long arg)
2236{
2237 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002238 void __user *argp = (void __user *)arg;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002241 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__, __LINE__,
2242 info->device_name, cmd);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
2245 return -ENODEV;
2246
2247 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
Alan Cox05871022010-09-16 18:21:52 +01002248 (cmd != TIOCMIWAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (tty->flags & (1 << TTY_IO_ERROR))
2250 return -EIO;
2251 }
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 switch (cmd) {
2254 case MGSL_IOCGPARAMS:
2255 return get_params(info, argp);
2256 case MGSL_IOCSPARAMS:
Alan Coxeeb46132009-01-02 13:48:47 +00002257 return set_params(info, argp, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 case MGSL_IOCGTXIDLE:
2259 return get_txidle(info, argp);
2260 case MGSL_IOCSTXIDLE:
2261 return set_txidle(info, (int)arg);
2262 case MGSL_IOCGIF:
2263 return get_interface(info, argp);
2264 case MGSL_IOCSIF:
2265 return set_interface(info,(int)arg);
2266 case MGSL_IOCTXENABLE:
Alan Coxeeb46132009-01-02 13:48:47 +00002267 return set_txenable(info,(int)arg, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 case MGSL_IOCRXENABLE:
2269 return set_rxenable(info,(int)arg);
2270 case MGSL_IOCTXABORT:
2271 return tx_abort(info);
2272 case MGSL_IOCGSTATS:
2273 return get_stats(info, argp);
2274 case MGSL_IOCWAITEVENT:
2275 return wait_events(info, argp);
2276 case TIOCMIWAIT:
2277 return modem_input_wait(info,(int)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 default:
2279 return -ENOIOCTLCMD;
2280 }
2281 return 0;
2282}
2283
2284/* Set new termios settings
Jeff Garzikd12341f2007-10-19 15:45:35 -04002285 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002287 *
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002288 * tty pointer to tty structure
2289 * termios pointer to buffer to hold returned old termios
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 */
Alan Cox606d0992006-12-08 02:38:45 -08002291static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2294 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002297 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__, __LINE__,
2298 tty->driver->name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 /* just return if nothing has changed */
Alan Cox373f5ae2012-07-19 12:23:28 +01002301 if ((tty->termios.c_cflag == old_termios->c_cflag)
2302 && (RELEVANT_IFLAG(tty->termios.c_iflag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 == RELEVANT_IFLAG(old_termios->c_iflag)))
2304 return;
2305
Alan Coxeeb46132009-01-02 13:48:47 +00002306 mgslpc_change_params(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 /* Handle transition to B0 status */
2309 if (old_termios->c_cflag & CBAUD &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002310 !(tty->termios.c_cflag & CBAUD)) {
Joe Perches9fe80742013-01-27 18:21:00 -08002311 info->serial_signals &= ~(SerialSignal_RTS | SerialSignal_DTR);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002312 spin_lock_irqsave(&info->lock, flags);
2313 set_signals(info);
2314 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 /* Handle transition away from B0 status */
2318 if (!(old_termios->c_cflag & CBAUD) &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002319 tty->termios.c_cflag & CBAUD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 info->serial_signals |= SerialSignal_DTR;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002321 if (!(tty->termios.c_cflag & CRTSCTS) ||
2322 !test_bit(TTY_THROTTLED, &tty->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 info->serial_signals |= SerialSignal_RTS;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002324 }
2325 spin_lock_irqsave(&info->lock, flags);
2326 set_signals(info);
2327 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 /* Handle turning off CRTSCTS */
2331 if (old_termios->c_cflag & CRTSCTS &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002332 !(tty->termios.c_cflag & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 tty->hw_stopped = 0;
2334 tx_release(tty);
2335 }
2336}
2337
2338static void mgslpc_close(struct tty_struct *tty, struct file * filp)
2339{
2340 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002341 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
2343 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
2344 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 if (debug_level >= DEBUG_LEVEL_INFO)
2347 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002348 __FILE__, __LINE__, info->device_name, port->count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002349
Alan Coxeeb46132009-01-02 13:48:47 +00002350 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 goto cleanup;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002352
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002353 if (port->flags & ASYNC_INITIALIZED)
2354 mgslpc_wait_until_sent(tty, info->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Alan Cox978e5952008-04-30 00:53:59 -07002356 mgslpc_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Alan Cox978e5952008-04-30 00:53:59 -07002358 tty_ldisc_flush(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002359 shutdown(info, tty);
2360
2361 tty_port_close_end(port, tty);
2362 tty_port_tty_set(port, NULL);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002363cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002365 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__, __LINE__,
Alan Coxeeb46132009-01-02 13:48:47 +00002366 tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
2369/* Wait until the transmitter is empty.
2370 */
2371static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
2372{
2373 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2374 unsigned long orig_jiffies, char_time;
2375
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002376 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 return;
2378
2379 if (debug_level >= DEBUG_LEVEL_INFO)
2380 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002381 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
2384 return;
2385
Alan Coxeeb46132009-01-02 13:48:47 +00002386 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 goto exit;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 orig_jiffies = jiffies;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 /* Set check interval to 1/5 of estimated time to
2392 * send a character, and make it at least 1. The check
2393 * interval should also be less than the timeout.
2394 * Note: use tight timings here to satisfy the NIST-PCTS.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002395 */
2396
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002397 if (info->params.data_rate) {
2398 char_time = info->timeout/(32 * 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if (!char_time)
2400 char_time++;
2401 } else
2402 char_time = 1;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 if (timeout)
2405 char_time = min_t(unsigned long, char_time, timeout);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 if (info->params.mode == MGSL_MODE_HDLC) {
2408 while (info->tx_active) {
2409 msleep_interruptible(jiffies_to_msecs(char_time));
2410 if (signal_pending(current))
2411 break;
2412 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2413 break;
2414 }
2415 } else {
2416 while ((info->tx_count || info->tx_active) &&
2417 info->tx_enabled) {
2418 msleep_interruptible(jiffies_to_msecs(char_time));
2419 if (signal_pending(current))
2420 break;
2421 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2422 break;
2423 }
2424 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426exit:
2427 if (debug_level >= DEBUG_LEVEL_INFO)
2428 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002429 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
2432/* Called by tty_hangup() when a hangup is signaled.
2433 * This is the same as closing all open files for the port.
2434 */
2435static void mgslpc_hangup(struct tty_struct *tty)
2436{
2437 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (debug_level >= DEBUG_LEVEL_INFO)
2440 printk("%s(%d):mgslpc_hangup(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002441 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
2444 return;
2445
2446 mgslpc_flush_buffer(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002447 shutdown(info, tty);
2448 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
Alan Coxeeb46132009-01-02 13:48:47 +00002451static int carrier_raised(struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
Alan Coxeeb46132009-01-02 13:48:47 +00002453 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2454 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002455
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002456 spin_lock_irqsave(&info->lock, flags);
2457 get_signals(info);
2458 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Alan Coxeeb46132009-01-02 13:48:47 +00002460 if (info->serial_signals & SerialSignal_DCD)
2461 return 1;
2462 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463}
2464
Alan Coxfcc8ac12009-06-11 12:24:17 +01002465static void dtr_rts(struct tty_port *port, int onoff)
Alan Coxeeb46132009-01-02 13:48:47 +00002466{
2467 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2468 unsigned long flags;
2469
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002470 spin_lock_irqsave(&info->lock, flags);
Alan Coxfcc8ac12009-06-11 12:24:17 +01002471 if (onoff)
Joe Perches9fe80742013-01-27 18:21:00 -08002472 info->serial_signals |= SerialSignal_RTS | SerialSignal_DTR;
Alan Coxfcc8ac12009-06-11 12:24:17 +01002473 else
Joe Perches9fe80742013-01-27 18:21:00 -08002474 info->serial_signals &= ~(SerialSignal_RTS | SerialSignal_DTR);
Alan Coxeeb46132009-01-02 13:48:47 +00002475 set_signals(info);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002476 spin_unlock_irqrestore(&info->lock, flags);
Alan Coxeeb46132009-01-02 13:48:47 +00002477}
2478
2479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2481{
2482 MGSLPC_INFO *info;
Alan Coxeeb46132009-01-02 13:48:47 +00002483 struct tty_port *port;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002484 int retval, line;
2485 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Jeff Garzikd12341f2007-10-19 15:45:35 -04002487 /* verify range of specified line number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 line = tty->index;
Jiri Slaby410235f2012-03-05 14:52:01 +01002489 if (line >= mgslpc_device_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002491 __FILE__, __LINE__, line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 return -ENODEV;
2493 }
2494
2495 /* find the info structure for the specified line */
2496 info = mgslpc_device_list;
2497 while(info && info->line != line)
2498 info = info->next_device;
2499 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
2500 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002501
Alan Coxeeb46132009-01-02 13:48:47 +00002502 port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 tty->driver_data = info;
Alan Coxeeb46132009-01-02 13:48:47 +00002504 tty_port_tty_set(port, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if (debug_level >= DEBUG_LEVEL_INFO)
2507 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002508 __FILE__, __LINE__, tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 /* If port is closing, signal caller to try again */
Peter Hurleye359a4e2014-06-16 09:17:06 -04002511 if (port->flags & ASYNC_CLOSING){
Arnd Bergmannb8c98ae2014-01-02 13:07:40 +01002512 wait_event_interruptible_tty(tty, port->close_wait,
2513 !(port->flags & ASYNC_CLOSING));
Alan Coxeeb46132009-01-02 13:48:47 +00002514 retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 -EAGAIN : -ERESTARTSYS);
2516 goto cleanup;
2517 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002518
Jiri Slabyd6c53c02013-01-03 15:53:05 +01002519 port->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 spin_lock_irqsave(&info->netlock, flags);
2522 if (info->netcount) {
2523 retval = -EBUSY;
2524 spin_unlock_irqrestore(&info->netlock, flags);
2525 goto cleanup;
2526 }
Alan Coxeeb46132009-01-02 13:48:47 +00002527 spin_lock(&port->lock);
2528 port->count++;
2529 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 spin_unlock_irqrestore(&info->netlock, flags);
2531
Alan Coxeeb46132009-01-02 13:48:47 +00002532 if (port->count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 /* 1st open on this device, init hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00002534 retval = startup(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 if (retval < 0)
2536 goto cleanup;
2537 }
2538
Alan Coxeeb46132009-01-02 13:48:47 +00002539 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if (retval) {
2541 if (debug_level >= DEBUG_LEVEL_INFO)
2542 printk("%s(%d):block_til_ready(%s) returned %d\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002543 __FILE__, __LINE__, info->device_name, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 goto cleanup;
2545 }
2546
2547 if (debug_level >= DEBUG_LEVEL_INFO)
2548 printk("%s(%d):mgslpc_open(%s) success\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002549 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002551
2552cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 return retval;
2554}
2555
2556/*
2557 * /proc fs routines....
2558 */
2559
Alexey Dobriyan87687142009-03-31 15:19:17 -07002560static inline void line_info(struct seq_file *m, MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
2562 char stat_buf[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 unsigned long flags;
2564
Alexey Dobriyan87687142009-03-31 15:19:17 -07002565 seq_printf(m, "%s:io:%04X irq:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 info->device_name, info->io_base, info->irq_level);
2567
2568 /* output current serial signal states */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002569 spin_lock_irqsave(&info->lock, flags);
2570 get_signals(info);
2571 spin_unlock_irqrestore(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 stat_buf[0] = 0;
2574 stat_buf[1] = 0;
2575 if (info->serial_signals & SerialSignal_RTS)
2576 strcat(stat_buf, "|RTS");
2577 if (info->serial_signals & SerialSignal_CTS)
2578 strcat(stat_buf, "|CTS");
2579 if (info->serial_signals & SerialSignal_DTR)
2580 strcat(stat_buf, "|DTR");
2581 if (info->serial_signals & SerialSignal_DSR)
2582 strcat(stat_buf, "|DSR");
2583 if (info->serial_signals & SerialSignal_DCD)
2584 strcat(stat_buf, "|CD");
2585 if (info->serial_signals & SerialSignal_RI)
2586 strcat(stat_buf, "|RI");
2587
2588 if (info->params.mode == MGSL_MODE_HDLC) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002589 seq_printf(m, " HDLC txok:%d rxok:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 info->icount.txok, info->icount.rxok);
2591 if (info->icount.txunder)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002592 seq_printf(m, " txunder:%d", info->icount.txunder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 if (info->icount.txabort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002594 seq_printf(m, " txabort:%d", info->icount.txabort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 if (info->icount.rxshort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002596 seq_printf(m, " rxshort:%d", info->icount.rxshort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 if (info->icount.rxlong)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002598 seq_printf(m, " rxlong:%d", info->icount.rxlong);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (info->icount.rxover)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002600 seq_printf(m, " rxover:%d", info->icount.rxover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (info->icount.rxcrc)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002602 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 } else {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002604 seq_printf(m, " ASYNC tx:%d rx:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 info->icount.tx, info->icount.rx);
2606 if (info->icount.frame)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002607 seq_printf(m, " fe:%d", info->icount.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 if (info->icount.parity)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002609 seq_printf(m, " pe:%d", info->icount.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 if (info->icount.brk)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002611 seq_printf(m, " brk:%d", info->icount.brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 if (info->icount.overrun)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002613 seq_printf(m, " oe:%d", info->icount.overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 /* Append serial signal status to end */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002617 seq_printf(m, " %s\n", stat_buf+1);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002618
Alexey Dobriyan87687142009-03-31 15:19:17 -07002619 seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 info->tx_active,info->bh_requested,info->bh_running,
2621 info->pending_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
2624/* Called to print information about devices
2625 */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002626static int mgslpc_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 MGSLPC_INFO *info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002629
Alexey Dobriyan87687142009-03-31 15:19:17 -07002630 seq_printf(m, "synclink driver:%s\n", driver_version);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 info = mgslpc_device_list;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002633 while (info) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002634 line_info(m, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 info = info->next_device;
2636 }
Alexey Dobriyan87687142009-03-31 15:19:17 -07002637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
Alexey Dobriyan87687142009-03-31 15:19:17 -07002640static int mgslpc_proc_open(struct inode *inode, struct file *file)
2641{
2642 return single_open(file, mgslpc_proc_show, NULL);
2643}
2644
2645static const struct file_operations mgslpc_proc_fops = {
2646 .owner = THIS_MODULE,
2647 .open = mgslpc_proc_open,
2648 .read = seq_read,
2649 .llseek = seq_lseek,
2650 .release = single_release,
2651};
2652
Peter Hagervallcdaad342006-06-23 02:06:04 -07002653static int rx_alloc_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
2655 /* each buffer has header and data */
2656 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;
2657
2658 /* calculate total allocation size for 8 buffers */
2659 info->rx_buf_total_size = info->rx_buf_size * 8;
2660
2661 /* limit total allocated memory */
2662 if (info->rx_buf_total_size > 0x10000)
2663 info->rx_buf_total_size = 0x10000;
2664
2665 /* calculate number of buffers */
2666 info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;
2667
2668 info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
2669 if (info->rx_buf == NULL)
2670 return -ENOMEM;
2671
Paul Fulghuma6b68a62012-12-03 11:13:24 -06002672 /* unused flag buffer to satisfy receive_buf calling interface */
2673 info->flag_buf = kzalloc(info->max_frame_size, GFP_KERNEL);
2674 if (!info->flag_buf) {
2675 kfree(info->rx_buf);
2676 info->rx_buf = NULL;
2677 return -ENOMEM;
2678 }
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 rx_reset_buffers(info);
2681 return 0;
2682}
2683
Peter Hagervallcdaad342006-06-23 02:06:04 -07002684static void rx_free_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
Jesper Juhl735d5662005-11-07 01:01:29 -08002686 kfree(info->rx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 info->rx_buf = NULL;
Paul Fulghuma6b68a62012-12-03 11:13:24 -06002688 kfree(info->flag_buf);
2689 info->flag_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690}
2691
Peter Hagervallcdaad342006-06-23 02:06:04 -07002692static int claim_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002694 if (rx_alloc_buffers(info) < 0) {
2695 printk("Can't allocate rx buffer %s\n", info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 release_resources(info);
2697 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 return 0;
2700}
2701
Peter Hagervallcdaad342006-06-23 02:06:04 -07002702static void release_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
2704 if (debug_level >= DEBUG_LEVEL_INFO)
2705 printk("release_resources(%s)\n", info->device_name);
2706 rx_free_buffers(info);
2707}
2708
2709/* Add the specified device instance data structure to the
2710 * global linked list of devices and increment the device count.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002711 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 * Arguments: info pointer to device instance data
2713 */
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002714static int mgslpc_add_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002716 MGSLPC_INFO *current_dev = NULL;
2717 struct device *tty_dev;
2718 int ret;
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 info->next_device = NULL;
2721 info->line = mgslpc_device_count;
2722 sprintf(info->device_name,"ttySLP%d",info->line);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 if (info->line < MAX_DEVICE_COUNT) {
2725 if (maxframe[info->line])
2726 info->max_frame_size = maxframe[info->line];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728
2729 mgslpc_device_count++;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (!mgslpc_device_list)
2732 mgslpc_device_list = info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002733 else {
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002734 current_dev = mgslpc_device_list;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002735 while (current_dev->next_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 current_dev = current_dev->next_device;
2737 current_dev->next_device = info;
2738 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if (info->max_frame_size < 4096)
2741 info->max_frame_size = 4096;
2742 else if (info->max_frame_size > 65535)
2743 info->max_frame_size = 65535;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002744
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01002745 printk("SyncLink PC Card %s:IO=%04X IRQ=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 info->device_name, info->io_base, info->irq_level);
2747
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002748#if SYNCLINK_GENERIC_HDLC
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002749 ret = hdlcdev_init(info);
2750 if (ret != 0)
2751 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752#endif
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002753
2754 tty_dev = tty_port_register_device(&info->port, serial_driver, info->line,
Jiri Slabya33ba822012-08-14 10:23:08 +02002755 &info->p_dev->dev);
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002756 if (IS_ERR(tty_dev)) {
2757 ret = PTR_ERR(tty_dev);
2758#if SYNCLINK_GENERIC_HDLC
2759 hdlcdev_exit(info);
2760#endif
2761 goto failed;
2762 }
2763
2764 return 0;
2765
2766failed:
2767 if (current_dev)
2768 current_dev->next_device = NULL;
2769 else
2770 mgslpc_device_list = NULL;
2771 mgslpc_device_count--;
2772 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773}
2774
Peter Hagervallcdaad342006-06-23 02:06:04 -07002775static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
2777 MGSLPC_INFO *info = mgslpc_device_list;
2778 MGSLPC_INFO *last = NULL;
2779
2780 while(info) {
2781 if (info == remove_info) {
2782 if (last)
2783 last->next_device = info->next_device;
2784 else
2785 mgslpc_device_list = info->next_device;
Jiri Slaby16a10652012-08-07 21:47:53 +02002786 tty_unregister_device(serial_driver, info->line);
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002787#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 hdlcdev_exit(info);
2789#endif
2790 release_resources(info);
Jiri Slaby191c5f12012-11-15 09:49:56 +01002791 tty_port_destroy(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 kfree(info);
2793 mgslpc_device_count--;
2794 return;
2795 }
2796 last = info;
2797 info = info->next_device;
2798 }
2799}
2800
Joe Perches25f8f542011-05-03 19:29:01 -07002801static const struct pcmcia_device_id mgslpc_ids[] = {
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002802 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2803 PCMCIA_DEVICE_NULL
2804};
2805MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807static struct pcmcia_driver mgslpc_driver = {
2808 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +02002809 .name = "synclink_cs",
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02002810 .probe = mgslpc_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01002811 .remove = mgslpc_detach,
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002812 .id_table = mgslpc_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01002813 .suspend = mgslpc_suspend,
2814 .resume = mgslpc_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815};
2816
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002817static const struct tty_operations mgslpc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 .open = mgslpc_open,
2819 .close = mgslpc_close,
2820 .write = mgslpc_write,
2821 .put_char = mgslpc_put_char,
2822 .flush_chars = mgslpc_flush_chars,
2823 .write_room = mgslpc_write_room,
2824 .chars_in_buffer = mgslpc_chars_in_buffer,
2825 .flush_buffer = mgslpc_flush_buffer,
2826 .ioctl = mgslpc_ioctl,
2827 .throttle = mgslpc_throttle,
2828 .unthrottle = mgslpc_unthrottle,
2829 .send_xchar = mgslpc_send_xchar,
2830 .break_ctl = mgslpc_break,
2831 .wait_until_sent = mgslpc_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 .set_termios = mgslpc_set_termios,
2833 .stop = tx_pause,
2834 .start = tx_release,
2835 .hangup = mgslpc_hangup,
2836 .tiocmget = tiocmget,
2837 .tiocmset = tiocmset,
Andres Salomondc98d962010-11-09 14:10:38 -08002838 .get_icount = mgslpc_get_icount,
Alexey Dobriyan87687142009-03-31 15:19:17 -07002839 .proc_fops = &mgslpc_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840};
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842static int __init synclink_cs_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
2844 int rc;
2845
Jiri Slabycc93441e2012-08-07 21:47:54 +02002846 if (break_on_load) {
2847 mgslpc_get_text_ptr();
2848 BREAKPOINT();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 }
2850
Jiri Slabycc93441e2012-08-07 21:47:54 +02002851 serial_driver = tty_alloc_driver(MAX_DEVICE_COUNT,
2852 TTY_DRIVER_REAL_RAW |
2853 TTY_DRIVER_DYNAMIC_DEV);
Dan Carpenterc3a63442012-08-16 16:16:56 +03002854 if (IS_ERR(serial_driver)) {
2855 rc = PTR_ERR(serial_driver);
Jiri Slabycc93441e2012-08-07 21:47:54 +02002856 goto err;
2857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Jiri Slabycc93441e2012-08-07 21:47:54 +02002859 /* Initialize the tty_driver structure */
2860 serial_driver->driver_name = "synclink_cs";
2861 serial_driver->name = "ttySLP";
2862 serial_driver->major = ttymajor;
2863 serial_driver->minor_start = 64;
2864 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
2865 serial_driver->subtype = SERIAL_TYPE_NORMAL;
2866 serial_driver->init_termios = tty_std_termios;
2867 serial_driver->init_termios.c_cflag =
2868 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2869 tty_set_operations(serial_driver, &mgslpc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Jiri Slabycc93441e2012-08-07 21:47:54 +02002871 rc = tty_register_driver(serial_driver);
2872 if (rc < 0) {
2873 printk(KERN_ERR "%s(%d):Couldn't register serial driver\n",
2874 __FILE__, __LINE__);
2875 goto err_put_tty;
2876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Jiri Slaby16a10652012-08-07 21:47:53 +02002878 rc = pcmcia_register_driver(&mgslpc_driver);
2879 if (rc < 0)
2880 goto err_unreg_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Jiri Slabycc93441e2012-08-07 21:47:54 +02002882 printk(KERN_INFO "%s %s, tty major#%d\n", driver_name, driver_version,
2883 serial_driver->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Jiri Slaby737586f2012-08-07 21:47:52 +02002885 return 0;
Jiri Slaby16a10652012-08-07 21:47:53 +02002886err_unreg_tty:
2887 tty_unregister_driver(serial_driver);
Jiri Slaby737586f2012-08-07 21:47:52 +02002888err_put_tty:
2889 put_tty_driver(serial_driver);
Jiri Slaby16a10652012-08-07 21:47:53 +02002890err:
Jiri Slaby737586f2012-08-07 21:47:52 +02002891 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892}
2893
Jeff Garzikd12341f2007-10-19 15:45:35 -04002894static void __exit synclink_cs_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
Jiri Slaby16a10652012-08-07 21:47:53 +02002896 pcmcia_unregister_driver(&mgslpc_driver);
Jiri Slaby737586f2012-08-07 21:47:52 +02002897 tty_unregister_driver(serial_driver);
2898 put_tty_driver(serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899}
2900
2901module_init(synclink_cs_init);
2902module_exit(synclink_cs_exit);
2903
2904static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
2905{
2906 unsigned int M, N;
2907 unsigned char val;
2908
Jeff Garzikd12341f2007-10-19 15:45:35 -04002909 /* note:standard BRG mode is broken in V3.2 chip
2910 * so enhanced mode is always used
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 */
2912
2913 if (rate) {
2914 N = 3686400 / rate;
2915 if (!N)
2916 N = 1;
2917 N >>= 1;
2918 for (M = 1; N > 64 && M < 16; M++)
2919 N >>= 1;
2920 N--;
2921
2922 /* BGR[5..0] = N
2923 * BGR[9..6] = M
2924 * BGR[7..0] contained in BGR register
2925 * BGR[9..8] contained in CCR2[7..6]
2926 * divisor = (N+1)*2^M
2927 *
2928 * Note: M *must* not be zero (causes asymetric duty cycle)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002929 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 write_reg(info, (unsigned char) (channel + BGR),
2931 (unsigned char) ((M << 6) + N));
2932 val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
2933 val |= ((M << 4) & 0xc0);
2934 write_reg(info, (unsigned char) (channel + CCR2), val);
2935 }
2936}
2937
2938/* Enabled the AUX clock output at the specified frequency.
2939 */
2940static void enable_auxclk(MGSLPC_INFO *info)
2941{
2942 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 /* MODE
2945 *
2946 * 07..06 MDS[1..0] 10 = transparent HDLC mode
2947 * 05 ADM Address Mode, 0 = no addr recognition
2948 * 04 TMD Timer Mode, 0 = external
2949 * 03 RAC Receiver Active, 0 = inactive
2950 * 02 RTS 0=RTS active during xmit, 1=RTS always active
2951 * 01 TRS Timer Resolution, 1=512
2952 * 00 TLP Test Loop, 0 = no loop
2953 *
2954 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04002955 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 val = 0x82;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002957
2958 /* channel B RTS is used to enable AUXCLK driver on SP505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2960 val |= BIT2;
2961 write_reg(info, CHB + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 /* CCR0
2964 *
2965 * 07 PU Power Up, 1=active, 0=power down
2966 * 06 MCE Master Clock Enable, 1=enabled
2967 * 05 Reserved, 0
2968 * 04..02 SC[2..0] Encoding
2969 * 01..00 SM[1..0] Serial Mode, 00=HDLC
2970 *
2971 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002972 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 write_reg(info, CHB + CCR0, 0xc0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 /* CCR1
2976 *
2977 * 07 SFLG Shared Flag, 0 = disable shared flags
2978 * 06 GALP Go Active On Loop, 0 = not used
2979 * 05 GLP Go On Loop, 0 = not used
2980 * 04 ODS Output Driver Select, 1=TxD is push-pull output
2981 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
2982 * 02..00 CM[2..0] Clock Mode
2983 *
2984 * 0001 0111
Jeff Garzikd12341f2007-10-19 15:45:35 -04002985 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 write_reg(info, CHB + CCR1, 0x17);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 /* CCR2 (Channel B)
2989 *
2990 * 07..06 BGR[9..8] Baud rate bits 9..8
2991 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
2992 * 04 SSEL Clock source select, 1=submode b
2993 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
2994 * 02 RWX Read/Write Exchange 0=disabled
2995 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
2996 * 00 DIV, data inversion 0=disabled, 1=enabled
2997 *
2998 * 0011 1000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002999 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3001 write_reg(info, CHB + CCR2, 0x38);
3002 else
3003 write_reg(info, CHB + CCR2, 0x30);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 /* CCR4
3006 *
3007 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3008 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3009 * 05 TST1 Test Pin, 0=normal operation
3010 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3011 * 03..02 Reserved, must be 0
3012 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3013 *
3014 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003015 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 write_reg(info, CHB + CCR4, 0x50);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 /* if auxclk not enabled, set internal BRG so
3019 * CTS transitions can be detected (requires TxC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003020 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3022 mgslpc_set_rate(info, CHB, info->params.clock_speed);
3023 else
3024 mgslpc_set_rate(info, CHB, 921600);
3025}
3026
Jeff Garzikd12341f2007-10-19 15:45:35 -04003027static void loopback_enable(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
3029 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003030
3031 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
Alexandru Juncuecda0402013-07-19 11:24:03 +03003032 val = read_reg(info, CHA + CCR1) | (BIT2 | BIT1 | BIT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003034
3035 /* CCR2:04 SSEL Clock source select, 1=submode b */
Alexandru Juncuecda0402013-07-19 11:24:03 +03003036 val = read_reg(info, CHA + CCR2) | (BIT4 | BIT5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003038
3039 /* set LinkSpeed if available, otherwise default to 2Mbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 if (info->params.clock_speed)
3041 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3042 else
3043 mgslpc_set_rate(info, CHA, 1843200);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003044
3045 /* MODE:00 TLP Test Loop, 1=loopback enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 val = read_reg(info, CHA + MODE) | BIT0;
3047 write_reg(info, CHA + MODE, val);
3048}
3049
Peter Hagervallcdaad342006-06-23 02:06:04 -07003050static void hdlc_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
3052 unsigned char val;
3053 unsigned char clkmode, clksubmode;
3054
Jeff Garzikd12341f2007-10-19 15:45:35 -04003055 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 irq_disable(info, CHA, 0xffff);
3057 irq_disable(info, CHB, 0xffff);
3058 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003059
3060 /* assume clock mode 0a, rcv=RxC xmt=TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 clkmode = clksubmode = 0;
3062 if (info->params.flags & HDLC_FLAG_RXC_DPLL
3063 && info->params.flags & HDLC_FLAG_TXC_DPLL) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003064 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 clkmode = 7;
3066 } else if (info->params.flags & HDLC_FLAG_RXC_BRG
3067 && info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003068 /* clock mode 7b, rcv = BRG, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 clkmode = 7;
3070 clksubmode = 1;
3071 } else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
3072 if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003073 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 clkmode = 6;
3075 clksubmode = 1;
3076 } else {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003077 /* clock mode 6a, rcv = DPLL, xmt = TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 clkmode = 6;
3079 }
3080 } else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003081 /* clock mode 0b, rcv = RxC, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 clksubmode = 1;
3083 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 /* MODE
3086 *
3087 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3088 * 05 ADM Address Mode, 0 = no addr recognition
3089 * 04 TMD Timer Mode, 0 = external
3090 * 03 RAC Receiver Active, 0 = inactive
3091 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3092 * 01 TRS Timer Resolution, 1=512
3093 * 00 TLP Test Loop, 0 = no loop
3094 *
3095 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04003096 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 val = 0x82;
3098 if (info->params.loopback)
3099 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003100
3101 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 if (info->serial_signals & SerialSignal_RTS)
3103 val |= BIT2;
3104 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 /* CCR0
3107 *
3108 * 07 PU Power Up, 1=active, 0=power down
3109 * 06 MCE Master Clock Enable, 1=enabled
3110 * 05 Reserved, 0
3111 * 04..02 SC[2..0] Encoding
3112 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3113 *
3114 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 val = 0xc0;
3117 switch (info->params.encoding)
3118 {
3119 case HDLC_ENCODING_NRZI:
3120 val |= BIT3;
3121 break;
3122 case HDLC_ENCODING_BIPHASE_SPACE:
3123 val |= BIT4;
3124 break; // FM0
3125 case HDLC_ENCODING_BIPHASE_MARK:
Alexandru Juncuecda0402013-07-19 11:24:03 +03003126 val |= BIT4 | BIT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 break; // FM1
3128 case HDLC_ENCODING_BIPHASE_LEVEL:
Alexandru Juncuecda0402013-07-19 11:24:03 +03003129 val |= BIT4 | BIT3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 break; // Manchester
3131 }
3132 write_reg(info, CHA + CCR0, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003133
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 /* CCR1
3135 *
3136 * 07 SFLG Shared Flag, 0 = disable shared flags
3137 * 06 GALP Go Active On Loop, 0 = not used
3138 * 05 GLP Go On Loop, 0 = not used
3139 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3140 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3141 * 02..00 CM[2..0] Clock Mode
3142 *
3143 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003144 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 val = 0x10 + clkmode;
3146 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 /* CCR2
3149 *
3150 * 07..06 BGR[9..8] Baud rate bits 9..8
3151 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3152 * 04 SSEL Clock source select, 1=submode b
3153 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3154 * 02 RWX Read/Write Exchange 0=disabled
3155 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3156 * 00 DIV, data inversion 0=disabled, 1=enabled
3157 *
3158 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 val = 0x00;
3161 if (clkmode == 2 || clkmode == 3 || clkmode == 6
3162 || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
3163 val |= BIT5;
3164 if (clksubmode)
3165 val |= BIT4;
3166 if (info->params.crc_type == HDLC_CRC_32_CCITT)
3167 val |= BIT1;
3168 if (info->params.encoding == HDLC_ENCODING_NRZB)
3169 val |= BIT0;
3170 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003171
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 /* CCR3
3173 *
3174 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3175 * 05 EPT Enable preamble transmission, 1=enabled
3176 * 04 RADD Receive address pushed to FIFO, 0=disabled
3177 * 03 CRL CRC Reset Level, 0=FFFF
3178 * 02 RCRC Rx CRC 0=On 1=Off
3179 * 01 TCRC Tx CRC 0=On 1=Off
3180 * 00 PSD DPLL Phase Shift Disable
3181 *
3182 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 val = 0x00;
3185 if (info->params.crc_type == HDLC_CRC_NONE)
Alexandru Juncuecda0402013-07-19 11:24:03 +03003186 val |= BIT2 | BIT1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
3188 val |= BIT5;
3189 switch (info->params.preamble_length)
3190 {
3191 case HDLC_PREAMBLE_LENGTH_16BITS:
3192 val |= BIT6;
3193 break;
3194 case HDLC_PREAMBLE_LENGTH_32BITS:
3195 val |= BIT6;
3196 break;
3197 case HDLC_PREAMBLE_LENGTH_64BITS:
Alexandru Juncuecda0402013-07-19 11:24:03 +03003198 val |= BIT7 | BIT6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 break;
3200 }
3201 write_reg(info, CHA + CCR3, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003202
3203 /* PRE - Preamble pattern */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 val = 0;
3205 switch (info->params.preamble)
3206 {
3207 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
3208 case HDLC_PREAMBLE_PATTERN_10: val = 0xaa; break;
3209 case HDLC_PREAMBLE_PATTERN_01: val = 0x55; break;
3210 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
3211 }
3212 write_reg(info, CHA + PRE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 /* CCR4
3215 *
3216 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3217 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3218 * 05 TST1 Test Pin, 0=normal operation
3219 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3220 * 03..02 Reserved, must be 0
3221 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3222 *
3223 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 val = 0x50;
3226 write_reg(info, CHA + CCR4, val);
3227 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
3228 mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
3229 else
3230 mgslpc_set_rate(info, CHA, info->params.clock_speed);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 /* RLCR Receive length check register
3233 *
3234 * 7 1=enable receive length check
3235 * 6..0 Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 /* XBCH Transmit Byte Count High
3240 *
3241 * 07 DMA mode, 0 = interrupt driven
3242 * 06 NRM, 0=ABM (ignored)
3243 * 05 CAS Carrier Auto Start
3244 * 04 XC Transmit Continuously (ignored)
3245 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3246 *
3247 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003248 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 val = 0x00;
3250 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3251 val |= BIT5;
3252 write_reg(info, CHA + XBCH, val);
3253 enable_auxclk(info);
3254 if (info->params.loopback || info->testing_irq)
3255 loopback_enable(info);
3256 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3257 {
3258 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003259 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 set_reg_bits(info, CHA + PVR, BIT3);
3261 } else
3262 clear_reg_bits(info, CHA + PVR, BIT3);
3263
3264 irq_enable(info, CHA,
Alexandru Juncuecda0402013-07-19 11:24:03 +03003265 IRQ_RXEOM | IRQ_RXFIFO | IRQ_ALLSENT |
3266 IRQ_UNDERRUN | IRQ_TXFIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3268 wait_command_complete(info, CHA);
3269 read_reg16(info, CHA + ISR); /* clear pending IRQs */
Jeff Garzikd12341f2007-10-19 15:45:35 -04003270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 /* Master clock mode enabled above to allow reset commands
3272 * to complete even if no data clocks are present.
3273 *
3274 * Disable master clock mode for normal communications because
3275 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3276 * IRQ when in master clock mode.
3277 *
3278 * Leave master clock mode enabled for IRQ test because the
3279 * timer IRQ used by the test can only happen in master clock mode.
Jeff Garzikd12341f2007-10-19 15:45:35 -04003280 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 if (!info->testing_irq)
3282 clear_reg_bits(info, CHA + CCR0, BIT6);
3283
3284 tx_set_idle(info);
3285
3286 tx_stop(info);
3287 rx_stop(info);
3288}
3289
Peter Hagervallcdaad342006-06-23 02:06:04 -07003290static void rx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291{
3292 if (debug_level >= DEBUG_LEVEL_ISR)
3293 printk("%s(%d):rx_stop(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003294 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003295
3296 /* MODE:03 RAC Receiver Active, 0=inactive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 clear_reg_bits(info, CHA + MODE, BIT3);
3298
Joe Perches0fab6de2008-04-28 02:14:02 -07003299 info->rx_enabled = false;
3300 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301}
3302
Peter Hagervallcdaad342006-06-23 02:06:04 -07003303static void rx_start(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304{
3305 if (debug_level >= DEBUG_LEVEL_ISR)
3306 printk("%s(%d):rx_start(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003307 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309 rx_reset_buffers(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003310 info->rx_enabled = false;
3311 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Jeff Garzikd12341f2007-10-19 15:45:35 -04003313 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 set_reg_bits(info, CHA + MODE, BIT3);
3315
Joe Perches0fab6de2008-04-28 02:14:02 -07003316 info->rx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317}
3318
Alan Coxeeb46132009-01-02 13:48:47 +00003319static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320{
3321 if (debug_level >= DEBUG_LEVEL_ISR)
3322 printk("%s(%d):tx_start(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003323 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 if (info->tx_count) {
3326 /* If auto RTS enabled and RTS is inactive, then assert */
3327 /* RTS and set a flag indicating that the driver should */
3328 /* negate RTS when the transmission completes. */
Joe Perches0fab6de2008-04-28 02:14:02 -07003329 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
3331 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3332 get_signals(info);
3333 if (!(info->serial_signals & SerialSignal_RTS)) {
3334 info->serial_signals |= SerialSignal_RTS;
3335 set_signals(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003336 info->drop_rts_on_tx_done = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 }
3338 }
3339
3340 if (info->params.mode == MGSL_MODE_ASYNC) {
3341 if (!info->tx_active) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003342 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003343 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 }
3345 } else {
Joe Perches0fab6de2008-04-28 02:14:02 -07003346 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003347 tx_ready(info, tty);
Jiri Slaby40565f12007-02-12 00:52:31 -08003348 mod_timer(&info->tx_timer, jiffies +
3349 msecs_to_jiffies(5000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 }
3351 }
3352
3353 if (!info->tx_enabled)
Joe Perches0fab6de2008-04-28 02:14:02 -07003354 info->tx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355}
3356
Peter Hagervallcdaad342006-06-23 02:06:04 -07003357static void tx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358{
3359 if (debug_level >= DEBUG_LEVEL_ISR)
3360 printk("%s(%d):tx_stop(%s)\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003361 __FILE__, __LINE__, info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003362
3363 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Joe Perches0fab6de2008-04-28 02:14:02 -07003365 info->tx_enabled = false;
3366 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367}
3368
3369/* Reset the adapter to a known state and prepare it for further use.
3370 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003371static void reset_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003373 /* power up both channels (set BIT7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 write_reg(info, CHA + CCR0, 0x80);
3375 write_reg(info, CHB + CCR0, 0x80);
3376 write_reg(info, CHA + MODE, 0);
3377 write_reg(info, CHB + MODE, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003378
3379 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 irq_disable(info, CHA, 0xffff);
3381 irq_disable(info, CHB, 0xffff);
3382 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003383
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 /* PCR Port Configuration Register
3385 *
3386 * 07..04 DEC[3..0] Serial I/F select outputs
3387 * 03 output, 1=AUTO CTS control enabled
3388 * 02 RI Ring Indicator input 0=active
3389 * 01 DSR input 0=active
3390 * 00 DTR output 0=active
3391 *
3392 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003393 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 write_reg(info, PCR, 0x06);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 /* PVR Port Value Register
3397 *
3398 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3399 * 03 AUTO CTS output 1=enabled
3400 * 02 RI Ring Indicator input
3401 * 01 DSR input
3402 * 00 DTR output (1=inactive)
3403 *
3404 * 0000 0001
3405 */
3406// write_reg(info, PVR, PVR_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003407
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 /* IPC Interrupt Port Configuration
3409 *
3410 * 07 VIS 1=Masked interrupts visible
3411 * 06..05 Reserved, 0
3412 * 04..03 SLA Slave address, 00 ignored
3413 * 02 CASM Cascading Mode, 1=daisy chain
3414 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3415 *
3416 * 0000 0101
Jeff Garzikd12341f2007-10-19 15:45:35 -04003417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 write_reg(info, IPC, 0x05);
3419}
3420
Peter Hagervallcdaad342006-06-23 02:06:04 -07003421static void async_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422{
3423 unsigned char val;
3424
Jeff Garzikd12341f2007-10-19 15:45:35 -04003425 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 irq_disable(info, CHA, 0xffff);
3427 irq_disable(info, CHB, 0xffff);
3428 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 /* MODE
3431 *
3432 * 07 Reserved, 0
3433 * 06 FRTS RTS State, 0=active
3434 * 05 FCTS Flow Control on CTS
3435 * 04 FLON Flow Control Enable
3436 * 03 RAC Receiver Active, 0 = inactive
3437 * 02 RTS 0=Auto RTS, 1=manual RTS
3438 * 01 TRS Timer Resolution, 1=512
3439 * 00 TLP Test Loop, 0 = no loop
3440 *
3441 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003442 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 val = 0x06;
3444 if (info->params.loopback)
3445 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003446
3447 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 if (!(info->serial_signals & SerialSignal_RTS))
3449 val |= BIT6;
3450 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 /* CCR0
3453 *
3454 * 07 PU Power Up, 1=active, 0=power down
3455 * 06 MCE Master Clock Enable, 1=enabled
3456 * 05 Reserved, 0
3457 * 04..02 SC[2..0] Encoding, 000=NRZ
3458 * 01..00 SM[1..0] Serial Mode, 11=Async
3459 *
3460 * 1000 0011
Jeff Garzikd12341f2007-10-19 15:45:35 -04003461 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 write_reg(info, CHA + CCR0, 0x83);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 /* CCR1
3465 *
3466 * 07..05 Reserved, 0
3467 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3468 * 03 BCR Bit Clock Rate, 1=16x
3469 * 02..00 CM[2..0] Clock Mode, 111=BRG
3470 *
3471 * 0001 1111
Jeff Garzikd12341f2007-10-19 15:45:35 -04003472 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 write_reg(info, CHA + CCR1, 0x1f);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 /* CCR2 (channel A)
3476 *
3477 * 07..06 BGR[9..8] Baud rate bits 9..8
3478 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3479 * 04 SSEL Clock source select, 1=submode b
3480 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3481 * 02 RWX Read/Write Exchange 0=disabled
3482 * 01 Reserved, 0
3483 * 00 DIV, data inversion 0=disabled, 1=enabled
3484 *
3485 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003486 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 write_reg(info, CHA + CCR2, 0x10);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 /* CCR3
3490 *
3491 * 07..01 Reserved, 0
3492 * 00 PSD DPLL Phase Shift Disable
3493 *
3494 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003495 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 write_reg(info, CHA + CCR3, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003497
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 /* CCR4
3499 *
3500 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3501 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3502 * 05 TST1 Test Pin, 0=normal operation
3503 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3504 * 03..00 Reserved, must be 0
3505 *
3506 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003507 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 write_reg(info, CHA + CCR4, 0x50);
3509 mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 /* DAFO Data Format
3512 *
3513 * 07 Reserved, 0
3514 * 06 XBRK transmit break, 0=normal operation
3515 * 05 Stop bits (0=1, 1=2)
3516 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3517 * 02 PAREN Parity Enable
3518 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3519 *
Jeff Garzikd12341f2007-10-19 15:45:35 -04003520 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 val = 0x00;
3522 if (info->params.data_bits != 8)
3523 val |= BIT0; /* 7 bits */
3524 if (info->params.stop_bits != 1)
3525 val |= BIT5;
3526 if (info->params.parity != ASYNC_PARITY_NONE)
3527 {
3528 val |= BIT2; /* Parity enable */
3529 if (info->params.parity == ASYNC_PARITY_ODD)
3530 val |= BIT3;
3531 else
3532 val |= BIT4;
3533 }
3534 write_reg(info, CHA + DAFO, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003535
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 /* RFC Rx FIFO Control
3537 *
3538 * 07 Reserved, 0
3539 * 06 DPS, 1=parity bit not stored in data byte
3540 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3541 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3542 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3543 * 01 Reserved, 0
3544 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3545 *
3546 * 0101 1100
Jeff Garzikd12341f2007-10-19 15:45:35 -04003547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 write_reg(info, CHA + RFC, 0x5c);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 /* RLCR Receive length check register
3551 *
3552 * Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 /* XBCH Transmit Byte Count High
3557 *
3558 * 07 DMA mode, 0 = interrupt driven
3559 * 06 NRM, 0=ABM (ignored)
3560 * 05 CAS Carrier Auto Start
3561 * 04 XC Transmit Continuously (ignored)
3562 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3563 *
3564 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003565 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 val = 0x00;
3567 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3568 val |= BIT5;
3569 write_reg(info, CHA + XBCH, val);
3570 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3571 irq_enable(info, CHA, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003572
3573 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 set_reg_bits(info, CHA + MODE, BIT3);
3575 enable_auxclk(info);
3576 if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
3577 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003578 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 set_reg_bits(info, CHA + PVR, BIT3);
3580 } else
3581 clear_reg_bits(info, CHA + PVR, BIT3);
3582 irq_enable(info, CHA,
Alexandru Juncuecda0402013-07-19 11:24:03 +03003583 IRQ_RXEOM | IRQ_RXFIFO | IRQ_BREAK_ON | IRQ_RXTIME |
3584 IRQ_ALLSENT | IRQ_TXFIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3586 wait_command_complete(info, CHA);
3587 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3588}
3589
3590/* Set the HDLC idle mode for the transmitter.
3591 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003592static void tx_set_idle(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003594 /* Note: ESCC2 only supports flags and one idle modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 if (info->idle_mode == HDLC_TXIDLE_FLAGS)
3596 set_reg_bits(info, CHA + CCR1, BIT3);
3597 else
3598 clear_reg_bits(info, CHA + CCR1, BIT3);
3599}
3600
3601/* get state of the V24 status (input) signals.
3602 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003603static void get_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604{
3605 unsigned char status = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003606
Joe Perches9fe80742013-01-27 18:21:00 -08003607 /* preserve RTS and DTR */
3608 info->serial_signals &= SerialSignal_RTS | SerialSignal_DTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
3610 if (read_reg(info, CHB + VSTR) & BIT7)
3611 info->serial_signals |= SerialSignal_DCD;
3612 if (read_reg(info, CHB + STAR) & BIT1)
3613 info->serial_signals |= SerialSignal_CTS;
3614
3615 status = read_reg(info, CHA + PVR);
3616 if (!(status & PVR_RI))
3617 info->serial_signals |= SerialSignal_RI;
3618 if (!(status & PVR_DSR))
3619 info->serial_signals |= SerialSignal_DSR;
3620}
3621
Joe Perches9fe80742013-01-27 18:21:00 -08003622/* Set the state of RTS and DTR based on contents of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 * serial_signals member of device extension.
3624 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003625static void set_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626{
3627 unsigned char val;
3628
3629 val = read_reg(info, CHA + MODE);
3630 if (info->params.mode == MGSL_MODE_ASYNC) {
3631 if (info->serial_signals & SerialSignal_RTS)
3632 val &= ~BIT6;
3633 else
3634 val |= BIT6;
3635 } else {
3636 if (info->serial_signals & SerialSignal_RTS)
3637 val |= BIT2;
3638 else
3639 val &= ~BIT2;
3640 }
3641 write_reg(info, CHA + MODE, val);
3642
3643 if (info->serial_signals & SerialSignal_DTR)
3644 clear_reg_bits(info, CHA + PVR, PVR_DTR);
3645 else
3646 set_reg_bits(info, CHA + PVR, PVR_DTR);
3647}
3648
Peter Hagervallcdaad342006-06-23 02:06:04 -07003649static void rx_reset_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650{
3651 RXBUF *buf;
3652 int i;
3653
3654 info->rx_put = 0;
3655 info->rx_get = 0;
3656 info->rx_frame_count = 0;
3657 for (i=0 ; i < info->rx_buf_count ; i++) {
3658 buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
3659 buf->status = buf->count = 0;
3660 }
3661}
3662
3663/* Attempt to return a received HDLC frame
3664 * Only frames received without errors are returned.
3665 *
Joe Perches0fab6de2008-04-28 02:14:02 -07003666 * Returns true if frame returned, otherwise false
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 */
Alan Coxeeb46132009-01-02 13:48:47 +00003668static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669{
3670 unsigned short status;
3671 RXBUF *buf;
3672 unsigned int framesize = 0;
3673 unsigned long flags;
Joe Perches0fab6de2008-04-28 02:14:02 -07003674 bool return_frame = false;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 if (info->rx_frame_count == 0)
Joe Perches0fab6de2008-04-28 02:14:02 -07003677 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
3679 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));
3680
3681 status = buf->status;
3682
3683 /* 07 VFR 1=valid frame
3684 * 06 RDO 1=data overrun
3685 * 05 CRC 1=OK, 0=error
3686 * 04 RAB 1=frame aborted
3687 */
3688 if ((status & 0xf0) != 0xA0) {
3689 if (!(status & BIT7) || (status & BIT4))
3690 info->icount.rxabort++;
3691 else if (status & BIT6)
3692 info->icount.rxover++;
3693 else if (!(status & BIT5)) {
3694 info->icount.rxcrc++;
3695 if (info->params.crc_type & HDLC_CRC_RETURN_EX)
Joe Perches0fab6de2008-04-28 02:14:02 -07003696 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 }
3698 framesize = 0;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003699#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 {
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003701 info->netdev->stats.rx_errors++;
3702 info->netdev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 }
3704#endif
3705 } else
Joe Perches0fab6de2008-04-28 02:14:02 -07003706 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
3708 if (return_frame)
3709 framesize = buf->count;
3710
3711 if (debug_level >= DEBUG_LEVEL_BH)
3712 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003713 __FILE__, __LINE__, info->device_name, status, framesize);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003714
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 if (debug_level >= DEBUG_LEVEL_DATA)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003716 trace_block(info, buf->data, framesize, 0);
3717
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 if (framesize) {
3719 if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
3720 framesize+1 > info->max_frame_size) ||
3721 framesize > info->max_frame_size)
3722 info->icount.rxlong++;
3723 else {
3724 if (status & BIT5)
3725 info->icount.rxok++;
3726
3727 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
3728 *(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
3729 ++framesize;
3730 }
3731
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003732#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 if (info->netcount)
3734 hdlcdev_rx(info, buf->data, framesize);
3735 else
3736#endif
3737 ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
3738 }
3739 }
3740
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003741 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 buf->status = buf->count = 0;
3743 info->rx_frame_count--;
3744 info->rx_get++;
3745 if (info->rx_get >= info->rx_buf_count)
3746 info->rx_get = 0;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003747 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Joe Perches0fab6de2008-04-28 02:14:02 -07003749 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750}
3751
Joe Perches0fab6de2008-04-28 02:14:02 -07003752static bool register_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003754 static unsigned char patterns[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
Tobias Klauserfe971072006-01-09 20:54:02 -08003756 static unsigned int count = ARRAY_SIZE(patterns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 unsigned int i;
Joe Perches0fab6de2008-04-28 02:14:02 -07003758 bool rc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 unsigned long flags;
3760
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003761 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 reset_device(info);
3763
3764 for (i = 0; i < count; i++) {
3765 write_reg(info, XAD1, patterns[i]);
3766 write_reg(info, XAD2, patterns[(i + 1) % count]);
Tobias Klauserfe971072006-01-09 20:54:02 -08003767 if ((read_reg(info, XAD1) != patterns[i]) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003769 rc = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 break;
3771 }
3772 }
3773
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003774 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 return rc;
3776}
3777
Joe Perches0fab6de2008-04-28 02:14:02 -07003778static bool irq_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779{
3780 unsigned long end_time;
3781 unsigned long flags;
3782
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003783 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 reset_device(info);
3785
Joe Perches0fab6de2008-04-28 02:14:02 -07003786 info->testing_irq = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 hdlc_mode(info);
3788
Joe Perches0fab6de2008-04-28 02:14:02 -07003789 info->irq_occurred = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
3791 /* init hdlc mode */
3792
3793 irq_enable(info, CHA, IRQ_TIMER);
3794 write_reg(info, CHA + TIMR, 0); /* 512 cycles */
3795 issue_command(info, CHA, CMD_START_TIMER);
3796
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003797 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
3799 end_time=100;
3800 while(end_time-- && !info->irq_occurred) {
3801 msleep_interruptible(10);
3802 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003803
Joe Perches0fab6de2008-04-28 02:14:02 -07003804 info->testing_irq = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003806 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 reset_device(info);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003808 spin_unlock_irqrestore(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003809
Joe Perches0fab6de2008-04-28 02:14:02 -07003810 return info->irq_occurred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811}
3812
Peter Hagervallcdaad342006-06-23 02:06:04 -07003813static int adapter_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814{
3815 if (!register_test(info)) {
3816 info->init_error = DiagStatus_AddressFailure;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003817 printk("%s(%d):Register test failure for device %s Addr=%04X\n",
3818 __FILE__, __LINE__, info->device_name, (unsigned short)(info->io_base));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 return -ENODEV;
3820 }
3821
3822 if (!irq_test(info)) {
3823 info->init_error = DiagStatus_IrqFailure;
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003824 printk("%s(%d):Interrupt test failure for device %s IRQ=%d\n",
3825 __FILE__, __LINE__, info->device_name, (unsigned short)(info->irq_level));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 return -ENODEV;
3827 }
3828
3829 if (debug_level >= DEBUG_LEVEL_INFO)
3830 printk("%s(%d):device %s passed diagnostics\n",
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003831 __FILE__, __LINE__, info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 return 0;
3833}
3834
Peter Hagervallcdaad342006-06-23 02:06:04 -07003835static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836{
3837 int i;
3838 int linecount;
3839 if (xmit)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003840 printk("%s tx data:\n", info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 else
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003842 printk("%s rx data:\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 while(count) {
3845 if (count > 16)
3846 linecount = 16;
3847 else
3848 linecount = count;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 for(i=0;i<linecount;i++)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003851 printk("%02X ", (unsigned char)data[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 for(;i<17;i++)
3853 printk(" ");
3854 for(i=0;i<linecount;i++) {
3855 if (data[i]>=040 && data[i]<=0176)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003856 printk("%c", data[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 else
3858 printk(".");
3859 }
3860 printk("\n");
Jeff Garzikd12341f2007-10-19 15:45:35 -04003861
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 data += linecount;
3863 count -= linecount;
3864 }
3865}
3866
3867/* HDLC frame time out
3868 * update stats and do tx completion processing
3869 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003870static void tx_timeout(unsigned long context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871{
3872 MGSLPC_INFO *info = (MGSLPC_INFO*)context;
3873 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003874
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003875 if (debug_level >= DEBUG_LEVEL_INFO)
3876 printk("%s(%d):tx_timeout(%s)\n",
3877 __FILE__, __LINE__, info->device_name);
3878 if (info->tx_active &&
3879 info->params.mode == MGSL_MODE_HDLC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 info->icount.txtimeout++;
3881 }
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003882 spin_lock_irqsave(&info->lock, flags);
Joe Perches0fab6de2008-04-28 02:14:02 -07003883 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 info->tx_count = info->tx_put = info->tx_get = 0;
3885
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003886 spin_unlock_irqrestore(&info->lock, flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003887
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003888#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 if (info->netcount)
3890 hdlcdev_tx_done(info);
3891 else
3892#endif
Alan Coxeeb46132009-01-02 13:48:47 +00003893 {
3894 struct tty_struct *tty = tty_port_tty_get(&info->port);
3895 bh_transmit(info, tty);
3896 tty_kref_put(tty);
3897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898}
3899
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003900#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
3902/**
3903 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
3904 * set encoding and frame check sequence (FCS) options
3905 *
3906 * dev pointer to network device structure
3907 * encoding serial encoding setting
3908 * parity FCS setting
3909 *
3910 * returns 0 if success, otherwise error code
3911 */
3912static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
3913 unsigned short parity)
3914{
3915 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00003916 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 unsigned char new_encoding;
3918 unsigned short new_crctype;
3919
3920 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00003921 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 return -EBUSY;
3923
3924 switch (encoding)
3925 {
3926 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
3927 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
3928 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
3929 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
3930 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
3931 default: return -EINVAL;
3932 }
3933
3934 switch (parity)
3935 {
3936 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
3937 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
3938 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
3939 default: return -EINVAL;
3940 }
3941
3942 info->params.encoding = new_encoding;
Alexey Dobriyan53b35312006-03-24 03:16:13 -08003943 info->params.crc_type = new_crctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
3945 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00003946 if (info->netcount) {
3947 tty = tty_port_tty_get(&info->port);
3948 mgslpc_program_hw(info, tty);
3949 tty_kref_put(tty);
3950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 return 0;
3953}
3954
3955/**
3956 * called by generic HDLC layer to send frame
3957 *
3958 * skb socket buffer containing HDLC frame
3959 * dev pointer to network device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 */
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003961static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
3962 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963{
3964 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 unsigned long flags;
3966
3967 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003968 printk(KERN_INFO "%s:hdlc_xmit(%s)\n", __FILE__, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
3970 /* stop sending until this frame completes */
3971 netif_stop_queue(dev);
3972
3973 /* copy data to device buffers */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003974 skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 info->tx_get = 0;
3976 info->tx_put = info->tx_count = skb->len;
3977
3978 /* update network statistics */
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003979 dev->stats.tx_packets++;
3980 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
3982 /* done with socket buffer, so free it */
3983 dev_kfree_skb(skb);
3984
3985 /* save start time for transmit timeout detection */
3986 dev->trans_start = jiffies;
3987
3988 /* start hardware transmitter if necessary */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003989 spin_lock_irqsave(&info->lock, flags);
Alan Coxeeb46132009-01-02 13:48:47 +00003990 if (!info->tx_active) {
3991 struct tty_struct *tty = tty_port_tty_get(&info->port);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003992 tx_start(info, tty);
3993 tty_kref_put(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00003994 }
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01003995 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003997 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998}
3999
4000/**
4001 * called by network layer when interface enabled
4002 * claim resources and initialize hardware
4003 *
4004 * dev pointer to network device structure
4005 *
4006 * returns 0 if success, otherwise error code
4007 */
4008static int hdlcdev_open(struct net_device *dev)
4009{
4010 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00004011 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 int rc;
4013 unsigned long flags;
4014
4015 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004016 printk("%s:hdlcdev_open(%s)\n", __FILE__, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
4018 /* generic HDLC layer open processing */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004019 rc = hdlc_open(dev);
4020 if (rc != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 return rc;
4022
4023 /* arbitrate between network and tty opens */
4024 spin_lock_irqsave(&info->netlock, flags);
Alan Coxeeb46132009-01-02 13:48:47 +00004025 if (info->port.count != 0 || info->netcount != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
4027 spin_unlock_irqrestore(&info->netlock, flags);
4028 return -EBUSY;
4029 }
4030 info->netcount=1;
4031 spin_unlock_irqrestore(&info->netlock, flags);
4032
Alan Coxeeb46132009-01-02 13:48:47 +00004033 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 /* claim resources and init adapter */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004035 rc = startup(info, tty);
4036 if (rc != 0) {
Alan Coxeeb46132009-01-02 13:48:47 +00004037 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 spin_lock_irqsave(&info->netlock, flags);
4039 info->netcount=0;
4040 spin_unlock_irqrestore(&info->netlock, flags);
4041 return rc;
4042 }
Joe Perches9fe80742013-01-27 18:21:00 -08004043 /* assert RTS and DTR, apply hardware settings */
4044 info->serial_signals |= SerialSignal_RTS | SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00004045 mgslpc_program_hw(info, tty);
4046 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
4048 /* enable network layer transmit */
4049 dev->trans_start = jiffies;
4050 netif_start_queue(dev);
4051
4052 /* inform generic HDLC layer of current DCD status */
4053 spin_lock_irqsave(&info->lock, flags);
4054 get_signals(info);
4055 spin_unlock_irqrestore(&info->lock, flags);
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07004056 if (info->serial_signals & SerialSignal_DCD)
4057 netif_carrier_on(dev);
4058 else
4059 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 return 0;
4061}
4062
4063/**
4064 * called by network layer when interface is disabled
4065 * shutdown hardware and release resources
4066 *
4067 * dev pointer to network device structure
4068 *
4069 * returns 0 if success, otherwise error code
4070 */
4071static int hdlcdev_close(struct net_device *dev)
4072{
4073 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00004074 struct tty_struct *tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 unsigned long flags;
4076
4077 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004078 printk("%s:hdlcdev_close(%s)\n", __FILE__, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
4080 netif_stop_queue(dev);
4081
4082 /* shutdown adapter and release resources */
Alan Coxeeb46132009-01-02 13:48:47 +00004083 shutdown(info, tty);
4084 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 hdlc_close(dev);
4086
4087 spin_lock_irqsave(&info->netlock, flags);
4088 info->netcount=0;
4089 spin_unlock_irqrestore(&info->netlock, flags);
4090
4091 return 0;
4092}
4093
4094/**
4095 * called by network layer to process IOCTL call to network device
4096 *
4097 * dev pointer to network device structure
4098 * ifr pointer to network interface request structure
4099 * cmd IOCTL command code
4100 *
4101 * returns 0 if success, otherwise error code
4102 */
4103static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4104{
4105 const size_t size = sizeof(sync_serial_settings);
4106 sync_serial_settings new_line;
4107 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
4108 MGSLPC_INFO *info = dev_to_port(dev);
4109 unsigned int flags;
4110
4111 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004112 printk("%s:hdlcdev_ioctl(%s)\n", __FILE__, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
4114 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00004115 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 return -EBUSY;
4117
4118 if (cmd != SIOCWANDEV)
4119 return hdlc_ioctl(dev, ifr, cmd);
4120
Vasiliy Kulikov5b917a12010-10-17 18:41:24 +04004121 memset(&new_line, 0, size);
4122
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 switch(ifr->ifr_settings.type) {
4124 case IF_GET_IFACE: /* return current sync_serial_settings */
4125
4126 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
4127 if (ifr->ifr_settings.size < size) {
4128 ifr->ifr_settings.size = size; /* data size wanted */
4129 return -ENOBUFS;
4130 }
4131
4132 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4133 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4134 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4135 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4136
4137 switch (flags){
4138 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
4139 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
4140 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
4141 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
4142 default: new_line.clock_type = CLOCK_DEFAULT;
4143 }
4144
4145 new_line.clock_rate = info->params.clock_speed;
4146 new_line.loopback = info->params.loopback ? 1:0;
4147
4148 if (copy_to_user(line, &new_line, size))
4149 return -EFAULT;
4150 return 0;
4151
4152 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
4153
4154 if(!capable(CAP_NET_ADMIN))
4155 return -EPERM;
4156 if (copy_from_user(&new_line, line, size))
4157 return -EFAULT;
4158
4159 switch (new_line.clock_type)
4160 {
4161 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
4162 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
4163 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
4164 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
4165 case CLOCK_DEFAULT: flags = info->params.flags &
4166 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4167 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4168 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4169 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
4170 default: return -EINVAL;
4171 }
4172
4173 if (new_line.loopback != 0 && new_line.loopback != 1)
4174 return -EINVAL;
4175
4176 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4177 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4178 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4179 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4180 info->params.flags |= flags;
4181
4182 info->params.loopback = new_line.loopback;
4183
4184 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
4185 info->params.clock_speed = new_line.clock_rate;
4186 else
4187 info->params.clock_speed = 0;
4188
4189 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00004190 if (info->netcount) {
4191 struct tty_struct *tty = tty_port_tty_get(&info->port);
4192 mgslpc_program_hw(info, tty);
4193 tty_kref_put(tty);
4194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 return 0;
4196
4197 default:
4198 return hdlc_ioctl(dev, ifr, cmd);
4199 }
4200}
4201
4202/**
4203 * called by network layer when transmit timeout is detected
4204 *
4205 * dev pointer to network device structure
4206 */
4207static void hdlcdev_tx_timeout(struct net_device *dev)
4208{
4209 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 unsigned long flags;
4211
4212 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004213 printk("hdlcdev_tx_timeout(%s)\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004215 dev->stats.tx_errors++;
4216 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004218 spin_lock_irqsave(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 tx_stop(info);
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004220 spin_unlock_irqrestore(&info->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
4222 netif_wake_queue(dev);
4223}
4224
4225/**
4226 * called by device driver when transmit completes
4227 * reenable network layer transmit if stopped
4228 *
4229 * info pointer to device instance information
4230 */
4231static void hdlcdev_tx_done(MGSLPC_INFO *info)
4232{
4233 if (netif_queue_stopped(info->netdev))
4234 netif_wake_queue(info->netdev);
4235}
4236
4237/**
4238 * called by device driver when frame received
4239 * pass frame to network layer
4240 *
4241 * info pointer to device instance information
4242 * buf pointer to buffer contianing frame data
4243 * size count of data bytes in buf
4244 */
4245static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size)
4246{
4247 struct sk_buff *skb = dev_alloc_skb(size);
4248 struct net_device *dev = info->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
4250 if (debug_level >= DEBUG_LEVEL_INFO)
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004251 printk("hdlcdev_rx(%s)\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
4253 if (skb == NULL) {
4254 printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n", dev->name);
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004255 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 return;
4257 }
4258
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004259 memcpy(skb_put(skb, size), buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004261 skb->protocol = hdlc_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004263 dev->stats.rx_packets++;
4264 dev->stats.rx_bytes += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
4266 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267}
4268
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004269static const struct net_device_ops hdlcdev_ops = {
4270 .ndo_open = hdlcdev_open,
4271 .ndo_stop = hdlcdev_close,
4272 .ndo_change_mtu = hdlc_change_mtu,
4273 .ndo_start_xmit = hdlc_start_xmit,
4274 .ndo_do_ioctl = hdlcdev_ioctl,
4275 .ndo_tx_timeout = hdlcdev_tx_timeout,
4276};
4277
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278/**
4279 * called by device driver when adding device instance
4280 * do generic HDLC initialization
4281 *
4282 * info pointer to device instance information
4283 *
4284 * returns 0 if success, otherwise error code
4285 */
4286static int hdlcdev_init(MGSLPC_INFO *info)
4287{
4288 int rc;
4289 struct net_device *dev;
4290 hdlc_device *hdlc;
4291
4292 /* allocate and initialize network and HDLC layer objects */
4293
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004294 dev = alloc_hdlcdev(info);
4295 if (dev == NULL) {
4296 printk(KERN_ERR "%s:hdlc device allocation failure\n", __FILE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 return -ENOMEM;
4298 }
4299
4300 /* for network layer reporting purposes only */
4301 dev->base_addr = info->io_base;
4302 dev->irq = info->irq_level;
4303
4304 /* network layer callbacks and settings */
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004305 dev->netdev_ops = &hdlcdev_ops;
4306 dev->watchdog_timeo = 10 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 dev->tx_queue_len = 50;
4308
4309 /* generic HDLC layer callbacks and settings */
4310 hdlc = dev_to_hdlc(dev);
4311 hdlc->attach = hdlcdev_attach;
4312 hdlc->xmit = hdlcdev_xmit;
4313
4314 /* register objects with HDLC layer */
Alexey Khoroshilov3d553992013-02-07 01:00:35 +01004315 rc = register_hdlc_device(dev);
4316 if (rc) {
4317 printk(KERN_WARNING "%s:unable to register hdlc device\n", __FILE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 free_netdev(dev);
4319 return rc;
4320 }
4321
4322 info->netdev = dev;
4323 return 0;
4324}
4325
4326/**
4327 * called by device driver when removing device instance
4328 * do generic HDLC cleanup
4329 *
4330 * info pointer to device instance information
4331 */
4332static void hdlcdev_exit(MGSLPC_INFO *info)
4333{
4334 unregister_hdlc_device(info->netdev);
4335 free_netdev(info->netdev);
4336 info->netdev = NULL;
4337}
4338
4339#endif /* CONFIG_HDLC */
4340