blob: a6b8ddea222702ef1499152365848fb2c00fb80f [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);
400static void mgslpc_add_device(MGSLPC_INFO *info);
401static 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);
552 if (ret)
553 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 mgslpc_add_device(info);
556
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560/* Card has been inserted.
561 */
562
Dominik Brodowski00990e72010-07-30 13:13:46 +0200563static int mgslpc_ioprobe(struct pcmcia_device *p_dev, void *priv_data)
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200564{
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200565 return pcmcia_request_io(p_dev);
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200566}
567
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200568static int mgslpc_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 MGSLPC_INFO *info = link->priv;
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200571 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (debug_level >= DEBUG_LEVEL_INFO)
574 printk("mgslpc_config(0x%p)\n", link);
575
Dominik Brodowski00990e72010-07-30 13:13:46 +0200576 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
577
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200578 ret = pcmcia_loop_config(link, mgslpc_ioprobe, NULL);
579 if (ret != 0)
580 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Dominik Brodowski7feabb62010-07-29 18:35:47 +0200582 link->config_index = 8;
583 link->config_regs = PRESENT_OPTION;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400584
Dominik Brodowskieb141202010-03-07 12:21:16 +0100585 ret = pcmcia_request_irq(link, mgslpc_isr);
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200586 if (ret)
587 goto failed;
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200588 ret = pcmcia_enable_device(link);
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200589 if (ret)
590 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200592 info->io_base = link->resource[0]->start;
Dominik Brodowskieb141202010-03-07 12:21:16 +0100593 info->irq_level = link->irq;
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200596failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 mgslpc_release((u_long)link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200598 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/* Card has been removed.
602 * Unregister device and release PCMCIA configuration.
603 * If device is open, postpone until it is closed.
604 */
605static void mgslpc_release(u_long arg)
606{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100607 struct pcmcia_device *link = (struct pcmcia_device *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100609 if (debug_level >= DEBUG_LEVEL_INFO)
610 printk("mgslpc_release(0x%p)\n", link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100612 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200615static void mgslpc_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100617 if (debug_level >= DEBUG_LEVEL_INFO)
618 printk("mgslpc_detach(0x%p)\n", link);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100619
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100620 ((MGSLPC_INFO *)link->priv)->stop = 1;
621 mgslpc_release((u_long)link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100623 mgslpc_remove_device((MGSLPC_INFO *)link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200626static int mgslpc_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100627{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100628 MGSLPC_INFO *info = link->priv;
629
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100630 info->stop = 1;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100631
632 return 0;
633}
634
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200635static int mgslpc_resume(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 = 0;
640
641 return 0;
642}
643
644
Joe Perches0fab6de2008-04-28 02:14:02 -0700645static inline bool mgslpc_paranoia_check(MGSLPC_INFO *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 char *name, const char *routine)
647{
648#ifdef MGSLPC_PARANOIA_CHECK
649 static const char *badmagic =
650 "Warning: bad magic number for mgsl struct (%s) in %s\n";
651 static const char *badinfo =
652 "Warning: null mgslpc_info for (%s) in %s\n";
653
654 if (!info) {
655 printk(badinfo, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700656 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658 if (info->magic != MGSLPC_MAGIC) {
659 printk(badmagic, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700660 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662#else
663 if (!info)
Joe Perches0fab6de2008-04-28 02:14:02 -0700664 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#endif
Joe Perches0fab6de2008-04-28 02:14:02 -0700666 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669
670#define CMD_RXFIFO BIT7 // release current rx FIFO
671#define CMD_RXRESET BIT6 // receiver reset
672#define CMD_RXFIFO_READ BIT5
673#define CMD_START_TIMER BIT4
674#define CMD_TXFIFO BIT3 // release current tx FIFO
675#define CMD_TXEOM BIT1 // transmit end message
676#define CMD_TXRESET BIT0 // transmit reset
677
Joe Perches0fab6de2008-04-28 02:14:02 -0700678static bool wait_command_complete(MGSLPC_INFO *info, unsigned char channel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 int i = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400681 /* wait for command completion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 while (read_reg(info, (unsigned char)(channel+STAR)) & BIT2) {
683 udelay(1);
684 if (i++ == 1000)
Joe Perches0fab6de2008-04-28 02:14:02 -0700685 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700687 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Jeff Garzikd12341f2007-10-19 15:45:35 -0400690static void issue_command(MGSLPC_INFO *info, unsigned char channel, unsigned char cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 wait_command_complete(info, channel);
693 write_reg(info, (unsigned char) (channel + CMDR), cmd);
694}
695
696static void tx_pause(struct tty_struct *tty)
697{
698 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
699 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (mgslpc_paranoia_check(info, tty->name, "tx_pause"))
702 return;
703 if (debug_level >= DEBUG_LEVEL_INFO)
Jeff Garzikd12341f2007-10-19 15:45:35 -0400704 printk("tx_pause(%s)\n",info->device_name);
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 spin_lock_irqsave(&info->lock,flags);
707 if (info->tx_enabled)
708 tx_stop(info);
709 spin_unlock_irqrestore(&info->lock,flags);
710}
711
712static void tx_release(struct tty_struct *tty)
713{
714 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
715 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (mgslpc_paranoia_check(info, tty->name, "tx_release"))
718 return;
719 if (debug_level >= DEBUG_LEVEL_INFO)
Jeff Garzikd12341f2007-10-19 15:45:35 -0400720 printk("tx_release(%s)\n",info->device_name);
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 spin_lock_irqsave(&info->lock,flags);
723 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +0000724 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 spin_unlock_irqrestore(&info->lock,flags);
726}
727
728/* Return next bottom half action to perform.
729 * or 0 if nothing to do.
730 */
731static int bh_action(MGSLPC_INFO *info)
732{
733 unsigned long flags;
734 int rc = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 spin_lock_irqsave(&info->lock,flags);
737
738 if (info->pending_bh & BH_RECEIVE) {
739 info->pending_bh &= ~BH_RECEIVE;
740 rc = BH_RECEIVE;
741 } else if (info->pending_bh & BH_TRANSMIT) {
742 info->pending_bh &= ~BH_TRANSMIT;
743 rc = BH_TRANSMIT;
744 } else if (info->pending_bh & BH_STATUS) {
745 info->pending_bh &= ~BH_STATUS;
746 rc = BH_STATUS;
747 }
748
749 if (!rc) {
750 /* Mark BH routine as complete */
Joe Perches0fab6de2008-04-28 02:14:02 -0700751 info->bh_running = false;
752 info->bh_requested = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return rc;
758}
759
David Howellsc4028952006-11-22 14:57:56 +0000760static void bh_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
David Howellsc4028952006-11-22 14:57:56 +0000762 MGSLPC_INFO *info = container_of(work, MGSLPC_INFO, task);
Alan Coxeeb46132009-01-02 13:48:47 +0000763 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 int action;
765
766 if (!info)
767 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (debug_level >= DEBUG_LEVEL_BH)
770 printk( "%s(%d):bh_handler(%s) entry\n",
771 __FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400772
Joe Perches0fab6de2008-04-28 02:14:02 -0700773 info->bh_running = true;
Alan Coxeeb46132009-01-02 13:48:47 +0000774 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 while((action = bh_action(info)) != 0) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* Process work item */
779 if ( debug_level >= DEBUG_LEVEL_BH )
780 printk( "%s(%d):bh_handler() work item action=%d\n",
781 __FILE__,__LINE__,action);
782
783 switch (action) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 case BH_RECEIVE:
Alan Coxeeb46132009-01-02 13:48:47 +0000786 while(rx_get_frame(info, tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 break;
788 case BH_TRANSMIT:
Alan Coxeeb46132009-01-02 13:48:47 +0000789 bh_transmit(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 break;
791 case BH_STATUS:
792 bh_status(info);
793 break;
794 default:
795 /* unknown work item ID */
796 printk("Unknown work item ID=%08X!\n", action);
797 break;
798 }
799 }
800
Alan Coxeeb46132009-01-02 13:48:47 +0000801 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (debug_level >= DEBUG_LEVEL_BH)
803 printk( "%s(%d):bh_handler(%s) exit\n",
804 __FILE__,__LINE__,info->device_name);
805}
806
Alan Coxeeb46132009-01-02 13:48:47 +0000807static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (debug_level >= DEBUG_LEVEL_BH)
810 printk("bh_transmit() entry on %s\n", info->device_name);
811
Jiri Slabyb963a842007-02-10 01:44:55 -0800812 if (tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Peter Hagervallcdaad342006-06-23 02:06:04 -0700816static void bh_status(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 info->ri_chkcount = 0;
819 info->dsr_chkcount = 0;
820 info->dcd_chkcount = 0;
821 info->cts_chkcount = 0;
822}
823
Jeff Garzikd12341f2007-10-19 15:45:35 -0400824/* eom: non-zero = end of frame */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825static void rx_ready_hdlc(MGSLPC_INFO *info, int eom)
826{
827 unsigned char data[2];
828 unsigned char fifo_count, read_count, i;
829 RXBUF *buf = (RXBUF*)(info->rx_buf + (info->rx_put * info->rx_buf_size));
830
831 if (debug_level >= DEBUG_LEVEL_ISR)
832 printk("%s(%d):rx_ready_hdlc(eom=%d)\n",__FILE__,__LINE__,eom);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (!info->rx_enabled)
835 return;
836
837 if (info->rx_frame_count >= info->rx_buf_count) {
838 /* no more free buffers */
839 issue_command(info, CHA, CMD_RXRESET);
840 info->pending_bh |= BH_RECEIVE;
Joe Perches0fab6de2008-04-28 02:14:02 -0700841 info->rx_overflow = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 info->icount.buf_overrun++;
843 return;
844 }
845
846 if (eom) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400847 /* end of frame, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (!(fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f)))
849 fifo_count = 32;
850 } else
851 fifo_count = 32;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 do {
854 if (fifo_count == 1) {
855 read_count = 1;
856 data[0] = read_reg(info, CHA + RXFIFO);
857 } else {
858 read_count = 2;
859 *((unsigned short *) data) = read_reg16(info, CHA + RXFIFO);
860 }
861 fifo_count -= read_count;
862 if (!fifo_count && eom)
863 buf->status = data[--read_count];
864
865 for (i = 0; i < read_count; i++) {
866 if (buf->count >= info->max_frame_size) {
867 /* frame too large, reset receiver and reset current buffer */
868 issue_command(info, CHA, CMD_RXRESET);
869 buf->count = 0;
870 return;
871 }
872 *(buf->data + buf->count) = data[i];
873 buf->count++;
874 }
875 } while (fifo_count);
876
877 if (eom) {
878 info->pending_bh |= BH_RECEIVE;
879 info->rx_frame_count++;
880 info->rx_put++;
881 if (info->rx_put >= info->rx_buf_count)
882 info->rx_put = 0;
883 }
884 issue_command(info, CHA, CMD_RXFIFO);
885}
886
Alan Coxeeb46132009-01-02 13:48:47 +0000887static void rx_ready_async(MGSLPC_INFO *info, int tcd, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Alan Cox33f0f882006-01-09 20:54:13 -0800889 unsigned char data, status, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 int fifo_count;
Alan Cox33f0f882006-01-09 20:54:13 -0800891 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 struct mgsl_icount *icount = &info->icount;
893
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +0400894 if (!tty) {
895 /* tty is not available anymore */
896 issue_command(info, CHA, CMD_RXRESET);
897 if (debug_level >= DEBUG_LEVEL_ISR)
898 printk("%s(%d):rx_ready_async(tty=NULL)\n",__FILE__,__LINE__);
899 return;
900 }
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (tcd) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400903 /* early termination, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
905
906 /* Zero fifo count could mean 0 or 32 bytes available.
907 * If BIT5 of STAR is set then at least 1 byte is available.
908 */
909 if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
910 fifo_count = 32;
911 } else
912 fifo_count = 32;
Alan Cox33f0f882006-01-09 20:54:13 -0800913
914 tty_buffer_request_room(tty, fifo_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400915 /* Flush received async data to receive data buffer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 while (fifo_count) {
917 data = read_reg(info, CHA + RXFIFO);
918 status = read_reg(info, CHA + RXFIFO);
919 fifo_count -= 2;
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 icount->rx++;
Alan Cox33f0f882006-01-09 20:54:13 -0800922 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 // if no frameing/crc error then save data
925 // BIT7:parity error
926 // BIT6:framing error
927
928 if (status & (BIT7 + BIT6)) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400929 if (status & BIT7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 icount->parity++;
931 else
932 icount->frame++;
933
934 /* discard char if tty control flags say so */
935 if (status & info->ignore_status_mask)
936 continue;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 status &= info->read_status_mask;
939
940 if (status & BIT7)
Alan Cox33f0f882006-01-09 20:54:13 -0800941 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 else if (status & BIT6)
Alan Cox33f0f882006-01-09 20:54:13 -0800943 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Alan Cox33f0f882006-01-09 20:54:13 -0800945 work += tty_insert_flip_char(tty, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947 issue_command(info, CHA, CMD_RXFIFO);
948
949 if (debug_level >= DEBUG_LEVEL_ISR) {
Alan Cox33f0f882006-01-09 20:54:13 -0800950 printk("%s(%d):rx_ready_async",
951 __FILE__,__LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
953 __FILE__,__LINE__,icount->rx,icount->brk,
954 icount->parity,icount->frame,icount->overrun);
955 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400956
Alan Cox33f0f882006-01-09 20:54:13 -0800957 if (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 tty_flip_buffer_push(tty);
959}
960
961
Alan Coxeeb46132009-01-02 13:48:47 +0000962static void tx_done(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 if (!info->tx_active)
965 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400966
Joe Perches0fab6de2008-04-28 02:14:02 -0700967 info->tx_active = false;
968 info->tx_aborting = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (info->params.mode == MGSL_MODE_ASYNC)
971 return;
972
973 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400974 del_timer(&info->tx_timer);
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (info->drop_rts_on_tx_done) {
977 get_signals(info);
978 if (info->serial_signals & SerialSignal_RTS) {
979 info->serial_signals &= ~SerialSignal_RTS;
980 set_signals(info);
981 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700982 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800985#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (info->netcount)
987 hdlcdev_tx_done(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400988 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989#endif
990 {
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +0400991 if (tty && (tty->stopped || tty->hw_stopped)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 tx_stop(info);
993 return;
994 }
995 info->pending_bh |= BH_TRANSMIT;
996 }
997}
998
Alan Coxeeb46132009-01-02 13:48:47 +0000999static void tx_ready(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 unsigned char fifo_count = 32;
1002 int c;
1003
1004 if (debug_level >= DEBUG_LEVEL_ISR)
1005 printk("%s(%d):tx_ready(%s)\n", __FILE__,__LINE__,info->device_name);
1006
1007 if (info->params.mode == MGSL_MODE_HDLC) {
1008 if (!info->tx_active)
1009 return;
1010 } else {
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001011 if (tty && (tty->stopped || tty->hw_stopped)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 tx_stop(info);
1013 return;
1014 }
1015 if (!info->tx_count)
Joe Perches0fab6de2008-04-28 02:14:02 -07001016 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
1019 if (!info->tx_count)
1020 return;
1021
1022 while (info->tx_count && fifo_count) {
1023 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (c == 1) {
1026 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
1027 } else {
1028 write_reg16(info, CHA + TXFIFO,
1029 *((unsigned short*)(info->tx_buf + info->tx_get)));
1030 }
1031 info->tx_count -= c;
1032 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1033 fifo_count -= c;
1034 }
1035
1036 if (info->params.mode == MGSL_MODE_ASYNC) {
1037 if (info->tx_count < WAKEUP_CHARS)
1038 info->pending_bh |= BH_TRANSMIT;
1039 issue_command(info, CHA, CMD_TXFIFO);
1040 } else {
1041 if (info->tx_count)
1042 issue_command(info, CHA, CMD_TXFIFO);
1043 else
1044 issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
1045 }
1046}
1047
Alan Coxeeb46132009-01-02 13:48:47 +00001048static void cts_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 get_signals(info);
1051 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1052 irq_disable(info, CHB, IRQ_CTS);
1053 info->icount.cts++;
1054 if (info->serial_signals & SerialSignal_CTS)
1055 info->input_signal_events.cts_up++;
1056 else
1057 info->input_signal_events.cts_down++;
1058 wake_up_interruptible(&info->status_event_wait_q);
1059 wake_up_interruptible(&info->event_wait_q);
1060
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001061 if (tty && (info->port.flags & ASYNC_CTS_FLOW)) {
Alan Coxeeb46132009-01-02 13:48:47 +00001062 if (tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (info->serial_signals & SerialSignal_CTS) {
1064 if (debug_level >= DEBUG_LEVEL_ISR)
1065 printk("CTS tx start...");
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001066 tty->hw_stopped = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001067 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 info->pending_bh |= BH_TRANSMIT;
1069 return;
1070 }
1071 } else {
1072 if (!(info->serial_signals & SerialSignal_CTS)) {
1073 if (debug_level >= DEBUG_LEVEL_ISR)
1074 printk("CTS tx stop...");
Alexey Khoroshilov221b7b52012-09-15 01:29:37 +04001075 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 tx_stop(info);
1077 }
1078 }
1079 }
1080 info->pending_bh |= BH_STATUS;
1081}
1082
Alan Coxeeb46132009-01-02 13:48:47 +00001083static void dcd_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 get_signals(info);
1086 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1087 irq_disable(info, CHB, IRQ_DCD);
1088 info->icount.dcd++;
1089 if (info->serial_signals & SerialSignal_DCD) {
1090 info->input_signal_events.dcd_up++;
1091 }
1092 else
1093 info->input_signal_events.dcd_down++;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08001094#if SYNCLINK_GENERIC_HDLC
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07001095 if (info->netcount) {
1096 if (info->serial_signals & SerialSignal_DCD)
1097 netif_carrier_on(info->netdev);
1098 else
1099 netif_carrier_off(info->netdev);
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101#endif
1102 wake_up_interruptible(&info->status_event_wait_q);
1103 wake_up_interruptible(&info->event_wait_q);
1104
Alan Coxeeb46132009-01-02 13:48:47 +00001105 if (info->port.flags & ASYNC_CHECK_CD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (debug_level >= DEBUG_LEVEL_ISR)
1107 printk("%s CD now %s...", info->device_name,
1108 (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
1109 if (info->serial_signals & SerialSignal_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001110 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 else {
1112 if (debug_level >= DEBUG_LEVEL_ISR)
1113 printk("doing serial hangup...");
Alan Coxeeb46132009-01-02 13:48:47 +00001114 if (tty)
1115 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117 }
1118 info->pending_bh |= BH_STATUS;
1119}
1120
1121static void dsr_change(MGSLPC_INFO *info)
1122{
1123 get_signals(info);
1124 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1125 port_irq_disable(info, PVR_DSR);
1126 info->icount.dsr++;
1127 if (info->serial_signals & SerialSignal_DSR)
1128 info->input_signal_events.dsr_up++;
1129 else
1130 info->input_signal_events.dsr_down++;
1131 wake_up_interruptible(&info->status_event_wait_q);
1132 wake_up_interruptible(&info->event_wait_q);
1133 info->pending_bh |= BH_STATUS;
1134}
1135
1136static void ri_change(MGSLPC_INFO *info)
1137{
1138 get_signals(info);
1139 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1140 port_irq_disable(info, PVR_RI);
1141 info->icount.rng++;
1142 if (info->serial_signals & SerialSignal_RI)
1143 info->input_signal_events.ri_up++;
1144 else
1145 info->input_signal_events.ri_down++;
1146 wake_up_interruptible(&info->status_event_wait_q);
1147 wake_up_interruptible(&info->event_wait_q);
1148 info->pending_bh |= BH_STATUS;
1149}
1150
1151/* Interrupt service routine entry point.
Jeff Garzikd12341f2007-10-19 15:45:35 -04001152 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001154 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * irq interrupt number that caused interrupt
1156 * dev_id device ID supplied during interrupt registration
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 */
Jeff Garzika6f97b22007-10-31 05:20:49 -04001158static irqreturn_t mgslpc_isr(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Jeff Garzika6f97b22007-10-31 05:20:49 -04001160 MGSLPC_INFO *info = dev_id;
Alan Coxeeb46132009-01-02 13:48:47 +00001161 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 unsigned short isr;
1163 unsigned char gis, pis;
1164 int count=0;
1165
Jeff Garzikd12341f2007-10-19 15:45:35 -04001166 if (debug_level >= DEBUG_LEVEL_ISR)
Jeff Garzika6f97b22007-10-31 05:20:49 -04001167 printk("mgslpc_isr(%d) entry.\n", info->irq_level);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001168
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001169 if (!(info->p_dev->_locked))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return IRQ_HANDLED;
1171
Alan Coxeeb46132009-01-02 13:48:47 +00001172 tty = tty_port_tty_get(&info->port);
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 spin_lock(&info->lock);
1175
1176 while ((gis = read_reg(info, CHA + GIS))) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001177 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);
1179
1180 if ((gis & 0x70) || count > 1000) {
1181 printk("synclink_cs:hardware failed or ejected\n");
1182 break;
1183 }
1184 count++;
1185
1186 if (gis & (BIT1 + BIT0)) {
1187 isr = read_reg16(info, CHB + ISR);
1188 if (isr & IRQ_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001189 dcd_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (isr & IRQ_CTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001191 cts_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 if (gis & (BIT3 + BIT2))
1194 {
1195 isr = read_reg16(info, CHA + ISR);
1196 if (isr & IRQ_TIMER) {
Joe Perches0fab6de2008-04-28 02:14:02 -07001197 info->irq_occurred = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 irq_disable(info, CHA, IRQ_TIMER);
1199 }
1200
Jeff Garzikd12341f2007-10-19 15:45:35 -04001201 /* receive IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (isr & IRQ_EXITHUNT) {
1203 info->icount.exithunt++;
1204 wake_up_interruptible(&info->event_wait_q);
1205 }
1206 if (isr & IRQ_BREAK_ON) {
1207 info->icount.brk++;
Alan Coxeeb46132009-01-02 13:48:47 +00001208 if (info->port.flags & ASYNC_SAK)
1209 do_SAK(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211 if (isr & IRQ_RXTIME) {
1212 issue_command(info, CHA, CMD_RXFIFO_READ);
1213 }
1214 if (isr & (IRQ_RXEOM + IRQ_RXFIFO)) {
1215 if (info->params.mode == MGSL_MODE_HDLC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04001216 rx_ready_hdlc(info, isr & IRQ_RXEOM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 else
Alan Coxeeb46132009-01-02 13:48:47 +00001218 rx_ready_async(info, isr & IRQ_RXEOM, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220
Jeff Garzikd12341f2007-10-19 15:45:35 -04001221 /* transmit IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (isr & IRQ_UNDERRUN) {
1223 if (info->tx_aborting)
1224 info->icount.txabort++;
1225 else
1226 info->icount.txunder++;
Alan Coxeeb46132009-01-02 13:48:47 +00001227 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229 else if (isr & IRQ_ALLSENT) {
1230 info->icount.txok++;
Alan Coxeeb46132009-01-02 13:48:47 +00001231 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 else if (isr & IRQ_TXFIFO)
Alan Coxeeb46132009-01-02 13:48:47 +00001234 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236 if (gis & BIT7) {
1237 pis = read_reg(info, CHA + PIS);
1238 if (pis & BIT1)
1239 dsr_change(info);
1240 if (pis & BIT2)
1241 ri_change(info);
1242 }
1243 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001244
1245 /* Request bottom half processing if there's something
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * for it to do and the bh is not already running
1247 */
1248
1249 if (info->pending_bh && !info->bh_running && !info->bh_requested) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001250 if ( debug_level >= DEBUG_LEVEL_ISR )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 printk("%s(%d):%s queueing bh task.\n",
1252 __FILE__,__LINE__,info->device_name);
1253 schedule_work(&info->task);
Joe Perches0fab6de2008-04-28 02:14:02 -07001254 info->bh_requested = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256
1257 spin_unlock(&info->lock);
Alan Coxeeb46132009-01-02 13:48:47 +00001258 tty_kref_put(tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001259
1260 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 printk("%s(%d):mgslpc_isr(%d)exit.\n",
Jeff Garzika6f97b22007-10-31 05:20:49 -04001262 __FILE__, __LINE__, info->irq_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 return IRQ_HANDLED;
1265}
1266
1267/* Initialize and start device.
1268 */
Alan Coxeeb46132009-01-02 13:48:47 +00001269static int startup(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 int retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (debug_level >= DEBUG_LEVEL_INFO)
1274 printk("%s(%d):startup(%s)\n",__FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001275
Alan Coxeeb46132009-01-02 13:48:47 +00001276 if (info->port.flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (!info->tx_buf) {
1280 /* allocate a page of memory for a transmit buffer */
1281 info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1282 if (!info->tx_buf) {
1283 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
1284 __FILE__,__LINE__,info->device_name);
1285 return -ENOMEM;
1286 }
1287 }
1288
1289 info->pending_bh = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001290
Paul Fulghuma7482a22005-09-10 00:26:07 -07001291 memset(&info->icount, 0, sizeof(info->icount));
1292
Jiri Slaby40565f12007-02-12 00:52:31 -08001293 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 /* Allocate and claim adapter resources */
1296 retval = claim_resources(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001297
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001298 /* perform existence check and diagnostics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if ( !retval )
1300 retval = adapter_test(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if ( retval ) {
Alan Coxeeb46132009-01-02 13:48:47 +00001303 if (capable(CAP_SYS_ADMIN) && tty)
1304 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 release_resources(info);
1306 return retval;
1307 }
1308
1309 /* program hardware for current parameters */
Alan Coxeeb46132009-01-02 13:48:47 +00001310 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001311
Alan Coxeeb46132009-01-02 13:48:47 +00001312 if (tty)
1313 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Alan Coxeeb46132009-01-02 13:48:47 +00001315 info->port.flags |= ASYNC_INITIALIZED;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return 0;
1318}
1319
1320/* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1321 */
Alan Coxeeb46132009-01-02 13:48:47 +00001322static void shutdown(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001325
Alan Coxeeb46132009-01-02 13:48:47 +00001326 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return;
1328
1329 if (debug_level >= DEBUG_LEVEL_INFO)
1330 printk("%s(%d):mgslpc_shutdown(%s)\n",
1331 __FILE__,__LINE__, info->device_name );
1332
1333 /* clear status wait queue because status changes */
1334 /* can't happen after shutting down the hardware */
1335 wake_up_interruptible(&info->status_event_wait_q);
1336 wake_up_interruptible(&info->event_wait_q);
1337
Jiri Slaby40565f12007-02-12 00:52:31 -08001338 del_timer_sync(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 if (info->tx_buf) {
1341 free_page((unsigned long) info->tx_buf);
1342 info->tx_buf = NULL;
1343 }
1344
1345 spin_lock_irqsave(&info->lock,flags);
1346
1347 rx_stop(info);
1348 tx_stop(info);
1349
1350 /* TODO:disable interrupts instead of reset to preserve signal states */
1351 reset_device(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001352
Alan Coxeeb46132009-01-02 13:48:47 +00001353 if (!tty || tty->termios->c_cflag & HUPCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
1355 set_signals(info);
1356 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 spin_unlock_irqrestore(&info->lock,flags);
1359
Jeff Garzikd12341f2007-10-19 15:45:35 -04001360 release_resources(info);
1361
Alan Coxeeb46132009-01-02 13:48:47 +00001362 if (tty)
1363 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Alan Coxeeb46132009-01-02 13:48:47 +00001365 info->port.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Alan Coxeeb46132009-01-02 13:48:47 +00001368static void mgslpc_program_hw(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 unsigned long flags;
1371
1372 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 rx_stop(info);
1375 tx_stop(info);
1376 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
1379 hdlc_mode(info);
1380 else
1381 async_mode(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 set_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 info->dcd_chkcount = 0;
1386 info->cts_chkcount = 0;
1387 info->ri_chkcount = 0;
1388 info->dsr_chkcount = 0;
1389
1390 irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
1391 port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
1392 get_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001393
Alan Coxeeb46132009-01-02 13:48:47 +00001394 if (info->netcount || (tty && (tty->termios->c_cflag & CREAD)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 rx_start(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 spin_unlock_irqrestore(&info->lock,flags);
1398}
1399
1400/* Reconfigure adapter based on new parameters
1401 */
Alan Coxeeb46132009-01-02 13:48:47 +00001402static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
1404 unsigned cflag;
1405 int bits_per_char;
1406
Alan Coxeeb46132009-01-02 13:48:47 +00001407 if (!tty || !tty->termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 if (debug_level >= DEBUG_LEVEL_INFO)
1411 printk("%s(%d):mgslpc_change_params(%s)\n",
1412 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001413
Alan Coxeeb46132009-01-02 13:48:47 +00001414 cflag = tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 /* if B0 rate (hangup) specified then negate DTR and RTS */
1417 /* otherwise assert DTR and RTS */
1418 if (cflag & CBAUD)
1419 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
1420 else
1421 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 /* byte size and parity */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 switch (cflag & CSIZE) {
1426 case CS5: info->params.data_bits = 5; break;
1427 case CS6: info->params.data_bits = 6; break;
1428 case CS7: info->params.data_bits = 7; break;
1429 case CS8: info->params.data_bits = 8; break;
1430 default: info->params.data_bits = 7; break;
1431 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (cflag & CSTOPB)
1434 info->params.stop_bits = 2;
1435 else
1436 info->params.stop_bits = 1;
1437
1438 info->params.parity = ASYNC_PARITY_NONE;
1439 if (cflag & PARENB) {
1440 if (cflag & PARODD)
1441 info->params.parity = ASYNC_PARITY_ODD;
1442 else
1443 info->params.parity = ASYNC_PARITY_EVEN;
1444#ifdef CMSPAR
1445 if (cflag & CMSPAR)
1446 info->params.parity = ASYNC_PARITY_SPACE;
1447#endif
1448 }
1449
1450 /* calculate number of jiffies to transmit a full
1451 * FIFO (32 bytes) at specified data rate
1452 */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001453 bits_per_char = info->params.data_bits +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 info->params.stop_bits + 1;
1455
1456 /* if port data rate is set to 460800 or less then
1457 * allow tty settings to override, otherwise keep the
1458 * current data rate.
1459 */
1460 if (info->params.data_rate <= 460800) {
Alan Coxeeb46132009-01-02 13:48:47 +00001461 info->params.data_rate = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if ( info->params.data_rate ) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001465 info->timeout = (32*HZ*bits_per_char) /
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 info->params.data_rate;
1467 }
1468 info->timeout += HZ/50; /* Add .02 seconds of slop */
1469
1470 if (cflag & CRTSCTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001471 info->port.flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 else
Alan Coxeeb46132009-01-02 13:48:47 +00001473 info->port.flags &= ~ASYNC_CTS_FLOW;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (cflag & CLOCAL)
Alan Coxeeb46132009-01-02 13:48:47 +00001476 info->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 else
Alan Coxeeb46132009-01-02 13:48:47 +00001478 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 /* process tty input control flags */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 info->read_status_mask = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001483 if (I_INPCK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 info->read_status_mask |= BIT7 | BIT6;
Alan Coxeeb46132009-01-02 13:48:47 +00001485 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 info->ignore_status_mask |= BIT7 | BIT6;
1487
Alan Coxeeb46132009-01-02 13:48:47 +00001488 mgslpc_program_hw(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
1491/* Add a character to the transmit buffer
1492 */
Alan Coxd7e752e2008-04-30 00:54:04 -07001493static int mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
1495 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1496 unsigned long flags;
1497
1498 if (debug_level >= DEBUG_LEVEL_INFO) {
1499 printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
1500 __FILE__,__LINE__,ch,info->device_name);
1501 }
1502
1503 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
Alan Coxd7e752e2008-04-30 00:54:04 -07001504 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001506 if (!info->tx_buf)
Alan Coxd7e752e2008-04-30 00:54:04 -07001507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
1512 if (info->tx_count < TXBUFSIZE - 1) {
1513 info->tx_buf[info->tx_put++] = ch;
1514 info->tx_put &= TXBUFSIZE-1;
1515 info->tx_count++;
1516 }
1517 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 spin_unlock_irqrestore(&info->lock,flags);
Alan Coxd7e752e2008-04-30 00:54:04 -07001520 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
1523/* Enable transmitter so remaining characters in the
1524 * transmit buffer are sent.
1525 */
1526static void mgslpc_flush_chars(struct tty_struct *tty)
1527{
1528 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1529 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 if (debug_level >= DEBUG_LEVEL_INFO)
1532 printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1533 __FILE__,__LINE__,info->device_name,info->tx_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
1536 return;
1537
1538 if (info->tx_count <= 0 || tty->stopped ||
1539 tty->hw_stopped || !info->tx_buf)
1540 return;
1541
1542 if (debug_level >= DEBUG_LEVEL_INFO)
1543 printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1544 __FILE__,__LINE__,info->device_name);
1545
1546 spin_lock_irqsave(&info->lock,flags);
1547 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001548 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 spin_unlock_irqrestore(&info->lock,flags);
1550}
1551
1552/* Send a block of data
Jeff Garzikd12341f2007-10-19 15:45:35 -04001553 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001555 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 * tty pointer to tty information structure
1557 * buf pointer to buffer containing send data
1558 * count size of send data in bytes
Jeff Garzikd12341f2007-10-19 15:45:35 -04001559 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 * Returns: number of characters written
1561 */
1562static int mgslpc_write(struct tty_struct * tty,
1563 const unsigned char *buf, int count)
1564{
1565 int c, ret = 0;
1566 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1567 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (debug_level >= DEBUG_LEVEL_INFO)
1570 printk( "%s(%d):mgslpc_write(%s) count=%d\n",
1571 __FILE__,__LINE__,info->device_name,count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001574 !info->tx_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 goto cleanup;
1576
1577 if (info->params.mode == MGSL_MODE_HDLC) {
1578 if (count > TXBUFSIZE) {
1579 ret = -EIO;
1580 goto cleanup;
1581 }
1582 if (info->tx_active)
1583 goto cleanup;
1584 else if (info->tx_count)
1585 goto start;
1586 }
1587
1588 for (;;) {
1589 c = min(count,
1590 min(TXBUFSIZE - info->tx_count - 1,
1591 TXBUFSIZE - info->tx_put));
1592 if (c <= 0)
1593 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 memcpy(info->tx_buf + info->tx_put, buf, c);
1596
1597 spin_lock_irqsave(&info->lock,flags);
1598 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1599 info->tx_count += c;
1600 spin_unlock_irqrestore(&info->lock,flags);
1601
1602 buf += c;
1603 count -= c;
1604 ret += c;
1605 }
1606start:
1607 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
1608 spin_lock_irqsave(&info->lock,flags);
1609 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001610 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 spin_unlock_irqrestore(&info->lock,flags);
1612 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001613cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (debug_level >= DEBUG_LEVEL_INFO)
1615 printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
1616 __FILE__,__LINE__,info->device_name,ret);
1617 return ret;
1618}
1619
1620/* Return the count of free bytes in transmit buffer
1621 */
1622static int mgslpc_write_room(struct tty_struct *tty)
1623{
1624 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1625 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
1628 return 0;
1629
1630 if (info->params.mode == MGSL_MODE_HDLC) {
1631 /* HDLC (frame oriented) mode */
1632 if (info->tx_active)
1633 return 0;
1634 else
1635 return HDLC_MAX_FRAME_SIZE;
1636 } else {
1637 ret = TXBUFSIZE - info->tx_count - 1;
1638 if (ret < 0)
1639 ret = 0;
1640 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (debug_level >= DEBUG_LEVEL_INFO)
1643 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
1644 __FILE__,__LINE__, info->device_name, ret);
1645 return ret;
1646}
1647
1648/* Return the count of bytes in transmit buffer
1649 */
1650static int mgslpc_chars_in_buffer(struct tty_struct *tty)
1651{
1652 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1653 int rc;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (debug_level >= DEBUG_LEVEL_INFO)
1656 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
1657 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
1660 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (info->params.mode == MGSL_MODE_HDLC)
1663 rc = info->tx_active ? info->max_frame_size : 0;
1664 else
1665 rc = info->tx_count;
1666
1667 if (debug_level >= DEBUG_LEVEL_INFO)
1668 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
1669 __FILE__,__LINE__, info->device_name, rc);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 return rc;
1672}
1673
1674/* Discard all data in the send buffer
1675 */
1676static void mgslpc_flush_buffer(struct tty_struct *tty)
1677{
1678 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1679 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 if (debug_level >= DEBUG_LEVEL_INFO)
1682 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
1683 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
1686 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001687
1688 spin_lock_irqsave(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001690 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 spin_unlock_irqrestore(&info->lock,flags);
1692
1693 wake_up_interruptible(&tty->write_wait);
1694 tty_wakeup(tty);
1695}
1696
1697/* Send a high-priority XON/XOFF character
1698 */
1699static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
1700{
1701 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1702 unsigned long flags;
1703
1704 if (debug_level >= DEBUG_LEVEL_INFO)
1705 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
1706 __FILE__,__LINE__, info->device_name, ch );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
1709 return;
1710
1711 info->x_char = ch;
1712 if (ch) {
1713 spin_lock_irqsave(&info->lock,flags);
1714 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001715 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 spin_unlock_irqrestore(&info->lock,flags);
1717 }
1718}
1719
1720/* Signal remote device to throttle send data (our receive data)
1721 */
1722static void mgslpc_throttle(struct tty_struct * tty)
1723{
1724 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1725 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 if (debug_level >= DEBUG_LEVEL_INFO)
1728 printk("%s(%d):mgslpc_throttle(%s) entry\n",
1729 __FILE__,__LINE__, info->device_name );
1730
1731 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
1732 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (I_IXOFF(tty))
1735 mgslpc_send_xchar(tty, STOP_CHAR(tty));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (tty->termios->c_cflag & CRTSCTS) {
1738 spin_lock_irqsave(&info->lock,flags);
1739 info->serial_signals &= ~SerialSignal_RTS;
1740 set_signals(info);
1741 spin_unlock_irqrestore(&info->lock,flags);
1742 }
1743}
1744
1745/* Signal remote device to stop throttling send data (our receive data)
1746 */
1747static void mgslpc_unthrottle(struct tty_struct * tty)
1748{
1749 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1750 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (debug_level >= DEBUG_LEVEL_INFO)
1753 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
1754 __FILE__,__LINE__, info->device_name );
1755
1756 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
1757 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (I_IXOFF(tty)) {
1760 if (info->x_char)
1761 info->x_char = 0;
1762 else
1763 mgslpc_send_xchar(tty, START_CHAR(tty));
1764 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (tty->termios->c_cflag & CRTSCTS) {
1767 spin_lock_irqsave(&info->lock,flags);
1768 info->serial_signals |= SerialSignal_RTS;
1769 set_signals(info);
1770 spin_unlock_irqrestore(&info->lock,flags);
1771 }
1772}
1773
1774/* get the current serial statistics
1775 */
1776static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
1777{
1778 int err;
1779 if (debug_level >= DEBUG_LEVEL_INFO)
1780 printk("get_params(%s)\n", info->device_name);
Paul Fulghuma7482a22005-09-10 00:26:07 -07001781 if (!user_icount) {
1782 memset(&info->icount, 0, sizeof(info->icount));
1783 } else {
1784 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
1785 if (err)
1786 return -EFAULT;
1787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return 0;
1789}
1790
1791/* get the current serial parameters
1792 */
1793static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
1794{
1795 int err;
1796 if (debug_level >= DEBUG_LEVEL_INFO)
1797 printk("get_params(%s)\n", info->device_name);
1798 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
1799 if (err)
1800 return -EFAULT;
1801 return 0;
1802}
1803
1804/* set the serial parameters
Jeff Garzikd12341f2007-10-19 15:45:35 -04001805 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001807 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 * info pointer to device instance data
1809 * new_params user buffer containing new serial params
1810 *
1811 * Returns: 0 if success, otherwise error code
1812 */
Alan Coxeeb46132009-01-02 13:48:47 +00001813static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
1815 unsigned long flags;
1816 MGSL_PARAMS tmp_params;
1817 int err;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 if (debug_level >= DEBUG_LEVEL_INFO)
1820 printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
1821 info->device_name );
1822 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
1823 if (err) {
1824 if ( debug_level >= DEBUG_LEVEL_INFO )
1825 printk( "%s(%d):set_params(%s) user buffer copy failed\n",
1826 __FILE__,__LINE__,info->device_name);
1827 return -EFAULT;
1828 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 spin_lock_irqsave(&info->lock,flags);
1831 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
1832 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001833
Alan Coxeeb46132009-01-02 13:48:47 +00001834 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return 0;
1837}
1838
1839static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
1840{
1841 int err;
1842 if (debug_level >= DEBUG_LEVEL_INFO)
1843 printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
1844 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
1845 if (err)
1846 return -EFAULT;
1847 return 0;
1848}
1849
1850static int set_txidle(MGSLPC_INFO * info, int idle_mode)
1851{
1852 unsigned long flags;
1853 if (debug_level >= DEBUG_LEVEL_INFO)
1854 printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
1855 spin_lock_irqsave(&info->lock,flags);
1856 info->idle_mode = idle_mode;
1857 tx_set_idle(info);
1858 spin_unlock_irqrestore(&info->lock,flags);
1859 return 0;
1860}
1861
1862static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
1863{
1864 int err;
1865 if (debug_level >= DEBUG_LEVEL_INFO)
1866 printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
1867 COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
1868 if (err)
1869 return -EFAULT;
1870 return 0;
1871}
1872
1873static int set_interface(MGSLPC_INFO * info, int if_mode)
1874{
1875 unsigned long flags;
1876 unsigned char val;
1877 if (debug_level >= DEBUG_LEVEL_INFO)
1878 printk("set_interface(%s,%d)\n", info->device_name, if_mode);
1879 spin_lock_irqsave(&info->lock,flags);
1880 info->if_mode = if_mode;
1881
1882 val = read_reg(info, PVR) & 0x0f;
1883 switch (info->if_mode)
1884 {
1885 case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
1886 case MGSL_INTERFACE_V35: val |= PVR_V35; break;
1887 case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
1888 }
1889 write_reg(info, PVR, val);
1890
1891 spin_unlock_irqrestore(&info->lock,flags);
1892 return 0;
1893}
1894
Alan Coxeeb46132009-01-02 13:48:47 +00001895static int set_txenable(MGSLPC_INFO * info, int enable, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
1897 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (debug_level >= DEBUG_LEVEL_INFO)
1900 printk("set_txenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 spin_lock_irqsave(&info->lock,flags);
1903 if (enable) {
1904 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001905 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 } else {
1907 if (info->tx_enabled)
1908 tx_stop(info);
1909 }
1910 spin_unlock_irqrestore(&info->lock,flags);
1911 return 0;
1912}
1913
1914static int tx_abort(MGSLPC_INFO * info)
1915{
1916 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (debug_level >= DEBUG_LEVEL_INFO)
1919 printk("tx_abort(%s)\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 spin_lock_irqsave(&info->lock,flags);
1922 if (info->tx_active && info->tx_count &&
1923 info->params.mode == MGSL_MODE_HDLC) {
1924 /* clear data count so FIFO is not filled on next IRQ.
1925 * This results in underrun and abort transmission.
1926 */
1927 info->tx_count = info->tx_put = info->tx_get = 0;
Joe Perches0fab6de2008-04-28 02:14:02 -07001928 info->tx_aborting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930 spin_unlock_irqrestore(&info->lock,flags);
1931 return 0;
1932}
1933
1934static int set_rxenable(MGSLPC_INFO * info, int enable)
1935{
1936 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (debug_level >= DEBUG_LEVEL_INFO)
1939 printk("set_rxenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 spin_lock_irqsave(&info->lock,flags);
1942 if (enable) {
1943 if (!info->rx_enabled)
1944 rx_start(info);
1945 } else {
1946 if (info->rx_enabled)
1947 rx_stop(info);
1948 }
1949 spin_unlock_irqrestore(&info->lock,flags);
1950 return 0;
1951}
1952
1953/* wait for specified event to occur
Jeff Garzikd12341f2007-10-19 15:45:35 -04001954 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 * Arguments: info pointer to device instance data
1956 * mask pointer to bitmask of events to wait for
1957 * Return Value: 0 if successful and bit mask updated with
1958 * of events triggerred,
1959 * otherwise error code
1960 */
1961static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
1962{
1963 unsigned long flags;
1964 int s;
1965 int rc=0;
1966 struct mgsl_icount cprev, cnow;
1967 int events;
1968 int mask;
1969 struct _input_signal_events oldsigs, newsigs;
1970 DECLARE_WAITQUEUE(wait, current);
1971
1972 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
1973 if (rc)
1974 return -EFAULT;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (debug_level >= DEBUG_LEVEL_INFO)
1977 printk("wait_events(%s,%d)\n", info->device_name, mask);
1978
1979 spin_lock_irqsave(&info->lock,flags);
1980
1981 /* return immediately if state matches requested events */
1982 get_signals(info);
1983 s = info->serial_signals;
1984 events = mask &
1985 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
1986 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
1987 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
1988 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
1989 if (events) {
1990 spin_unlock_irqrestore(&info->lock,flags);
1991 goto exit;
1992 }
1993
1994 /* save current irq counts */
1995 cprev = info->icount;
1996 oldsigs = info->input_signal_events;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if ((info->params.mode == MGSL_MODE_HDLC) &&
1999 (mask & MgslEvent_ExitHuntMode))
2000 irq_enable(info, CHA, IRQ_EXITHUNT);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 set_current_state(TASK_INTERRUPTIBLE);
2003 add_wait_queue(&info->event_wait_q, &wait);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002006
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 for(;;) {
2009 schedule();
2010 if (signal_pending(current)) {
2011 rc = -ERESTARTSYS;
2012 break;
2013 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 /* get current irq counts */
2016 spin_lock_irqsave(&info->lock,flags);
2017 cnow = info->icount;
2018 newsigs = info->input_signal_events;
2019 set_current_state(TASK_INTERRUPTIBLE);
2020 spin_unlock_irqrestore(&info->lock,flags);
2021
2022 /* if no change, wait aborted for some reason */
2023 if (newsigs.dsr_up == oldsigs.dsr_up &&
2024 newsigs.dsr_down == oldsigs.dsr_down &&
2025 newsigs.dcd_up == oldsigs.dcd_up &&
2026 newsigs.dcd_down == oldsigs.dcd_down &&
2027 newsigs.cts_up == oldsigs.cts_up &&
2028 newsigs.cts_down == oldsigs.cts_down &&
2029 newsigs.ri_up == oldsigs.ri_up &&
2030 newsigs.ri_down == oldsigs.ri_down &&
2031 cnow.exithunt == cprev.exithunt &&
2032 cnow.rxidle == cprev.rxidle) {
2033 rc = -EIO;
2034 break;
2035 }
2036
2037 events = mask &
2038 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2039 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2040 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2041 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2042 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2043 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2044 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2045 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2046 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2047 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2048 if (events)
2049 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 cprev = cnow;
2052 oldsigs = newsigs;
2053 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 remove_wait_queue(&info->event_wait_q, &wait);
2056 set_current_state(TASK_RUNNING);
2057
2058 if (mask & MgslEvent_ExitHuntMode) {
2059 spin_lock_irqsave(&info->lock,flags);
2060 if (!waitqueue_active(&info->event_wait_q))
2061 irq_disable(info, CHA, IRQ_EXITHUNT);
2062 spin_unlock_irqrestore(&info->lock,flags);
2063 }
2064exit:
2065 if (rc == 0)
2066 PUT_USER(rc, events, mask_ptr);
2067 return rc;
2068}
2069
2070static int modem_input_wait(MGSLPC_INFO *info,int arg)
2071{
2072 unsigned long flags;
2073 int rc;
2074 struct mgsl_icount cprev, cnow;
2075 DECLARE_WAITQUEUE(wait, current);
2076
2077 /* save current irq counts */
2078 spin_lock_irqsave(&info->lock,flags);
2079 cprev = info->icount;
2080 add_wait_queue(&info->status_event_wait_q, &wait);
2081 set_current_state(TASK_INTERRUPTIBLE);
2082 spin_unlock_irqrestore(&info->lock,flags);
2083
2084 for(;;) {
2085 schedule();
2086 if (signal_pending(current)) {
2087 rc = -ERESTARTSYS;
2088 break;
2089 }
2090
2091 /* get new irq counts */
2092 spin_lock_irqsave(&info->lock,flags);
2093 cnow = info->icount;
2094 set_current_state(TASK_INTERRUPTIBLE);
2095 spin_unlock_irqrestore(&info->lock,flags);
2096
2097 /* if no change, wait aborted for some reason */
2098 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2099 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2100 rc = -EIO;
2101 break;
2102 }
2103
2104 /* check for change in caller specified modem input */
2105 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2106 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2107 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2108 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2109 rc = 0;
2110 break;
2111 }
2112
2113 cprev = cnow;
2114 }
2115 remove_wait_queue(&info->status_event_wait_q, &wait);
2116 set_current_state(TASK_RUNNING);
2117 return rc;
2118}
2119
2120/* return the state of the serial control and status signals
2121 */
Alan Cox60b33c12011-02-14 16:26:14 +00002122static int tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2125 unsigned int result;
2126 unsigned long flags;
2127
2128 spin_lock_irqsave(&info->lock,flags);
2129 get_signals(info);
2130 spin_unlock_irqrestore(&info->lock,flags);
2131
2132 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2133 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2134 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2135 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2136 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2137 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2138
2139 if (debug_level >= DEBUG_LEVEL_INFO)
2140 printk("%s(%d):%s tiocmget() value=%08X\n",
2141 __FILE__,__LINE__, info->device_name, result );
2142 return result;
2143}
2144
2145/* set modem control signals (DTR/RTS)
2146 */
Alan Cox20b9d172011-02-14 16:26:50 +00002147static int tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 unsigned int set, unsigned int clear)
2149{
2150 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2151 unsigned long flags;
2152
2153 if (debug_level >= DEBUG_LEVEL_INFO)
2154 printk("%s(%d):%s tiocmset(%x,%x)\n",
2155 __FILE__,__LINE__,info->device_name, set, clear);
2156
2157 if (set & TIOCM_RTS)
2158 info->serial_signals |= SerialSignal_RTS;
2159 if (set & TIOCM_DTR)
2160 info->serial_signals |= SerialSignal_DTR;
2161 if (clear & TIOCM_RTS)
2162 info->serial_signals &= ~SerialSignal_RTS;
2163 if (clear & TIOCM_DTR)
2164 info->serial_signals &= ~SerialSignal_DTR;
2165
2166 spin_lock_irqsave(&info->lock,flags);
2167 set_signals(info);
2168 spin_unlock_irqrestore(&info->lock,flags);
2169
2170 return 0;
2171}
2172
2173/* Set or clear transmit break condition
2174 *
2175 * Arguments: tty pointer to tty instance data
2176 * break_state -1=set break condition, 0=clear
2177 */
Alan Cox9e989662008-07-22 11:18:03 +01002178static int mgslpc_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2181 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if (debug_level >= DEBUG_LEVEL_INFO)
2184 printk("%s(%d):mgslpc_break(%s,%d)\n",
2185 __FILE__,__LINE__, info->device_name, break_state);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
Alan Cox9e989662008-07-22 11:18:03 +01002188 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 spin_lock_irqsave(&info->lock,flags);
2191 if (break_state == -1)
2192 set_reg_bits(info, CHA+DAFO, BIT6);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002193 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 clear_reg_bits(info, CHA+DAFO, BIT6);
2195 spin_unlock_irqrestore(&info->lock,flags);
Alan Cox9e989662008-07-22 11:18:03 +01002196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197}
2198
Alan Cox05871022010-09-16 18:21:52 +01002199static int mgslpc_get_icount(struct tty_struct *tty,
2200 struct serial_icounter_struct *icount)
2201{
2202 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2203 struct mgsl_icount cnow; /* kernel counter temps */
2204 unsigned long flags;
2205
2206 spin_lock_irqsave(&info->lock,flags);
2207 cnow = info->icount;
2208 spin_unlock_irqrestore(&info->lock,flags);
2209
2210 icount->cts = cnow.cts;
2211 icount->dsr = cnow.dsr;
2212 icount->rng = cnow.rng;
2213 icount->dcd = cnow.dcd;
2214 icount->rx = cnow.rx;
2215 icount->tx = cnow.tx;
2216 icount->frame = cnow.frame;
2217 icount->overrun = cnow.overrun;
2218 icount->parity = cnow.parity;
2219 icount->brk = cnow.brk;
2220 icount->buf_overrun = cnow.buf_overrun;
2221
2222 return 0;
2223}
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225/* Service an IOCTL request
Jeff Garzikd12341f2007-10-19 15:45:35 -04002226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002228 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 * tty pointer to tty instance data
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 * cmd IOCTL command code
2231 * arg command argument/context
Jeff Garzikd12341f2007-10-19 15:45:35 -04002232 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 * Return Value: 0 if success, otherwise error code
2234 */
Axel Lin751b3842011-03-01 13:12:47 +08002235static int mgslpc_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 unsigned int cmd, unsigned long arg)
2237{
2238 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002239 void __user *argp = (void __user *)arg;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 if (debug_level >= DEBUG_LEVEL_INFO)
2242 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
2243 info->device_name, cmd );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
2246 return -ENODEV;
2247
2248 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
Alan Cox05871022010-09-16 18:21:52 +01002249 (cmd != TIOCMIWAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (tty->flags & (1 << TTY_IO_ERROR))
2251 return -EIO;
2252 }
2253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 switch (cmd) {
2255 case MGSL_IOCGPARAMS:
2256 return get_params(info, argp);
2257 case MGSL_IOCSPARAMS:
Alan Coxeeb46132009-01-02 13:48:47 +00002258 return set_params(info, argp, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 case MGSL_IOCGTXIDLE:
2260 return get_txidle(info, argp);
2261 case MGSL_IOCSTXIDLE:
2262 return set_txidle(info, (int)arg);
2263 case MGSL_IOCGIF:
2264 return get_interface(info, argp);
2265 case MGSL_IOCSIF:
2266 return set_interface(info,(int)arg);
2267 case MGSL_IOCTXENABLE:
Alan Coxeeb46132009-01-02 13:48:47 +00002268 return set_txenable(info,(int)arg, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 case MGSL_IOCRXENABLE:
2270 return set_rxenable(info,(int)arg);
2271 case MGSL_IOCTXABORT:
2272 return tx_abort(info);
2273 case MGSL_IOCGSTATS:
2274 return get_stats(info, argp);
2275 case MGSL_IOCWAITEVENT:
2276 return wait_events(info, argp);
2277 case TIOCMIWAIT:
2278 return modem_input_wait(info,(int)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 default:
2280 return -ENOIOCTLCMD;
2281 }
2282 return 0;
2283}
2284
2285/* Set new termios settings
Jeff Garzikd12341f2007-10-19 15:45:35 -04002286 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002288 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 * tty pointer to tty structure
2290 * termios pointer to buffer to hold returned old termios
2291 */
Alan Cox606d0992006-12-08 02:38:45 -08002292static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
2294 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2295 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (debug_level >= DEBUG_LEVEL_INFO)
2298 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__,__LINE__,
2299 tty->driver->name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 /* just return if nothing has changed */
2302 if ((tty->termios->c_cflag == old_termios->c_cflag)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002303 && (RELEVANT_IFLAG(tty->termios->c_iflag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 == RELEVANT_IFLAG(old_termios->c_iflag)))
2305 return;
2306
Alan Coxeeb46132009-01-02 13:48:47 +00002307 mgslpc_change_params(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309 /* Handle transition to B0 status */
2310 if (old_termios->c_cflag & CBAUD &&
2311 !(tty->termios->c_cflag & CBAUD)) {
2312 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2313 spin_lock_irqsave(&info->lock,flags);
2314 set_signals(info);
2315 spin_unlock_irqrestore(&info->lock,flags);
2316 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 /* Handle transition away from B0 status */
2319 if (!(old_termios->c_cflag & CBAUD) &&
2320 tty->termios->c_cflag & CBAUD) {
2321 info->serial_signals |= SerialSignal_DTR;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002322 if (!(tty->termios->c_cflag & CRTSCTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 !test_bit(TTY_THROTTLED, &tty->flags)) {
2324 info->serial_signals |= SerialSignal_RTS;
2325 }
2326 spin_lock_irqsave(&info->lock,flags);
2327 set_signals(info);
2328 spin_unlock_irqrestore(&info->lock,flags);
2329 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 /* Handle turning off CRTSCTS */
2332 if (old_termios->c_cflag & CRTSCTS &&
2333 !(tty->termios->c_cflag & CRTSCTS)) {
2334 tty->hw_stopped = 0;
2335 tx_release(tty);
2336 }
2337}
2338
2339static void mgslpc_close(struct tty_struct *tty, struct file * filp)
2340{
2341 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002342 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
2345 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (debug_level >= DEBUG_LEVEL_INFO)
2348 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002349 __FILE__,__LINE__, info->device_name, port->count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002350
Alan Coxeeb46132009-01-02 13:48:47 +00002351 WARN_ON(!port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Alan Coxeeb46132009-01-02 13:48:47 +00002353 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 goto cleanup;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002355
Alan Coxeeb46132009-01-02 13:48:47 +00002356 if (port->flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 mgslpc_wait_until_sent(tty, info->timeout);
2358
Alan Cox978e5952008-04-30 00:53:59 -07002359 mgslpc_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Alan Cox978e5952008-04-30 00:53:59 -07002361 tty_ldisc_flush(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002362 shutdown(info, tty);
2363
2364 tty_port_close_end(port, tty);
2365 tty_port_tty_set(port, NULL);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002366cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (debug_level >= DEBUG_LEVEL_INFO)
2368 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__,__LINE__,
Alan Coxeeb46132009-01-02 13:48:47 +00002369 tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370}
2371
2372/* Wait until the transmitter is empty.
2373 */
2374static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
2375{
2376 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2377 unsigned long orig_jiffies, char_time;
2378
2379 if (!info )
2380 return;
2381
2382 if (debug_level >= DEBUG_LEVEL_INFO)
2383 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
2384 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
2387 return;
2388
Alan Coxeeb46132009-01-02 13:48:47 +00002389 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 goto exit;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 orig_jiffies = jiffies;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 /* Set check interval to 1/5 of estimated time to
2395 * send a character, and make it at least 1. The check
2396 * interval should also be less than the timeout.
2397 * Note: use tight timings here to satisfy the NIST-PCTS.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002398 */
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 if ( info->params.data_rate ) {
2401 char_time = info->timeout/(32 * 5);
2402 if (!char_time)
2403 char_time++;
2404 } else
2405 char_time = 1;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 if (timeout)
2408 char_time = min_t(unsigned long, char_time, timeout);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 if (info->params.mode == MGSL_MODE_HDLC) {
2411 while (info->tx_active) {
2412 msleep_interruptible(jiffies_to_msecs(char_time));
2413 if (signal_pending(current))
2414 break;
2415 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2416 break;
2417 }
2418 } else {
2419 while ((info->tx_count || info->tx_active) &&
2420 info->tx_enabled) {
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 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429exit:
2430 if (debug_level >= DEBUG_LEVEL_INFO)
2431 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
2432 __FILE__,__LINE__, info->device_name );
2433}
2434
2435/* Called by tty_hangup() when a hangup is signaled.
2436 * This is the same as closing all open files for the port.
2437 */
2438static void mgslpc_hangup(struct tty_struct *tty)
2439{
2440 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (debug_level >= DEBUG_LEVEL_INFO)
2443 printk("%s(%d):mgslpc_hangup(%s)\n",
2444 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
2447 return;
2448
2449 mgslpc_flush_buffer(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002450 shutdown(info, tty);
2451 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
2453
Alan Coxeeb46132009-01-02 13:48:47 +00002454static int carrier_raised(struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
Alan Coxeeb46132009-01-02 13:48:47 +00002456 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2457 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002458
Alan Coxeeb46132009-01-02 13:48:47 +00002459 spin_lock_irqsave(&info->lock,flags);
2460 get_signals(info);
2461 spin_unlock_irqrestore(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Alan Coxeeb46132009-01-02 13:48:47 +00002463 if (info->serial_signals & SerialSignal_DCD)
2464 return 1;
2465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
Alan Coxfcc8ac12009-06-11 12:24:17 +01002468static void dtr_rts(struct tty_port *port, int onoff)
Alan Coxeeb46132009-01-02 13:48:47 +00002469{
2470 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2471 unsigned long flags;
2472
2473 spin_lock_irqsave(&info->lock,flags);
Alan Coxfcc8ac12009-06-11 12:24:17 +01002474 if (onoff)
2475 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
2476 else
2477 info->serial_signals &= ~SerialSignal_RTS + SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00002478 set_signals(info);
2479 spin_unlock_irqrestore(&info->lock,flags);
2480}
2481
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2484{
2485 MGSLPC_INFO *info;
Alan Coxeeb46132009-01-02 13:48:47 +00002486 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 int retval, line;
2488 unsigned long flags;
2489
Jeff Garzikd12341f2007-10-19 15:45:35 -04002490 /* verify range of specified line number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 line = tty->index;
Jiri Slaby410235f2012-03-05 14:52:01 +01002492 if (line >= mgslpc_device_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
2494 __FILE__,__LINE__,line);
2495 return -ENODEV;
2496 }
2497
2498 /* find the info structure for the specified line */
2499 info = mgslpc_device_list;
2500 while(info && info->line != line)
2501 info = info->next_device;
2502 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
2503 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002504
Alan Coxeeb46132009-01-02 13:48:47 +00002505 port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 tty->driver_data = info;
Alan Coxeeb46132009-01-02 13:48:47 +00002507 tty_port_tty_set(port, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 if (debug_level >= DEBUG_LEVEL_INFO)
2510 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002511 __FILE__,__LINE__,tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 /* If port is closing, signal caller to try again */
Alan Coxeeb46132009-01-02 13:48:47 +00002514 if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING){
2515 if (port->flags & ASYNC_CLOSING)
2516 interruptible_sleep_on(&port->close_wait);
2517 retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 -EAGAIN : -ERESTARTSYS);
2519 goto cleanup;
2520 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002521
Alan Coxeeb46132009-01-02 13:48:47 +00002522 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 spin_lock_irqsave(&info->netlock, flags);
2525 if (info->netcount) {
2526 retval = -EBUSY;
2527 spin_unlock_irqrestore(&info->netlock, flags);
2528 goto cleanup;
2529 }
Alan Coxeeb46132009-01-02 13:48:47 +00002530 spin_lock(&port->lock);
2531 port->count++;
2532 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 spin_unlock_irqrestore(&info->netlock, flags);
2534
Alan Coxeeb46132009-01-02 13:48:47 +00002535 if (port->count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 /* 1st open on this device, init hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00002537 retval = startup(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 if (retval < 0)
2539 goto cleanup;
2540 }
2541
Alan Coxeeb46132009-01-02 13:48:47 +00002542 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (retval) {
2544 if (debug_level >= DEBUG_LEVEL_INFO)
2545 printk("%s(%d):block_til_ready(%s) returned %d\n",
2546 __FILE__,__LINE__, info->device_name, retval);
2547 goto cleanup;
2548 }
2549
2550 if (debug_level >= DEBUG_LEVEL_INFO)
2551 printk("%s(%d):mgslpc_open(%s) success\n",
2552 __FILE__,__LINE__, info->device_name);
2553 retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002554
2555cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 return retval;
2557}
2558
2559/*
2560 * /proc fs routines....
2561 */
2562
Alexey Dobriyan87687142009-03-31 15:19:17 -07002563static inline void line_info(struct seq_file *m, MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
2565 char stat_buf[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 unsigned long flags;
2567
Alexey Dobriyan87687142009-03-31 15:19:17 -07002568 seq_printf(m, "%s:io:%04X irq:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 info->device_name, info->io_base, info->irq_level);
2570
2571 /* output current serial signal states */
2572 spin_lock_irqsave(&info->lock,flags);
2573 get_signals(info);
2574 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 stat_buf[0] = 0;
2577 stat_buf[1] = 0;
2578 if (info->serial_signals & SerialSignal_RTS)
2579 strcat(stat_buf, "|RTS");
2580 if (info->serial_signals & SerialSignal_CTS)
2581 strcat(stat_buf, "|CTS");
2582 if (info->serial_signals & SerialSignal_DTR)
2583 strcat(stat_buf, "|DTR");
2584 if (info->serial_signals & SerialSignal_DSR)
2585 strcat(stat_buf, "|DSR");
2586 if (info->serial_signals & SerialSignal_DCD)
2587 strcat(stat_buf, "|CD");
2588 if (info->serial_signals & SerialSignal_RI)
2589 strcat(stat_buf, "|RI");
2590
2591 if (info->params.mode == MGSL_MODE_HDLC) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002592 seq_printf(m, " HDLC txok:%d rxok:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 info->icount.txok, info->icount.rxok);
2594 if (info->icount.txunder)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002595 seq_printf(m, " txunder:%d", info->icount.txunder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 if (info->icount.txabort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002597 seq_printf(m, " txabort:%d", info->icount.txabort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 if (info->icount.rxshort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002599 seq_printf(m, " rxshort:%d", info->icount.rxshort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 if (info->icount.rxlong)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002601 seq_printf(m, " rxlong:%d", info->icount.rxlong);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 if (info->icount.rxover)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002603 seq_printf(m, " rxover:%d", info->icount.rxover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (info->icount.rxcrc)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002605 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 } else {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002607 seq_printf(m, " ASYNC tx:%d rx:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 info->icount.tx, info->icount.rx);
2609 if (info->icount.frame)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002610 seq_printf(m, " fe:%d", info->icount.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (info->icount.parity)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002612 seq_printf(m, " pe:%d", info->icount.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (info->icount.brk)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002614 seq_printf(m, " brk:%d", info->icount.brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (info->icount.overrun)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002616 seq_printf(m, " oe:%d", info->icount.overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 /* Append serial signal status to end */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002620 seq_printf(m, " %s\n", stat_buf+1);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002621
Alexey Dobriyan87687142009-03-31 15:19:17 -07002622 seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 info->tx_active,info->bh_requested,info->bh_running,
2624 info->pending_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626
2627/* Called to print information about devices
2628 */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002629static int mgslpc_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 MGSLPC_INFO *info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002632
Alexey Dobriyan87687142009-03-31 15:19:17 -07002633 seq_printf(m, "synclink driver:%s\n", driver_version);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 info = mgslpc_device_list;
2636 while( info ) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002637 line_info(m, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 info = info->next_device;
2639 }
Alexey Dobriyan87687142009-03-31 15:19:17 -07002640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641}
2642
Alexey Dobriyan87687142009-03-31 15:19:17 -07002643static int mgslpc_proc_open(struct inode *inode, struct file *file)
2644{
2645 return single_open(file, mgslpc_proc_show, NULL);
2646}
2647
2648static const struct file_operations mgslpc_proc_fops = {
2649 .owner = THIS_MODULE,
2650 .open = mgslpc_proc_open,
2651 .read = seq_read,
2652 .llseek = seq_lseek,
2653 .release = single_release,
2654};
2655
Peter Hagervallcdaad342006-06-23 02:06:04 -07002656static int rx_alloc_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
2658 /* each buffer has header and data */
2659 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;
2660
2661 /* calculate total allocation size for 8 buffers */
2662 info->rx_buf_total_size = info->rx_buf_size * 8;
2663
2664 /* limit total allocated memory */
2665 if (info->rx_buf_total_size > 0x10000)
2666 info->rx_buf_total_size = 0x10000;
2667
2668 /* calculate number of buffers */
2669 info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;
2670
2671 info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
2672 if (info->rx_buf == NULL)
2673 return -ENOMEM;
2674
2675 rx_reset_buffers(info);
2676 return 0;
2677}
2678
Peter Hagervallcdaad342006-06-23 02:06:04 -07002679static void rx_free_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
Jesper Juhl735d5662005-11-07 01:01:29 -08002681 kfree(info->rx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 info->rx_buf = NULL;
2683}
2684
Peter Hagervallcdaad342006-06-23 02:06:04 -07002685static int claim_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
2687 if (rx_alloc_buffers(info) < 0 ) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002688 printk( "Can't allocate rx buffer %s\n", info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 release_resources(info);
2690 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 return 0;
2693}
2694
Peter Hagervallcdaad342006-06-23 02:06:04 -07002695static void release_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
2697 if (debug_level >= DEBUG_LEVEL_INFO)
2698 printk("release_resources(%s)\n", info->device_name);
2699 rx_free_buffers(info);
2700}
2701
2702/* Add the specified device instance data structure to the
2703 * global linked list of devices and increment the device count.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002704 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 * Arguments: info pointer to device instance data
2706 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07002707static void mgslpc_add_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708{
2709 info->next_device = NULL;
2710 info->line = mgslpc_device_count;
2711 sprintf(info->device_name,"ttySLP%d",info->line);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 if (info->line < MAX_DEVICE_COUNT) {
2714 if (maxframe[info->line])
2715 info->max_frame_size = maxframe[info->line];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
2717
2718 mgslpc_device_count++;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (!mgslpc_device_list)
2721 mgslpc_device_list = info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002722 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 MGSLPC_INFO *current_dev = mgslpc_device_list;
2724 while( current_dev->next_device )
2725 current_dev = current_dev->next_device;
2726 current_dev->next_device = info;
2727 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 if (info->max_frame_size < 4096)
2730 info->max_frame_size = 4096;
2731 else if (info->max_frame_size > 65535)
2732 info->max_frame_size = 65535;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
2735 info->device_name, info->io_base, info->irq_level);
2736
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002737#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 hdlcdev_init(info);
2739#endif
2740}
2741
Peter Hagervallcdaad342006-06-23 02:06:04 -07002742static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 MGSLPC_INFO *info = mgslpc_device_list;
2745 MGSLPC_INFO *last = NULL;
2746
2747 while(info) {
2748 if (info == remove_info) {
2749 if (last)
2750 last->next_device = info->next_device;
2751 else
2752 mgslpc_device_list = info->next_device;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002753#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 hdlcdev_exit(info);
2755#endif
2756 release_resources(info);
2757 kfree(info);
2758 mgslpc_device_count--;
2759 return;
2760 }
2761 last = info;
2762 info = info->next_device;
2763 }
2764}
2765
Joe Perches25f8f542011-05-03 19:29:01 -07002766static const struct pcmcia_device_id mgslpc_ids[] = {
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002767 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2768 PCMCIA_DEVICE_NULL
2769};
2770MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
2771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772static struct pcmcia_driver mgslpc_driver = {
2773 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +02002774 .name = "synclink_cs",
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02002775 .probe = mgslpc_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01002776 .remove = mgslpc_detach,
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002777 .id_table = mgslpc_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01002778 .suspend = mgslpc_suspend,
2779 .resume = mgslpc_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780};
2781
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002782static const struct tty_operations mgslpc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 .open = mgslpc_open,
2784 .close = mgslpc_close,
2785 .write = mgslpc_write,
2786 .put_char = mgslpc_put_char,
2787 .flush_chars = mgslpc_flush_chars,
2788 .write_room = mgslpc_write_room,
2789 .chars_in_buffer = mgslpc_chars_in_buffer,
2790 .flush_buffer = mgslpc_flush_buffer,
2791 .ioctl = mgslpc_ioctl,
2792 .throttle = mgslpc_throttle,
2793 .unthrottle = mgslpc_unthrottle,
2794 .send_xchar = mgslpc_send_xchar,
2795 .break_ctl = mgslpc_break,
2796 .wait_until_sent = mgslpc_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 .set_termios = mgslpc_set_termios,
2798 .stop = tx_pause,
2799 .start = tx_release,
2800 .hangup = mgslpc_hangup,
2801 .tiocmget = tiocmget,
2802 .tiocmset = tiocmset,
Andres Salomondc98d962010-11-09 14:10:38 -08002803 .get_icount = mgslpc_get_icount,
Alexey Dobriyan87687142009-03-31 15:19:17 -07002804 .proc_fops = &mgslpc_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805};
2806
2807static void synclink_cs_cleanup(void)
2808{
2809 int rc;
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 while(mgslpc_device_list)
2812 mgslpc_remove_device(mgslpc_device_list);
2813
2814 if (serial_driver) {
2815 if ((rc = tty_unregister_driver(serial_driver)))
2816 printk("%s(%d) failed to unregister tty driver err=%d\n",
2817 __FILE__,__LINE__,rc);
2818 put_tty_driver(serial_driver);
2819 }
2820
2821 pcmcia_unregister_driver(&mgslpc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822}
2823
2824static int __init synclink_cs_init(void)
2825{
2826 int rc;
2827
2828 if (break_on_load) {
2829 mgslpc_get_text_ptr();
2830 BREAKPOINT();
2831 }
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 if ((rc = pcmcia_register_driver(&mgslpc_driver)) < 0)
2834 return rc;
2835
2836 serial_driver = alloc_tty_driver(MAX_DEVICE_COUNT);
2837 if (!serial_driver) {
2838 rc = -ENOMEM;
2839 goto error;
2840 }
2841
2842 /* Initialize the tty_driver structure */
Jeff Garzikd12341f2007-10-19 15:45:35 -04002843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 serial_driver->driver_name = "synclink_cs";
2845 serial_driver->name = "ttySLP";
2846 serial_driver->major = ttymajor;
2847 serial_driver->minor_start = 64;
2848 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
2849 serial_driver->subtype = SERIAL_TYPE_NORMAL;
2850 serial_driver->init_termios = tty_std_termios;
2851 serial_driver->init_termios.c_cflag =
2852 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2853 serial_driver->flags = TTY_DRIVER_REAL_RAW;
2854 tty_set_operations(serial_driver, &mgslpc_ops);
2855
2856 if ((rc = tty_register_driver(serial_driver)) < 0) {
2857 printk("%s(%d):Couldn't register serial driver\n",
2858 __FILE__,__LINE__);
2859 put_tty_driver(serial_driver);
2860 serial_driver = NULL;
2861 goto error;
2862 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 printk("%s %s, tty major#%d\n",
2865 driver_name, driver_version,
2866 serial_driver->major);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return 0;
2869
2870error:
2871 synclink_cs_cleanup();
2872 return rc;
2873}
2874
Jeff Garzikd12341f2007-10-19 15:45:35 -04002875static void __exit synclink_cs_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
2877 synclink_cs_cleanup();
2878}
2879
2880module_init(synclink_cs_init);
2881module_exit(synclink_cs_exit);
2882
2883static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
2884{
2885 unsigned int M, N;
2886 unsigned char val;
2887
Jeff Garzikd12341f2007-10-19 15:45:35 -04002888 /* note:standard BRG mode is broken in V3.2 chip
2889 * so enhanced mode is always used
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 */
2891
2892 if (rate) {
2893 N = 3686400 / rate;
2894 if (!N)
2895 N = 1;
2896 N >>= 1;
2897 for (M = 1; N > 64 && M < 16; M++)
2898 N >>= 1;
2899 N--;
2900
2901 /* BGR[5..0] = N
2902 * BGR[9..6] = M
2903 * BGR[7..0] contained in BGR register
2904 * BGR[9..8] contained in CCR2[7..6]
2905 * divisor = (N+1)*2^M
2906 *
2907 * Note: M *must* not be zero (causes asymetric duty cycle)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002908 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 write_reg(info, (unsigned char) (channel + BGR),
2910 (unsigned char) ((M << 6) + N));
2911 val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
2912 val |= ((M << 4) & 0xc0);
2913 write_reg(info, (unsigned char) (channel + CCR2), val);
2914 }
2915}
2916
2917/* Enabled the AUX clock output at the specified frequency.
2918 */
2919static void enable_auxclk(MGSLPC_INFO *info)
2920{
2921 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 /* MODE
2924 *
2925 * 07..06 MDS[1..0] 10 = transparent HDLC mode
2926 * 05 ADM Address Mode, 0 = no addr recognition
2927 * 04 TMD Timer Mode, 0 = external
2928 * 03 RAC Receiver Active, 0 = inactive
2929 * 02 RTS 0=RTS active during xmit, 1=RTS always active
2930 * 01 TRS Timer Resolution, 1=512
2931 * 00 TLP Test Loop, 0 = no loop
2932 *
2933 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04002934 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 val = 0x82;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002936
2937 /* channel B RTS is used to enable AUXCLK driver on SP505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2939 val |= BIT2;
2940 write_reg(info, CHB + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002941
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 /* CCR0
2943 *
2944 * 07 PU Power Up, 1=active, 0=power down
2945 * 06 MCE Master Clock Enable, 1=enabled
2946 * 05 Reserved, 0
2947 * 04..02 SC[2..0] Encoding
2948 * 01..00 SM[1..0] Serial Mode, 00=HDLC
2949 *
2950 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002951 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 write_reg(info, CHB + CCR0, 0xc0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 /* CCR1
2955 *
2956 * 07 SFLG Shared Flag, 0 = disable shared flags
2957 * 06 GALP Go Active On Loop, 0 = not used
2958 * 05 GLP Go On Loop, 0 = not used
2959 * 04 ODS Output Driver Select, 1=TxD is push-pull output
2960 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
2961 * 02..00 CM[2..0] Clock Mode
2962 *
2963 * 0001 0111
Jeff Garzikd12341f2007-10-19 15:45:35 -04002964 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 write_reg(info, CHB + CCR1, 0x17);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 /* CCR2 (Channel B)
2968 *
2969 * 07..06 BGR[9..8] Baud rate bits 9..8
2970 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
2971 * 04 SSEL Clock source select, 1=submode b
2972 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
2973 * 02 RWX Read/Write Exchange 0=disabled
2974 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
2975 * 00 DIV, data inversion 0=disabled, 1=enabled
2976 *
2977 * 0011 1000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2980 write_reg(info, CHB + CCR2, 0x38);
2981 else
2982 write_reg(info, CHB + CCR2, 0x30);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 /* CCR4
2985 *
2986 * 07 MCK4 Master Clock Divide by 4, 1=enabled
2987 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
2988 * 05 TST1 Test Pin, 0=normal operation
2989 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
2990 * 03..02 Reserved, must be 0
2991 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
2992 *
2993 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002994 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 write_reg(info, CHB + CCR4, 0x50);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 /* if auxclk not enabled, set internal BRG so
2998 * CTS transitions can be detected (requires TxC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002999 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3001 mgslpc_set_rate(info, CHB, info->params.clock_speed);
3002 else
3003 mgslpc_set_rate(info, CHB, 921600);
3004}
3005
Jeff Garzikd12341f2007-10-19 15:45:35 -04003006static void loopback_enable(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
3008 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003009
3010 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 val = read_reg(info, CHA + CCR1) | (BIT2 + BIT1 + BIT0);
3012 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003013
3014 /* CCR2:04 SSEL Clock source select, 1=submode b */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 val = read_reg(info, CHA + CCR2) | (BIT4 + BIT5);
3016 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003017
3018 /* set LinkSpeed if available, otherwise default to 2Mbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 if (info->params.clock_speed)
3020 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3021 else
3022 mgslpc_set_rate(info, CHA, 1843200);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003023
3024 /* MODE:00 TLP Test Loop, 1=loopback enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 val = read_reg(info, CHA + MODE) | BIT0;
3026 write_reg(info, CHA + MODE, val);
3027}
3028
Peter Hagervallcdaad342006-06-23 02:06:04 -07003029static void hdlc_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030{
3031 unsigned char val;
3032 unsigned char clkmode, clksubmode;
3033
Jeff Garzikd12341f2007-10-19 15:45:35 -04003034 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 irq_disable(info, CHA, 0xffff);
3036 irq_disable(info, CHB, 0xffff);
3037 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003038
3039 /* assume clock mode 0a, rcv=RxC xmt=TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 clkmode = clksubmode = 0;
3041 if (info->params.flags & HDLC_FLAG_RXC_DPLL
3042 && info->params.flags & HDLC_FLAG_TXC_DPLL) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003043 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 clkmode = 7;
3045 } else if (info->params.flags & HDLC_FLAG_RXC_BRG
3046 && info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003047 /* clock mode 7b, rcv = BRG, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 clkmode = 7;
3049 clksubmode = 1;
3050 } else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
3051 if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003052 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 clkmode = 6;
3054 clksubmode = 1;
3055 } else {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003056 /* clock mode 6a, rcv = DPLL, xmt = TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 clkmode = 6;
3058 }
3059 } else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003060 /* clock mode 0b, rcv = RxC, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 clksubmode = 1;
3062 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 /* MODE
3065 *
3066 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3067 * 05 ADM Address Mode, 0 = no addr recognition
3068 * 04 TMD Timer Mode, 0 = external
3069 * 03 RAC Receiver Active, 0 = inactive
3070 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3071 * 01 TRS Timer Resolution, 1=512
3072 * 00 TLP Test Loop, 0 = no loop
3073 *
3074 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04003075 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 val = 0x82;
3077 if (info->params.loopback)
3078 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003079
3080 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 if (info->serial_signals & SerialSignal_RTS)
3082 val |= BIT2;
3083 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 /* CCR0
3086 *
3087 * 07 PU Power Up, 1=active, 0=power down
3088 * 06 MCE Master Clock Enable, 1=enabled
3089 * 05 Reserved, 0
3090 * 04..02 SC[2..0] Encoding
3091 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3092 *
3093 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003094 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 val = 0xc0;
3096 switch (info->params.encoding)
3097 {
3098 case HDLC_ENCODING_NRZI:
3099 val |= BIT3;
3100 break;
3101 case HDLC_ENCODING_BIPHASE_SPACE:
3102 val |= BIT4;
3103 break; // FM0
3104 case HDLC_ENCODING_BIPHASE_MARK:
3105 val |= BIT4 + BIT2;
3106 break; // FM1
3107 case HDLC_ENCODING_BIPHASE_LEVEL:
3108 val |= BIT4 + BIT3;
3109 break; // Manchester
3110 }
3111 write_reg(info, CHA + CCR0, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003112
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 /* CCR1
3114 *
3115 * 07 SFLG Shared Flag, 0 = disable shared flags
3116 * 06 GALP Go Active On Loop, 0 = not used
3117 * 05 GLP Go On Loop, 0 = not used
3118 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3119 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3120 * 02..00 CM[2..0] Clock Mode
3121 *
3122 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003123 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 val = 0x10 + clkmode;
3125 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003126
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 /* CCR2
3128 *
3129 * 07..06 BGR[9..8] Baud rate bits 9..8
3130 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3131 * 04 SSEL Clock source select, 1=submode b
3132 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3133 * 02 RWX Read/Write Exchange 0=disabled
3134 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3135 * 00 DIV, data inversion 0=disabled, 1=enabled
3136 *
3137 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003138 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 val = 0x00;
3140 if (clkmode == 2 || clkmode == 3 || clkmode == 6
3141 || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
3142 val |= BIT5;
3143 if (clksubmode)
3144 val |= BIT4;
3145 if (info->params.crc_type == HDLC_CRC_32_CCITT)
3146 val |= BIT1;
3147 if (info->params.encoding == HDLC_ENCODING_NRZB)
3148 val |= BIT0;
3149 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 /* CCR3
3152 *
3153 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3154 * 05 EPT Enable preamble transmission, 1=enabled
3155 * 04 RADD Receive address pushed to FIFO, 0=disabled
3156 * 03 CRL CRC Reset Level, 0=FFFF
3157 * 02 RCRC Rx CRC 0=On 1=Off
3158 * 01 TCRC Tx CRC 0=On 1=Off
3159 * 00 PSD DPLL Phase Shift Disable
3160 *
3161 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003162 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 val = 0x00;
3164 if (info->params.crc_type == HDLC_CRC_NONE)
3165 val |= BIT2 + BIT1;
3166 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
3167 val |= BIT5;
3168 switch (info->params.preamble_length)
3169 {
3170 case HDLC_PREAMBLE_LENGTH_16BITS:
3171 val |= BIT6;
3172 break;
3173 case HDLC_PREAMBLE_LENGTH_32BITS:
3174 val |= BIT6;
3175 break;
3176 case HDLC_PREAMBLE_LENGTH_64BITS:
3177 val |= BIT7 + BIT6;
3178 break;
3179 }
3180 write_reg(info, CHA + CCR3, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003181
3182 /* PRE - Preamble pattern */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 val = 0;
3184 switch (info->params.preamble)
3185 {
3186 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
3187 case HDLC_PREAMBLE_PATTERN_10: val = 0xaa; break;
3188 case HDLC_PREAMBLE_PATTERN_01: val = 0x55; break;
3189 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
3190 }
3191 write_reg(info, CHA + PRE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 /* CCR4
3194 *
3195 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3196 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3197 * 05 TST1 Test Pin, 0=normal operation
3198 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3199 * 03..02 Reserved, must be 0
3200 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3201 *
3202 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 val = 0x50;
3205 write_reg(info, CHA + CCR4, val);
3206 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
3207 mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
3208 else
3209 mgslpc_set_rate(info, CHA, info->params.clock_speed);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 /* RLCR Receive length check register
3212 *
3213 * 7 1=enable receive length check
3214 * 6..0 Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003215 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 /* XBCH Transmit Byte Count High
3219 *
3220 * 07 DMA mode, 0 = interrupt driven
3221 * 06 NRM, 0=ABM (ignored)
3222 * 05 CAS Carrier Auto Start
3223 * 04 XC Transmit Continuously (ignored)
3224 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3225 *
3226 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 val = 0x00;
3229 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3230 val |= BIT5;
3231 write_reg(info, CHA + XBCH, val);
3232 enable_auxclk(info);
3233 if (info->params.loopback || info->testing_irq)
3234 loopback_enable(info);
3235 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3236 {
3237 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003238 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 set_reg_bits(info, CHA + PVR, BIT3);
3240 } else
3241 clear_reg_bits(info, CHA + PVR, BIT3);
3242
3243 irq_enable(info, CHA,
3244 IRQ_RXEOM + IRQ_RXFIFO + IRQ_ALLSENT +
3245 IRQ_UNDERRUN + IRQ_TXFIFO);
3246 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3247 wait_command_complete(info, CHA);
3248 read_reg16(info, CHA + ISR); /* clear pending IRQs */
Jeff Garzikd12341f2007-10-19 15:45:35 -04003249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 /* Master clock mode enabled above to allow reset commands
3251 * to complete even if no data clocks are present.
3252 *
3253 * Disable master clock mode for normal communications because
3254 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3255 * IRQ when in master clock mode.
3256 *
3257 * Leave master clock mode enabled for IRQ test because the
3258 * timer IRQ used by the test can only happen in master clock mode.
Jeff Garzikd12341f2007-10-19 15:45:35 -04003259 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 if (!info->testing_irq)
3261 clear_reg_bits(info, CHA + CCR0, BIT6);
3262
3263 tx_set_idle(info);
3264
3265 tx_stop(info);
3266 rx_stop(info);
3267}
3268
Peter Hagervallcdaad342006-06-23 02:06:04 -07003269static void rx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270{
3271 if (debug_level >= DEBUG_LEVEL_ISR)
3272 printk("%s(%d):rx_stop(%s)\n",
3273 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003274
3275 /* MODE:03 RAC Receiver Active, 0=inactive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 clear_reg_bits(info, CHA + MODE, BIT3);
3277
Joe Perches0fab6de2008-04-28 02:14:02 -07003278 info->rx_enabled = false;
3279 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280}
3281
Peter Hagervallcdaad342006-06-23 02:06:04 -07003282static void rx_start(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
3284 if (debug_level >= DEBUG_LEVEL_ISR)
3285 printk("%s(%d):rx_start(%s)\n",
3286 __FILE__,__LINE__, info->device_name );
3287
3288 rx_reset_buffers(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003289 info->rx_enabled = false;
3290 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
Jeff Garzikd12341f2007-10-19 15:45:35 -04003292 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 set_reg_bits(info, CHA + MODE, BIT3);
3294
Joe Perches0fab6de2008-04-28 02:14:02 -07003295 info->rx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296}
3297
Alan Coxeeb46132009-01-02 13:48:47 +00003298static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299{
3300 if (debug_level >= DEBUG_LEVEL_ISR)
3301 printk("%s(%d):tx_start(%s)\n",
3302 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003303
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 if (info->tx_count) {
3305 /* If auto RTS enabled and RTS is inactive, then assert */
3306 /* RTS and set a flag indicating that the driver should */
3307 /* negate RTS when the transmission completes. */
Joe Perches0fab6de2008-04-28 02:14:02 -07003308 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
3310 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3311 get_signals(info);
3312 if (!(info->serial_signals & SerialSignal_RTS)) {
3313 info->serial_signals |= SerialSignal_RTS;
3314 set_signals(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003315 info->drop_rts_on_tx_done = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 }
3317 }
3318
3319 if (info->params.mode == MGSL_MODE_ASYNC) {
3320 if (!info->tx_active) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003321 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003322 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 }
3324 } else {
Joe Perches0fab6de2008-04-28 02:14:02 -07003325 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003326 tx_ready(info, tty);
Jiri Slaby40565f12007-02-12 00:52:31 -08003327 mod_timer(&info->tx_timer, jiffies +
3328 msecs_to_jiffies(5000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 }
3330 }
3331
3332 if (!info->tx_enabled)
Joe Perches0fab6de2008-04-28 02:14:02 -07003333 info->tx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334}
3335
Peter Hagervallcdaad342006-06-23 02:06:04 -07003336static void tx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337{
3338 if (debug_level >= DEBUG_LEVEL_ISR)
3339 printk("%s(%d):tx_stop(%s)\n",
3340 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003341
3342 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Joe Perches0fab6de2008-04-28 02:14:02 -07003344 info->tx_enabled = false;
3345 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346}
3347
3348/* Reset the adapter to a known state and prepare it for further use.
3349 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003350static void reset_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003352 /* power up both channels (set BIT7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 write_reg(info, CHA + CCR0, 0x80);
3354 write_reg(info, CHB + CCR0, 0x80);
3355 write_reg(info, CHA + MODE, 0);
3356 write_reg(info, CHB + MODE, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003357
3358 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 irq_disable(info, CHA, 0xffff);
3360 irq_disable(info, CHB, 0xffff);
3361 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 /* PCR Port Configuration Register
3364 *
3365 * 07..04 DEC[3..0] Serial I/F select outputs
3366 * 03 output, 1=AUTO CTS control enabled
3367 * 02 RI Ring Indicator input 0=active
3368 * 01 DSR input 0=active
3369 * 00 DTR output 0=active
3370 *
3371 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003372 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 write_reg(info, PCR, 0x06);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 /* PVR Port Value Register
3376 *
3377 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3378 * 03 AUTO CTS output 1=enabled
3379 * 02 RI Ring Indicator input
3380 * 01 DSR input
3381 * 00 DTR output (1=inactive)
3382 *
3383 * 0000 0001
3384 */
3385// write_reg(info, PVR, PVR_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 /* IPC Interrupt Port Configuration
3388 *
3389 * 07 VIS 1=Masked interrupts visible
3390 * 06..05 Reserved, 0
3391 * 04..03 SLA Slave address, 00 ignored
3392 * 02 CASM Cascading Mode, 1=daisy chain
3393 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3394 *
3395 * 0000 0101
Jeff Garzikd12341f2007-10-19 15:45:35 -04003396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 write_reg(info, IPC, 0x05);
3398}
3399
Peter Hagervallcdaad342006-06-23 02:06:04 -07003400static void async_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401{
3402 unsigned char val;
3403
Jeff Garzikd12341f2007-10-19 15:45:35 -04003404 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 irq_disable(info, CHA, 0xffff);
3406 irq_disable(info, CHB, 0xffff);
3407 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 /* MODE
3410 *
3411 * 07 Reserved, 0
3412 * 06 FRTS RTS State, 0=active
3413 * 05 FCTS Flow Control on CTS
3414 * 04 FLON Flow Control Enable
3415 * 03 RAC Receiver Active, 0 = inactive
3416 * 02 RTS 0=Auto RTS, 1=manual RTS
3417 * 01 TRS Timer Resolution, 1=512
3418 * 00 TLP Test Loop, 0 = no loop
3419 *
3420 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003421 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 val = 0x06;
3423 if (info->params.loopback)
3424 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003425
3426 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 if (!(info->serial_signals & SerialSignal_RTS))
3428 val |= BIT6;
3429 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 /* CCR0
3432 *
3433 * 07 PU Power Up, 1=active, 0=power down
3434 * 06 MCE Master Clock Enable, 1=enabled
3435 * 05 Reserved, 0
3436 * 04..02 SC[2..0] Encoding, 000=NRZ
3437 * 01..00 SM[1..0] Serial Mode, 11=Async
3438 *
3439 * 1000 0011
Jeff Garzikd12341f2007-10-19 15:45:35 -04003440 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 write_reg(info, CHA + CCR0, 0x83);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 /* CCR1
3444 *
3445 * 07..05 Reserved, 0
3446 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3447 * 03 BCR Bit Clock Rate, 1=16x
3448 * 02..00 CM[2..0] Clock Mode, 111=BRG
3449 *
3450 * 0001 1111
Jeff Garzikd12341f2007-10-19 15:45:35 -04003451 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 write_reg(info, CHA + CCR1, 0x1f);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 /* CCR2 (channel A)
3455 *
3456 * 07..06 BGR[9..8] Baud rate bits 9..8
3457 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3458 * 04 SSEL Clock source select, 1=submode b
3459 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3460 * 02 RWX Read/Write Exchange 0=disabled
3461 * 01 Reserved, 0
3462 * 00 DIV, data inversion 0=disabled, 1=enabled
3463 *
3464 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003465 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 write_reg(info, CHA + CCR2, 0x10);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 /* CCR3
3469 *
3470 * 07..01 Reserved, 0
3471 * 00 PSD DPLL Phase Shift Disable
3472 *
3473 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003474 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 write_reg(info, CHA + CCR3, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 /* CCR4
3478 *
3479 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3480 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3481 * 05 TST1 Test Pin, 0=normal operation
3482 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3483 * 03..00 Reserved, must be 0
3484 *
3485 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003486 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 write_reg(info, CHA + CCR4, 0x50);
3488 mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003489
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 /* DAFO Data Format
3491 *
3492 * 07 Reserved, 0
3493 * 06 XBRK transmit break, 0=normal operation
3494 * 05 Stop bits (0=1, 1=2)
3495 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3496 * 02 PAREN Parity Enable
3497 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3498 *
Jeff Garzikd12341f2007-10-19 15:45:35 -04003499 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 val = 0x00;
3501 if (info->params.data_bits != 8)
3502 val |= BIT0; /* 7 bits */
3503 if (info->params.stop_bits != 1)
3504 val |= BIT5;
3505 if (info->params.parity != ASYNC_PARITY_NONE)
3506 {
3507 val |= BIT2; /* Parity enable */
3508 if (info->params.parity == ASYNC_PARITY_ODD)
3509 val |= BIT3;
3510 else
3511 val |= BIT4;
3512 }
3513 write_reg(info, CHA + DAFO, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 /* RFC Rx FIFO Control
3516 *
3517 * 07 Reserved, 0
3518 * 06 DPS, 1=parity bit not stored in data byte
3519 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3520 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3521 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3522 * 01 Reserved, 0
3523 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3524 *
3525 * 0101 1100
Jeff Garzikd12341f2007-10-19 15:45:35 -04003526 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 write_reg(info, CHA + RFC, 0x5c);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003528
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 /* RLCR Receive length check register
3530 *
3531 * Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003532 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003534
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 /* XBCH Transmit Byte Count High
3536 *
3537 * 07 DMA mode, 0 = interrupt driven
3538 * 06 NRM, 0=ABM (ignored)
3539 * 05 CAS Carrier Auto Start
3540 * 04 XC Transmit Continuously (ignored)
3541 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3542 *
3543 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 val = 0x00;
3546 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3547 val |= BIT5;
3548 write_reg(info, CHA + XBCH, val);
3549 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3550 irq_enable(info, CHA, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003551
3552 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 set_reg_bits(info, CHA + MODE, BIT3);
3554 enable_auxclk(info);
3555 if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
3556 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003557 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 set_reg_bits(info, CHA + PVR, BIT3);
3559 } else
3560 clear_reg_bits(info, CHA + PVR, BIT3);
3561 irq_enable(info, CHA,
3562 IRQ_RXEOM + IRQ_RXFIFO + IRQ_BREAK_ON + IRQ_RXTIME +
3563 IRQ_ALLSENT + IRQ_TXFIFO);
3564 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3565 wait_command_complete(info, CHA);
3566 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3567}
3568
3569/* Set the HDLC idle mode for the transmitter.
3570 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003571static void tx_set_idle(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003573 /* Note: ESCC2 only supports flags and one idle modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 if (info->idle_mode == HDLC_TXIDLE_FLAGS)
3575 set_reg_bits(info, CHA + CCR1, BIT3);
3576 else
3577 clear_reg_bits(info, CHA + CCR1, BIT3);
3578}
3579
3580/* get state of the V24 status (input) signals.
3581 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003582static void get_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583{
3584 unsigned char status = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003585
3586 /* preserve DTR and RTS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
3588
3589 if (read_reg(info, CHB + VSTR) & BIT7)
3590 info->serial_signals |= SerialSignal_DCD;
3591 if (read_reg(info, CHB + STAR) & BIT1)
3592 info->serial_signals |= SerialSignal_CTS;
3593
3594 status = read_reg(info, CHA + PVR);
3595 if (!(status & PVR_RI))
3596 info->serial_signals |= SerialSignal_RI;
3597 if (!(status & PVR_DSR))
3598 info->serial_signals |= SerialSignal_DSR;
3599}
3600
3601/* Set the state of DTR and RTS based on contents of
3602 * serial_signals member of device extension.
3603 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003604static void set_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605{
3606 unsigned char val;
3607
3608 val = read_reg(info, CHA + MODE);
3609 if (info->params.mode == MGSL_MODE_ASYNC) {
3610 if (info->serial_signals & SerialSignal_RTS)
3611 val &= ~BIT6;
3612 else
3613 val |= BIT6;
3614 } else {
3615 if (info->serial_signals & SerialSignal_RTS)
3616 val |= BIT2;
3617 else
3618 val &= ~BIT2;
3619 }
3620 write_reg(info, CHA + MODE, val);
3621
3622 if (info->serial_signals & SerialSignal_DTR)
3623 clear_reg_bits(info, CHA + PVR, PVR_DTR);
3624 else
3625 set_reg_bits(info, CHA + PVR, PVR_DTR);
3626}
3627
Peter Hagervallcdaad342006-06-23 02:06:04 -07003628static void rx_reset_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629{
3630 RXBUF *buf;
3631 int i;
3632
3633 info->rx_put = 0;
3634 info->rx_get = 0;
3635 info->rx_frame_count = 0;
3636 for (i=0 ; i < info->rx_buf_count ; i++) {
3637 buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
3638 buf->status = buf->count = 0;
3639 }
3640}
3641
3642/* Attempt to return a received HDLC frame
3643 * Only frames received without errors are returned.
3644 *
Joe Perches0fab6de2008-04-28 02:14:02 -07003645 * Returns true if frame returned, otherwise false
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 */
Alan Coxeeb46132009-01-02 13:48:47 +00003647static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648{
3649 unsigned short status;
3650 RXBUF *buf;
3651 unsigned int framesize = 0;
3652 unsigned long flags;
Joe Perches0fab6de2008-04-28 02:14:02 -07003653 bool return_frame = false;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003654
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 if (info->rx_frame_count == 0)
Joe Perches0fab6de2008-04-28 02:14:02 -07003656 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
3658 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));
3659
3660 status = buf->status;
3661
3662 /* 07 VFR 1=valid frame
3663 * 06 RDO 1=data overrun
3664 * 05 CRC 1=OK, 0=error
3665 * 04 RAB 1=frame aborted
3666 */
3667 if ((status & 0xf0) != 0xA0) {
3668 if (!(status & BIT7) || (status & BIT4))
3669 info->icount.rxabort++;
3670 else if (status & BIT6)
3671 info->icount.rxover++;
3672 else if (!(status & BIT5)) {
3673 info->icount.rxcrc++;
3674 if (info->params.crc_type & HDLC_CRC_RETURN_EX)
Joe Perches0fab6de2008-04-28 02:14:02 -07003675 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 }
3677 framesize = 0;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003678#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 {
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003680 info->netdev->stats.rx_errors++;
3681 info->netdev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 }
3683#endif
3684 } else
Joe Perches0fab6de2008-04-28 02:14:02 -07003685 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
3687 if (return_frame)
3688 framesize = buf->count;
3689
3690 if (debug_level >= DEBUG_LEVEL_BH)
3691 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
3692 __FILE__,__LINE__,info->device_name,status,framesize);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 if (debug_level >= DEBUG_LEVEL_DATA)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003695 trace_block(info, buf->data, framesize, 0);
3696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 if (framesize) {
3698 if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
3699 framesize+1 > info->max_frame_size) ||
3700 framesize > info->max_frame_size)
3701 info->icount.rxlong++;
3702 else {
3703 if (status & BIT5)
3704 info->icount.rxok++;
3705
3706 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
3707 *(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
3708 ++framesize;
3709 }
3710
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003711#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 if (info->netcount)
3713 hdlcdev_rx(info, buf->data, framesize);
3714 else
3715#endif
3716 ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
3717 }
3718 }
3719
3720 spin_lock_irqsave(&info->lock,flags);
3721 buf->status = buf->count = 0;
3722 info->rx_frame_count--;
3723 info->rx_get++;
3724 if (info->rx_get >= info->rx_buf_count)
3725 info->rx_get = 0;
3726 spin_unlock_irqrestore(&info->lock,flags);
3727
Joe Perches0fab6de2008-04-28 02:14:02 -07003728 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729}
3730
Joe Perches0fab6de2008-04-28 02:14:02 -07003731static bool register_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003733 static unsigned char patterns[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
Tobias Klauserfe971072006-01-09 20:54:02 -08003735 static unsigned int count = ARRAY_SIZE(patterns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 unsigned int i;
Joe Perches0fab6de2008-04-28 02:14:02 -07003737 bool rc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 unsigned long flags;
3739
3740 spin_lock_irqsave(&info->lock,flags);
3741 reset_device(info);
3742
3743 for (i = 0; i < count; i++) {
3744 write_reg(info, XAD1, patterns[i]);
3745 write_reg(info, XAD2, patterns[(i + 1) % count]);
Tobias Klauserfe971072006-01-09 20:54:02 -08003746 if ((read_reg(info, XAD1) != patterns[i]) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003748 rc = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 break;
3750 }
3751 }
3752
3753 spin_unlock_irqrestore(&info->lock,flags);
3754 return rc;
3755}
3756
Joe Perches0fab6de2008-04-28 02:14:02 -07003757static bool irq_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758{
3759 unsigned long end_time;
3760 unsigned long flags;
3761
3762 spin_lock_irqsave(&info->lock,flags);
3763 reset_device(info);
3764
Joe Perches0fab6de2008-04-28 02:14:02 -07003765 info->testing_irq = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 hdlc_mode(info);
3767
Joe Perches0fab6de2008-04-28 02:14:02 -07003768 info->irq_occurred = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
3770 /* init hdlc mode */
3771
3772 irq_enable(info, CHA, IRQ_TIMER);
3773 write_reg(info, CHA + TIMR, 0); /* 512 cycles */
3774 issue_command(info, CHA, CMD_START_TIMER);
3775
3776 spin_unlock_irqrestore(&info->lock,flags);
3777
3778 end_time=100;
3779 while(end_time-- && !info->irq_occurred) {
3780 msleep_interruptible(10);
3781 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003782
Joe Perches0fab6de2008-04-28 02:14:02 -07003783 info->testing_irq = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 spin_lock_irqsave(&info->lock,flags);
3786 reset_device(info);
3787 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003788
Joe Perches0fab6de2008-04-28 02:14:02 -07003789 return info->irq_occurred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790}
3791
Peter Hagervallcdaad342006-06-23 02:06:04 -07003792static int adapter_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793{
3794 if (!register_test(info)) {
3795 info->init_error = DiagStatus_AddressFailure;
3796 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
3797 __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
3798 return -ENODEV;
3799 }
3800
3801 if (!irq_test(info)) {
3802 info->init_error = DiagStatus_IrqFailure;
3803 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
3804 __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
3805 return -ENODEV;
3806 }
3807
3808 if (debug_level >= DEBUG_LEVEL_INFO)
3809 printk("%s(%d):device %s passed diagnostics\n",
3810 __FILE__,__LINE__,info->device_name);
3811 return 0;
3812}
3813
Peter Hagervallcdaad342006-06-23 02:06:04 -07003814static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815{
3816 int i;
3817 int linecount;
3818 if (xmit)
3819 printk("%s tx data:\n",info->device_name);
3820 else
3821 printk("%s rx data:\n",info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 while(count) {
3824 if (count > 16)
3825 linecount = 16;
3826 else
3827 linecount = count;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 for(i=0;i<linecount;i++)
3830 printk("%02X ",(unsigned char)data[i]);
3831 for(;i<17;i++)
3832 printk(" ");
3833 for(i=0;i<linecount;i++) {
3834 if (data[i]>=040 && data[i]<=0176)
3835 printk("%c",data[i]);
3836 else
3837 printk(".");
3838 }
3839 printk("\n");
Jeff Garzikd12341f2007-10-19 15:45:35 -04003840
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 data += linecount;
3842 count -= linecount;
3843 }
3844}
3845
3846/* HDLC frame time out
3847 * update stats and do tx completion processing
3848 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003849static void tx_timeout(unsigned long context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850{
3851 MGSLPC_INFO *info = (MGSLPC_INFO*)context;
3852 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003853
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 if ( debug_level >= DEBUG_LEVEL_INFO )
3855 printk( "%s(%d):tx_timeout(%s)\n",
3856 __FILE__,__LINE__,info->device_name);
3857 if(info->tx_active &&
3858 info->params.mode == MGSL_MODE_HDLC) {
3859 info->icount.txtimeout++;
3860 }
3861 spin_lock_irqsave(&info->lock,flags);
Joe Perches0fab6de2008-04-28 02:14:02 -07003862 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 info->tx_count = info->tx_put = info->tx_get = 0;
3864
3865 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003866
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003867#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 if (info->netcount)
3869 hdlcdev_tx_done(info);
3870 else
3871#endif
Alan Coxeeb46132009-01-02 13:48:47 +00003872 {
3873 struct tty_struct *tty = tty_port_tty_get(&info->port);
3874 bh_transmit(info, tty);
3875 tty_kref_put(tty);
3876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877}
3878
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003879#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
3881/**
3882 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
3883 * set encoding and frame check sequence (FCS) options
3884 *
3885 * dev pointer to network device structure
3886 * encoding serial encoding setting
3887 * parity FCS setting
3888 *
3889 * returns 0 if success, otherwise error code
3890 */
3891static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
3892 unsigned short parity)
3893{
3894 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00003895 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 unsigned char new_encoding;
3897 unsigned short new_crctype;
3898
3899 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00003900 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 return -EBUSY;
3902
3903 switch (encoding)
3904 {
3905 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
3906 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
3907 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
3908 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
3909 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
3910 default: return -EINVAL;
3911 }
3912
3913 switch (parity)
3914 {
3915 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
3916 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
3917 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
3918 default: return -EINVAL;
3919 }
3920
3921 info->params.encoding = new_encoding;
Alexey Dobriyan53b35312006-03-24 03:16:13 -08003922 info->params.crc_type = new_crctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
3924 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00003925 if (info->netcount) {
3926 tty = tty_port_tty_get(&info->port);
3927 mgslpc_program_hw(info, tty);
3928 tty_kref_put(tty);
3929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931 return 0;
3932}
3933
3934/**
3935 * called by generic HDLC layer to send frame
3936 *
3937 * skb socket buffer containing HDLC frame
3938 * dev pointer to network device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 */
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003940static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
3941 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942{
3943 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 unsigned long flags;
3945
3946 if (debug_level >= DEBUG_LEVEL_INFO)
3947 printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);
3948
3949 /* stop sending until this frame completes */
3950 netif_stop_queue(dev);
3951
3952 /* copy data to device buffers */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003953 skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 info->tx_get = 0;
3955 info->tx_put = info->tx_count = skb->len;
3956
3957 /* update network statistics */
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003958 dev->stats.tx_packets++;
3959 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
3961 /* done with socket buffer, so free it */
3962 dev_kfree_skb(skb);
3963
3964 /* save start time for transmit timeout detection */
3965 dev->trans_start = jiffies;
3966
3967 /* start hardware transmitter if necessary */
3968 spin_lock_irqsave(&info->lock,flags);
Alan Coxeeb46132009-01-02 13:48:47 +00003969 if (!info->tx_active) {
3970 struct tty_struct *tty = tty_port_tty_get(&info->port);
3971 tx_start(info, tty);
3972 tty_kref_put(tty);
3973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 spin_unlock_irqrestore(&info->lock,flags);
3975
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003976 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977}
3978
3979/**
3980 * called by network layer when interface enabled
3981 * claim resources and initialize hardware
3982 *
3983 * dev pointer to network device structure
3984 *
3985 * returns 0 if success, otherwise error code
3986 */
3987static int hdlcdev_open(struct net_device *dev)
3988{
3989 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00003990 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 int rc;
3992 unsigned long flags;
3993
3994 if (debug_level >= DEBUG_LEVEL_INFO)
3995 printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);
3996
3997 /* generic HDLC layer open processing */
3998 if ((rc = hdlc_open(dev)))
3999 return rc;
4000
4001 /* arbitrate between network and tty opens */
4002 spin_lock_irqsave(&info->netlock, flags);
Alan Coxeeb46132009-01-02 13:48:47 +00004003 if (info->port.count != 0 || info->netcount != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
4005 spin_unlock_irqrestore(&info->netlock, flags);
4006 return -EBUSY;
4007 }
4008 info->netcount=1;
4009 spin_unlock_irqrestore(&info->netlock, flags);
4010
Alan Coxeeb46132009-01-02 13:48:47 +00004011 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 /* claim resources and init adapter */
Alan Coxeeb46132009-01-02 13:48:47 +00004013 if ((rc = startup(info, tty)) != 0) {
4014 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 spin_lock_irqsave(&info->netlock, flags);
4016 info->netcount=0;
4017 spin_unlock_irqrestore(&info->netlock, flags);
4018 return rc;
4019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 /* assert DTR and RTS, apply hardware settings */
4021 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00004022 mgslpc_program_hw(info, tty);
4023 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
4025 /* enable network layer transmit */
4026 dev->trans_start = jiffies;
4027 netif_start_queue(dev);
4028
4029 /* inform generic HDLC layer of current DCD status */
4030 spin_lock_irqsave(&info->lock, flags);
4031 get_signals(info);
4032 spin_unlock_irqrestore(&info->lock, flags);
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07004033 if (info->serial_signals & SerialSignal_DCD)
4034 netif_carrier_on(dev);
4035 else
4036 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 return 0;
4038}
4039
4040/**
4041 * called by network layer when interface is disabled
4042 * shutdown hardware and release resources
4043 *
4044 * dev pointer to network device structure
4045 *
4046 * returns 0 if success, otherwise error code
4047 */
4048static int hdlcdev_close(struct net_device *dev)
4049{
4050 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00004051 struct tty_struct *tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 unsigned long flags;
4053
4054 if (debug_level >= DEBUG_LEVEL_INFO)
4055 printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);
4056
4057 netif_stop_queue(dev);
4058
4059 /* shutdown adapter and release resources */
Alan Coxeeb46132009-01-02 13:48:47 +00004060 shutdown(info, tty);
4061 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 hdlc_close(dev);
4063
4064 spin_lock_irqsave(&info->netlock, flags);
4065 info->netcount=0;
4066 spin_unlock_irqrestore(&info->netlock, flags);
4067
4068 return 0;
4069}
4070
4071/**
4072 * called by network layer to process IOCTL call to network device
4073 *
4074 * dev pointer to network device structure
4075 * ifr pointer to network interface request structure
4076 * cmd IOCTL command code
4077 *
4078 * returns 0 if success, otherwise error code
4079 */
4080static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4081{
4082 const size_t size = sizeof(sync_serial_settings);
4083 sync_serial_settings new_line;
4084 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
4085 MGSLPC_INFO *info = dev_to_port(dev);
4086 unsigned int flags;
4087
4088 if (debug_level >= DEBUG_LEVEL_INFO)
4089 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);
4090
4091 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00004092 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 return -EBUSY;
4094
4095 if (cmd != SIOCWANDEV)
4096 return hdlc_ioctl(dev, ifr, cmd);
4097
Vasiliy Kulikov5b917a12010-10-17 18:41:24 +04004098 memset(&new_line, 0, size);
4099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 switch(ifr->ifr_settings.type) {
4101 case IF_GET_IFACE: /* return current sync_serial_settings */
4102
4103 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
4104 if (ifr->ifr_settings.size < size) {
4105 ifr->ifr_settings.size = size; /* data size wanted */
4106 return -ENOBUFS;
4107 }
4108
4109 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4110 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4111 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4112 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4113
4114 switch (flags){
4115 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
4116 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
4117 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
4118 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
4119 default: new_line.clock_type = CLOCK_DEFAULT;
4120 }
4121
4122 new_line.clock_rate = info->params.clock_speed;
4123 new_line.loopback = info->params.loopback ? 1:0;
4124
4125 if (copy_to_user(line, &new_line, size))
4126 return -EFAULT;
4127 return 0;
4128
4129 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
4130
4131 if(!capable(CAP_NET_ADMIN))
4132 return -EPERM;
4133 if (copy_from_user(&new_line, line, size))
4134 return -EFAULT;
4135
4136 switch (new_line.clock_type)
4137 {
4138 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
4139 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
4140 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
4141 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
4142 case CLOCK_DEFAULT: flags = info->params.flags &
4143 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4144 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4145 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4146 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
4147 default: return -EINVAL;
4148 }
4149
4150 if (new_line.loopback != 0 && new_line.loopback != 1)
4151 return -EINVAL;
4152
4153 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4154 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4155 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4156 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4157 info->params.flags |= flags;
4158
4159 info->params.loopback = new_line.loopback;
4160
4161 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
4162 info->params.clock_speed = new_line.clock_rate;
4163 else
4164 info->params.clock_speed = 0;
4165
4166 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00004167 if (info->netcount) {
4168 struct tty_struct *tty = tty_port_tty_get(&info->port);
4169 mgslpc_program_hw(info, tty);
4170 tty_kref_put(tty);
4171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 return 0;
4173
4174 default:
4175 return hdlc_ioctl(dev, ifr, cmd);
4176 }
4177}
4178
4179/**
4180 * called by network layer when transmit timeout is detected
4181 *
4182 * dev pointer to network device structure
4183 */
4184static void hdlcdev_tx_timeout(struct net_device *dev)
4185{
4186 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 unsigned long flags;
4188
4189 if (debug_level >= DEBUG_LEVEL_INFO)
4190 printk("hdlcdev_tx_timeout(%s)\n",dev->name);
4191
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004192 dev->stats.tx_errors++;
4193 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
4195 spin_lock_irqsave(&info->lock,flags);
4196 tx_stop(info);
4197 spin_unlock_irqrestore(&info->lock,flags);
4198
4199 netif_wake_queue(dev);
4200}
4201
4202/**
4203 * called by device driver when transmit completes
4204 * reenable network layer transmit if stopped
4205 *
4206 * info pointer to device instance information
4207 */
4208static void hdlcdev_tx_done(MGSLPC_INFO *info)
4209{
4210 if (netif_queue_stopped(info->netdev))
4211 netif_wake_queue(info->netdev);
4212}
4213
4214/**
4215 * called by device driver when frame received
4216 * pass frame to network layer
4217 *
4218 * info pointer to device instance information
4219 * buf pointer to buffer contianing frame data
4220 * size count of data bytes in buf
4221 */
4222static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size)
4223{
4224 struct sk_buff *skb = dev_alloc_skb(size);
4225 struct net_device *dev = info->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
4227 if (debug_level >= DEBUG_LEVEL_INFO)
4228 printk("hdlcdev_rx(%s)\n",dev->name);
4229
4230 if (skb == NULL) {
4231 printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n", dev->name);
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004232 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 return;
4234 }
4235
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004236 memcpy(skb_put(skb, size), buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004238 skb->protocol = hdlc_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004240 dev->stats.rx_packets++;
4241 dev->stats.rx_bytes += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
4243 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244}
4245
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004246static const struct net_device_ops hdlcdev_ops = {
4247 .ndo_open = hdlcdev_open,
4248 .ndo_stop = hdlcdev_close,
4249 .ndo_change_mtu = hdlc_change_mtu,
4250 .ndo_start_xmit = hdlc_start_xmit,
4251 .ndo_do_ioctl = hdlcdev_ioctl,
4252 .ndo_tx_timeout = hdlcdev_tx_timeout,
4253};
4254
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255/**
4256 * called by device driver when adding device instance
4257 * do generic HDLC initialization
4258 *
4259 * info pointer to device instance information
4260 *
4261 * returns 0 if success, otherwise error code
4262 */
4263static int hdlcdev_init(MGSLPC_INFO *info)
4264{
4265 int rc;
4266 struct net_device *dev;
4267 hdlc_device *hdlc;
4268
4269 /* allocate and initialize network and HDLC layer objects */
4270
4271 if (!(dev = alloc_hdlcdev(info))) {
4272 printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
4273 return -ENOMEM;
4274 }
4275
4276 /* for network layer reporting purposes only */
4277 dev->base_addr = info->io_base;
4278 dev->irq = info->irq_level;
4279
4280 /* network layer callbacks and settings */
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004281 dev->netdev_ops = &hdlcdev_ops;
4282 dev->watchdog_timeo = 10 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 dev->tx_queue_len = 50;
4284
4285 /* generic HDLC layer callbacks and settings */
4286 hdlc = dev_to_hdlc(dev);
4287 hdlc->attach = hdlcdev_attach;
4288 hdlc->xmit = hdlcdev_xmit;
4289
4290 /* register objects with HDLC layer */
4291 if ((rc = register_hdlc_device(dev))) {
4292 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
4293 free_netdev(dev);
4294 return rc;
4295 }
4296
4297 info->netdev = dev;
4298 return 0;
4299}
4300
4301/**
4302 * called by device driver when removing device instance
4303 * do generic HDLC cleanup
4304 *
4305 * info pointer to device instance information
4306 */
4307static void hdlcdev_exit(MGSLPC_INFO *info)
4308{
4309 unregister_hdlc_device(info->netdev);
4310 free_netdev(info->netdev);
4311 info->netdev = NULL;
4312}
4313
4314#endif /* CONFIG_HDLC */
4315