blob: 56e4e940fa196282731d5d5de06ef88c35fcfed0 [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
105typedef struct
106{
107 int count;
108 unsigned char status;
109 char data[1];
110} RXBUF;
111
112/* The queue of BH actions to be performed */
113
114#define BH_RECEIVE 1
115#define BH_TRANSMIT 2
116#define BH_STATUS 4
117
118#define IO_PIN_SHUTDOWN_LIMIT 100
119
120#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
121
122struct _input_signal_events {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400123 int ri_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 int ri_down;
125 int dsr_up;
126 int dsr_down;
127 int dcd_up;
128 int dcd_down;
129 int cts_up;
130 int cts_down;
131};
132
133
134/*
135 * Device instance data structure
136 */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138typedef struct _mgslpc_info {
Alan Coxeeb46132009-01-02 13:48:47 +0000139 struct tty_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 void *if_ptr; /* General purpose pointer (used by SPPP) */
141 int magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 int line;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct mgsl_icount icount;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 int timeout;
147 int x_char; /* xon/xoff character */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 unsigned char read_status_mask;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400149 unsigned char ignore_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 unsigned char *tx_buf;
152 int tx_put;
153 int tx_get;
154 int tx_count;
155
156 /* circular list of fixed length rx buffers */
157
158 unsigned char *rx_buf; /* memory allocated for all rx buffers */
159 int rx_buf_total_size; /* size of memory allocated for rx buffers */
160 int rx_put; /* index of next empty rx buffer */
161 int rx_get; /* index of next full rx buffer */
162 int rx_buf_size; /* size in bytes of single rx buffer */
163 int rx_buf_count; /* total number of rx buffers */
164 int rx_frame_count; /* number of full rx buffers */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 wait_queue_head_t status_event_wait_q;
167 wait_queue_head_t event_wait_q;
168 struct timer_list tx_timer; /* HDLC transmit timeout timer */
169 struct _mgslpc_info *next_device; /* device list link */
170
171 unsigned short imra_value;
172 unsigned short imrb_value;
173 unsigned char pim_value;
174
175 spinlock_t lock;
176 struct work_struct task; /* task structure for scheduling bh */
177
178 u32 max_frame_size;
179
180 u32 pending_bh;
181
Joe Perches0fab6de2008-04-28 02:14:02 -0700182 bool bh_running;
183 bool bh_requested;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int dcd_chkcount; /* check counts to prevent */
186 int cts_chkcount; /* too many IRQs if a signal */
187 int dsr_chkcount; /* is floating */
188 int ri_chkcount;
189
Joe Perches0fab6de2008-04-28 02:14:02 -0700190 bool rx_enabled;
191 bool rx_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Joe Perches0fab6de2008-04-28 02:14:02 -0700193 bool tx_enabled;
194 bool tx_active;
195 bool tx_aborting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 u32 idle_mode;
197
198 int if_mode; /* serial interface selection (RS-232, v.35 etc) */
199
200 char device_name[25]; /* device instance name */
201
202 unsigned int io_base; /* base I/O address of adapter */
203 unsigned int irq_level;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 MGSL_PARAMS params; /* communications parameters */
206
207 unsigned char serial_signals; /* current serial signal states */
208
Joe Perches0fab6de2008-04-28 02:14:02 -0700209 bool irq_occurred; /* for diagnostics use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 char testing_irq;
211 unsigned int init_error; /* startup error (DIAGS) */
212
213 char flag_buf[MAX_ASYNC_BUFFER_SIZE];
Joe Perches0fab6de2008-04-28 02:14:02 -0700214 bool drop_rts_on_tx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 struct _input_signal_events input_signal_events;
217
218 /* PCMCIA support */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100219 struct pcmcia_device *p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 int stop;
221
222 /* SPPP/Cisco HDLC device parts */
223 int netcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 spinlock_t netlock;
225
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800226#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 struct net_device *netdev;
228#endif
229
230} MGSLPC_INFO;
231
232#define MGSLPC_MAGIC 0x5402
233
234/*
235 * The size of the serial xmit buffer is 1 page, or 4096 bytes
236 */
237#define TXBUFSIZE 4096
238
Jeff Garzikd12341f2007-10-19 15:45:35 -0400239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#define CHA 0x00 /* channel A offset */
241#define CHB 0x40 /* channel B offset */
242
243/*
244 * FIXME: PPC has PVR defined in asm/reg.h. For now we just undef it.
245 */
246#undef PVR
247
248#define RXFIFO 0
249#define TXFIFO 0
250#define STAR 0x20
251#define CMDR 0x20
252#define RSTA 0x21
253#define PRE 0x21
254#define MODE 0x22
255#define TIMR 0x23
256#define XAD1 0x24
257#define XAD2 0x25
258#define RAH1 0x26
259#define RAH2 0x27
260#define DAFO 0x27
261#define RAL1 0x28
262#define RFC 0x28
263#define RHCR 0x29
264#define RAL2 0x29
265#define RBCL 0x2a
266#define XBCL 0x2a
267#define RBCH 0x2b
268#define XBCH 0x2b
269#define CCR0 0x2c
270#define CCR1 0x2d
271#define CCR2 0x2e
272#define CCR3 0x2f
273#define VSTR 0x34
274#define BGR 0x34
275#define RLCR 0x35
276#define AML 0x36
277#define AMH 0x37
278#define GIS 0x38
279#define IVA 0x38
280#define IPC 0x39
281#define ISR 0x3a
282#define IMR 0x3a
283#define PVR 0x3c
284#define PIS 0x3d
285#define PIM 0x3d
286#define PCR 0x3e
287#define CCR4 0x3f
Jeff Garzikd12341f2007-10-19 15:45:35 -0400288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289// IMR/ISR
Jeff Garzikd12341f2007-10-19 15:45:35 -0400290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#define IRQ_BREAK_ON BIT15 // rx break detected
292#define IRQ_DATAOVERRUN BIT14 // receive data overflow
293#define IRQ_ALLSENT BIT13 // all sent
294#define IRQ_UNDERRUN BIT12 // transmit data underrun
295#define IRQ_TIMER BIT11 // timer interrupt
296#define IRQ_CTS BIT10 // CTS status change
297#define IRQ_TXREPEAT BIT9 // tx message repeat
298#define IRQ_TXFIFO BIT8 // transmit pool ready
299#define IRQ_RXEOM BIT7 // receive message end
300#define IRQ_EXITHUNT BIT6 // receive frame start
301#define IRQ_RXTIME BIT6 // rx char timeout
302#define IRQ_DCD BIT2 // carrier detect status change
303#define IRQ_OVERRUN BIT1 // receive frame overflow
304#define IRQ_RXFIFO BIT0 // receive pool full
Jeff Garzikd12341f2007-10-19 15:45:35 -0400305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306// STAR
Jeff Garzikd12341f2007-10-19 15:45:35 -0400307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#define XFW BIT6 // transmit FIFO write enable
309#define CEC BIT2 // command executing
310#define CTS BIT1 // CTS state
Jeff Garzikd12341f2007-10-19 15:45:35 -0400311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#define PVR_DTR BIT0
313#define PVR_DSR BIT1
314#define PVR_RI BIT2
315#define PVR_AUTOCTS BIT3
316#define PVR_RS232 0x20 /* 0010b */
317#define PVR_V35 0xe0 /* 1110b */
318#define PVR_RS422 0x40 /* 0100b */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400319
320/* Register access functions */
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#define write_reg(info, reg, val) outb((val),(info)->io_base + (reg))
323#define read_reg(info, reg) inb((info)->io_base + (reg))
324
Jeff Garzikd12341f2007-10-19 15:45:35 -0400325#define read_reg16(info, reg) inw((info)->io_base + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define write_reg16(info, reg, val) outw((val), (info)->io_base + (reg))
Jeff Garzikd12341f2007-10-19 15:45:35 -0400327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#define set_reg_bits(info, reg, mask) \
329 write_reg(info, (reg), \
Jeff Garzikd12341f2007-10-19 15:45:35 -0400330 (unsigned char) (read_reg(info, (reg)) | (mask)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#define clear_reg_bits(info, reg, mask) \
332 write_reg(info, (reg), \
Jeff Garzikd12341f2007-10-19 15:45:35 -0400333 (unsigned char) (read_reg(info, (reg)) & ~(mask)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334/*
335 * interrupt enable/disable routines
Jeff Garzikd12341f2007-10-19 15:45:35 -0400336 */
337static void irq_disable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 if (channel == CHA) {
340 info->imra_value |= mask;
341 write_reg16(info, CHA + IMR, info->imra_value);
342 } else {
343 info->imrb_value |= mask;
344 write_reg16(info, CHB + IMR, info->imrb_value);
345 }
346}
Jeff Garzikd12341f2007-10-19 15:45:35 -0400347static void irq_enable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 if (channel == CHA) {
350 info->imra_value &= ~mask;
351 write_reg16(info, CHA + IMR, info->imra_value);
352 } else {
353 info->imrb_value &= ~mask;
354 write_reg16(info, CHB + IMR, info->imrb_value);
355 }
356}
357
358#define port_irq_disable(info, mask) \
359 { info->pim_value |= (mask); write_reg(info, PIM, info->pim_value); }
360
361#define port_irq_enable(info, mask) \
362 { info->pim_value &= ~(mask); write_reg(info, PIM, info->pim_value); }
363
364static void rx_start(MGSLPC_INFO *info);
365static void rx_stop(MGSLPC_INFO *info);
366
Alan Coxeeb46132009-01-02 13:48:47 +0000367static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static void tx_stop(MGSLPC_INFO *info);
369static void tx_set_idle(MGSLPC_INFO *info);
370
371static void get_signals(MGSLPC_INFO *info);
372static void set_signals(MGSLPC_INFO *info);
373
374static void reset_device(MGSLPC_INFO *info);
375
376static void hdlc_mode(MGSLPC_INFO *info);
377static void async_mode(MGSLPC_INFO *info);
378
379static void tx_timeout(unsigned long context);
380
Alan Coxeeb46132009-01-02 13:48:47 +0000381static int carrier_raised(struct tty_port *port);
Alan Coxfcc8ac12009-06-11 12:24:17 +0100382static void dtr_rts(struct tty_port *port, int onoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800384#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#define dev_to_port(D) (dev_to_hdlc(D)->priv)
386static void hdlcdev_tx_done(MGSLPC_INFO *info);
387static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size);
388static int hdlcdev_init(MGSLPC_INFO *info);
389static void hdlcdev_exit(MGSLPC_INFO *info);
390#endif
391
392static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit);
393
Joe Perches0fab6de2008-04-28 02:14:02 -0700394static bool register_test(MGSLPC_INFO *info);
395static bool irq_test(MGSLPC_INFO *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396static int adapter_test(MGSLPC_INFO *info);
397
398static int claim_resources(MGSLPC_INFO *info);
399static void release_resources(MGSLPC_INFO *info);
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +0100400static int mgslpc_add_device(MGSLPC_INFO *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static void mgslpc_remove_device(MGSLPC_INFO *info);
402
Alan Coxeeb46132009-01-02 13:48:47 +0000403static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404static void rx_reset_buffers(MGSLPC_INFO *info);
405static int rx_alloc_buffers(MGSLPC_INFO *info);
406static void rx_free_buffers(MGSLPC_INFO *info);
407
David Howells7d12e782006-10-05 14:55:46 +0100408static irqreturn_t mgslpc_isr(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410/*
411 * Bottom half interrupt handlers
412 */
David Howellsc4028952006-11-22 14:57:56 +0000413static void bh_handler(struct work_struct *work);
Alan Coxeeb46132009-01-02 13:48:47 +0000414static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static void bh_status(MGSLPC_INFO *info);
416
417/*
418 * ioctl handlers
419 */
Alan Cox60b33c12011-02-14 16:26:14 +0000420static int tiocmget(struct tty_struct *tty);
Alan Cox20b9d172011-02-14 16:26:50 +0000421static int tiocmset(struct tty_struct *tty,
422 unsigned int set, unsigned int clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423static int get_stats(MGSLPC_INFO *info, struct mgsl_icount __user *user_icount);
424static int get_params(MGSLPC_INFO *info, MGSL_PARAMS __user *user_params);
Alan Coxeeb46132009-01-02 13:48:47 +0000425static int set_params(MGSLPC_INFO *info, MGSL_PARAMS __user *new_params, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static int get_txidle(MGSLPC_INFO *info, int __user *idle_mode);
427static int set_txidle(MGSLPC_INFO *info, int idle_mode);
Alan Coxeeb46132009-01-02 13:48:47 +0000428static int set_txenable(MGSLPC_INFO *info, int enable, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429static int tx_abort(MGSLPC_INFO *info);
430static int set_rxenable(MGSLPC_INFO *info, int enable);
431static int wait_events(MGSLPC_INFO *info, int __user *mask);
432
433static MGSLPC_INFO *mgslpc_device_list = NULL;
434static int mgslpc_device_count = 0;
435
436/*
437 * Set this param to non-zero to load eax with the
438 * .text section address and breakpoint on module load.
439 * This is useful for use with gdb and add-symbol-file command.
440 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030441static bool break_on_load=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443/*
444 * Driver major number, defaults to zero to get auto
445 * assigned major number. May be forced as module parameter.
446 */
447static int ttymajor=0;
448
449static int debug_level = 0;
450static int maxframe[MAX_DEVICE_COUNT] = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452module_param(break_on_load, bool, 0);
453module_param(ttymajor, int, 0);
454module_param(debug_level, int, 0);
455module_param_array(maxframe, int, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457MODULE_LICENSE("GPL");
458
459static char *driver_name = "SyncLink PC Card driver";
Paul Fulghuma7482a22005-09-10 00:26:07 -0700460static char *driver_version = "$Revision: 4.34 $";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462static struct tty_driver *serial_driver;
463
464/* number of characters left in xmit buffer before we ask for more */
465#define WAKEUP_CHARS 256
466
Alan Coxeeb46132009-01-02 13:48:47 +0000467static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout);
469
470/* PCMCIA prototypes */
471
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200472static int mgslpc_config(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473static void mgslpc_release(u_long arg);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100474static void mgslpc_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * 1st function defined in .text section. Calling this function in
478 * init_module() followed by a breakpoint allows a remote debugger
479 * (gdb) to get the .text address for the add-symbol-file command.
480 * This allows remote debugging of dynamically loadable modules.
481 */
482static void* mgslpc_get_text_ptr(void)
483{
484 return mgslpc_get_text_ptr;
485}
486
487/**
488 * line discipline callback wrappers
489 *
490 * The wrappers maintain line discipline references
491 * while calling into the line discipline.
492 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * ldisc_receive_buf - pass receive data to line discipline
494 */
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static void ldisc_receive_buf(struct tty_struct *tty,
497 const __u8 *data, char *flags, int count)
498{
499 struct tty_ldisc *ld;
500 if (!tty)
501 return;
502 ld = tty_ldisc_ref(tty);
503 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100504 if (ld->ops->receive_buf)
505 ld->ops->receive_buf(tty, data, flags, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 tty_ldisc_deref(ld);
507 }
508}
509
Alan Coxeeb46132009-01-02 13:48:47 +0000510static const struct tty_port_operations mgslpc_port_ops = {
511 .carrier_raised = carrier_raised,
Alan Coxfcc8ac12009-06-11 12:24:17 +0100512 .dtr_rts = dtr_rts
Alan Coxeeb46132009-01-02 13:48:47 +0000513};
514
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200515static int mgslpc_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 MGSLPC_INFO *info;
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200518 int ret;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 if (debug_level >= DEBUG_LEVEL_INFO)
521 printk("mgslpc_attach\n");
Dominik Brodowskifd238232006-03-05 10:45:09 +0100522
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700523 info = kzalloc(sizeof(MGSLPC_INFO), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (!info) {
525 printk("Error can't allocate device instance data\n");
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100526 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 info->magic = MGSLPC_MAGIC;
Alan Coxeeb46132009-01-02 13:48:47 +0000530 tty_port_init(&info->port);
531 info->port.ops = &mgslpc_port_ops;
David Howellsc4028952006-11-22 14:57:56 +0000532 INIT_WORK(&info->task, bh_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 info->max_frame_size = 4096;
Alan Coxeeb46132009-01-02 13:48:47 +0000534 info->port.close_delay = 5*HZ/10;
535 info->port.closing_wait = 30*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 init_waitqueue_head(&info->status_event_wait_q);
537 init_waitqueue_head(&info->event_wait_q);
538 spin_lock_init(&info->lock);
539 spin_lock_init(&info->netlock);
540 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
Jeff Garzikd12341f2007-10-19 15:45:35 -0400541 info->idle_mode = HDLC_TXIDLE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 info->imra_value = 0xffff;
543 info->imrb_value = 0xffff;
544 info->pim_value = 0xff;
545
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200546 info->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 link->priv = info;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100548
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200549 /* Initialize the struct pcmcia_device structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200551 ret = mgslpc_config(link);
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +0100552 if (ret != 0)
553 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +0100555 ret = mgslpc_add_device(info);
556 if (ret != 0)
557 goto failed_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100559 return 0;
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +0100560
561failed_release:
562 mgslpc_release((u_long)link);
563failed:
564 tty_port_destroy(&info->port);
565 kfree(info);
566 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569/* Card has been inserted.
570 */
571
Dominik Brodowski00990e72010-07-30 13:13:46 +0200572static int mgslpc_ioprobe(struct pcmcia_device *p_dev, void *priv_data)
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200573{
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200574 return pcmcia_request_io(p_dev);
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200575}
576
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200577static int mgslpc_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 MGSLPC_INFO *info = link->priv;
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200580 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (debug_level >= DEBUG_LEVEL_INFO)
583 printk("mgslpc_config(0x%p)\n", link);
584
Dominik Brodowski00990e72010-07-30 13:13:46 +0200585 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
586
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200587 ret = pcmcia_loop_config(link, mgslpc_ioprobe, NULL);
588 if (ret != 0)
589 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Dominik Brodowski7feabb62010-07-29 18:35:47 +0200591 link->config_index = 8;
592 link->config_regs = PRESENT_OPTION;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400593
Dominik Brodowskieb141202010-03-07 12:21:16 +0100594 ret = pcmcia_request_irq(link, mgslpc_isr);
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200595 if (ret)
596 goto failed;
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200597 ret = pcmcia_enable_device(link);
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200598 if (ret)
599 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200601 info->io_base = link->resource[0]->start;
Dominik Brodowskieb141202010-03-07 12:21:16 +0100602 info->irq_level = link->irq;
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200605failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 mgslpc_release((u_long)link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200607 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610/* Card has been removed.
611 * Unregister device and release PCMCIA configuration.
612 * If device is open, postpone until it is closed.
613 */
614static void mgslpc_release(u_long arg)
615{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100616 struct pcmcia_device *link = (struct pcmcia_device *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100618 if (debug_level >= DEBUG_LEVEL_INFO)
619 printk("mgslpc_release(0x%p)\n", link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100621 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200624static void mgslpc_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100626 if (debug_level >= DEBUG_LEVEL_INFO)
627 printk("mgslpc_detach(0x%p)\n", link);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100628
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100629 ((MGSLPC_INFO *)link->priv)->stop = 1;
630 mgslpc_release((u_long)link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100632 mgslpc_remove_device((MGSLPC_INFO *)link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200635static int mgslpc_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100636{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100637 MGSLPC_INFO *info = link->priv;
638
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100639 info->stop = 1;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100640
641 return 0;
642}
643
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200644static int mgslpc_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100645{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100646 MGSLPC_INFO *info = link->priv;
647
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100648 info->stop = 0;
649
650 return 0;
651}
652
653
Joe Perches0fab6de2008-04-28 02:14:02 -0700654static inline bool mgslpc_paranoia_check(MGSLPC_INFO *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 char *name, const char *routine)
656{
657#ifdef MGSLPC_PARANOIA_CHECK
658 static const char *badmagic =
659 "Warning: bad magic number for mgsl struct (%s) in %s\n";
660 static const char *badinfo =
661 "Warning: null mgslpc_info for (%s) in %s\n";
662
663 if (!info) {
664 printk(badinfo, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700665 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 if (info->magic != MGSLPC_MAGIC) {
668 printk(badmagic, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700669 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
671#else
672 if (!info)
Joe Perches0fab6de2008-04-28 02:14:02 -0700673 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674#endif
Joe Perches0fab6de2008-04-28 02:14:02 -0700675 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678
679#define CMD_RXFIFO BIT7 // release current rx FIFO
680#define CMD_RXRESET BIT6 // receiver reset
681#define CMD_RXFIFO_READ BIT5
682#define CMD_START_TIMER BIT4
683#define CMD_TXFIFO BIT3 // release current tx FIFO
684#define CMD_TXEOM BIT1 // transmit end message
685#define CMD_TXRESET BIT0 // transmit reset
686
Joe Perches0fab6de2008-04-28 02:14:02 -0700687static bool wait_command_complete(MGSLPC_INFO *info, unsigned char channel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 int i = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400690 /* wait for command completion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 while (read_reg(info, (unsigned char)(channel+STAR)) & BIT2) {
692 udelay(1);
693 if (i++ == 1000)
Joe Perches0fab6de2008-04-28 02:14:02 -0700694 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700696 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Jeff Garzikd12341f2007-10-19 15:45:35 -0400699static void issue_command(MGSLPC_INFO *info, unsigned char channel, unsigned char cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 wait_command_complete(info, channel);
702 write_reg(info, (unsigned char) (channel + CMDR), cmd);
703}
704
705static void tx_pause(struct tty_struct *tty)
706{
707 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
708 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (mgslpc_paranoia_check(info, tty->name, "tx_pause"))
711 return;
712 if (debug_level >= DEBUG_LEVEL_INFO)
Jeff Garzikd12341f2007-10-19 15:45:35 -0400713 printk("tx_pause(%s)\n",info->device_name);
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 spin_lock_irqsave(&info->lock,flags);
716 if (info->tx_enabled)
717 tx_stop(info);
718 spin_unlock_irqrestore(&info->lock,flags);
719}
720
721static void tx_release(struct tty_struct *tty)
722{
723 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
724 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (mgslpc_paranoia_check(info, tty->name, "tx_release"))
727 return;
728 if (debug_level >= DEBUG_LEVEL_INFO)
Jeff Garzikd12341f2007-10-19 15:45:35 -0400729 printk("tx_release(%s)\n",info->device_name);
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 spin_lock_irqsave(&info->lock,flags);
732 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +0000733 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 spin_unlock_irqrestore(&info->lock,flags);
735}
736
737/* Return next bottom half action to perform.
738 * or 0 if nothing to do.
739 */
740static int bh_action(MGSLPC_INFO *info)
741{
742 unsigned long flags;
743 int rc = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 spin_lock_irqsave(&info->lock,flags);
746
747 if (info->pending_bh & BH_RECEIVE) {
748 info->pending_bh &= ~BH_RECEIVE;
749 rc = BH_RECEIVE;
750 } else if (info->pending_bh & BH_TRANSMIT) {
751 info->pending_bh &= ~BH_TRANSMIT;
752 rc = BH_TRANSMIT;
753 } else if (info->pending_bh & BH_STATUS) {
754 info->pending_bh &= ~BH_STATUS;
755 rc = BH_STATUS;
756 }
757
758 if (!rc) {
759 /* Mark BH routine as complete */
Joe Perches0fab6de2008-04-28 02:14:02 -0700760 info->bh_running = false;
761 info->bh_requested = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return rc;
767}
768
David Howellsc4028952006-11-22 14:57:56 +0000769static void bh_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
David Howellsc4028952006-11-22 14:57:56 +0000771 MGSLPC_INFO *info = container_of(work, MGSLPC_INFO, task);
Alan Coxeeb46132009-01-02 13:48:47 +0000772 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int action;
774
775 if (!info)
776 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (debug_level >= DEBUG_LEVEL_BH)
779 printk( "%s(%d):bh_handler(%s) entry\n",
780 __FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400781
Joe Perches0fab6de2008-04-28 02:14:02 -0700782 info->bh_running = true;
Alan Coxeeb46132009-01-02 13:48:47 +0000783 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 while((action = bh_action(info)) != 0) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /* Process work item */
788 if ( debug_level >= DEBUG_LEVEL_BH )
789 printk( "%s(%d):bh_handler() work item action=%d\n",
790 __FILE__,__LINE__,action);
791
792 switch (action) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 case BH_RECEIVE:
Alan Coxeeb46132009-01-02 13:48:47 +0000795 while(rx_get_frame(info, tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 break;
797 case BH_TRANSMIT:
Alan Coxeeb46132009-01-02 13:48:47 +0000798 bh_transmit(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 break;
800 case BH_STATUS:
801 bh_status(info);
802 break;
803 default:
804 /* unknown work item ID */
805 printk("Unknown work item ID=%08X!\n", action);
806 break;
807 }
808 }
809
Alan Coxeeb46132009-01-02 13:48:47 +0000810 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (debug_level >= DEBUG_LEVEL_BH)
812 printk( "%s(%d):bh_handler(%s) exit\n",
813 __FILE__,__LINE__,info->device_name);
814}
815
Alan Coxeeb46132009-01-02 13:48:47 +0000816static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (debug_level >= DEBUG_LEVEL_BH)
819 printk("bh_transmit() entry on %s\n", info->device_name);
820
Jiri Slabyb963a842007-02-10 01:44:55 -0800821 if (tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Peter Hagervallcdaad342006-06-23 02:06:04 -0700825static void bh_status(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 info->ri_chkcount = 0;
828 info->dsr_chkcount = 0;
829 info->dcd_chkcount = 0;
830 info->cts_chkcount = 0;
831}
832
Jeff Garzikd12341f2007-10-19 15:45:35 -0400833/* eom: non-zero = end of frame */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834static void rx_ready_hdlc(MGSLPC_INFO *info, int eom)
835{
836 unsigned char data[2];
837 unsigned char fifo_count, read_count, i;
838 RXBUF *buf = (RXBUF*)(info->rx_buf + (info->rx_put * info->rx_buf_size));
839
840 if (debug_level >= DEBUG_LEVEL_ISR)
841 printk("%s(%d):rx_ready_hdlc(eom=%d)\n",__FILE__,__LINE__,eom);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (!info->rx_enabled)
844 return;
845
846 if (info->rx_frame_count >= info->rx_buf_count) {
847 /* no more free buffers */
848 issue_command(info, CHA, CMD_RXRESET);
849 info->pending_bh |= BH_RECEIVE;
Joe Perches0fab6de2008-04-28 02:14:02 -0700850 info->rx_overflow = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 info->icount.buf_overrun++;
852 return;
853 }
854
855 if (eom) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400856 /* end of frame, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (!(fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f)))
858 fifo_count = 32;
859 } else
860 fifo_count = 32;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 do {
863 if (fifo_count == 1) {
864 read_count = 1;
865 data[0] = read_reg(info, CHA + RXFIFO);
866 } else {
867 read_count = 2;
868 *((unsigned short *) data) = read_reg16(info, CHA + RXFIFO);
869 }
870 fifo_count -= read_count;
871 if (!fifo_count && eom)
872 buf->status = data[--read_count];
873
874 for (i = 0; i < read_count; i++) {
875 if (buf->count >= info->max_frame_size) {
876 /* frame too large, reset receiver and reset current buffer */
877 issue_command(info, CHA, CMD_RXRESET);
878 buf->count = 0;
879 return;
880 }
881 *(buf->data + buf->count) = data[i];
882 buf->count++;
883 }
884 } while (fifo_count);
885
886 if (eom) {
887 info->pending_bh |= BH_RECEIVE;
888 info->rx_frame_count++;
889 info->rx_put++;
890 if (info->rx_put >= info->rx_buf_count)
891 info->rx_put = 0;
892 }
893 issue_command(info, CHA, CMD_RXFIFO);
894}
895
Alan Coxeeb46132009-01-02 13:48:47 +0000896static void rx_ready_async(MGSLPC_INFO *info, int tcd, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Alan Cox33f0f882006-01-09 20:54:13 -0800898 unsigned char data, status, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 int fifo_count;
Alan Cox33f0f882006-01-09 20:54:13 -0800900 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 struct mgsl_icount *icount = &info->icount;
902
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +0400903 if (!tty) {
904 /* tty is not available anymore */
905 issue_command(info, CHA, CMD_RXRESET);
906 if (debug_level >= DEBUG_LEVEL_ISR)
907 printk("%s(%d):rx_ready_async(tty=NULL)\n",__FILE__,__LINE__);
908 return;
909 }
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (tcd) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400912 /* early termination, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
914
915 /* Zero fifo count could mean 0 or 32 bytes available.
916 * If BIT5 of STAR is set then at least 1 byte is available.
917 */
918 if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
919 fifo_count = 32;
920 } else
921 fifo_count = 32;
Alan Cox33f0f882006-01-09 20:54:13 -0800922
923 tty_buffer_request_room(tty, fifo_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400924 /* Flush received async data to receive data buffer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 while (fifo_count) {
926 data = read_reg(info, CHA + RXFIFO);
927 status = read_reg(info, CHA + RXFIFO);
928 fifo_count -= 2;
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 icount->rx++;
Alan Cox33f0f882006-01-09 20:54:13 -0800931 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 // if no frameing/crc error then save data
934 // BIT7:parity error
935 // BIT6:framing error
936
937 if (status & (BIT7 + BIT6)) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400938 if (status & BIT7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 icount->parity++;
940 else
941 icount->frame++;
942
943 /* discard char if tty control flags say so */
944 if (status & info->ignore_status_mask)
945 continue;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 status &= info->read_status_mask;
948
949 if (status & BIT7)
Alan Cox33f0f882006-01-09 20:54:13 -0800950 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 else if (status & BIT6)
Alan Cox33f0f882006-01-09 20:54:13 -0800952 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
Alan Cox33f0f882006-01-09 20:54:13 -0800954 work += tty_insert_flip_char(tty, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956 issue_command(info, CHA, CMD_RXFIFO);
957
958 if (debug_level >= DEBUG_LEVEL_ISR) {
Alan Cox33f0f882006-01-09 20:54:13 -0800959 printk("%s(%d):rx_ready_async",
960 __FILE__,__LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
962 __FILE__,__LINE__,icount->rx,icount->brk,
963 icount->parity,icount->frame,icount->overrun);
964 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400965
Alan Cox33f0f882006-01-09 20:54:13 -0800966 if (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 tty_flip_buffer_push(tty);
968}
969
970
Alan Coxeeb46132009-01-02 13:48:47 +0000971static void tx_done(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 if (!info->tx_active)
974 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400975
Joe Perches0fab6de2008-04-28 02:14:02 -0700976 info->tx_active = false;
977 info->tx_aborting = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 if (info->params.mode == MGSL_MODE_ASYNC)
980 return;
981
982 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400983 del_timer(&info->tx_timer);
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (info->drop_rts_on_tx_done) {
986 get_signals(info);
987 if (info->serial_signals & SerialSignal_RTS) {
988 info->serial_signals &= ~SerialSignal_RTS;
989 set_signals(info);
990 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700991 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800994#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (info->netcount)
996 hdlcdev_tx_done(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400997 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998#endif
999 {
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001000 if (tty && (tty->stopped || tty->hw_stopped)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 tx_stop(info);
1002 return;
1003 }
1004 info->pending_bh |= BH_TRANSMIT;
1005 }
1006}
1007
Alan Coxeeb46132009-01-02 13:48:47 +00001008static void tx_ready(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 unsigned char fifo_count = 32;
1011 int c;
1012
1013 if (debug_level >= DEBUG_LEVEL_ISR)
1014 printk("%s(%d):tx_ready(%s)\n", __FILE__,__LINE__,info->device_name);
1015
1016 if (info->params.mode == MGSL_MODE_HDLC) {
1017 if (!info->tx_active)
1018 return;
1019 } else {
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001020 if (tty && (tty->stopped || tty->hw_stopped)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 tx_stop(info);
1022 return;
1023 }
1024 if (!info->tx_count)
Joe Perches0fab6de2008-04-28 02:14:02 -07001025 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027
1028 if (!info->tx_count)
1029 return;
1030
1031 while (info->tx_count && fifo_count) {
1032 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (c == 1) {
1035 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
1036 } else {
1037 write_reg16(info, CHA + TXFIFO,
1038 *((unsigned short*)(info->tx_buf + info->tx_get)));
1039 }
1040 info->tx_count -= c;
1041 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1042 fifo_count -= c;
1043 }
1044
1045 if (info->params.mode == MGSL_MODE_ASYNC) {
1046 if (info->tx_count < WAKEUP_CHARS)
1047 info->pending_bh |= BH_TRANSMIT;
1048 issue_command(info, CHA, CMD_TXFIFO);
1049 } else {
1050 if (info->tx_count)
1051 issue_command(info, CHA, CMD_TXFIFO);
1052 else
1053 issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
1054 }
1055}
1056
Alan Coxeeb46132009-01-02 13:48:47 +00001057static void cts_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 get_signals(info);
1060 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1061 irq_disable(info, CHB, IRQ_CTS);
1062 info->icount.cts++;
1063 if (info->serial_signals & SerialSignal_CTS)
1064 info->input_signal_events.cts_up++;
1065 else
1066 info->input_signal_events.cts_down++;
1067 wake_up_interruptible(&info->status_event_wait_q);
1068 wake_up_interruptible(&info->event_wait_q);
1069
Linus Torvalds3498d132012-10-01 12:26:52 -07001070 if (tty && tty_port_cts_enabled(&info->port)) {
Alan Coxeeb46132009-01-02 13:48:47 +00001071 if (tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (info->serial_signals & SerialSignal_CTS) {
1073 if (debug_level >= DEBUG_LEVEL_ISR)
1074 printk("CTS tx start...");
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001075 tty->hw_stopped = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001076 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 info->pending_bh |= BH_TRANSMIT;
1078 return;
1079 }
1080 } else {
1081 if (!(info->serial_signals & SerialSignal_CTS)) {
1082 if (debug_level >= DEBUG_LEVEL_ISR)
1083 printk("CTS tx stop...");
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001084 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 tx_stop(info);
1086 }
1087 }
1088 }
1089 info->pending_bh |= BH_STATUS;
1090}
1091
Alan Coxeeb46132009-01-02 13:48:47 +00001092static void dcd_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
1094 get_signals(info);
1095 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1096 irq_disable(info, CHB, IRQ_DCD);
1097 info->icount.dcd++;
1098 if (info->serial_signals & SerialSignal_DCD) {
1099 info->input_signal_events.dcd_up++;
1100 }
1101 else
1102 info->input_signal_events.dcd_down++;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08001103#if SYNCLINK_GENERIC_HDLC
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07001104 if (info->netcount) {
1105 if (info->serial_signals & SerialSignal_DCD)
1106 netif_carrier_on(info->netdev);
1107 else
1108 netif_carrier_off(info->netdev);
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110#endif
1111 wake_up_interruptible(&info->status_event_wait_q);
1112 wake_up_interruptible(&info->event_wait_q);
1113
Alan Coxeeb46132009-01-02 13:48:47 +00001114 if (info->port.flags & ASYNC_CHECK_CD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (debug_level >= DEBUG_LEVEL_ISR)
1116 printk("%s CD now %s...", info->device_name,
1117 (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
1118 if (info->serial_signals & SerialSignal_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001119 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 else {
1121 if (debug_level >= DEBUG_LEVEL_ISR)
1122 printk("doing serial hangup...");
Alan Coxeeb46132009-01-02 13:48:47 +00001123 if (tty)
1124 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 }
1127 info->pending_bh |= BH_STATUS;
1128}
1129
1130static void dsr_change(MGSLPC_INFO *info)
1131{
1132 get_signals(info);
1133 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1134 port_irq_disable(info, PVR_DSR);
1135 info->icount.dsr++;
1136 if (info->serial_signals & SerialSignal_DSR)
1137 info->input_signal_events.dsr_up++;
1138 else
1139 info->input_signal_events.dsr_down++;
1140 wake_up_interruptible(&info->status_event_wait_q);
1141 wake_up_interruptible(&info->event_wait_q);
1142 info->pending_bh |= BH_STATUS;
1143}
1144
1145static void ri_change(MGSLPC_INFO *info)
1146{
1147 get_signals(info);
1148 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1149 port_irq_disable(info, PVR_RI);
1150 info->icount.rng++;
1151 if (info->serial_signals & SerialSignal_RI)
1152 info->input_signal_events.ri_up++;
1153 else
1154 info->input_signal_events.ri_down++;
1155 wake_up_interruptible(&info->status_event_wait_q);
1156 wake_up_interruptible(&info->event_wait_q);
1157 info->pending_bh |= BH_STATUS;
1158}
1159
1160/* Interrupt service routine entry point.
Jeff Garzikd12341f2007-10-19 15:45:35 -04001161 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001163 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * irq interrupt number that caused interrupt
1165 * dev_id device ID supplied during interrupt registration
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 */
Jeff Garzika6f97b22007-10-31 05:20:49 -04001167static irqreturn_t mgslpc_isr(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Jeff Garzika6f97b22007-10-31 05:20:49 -04001169 MGSLPC_INFO *info = dev_id;
Alan Coxeeb46132009-01-02 13:48:47 +00001170 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 unsigned short isr;
1172 unsigned char gis, pis;
1173 int count=0;
1174
Jeff Garzikd12341f2007-10-19 15:45:35 -04001175 if (debug_level >= DEBUG_LEVEL_ISR)
Jeff Garzika6f97b22007-10-31 05:20:49 -04001176 printk("mgslpc_isr(%d) entry.\n", info->irq_level);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001177
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001178 if (!(info->p_dev->_locked))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return IRQ_HANDLED;
1180
Alan Coxeeb46132009-01-02 13:48:47 +00001181 tty = tty_port_tty_get(&info->port);
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 spin_lock(&info->lock);
1184
1185 while ((gis = read_reg(info, CHA + GIS))) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001186 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);
1188
1189 if ((gis & 0x70) || count > 1000) {
1190 printk("synclink_cs:hardware failed or ejected\n");
1191 break;
1192 }
1193 count++;
1194
1195 if (gis & (BIT1 + BIT0)) {
1196 isr = read_reg16(info, CHB + ISR);
1197 if (isr & IRQ_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001198 dcd_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 if (isr & IRQ_CTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001200 cts_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202 if (gis & (BIT3 + BIT2))
1203 {
1204 isr = read_reg16(info, CHA + ISR);
1205 if (isr & IRQ_TIMER) {
Joe Perches0fab6de2008-04-28 02:14:02 -07001206 info->irq_occurred = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 irq_disable(info, CHA, IRQ_TIMER);
1208 }
1209
Jeff Garzikd12341f2007-10-19 15:45:35 -04001210 /* receive IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (isr & IRQ_EXITHUNT) {
1212 info->icount.exithunt++;
1213 wake_up_interruptible(&info->event_wait_q);
1214 }
1215 if (isr & IRQ_BREAK_ON) {
1216 info->icount.brk++;
Alan Coxeeb46132009-01-02 13:48:47 +00001217 if (info->port.flags & ASYNC_SAK)
1218 do_SAK(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220 if (isr & IRQ_RXTIME) {
1221 issue_command(info, CHA, CMD_RXFIFO_READ);
1222 }
1223 if (isr & (IRQ_RXEOM + IRQ_RXFIFO)) {
1224 if (info->params.mode == MGSL_MODE_HDLC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04001225 rx_ready_hdlc(info, isr & IRQ_RXEOM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 else
Alan Coxeeb46132009-01-02 13:48:47 +00001227 rx_ready_async(info, isr & IRQ_RXEOM, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229
Jeff Garzikd12341f2007-10-19 15:45:35 -04001230 /* transmit IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (isr & IRQ_UNDERRUN) {
1232 if (info->tx_aborting)
1233 info->icount.txabort++;
1234 else
1235 info->icount.txunder++;
Alan Coxeeb46132009-01-02 13:48:47 +00001236 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238 else if (isr & IRQ_ALLSENT) {
1239 info->icount.txok++;
Alan Coxeeb46132009-01-02 13:48:47 +00001240 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242 else if (isr & IRQ_TXFIFO)
Alan Coxeeb46132009-01-02 13:48:47 +00001243 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245 if (gis & BIT7) {
1246 pis = read_reg(info, CHA + PIS);
1247 if (pis & BIT1)
1248 dsr_change(info);
1249 if (pis & BIT2)
1250 ri_change(info);
1251 }
1252 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001253
1254 /* Request bottom half processing if there's something
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 * for it to do and the bh is not already running
1256 */
1257
1258 if (info->pending_bh && !info->bh_running && !info->bh_requested) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001259 if ( debug_level >= DEBUG_LEVEL_ISR )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 printk("%s(%d):%s queueing bh task.\n",
1261 __FILE__,__LINE__,info->device_name);
1262 schedule_work(&info->task);
Joe Perches0fab6de2008-04-28 02:14:02 -07001263 info->bh_requested = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265
1266 spin_unlock(&info->lock);
Alan Coxeeb46132009-01-02 13:48:47 +00001267 tty_kref_put(tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001268
1269 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 printk("%s(%d):mgslpc_isr(%d)exit.\n",
Jeff Garzika6f97b22007-10-31 05:20:49 -04001271 __FILE__, __LINE__, info->irq_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 return IRQ_HANDLED;
1274}
1275
1276/* Initialize and start device.
1277 */
Alan Coxeeb46132009-01-02 13:48:47 +00001278static int startup(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 int retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (debug_level >= DEBUG_LEVEL_INFO)
1283 printk("%s(%d):startup(%s)\n",__FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001284
Alan Coxeeb46132009-01-02 13:48:47 +00001285 if (info->port.flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (!info->tx_buf) {
1289 /* allocate a page of memory for a transmit buffer */
1290 info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1291 if (!info->tx_buf) {
1292 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
1293 __FILE__,__LINE__,info->device_name);
1294 return -ENOMEM;
1295 }
1296 }
1297
1298 info->pending_bh = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001299
Paul Fulghuma7482a22005-09-10 00:26:07 -07001300 memset(&info->icount, 0, sizeof(info->icount));
1301
Jiri Slaby40565f12007-02-12 00:52:31 -08001302 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 /* Allocate and claim adapter resources */
1305 retval = claim_resources(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001306
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001307 /* perform existence check and diagnostics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if ( !retval )
1309 retval = adapter_test(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if ( retval ) {
Alan Coxeeb46132009-01-02 13:48:47 +00001312 if (capable(CAP_SYS_ADMIN) && tty)
1313 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 release_resources(info);
1315 return retval;
1316 }
1317
1318 /* program hardware for current parameters */
Alan Coxeeb46132009-01-02 13:48:47 +00001319 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001320
Alan Coxeeb46132009-01-02 13:48:47 +00001321 if (tty)
1322 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Alan Coxeeb46132009-01-02 13:48:47 +00001324 info->port.flags |= ASYNC_INITIALIZED;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 return 0;
1327}
1328
1329/* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1330 */
Alan Coxeeb46132009-01-02 13:48:47 +00001331static void shutdown(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
1333 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001334
Alan Coxeeb46132009-01-02 13:48:47 +00001335 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return;
1337
1338 if (debug_level >= DEBUG_LEVEL_INFO)
1339 printk("%s(%d):mgslpc_shutdown(%s)\n",
1340 __FILE__,__LINE__, info->device_name );
1341
1342 /* clear status wait queue because status changes */
1343 /* can't happen after shutting down the hardware */
1344 wake_up_interruptible(&info->status_event_wait_q);
1345 wake_up_interruptible(&info->event_wait_q);
1346
Jiri Slaby40565f12007-02-12 00:52:31 -08001347 del_timer_sync(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 if (info->tx_buf) {
1350 free_page((unsigned long) info->tx_buf);
1351 info->tx_buf = NULL;
1352 }
1353
1354 spin_lock_irqsave(&info->lock,flags);
1355
1356 rx_stop(info);
1357 tx_stop(info);
1358
1359 /* TODO:disable interrupts instead of reset to preserve signal states */
1360 reset_device(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001361
Alan Cox373f5ae2012-07-19 12:23:28 +01001362 if (!tty || tty->termios.c_cflag & HUPCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
1364 set_signals(info);
1365 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 spin_unlock_irqrestore(&info->lock,flags);
1368
Jeff Garzikd12341f2007-10-19 15:45:35 -04001369 release_resources(info);
1370
Alan Coxeeb46132009-01-02 13:48:47 +00001371 if (tty)
1372 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Alan Coxeeb46132009-01-02 13:48:47 +00001374 info->port.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
Alan Coxeeb46132009-01-02 13:48:47 +00001377static void mgslpc_program_hw(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 unsigned long flags;
1380
1381 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 rx_stop(info);
1384 tx_stop(info);
1385 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
1388 hdlc_mode(info);
1389 else
1390 async_mode(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 set_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 info->dcd_chkcount = 0;
1395 info->cts_chkcount = 0;
1396 info->ri_chkcount = 0;
1397 info->dsr_chkcount = 0;
1398
1399 irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
1400 port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
1401 get_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001402
Alan Cox373f5ae2012-07-19 12:23:28 +01001403 if (info->netcount || (tty && (tty->termios.c_cflag & CREAD)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 rx_start(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 spin_unlock_irqrestore(&info->lock,flags);
1407}
1408
1409/* Reconfigure adapter based on new parameters
1410 */
Alan Coxeeb46132009-01-02 13:48:47 +00001411static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
1413 unsigned cflag;
1414 int bits_per_char;
1415
Alan Cox373f5ae2012-07-19 12:23:28 +01001416 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (debug_level >= DEBUG_LEVEL_INFO)
1420 printk("%s(%d):mgslpc_change_params(%s)\n",
1421 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001422
Alan Cox373f5ae2012-07-19 12:23:28 +01001423 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 /* if B0 rate (hangup) specified then negate DTR and RTS */
1426 /* otherwise assert DTR and RTS */
1427 if (cflag & CBAUD)
1428 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
1429 else
1430 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 /* byte size and parity */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 switch (cflag & CSIZE) {
1435 case CS5: info->params.data_bits = 5; break;
1436 case CS6: info->params.data_bits = 6; break;
1437 case CS7: info->params.data_bits = 7; break;
1438 case CS8: info->params.data_bits = 8; break;
1439 default: info->params.data_bits = 7; break;
1440 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (cflag & CSTOPB)
1443 info->params.stop_bits = 2;
1444 else
1445 info->params.stop_bits = 1;
1446
1447 info->params.parity = ASYNC_PARITY_NONE;
1448 if (cflag & PARENB) {
1449 if (cflag & PARODD)
1450 info->params.parity = ASYNC_PARITY_ODD;
1451 else
1452 info->params.parity = ASYNC_PARITY_EVEN;
1453#ifdef CMSPAR
1454 if (cflag & CMSPAR)
1455 info->params.parity = ASYNC_PARITY_SPACE;
1456#endif
1457 }
1458
1459 /* calculate number of jiffies to transmit a full
1460 * FIFO (32 bytes) at specified data rate
1461 */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001462 bits_per_char = info->params.data_bits +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 info->params.stop_bits + 1;
1464
1465 /* if port data rate is set to 460800 or less then
1466 * allow tty settings to override, otherwise keep the
1467 * current data rate.
1468 */
1469 if (info->params.data_rate <= 460800) {
Alan Coxeeb46132009-01-02 13:48:47 +00001470 info->params.data_rate = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if ( info->params.data_rate ) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001474 info->timeout = (32*HZ*bits_per_char) /
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 info->params.data_rate;
1476 }
1477 info->timeout += HZ/50; /* Add .02 seconds of slop */
1478
1479 if (cflag & CRTSCTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001480 info->port.flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 else
Alan Coxeeb46132009-01-02 13:48:47 +00001482 info->port.flags &= ~ASYNC_CTS_FLOW;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (cflag & CLOCAL)
Alan Coxeeb46132009-01-02 13:48:47 +00001485 info->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 else
Alan Coxeeb46132009-01-02 13:48:47 +00001487 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 /* process tty input control flags */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 info->read_status_mask = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001492 if (I_INPCK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 info->read_status_mask |= BIT7 | BIT6;
Alan Coxeeb46132009-01-02 13:48:47 +00001494 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 info->ignore_status_mask |= BIT7 | BIT6;
1496
Alan Coxeeb46132009-01-02 13:48:47 +00001497 mgslpc_program_hw(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500/* Add a character to the transmit buffer
1501 */
Alan Coxd7e752e2008-04-30 00:54:04 -07001502static int mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1505 unsigned long flags;
1506
1507 if (debug_level >= DEBUG_LEVEL_INFO) {
1508 printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
1509 __FILE__,__LINE__,ch,info->device_name);
1510 }
1511
1512 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
Alan Coxd7e752e2008-04-30 00:54:04 -07001513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001515 if (!info->tx_buf)
Alan Coxd7e752e2008-04-30 00:54:04 -07001516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
1521 if (info->tx_count < TXBUFSIZE - 1) {
1522 info->tx_buf[info->tx_put++] = ch;
1523 info->tx_put &= TXBUFSIZE-1;
1524 info->tx_count++;
1525 }
1526 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 spin_unlock_irqrestore(&info->lock,flags);
Alan Coxd7e752e2008-04-30 00:54:04 -07001529 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
1532/* Enable transmitter so remaining characters in the
1533 * transmit buffer are sent.
1534 */
1535static void mgslpc_flush_chars(struct tty_struct *tty)
1536{
1537 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1538 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 if (debug_level >= DEBUG_LEVEL_INFO)
1541 printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1542 __FILE__,__LINE__,info->device_name,info->tx_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
1545 return;
1546
1547 if (info->tx_count <= 0 || tty->stopped ||
1548 tty->hw_stopped || !info->tx_buf)
1549 return;
1550
1551 if (debug_level >= DEBUG_LEVEL_INFO)
1552 printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1553 __FILE__,__LINE__,info->device_name);
1554
1555 spin_lock_irqsave(&info->lock,flags);
1556 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001557 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 spin_unlock_irqrestore(&info->lock,flags);
1559}
1560
1561/* Send a block of data
Jeff Garzikd12341f2007-10-19 15:45:35 -04001562 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001564 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 * tty pointer to tty information structure
1566 * buf pointer to buffer containing send data
1567 * count size of send data in bytes
Jeff Garzikd12341f2007-10-19 15:45:35 -04001568 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 * Returns: number of characters written
1570 */
1571static int mgslpc_write(struct tty_struct * tty,
1572 const unsigned char *buf, int count)
1573{
1574 int c, ret = 0;
1575 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1576 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (debug_level >= DEBUG_LEVEL_INFO)
1579 printk( "%s(%d):mgslpc_write(%s) count=%d\n",
1580 __FILE__,__LINE__,info->device_name,count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001583 !info->tx_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 goto cleanup;
1585
1586 if (info->params.mode == MGSL_MODE_HDLC) {
1587 if (count > TXBUFSIZE) {
1588 ret = -EIO;
1589 goto cleanup;
1590 }
1591 if (info->tx_active)
1592 goto cleanup;
1593 else if (info->tx_count)
1594 goto start;
1595 }
1596
1597 for (;;) {
1598 c = min(count,
1599 min(TXBUFSIZE - info->tx_count - 1,
1600 TXBUFSIZE - info->tx_put));
1601 if (c <= 0)
1602 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 memcpy(info->tx_buf + info->tx_put, buf, c);
1605
1606 spin_lock_irqsave(&info->lock,flags);
1607 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1608 info->tx_count += c;
1609 spin_unlock_irqrestore(&info->lock,flags);
1610
1611 buf += c;
1612 count -= c;
1613 ret += c;
1614 }
1615start:
1616 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
1617 spin_lock_irqsave(&info->lock,flags);
1618 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001619 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 spin_unlock_irqrestore(&info->lock,flags);
1621 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001622cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (debug_level >= DEBUG_LEVEL_INFO)
1624 printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
1625 __FILE__,__LINE__,info->device_name,ret);
1626 return ret;
1627}
1628
1629/* Return the count of free bytes in transmit buffer
1630 */
1631static int mgslpc_write_room(struct tty_struct *tty)
1632{
1633 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1634 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
1637 return 0;
1638
1639 if (info->params.mode == MGSL_MODE_HDLC) {
1640 /* HDLC (frame oriented) mode */
1641 if (info->tx_active)
1642 return 0;
1643 else
1644 return HDLC_MAX_FRAME_SIZE;
1645 } else {
1646 ret = TXBUFSIZE - info->tx_count - 1;
1647 if (ret < 0)
1648 ret = 0;
1649 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 if (debug_level >= DEBUG_LEVEL_INFO)
1652 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
1653 __FILE__,__LINE__, info->device_name, ret);
1654 return ret;
1655}
1656
1657/* Return the count of bytes in transmit buffer
1658 */
1659static int mgslpc_chars_in_buffer(struct tty_struct *tty)
1660{
1661 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1662 int rc;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (debug_level >= DEBUG_LEVEL_INFO)
1665 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
1666 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
1669 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if (info->params.mode == MGSL_MODE_HDLC)
1672 rc = info->tx_active ? info->max_frame_size : 0;
1673 else
1674 rc = info->tx_count;
1675
1676 if (debug_level >= DEBUG_LEVEL_INFO)
1677 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
1678 __FILE__,__LINE__, info->device_name, rc);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return rc;
1681}
1682
1683/* Discard all data in the send buffer
1684 */
1685static void mgslpc_flush_buffer(struct tty_struct *tty)
1686{
1687 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1688 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (debug_level >= DEBUG_LEVEL_INFO)
1691 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
1692 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
1695 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001696
1697 spin_lock_irqsave(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001699 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 spin_unlock_irqrestore(&info->lock,flags);
1701
1702 wake_up_interruptible(&tty->write_wait);
1703 tty_wakeup(tty);
1704}
1705
1706/* Send a high-priority XON/XOFF character
1707 */
1708static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
1709{
1710 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1711 unsigned long flags;
1712
1713 if (debug_level >= DEBUG_LEVEL_INFO)
1714 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
1715 __FILE__,__LINE__, info->device_name, ch );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
1718 return;
1719
1720 info->x_char = ch;
1721 if (ch) {
1722 spin_lock_irqsave(&info->lock,flags);
1723 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001724 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 spin_unlock_irqrestore(&info->lock,flags);
1726 }
1727}
1728
1729/* Signal remote device to throttle send data (our receive data)
1730 */
1731static void mgslpc_throttle(struct tty_struct * tty)
1732{
1733 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1734 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (debug_level >= DEBUG_LEVEL_INFO)
1737 printk("%s(%d):mgslpc_throttle(%s) entry\n",
1738 __FILE__,__LINE__, info->device_name );
1739
1740 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
1741 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (I_IXOFF(tty))
1744 mgslpc_send_xchar(tty, STOP_CHAR(tty));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001745
Alan Cox373f5ae2012-07-19 12:23:28 +01001746 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 spin_lock_irqsave(&info->lock,flags);
1748 info->serial_signals &= ~SerialSignal_RTS;
1749 set_signals(info);
1750 spin_unlock_irqrestore(&info->lock,flags);
1751 }
1752}
1753
1754/* Signal remote device to stop throttling send data (our receive data)
1755 */
1756static void mgslpc_unthrottle(struct tty_struct * tty)
1757{
1758 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1759 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (debug_level >= DEBUG_LEVEL_INFO)
1762 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
1763 __FILE__,__LINE__, info->device_name );
1764
1765 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
1766 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (I_IXOFF(tty)) {
1769 if (info->x_char)
1770 info->x_char = 0;
1771 else
1772 mgslpc_send_xchar(tty, START_CHAR(tty));
1773 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001774
Alan Cox373f5ae2012-07-19 12:23:28 +01001775 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 spin_lock_irqsave(&info->lock,flags);
1777 info->serial_signals |= SerialSignal_RTS;
1778 set_signals(info);
1779 spin_unlock_irqrestore(&info->lock,flags);
1780 }
1781}
1782
1783/* get the current serial statistics
1784 */
1785static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
1786{
1787 int err;
1788 if (debug_level >= DEBUG_LEVEL_INFO)
1789 printk("get_params(%s)\n", info->device_name);
Paul Fulghuma7482a22005-09-10 00:26:07 -07001790 if (!user_icount) {
1791 memset(&info->icount, 0, sizeof(info->icount));
1792 } else {
1793 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
1794 if (err)
1795 return -EFAULT;
1796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return 0;
1798}
1799
1800/* get the current serial parameters
1801 */
1802static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
1803{
1804 int err;
1805 if (debug_level >= DEBUG_LEVEL_INFO)
1806 printk("get_params(%s)\n", info->device_name);
1807 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
1808 if (err)
1809 return -EFAULT;
1810 return 0;
1811}
1812
1813/* set the serial parameters
Jeff Garzikd12341f2007-10-19 15:45:35 -04001814 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001816 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 * info pointer to device instance data
1818 * new_params user buffer containing new serial params
1819 *
1820 * Returns: 0 if success, otherwise error code
1821 */
Alan Coxeeb46132009-01-02 13:48:47 +00001822static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
1824 unsigned long flags;
1825 MGSL_PARAMS tmp_params;
1826 int err;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (debug_level >= DEBUG_LEVEL_INFO)
1829 printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
1830 info->device_name );
1831 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
1832 if (err) {
1833 if ( debug_level >= DEBUG_LEVEL_INFO )
1834 printk( "%s(%d):set_params(%s) user buffer copy failed\n",
1835 __FILE__,__LINE__,info->device_name);
1836 return -EFAULT;
1837 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 spin_lock_irqsave(&info->lock,flags);
1840 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
1841 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001842
Alan Coxeeb46132009-01-02 13:48:47 +00001843 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return 0;
1846}
1847
1848static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
1849{
1850 int err;
1851 if (debug_level >= DEBUG_LEVEL_INFO)
1852 printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
1853 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
1854 if (err)
1855 return -EFAULT;
1856 return 0;
1857}
1858
1859static int set_txidle(MGSLPC_INFO * info, int idle_mode)
1860{
1861 unsigned long flags;
1862 if (debug_level >= DEBUG_LEVEL_INFO)
1863 printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
1864 spin_lock_irqsave(&info->lock,flags);
1865 info->idle_mode = idle_mode;
1866 tx_set_idle(info);
1867 spin_unlock_irqrestore(&info->lock,flags);
1868 return 0;
1869}
1870
1871static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
1872{
1873 int err;
1874 if (debug_level >= DEBUG_LEVEL_INFO)
1875 printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
1876 COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
1877 if (err)
1878 return -EFAULT;
1879 return 0;
1880}
1881
1882static int set_interface(MGSLPC_INFO * info, int if_mode)
1883{
1884 unsigned long flags;
1885 unsigned char val;
1886 if (debug_level >= DEBUG_LEVEL_INFO)
1887 printk("set_interface(%s,%d)\n", info->device_name, if_mode);
1888 spin_lock_irqsave(&info->lock,flags);
1889 info->if_mode = if_mode;
1890
1891 val = read_reg(info, PVR) & 0x0f;
1892 switch (info->if_mode)
1893 {
1894 case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
1895 case MGSL_INTERFACE_V35: val |= PVR_V35; break;
1896 case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
1897 }
1898 write_reg(info, PVR, val);
1899
1900 spin_unlock_irqrestore(&info->lock,flags);
1901 return 0;
1902}
1903
Alan Coxeeb46132009-01-02 13:48:47 +00001904static int set_txenable(MGSLPC_INFO * info, int enable, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
1906 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (debug_level >= DEBUG_LEVEL_INFO)
1909 printk("set_txenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 spin_lock_irqsave(&info->lock,flags);
1912 if (enable) {
1913 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001914 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 } else {
1916 if (info->tx_enabled)
1917 tx_stop(info);
1918 }
1919 spin_unlock_irqrestore(&info->lock,flags);
1920 return 0;
1921}
1922
1923static int tx_abort(MGSLPC_INFO * info)
1924{
1925 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (debug_level >= DEBUG_LEVEL_INFO)
1928 printk("tx_abort(%s)\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 spin_lock_irqsave(&info->lock,flags);
1931 if (info->tx_active && info->tx_count &&
1932 info->params.mode == MGSL_MODE_HDLC) {
1933 /* clear data count so FIFO is not filled on next IRQ.
1934 * This results in underrun and abort transmission.
1935 */
1936 info->tx_count = info->tx_put = info->tx_get = 0;
Joe Perches0fab6de2008-04-28 02:14:02 -07001937 info->tx_aborting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939 spin_unlock_irqrestore(&info->lock,flags);
1940 return 0;
1941}
1942
1943static int set_rxenable(MGSLPC_INFO * info, int enable)
1944{
1945 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (debug_level >= DEBUG_LEVEL_INFO)
1948 printk("set_rxenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 spin_lock_irqsave(&info->lock,flags);
1951 if (enable) {
1952 if (!info->rx_enabled)
1953 rx_start(info);
1954 } else {
1955 if (info->rx_enabled)
1956 rx_stop(info);
1957 }
1958 spin_unlock_irqrestore(&info->lock,flags);
1959 return 0;
1960}
1961
1962/* wait for specified event to occur
Jeff Garzikd12341f2007-10-19 15:45:35 -04001963 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 * Arguments: info pointer to device instance data
1965 * mask pointer to bitmask of events to wait for
1966 * Return Value: 0 if successful and bit mask updated with
1967 * of events triggerred,
1968 * otherwise error code
1969 */
1970static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
1971{
1972 unsigned long flags;
1973 int s;
1974 int rc=0;
1975 struct mgsl_icount cprev, cnow;
1976 int events;
1977 int mask;
1978 struct _input_signal_events oldsigs, newsigs;
1979 DECLARE_WAITQUEUE(wait, current);
1980
1981 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
1982 if (rc)
1983 return -EFAULT;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (debug_level >= DEBUG_LEVEL_INFO)
1986 printk("wait_events(%s,%d)\n", info->device_name, mask);
1987
1988 spin_lock_irqsave(&info->lock,flags);
1989
1990 /* return immediately if state matches requested events */
1991 get_signals(info);
1992 s = info->serial_signals;
1993 events = mask &
1994 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
1995 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
1996 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
1997 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
1998 if (events) {
1999 spin_unlock_irqrestore(&info->lock,flags);
2000 goto exit;
2001 }
2002
2003 /* save current irq counts */
2004 cprev = info->icount;
2005 oldsigs = info->input_signal_events;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if ((info->params.mode == MGSL_MODE_HDLC) &&
2008 (mask & MgslEvent_ExitHuntMode))
2009 irq_enable(info, CHA, IRQ_EXITHUNT);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 set_current_state(TASK_INTERRUPTIBLE);
2012 add_wait_queue(&info->event_wait_q, &wait);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002015
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 for(;;) {
2018 schedule();
2019 if (signal_pending(current)) {
2020 rc = -ERESTARTSYS;
2021 break;
2022 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 /* get current irq counts */
2025 spin_lock_irqsave(&info->lock,flags);
2026 cnow = info->icount;
2027 newsigs = info->input_signal_events;
2028 set_current_state(TASK_INTERRUPTIBLE);
2029 spin_unlock_irqrestore(&info->lock,flags);
2030
2031 /* if no change, wait aborted for some reason */
2032 if (newsigs.dsr_up == oldsigs.dsr_up &&
2033 newsigs.dsr_down == oldsigs.dsr_down &&
2034 newsigs.dcd_up == oldsigs.dcd_up &&
2035 newsigs.dcd_down == oldsigs.dcd_down &&
2036 newsigs.cts_up == oldsigs.cts_up &&
2037 newsigs.cts_down == oldsigs.cts_down &&
2038 newsigs.ri_up == oldsigs.ri_up &&
2039 newsigs.ri_down == oldsigs.ri_down &&
2040 cnow.exithunt == cprev.exithunt &&
2041 cnow.rxidle == cprev.rxidle) {
2042 rc = -EIO;
2043 break;
2044 }
2045
2046 events = mask &
2047 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2048 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2049 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2050 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2051 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2052 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2053 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2054 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2055 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2056 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2057 if (events)
2058 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 cprev = cnow;
2061 oldsigs = newsigs;
2062 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 remove_wait_queue(&info->event_wait_q, &wait);
2065 set_current_state(TASK_RUNNING);
2066
2067 if (mask & MgslEvent_ExitHuntMode) {
2068 spin_lock_irqsave(&info->lock,flags);
2069 if (!waitqueue_active(&info->event_wait_q))
2070 irq_disable(info, CHA, IRQ_EXITHUNT);
2071 spin_unlock_irqrestore(&info->lock,flags);
2072 }
2073exit:
2074 if (rc == 0)
2075 PUT_USER(rc, events, mask_ptr);
2076 return rc;
2077}
2078
2079static int modem_input_wait(MGSLPC_INFO *info,int arg)
2080{
2081 unsigned long flags;
2082 int rc;
2083 struct mgsl_icount cprev, cnow;
2084 DECLARE_WAITQUEUE(wait, current);
2085
2086 /* save current irq counts */
2087 spin_lock_irqsave(&info->lock,flags);
2088 cprev = info->icount;
2089 add_wait_queue(&info->status_event_wait_q, &wait);
2090 set_current_state(TASK_INTERRUPTIBLE);
2091 spin_unlock_irqrestore(&info->lock,flags);
2092
2093 for(;;) {
2094 schedule();
2095 if (signal_pending(current)) {
2096 rc = -ERESTARTSYS;
2097 break;
2098 }
2099
2100 /* get new irq counts */
2101 spin_lock_irqsave(&info->lock,flags);
2102 cnow = info->icount;
2103 set_current_state(TASK_INTERRUPTIBLE);
2104 spin_unlock_irqrestore(&info->lock,flags);
2105
2106 /* if no change, wait aborted for some reason */
2107 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2108 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2109 rc = -EIO;
2110 break;
2111 }
2112
2113 /* check for change in caller specified modem input */
2114 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2115 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2116 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2117 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2118 rc = 0;
2119 break;
2120 }
2121
2122 cprev = cnow;
2123 }
2124 remove_wait_queue(&info->status_event_wait_q, &wait);
2125 set_current_state(TASK_RUNNING);
2126 return rc;
2127}
2128
2129/* return the state of the serial control and status signals
2130 */
Alan Cox60b33c12011-02-14 16:26:14 +00002131static int tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2134 unsigned int result;
2135 unsigned long flags;
2136
2137 spin_lock_irqsave(&info->lock,flags);
2138 get_signals(info);
2139 spin_unlock_irqrestore(&info->lock,flags);
2140
2141 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2142 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2143 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2144 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2145 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2146 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2147
2148 if (debug_level >= DEBUG_LEVEL_INFO)
2149 printk("%s(%d):%s tiocmget() value=%08X\n",
2150 __FILE__,__LINE__, info->device_name, result );
2151 return result;
2152}
2153
2154/* set modem control signals (DTR/RTS)
2155 */
Alan Cox20b9d172011-02-14 16:26:50 +00002156static int tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 unsigned int set, unsigned int clear)
2158{
2159 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2160 unsigned long flags;
2161
2162 if (debug_level >= DEBUG_LEVEL_INFO)
2163 printk("%s(%d):%s tiocmset(%x,%x)\n",
2164 __FILE__,__LINE__,info->device_name, set, clear);
2165
2166 if (set & TIOCM_RTS)
2167 info->serial_signals |= SerialSignal_RTS;
2168 if (set & TIOCM_DTR)
2169 info->serial_signals |= SerialSignal_DTR;
2170 if (clear & TIOCM_RTS)
2171 info->serial_signals &= ~SerialSignal_RTS;
2172 if (clear & TIOCM_DTR)
2173 info->serial_signals &= ~SerialSignal_DTR;
2174
2175 spin_lock_irqsave(&info->lock,flags);
2176 set_signals(info);
2177 spin_unlock_irqrestore(&info->lock,flags);
2178
2179 return 0;
2180}
2181
2182/* Set or clear transmit break condition
2183 *
2184 * Arguments: tty pointer to tty instance data
2185 * break_state -1=set break condition, 0=clear
2186 */
Alan Cox9e989662008-07-22 11:18:03 +01002187static int mgslpc_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2190 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (debug_level >= DEBUG_LEVEL_INFO)
2193 printk("%s(%d):mgslpc_break(%s,%d)\n",
2194 __FILE__,__LINE__, info->device_name, break_state);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
Alan Cox9e989662008-07-22 11:18:03 +01002197 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 spin_lock_irqsave(&info->lock,flags);
2200 if (break_state == -1)
2201 set_reg_bits(info, CHA+DAFO, BIT6);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002202 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 clear_reg_bits(info, CHA+DAFO, BIT6);
2204 spin_unlock_irqrestore(&info->lock,flags);
Alan Cox9e989662008-07-22 11:18:03 +01002205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
Alan Cox05871022010-09-16 18:21:52 +01002208static int mgslpc_get_icount(struct tty_struct *tty,
2209 struct serial_icounter_struct *icount)
2210{
2211 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2212 struct mgsl_icount cnow; /* kernel counter temps */
2213 unsigned long flags;
2214
2215 spin_lock_irqsave(&info->lock,flags);
2216 cnow = info->icount;
2217 spin_unlock_irqrestore(&info->lock,flags);
2218
2219 icount->cts = cnow.cts;
2220 icount->dsr = cnow.dsr;
2221 icount->rng = cnow.rng;
2222 icount->dcd = cnow.dcd;
2223 icount->rx = cnow.rx;
2224 icount->tx = cnow.tx;
2225 icount->frame = cnow.frame;
2226 icount->overrun = cnow.overrun;
2227 icount->parity = cnow.parity;
2228 icount->brk = cnow.brk;
2229 icount->buf_overrun = cnow.buf_overrun;
2230
2231 return 0;
2232}
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234/* Service an IOCTL request
Jeff Garzikd12341f2007-10-19 15:45:35 -04002235 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002237 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 * tty pointer to tty instance data
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 * cmd IOCTL command code
2240 * arg command argument/context
Jeff Garzikd12341f2007-10-19 15:45:35 -04002241 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 * Return Value: 0 if success, otherwise error code
2243 */
Axel Lin751b3842011-03-01 13:12:47 +08002244static int mgslpc_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 unsigned int cmd, unsigned long arg)
2246{
2247 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002248 void __user *argp = (void __user *)arg;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (debug_level >= DEBUG_LEVEL_INFO)
2251 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
2252 info->device_name, cmd );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
2255 return -ENODEV;
2256
2257 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
Alan Cox05871022010-09-16 18:21:52 +01002258 (cmd != TIOCMIWAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (tty->flags & (1 << TTY_IO_ERROR))
2260 return -EIO;
2261 }
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 switch (cmd) {
2264 case MGSL_IOCGPARAMS:
2265 return get_params(info, argp);
2266 case MGSL_IOCSPARAMS:
Alan Coxeeb46132009-01-02 13:48:47 +00002267 return set_params(info, argp, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 case MGSL_IOCGTXIDLE:
2269 return get_txidle(info, argp);
2270 case MGSL_IOCSTXIDLE:
2271 return set_txidle(info, (int)arg);
2272 case MGSL_IOCGIF:
2273 return get_interface(info, argp);
2274 case MGSL_IOCSIF:
2275 return set_interface(info,(int)arg);
2276 case MGSL_IOCTXENABLE:
Alan Coxeeb46132009-01-02 13:48:47 +00002277 return set_txenable(info,(int)arg, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 case MGSL_IOCRXENABLE:
2279 return set_rxenable(info,(int)arg);
2280 case MGSL_IOCTXABORT:
2281 return tx_abort(info);
2282 case MGSL_IOCGSTATS:
2283 return get_stats(info, argp);
2284 case MGSL_IOCWAITEVENT:
2285 return wait_events(info, argp);
2286 case TIOCMIWAIT:
2287 return modem_input_wait(info,(int)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 default:
2289 return -ENOIOCTLCMD;
2290 }
2291 return 0;
2292}
2293
2294/* Set new termios settings
Jeff Garzikd12341f2007-10-19 15:45:35 -04002295 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002297 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 * tty pointer to tty structure
2299 * termios pointer to buffer to hold returned old termios
2300 */
Alan Cox606d0992006-12-08 02:38:45 -08002301static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
2303 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2304 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (debug_level >= DEBUG_LEVEL_INFO)
2307 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__,__LINE__,
2308 tty->driver->name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /* just return if nothing has changed */
Alan Cox373f5ae2012-07-19 12:23:28 +01002311 if ((tty->termios.c_cflag == old_termios->c_cflag)
2312 && (RELEVANT_IFLAG(tty->termios.c_iflag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 == RELEVANT_IFLAG(old_termios->c_iflag)))
2314 return;
2315
Alan Coxeeb46132009-01-02 13:48:47 +00002316 mgslpc_change_params(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 /* Handle transition to B0 status */
2319 if (old_termios->c_cflag & CBAUD &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002320 !(tty->termios.c_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2322 spin_lock_irqsave(&info->lock,flags);
2323 set_signals(info);
2324 spin_unlock_irqrestore(&info->lock,flags);
2325 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 /* Handle transition away from B0 status */
2328 if (!(old_termios->c_cflag & CBAUD) &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002329 tty->termios.c_cflag & CBAUD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 info->serial_signals |= SerialSignal_DTR;
Alan Cox373f5ae2012-07-19 12:23:28 +01002331 if (!(tty->termios.c_cflag & CRTSCTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 !test_bit(TTY_THROTTLED, &tty->flags)) {
2333 info->serial_signals |= SerialSignal_RTS;
2334 }
2335 spin_lock_irqsave(&info->lock,flags);
2336 set_signals(info);
2337 spin_unlock_irqrestore(&info->lock,flags);
2338 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 /* Handle turning off CRTSCTS */
2341 if (old_termios->c_cflag & CRTSCTS &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002342 !(tty->termios.c_cflag & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 tty->hw_stopped = 0;
2344 tx_release(tty);
2345 }
2346}
2347
2348static void mgslpc_close(struct tty_struct *tty, struct file * filp)
2349{
2350 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002351 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
2354 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (debug_level >= DEBUG_LEVEL_INFO)
2357 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002358 __FILE__,__LINE__, info->device_name, port->count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002359
Alan Coxeeb46132009-01-02 13:48:47 +00002360 WARN_ON(!port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Alan Coxeeb46132009-01-02 13:48:47 +00002362 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 goto cleanup;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002364
Alan Coxeeb46132009-01-02 13:48:47 +00002365 if (port->flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 mgslpc_wait_until_sent(tty, info->timeout);
2367
Alan Cox978e5952008-04-30 00:53:59 -07002368 mgslpc_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Alan Cox978e5952008-04-30 00:53:59 -07002370 tty_ldisc_flush(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002371 shutdown(info, tty);
2372
2373 tty_port_close_end(port, tty);
2374 tty_port_tty_set(port, NULL);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002375cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 if (debug_level >= DEBUG_LEVEL_INFO)
2377 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__,__LINE__,
Alan Coxeeb46132009-01-02 13:48:47 +00002378 tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
2381/* Wait until the transmitter is empty.
2382 */
2383static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
2384{
2385 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2386 unsigned long orig_jiffies, char_time;
2387
2388 if (!info )
2389 return;
2390
2391 if (debug_level >= DEBUG_LEVEL_INFO)
2392 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
2393 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
2396 return;
2397
Alan Coxeeb46132009-01-02 13:48:47 +00002398 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 goto exit;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 orig_jiffies = jiffies;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 /* Set check interval to 1/5 of estimated time to
2404 * send a character, and make it at least 1. The check
2405 * interval should also be less than the timeout.
2406 * Note: use tight timings here to satisfy the NIST-PCTS.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002407 */
2408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if ( info->params.data_rate ) {
2410 char_time = info->timeout/(32 * 5);
2411 if (!char_time)
2412 char_time++;
2413 } else
2414 char_time = 1;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (timeout)
2417 char_time = min_t(unsigned long, char_time, timeout);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 if (info->params.mode == MGSL_MODE_HDLC) {
2420 while (info->tx_active) {
2421 msleep_interruptible(jiffies_to_msecs(char_time));
2422 if (signal_pending(current))
2423 break;
2424 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2425 break;
2426 }
2427 } else {
2428 while ((info->tx_count || info->tx_active) &&
2429 info->tx_enabled) {
2430 msleep_interruptible(jiffies_to_msecs(char_time));
2431 if (signal_pending(current))
2432 break;
2433 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2434 break;
2435 }
2436 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438exit:
2439 if (debug_level >= DEBUG_LEVEL_INFO)
2440 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
2441 __FILE__,__LINE__, info->device_name );
2442}
2443
2444/* Called by tty_hangup() when a hangup is signaled.
2445 * This is the same as closing all open files for the port.
2446 */
2447static void mgslpc_hangup(struct tty_struct *tty)
2448{
2449 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 if (debug_level >= DEBUG_LEVEL_INFO)
2452 printk("%s(%d):mgslpc_hangup(%s)\n",
2453 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
2456 return;
2457
2458 mgslpc_flush_buffer(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002459 shutdown(info, tty);
2460 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
Alan Coxeeb46132009-01-02 13:48:47 +00002463static int carrier_raised(struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
Alan Coxeeb46132009-01-02 13:48:47 +00002465 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2466 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002467
Alan Coxeeb46132009-01-02 13:48:47 +00002468 spin_lock_irqsave(&info->lock,flags);
2469 get_signals(info);
2470 spin_unlock_irqrestore(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Alan Coxeeb46132009-01-02 13:48:47 +00002472 if (info->serial_signals & SerialSignal_DCD)
2473 return 1;
2474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
Alan Coxfcc8ac12009-06-11 12:24:17 +01002477static void dtr_rts(struct tty_port *port, int onoff)
Alan Coxeeb46132009-01-02 13:48:47 +00002478{
2479 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2480 unsigned long flags;
2481
2482 spin_lock_irqsave(&info->lock,flags);
Alan Coxfcc8ac12009-06-11 12:24:17 +01002483 if (onoff)
2484 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
2485 else
2486 info->serial_signals &= ~SerialSignal_RTS + SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00002487 set_signals(info);
2488 spin_unlock_irqrestore(&info->lock,flags);
2489}
2490
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2493{
2494 MGSLPC_INFO *info;
Alan Coxeeb46132009-01-02 13:48:47 +00002495 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 int retval, line;
2497 unsigned long flags;
2498
Jeff Garzikd12341f2007-10-19 15:45:35 -04002499 /* verify range of specified line number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 line = tty->index;
Jiri Slaby410235f2012-03-05 14:52:01 +01002501 if (line >= mgslpc_device_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
2503 __FILE__,__LINE__,line);
2504 return -ENODEV;
2505 }
2506
2507 /* find the info structure for the specified line */
2508 info = mgslpc_device_list;
2509 while(info && info->line != line)
2510 info = info->next_device;
2511 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
2512 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002513
Alan Coxeeb46132009-01-02 13:48:47 +00002514 port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 tty->driver_data = info;
Alan Coxeeb46132009-01-02 13:48:47 +00002516 tty_port_tty_set(port, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 if (debug_level >= DEBUG_LEVEL_INFO)
2519 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002520 __FILE__,__LINE__,tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 /* If port is closing, signal caller to try again */
Alan Coxeeb46132009-01-02 13:48:47 +00002523 if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING){
2524 if (port->flags & ASYNC_CLOSING)
2525 interruptible_sleep_on(&port->close_wait);
2526 retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 -EAGAIN : -ERESTARTSYS);
2528 goto cleanup;
2529 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002530
Alan Coxeeb46132009-01-02 13:48:47 +00002531 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 spin_lock_irqsave(&info->netlock, flags);
2534 if (info->netcount) {
2535 retval = -EBUSY;
2536 spin_unlock_irqrestore(&info->netlock, flags);
2537 goto cleanup;
2538 }
Alan Coxeeb46132009-01-02 13:48:47 +00002539 spin_lock(&port->lock);
2540 port->count++;
2541 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 spin_unlock_irqrestore(&info->netlock, flags);
2543
Alan Coxeeb46132009-01-02 13:48:47 +00002544 if (port->count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 /* 1st open on this device, init hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00002546 retval = startup(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 if (retval < 0)
2548 goto cleanup;
2549 }
2550
Alan Coxeeb46132009-01-02 13:48:47 +00002551 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (retval) {
2553 if (debug_level >= DEBUG_LEVEL_INFO)
2554 printk("%s(%d):block_til_ready(%s) returned %d\n",
2555 __FILE__,__LINE__, info->device_name, retval);
2556 goto cleanup;
2557 }
2558
2559 if (debug_level >= DEBUG_LEVEL_INFO)
2560 printk("%s(%d):mgslpc_open(%s) success\n",
2561 __FILE__,__LINE__, info->device_name);
2562 retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002563
2564cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return retval;
2566}
2567
2568/*
2569 * /proc fs routines....
2570 */
2571
Alexey Dobriyan87687142009-03-31 15:19:17 -07002572static inline void line_info(struct seq_file *m, MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
2574 char stat_buf[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 unsigned long flags;
2576
Alexey Dobriyan87687142009-03-31 15:19:17 -07002577 seq_printf(m, "%s:io:%04X irq:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 info->device_name, info->io_base, info->irq_level);
2579
2580 /* output current serial signal states */
2581 spin_lock_irqsave(&info->lock,flags);
2582 get_signals(info);
2583 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 stat_buf[0] = 0;
2586 stat_buf[1] = 0;
2587 if (info->serial_signals & SerialSignal_RTS)
2588 strcat(stat_buf, "|RTS");
2589 if (info->serial_signals & SerialSignal_CTS)
2590 strcat(stat_buf, "|CTS");
2591 if (info->serial_signals & SerialSignal_DTR)
2592 strcat(stat_buf, "|DTR");
2593 if (info->serial_signals & SerialSignal_DSR)
2594 strcat(stat_buf, "|DSR");
2595 if (info->serial_signals & SerialSignal_DCD)
2596 strcat(stat_buf, "|CD");
2597 if (info->serial_signals & SerialSignal_RI)
2598 strcat(stat_buf, "|RI");
2599
2600 if (info->params.mode == MGSL_MODE_HDLC) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002601 seq_printf(m, " HDLC txok:%d rxok:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 info->icount.txok, info->icount.rxok);
2603 if (info->icount.txunder)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002604 seq_printf(m, " txunder:%d", info->icount.txunder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (info->icount.txabort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002606 seq_printf(m, " txabort:%d", info->icount.txabort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 if (info->icount.rxshort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002608 seq_printf(m, " rxshort:%d", info->icount.rxshort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 if (info->icount.rxlong)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002610 seq_printf(m, " rxlong:%d", info->icount.rxlong);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (info->icount.rxover)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002612 seq_printf(m, " rxover:%d", info->icount.rxover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (info->icount.rxcrc)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002614 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 } else {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002616 seq_printf(m, " ASYNC tx:%d rx:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 info->icount.tx, info->icount.rx);
2618 if (info->icount.frame)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002619 seq_printf(m, " fe:%d", info->icount.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 if (info->icount.parity)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002621 seq_printf(m, " pe:%d", info->icount.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (info->icount.brk)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002623 seq_printf(m, " brk:%d", info->icount.brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 if (info->icount.overrun)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002625 seq_printf(m, " oe:%d", info->icount.overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 /* Append serial signal status to end */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002629 seq_printf(m, " %s\n", stat_buf+1);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002630
Alexey Dobriyan87687142009-03-31 15:19:17 -07002631 seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 info->tx_active,info->bh_requested,info->bh_running,
2633 info->pending_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634}
2635
2636/* Called to print information about devices
2637 */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002638static int mgslpc_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 MGSLPC_INFO *info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002641
Alexey Dobriyan87687142009-03-31 15:19:17 -07002642 seq_printf(m, "synclink driver:%s\n", driver_version);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 info = mgslpc_device_list;
2645 while( info ) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002646 line_info(m, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 info = info->next_device;
2648 }
Alexey Dobriyan87687142009-03-31 15:19:17 -07002649 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
2651
Alexey Dobriyan87687142009-03-31 15:19:17 -07002652static int mgslpc_proc_open(struct inode *inode, struct file *file)
2653{
2654 return single_open(file, mgslpc_proc_show, NULL);
2655}
2656
2657static const struct file_operations mgslpc_proc_fops = {
2658 .owner = THIS_MODULE,
2659 .open = mgslpc_proc_open,
2660 .read = seq_read,
2661 .llseek = seq_lseek,
2662 .release = single_release,
2663};
2664
Peter Hagervallcdaad342006-06-23 02:06:04 -07002665static int rx_alloc_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
2667 /* each buffer has header and data */
2668 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;
2669
2670 /* calculate total allocation size for 8 buffers */
2671 info->rx_buf_total_size = info->rx_buf_size * 8;
2672
2673 /* limit total allocated memory */
2674 if (info->rx_buf_total_size > 0x10000)
2675 info->rx_buf_total_size = 0x10000;
2676
2677 /* calculate number of buffers */
2678 info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;
2679
2680 info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
2681 if (info->rx_buf == NULL)
2682 return -ENOMEM;
2683
2684 rx_reset_buffers(info);
2685 return 0;
2686}
2687
Peter Hagervallcdaad342006-06-23 02:06:04 -07002688static void rx_free_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
Jesper Juhl735d5662005-11-07 01:01:29 -08002690 kfree(info->rx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 info->rx_buf = NULL;
2692}
2693
Peter Hagervallcdaad342006-06-23 02:06:04 -07002694static int claim_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 if (rx_alloc_buffers(info) < 0 ) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002697 printk( "Can't allocate rx buffer %s\n", info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 release_resources(info);
2699 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 return 0;
2702}
2703
Peter Hagervallcdaad342006-06-23 02:06:04 -07002704static void release_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
2706 if (debug_level >= DEBUG_LEVEL_INFO)
2707 printk("release_resources(%s)\n", info->device_name);
2708 rx_free_buffers(info);
2709}
2710
2711/* Add the specified device instance data structure to the
2712 * global linked list of devices and increment the device count.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002713 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 * Arguments: info pointer to device instance data
2715 */
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002716static int mgslpc_add_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002718 MGSLPC_INFO *current_dev = NULL;
2719 struct device *tty_dev;
2720 int ret;
2721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 info->next_device = NULL;
2723 info->line = mgslpc_device_count;
2724 sprintf(info->device_name,"ttySLP%d",info->line);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (info->line < MAX_DEVICE_COUNT) {
2727 if (maxframe[info->line])
2728 info->max_frame_size = maxframe[info->line];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 }
2730
2731 mgslpc_device_count++;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 if (!mgslpc_device_list)
2734 mgslpc_device_list = info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002735 else {
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002736 current_dev = mgslpc_device_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 while( current_dev->next_device )
2738 current_dev = current_dev->next_device;
2739 current_dev->next_device = info;
2740 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 if (info->max_frame_size < 4096)
2743 info->max_frame_size = 4096;
2744 else if (info->max_frame_size > 65535)
2745 info->max_frame_size = 65535;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
2748 info->device_name, info->io_base, info->irq_level);
2749
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002750#if SYNCLINK_GENERIC_HDLC
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002751 ret = hdlcdev_init(info);
2752 if (ret != 0)
2753 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754#endif
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002755
2756 tty_dev = tty_port_register_device(&info->port, serial_driver, info->line,
Jiri Slabya33ba822012-08-14 10:23:08 +02002757 &info->p_dev->dev);
Alexey Khoroshilovd34138d2013-02-07 01:00:34 +01002758 if (IS_ERR(tty_dev)) {
2759 ret = PTR_ERR(tty_dev);
2760#if SYNCLINK_GENERIC_HDLC
2761 hdlcdev_exit(info);
2762#endif
2763 goto failed;
2764 }
2765
2766 return 0;
2767
2768failed:
2769 if (current_dev)
2770 current_dev->next_device = NULL;
2771 else
2772 mgslpc_device_list = NULL;
2773 mgslpc_device_count--;
2774 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775}
2776
Peter Hagervallcdaad342006-06-23 02:06:04 -07002777static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
2779 MGSLPC_INFO *info = mgslpc_device_list;
2780 MGSLPC_INFO *last = NULL;
2781
2782 while(info) {
2783 if (info == remove_info) {
2784 if (last)
2785 last->next_device = info->next_device;
2786 else
2787 mgslpc_device_list = info->next_device;
Jiri Slaby16a10652012-08-07 21:47:53 +02002788 tty_unregister_device(serial_driver, info->line);
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002789#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 hdlcdev_exit(info);
2791#endif
2792 release_resources(info);
Jiri Slaby191c5f12012-11-15 09:49:56 +01002793 tty_port_destroy(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 kfree(info);
2795 mgslpc_device_count--;
2796 return;
2797 }
2798 last = info;
2799 info = info->next_device;
2800 }
2801}
2802
Joe Perches25f8f542011-05-03 19:29:01 -07002803static const struct pcmcia_device_id mgslpc_ids[] = {
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002804 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2805 PCMCIA_DEVICE_NULL
2806};
2807MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
2808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809static struct pcmcia_driver mgslpc_driver = {
2810 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +02002811 .name = "synclink_cs",
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02002812 .probe = mgslpc_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01002813 .remove = mgslpc_detach,
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002814 .id_table = mgslpc_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01002815 .suspend = mgslpc_suspend,
2816 .resume = mgslpc_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817};
2818
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002819static const struct tty_operations mgslpc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 .open = mgslpc_open,
2821 .close = mgslpc_close,
2822 .write = mgslpc_write,
2823 .put_char = mgslpc_put_char,
2824 .flush_chars = mgslpc_flush_chars,
2825 .write_room = mgslpc_write_room,
2826 .chars_in_buffer = mgslpc_chars_in_buffer,
2827 .flush_buffer = mgslpc_flush_buffer,
2828 .ioctl = mgslpc_ioctl,
2829 .throttle = mgslpc_throttle,
2830 .unthrottle = mgslpc_unthrottle,
2831 .send_xchar = mgslpc_send_xchar,
2832 .break_ctl = mgslpc_break,
2833 .wait_until_sent = mgslpc_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 .set_termios = mgslpc_set_termios,
2835 .stop = tx_pause,
2836 .start = tx_release,
2837 .hangup = mgslpc_hangup,
2838 .tiocmget = tiocmget,
2839 .tiocmset = tiocmset,
Andres Salomondc98d962010-11-09 14:10:38 -08002840 .get_icount = mgslpc_get_icount,
Alexey Dobriyan87687142009-03-31 15:19:17 -07002841 .proc_fops = &mgslpc_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842};
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844static int __init synclink_cs_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845{
2846 int rc;
2847
Jiri Slabycc934412012-08-07 21:47:54 +02002848 if (break_on_load) {
2849 mgslpc_get_text_ptr();
2850 BREAKPOINT();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
2852
Jiri Slabycc934412012-08-07 21:47:54 +02002853 serial_driver = tty_alloc_driver(MAX_DEVICE_COUNT,
2854 TTY_DRIVER_REAL_RAW |
2855 TTY_DRIVER_DYNAMIC_DEV);
Dan Carpenterc3a63442012-08-16 16:16:56 +03002856 if (IS_ERR(serial_driver)) {
2857 rc = PTR_ERR(serial_driver);
Jiri Slabycc934412012-08-07 21:47:54 +02002858 goto err;
2859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Jiri Slabycc934412012-08-07 21:47:54 +02002861 /* Initialize the tty_driver structure */
2862 serial_driver->driver_name = "synclink_cs";
2863 serial_driver->name = "ttySLP";
2864 serial_driver->major = ttymajor;
2865 serial_driver->minor_start = 64;
2866 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
2867 serial_driver->subtype = SERIAL_TYPE_NORMAL;
2868 serial_driver->init_termios = tty_std_termios;
2869 serial_driver->init_termios.c_cflag =
2870 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2871 tty_set_operations(serial_driver, &mgslpc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Jiri Slabycc934412012-08-07 21:47:54 +02002873 rc = tty_register_driver(serial_driver);
2874 if (rc < 0) {
2875 printk(KERN_ERR "%s(%d):Couldn't register serial driver\n",
2876 __FILE__, __LINE__);
2877 goto err_put_tty;
2878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Jiri Slaby16a10652012-08-07 21:47:53 +02002880 rc = pcmcia_register_driver(&mgslpc_driver);
2881 if (rc < 0)
2882 goto err_unreg_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Jiri Slabycc934412012-08-07 21:47:54 +02002884 printk(KERN_INFO "%s %s, tty major#%d\n", driver_name, driver_version,
2885 serial_driver->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Jiri Slaby737586f2012-08-07 21:47:52 +02002887 return 0;
Jiri Slaby16a10652012-08-07 21:47:53 +02002888err_unreg_tty:
2889 tty_unregister_driver(serial_driver);
Jiri Slaby737586f2012-08-07 21:47:52 +02002890err_put_tty:
2891 put_tty_driver(serial_driver);
Jiri Slaby16a10652012-08-07 21:47:53 +02002892err:
Jiri Slaby737586f2012-08-07 21:47:52 +02002893 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894}
2895
Jeff Garzikd12341f2007-10-19 15:45:35 -04002896static void __exit synclink_cs_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897{
Jiri Slaby16a10652012-08-07 21:47:53 +02002898 pcmcia_unregister_driver(&mgslpc_driver);
Jiri Slaby737586f2012-08-07 21:47:52 +02002899 tty_unregister_driver(serial_driver);
2900 put_tty_driver(serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901}
2902
2903module_init(synclink_cs_init);
2904module_exit(synclink_cs_exit);
2905
2906static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
2907{
2908 unsigned int M, N;
2909 unsigned char val;
2910
Jeff Garzikd12341f2007-10-19 15:45:35 -04002911 /* note:standard BRG mode is broken in V3.2 chip
2912 * so enhanced mode is always used
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 */
2914
2915 if (rate) {
2916 N = 3686400 / rate;
2917 if (!N)
2918 N = 1;
2919 N >>= 1;
2920 for (M = 1; N > 64 && M < 16; M++)
2921 N >>= 1;
2922 N--;
2923
2924 /* BGR[5..0] = N
2925 * BGR[9..6] = M
2926 * BGR[7..0] contained in BGR register
2927 * BGR[9..8] contained in CCR2[7..6]
2928 * divisor = (N+1)*2^M
2929 *
2930 * Note: M *must* not be zero (causes asymetric duty cycle)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002931 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 write_reg(info, (unsigned char) (channel + BGR),
2933 (unsigned char) ((M << 6) + N));
2934 val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
2935 val |= ((M << 4) & 0xc0);
2936 write_reg(info, (unsigned char) (channel + CCR2), val);
2937 }
2938}
2939
2940/* Enabled the AUX clock output at the specified frequency.
2941 */
2942static void enable_auxclk(MGSLPC_INFO *info)
2943{
2944 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002945
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 /* MODE
2947 *
2948 * 07..06 MDS[1..0] 10 = transparent HDLC mode
2949 * 05 ADM Address Mode, 0 = no addr recognition
2950 * 04 TMD Timer Mode, 0 = external
2951 * 03 RAC Receiver Active, 0 = inactive
2952 * 02 RTS 0=RTS active during xmit, 1=RTS always active
2953 * 01 TRS Timer Resolution, 1=512
2954 * 00 TLP Test Loop, 0 = no loop
2955 *
2956 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04002957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 val = 0x82;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002959
2960 /* channel B RTS is used to enable AUXCLK driver on SP505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2962 val |= BIT2;
2963 write_reg(info, CHB + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 /* CCR0
2966 *
2967 * 07 PU Power Up, 1=active, 0=power down
2968 * 06 MCE Master Clock Enable, 1=enabled
2969 * 05 Reserved, 0
2970 * 04..02 SC[2..0] Encoding
2971 * 01..00 SM[1..0] Serial Mode, 00=HDLC
2972 *
2973 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002974 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 write_reg(info, CHB + CCR0, 0xc0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 /* CCR1
2978 *
2979 * 07 SFLG Shared Flag, 0 = disable shared flags
2980 * 06 GALP Go Active On Loop, 0 = not used
2981 * 05 GLP Go On Loop, 0 = not used
2982 * 04 ODS Output Driver Select, 1=TxD is push-pull output
2983 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
2984 * 02..00 CM[2..0] Clock Mode
2985 *
2986 * 0001 0111
Jeff Garzikd12341f2007-10-19 15:45:35 -04002987 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 write_reg(info, CHB + CCR1, 0x17);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 /* CCR2 (Channel B)
2991 *
2992 * 07..06 BGR[9..8] Baud rate bits 9..8
2993 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
2994 * 04 SSEL Clock source select, 1=submode b
2995 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
2996 * 02 RWX Read/Write Exchange 0=disabled
2997 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
2998 * 00 DIV, data inversion 0=disabled, 1=enabled
2999 *
3000 * 0011 1000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3003 write_reg(info, CHB + CCR2, 0x38);
3004 else
3005 write_reg(info, CHB + CCR2, 0x30);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 /* CCR4
3008 *
3009 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3010 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3011 * 05 TST1 Test Pin, 0=normal operation
3012 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3013 * 03..02 Reserved, must be 0
3014 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3015 *
3016 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 write_reg(info, CHB + CCR4, 0x50);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 /* if auxclk not enabled, set internal BRG so
3021 * CTS transitions can be detected (requires TxC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003022 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3024 mgslpc_set_rate(info, CHB, info->params.clock_speed);
3025 else
3026 mgslpc_set_rate(info, CHB, 921600);
3027}
3028
Jeff Garzikd12341f2007-10-19 15:45:35 -04003029static void loopback_enable(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030{
3031 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003032
3033 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 val = read_reg(info, CHA + CCR1) | (BIT2 + BIT1 + BIT0);
3035 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003036
3037 /* CCR2:04 SSEL Clock source select, 1=submode b */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 val = read_reg(info, CHA + CCR2) | (BIT4 + BIT5);
3039 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003040
3041 /* set LinkSpeed if available, otherwise default to 2Mbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if (info->params.clock_speed)
3043 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3044 else
3045 mgslpc_set_rate(info, CHA, 1843200);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003046
3047 /* MODE:00 TLP Test Loop, 1=loopback enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 val = read_reg(info, CHA + MODE) | BIT0;
3049 write_reg(info, CHA + MODE, val);
3050}
3051
Peter Hagervallcdaad342006-06-23 02:06:04 -07003052static void hdlc_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
3054 unsigned char val;
3055 unsigned char clkmode, clksubmode;
3056
Jeff Garzikd12341f2007-10-19 15:45:35 -04003057 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 irq_disable(info, CHA, 0xffff);
3059 irq_disable(info, CHB, 0xffff);
3060 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003061
3062 /* assume clock mode 0a, rcv=RxC xmt=TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 clkmode = clksubmode = 0;
3064 if (info->params.flags & HDLC_FLAG_RXC_DPLL
3065 && info->params.flags & HDLC_FLAG_TXC_DPLL) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003066 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 clkmode = 7;
3068 } else if (info->params.flags & HDLC_FLAG_RXC_BRG
3069 && info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003070 /* clock mode 7b, rcv = BRG, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 clkmode = 7;
3072 clksubmode = 1;
3073 } else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
3074 if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003075 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 clkmode = 6;
3077 clksubmode = 1;
3078 } else {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003079 /* clock mode 6a, rcv = DPLL, xmt = TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 clkmode = 6;
3081 }
3082 } else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003083 /* clock mode 0b, rcv = RxC, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 clksubmode = 1;
3085 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003086
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 /* MODE
3088 *
3089 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3090 * 05 ADM Address Mode, 0 = no addr recognition
3091 * 04 TMD Timer Mode, 0 = external
3092 * 03 RAC Receiver Active, 0 = inactive
3093 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3094 * 01 TRS Timer Resolution, 1=512
3095 * 00 TLP Test Loop, 0 = no loop
3096 *
3097 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04003098 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 val = 0x82;
3100 if (info->params.loopback)
3101 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003102
3103 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 if (info->serial_signals & SerialSignal_RTS)
3105 val |= BIT2;
3106 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003107
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 /* CCR0
3109 *
3110 * 07 PU Power Up, 1=active, 0=power down
3111 * 06 MCE Master Clock Enable, 1=enabled
3112 * 05 Reserved, 0
3113 * 04..02 SC[2..0] Encoding
3114 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3115 *
3116 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 val = 0xc0;
3119 switch (info->params.encoding)
3120 {
3121 case HDLC_ENCODING_NRZI:
3122 val |= BIT3;
3123 break;
3124 case HDLC_ENCODING_BIPHASE_SPACE:
3125 val |= BIT4;
3126 break; // FM0
3127 case HDLC_ENCODING_BIPHASE_MARK:
3128 val |= BIT4 + BIT2;
3129 break; // FM1
3130 case HDLC_ENCODING_BIPHASE_LEVEL:
3131 val |= BIT4 + BIT3;
3132 break; // Manchester
3133 }
3134 write_reg(info, CHA + CCR0, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003135
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 /* CCR1
3137 *
3138 * 07 SFLG Shared Flag, 0 = disable shared flags
3139 * 06 GALP Go Active On Loop, 0 = not used
3140 * 05 GLP Go On Loop, 0 = not used
3141 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3142 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3143 * 02..00 CM[2..0] Clock Mode
3144 *
3145 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003146 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 val = 0x10 + clkmode;
3148 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 /* CCR2
3151 *
3152 * 07..06 BGR[9..8] Baud rate bits 9..8
3153 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3154 * 04 SSEL Clock source select, 1=submode b
3155 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3156 * 02 RWX Read/Write Exchange 0=disabled
3157 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3158 * 00 DIV, data inversion 0=disabled, 1=enabled
3159 *
3160 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 val = 0x00;
3163 if (clkmode == 2 || clkmode == 3 || clkmode == 6
3164 || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
3165 val |= BIT5;
3166 if (clksubmode)
3167 val |= BIT4;
3168 if (info->params.crc_type == HDLC_CRC_32_CCITT)
3169 val |= BIT1;
3170 if (info->params.encoding == HDLC_ENCODING_NRZB)
3171 val |= BIT0;
3172 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003173
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 /* CCR3
3175 *
3176 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3177 * 05 EPT Enable preamble transmission, 1=enabled
3178 * 04 RADD Receive address pushed to FIFO, 0=disabled
3179 * 03 CRL CRC Reset Level, 0=FFFF
3180 * 02 RCRC Rx CRC 0=On 1=Off
3181 * 01 TCRC Tx CRC 0=On 1=Off
3182 * 00 PSD DPLL Phase Shift Disable
3183 *
3184 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 val = 0x00;
3187 if (info->params.crc_type == HDLC_CRC_NONE)
3188 val |= BIT2 + BIT1;
3189 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
3190 val |= BIT5;
3191 switch (info->params.preamble_length)
3192 {
3193 case HDLC_PREAMBLE_LENGTH_16BITS:
3194 val |= BIT6;
3195 break;
3196 case HDLC_PREAMBLE_LENGTH_32BITS:
3197 val |= BIT6;
3198 break;
3199 case HDLC_PREAMBLE_LENGTH_64BITS:
3200 val |= BIT7 + BIT6;
3201 break;
3202 }
3203 write_reg(info, CHA + CCR3, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003204
3205 /* PRE - Preamble pattern */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 val = 0;
3207 switch (info->params.preamble)
3208 {
3209 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
3210 case HDLC_PREAMBLE_PATTERN_10: val = 0xaa; break;
3211 case HDLC_PREAMBLE_PATTERN_01: val = 0x55; break;
3212 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
3213 }
3214 write_reg(info, CHA + PRE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 /* CCR4
3217 *
3218 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3219 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3220 * 05 TST1 Test Pin, 0=normal operation
3221 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3222 * 03..02 Reserved, must be 0
3223 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3224 *
3225 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 val = 0x50;
3228 write_reg(info, CHA + CCR4, val);
3229 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
3230 mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
3231 else
3232 mgslpc_set_rate(info, CHA, info->params.clock_speed);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 /* RLCR Receive length check register
3235 *
3236 * 7 1=enable receive length check
3237 * 6..0 Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003238 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 /* XBCH Transmit Byte Count High
3242 *
3243 * 07 DMA mode, 0 = interrupt driven
3244 * 06 NRM, 0=ABM (ignored)
3245 * 05 CAS Carrier Auto Start
3246 * 04 XC Transmit Continuously (ignored)
3247 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3248 *
3249 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003250 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 val = 0x00;
3252 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3253 val |= BIT5;
3254 write_reg(info, CHA + XBCH, val);
3255 enable_auxclk(info);
3256 if (info->params.loopback || info->testing_irq)
3257 loopback_enable(info);
3258 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3259 {
3260 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003261 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 set_reg_bits(info, CHA + PVR, BIT3);
3263 } else
3264 clear_reg_bits(info, CHA + PVR, BIT3);
3265
3266 irq_enable(info, CHA,
3267 IRQ_RXEOM + IRQ_RXFIFO + IRQ_ALLSENT +
3268 IRQ_UNDERRUN + IRQ_TXFIFO);
3269 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3270 wait_command_complete(info, CHA);
3271 read_reg16(info, CHA + ISR); /* clear pending IRQs */
Jeff Garzikd12341f2007-10-19 15:45:35 -04003272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 /* Master clock mode enabled above to allow reset commands
3274 * to complete even if no data clocks are present.
3275 *
3276 * Disable master clock mode for normal communications because
3277 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3278 * IRQ when in master clock mode.
3279 *
3280 * Leave master clock mode enabled for IRQ test because the
3281 * timer IRQ used by the test can only happen in master clock mode.
Jeff Garzikd12341f2007-10-19 15:45:35 -04003282 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 if (!info->testing_irq)
3284 clear_reg_bits(info, CHA + CCR0, BIT6);
3285
3286 tx_set_idle(info);
3287
3288 tx_stop(info);
3289 rx_stop(info);
3290}
3291
Peter Hagervallcdaad342006-06-23 02:06:04 -07003292static void rx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
3294 if (debug_level >= DEBUG_LEVEL_ISR)
3295 printk("%s(%d):rx_stop(%s)\n",
3296 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003297
3298 /* MODE:03 RAC Receiver Active, 0=inactive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 clear_reg_bits(info, CHA + MODE, BIT3);
3300
Joe Perches0fab6de2008-04-28 02:14:02 -07003301 info->rx_enabled = false;
3302 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
Peter Hagervallcdaad342006-06-23 02:06:04 -07003305static void rx_start(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306{
3307 if (debug_level >= DEBUG_LEVEL_ISR)
3308 printk("%s(%d):rx_start(%s)\n",
3309 __FILE__,__LINE__, info->device_name );
3310
3311 rx_reset_buffers(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003312 info->rx_enabled = false;
3313 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Jeff Garzikd12341f2007-10-19 15:45:35 -04003315 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 set_reg_bits(info, CHA + MODE, BIT3);
3317
Joe Perches0fab6de2008-04-28 02:14:02 -07003318 info->rx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319}
3320
Alan Coxeeb46132009-01-02 13:48:47 +00003321static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322{
3323 if (debug_level >= DEBUG_LEVEL_ISR)
3324 printk("%s(%d):tx_start(%s)\n",
3325 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 if (info->tx_count) {
3328 /* If auto RTS enabled and RTS is inactive, then assert */
3329 /* RTS and set a flag indicating that the driver should */
3330 /* negate RTS when the transmission completes. */
Joe Perches0fab6de2008-04-28 02:14:02 -07003331 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
3333 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3334 get_signals(info);
3335 if (!(info->serial_signals & SerialSignal_RTS)) {
3336 info->serial_signals |= SerialSignal_RTS;
3337 set_signals(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003338 info->drop_rts_on_tx_done = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 }
3340 }
3341
3342 if (info->params.mode == MGSL_MODE_ASYNC) {
3343 if (!info->tx_active) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003344 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003345 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 }
3347 } else {
Joe Perches0fab6de2008-04-28 02:14:02 -07003348 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003349 tx_ready(info, tty);
Jiri Slaby40565f12007-02-12 00:52:31 -08003350 mod_timer(&info->tx_timer, jiffies +
3351 msecs_to_jiffies(5000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 }
3353 }
3354
3355 if (!info->tx_enabled)
Joe Perches0fab6de2008-04-28 02:14:02 -07003356 info->tx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357}
3358
Peter Hagervallcdaad342006-06-23 02:06:04 -07003359static void tx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360{
3361 if (debug_level >= DEBUG_LEVEL_ISR)
3362 printk("%s(%d):tx_stop(%s)\n",
3363 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003364
3365 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Joe Perches0fab6de2008-04-28 02:14:02 -07003367 info->tx_enabled = false;
3368 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369}
3370
3371/* Reset the adapter to a known state and prepare it for further use.
3372 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003373static void reset_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003375 /* power up both channels (set BIT7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 write_reg(info, CHA + CCR0, 0x80);
3377 write_reg(info, CHB + CCR0, 0x80);
3378 write_reg(info, CHA + MODE, 0);
3379 write_reg(info, CHB + MODE, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003380
3381 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 irq_disable(info, CHA, 0xffff);
3383 irq_disable(info, CHB, 0xffff);
3384 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 /* PCR Port Configuration Register
3387 *
3388 * 07..04 DEC[3..0] Serial I/F select outputs
3389 * 03 output, 1=AUTO CTS control enabled
3390 * 02 RI Ring Indicator input 0=active
3391 * 01 DSR input 0=active
3392 * 00 DTR output 0=active
3393 *
3394 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 write_reg(info, PCR, 0x06);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 /* PVR Port Value Register
3399 *
3400 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3401 * 03 AUTO CTS output 1=enabled
3402 * 02 RI Ring Indicator input
3403 * 01 DSR input
3404 * 00 DTR output (1=inactive)
3405 *
3406 * 0000 0001
3407 */
3408// write_reg(info, PVR, PVR_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003409
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 /* IPC Interrupt Port Configuration
3411 *
3412 * 07 VIS 1=Masked interrupts visible
3413 * 06..05 Reserved, 0
3414 * 04..03 SLA Slave address, 00 ignored
3415 * 02 CASM Cascading Mode, 1=daisy chain
3416 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3417 *
3418 * 0000 0101
Jeff Garzikd12341f2007-10-19 15:45:35 -04003419 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 write_reg(info, IPC, 0x05);
3421}
3422
Peter Hagervallcdaad342006-06-23 02:06:04 -07003423static void async_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424{
3425 unsigned char val;
3426
Jeff Garzikd12341f2007-10-19 15:45:35 -04003427 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 irq_disable(info, CHA, 0xffff);
3429 irq_disable(info, CHB, 0xffff);
3430 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 /* MODE
3433 *
3434 * 07 Reserved, 0
3435 * 06 FRTS RTS State, 0=active
3436 * 05 FCTS Flow Control on CTS
3437 * 04 FLON Flow Control Enable
3438 * 03 RAC Receiver Active, 0 = inactive
3439 * 02 RTS 0=Auto RTS, 1=manual RTS
3440 * 01 TRS Timer Resolution, 1=512
3441 * 00 TLP Test Loop, 0 = no loop
3442 *
3443 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003444 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 val = 0x06;
3446 if (info->params.loopback)
3447 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003448
3449 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 if (!(info->serial_signals & SerialSignal_RTS))
3451 val |= BIT6;
3452 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 /* CCR0
3455 *
3456 * 07 PU Power Up, 1=active, 0=power down
3457 * 06 MCE Master Clock Enable, 1=enabled
3458 * 05 Reserved, 0
3459 * 04..02 SC[2..0] Encoding, 000=NRZ
3460 * 01..00 SM[1..0] Serial Mode, 11=Async
3461 *
3462 * 1000 0011
Jeff Garzikd12341f2007-10-19 15:45:35 -04003463 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 write_reg(info, CHA + CCR0, 0x83);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 /* CCR1
3467 *
3468 * 07..05 Reserved, 0
3469 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3470 * 03 BCR Bit Clock Rate, 1=16x
3471 * 02..00 CM[2..0] Clock Mode, 111=BRG
3472 *
3473 * 0001 1111
Jeff Garzikd12341f2007-10-19 15:45:35 -04003474 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 write_reg(info, CHA + CCR1, 0x1f);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 /* CCR2 (channel A)
3478 *
3479 * 07..06 BGR[9..8] Baud rate bits 9..8
3480 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3481 * 04 SSEL Clock source select, 1=submode b
3482 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3483 * 02 RWX Read/Write Exchange 0=disabled
3484 * 01 Reserved, 0
3485 * 00 DIV, data inversion 0=disabled, 1=enabled
3486 *
3487 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003488 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 write_reg(info, CHA + CCR2, 0x10);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 /* CCR3
3492 *
3493 * 07..01 Reserved, 0
3494 * 00 PSD DPLL Phase Shift Disable
3495 *
3496 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 write_reg(info, CHA + CCR3, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 /* CCR4
3501 *
3502 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3503 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3504 * 05 TST1 Test Pin, 0=normal operation
3505 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3506 * 03..00 Reserved, must be 0
3507 *
3508 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003509 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 write_reg(info, CHA + CCR4, 0x50);
3511 mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 /* DAFO Data Format
3514 *
3515 * 07 Reserved, 0
3516 * 06 XBRK transmit break, 0=normal operation
3517 * 05 Stop bits (0=1, 1=2)
3518 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3519 * 02 PAREN Parity Enable
3520 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3521 *
Jeff Garzikd12341f2007-10-19 15:45:35 -04003522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 val = 0x00;
3524 if (info->params.data_bits != 8)
3525 val |= BIT0; /* 7 bits */
3526 if (info->params.stop_bits != 1)
3527 val |= BIT5;
3528 if (info->params.parity != ASYNC_PARITY_NONE)
3529 {
3530 val |= BIT2; /* Parity enable */
3531 if (info->params.parity == ASYNC_PARITY_ODD)
3532 val |= BIT3;
3533 else
3534 val |= BIT4;
3535 }
3536 write_reg(info, CHA + DAFO, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 /* RFC Rx FIFO Control
3539 *
3540 * 07 Reserved, 0
3541 * 06 DPS, 1=parity bit not stored in data byte
3542 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3543 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3544 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3545 * 01 Reserved, 0
3546 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3547 *
3548 * 0101 1100
Jeff Garzikd12341f2007-10-19 15:45:35 -04003549 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 write_reg(info, CHA + RFC, 0x5c);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 /* RLCR Receive length check register
3553 *
3554 * Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 /* XBCH Transmit Byte Count High
3559 *
3560 * 07 DMA mode, 0 = interrupt driven
3561 * 06 NRM, 0=ABM (ignored)
3562 * 05 CAS Carrier Auto Start
3563 * 04 XC Transmit Continuously (ignored)
3564 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3565 *
3566 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003567 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 val = 0x00;
3569 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3570 val |= BIT5;
3571 write_reg(info, CHA + XBCH, val);
3572 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3573 irq_enable(info, CHA, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003574
3575 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 set_reg_bits(info, CHA + MODE, BIT3);
3577 enable_auxclk(info);
3578 if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
3579 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003580 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 set_reg_bits(info, CHA + PVR, BIT3);
3582 } else
3583 clear_reg_bits(info, CHA + PVR, BIT3);
3584 irq_enable(info, CHA,
3585 IRQ_RXEOM + IRQ_RXFIFO + IRQ_BREAK_ON + IRQ_RXTIME +
3586 IRQ_ALLSENT + IRQ_TXFIFO);
3587 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3588 wait_command_complete(info, CHA);
3589 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3590}
3591
3592/* Set the HDLC idle mode for the transmitter.
3593 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003594static void tx_set_idle(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003596 /* Note: ESCC2 only supports flags and one idle modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 if (info->idle_mode == HDLC_TXIDLE_FLAGS)
3598 set_reg_bits(info, CHA + CCR1, BIT3);
3599 else
3600 clear_reg_bits(info, CHA + CCR1, BIT3);
3601}
3602
3603/* get state of the V24 status (input) signals.
3604 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003605static void get_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606{
3607 unsigned char status = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003608
3609 /* preserve DTR and RTS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
3611
3612 if (read_reg(info, CHB + VSTR) & BIT7)
3613 info->serial_signals |= SerialSignal_DCD;
3614 if (read_reg(info, CHB + STAR) & BIT1)
3615 info->serial_signals |= SerialSignal_CTS;
3616
3617 status = read_reg(info, CHA + PVR);
3618 if (!(status & PVR_RI))
3619 info->serial_signals |= SerialSignal_RI;
3620 if (!(status & PVR_DSR))
3621 info->serial_signals |= SerialSignal_DSR;
3622}
3623
3624/* Set the state of DTR and RTS based on contents of
3625 * serial_signals member of device extension.
3626 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003627static void set_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628{
3629 unsigned char val;
3630
3631 val = read_reg(info, CHA + MODE);
3632 if (info->params.mode == MGSL_MODE_ASYNC) {
3633 if (info->serial_signals & SerialSignal_RTS)
3634 val &= ~BIT6;
3635 else
3636 val |= BIT6;
3637 } else {
3638 if (info->serial_signals & SerialSignal_RTS)
3639 val |= BIT2;
3640 else
3641 val &= ~BIT2;
3642 }
3643 write_reg(info, CHA + MODE, val);
3644
3645 if (info->serial_signals & SerialSignal_DTR)
3646 clear_reg_bits(info, CHA + PVR, PVR_DTR);
3647 else
3648 set_reg_bits(info, CHA + PVR, PVR_DTR);
3649}
3650
Peter Hagervallcdaad342006-06-23 02:06:04 -07003651static void rx_reset_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652{
3653 RXBUF *buf;
3654 int i;
3655
3656 info->rx_put = 0;
3657 info->rx_get = 0;
3658 info->rx_frame_count = 0;
3659 for (i=0 ; i < info->rx_buf_count ; i++) {
3660 buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
3661 buf->status = buf->count = 0;
3662 }
3663}
3664
3665/* Attempt to return a received HDLC frame
3666 * Only frames received without errors are returned.
3667 *
Joe Perches0fab6de2008-04-28 02:14:02 -07003668 * Returns true if frame returned, otherwise false
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 */
Alan Coxeeb46132009-01-02 13:48:47 +00003670static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671{
3672 unsigned short status;
3673 RXBUF *buf;
3674 unsigned int framesize = 0;
3675 unsigned long flags;
Joe Perches0fab6de2008-04-28 02:14:02 -07003676 bool return_frame = false;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003677
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 if (info->rx_frame_count == 0)
Joe Perches0fab6de2008-04-28 02:14:02 -07003679 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
3681 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));
3682
3683 status = buf->status;
3684
3685 /* 07 VFR 1=valid frame
3686 * 06 RDO 1=data overrun
3687 * 05 CRC 1=OK, 0=error
3688 * 04 RAB 1=frame aborted
3689 */
3690 if ((status & 0xf0) != 0xA0) {
3691 if (!(status & BIT7) || (status & BIT4))
3692 info->icount.rxabort++;
3693 else if (status & BIT6)
3694 info->icount.rxover++;
3695 else if (!(status & BIT5)) {
3696 info->icount.rxcrc++;
3697 if (info->params.crc_type & HDLC_CRC_RETURN_EX)
Joe Perches0fab6de2008-04-28 02:14:02 -07003698 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 }
3700 framesize = 0;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003701#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 {
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003703 info->netdev->stats.rx_errors++;
3704 info->netdev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 }
3706#endif
3707 } else
Joe Perches0fab6de2008-04-28 02:14:02 -07003708 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
3710 if (return_frame)
3711 framesize = buf->count;
3712
3713 if (debug_level >= DEBUG_LEVEL_BH)
3714 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
3715 __FILE__,__LINE__,info->device_name,status,framesize);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003716
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 if (debug_level >= DEBUG_LEVEL_DATA)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003718 trace_block(info, buf->data, framesize, 0);
3719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 if (framesize) {
3721 if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
3722 framesize+1 > info->max_frame_size) ||
3723 framesize > info->max_frame_size)
3724 info->icount.rxlong++;
3725 else {
3726 if (status & BIT5)
3727 info->icount.rxok++;
3728
3729 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
3730 *(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
3731 ++framesize;
3732 }
3733
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003734#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 if (info->netcount)
3736 hdlcdev_rx(info, buf->data, framesize);
3737 else
3738#endif
3739 ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
3740 }
3741 }
3742
3743 spin_lock_irqsave(&info->lock,flags);
3744 buf->status = buf->count = 0;
3745 info->rx_frame_count--;
3746 info->rx_get++;
3747 if (info->rx_get >= info->rx_buf_count)
3748 info->rx_get = 0;
3749 spin_unlock_irqrestore(&info->lock,flags);
3750
Joe Perches0fab6de2008-04-28 02:14:02 -07003751 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752}
3753
Joe Perches0fab6de2008-04-28 02:14:02 -07003754static bool register_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003756 static unsigned char patterns[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
Tobias Klauserfe971072006-01-09 20:54:02 -08003758 static unsigned int count = ARRAY_SIZE(patterns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 unsigned int i;
Joe Perches0fab6de2008-04-28 02:14:02 -07003760 bool rc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 unsigned long flags;
3762
3763 spin_lock_irqsave(&info->lock,flags);
3764 reset_device(info);
3765
3766 for (i = 0; i < count; i++) {
3767 write_reg(info, XAD1, patterns[i]);
3768 write_reg(info, XAD2, patterns[(i + 1) % count]);
Tobias Klauserfe971072006-01-09 20:54:02 -08003769 if ((read_reg(info, XAD1) != patterns[i]) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003771 rc = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 break;
3773 }
3774 }
3775
3776 spin_unlock_irqrestore(&info->lock,flags);
3777 return rc;
3778}
3779
Joe Perches0fab6de2008-04-28 02:14:02 -07003780static bool irq_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
3782 unsigned long end_time;
3783 unsigned long flags;
3784
3785 spin_lock_irqsave(&info->lock,flags);
3786 reset_device(info);
3787
Joe Perches0fab6de2008-04-28 02:14:02 -07003788 info->testing_irq = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 hdlc_mode(info);
3790
Joe Perches0fab6de2008-04-28 02:14:02 -07003791 info->irq_occurred = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
3793 /* init hdlc mode */
3794
3795 irq_enable(info, CHA, IRQ_TIMER);
3796 write_reg(info, CHA + TIMR, 0); /* 512 cycles */
3797 issue_command(info, CHA, CMD_START_TIMER);
3798
3799 spin_unlock_irqrestore(&info->lock,flags);
3800
3801 end_time=100;
3802 while(end_time-- && !info->irq_occurred) {
3803 msleep_interruptible(10);
3804 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003805
Joe Perches0fab6de2008-04-28 02:14:02 -07003806 info->testing_irq = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
3808 spin_lock_irqsave(&info->lock,flags);
3809 reset_device(info);
3810 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003811
Joe Perches0fab6de2008-04-28 02:14:02 -07003812 return info->irq_occurred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813}
3814
Peter Hagervallcdaad342006-06-23 02:06:04 -07003815static int adapter_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
3817 if (!register_test(info)) {
3818 info->init_error = DiagStatus_AddressFailure;
3819 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
3820 __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
3821 return -ENODEV;
3822 }
3823
3824 if (!irq_test(info)) {
3825 info->init_error = DiagStatus_IrqFailure;
3826 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
3827 __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
3828 return -ENODEV;
3829 }
3830
3831 if (debug_level >= DEBUG_LEVEL_INFO)
3832 printk("%s(%d):device %s passed diagnostics\n",
3833 __FILE__,__LINE__,info->device_name);
3834 return 0;
3835}
3836
Peter Hagervallcdaad342006-06-23 02:06:04 -07003837static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838{
3839 int i;
3840 int linecount;
3841 if (xmit)
3842 printk("%s tx data:\n",info->device_name);
3843 else
3844 printk("%s rx data:\n",info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003845
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 while(count) {
3847 if (count > 16)
3848 linecount = 16;
3849 else
3850 linecount = count;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003851
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 for(i=0;i<linecount;i++)
3853 printk("%02X ",(unsigned char)data[i]);
3854 for(;i<17;i++)
3855 printk(" ");
3856 for(i=0;i<linecount;i++) {
3857 if (data[i]>=040 && data[i]<=0176)
3858 printk("%c",data[i]);
3859 else
3860 printk(".");
3861 }
3862 printk("\n");
Jeff Garzikd12341f2007-10-19 15:45:35 -04003863
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 data += linecount;
3865 count -= linecount;
3866 }
3867}
3868
3869/* HDLC frame time out
3870 * update stats and do tx completion processing
3871 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003872static void tx_timeout(unsigned long context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873{
3874 MGSLPC_INFO *info = (MGSLPC_INFO*)context;
3875 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003876
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 if ( debug_level >= DEBUG_LEVEL_INFO )
3878 printk( "%s(%d):tx_timeout(%s)\n",
3879 __FILE__,__LINE__,info->device_name);
3880 if(info->tx_active &&
3881 info->params.mode == MGSL_MODE_HDLC) {
3882 info->icount.txtimeout++;
3883 }
3884 spin_lock_irqsave(&info->lock,flags);
Joe Perches0fab6de2008-04-28 02:14:02 -07003885 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 info->tx_count = info->tx_put = info->tx_get = 0;
3887
3888 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003889
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003890#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 if (info->netcount)
3892 hdlcdev_tx_done(info);
3893 else
3894#endif
Alan Coxeeb46132009-01-02 13:48:47 +00003895 {
3896 struct tty_struct *tty = tty_port_tty_get(&info->port);
3897 bh_transmit(info, tty);
3898 tty_kref_put(tty);
3899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900}
3901
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003902#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
3904/**
3905 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
3906 * set encoding and frame check sequence (FCS) options
3907 *
3908 * dev pointer to network device structure
3909 * encoding serial encoding setting
3910 * parity FCS setting
3911 *
3912 * returns 0 if success, otherwise error code
3913 */
3914static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
3915 unsigned short parity)
3916{
3917 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00003918 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 unsigned char new_encoding;
3920 unsigned short new_crctype;
3921
3922 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00003923 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 return -EBUSY;
3925
3926 switch (encoding)
3927 {
3928 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
3929 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
3930 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
3931 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
3932 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
3933 default: return -EINVAL;
3934 }
3935
3936 switch (parity)
3937 {
3938 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
3939 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
3940 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
3941 default: return -EINVAL;
3942 }
3943
3944 info->params.encoding = new_encoding;
Alexey Dobriyan53b35312006-03-24 03:16:13 -08003945 info->params.crc_type = new_crctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
3947 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00003948 if (info->netcount) {
3949 tty = tty_port_tty_get(&info->port);
3950 mgslpc_program_hw(info, tty);
3951 tty_kref_put(tty);
3952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
3954 return 0;
3955}
3956
3957/**
3958 * called by generic HDLC layer to send frame
3959 *
3960 * skb socket buffer containing HDLC frame
3961 * dev pointer to network device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 */
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003963static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
3964 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965{
3966 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 unsigned long flags;
3968
3969 if (debug_level >= DEBUG_LEVEL_INFO)
3970 printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);
3971
3972 /* stop sending until this frame completes */
3973 netif_stop_queue(dev);
3974
3975 /* copy data to device buffers */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003976 skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 info->tx_get = 0;
3978 info->tx_put = info->tx_count = skb->len;
3979
3980 /* update network statistics */
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003981 dev->stats.tx_packets++;
3982 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
3984 /* done with socket buffer, so free it */
3985 dev_kfree_skb(skb);
3986
3987 /* save start time for transmit timeout detection */
3988 dev->trans_start = jiffies;
3989
3990 /* start hardware transmitter if necessary */
3991 spin_lock_irqsave(&info->lock,flags);
Alan Coxeeb46132009-01-02 13:48:47 +00003992 if (!info->tx_active) {
3993 struct tty_struct *tty = tty_port_tty_get(&info->port);
3994 tx_start(info, tty);
3995 tty_kref_put(tty);
3996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 spin_unlock_irqrestore(&info->lock,flags);
3998
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003999 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000}
4001
4002/**
4003 * called by network layer when interface enabled
4004 * claim resources and initialize hardware
4005 *
4006 * dev pointer to network device structure
4007 *
4008 * returns 0 if success, otherwise error code
4009 */
4010static int hdlcdev_open(struct net_device *dev)
4011{
4012 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00004013 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 int rc;
4015 unsigned long flags;
4016
4017 if (debug_level >= DEBUG_LEVEL_INFO)
4018 printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);
4019
4020 /* generic HDLC layer open processing */
4021 if ((rc = hdlc_open(dev)))
4022 return rc;
4023
4024 /* arbitrate between network and tty opens */
4025 spin_lock_irqsave(&info->netlock, flags);
Alan Coxeeb46132009-01-02 13:48:47 +00004026 if (info->port.count != 0 || info->netcount != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
4028 spin_unlock_irqrestore(&info->netlock, flags);
4029 return -EBUSY;
4030 }
4031 info->netcount=1;
4032 spin_unlock_irqrestore(&info->netlock, flags);
4033
Alan Coxeeb46132009-01-02 13:48:47 +00004034 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 /* claim resources and init adapter */
Alan Coxeeb46132009-01-02 13:48:47 +00004036 if ((rc = startup(info, tty)) != 0) {
4037 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 /* assert DTR and RTS, 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)
4078 printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);
4079
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)
4112 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);
4113
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)
4213 printk("hdlcdev_tx_timeout(%s)\n",dev->name);
4214
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
4218 spin_lock_irqsave(&info->lock,flags);
4219 tx_stop(info);
4220 spin_unlock_irqrestore(&info->lock,flags);
4221
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)
4251 printk("hdlcdev_rx(%s)\n",dev->name);
4252
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
4294 if (!(dev = alloc_hdlcdev(info))) {
4295 printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
4296 return -ENOMEM;
4297 }
4298
4299 /* for network layer reporting purposes only */
4300 dev->base_addr = info->io_base;
4301 dev->irq = info->irq_level;
4302
4303 /* network layer callbacks and settings */
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004304 dev->netdev_ops = &hdlcdev_ops;
4305 dev->watchdog_timeo = 10 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 dev->tx_queue_len = 50;
4307
4308 /* generic HDLC layer callbacks and settings */
4309 hdlc = dev_to_hdlc(dev);
4310 hdlc->attach = hdlcdev_attach;
4311 hdlc->xmit = hdlcdev_xmit;
4312
4313 /* register objects with HDLC layer */
4314 if ((rc = register_hdlc_device(dev))) {
4315 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
4316 free_netdev(dev);
4317 return rc;
4318 }
4319
4320 info->netdev = dev;
4321 return 0;
4322}
4323
4324/**
4325 * called by device driver when removing device instance
4326 * do generic HDLC cleanup
4327 *
4328 * info pointer to device instance information
4329 */
4330static void hdlcdev_exit(MGSLPC_INFO *info)
4331{
4332 unregister_hdlc_device(info->netdev);
4333 free_netdev(info->netdev);
4334 info->netdev = NULL;
4335}
4336
4337#endif /* CONFIG_HDLC */
4338