blob: ce277f74bd10b4de8c7ae93c09aa3446565c8c18 [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
894 if (tcd) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400895 /* early termination, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
897
898 /* Zero fifo count could mean 0 or 32 bytes available.
899 * If BIT5 of STAR is set then at least 1 byte is available.
900 */
901 if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
902 fifo_count = 32;
903 } else
904 fifo_count = 32;
Alan Cox33f0f882006-01-09 20:54:13 -0800905
906 tty_buffer_request_room(tty, fifo_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400907 /* Flush received async data to receive data buffer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 while (fifo_count) {
909 data = read_reg(info, CHA + RXFIFO);
910 status = read_reg(info, CHA + RXFIFO);
911 fifo_count -= 2;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 icount->rx++;
Alan Cox33f0f882006-01-09 20:54:13 -0800914 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 // if no frameing/crc error then save data
917 // BIT7:parity error
918 // BIT6:framing error
919
920 if (status & (BIT7 + BIT6)) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400921 if (status & BIT7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 icount->parity++;
923 else
924 icount->frame++;
925
926 /* discard char if tty control flags say so */
927 if (status & info->ignore_status_mask)
928 continue;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 status &= info->read_status_mask;
931
932 if (status & BIT7)
Alan Cox33f0f882006-01-09 20:54:13 -0800933 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 else if (status & BIT6)
Alan Cox33f0f882006-01-09 20:54:13 -0800935 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Alan Cox33f0f882006-01-09 20:54:13 -0800937 work += tty_insert_flip_char(tty, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939 issue_command(info, CHA, CMD_RXFIFO);
940
941 if (debug_level >= DEBUG_LEVEL_ISR) {
Alan Cox33f0f882006-01-09 20:54:13 -0800942 printk("%s(%d):rx_ready_async",
943 __FILE__,__LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
945 __FILE__,__LINE__,icount->rx,icount->brk,
946 icount->parity,icount->frame,icount->overrun);
947 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400948
Alan Cox33f0f882006-01-09 20:54:13 -0800949 if (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 tty_flip_buffer_push(tty);
951}
952
953
Alan Coxeeb46132009-01-02 13:48:47 +0000954static void tx_done(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 if (!info->tx_active)
957 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400958
Joe Perches0fab6de2008-04-28 02:14:02 -0700959 info->tx_active = false;
960 info->tx_aborting = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 if (info->params.mode == MGSL_MODE_ASYNC)
963 return;
964
965 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400966 del_timer(&info->tx_timer);
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (info->drop_rts_on_tx_done) {
969 get_signals(info);
970 if (info->serial_signals & SerialSignal_RTS) {
971 info->serial_signals &= ~SerialSignal_RTS;
972 set_signals(info);
973 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700974 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800977#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (info->netcount)
979 hdlcdev_tx_done(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400980 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981#endif
982 {
Alan Coxeeb46132009-01-02 13:48:47 +0000983 if (tty->stopped || tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 tx_stop(info);
985 return;
986 }
987 info->pending_bh |= BH_TRANSMIT;
988 }
989}
990
Alan Coxeeb46132009-01-02 13:48:47 +0000991static void tx_ready(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 unsigned char fifo_count = 32;
994 int c;
995
996 if (debug_level >= DEBUG_LEVEL_ISR)
997 printk("%s(%d):tx_ready(%s)\n", __FILE__,__LINE__,info->device_name);
998
999 if (info->params.mode == MGSL_MODE_HDLC) {
1000 if (!info->tx_active)
1001 return;
1002 } else {
Alan Coxeeb46132009-01-02 13:48:47 +00001003 if (tty->stopped || tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 tx_stop(info);
1005 return;
1006 }
1007 if (!info->tx_count)
Joe Perches0fab6de2008-04-28 02:14:02 -07001008 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010
1011 if (!info->tx_count)
1012 return;
1013
1014 while (info->tx_count && fifo_count) {
1015 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (c == 1) {
1018 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
1019 } else {
1020 write_reg16(info, CHA + TXFIFO,
1021 *((unsigned short*)(info->tx_buf + info->tx_get)));
1022 }
1023 info->tx_count -= c;
1024 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1025 fifo_count -= c;
1026 }
1027
1028 if (info->params.mode == MGSL_MODE_ASYNC) {
1029 if (info->tx_count < WAKEUP_CHARS)
1030 info->pending_bh |= BH_TRANSMIT;
1031 issue_command(info, CHA, CMD_TXFIFO);
1032 } else {
1033 if (info->tx_count)
1034 issue_command(info, CHA, CMD_TXFIFO);
1035 else
1036 issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
1037 }
1038}
1039
Alan Coxeeb46132009-01-02 13:48:47 +00001040static void cts_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 get_signals(info);
1043 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1044 irq_disable(info, CHB, IRQ_CTS);
1045 info->icount.cts++;
1046 if (info->serial_signals & SerialSignal_CTS)
1047 info->input_signal_events.cts_up++;
1048 else
1049 info->input_signal_events.cts_down++;
1050 wake_up_interruptible(&info->status_event_wait_q);
1051 wake_up_interruptible(&info->event_wait_q);
1052
Alan Coxeeb46132009-01-02 13:48:47 +00001053 if (info->port.flags & ASYNC_CTS_FLOW) {
1054 if (tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (info->serial_signals & SerialSignal_CTS) {
1056 if (debug_level >= DEBUG_LEVEL_ISR)
1057 printk("CTS tx start...");
Alan Coxeeb46132009-01-02 13:48:47 +00001058 if (tty)
1059 tty->hw_stopped = 0;
1060 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 info->pending_bh |= BH_TRANSMIT;
1062 return;
1063 }
1064 } else {
1065 if (!(info->serial_signals & SerialSignal_CTS)) {
1066 if (debug_level >= DEBUG_LEVEL_ISR)
1067 printk("CTS tx stop...");
Alan Coxeeb46132009-01-02 13:48:47 +00001068 if (tty)
1069 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 tx_stop(info);
1071 }
1072 }
1073 }
1074 info->pending_bh |= BH_STATUS;
1075}
1076
Alan Coxeeb46132009-01-02 13:48:47 +00001077static void dcd_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 get_signals(info);
1080 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1081 irq_disable(info, CHB, IRQ_DCD);
1082 info->icount.dcd++;
1083 if (info->serial_signals & SerialSignal_DCD) {
1084 info->input_signal_events.dcd_up++;
1085 }
1086 else
1087 info->input_signal_events.dcd_down++;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08001088#if SYNCLINK_GENERIC_HDLC
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07001089 if (info->netcount) {
1090 if (info->serial_signals & SerialSignal_DCD)
1091 netif_carrier_on(info->netdev);
1092 else
1093 netif_carrier_off(info->netdev);
1094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095#endif
1096 wake_up_interruptible(&info->status_event_wait_q);
1097 wake_up_interruptible(&info->event_wait_q);
1098
Alan Coxeeb46132009-01-02 13:48:47 +00001099 if (info->port.flags & ASYNC_CHECK_CD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (debug_level >= DEBUG_LEVEL_ISR)
1101 printk("%s CD now %s...", info->device_name,
1102 (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
1103 if (info->serial_signals & SerialSignal_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001104 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 else {
1106 if (debug_level >= DEBUG_LEVEL_ISR)
1107 printk("doing serial hangup...");
Alan Coxeeb46132009-01-02 13:48:47 +00001108 if (tty)
1109 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111 }
1112 info->pending_bh |= BH_STATUS;
1113}
1114
1115static void dsr_change(MGSLPC_INFO *info)
1116{
1117 get_signals(info);
1118 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1119 port_irq_disable(info, PVR_DSR);
1120 info->icount.dsr++;
1121 if (info->serial_signals & SerialSignal_DSR)
1122 info->input_signal_events.dsr_up++;
1123 else
1124 info->input_signal_events.dsr_down++;
1125 wake_up_interruptible(&info->status_event_wait_q);
1126 wake_up_interruptible(&info->event_wait_q);
1127 info->pending_bh |= BH_STATUS;
1128}
1129
1130static void ri_change(MGSLPC_INFO *info)
1131{
1132 get_signals(info);
1133 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1134 port_irq_disable(info, PVR_RI);
1135 info->icount.rng++;
1136 if (info->serial_signals & SerialSignal_RI)
1137 info->input_signal_events.ri_up++;
1138 else
1139 info->input_signal_events.ri_down++;
1140 wake_up_interruptible(&info->status_event_wait_q);
1141 wake_up_interruptible(&info->event_wait_q);
1142 info->pending_bh |= BH_STATUS;
1143}
1144
1145/* Interrupt service routine entry point.
Jeff Garzikd12341f2007-10-19 15:45:35 -04001146 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001148 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 * irq interrupt number that caused interrupt
1150 * dev_id device ID supplied during interrupt registration
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 */
Jeff Garzika6f97b22007-10-31 05:20:49 -04001152static irqreturn_t mgslpc_isr(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Jeff Garzika6f97b22007-10-31 05:20:49 -04001154 MGSLPC_INFO *info = dev_id;
Alan Coxeeb46132009-01-02 13:48:47 +00001155 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 unsigned short isr;
1157 unsigned char gis, pis;
1158 int count=0;
1159
Jeff Garzikd12341f2007-10-19 15:45:35 -04001160 if (debug_level >= DEBUG_LEVEL_ISR)
Jeff Garzika6f97b22007-10-31 05:20:49 -04001161 printk("mgslpc_isr(%d) entry.\n", info->irq_level);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001162
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001163 if (!(info->p_dev->_locked))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return IRQ_HANDLED;
1165
Alan Coxeeb46132009-01-02 13:48:47 +00001166 tty = tty_port_tty_get(&info->port);
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 spin_lock(&info->lock);
1169
1170 while ((gis = read_reg(info, CHA + GIS))) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001171 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);
1173
1174 if ((gis & 0x70) || count > 1000) {
1175 printk("synclink_cs:hardware failed or ejected\n");
1176 break;
1177 }
1178 count++;
1179
1180 if (gis & (BIT1 + BIT0)) {
1181 isr = read_reg16(info, CHB + ISR);
1182 if (isr & IRQ_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001183 dcd_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (isr & IRQ_CTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001185 cts_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
1187 if (gis & (BIT3 + BIT2))
1188 {
1189 isr = read_reg16(info, CHA + ISR);
1190 if (isr & IRQ_TIMER) {
Joe Perches0fab6de2008-04-28 02:14:02 -07001191 info->irq_occurred = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 irq_disable(info, CHA, IRQ_TIMER);
1193 }
1194
Jeff Garzikd12341f2007-10-19 15:45:35 -04001195 /* receive IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (isr & IRQ_EXITHUNT) {
1197 info->icount.exithunt++;
1198 wake_up_interruptible(&info->event_wait_q);
1199 }
1200 if (isr & IRQ_BREAK_ON) {
1201 info->icount.brk++;
Alan Coxeeb46132009-01-02 13:48:47 +00001202 if (info->port.flags & ASYNC_SAK)
1203 do_SAK(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205 if (isr & IRQ_RXTIME) {
1206 issue_command(info, CHA, CMD_RXFIFO_READ);
1207 }
1208 if (isr & (IRQ_RXEOM + IRQ_RXFIFO)) {
1209 if (info->params.mode == MGSL_MODE_HDLC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04001210 rx_ready_hdlc(info, isr & IRQ_RXEOM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 else
Alan Coxeeb46132009-01-02 13:48:47 +00001212 rx_ready_async(info, isr & IRQ_RXEOM, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214
Jeff Garzikd12341f2007-10-19 15:45:35 -04001215 /* transmit IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (isr & IRQ_UNDERRUN) {
1217 if (info->tx_aborting)
1218 info->icount.txabort++;
1219 else
1220 info->icount.txunder++;
Alan Coxeeb46132009-01-02 13:48:47 +00001221 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223 else if (isr & IRQ_ALLSENT) {
1224 info->icount.txok++;
Alan Coxeeb46132009-01-02 13:48:47 +00001225 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
1227 else if (isr & IRQ_TXFIFO)
Alan Coxeeb46132009-01-02 13:48:47 +00001228 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230 if (gis & BIT7) {
1231 pis = read_reg(info, CHA + PIS);
1232 if (pis & BIT1)
1233 dsr_change(info);
1234 if (pis & BIT2)
1235 ri_change(info);
1236 }
1237 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001238
1239 /* Request bottom half processing if there's something
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 * for it to do and the bh is not already running
1241 */
1242
1243 if (info->pending_bh && !info->bh_running && !info->bh_requested) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001244 if ( debug_level >= DEBUG_LEVEL_ISR )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 printk("%s(%d):%s queueing bh task.\n",
1246 __FILE__,__LINE__,info->device_name);
1247 schedule_work(&info->task);
Joe Perches0fab6de2008-04-28 02:14:02 -07001248 info->bh_requested = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250
1251 spin_unlock(&info->lock);
Alan Coxeeb46132009-01-02 13:48:47 +00001252 tty_kref_put(tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001253
1254 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 printk("%s(%d):mgslpc_isr(%d)exit.\n",
Jeff Garzika6f97b22007-10-31 05:20:49 -04001256 __FILE__, __LINE__, info->irq_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 return IRQ_HANDLED;
1259}
1260
1261/* Initialize and start device.
1262 */
Alan Coxeeb46132009-01-02 13:48:47 +00001263static int startup(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
1265 int retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (debug_level >= DEBUG_LEVEL_INFO)
1268 printk("%s(%d):startup(%s)\n",__FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001269
Alan Coxeeb46132009-01-02 13:48:47 +00001270 if (info->port.flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!info->tx_buf) {
1274 /* allocate a page of memory for a transmit buffer */
1275 info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1276 if (!info->tx_buf) {
1277 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
1278 __FILE__,__LINE__,info->device_name);
1279 return -ENOMEM;
1280 }
1281 }
1282
1283 info->pending_bh = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001284
Paul Fulghuma7482a22005-09-10 00:26:07 -07001285 memset(&info->icount, 0, sizeof(info->icount));
1286
Jiri Slaby40565f12007-02-12 00:52:31 -08001287 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 /* Allocate and claim adapter resources */
1290 retval = claim_resources(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001291
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001292 /* perform existence check and diagnostics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if ( !retval )
1294 retval = adapter_test(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if ( retval ) {
Alan Coxeeb46132009-01-02 13:48:47 +00001297 if (capable(CAP_SYS_ADMIN) && tty)
1298 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 release_resources(info);
1300 return retval;
1301 }
1302
1303 /* program hardware for current parameters */
Alan Coxeeb46132009-01-02 13:48:47 +00001304 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001305
Alan Coxeeb46132009-01-02 13:48:47 +00001306 if (tty)
1307 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Alan Coxeeb46132009-01-02 13:48:47 +00001309 info->port.flags |= ASYNC_INITIALIZED;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return 0;
1312}
1313
1314/* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1315 */
Alan Coxeeb46132009-01-02 13:48:47 +00001316static void shutdown(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001319
Alan Coxeeb46132009-01-02 13:48:47 +00001320 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return;
1322
1323 if (debug_level >= DEBUG_LEVEL_INFO)
1324 printk("%s(%d):mgslpc_shutdown(%s)\n",
1325 __FILE__,__LINE__, info->device_name );
1326
1327 /* clear status wait queue because status changes */
1328 /* can't happen after shutting down the hardware */
1329 wake_up_interruptible(&info->status_event_wait_q);
1330 wake_up_interruptible(&info->event_wait_q);
1331
Jiri Slaby40565f12007-02-12 00:52:31 -08001332 del_timer_sync(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 if (info->tx_buf) {
1335 free_page((unsigned long) info->tx_buf);
1336 info->tx_buf = NULL;
1337 }
1338
1339 spin_lock_irqsave(&info->lock,flags);
1340
1341 rx_stop(info);
1342 tx_stop(info);
1343
1344 /* TODO:disable interrupts instead of reset to preserve signal states */
1345 reset_device(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001346
Alan Cox373f5ae2012-07-19 12:23:28 +01001347 if (!tty || tty->termios.c_cflag & HUPCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
1349 set_signals(info);
1350 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 spin_unlock_irqrestore(&info->lock,flags);
1353
Jeff Garzikd12341f2007-10-19 15:45:35 -04001354 release_resources(info);
1355
Alan Coxeeb46132009-01-02 13:48:47 +00001356 if (tty)
1357 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Alan Coxeeb46132009-01-02 13:48:47 +00001359 info->port.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
Alan Coxeeb46132009-01-02 13:48:47 +00001362static void mgslpc_program_hw(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
1364 unsigned long flags;
1365
1366 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 rx_stop(info);
1369 tx_stop(info);
1370 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
1373 hdlc_mode(info);
1374 else
1375 async_mode(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 set_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 info->dcd_chkcount = 0;
1380 info->cts_chkcount = 0;
1381 info->ri_chkcount = 0;
1382 info->dsr_chkcount = 0;
1383
1384 irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
1385 port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
1386 get_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001387
Alan Cox373f5ae2012-07-19 12:23:28 +01001388 if (info->netcount || (tty && (tty->termios.c_cflag & CREAD)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 rx_start(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 spin_unlock_irqrestore(&info->lock,flags);
1392}
1393
1394/* Reconfigure adapter based on new parameters
1395 */
Alan Coxeeb46132009-01-02 13:48:47 +00001396static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
1398 unsigned cflag;
1399 int bits_per_char;
1400
Alan Cox373f5ae2012-07-19 12:23:28 +01001401 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (debug_level >= DEBUG_LEVEL_INFO)
1405 printk("%s(%d):mgslpc_change_params(%s)\n",
1406 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001407
Alan Cox373f5ae2012-07-19 12:23:28 +01001408 cflag = tty->termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 /* if B0 rate (hangup) specified then negate DTR and RTS */
1411 /* otherwise assert DTR and RTS */
1412 if (cflag & CBAUD)
1413 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
1414 else
1415 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /* byte size and parity */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 switch (cflag & CSIZE) {
1420 case CS5: info->params.data_bits = 5; break;
1421 case CS6: info->params.data_bits = 6; break;
1422 case CS7: info->params.data_bits = 7; break;
1423 case CS8: info->params.data_bits = 8; break;
1424 default: info->params.data_bits = 7; break;
1425 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (cflag & CSTOPB)
1428 info->params.stop_bits = 2;
1429 else
1430 info->params.stop_bits = 1;
1431
1432 info->params.parity = ASYNC_PARITY_NONE;
1433 if (cflag & PARENB) {
1434 if (cflag & PARODD)
1435 info->params.parity = ASYNC_PARITY_ODD;
1436 else
1437 info->params.parity = ASYNC_PARITY_EVEN;
1438#ifdef CMSPAR
1439 if (cflag & CMSPAR)
1440 info->params.parity = ASYNC_PARITY_SPACE;
1441#endif
1442 }
1443
1444 /* calculate number of jiffies to transmit a full
1445 * FIFO (32 bytes) at specified data rate
1446 */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001447 bits_per_char = info->params.data_bits +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 info->params.stop_bits + 1;
1449
1450 /* if port data rate is set to 460800 or less then
1451 * allow tty settings to override, otherwise keep the
1452 * current data rate.
1453 */
1454 if (info->params.data_rate <= 460800) {
Alan Coxeeb46132009-01-02 13:48:47 +00001455 info->params.data_rate = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if ( info->params.data_rate ) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001459 info->timeout = (32*HZ*bits_per_char) /
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 info->params.data_rate;
1461 }
1462 info->timeout += HZ/50; /* Add .02 seconds of slop */
1463
1464 if (cflag & CRTSCTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001465 info->port.flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 else
Alan Coxeeb46132009-01-02 13:48:47 +00001467 info->port.flags &= ~ASYNC_CTS_FLOW;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (cflag & CLOCAL)
Alan Coxeeb46132009-01-02 13:48:47 +00001470 info->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 else
Alan Coxeeb46132009-01-02 13:48:47 +00001472 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 /* process tty input control flags */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 info->read_status_mask = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001477 if (I_INPCK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 info->read_status_mask |= BIT7 | BIT6;
Alan Coxeeb46132009-01-02 13:48:47 +00001479 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 info->ignore_status_mask |= BIT7 | BIT6;
1481
Alan Coxeeb46132009-01-02 13:48:47 +00001482 mgslpc_program_hw(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485/* Add a character to the transmit buffer
1486 */
Alan Coxd7e752e2008-04-30 00:54:04 -07001487static int mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1490 unsigned long flags;
1491
1492 if (debug_level >= DEBUG_LEVEL_INFO) {
1493 printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
1494 __FILE__,__LINE__,ch,info->device_name);
1495 }
1496
1497 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
Alan Coxd7e752e2008-04-30 00:54:04 -07001498 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001500 if (!info->tx_buf)
Alan Coxd7e752e2008-04-30 00:54:04 -07001501 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
1506 if (info->tx_count < TXBUFSIZE - 1) {
1507 info->tx_buf[info->tx_put++] = ch;
1508 info->tx_put &= TXBUFSIZE-1;
1509 info->tx_count++;
1510 }
1511 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 spin_unlock_irqrestore(&info->lock,flags);
Alan Coxd7e752e2008-04-30 00:54:04 -07001514 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517/* Enable transmitter so remaining characters in the
1518 * transmit buffer are sent.
1519 */
1520static void mgslpc_flush_chars(struct tty_struct *tty)
1521{
1522 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1523 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (debug_level >= DEBUG_LEVEL_INFO)
1526 printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1527 __FILE__,__LINE__,info->device_name,info->tx_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
1530 return;
1531
1532 if (info->tx_count <= 0 || tty->stopped ||
1533 tty->hw_stopped || !info->tx_buf)
1534 return;
1535
1536 if (debug_level >= DEBUG_LEVEL_INFO)
1537 printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1538 __FILE__,__LINE__,info->device_name);
1539
1540 spin_lock_irqsave(&info->lock,flags);
1541 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001542 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 spin_unlock_irqrestore(&info->lock,flags);
1544}
1545
1546/* Send a block of data
Jeff Garzikd12341f2007-10-19 15:45:35 -04001547 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001549 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 * tty pointer to tty information structure
1551 * buf pointer to buffer containing send data
1552 * count size of send data in bytes
Jeff Garzikd12341f2007-10-19 15:45:35 -04001553 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 * Returns: number of characters written
1555 */
1556static int mgslpc_write(struct tty_struct * tty,
1557 const unsigned char *buf, int count)
1558{
1559 int c, ret = 0;
1560 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1561 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (debug_level >= DEBUG_LEVEL_INFO)
1564 printk( "%s(%d):mgslpc_write(%s) count=%d\n",
1565 __FILE__,__LINE__,info->device_name,count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001568 !info->tx_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 goto cleanup;
1570
1571 if (info->params.mode == MGSL_MODE_HDLC) {
1572 if (count > TXBUFSIZE) {
1573 ret = -EIO;
1574 goto cleanup;
1575 }
1576 if (info->tx_active)
1577 goto cleanup;
1578 else if (info->tx_count)
1579 goto start;
1580 }
1581
1582 for (;;) {
1583 c = min(count,
1584 min(TXBUFSIZE - info->tx_count - 1,
1585 TXBUFSIZE - info->tx_put));
1586 if (c <= 0)
1587 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 memcpy(info->tx_buf + info->tx_put, buf, c);
1590
1591 spin_lock_irqsave(&info->lock,flags);
1592 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1593 info->tx_count += c;
1594 spin_unlock_irqrestore(&info->lock,flags);
1595
1596 buf += c;
1597 count -= c;
1598 ret += c;
1599 }
1600start:
1601 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
1602 spin_lock_irqsave(&info->lock,flags);
1603 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001604 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 spin_unlock_irqrestore(&info->lock,flags);
1606 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001607cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (debug_level >= DEBUG_LEVEL_INFO)
1609 printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
1610 __FILE__,__LINE__,info->device_name,ret);
1611 return ret;
1612}
1613
1614/* Return the count of free bytes in transmit buffer
1615 */
1616static int mgslpc_write_room(struct tty_struct *tty)
1617{
1618 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1619 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
1622 return 0;
1623
1624 if (info->params.mode == MGSL_MODE_HDLC) {
1625 /* HDLC (frame oriented) mode */
1626 if (info->tx_active)
1627 return 0;
1628 else
1629 return HDLC_MAX_FRAME_SIZE;
1630 } else {
1631 ret = TXBUFSIZE - info->tx_count - 1;
1632 if (ret < 0)
1633 ret = 0;
1634 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (debug_level >= DEBUG_LEVEL_INFO)
1637 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
1638 __FILE__,__LINE__, info->device_name, ret);
1639 return ret;
1640}
1641
1642/* Return the count of bytes in transmit buffer
1643 */
1644static int mgslpc_chars_in_buffer(struct tty_struct *tty)
1645{
1646 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1647 int rc;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (debug_level >= DEBUG_LEVEL_INFO)
1650 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
1651 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
1654 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (info->params.mode == MGSL_MODE_HDLC)
1657 rc = info->tx_active ? info->max_frame_size : 0;
1658 else
1659 rc = info->tx_count;
1660
1661 if (debug_level >= DEBUG_LEVEL_INFO)
1662 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
1663 __FILE__,__LINE__, info->device_name, rc);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return rc;
1666}
1667
1668/* Discard all data in the send buffer
1669 */
1670static void mgslpc_flush_buffer(struct tty_struct *tty)
1671{
1672 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1673 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (debug_level >= DEBUG_LEVEL_INFO)
1676 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
1677 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
1680 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001681
1682 spin_lock_irqsave(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001684 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 spin_unlock_irqrestore(&info->lock,flags);
1686
1687 wake_up_interruptible(&tty->write_wait);
1688 tty_wakeup(tty);
1689}
1690
1691/* Send a high-priority XON/XOFF character
1692 */
1693static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
1694{
1695 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1696 unsigned long flags;
1697
1698 if (debug_level >= DEBUG_LEVEL_INFO)
1699 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
1700 __FILE__,__LINE__, info->device_name, ch );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
1703 return;
1704
1705 info->x_char = ch;
1706 if (ch) {
1707 spin_lock_irqsave(&info->lock,flags);
1708 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001709 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 spin_unlock_irqrestore(&info->lock,flags);
1711 }
1712}
1713
1714/* Signal remote device to throttle send data (our receive data)
1715 */
1716static void mgslpc_throttle(struct tty_struct * tty)
1717{
1718 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1719 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (debug_level >= DEBUG_LEVEL_INFO)
1722 printk("%s(%d):mgslpc_throttle(%s) entry\n",
1723 __FILE__,__LINE__, info->device_name );
1724
1725 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
1726 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (I_IXOFF(tty))
1729 mgslpc_send_xchar(tty, STOP_CHAR(tty));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001730
Alan Cox373f5ae2012-07-19 12:23:28 +01001731 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 spin_lock_irqsave(&info->lock,flags);
1733 info->serial_signals &= ~SerialSignal_RTS;
1734 set_signals(info);
1735 spin_unlock_irqrestore(&info->lock,flags);
1736 }
1737}
1738
1739/* Signal remote device to stop throttling send data (our receive data)
1740 */
1741static void mgslpc_unthrottle(struct tty_struct * tty)
1742{
1743 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1744 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (debug_level >= DEBUG_LEVEL_INFO)
1747 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
1748 __FILE__,__LINE__, info->device_name );
1749
1750 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
1751 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (I_IXOFF(tty)) {
1754 if (info->x_char)
1755 info->x_char = 0;
1756 else
1757 mgslpc_send_xchar(tty, START_CHAR(tty));
1758 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001759
Alan Cox373f5ae2012-07-19 12:23:28 +01001760 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 spin_lock_irqsave(&info->lock,flags);
1762 info->serial_signals |= SerialSignal_RTS;
1763 set_signals(info);
1764 spin_unlock_irqrestore(&info->lock,flags);
1765 }
1766}
1767
1768/* get the current serial statistics
1769 */
1770static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
1771{
1772 int err;
1773 if (debug_level >= DEBUG_LEVEL_INFO)
1774 printk("get_params(%s)\n", info->device_name);
Paul Fulghuma7482a22005-09-10 00:26:07 -07001775 if (!user_icount) {
1776 memset(&info->icount, 0, sizeof(info->icount));
1777 } else {
1778 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
1779 if (err)
1780 return -EFAULT;
1781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return 0;
1783}
1784
1785/* get the current serial parameters
1786 */
1787static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
1788{
1789 int err;
1790 if (debug_level >= DEBUG_LEVEL_INFO)
1791 printk("get_params(%s)\n", info->device_name);
1792 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
1793 if (err)
1794 return -EFAULT;
1795 return 0;
1796}
1797
1798/* set the serial parameters
Jeff Garzikd12341f2007-10-19 15:45:35 -04001799 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001801 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 * info pointer to device instance data
1803 * new_params user buffer containing new serial params
1804 *
1805 * Returns: 0 if success, otherwise error code
1806 */
Alan Coxeeb46132009-01-02 13:48:47 +00001807static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 unsigned long flags;
1810 MGSL_PARAMS tmp_params;
1811 int err;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 if (debug_level >= DEBUG_LEVEL_INFO)
1814 printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
1815 info->device_name );
1816 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
1817 if (err) {
1818 if ( debug_level >= DEBUG_LEVEL_INFO )
1819 printk( "%s(%d):set_params(%s) user buffer copy failed\n",
1820 __FILE__,__LINE__,info->device_name);
1821 return -EFAULT;
1822 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 spin_lock_irqsave(&info->lock,flags);
1825 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
1826 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001827
Alan Coxeeb46132009-01-02 13:48:47 +00001828 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return 0;
1831}
1832
1833static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
1834{
1835 int err;
1836 if (debug_level >= DEBUG_LEVEL_INFO)
1837 printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
1838 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
1839 if (err)
1840 return -EFAULT;
1841 return 0;
1842}
1843
1844static int set_txidle(MGSLPC_INFO * info, int idle_mode)
1845{
1846 unsigned long flags;
1847 if (debug_level >= DEBUG_LEVEL_INFO)
1848 printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
1849 spin_lock_irqsave(&info->lock,flags);
1850 info->idle_mode = idle_mode;
1851 tx_set_idle(info);
1852 spin_unlock_irqrestore(&info->lock,flags);
1853 return 0;
1854}
1855
1856static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
1857{
1858 int err;
1859 if (debug_level >= DEBUG_LEVEL_INFO)
1860 printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
1861 COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
1862 if (err)
1863 return -EFAULT;
1864 return 0;
1865}
1866
1867static int set_interface(MGSLPC_INFO * info, int if_mode)
1868{
1869 unsigned long flags;
1870 unsigned char val;
1871 if (debug_level >= DEBUG_LEVEL_INFO)
1872 printk("set_interface(%s,%d)\n", info->device_name, if_mode);
1873 spin_lock_irqsave(&info->lock,flags);
1874 info->if_mode = if_mode;
1875
1876 val = read_reg(info, PVR) & 0x0f;
1877 switch (info->if_mode)
1878 {
1879 case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
1880 case MGSL_INTERFACE_V35: val |= PVR_V35; break;
1881 case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
1882 }
1883 write_reg(info, PVR, val);
1884
1885 spin_unlock_irqrestore(&info->lock,flags);
1886 return 0;
1887}
1888
Alan Coxeeb46132009-01-02 13:48:47 +00001889static int set_txenable(MGSLPC_INFO * info, int enable, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
1891 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 if (debug_level >= DEBUG_LEVEL_INFO)
1894 printk("set_txenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 spin_lock_irqsave(&info->lock,flags);
1897 if (enable) {
1898 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001899 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 } else {
1901 if (info->tx_enabled)
1902 tx_stop(info);
1903 }
1904 spin_unlock_irqrestore(&info->lock,flags);
1905 return 0;
1906}
1907
1908static int tx_abort(MGSLPC_INFO * info)
1909{
1910 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 if (debug_level >= DEBUG_LEVEL_INFO)
1913 printk("tx_abort(%s)\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 spin_lock_irqsave(&info->lock,flags);
1916 if (info->tx_active && info->tx_count &&
1917 info->params.mode == MGSL_MODE_HDLC) {
1918 /* clear data count so FIFO is not filled on next IRQ.
1919 * This results in underrun and abort transmission.
1920 */
1921 info->tx_count = info->tx_put = info->tx_get = 0;
Joe Perches0fab6de2008-04-28 02:14:02 -07001922 info->tx_aborting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924 spin_unlock_irqrestore(&info->lock,flags);
1925 return 0;
1926}
1927
1928static int set_rxenable(MGSLPC_INFO * info, int enable)
1929{
1930 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (debug_level >= DEBUG_LEVEL_INFO)
1933 printk("set_rxenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 spin_lock_irqsave(&info->lock,flags);
1936 if (enable) {
1937 if (!info->rx_enabled)
1938 rx_start(info);
1939 } else {
1940 if (info->rx_enabled)
1941 rx_stop(info);
1942 }
1943 spin_unlock_irqrestore(&info->lock,flags);
1944 return 0;
1945}
1946
1947/* wait for specified event to occur
Jeff Garzikd12341f2007-10-19 15:45:35 -04001948 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 * Arguments: info pointer to device instance data
1950 * mask pointer to bitmask of events to wait for
1951 * Return Value: 0 if successful and bit mask updated with
1952 * of events triggerred,
1953 * otherwise error code
1954 */
1955static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
1956{
1957 unsigned long flags;
1958 int s;
1959 int rc=0;
1960 struct mgsl_icount cprev, cnow;
1961 int events;
1962 int mask;
1963 struct _input_signal_events oldsigs, newsigs;
1964 DECLARE_WAITQUEUE(wait, current);
1965
1966 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
1967 if (rc)
1968 return -EFAULT;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (debug_level >= DEBUG_LEVEL_INFO)
1971 printk("wait_events(%s,%d)\n", info->device_name, mask);
1972
1973 spin_lock_irqsave(&info->lock,flags);
1974
1975 /* return immediately if state matches requested events */
1976 get_signals(info);
1977 s = info->serial_signals;
1978 events = mask &
1979 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
1980 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
1981 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
1982 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
1983 if (events) {
1984 spin_unlock_irqrestore(&info->lock,flags);
1985 goto exit;
1986 }
1987
1988 /* save current irq counts */
1989 cprev = info->icount;
1990 oldsigs = info->input_signal_events;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if ((info->params.mode == MGSL_MODE_HDLC) &&
1993 (mask & MgslEvent_ExitHuntMode))
1994 irq_enable(info, CHA, IRQ_EXITHUNT);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 set_current_state(TASK_INTERRUPTIBLE);
1997 add_wait_queue(&info->event_wait_q, &wait);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002000
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 for(;;) {
2003 schedule();
2004 if (signal_pending(current)) {
2005 rc = -ERESTARTSYS;
2006 break;
2007 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /* get current irq counts */
2010 spin_lock_irqsave(&info->lock,flags);
2011 cnow = info->icount;
2012 newsigs = info->input_signal_events;
2013 set_current_state(TASK_INTERRUPTIBLE);
2014 spin_unlock_irqrestore(&info->lock,flags);
2015
2016 /* if no change, wait aborted for some reason */
2017 if (newsigs.dsr_up == oldsigs.dsr_up &&
2018 newsigs.dsr_down == oldsigs.dsr_down &&
2019 newsigs.dcd_up == oldsigs.dcd_up &&
2020 newsigs.dcd_down == oldsigs.dcd_down &&
2021 newsigs.cts_up == oldsigs.cts_up &&
2022 newsigs.cts_down == oldsigs.cts_down &&
2023 newsigs.ri_up == oldsigs.ri_up &&
2024 newsigs.ri_down == oldsigs.ri_down &&
2025 cnow.exithunt == cprev.exithunt &&
2026 cnow.rxidle == cprev.rxidle) {
2027 rc = -EIO;
2028 break;
2029 }
2030
2031 events = mask &
2032 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2033 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2034 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2035 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2036 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2037 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2038 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2039 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2040 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2041 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2042 if (events)
2043 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 cprev = cnow;
2046 oldsigs = newsigs;
2047 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 remove_wait_queue(&info->event_wait_q, &wait);
2050 set_current_state(TASK_RUNNING);
2051
2052 if (mask & MgslEvent_ExitHuntMode) {
2053 spin_lock_irqsave(&info->lock,flags);
2054 if (!waitqueue_active(&info->event_wait_q))
2055 irq_disable(info, CHA, IRQ_EXITHUNT);
2056 spin_unlock_irqrestore(&info->lock,flags);
2057 }
2058exit:
2059 if (rc == 0)
2060 PUT_USER(rc, events, mask_ptr);
2061 return rc;
2062}
2063
2064static int modem_input_wait(MGSLPC_INFO *info,int arg)
2065{
2066 unsigned long flags;
2067 int rc;
2068 struct mgsl_icount cprev, cnow;
2069 DECLARE_WAITQUEUE(wait, current);
2070
2071 /* save current irq counts */
2072 spin_lock_irqsave(&info->lock,flags);
2073 cprev = info->icount;
2074 add_wait_queue(&info->status_event_wait_q, &wait);
2075 set_current_state(TASK_INTERRUPTIBLE);
2076 spin_unlock_irqrestore(&info->lock,flags);
2077
2078 for(;;) {
2079 schedule();
2080 if (signal_pending(current)) {
2081 rc = -ERESTARTSYS;
2082 break;
2083 }
2084
2085 /* get new irq counts */
2086 spin_lock_irqsave(&info->lock,flags);
2087 cnow = info->icount;
2088 set_current_state(TASK_INTERRUPTIBLE);
2089 spin_unlock_irqrestore(&info->lock,flags);
2090
2091 /* if no change, wait aborted for some reason */
2092 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2093 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2094 rc = -EIO;
2095 break;
2096 }
2097
2098 /* check for change in caller specified modem input */
2099 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2100 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2101 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2102 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2103 rc = 0;
2104 break;
2105 }
2106
2107 cprev = cnow;
2108 }
2109 remove_wait_queue(&info->status_event_wait_q, &wait);
2110 set_current_state(TASK_RUNNING);
2111 return rc;
2112}
2113
2114/* return the state of the serial control and status signals
2115 */
Alan Cox60b33c12011-02-14 16:26:14 +00002116static int tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
2118 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2119 unsigned int result;
2120 unsigned long flags;
2121
2122 spin_lock_irqsave(&info->lock,flags);
2123 get_signals(info);
2124 spin_unlock_irqrestore(&info->lock,flags);
2125
2126 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2127 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2128 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2129 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2130 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2131 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2132
2133 if (debug_level >= DEBUG_LEVEL_INFO)
2134 printk("%s(%d):%s tiocmget() value=%08X\n",
2135 __FILE__,__LINE__, info->device_name, result );
2136 return result;
2137}
2138
2139/* set modem control signals (DTR/RTS)
2140 */
Alan Cox20b9d172011-02-14 16:26:50 +00002141static int tiocmset(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 unsigned int set, unsigned int clear)
2143{
2144 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2145 unsigned long flags;
2146
2147 if (debug_level >= DEBUG_LEVEL_INFO)
2148 printk("%s(%d):%s tiocmset(%x,%x)\n",
2149 __FILE__,__LINE__,info->device_name, set, clear);
2150
2151 if (set & TIOCM_RTS)
2152 info->serial_signals |= SerialSignal_RTS;
2153 if (set & TIOCM_DTR)
2154 info->serial_signals |= SerialSignal_DTR;
2155 if (clear & TIOCM_RTS)
2156 info->serial_signals &= ~SerialSignal_RTS;
2157 if (clear & TIOCM_DTR)
2158 info->serial_signals &= ~SerialSignal_DTR;
2159
2160 spin_lock_irqsave(&info->lock,flags);
2161 set_signals(info);
2162 spin_unlock_irqrestore(&info->lock,flags);
2163
2164 return 0;
2165}
2166
2167/* Set or clear transmit break condition
2168 *
2169 * Arguments: tty pointer to tty instance data
2170 * break_state -1=set break condition, 0=clear
2171 */
Alan Cox9e989662008-07-22 11:18:03 +01002172static int mgslpc_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
2174 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2175 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (debug_level >= DEBUG_LEVEL_INFO)
2178 printk("%s(%d):mgslpc_break(%s,%d)\n",
2179 __FILE__,__LINE__, info->device_name, break_state);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
Alan Cox9e989662008-07-22 11:18:03 +01002182 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 spin_lock_irqsave(&info->lock,flags);
2185 if (break_state == -1)
2186 set_reg_bits(info, CHA+DAFO, BIT6);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002187 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 clear_reg_bits(info, CHA+DAFO, BIT6);
2189 spin_unlock_irqrestore(&info->lock,flags);
Alan Cox9e989662008-07-22 11:18:03 +01002190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
Alan Cox05871022010-09-16 18:21:52 +01002193static int mgslpc_get_icount(struct tty_struct *tty,
2194 struct serial_icounter_struct *icount)
2195{
2196 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2197 struct mgsl_icount cnow; /* kernel counter temps */
2198 unsigned long flags;
2199
2200 spin_lock_irqsave(&info->lock,flags);
2201 cnow = info->icount;
2202 spin_unlock_irqrestore(&info->lock,flags);
2203
2204 icount->cts = cnow.cts;
2205 icount->dsr = cnow.dsr;
2206 icount->rng = cnow.rng;
2207 icount->dcd = cnow.dcd;
2208 icount->rx = cnow.rx;
2209 icount->tx = cnow.tx;
2210 icount->frame = cnow.frame;
2211 icount->overrun = cnow.overrun;
2212 icount->parity = cnow.parity;
2213 icount->brk = cnow.brk;
2214 icount->buf_overrun = cnow.buf_overrun;
2215
2216 return 0;
2217}
2218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219/* Service an IOCTL request
Jeff Garzikd12341f2007-10-19 15:45:35 -04002220 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002222 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 * tty pointer to tty instance data
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 * cmd IOCTL command code
2225 * arg command argument/context
Jeff Garzikd12341f2007-10-19 15:45:35 -04002226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 * Return Value: 0 if success, otherwise error code
2228 */
Axel Lin751b3842011-03-01 13:12:47 +08002229static int mgslpc_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 unsigned int cmd, unsigned long arg)
2231{
2232 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002233 void __user *argp = (void __user *)arg;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (debug_level >= DEBUG_LEVEL_INFO)
2236 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
2237 info->device_name, cmd );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
2240 return -ENODEV;
2241
2242 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
Alan Cox05871022010-09-16 18:21:52 +01002243 (cmd != TIOCMIWAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 if (tty->flags & (1 << TTY_IO_ERROR))
2245 return -EIO;
2246 }
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 switch (cmd) {
2249 case MGSL_IOCGPARAMS:
2250 return get_params(info, argp);
2251 case MGSL_IOCSPARAMS:
Alan Coxeeb46132009-01-02 13:48:47 +00002252 return set_params(info, argp, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 case MGSL_IOCGTXIDLE:
2254 return get_txidle(info, argp);
2255 case MGSL_IOCSTXIDLE:
2256 return set_txidle(info, (int)arg);
2257 case MGSL_IOCGIF:
2258 return get_interface(info, argp);
2259 case MGSL_IOCSIF:
2260 return set_interface(info,(int)arg);
2261 case MGSL_IOCTXENABLE:
Alan Coxeeb46132009-01-02 13:48:47 +00002262 return set_txenable(info,(int)arg, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 case MGSL_IOCRXENABLE:
2264 return set_rxenable(info,(int)arg);
2265 case MGSL_IOCTXABORT:
2266 return tx_abort(info);
2267 case MGSL_IOCGSTATS:
2268 return get_stats(info, argp);
2269 case MGSL_IOCWAITEVENT:
2270 return wait_events(info, argp);
2271 case TIOCMIWAIT:
2272 return modem_input_wait(info,(int)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 default:
2274 return -ENOIOCTLCMD;
2275 }
2276 return 0;
2277}
2278
2279/* Set new termios settings
Jeff Garzikd12341f2007-10-19 15:45:35 -04002280 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002282 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 * tty pointer to tty structure
2284 * termios pointer to buffer to hold returned old termios
2285 */
Alan Cox606d0992006-12-08 02:38:45 -08002286static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
2288 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2289 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 if (debug_level >= DEBUG_LEVEL_INFO)
2292 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__,__LINE__,
2293 tty->driver->name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 /* just return if nothing has changed */
Alan Cox373f5ae2012-07-19 12:23:28 +01002296 if ((tty->termios.c_cflag == old_termios->c_cflag)
2297 && (RELEVANT_IFLAG(tty->termios.c_iflag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 == RELEVANT_IFLAG(old_termios->c_iflag)))
2299 return;
2300
Alan Coxeeb46132009-01-02 13:48:47 +00002301 mgslpc_change_params(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 /* Handle transition to B0 status */
2304 if (old_termios->c_cflag & CBAUD &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002305 !(tty->termios.c_cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2307 spin_lock_irqsave(&info->lock,flags);
2308 set_signals(info);
2309 spin_unlock_irqrestore(&info->lock,flags);
2310 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 /* Handle transition away from B0 status */
2313 if (!(old_termios->c_cflag & CBAUD) &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002314 tty->termios.c_cflag & CBAUD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 info->serial_signals |= SerialSignal_DTR;
Alan Cox373f5ae2012-07-19 12:23:28 +01002316 if (!(tty->termios.c_cflag & CRTSCTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 !test_bit(TTY_THROTTLED, &tty->flags)) {
2318 info->serial_signals |= SerialSignal_RTS;
2319 }
2320 spin_lock_irqsave(&info->lock,flags);
2321 set_signals(info);
2322 spin_unlock_irqrestore(&info->lock,flags);
2323 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 /* Handle turning off CRTSCTS */
2326 if (old_termios->c_cflag & CRTSCTS &&
Alan Cox373f5ae2012-07-19 12:23:28 +01002327 !(tty->termios.c_cflag & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 tty->hw_stopped = 0;
2329 tx_release(tty);
2330 }
2331}
2332
2333static void mgslpc_close(struct tty_struct *tty, struct file * filp)
2334{
2335 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002336 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
2338 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
2339 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (debug_level >= DEBUG_LEVEL_INFO)
2342 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002343 __FILE__,__LINE__, info->device_name, port->count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002344
Alan Coxeeb46132009-01-02 13:48:47 +00002345 WARN_ON(!port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Alan Coxeeb46132009-01-02 13:48:47 +00002347 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 goto cleanup;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002349
Alan Coxeeb46132009-01-02 13:48:47 +00002350 if (port->flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 mgslpc_wait_until_sent(tty, info->timeout);
2352
Alan Cox978e5952008-04-30 00:53:59 -07002353 mgslpc_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Alan Cox978e5952008-04-30 00:53:59 -07002355 tty_ldisc_flush(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002356 shutdown(info, tty);
2357
2358 tty_port_close_end(port, tty);
2359 tty_port_tty_set(port, NULL);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002360cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if (debug_level >= DEBUG_LEVEL_INFO)
2362 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__,__LINE__,
Alan Coxeeb46132009-01-02 13:48:47 +00002363 tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364}
2365
2366/* Wait until the transmitter is empty.
2367 */
2368static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
2369{
2370 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2371 unsigned long orig_jiffies, char_time;
2372
2373 if (!info )
2374 return;
2375
2376 if (debug_level >= DEBUG_LEVEL_INFO)
2377 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
2378 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
2381 return;
2382
Alan Coxeeb46132009-01-02 13:48:47 +00002383 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 goto exit;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 orig_jiffies = jiffies;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 /* Set check interval to 1/5 of estimated time to
2389 * send a character, and make it at least 1. The check
2390 * interval should also be less than the timeout.
2391 * Note: use tight timings here to satisfy the NIST-PCTS.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002392 */
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 if ( info->params.data_rate ) {
2395 char_time = info->timeout/(32 * 5);
2396 if (!char_time)
2397 char_time++;
2398 } else
2399 char_time = 1;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (timeout)
2402 char_time = min_t(unsigned long, char_time, timeout);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 if (info->params.mode == MGSL_MODE_HDLC) {
2405 while (info->tx_active) {
2406 msleep_interruptible(jiffies_to_msecs(char_time));
2407 if (signal_pending(current))
2408 break;
2409 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2410 break;
2411 }
2412 } else {
2413 while ((info->tx_count || info->tx_active) &&
2414 info->tx_enabled) {
2415 msleep_interruptible(jiffies_to_msecs(char_time));
2416 if (signal_pending(current))
2417 break;
2418 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2419 break;
2420 }
2421 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423exit:
2424 if (debug_level >= DEBUG_LEVEL_INFO)
2425 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
2426 __FILE__,__LINE__, info->device_name );
2427}
2428
2429/* Called by tty_hangup() when a hangup is signaled.
2430 * This is the same as closing all open files for the port.
2431 */
2432static void mgslpc_hangup(struct tty_struct *tty)
2433{
2434 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (debug_level >= DEBUG_LEVEL_INFO)
2437 printk("%s(%d):mgslpc_hangup(%s)\n",
2438 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
2441 return;
2442
2443 mgslpc_flush_buffer(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002444 shutdown(info, tty);
2445 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
Alan Coxeeb46132009-01-02 13:48:47 +00002448static int carrier_raised(struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
Alan Coxeeb46132009-01-02 13:48:47 +00002450 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2451 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002452
Alan Coxeeb46132009-01-02 13:48:47 +00002453 spin_lock_irqsave(&info->lock,flags);
2454 get_signals(info);
2455 spin_unlock_irqrestore(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Alan Coxeeb46132009-01-02 13:48:47 +00002457 if (info->serial_signals & SerialSignal_DCD)
2458 return 1;
2459 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460}
2461
Alan Coxfcc8ac12009-06-11 12:24:17 +01002462static void dtr_rts(struct tty_port *port, int onoff)
Alan Coxeeb46132009-01-02 13:48:47 +00002463{
2464 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2465 unsigned long flags;
2466
2467 spin_lock_irqsave(&info->lock,flags);
Alan Coxfcc8ac12009-06-11 12:24:17 +01002468 if (onoff)
2469 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
2470 else
2471 info->serial_signals &= ~SerialSignal_RTS + SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00002472 set_signals(info);
2473 spin_unlock_irqrestore(&info->lock,flags);
2474}
2475
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2478{
2479 MGSLPC_INFO *info;
Alan Coxeeb46132009-01-02 13:48:47 +00002480 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 int retval, line;
2482 unsigned long flags;
2483
Jeff Garzikd12341f2007-10-19 15:45:35 -04002484 /* verify range of specified line number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 line = tty->index;
Jiri Slaby410235f2012-03-05 14:52:01 +01002486 if (line >= mgslpc_device_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
2488 __FILE__,__LINE__,line);
2489 return -ENODEV;
2490 }
2491
2492 /* find the info structure for the specified line */
2493 info = mgslpc_device_list;
2494 while(info && info->line != line)
2495 info = info->next_device;
2496 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
2497 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002498
Alan Coxeeb46132009-01-02 13:48:47 +00002499 port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 tty->driver_data = info;
Alan Coxeeb46132009-01-02 13:48:47 +00002501 tty_port_tty_set(port, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002502
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (debug_level >= DEBUG_LEVEL_INFO)
2504 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002505 __FILE__,__LINE__,tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 /* If port is closing, signal caller to try again */
Alan Coxeeb46132009-01-02 13:48:47 +00002508 if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING){
2509 if (port->flags & ASYNC_CLOSING)
2510 interruptible_sleep_on(&port->close_wait);
2511 retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 -EAGAIN : -ERESTARTSYS);
2513 goto cleanup;
2514 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002515
Alan Coxeeb46132009-01-02 13:48:47 +00002516 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 spin_lock_irqsave(&info->netlock, flags);
2519 if (info->netcount) {
2520 retval = -EBUSY;
2521 spin_unlock_irqrestore(&info->netlock, flags);
2522 goto cleanup;
2523 }
Alan Coxeeb46132009-01-02 13:48:47 +00002524 spin_lock(&port->lock);
2525 port->count++;
2526 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 spin_unlock_irqrestore(&info->netlock, flags);
2528
Alan Coxeeb46132009-01-02 13:48:47 +00002529 if (port->count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 /* 1st open on this device, init hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00002531 retval = startup(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (retval < 0)
2533 goto cleanup;
2534 }
2535
Alan Coxeeb46132009-01-02 13:48:47 +00002536 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (retval) {
2538 if (debug_level >= DEBUG_LEVEL_INFO)
2539 printk("%s(%d):block_til_ready(%s) returned %d\n",
2540 __FILE__,__LINE__, info->device_name, retval);
2541 goto cleanup;
2542 }
2543
2544 if (debug_level >= DEBUG_LEVEL_INFO)
2545 printk("%s(%d):mgslpc_open(%s) success\n",
2546 __FILE__,__LINE__, info->device_name);
2547 retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002548
2549cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 return retval;
2551}
2552
2553/*
2554 * /proc fs routines....
2555 */
2556
Alexey Dobriyan87687142009-03-31 15:19:17 -07002557static inline void line_info(struct seq_file *m, MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 char stat_buf[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 unsigned long flags;
2561
Alexey Dobriyan87687142009-03-31 15:19:17 -07002562 seq_printf(m, "%s:io:%04X irq:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 info->device_name, info->io_base, info->irq_level);
2564
2565 /* output current serial signal states */
2566 spin_lock_irqsave(&info->lock,flags);
2567 get_signals(info);
2568 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 stat_buf[0] = 0;
2571 stat_buf[1] = 0;
2572 if (info->serial_signals & SerialSignal_RTS)
2573 strcat(stat_buf, "|RTS");
2574 if (info->serial_signals & SerialSignal_CTS)
2575 strcat(stat_buf, "|CTS");
2576 if (info->serial_signals & SerialSignal_DTR)
2577 strcat(stat_buf, "|DTR");
2578 if (info->serial_signals & SerialSignal_DSR)
2579 strcat(stat_buf, "|DSR");
2580 if (info->serial_signals & SerialSignal_DCD)
2581 strcat(stat_buf, "|CD");
2582 if (info->serial_signals & SerialSignal_RI)
2583 strcat(stat_buf, "|RI");
2584
2585 if (info->params.mode == MGSL_MODE_HDLC) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002586 seq_printf(m, " HDLC txok:%d rxok:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 info->icount.txok, info->icount.rxok);
2588 if (info->icount.txunder)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002589 seq_printf(m, " txunder:%d", info->icount.txunder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (info->icount.txabort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002591 seq_printf(m, " txabort:%d", info->icount.txabort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 if (info->icount.rxshort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002593 seq_printf(m, " rxshort:%d", info->icount.rxshort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 if (info->icount.rxlong)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002595 seq_printf(m, " rxlong:%d", info->icount.rxlong);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 if (info->icount.rxover)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002597 seq_printf(m, " rxover:%d", info->icount.rxover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 if (info->icount.rxcrc)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002599 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 } else {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002601 seq_printf(m, " ASYNC tx:%d rx:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 info->icount.tx, info->icount.rx);
2603 if (info->icount.frame)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002604 seq_printf(m, " fe:%d", info->icount.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (info->icount.parity)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002606 seq_printf(m, " pe:%d", info->icount.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 if (info->icount.brk)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002608 seq_printf(m, " brk:%d", info->icount.brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 if (info->icount.overrun)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002610 seq_printf(m, " oe:%d", info->icount.overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 /* Append serial signal status to end */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002614 seq_printf(m, " %s\n", stat_buf+1);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002615
Alexey Dobriyan87687142009-03-31 15:19:17 -07002616 seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 info->tx_active,info->bh_requested,info->bh_running,
2618 info->pending_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
2621/* Called to print information about devices
2622 */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002623static int mgslpc_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 MGSLPC_INFO *info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002626
Alexey Dobriyan87687142009-03-31 15:19:17 -07002627 seq_printf(m, "synclink driver:%s\n", driver_version);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 info = mgslpc_device_list;
2630 while( info ) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002631 line_info(m, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 info = info->next_device;
2633 }
Alexey Dobriyan87687142009-03-31 15:19:17 -07002634 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
Alexey Dobriyan87687142009-03-31 15:19:17 -07002637static int mgslpc_proc_open(struct inode *inode, struct file *file)
2638{
2639 return single_open(file, mgslpc_proc_show, NULL);
2640}
2641
2642static const struct file_operations mgslpc_proc_fops = {
2643 .owner = THIS_MODULE,
2644 .open = mgslpc_proc_open,
2645 .read = seq_read,
2646 .llseek = seq_lseek,
2647 .release = single_release,
2648};
2649
Peter Hagervallcdaad342006-06-23 02:06:04 -07002650static int rx_alloc_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651{
2652 /* each buffer has header and data */
2653 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;
2654
2655 /* calculate total allocation size for 8 buffers */
2656 info->rx_buf_total_size = info->rx_buf_size * 8;
2657
2658 /* limit total allocated memory */
2659 if (info->rx_buf_total_size > 0x10000)
2660 info->rx_buf_total_size = 0x10000;
2661
2662 /* calculate number of buffers */
2663 info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;
2664
2665 info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
2666 if (info->rx_buf == NULL)
2667 return -ENOMEM;
2668
2669 rx_reset_buffers(info);
2670 return 0;
2671}
2672
Peter Hagervallcdaad342006-06-23 02:06:04 -07002673static void rx_free_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
Jesper Juhl735d5662005-11-07 01:01:29 -08002675 kfree(info->rx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 info->rx_buf = NULL;
2677}
2678
Peter Hagervallcdaad342006-06-23 02:06:04 -07002679static int claim_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
2681 if (rx_alloc_buffers(info) < 0 ) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002682 printk( "Can't allocate rx buffer %s\n", info->device_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 release_resources(info);
2684 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 return 0;
2687}
2688
Peter Hagervallcdaad342006-06-23 02:06:04 -07002689static void release_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691 if (debug_level >= DEBUG_LEVEL_INFO)
2692 printk("release_resources(%s)\n", info->device_name);
2693 rx_free_buffers(info);
2694}
2695
2696/* Add the specified device instance data structure to the
2697 * global linked list of devices and increment the device count.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002698 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 * Arguments: info pointer to device instance data
2700 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07002701static void mgslpc_add_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
2703 info->next_device = NULL;
2704 info->line = mgslpc_device_count;
2705 sprintf(info->device_name,"ttySLP%d",info->line);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 if (info->line < MAX_DEVICE_COUNT) {
2708 if (maxframe[info->line])
2709 info->max_frame_size = maxframe[info->line];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
2711
2712 mgslpc_device_count++;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002713
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 if (!mgslpc_device_list)
2715 mgslpc_device_list = info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002716 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 MGSLPC_INFO *current_dev = mgslpc_device_list;
2718 while( current_dev->next_device )
2719 current_dev = current_dev->next_device;
2720 current_dev->next_device = info;
2721 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 if (info->max_frame_size < 4096)
2724 info->max_frame_size = 4096;
2725 else if (info->max_frame_size > 65535)
2726 info->max_frame_size = 65535;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
2729 info->device_name, info->io_base, info->irq_level);
2730
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002731#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 hdlcdev_init(info);
2733#endif
Jiri Slaby16a10652012-08-07 21:47:53 +02002734 tty_port_register_device(&info->port, serial_driver, info->line,
2735 &info->p_dev.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736}
2737
Peter Hagervallcdaad342006-06-23 02:06:04 -07002738static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739{
2740 MGSLPC_INFO *info = mgslpc_device_list;
2741 MGSLPC_INFO *last = NULL;
2742
2743 while(info) {
2744 if (info == remove_info) {
2745 if (last)
2746 last->next_device = info->next_device;
2747 else
2748 mgslpc_device_list = info->next_device;
Jiri Slaby16a10652012-08-07 21:47:53 +02002749 tty_unregister_device(serial_driver, info->line);
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002750#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 hdlcdev_exit(info);
2752#endif
2753 release_resources(info);
2754 kfree(info);
2755 mgslpc_device_count--;
2756 return;
2757 }
2758 last = info;
2759 info = info->next_device;
2760 }
2761}
2762
Joe Perches25f8f542011-05-03 19:29:01 -07002763static const struct pcmcia_device_id mgslpc_ids[] = {
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002764 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2765 PCMCIA_DEVICE_NULL
2766};
2767MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
2768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769static struct pcmcia_driver mgslpc_driver = {
2770 .owner = THIS_MODULE,
Dominik Brodowski2e9b9812010-08-08 11:36:26 +02002771 .name = "synclink_cs",
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02002772 .probe = mgslpc_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01002773 .remove = mgslpc_detach,
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002774 .id_table = mgslpc_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01002775 .suspend = mgslpc_suspend,
2776 .resume = mgslpc_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777};
2778
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002779static const struct tty_operations mgslpc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 .open = mgslpc_open,
2781 .close = mgslpc_close,
2782 .write = mgslpc_write,
2783 .put_char = mgslpc_put_char,
2784 .flush_chars = mgslpc_flush_chars,
2785 .write_room = mgslpc_write_room,
2786 .chars_in_buffer = mgslpc_chars_in_buffer,
2787 .flush_buffer = mgslpc_flush_buffer,
2788 .ioctl = mgslpc_ioctl,
2789 .throttle = mgslpc_throttle,
2790 .unthrottle = mgslpc_unthrottle,
2791 .send_xchar = mgslpc_send_xchar,
2792 .break_ctl = mgslpc_break,
2793 .wait_until_sent = mgslpc_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 .set_termios = mgslpc_set_termios,
2795 .stop = tx_pause,
2796 .start = tx_release,
2797 .hangup = mgslpc_hangup,
2798 .tiocmget = tiocmget,
2799 .tiocmset = tiocmset,
Andres Salomondc98d962010-11-09 14:10:38 -08002800 .get_icount = mgslpc_get_icount,
Alexey Dobriyan87687142009-03-31 15:19:17 -07002801 .proc_fops = &mgslpc_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802};
2803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804static int __init synclink_cs_init(void)
2805{
2806 int rc;
2807
2808 if (break_on_load) {
2809 mgslpc_get_text_ptr();
2810 BREAKPOINT();
2811 }
2812
Jiri Slaby16a10652012-08-07 21:47:53 +02002813 serial_driver = tty_alloc_driver(MAX_DEVICE_COUNT,
2814 TTY_DRIVER_REAL_RAW |
2815 TTY_DRIVER_DYNAMIC_DEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 if (!serial_driver) {
2817 rc = -ENOMEM;
Jiri Slaby16a10652012-08-07 21:47:53 +02002818 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 }
2820
2821 /* Initialize the tty_driver structure */
Jeff Garzikd12341f2007-10-19 15:45:35 -04002822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 serial_driver->driver_name = "synclink_cs";
2824 serial_driver->name = "ttySLP";
2825 serial_driver->major = ttymajor;
2826 serial_driver->minor_start = 64;
2827 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
2828 serial_driver->subtype = SERIAL_TYPE_NORMAL;
2829 serial_driver->init_termios = tty_std_termios;
2830 serial_driver->init_termios.c_cflag =
2831 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 tty_set_operations(serial_driver, &mgslpc_ops);
2833
2834 if ((rc = tty_register_driver(serial_driver)) < 0) {
2835 printk("%s(%d):Couldn't register serial driver\n",
2836 __FILE__,__LINE__);
Jiri Slaby737586f2012-08-07 21:47:52 +02002837 goto err_put_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002839
Jiri Slaby16a10652012-08-07 21:47:53 +02002840 rc = pcmcia_register_driver(&mgslpc_driver);
2841 if (rc < 0)
2842 goto err_unreg_tty;
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 printk("%s %s, tty major#%d\n",
2845 driver_name, driver_version,
2846 serial_driver->major);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002847
Jiri Slaby737586f2012-08-07 21:47:52 +02002848 return 0;
Jiri Slaby16a10652012-08-07 21:47:53 +02002849err_unreg_tty:
2850 tty_unregister_driver(serial_driver);
Jiri Slaby737586f2012-08-07 21:47:52 +02002851err_put_tty:
2852 put_tty_driver(serial_driver);
Jiri Slaby16a10652012-08-07 21:47:53 +02002853err:
Jiri Slaby737586f2012-08-07 21:47:52 +02002854 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855}
2856
Jeff Garzikd12341f2007-10-19 15:45:35 -04002857static void __exit synclink_cs_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
Jiri Slaby16a10652012-08-07 21:47:53 +02002859 pcmcia_unregister_driver(&mgslpc_driver);
Jiri Slaby737586f2012-08-07 21:47:52 +02002860 tty_unregister_driver(serial_driver);
2861 put_tty_driver(serial_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
2863
2864module_init(synclink_cs_init);
2865module_exit(synclink_cs_exit);
2866
2867static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
2868{
2869 unsigned int M, N;
2870 unsigned char val;
2871
Jeff Garzikd12341f2007-10-19 15:45:35 -04002872 /* note:standard BRG mode is broken in V3.2 chip
2873 * so enhanced mode is always used
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 */
2875
2876 if (rate) {
2877 N = 3686400 / rate;
2878 if (!N)
2879 N = 1;
2880 N >>= 1;
2881 for (M = 1; N > 64 && M < 16; M++)
2882 N >>= 1;
2883 N--;
2884
2885 /* BGR[5..0] = N
2886 * BGR[9..6] = M
2887 * BGR[7..0] contained in BGR register
2888 * BGR[9..8] contained in CCR2[7..6]
2889 * divisor = (N+1)*2^M
2890 *
2891 * Note: M *must* not be zero (causes asymetric duty cycle)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002892 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 write_reg(info, (unsigned char) (channel + BGR),
2894 (unsigned char) ((M << 6) + N));
2895 val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
2896 val |= ((M << 4) & 0xc0);
2897 write_reg(info, (unsigned char) (channel + CCR2), val);
2898 }
2899}
2900
2901/* Enabled the AUX clock output at the specified frequency.
2902 */
2903static void enable_auxclk(MGSLPC_INFO *info)
2904{
2905 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002906
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 /* MODE
2908 *
2909 * 07..06 MDS[1..0] 10 = transparent HDLC mode
2910 * 05 ADM Address Mode, 0 = no addr recognition
2911 * 04 TMD Timer Mode, 0 = external
2912 * 03 RAC Receiver Active, 0 = inactive
2913 * 02 RTS 0=RTS active during xmit, 1=RTS always active
2914 * 01 TRS Timer Resolution, 1=512
2915 * 00 TLP Test Loop, 0 = no loop
2916 *
2917 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04002918 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 val = 0x82;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002920
2921 /* channel B RTS is used to enable AUXCLK driver on SP505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2923 val |= BIT2;
2924 write_reg(info, CHB + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 /* CCR0
2927 *
2928 * 07 PU Power Up, 1=active, 0=power down
2929 * 06 MCE Master Clock Enable, 1=enabled
2930 * 05 Reserved, 0
2931 * 04..02 SC[2..0] Encoding
2932 * 01..00 SM[1..0] Serial Mode, 00=HDLC
2933 *
2934 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002935 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 write_reg(info, CHB + CCR0, 0xc0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 /* CCR1
2939 *
2940 * 07 SFLG Shared Flag, 0 = disable shared flags
2941 * 06 GALP Go Active On Loop, 0 = not used
2942 * 05 GLP Go On Loop, 0 = not used
2943 * 04 ODS Output Driver Select, 1=TxD is push-pull output
2944 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
2945 * 02..00 CM[2..0] Clock Mode
2946 *
2947 * 0001 0111
Jeff Garzikd12341f2007-10-19 15:45:35 -04002948 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 write_reg(info, CHB + CCR1, 0x17);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 /* CCR2 (Channel B)
2952 *
2953 * 07..06 BGR[9..8] Baud rate bits 9..8
2954 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
2955 * 04 SSEL Clock source select, 1=submode b
2956 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
2957 * 02 RWX Read/Write Exchange 0=disabled
2958 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
2959 * 00 DIV, data inversion 0=disabled, 1=enabled
2960 *
2961 * 0011 1000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2964 write_reg(info, CHB + CCR2, 0x38);
2965 else
2966 write_reg(info, CHB + CCR2, 0x30);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 /* CCR4
2969 *
2970 * 07 MCK4 Master Clock Divide by 4, 1=enabled
2971 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
2972 * 05 TST1 Test Pin, 0=normal operation
2973 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
2974 * 03..02 Reserved, must be 0
2975 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
2976 *
2977 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 write_reg(info, CHB + CCR4, 0x50);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002980
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 /* if auxclk not enabled, set internal BRG so
2982 * CTS transitions can be detected (requires TxC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2985 mgslpc_set_rate(info, CHB, info->params.clock_speed);
2986 else
2987 mgslpc_set_rate(info, CHB, 921600);
2988}
2989
Jeff Garzikd12341f2007-10-19 15:45:35 -04002990static void loopback_enable(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991{
2992 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002993
2994 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 val = read_reg(info, CHA + CCR1) | (BIT2 + BIT1 + BIT0);
2996 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002997
2998 /* CCR2:04 SSEL Clock source select, 1=submode b */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 val = read_reg(info, CHA + CCR2) | (BIT4 + BIT5);
3000 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003001
3002 /* set LinkSpeed if available, otherwise default to 2Mbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 if (info->params.clock_speed)
3004 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3005 else
3006 mgslpc_set_rate(info, CHA, 1843200);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003007
3008 /* MODE:00 TLP Test Loop, 1=loopback enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 val = read_reg(info, CHA + MODE) | BIT0;
3010 write_reg(info, CHA + MODE, val);
3011}
3012
Peter Hagervallcdaad342006-06-23 02:06:04 -07003013static void hdlc_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014{
3015 unsigned char val;
3016 unsigned char clkmode, clksubmode;
3017
Jeff Garzikd12341f2007-10-19 15:45:35 -04003018 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 irq_disable(info, CHA, 0xffff);
3020 irq_disable(info, CHB, 0xffff);
3021 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003022
3023 /* assume clock mode 0a, rcv=RxC xmt=TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 clkmode = clksubmode = 0;
3025 if (info->params.flags & HDLC_FLAG_RXC_DPLL
3026 && info->params.flags & HDLC_FLAG_TXC_DPLL) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003027 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 clkmode = 7;
3029 } else if (info->params.flags & HDLC_FLAG_RXC_BRG
3030 && info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003031 /* clock mode 7b, rcv = BRG, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 clkmode = 7;
3033 clksubmode = 1;
3034 } else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
3035 if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003036 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 clkmode = 6;
3038 clksubmode = 1;
3039 } else {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003040 /* clock mode 6a, rcv = DPLL, xmt = TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 clkmode = 6;
3042 }
3043 } else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003044 /* clock mode 0b, rcv = RxC, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 clksubmode = 1;
3046 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003047
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 /* MODE
3049 *
3050 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3051 * 05 ADM Address Mode, 0 = no addr recognition
3052 * 04 TMD Timer Mode, 0 = external
3053 * 03 RAC Receiver Active, 0 = inactive
3054 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3055 * 01 TRS Timer Resolution, 1=512
3056 * 00 TLP Test Loop, 0 = no loop
3057 *
3058 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04003059 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 val = 0x82;
3061 if (info->params.loopback)
3062 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003063
3064 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 if (info->serial_signals & SerialSignal_RTS)
3066 val |= BIT2;
3067 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 /* CCR0
3070 *
3071 * 07 PU Power Up, 1=active, 0=power down
3072 * 06 MCE Master Clock Enable, 1=enabled
3073 * 05 Reserved, 0
3074 * 04..02 SC[2..0] Encoding
3075 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3076 *
3077 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003078 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 val = 0xc0;
3080 switch (info->params.encoding)
3081 {
3082 case HDLC_ENCODING_NRZI:
3083 val |= BIT3;
3084 break;
3085 case HDLC_ENCODING_BIPHASE_SPACE:
3086 val |= BIT4;
3087 break; // FM0
3088 case HDLC_ENCODING_BIPHASE_MARK:
3089 val |= BIT4 + BIT2;
3090 break; // FM1
3091 case HDLC_ENCODING_BIPHASE_LEVEL:
3092 val |= BIT4 + BIT3;
3093 break; // Manchester
3094 }
3095 write_reg(info, CHA + CCR0, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 /* CCR1
3098 *
3099 * 07 SFLG Shared Flag, 0 = disable shared flags
3100 * 06 GALP Go Active On Loop, 0 = not used
3101 * 05 GLP Go On Loop, 0 = not used
3102 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3103 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3104 * 02..00 CM[2..0] Clock Mode
3105 *
3106 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 val = 0x10 + clkmode;
3109 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 /* CCR2
3112 *
3113 * 07..06 BGR[9..8] Baud rate bits 9..8
3114 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3115 * 04 SSEL Clock source select, 1=submode b
3116 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3117 * 02 RWX Read/Write Exchange 0=disabled
3118 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3119 * 00 DIV, data inversion 0=disabled, 1=enabled
3120 *
3121 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003122 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 val = 0x00;
3124 if (clkmode == 2 || clkmode == 3 || clkmode == 6
3125 || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
3126 val |= BIT5;
3127 if (clksubmode)
3128 val |= BIT4;
3129 if (info->params.crc_type == HDLC_CRC_32_CCITT)
3130 val |= BIT1;
3131 if (info->params.encoding == HDLC_ENCODING_NRZB)
3132 val |= BIT0;
3133 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003134
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 /* CCR3
3136 *
3137 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3138 * 05 EPT Enable preamble transmission, 1=enabled
3139 * 04 RADD Receive address pushed to FIFO, 0=disabled
3140 * 03 CRL CRC Reset Level, 0=FFFF
3141 * 02 RCRC Rx CRC 0=On 1=Off
3142 * 01 TCRC Tx CRC 0=On 1=Off
3143 * 00 PSD DPLL Phase Shift Disable
3144 *
3145 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003146 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 val = 0x00;
3148 if (info->params.crc_type == HDLC_CRC_NONE)
3149 val |= BIT2 + BIT1;
3150 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
3151 val |= BIT5;
3152 switch (info->params.preamble_length)
3153 {
3154 case HDLC_PREAMBLE_LENGTH_16BITS:
3155 val |= BIT6;
3156 break;
3157 case HDLC_PREAMBLE_LENGTH_32BITS:
3158 val |= BIT6;
3159 break;
3160 case HDLC_PREAMBLE_LENGTH_64BITS:
3161 val |= BIT7 + BIT6;
3162 break;
3163 }
3164 write_reg(info, CHA + CCR3, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003165
3166 /* PRE - Preamble pattern */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 val = 0;
3168 switch (info->params.preamble)
3169 {
3170 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
3171 case HDLC_PREAMBLE_PATTERN_10: val = 0xaa; break;
3172 case HDLC_PREAMBLE_PATTERN_01: val = 0x55; break;
3173 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
3174 }
3175 write_reg(info, CHA + PRE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 /* CCR4
3178 *
3179 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3180 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3181 * 05 TST1 Test Pin, 0=normal operation
3182 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3183 * 03..02 Reserved, must be 0
3184 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3185 *
3186 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 val = 0x50;
3189 write_reg(info, CHA + CCR4, val);
3190 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
3191 mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
3192 else
3193 mgslpc_set_rate(info, CHA, info->params.clock_speed);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 /* RLCR Receive length check register
3196 *
3197 * 7 1=enable receive length check
3198 * 6..0 Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003199 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 /* XBCH Transmit Byte Count High
3203 *
3204 * 07 DMA mode, 0 = interrupt driven
3205 * 06 NRM, 0=ABM (ignored)
3206 * 05 CAS Carrier Auto Start
3207 * 04 XC Transmit Continuously (ignored)
3208 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3209 *
3210 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003211 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 val = 0x00;
3213 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3214 val |= BIT5;
3215 write_reg(info, CHA + XBCH, val);
3216 enable_auxclk(info);
3217 if (info->params.loopback || info->testing_irq)
3218 loopback_enable(info);
3219 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3220 {
3221 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003222 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 set_reg_bits(info, CHA + PVR, BIT3);
3224 } else
3225 clear_reg_bits(info, CHA + PVR, BIT3);
3226
3227 irq_enable(info, CHA,
3228 IRQ_RXEOM + IRQ_RXFIFO + IRQ_ALLSENT +
3229 IRQ_UNDERRUN + IRQ_TXFIFO);
3230 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3231 wait_command_complete(info, CHA);
3232 read_reg16(info, CHA + ISR); /* clear pending IRQs */
Jeff Garzikd12341f2007-10-19 15:45:35 -04003233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 /* Master clock mode enabled above to allow reset commands
3235 * to complete even if no data clocks are present.
3236 *
3237 * Disable master clock mode for normal communications because
3238 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3239 * IRQ when in master clock mode.
3240 *
3241 * Leave master clock mode enabled for IRQ test because the
3242 * timer IRQ used by the test can only happen in master clock mode.
Jeff Garzikd12341f2007-10-19 15:45:35 -04003243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 if (!info->testing_irq)
3245 clear_reg_bits(info, CHA + CCR0, BIT6);
3246
3247 tx_set_idle(info);
3248
3249 tx_stop(info);
3250 rx_stop(info);
3251}
3252
Peter Hagervallcdaad342006-06-23 02:06:04 -07003253static void rx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
3255 if (debug_level >= DEBUG_LEVEL_ISR)
3256 printk("%s(%d):rx_stop(%s)\n",
3257 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003258
3259 /* MODE:03 RAC Receiver Active, 0=inactive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 clear_reg_bits(info, CHA + MODE, BIT3);
3261
Joe Perches0fab6de2008-04-28 02:14:02 -07003262 info->rx_enabled = false;
3263 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264}
3265
Peter Hagervallcdaad342006-06-23 02:06:04 -07003266static void rx_start(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267{
3268 if (debug_level >= DEBUG_LEVEL_ISR)
3269 printk("%s(%d):rx_start(%s)\n",
3270 __FILE__,__LINE__, info->device_name );
3271
3272 rx_reset_buffers(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003273 info->rx_enabled = false;
3274 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
Jeff Garzikd12341f2007-10-19 15:45:35 -04003276 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 set_reg_bits(info, CHA + MODE, BIT3);
3278
Joe Perches0fab6de2008-04-28 02:14:02 -07003279 info->rx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280}
3281
Alan Coxeeb46132009-01-02 13:48:47 +00003282static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
3284 if (debug_level >= DEBUG_LEVEL_ISR)
3285 printk("%s(%d):tx_start(%s)\n",
3286 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003287
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 if (info->tx_count) {
3289 /* If auto RTS enabled and RTS is inactive, then assert */
3290 /* RTS and set a flag indicating that the driver should */
3291 /* negate RTS when the transmission completes. */
Joe Perches0fab6de2008-04-28 02:14:02 -07003292 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293
3294 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3295 get_signals(info);
3296 if (!(info->serial_signals & SerialSignal_RTS)) {
3297 info->serial_signals |= SerialSignal_RTS;
3298 set_signals(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003299 info->drop_rts_on_tx_done = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 }
3301 }
3302
3303 if (info->params.mode == MGSL_MODE_ASYNC) {
3304 if (!info->tx_active) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003305 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003306 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 }
3308 } else {
Joe Perches0fab6de2008-04-28 02:14:02 -07003309 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003310 tx_ready(info, tty);
Jiri Slaby40565f12007-02-12 00:52:31 -08003311 mod_timer(&info->tx_timer, jiffies +
3312 msecs_to_jiffies(5000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 }
3314 }
3315
3316 if (!info->tx_enabled)
Joe Perches0fab6de2008-04-28 02:14:02 -07003317 info->tx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318}
3319
Peter Hagervallcdaad342006-06-23 02:06:04 -07003320static void tx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321{
3322 if (debug_level >= DEBUG_LEVEL_ISR)
3323 printk("%s(%d):tx_stop(%s)\n",
3324 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003325
3326 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Joe Perches0fab6de2008-04-28 02:14:02 -07003328 info->tx_enabled = false;
3329 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330}
3331
3332/* Reset the adapter to a known state and prepare it for further use.
3333 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003334static void reset_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003336 /* power up both channels (set BIT7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 write_reg(info, CHA + CCR0, 0x80);
3338 write_reg(info, CHB + CCR0, 0x80);
3339 write_reg(info, CHA + MODE, 0);
3340 write_reg(info, CHB + MODE, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003341
3342 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 irq_disable(info, CHA, 0xffff);
3344 irq_disable(info, CHB, 0xffff);
3345 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 /* PCR Port Configuration Register
3348 *
3349 * 07..04 DEC[3..0] Serial I/F select outputs
3350 * 03 output, 1=AUTO CTS control enabled
3351 * 02 RI Ring Indicator input 0=active
3352 * 01 DSR input 0=active
3353 * 00 DTR output 0=active
3354 *
3355 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003356 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 write_reg(info, PCR, 0x06);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 /* PVR Port Value Register
3360 *
3361 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3362 * 03 AUTO CTS output 1=enabled
3363 * 02 RI Ring Indicator input
3364 * 01 DSR input
3365 * 00 DTR output (1=inactive)
3366 *
3367 * 0000 0001
3368 */
3369// write_reg(info, PVR, PVR_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 /* IPC Interrupt Port Configuration
3372 *
3373 * 07 VIS 1=Masked interrupts visible
3374 * 06..05 Reserved, 0
3375 * 04..03 SLA Slave address, 00 ignored
3376 * 02 CASM Cascading Mode, 1=daisy chain
3377 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3378 *
3379 * 0000 0101
Jeff Garzikd12341f2007-10-19 15:45:35 -04003380 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 write_reg(info, IPC, 0x05);
3382}
3383
Peter Hagervallcdaad342006-06-23 02:06:04 -07003384static void async_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385{
3386 unsigned char val;
3387
Jeff Garzikd12341f2007-10-19 15:45:35 -04003388 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 irq_disable(info, CHA, 0xffff);
3390 irq_disable(info, CHB, 0xffff);
3391 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 /* MODE
3394 *
3395 * 07 Reserved, 0
3396 * 06 FRTS RTS State, 0=active
3397 * 05 FCTS Flow Control on CTS
3398 * 04 FLON Flow Control Enable
3399 * 03 RAC Receiver Active, 0 = inactive
3400 * 02 RTS 0=Auto RTS, 1=manual RTS
3401 * 01 TRS Timer Resolution, 1=512
3402 * 00 TLP Test Loop, 0 = no loop
3403 *
3404 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003405 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 val = 0x06;
3407 if (info->params.loopback)
3408 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003409
3410 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 if (!(info->serial_signals & SerialSignal_RTS))
3412 val |= BIT6;
3413 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 /* CCR0
3416 *
3417 * 07 PU Power Up, 1=active, 0=power down
3418 * 06 MCE Master Clock Enable, 1=enabled
3419 * 05 Reserved, 0
3420 * 04..02 SC[2..0] Encoding, 000=NRZ
3421 * 01..00 SM[1..0] Serial Mode, 11=Async
3422 *
3423 * 1000 0011
Jeff Garzikd12341f2007-10-19 15:45:35 -04003424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 write_reg(info, CHA + CCR0, 0x83);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003426
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 /* CCR1
3428 *
3429 * 07..05 Reserved, 0
3430 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3431 * 03 BCR Bit Clock Rate, 1=16x
3432 * 02..00 CM[2..0] Clock Mode, 111=BRG
3433 *
3434 * 0001 1111
Jeff Garzikd12341f2007-10-19 15:45:35 -04003435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 write_reg(info, CHA + CCR1, 0x1f);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003437
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 /* CCR2 (channel A)
3439 *
3440 * 07..06 BGR[9..8] Baud rate bits 9..8
3441 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3442 * 04 SSEL Clock source select, 1=submode b
3443 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3444 * 02 RWX Read/Write Exchange 0=disabled
3445 * 01 Reserved, 0
3446 * 00 DIV, data inversion 0=disabled, 1=enabled
3447 *
3448 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003449 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 write_reg(info, CHA + CCR2, 0x10);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 /* CCR3
3453 *
3454 * 07..01 Reserved, 0
3455 * 00 PSD DPLL Phase Shift Disable
3456 *
3457 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003458 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 write_reg(info, CHA + CCR3, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003460
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 /* CCR4
3462 *
3463 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3464 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3465 * 05 TST1 Test Pin, 0=normal operation
3466 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3467 * 03..00 Reserved, must be 0
3468 *
3469 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003470 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 write_reg(info, CHA + CCR4, 0x50);
3472 mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 /* DAFO Data Format
3475 *
3476 * 07 Reserved, 0
3477 * 06 XBRK transmit break, 0=normal operation
3478 * 05 Stop bits (0=1, 1=2)
3479 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3480 * 02 PAREN Parity Enable
3481 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3482 *
Jeff Garzikd12341f2007-10-19 15:45:35 -04003483 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 val = 0x00;
3485 if (info->params.data_bits != 8)
3486 val |= BIT0; /* 7 bits */
3487 if (info->params.stop_bits != 1)
3488 val |= BIT5;
3489 if (info->params.parity != ASYNC_PARITY_NONE)
3490 {
3491 val |= BIT2; /* Parity enable */
3492 if (info->params.parity == ASYNC_PARITY_ODD)
3493 val |= BIT3;
3494 else
3495 val |= BIT4;
3496 }
3497 write_reg(info, CHA + DAFO, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 /* RFC Rx FIFO Control
3500 *
3501 * 07 Reserved, 0
3502 * 06 DPS, 1=parity bit not stored in data byte
3503 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3504 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3505 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3506 * 01 Reserved, 0
3507 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3508 *
3509 * 0101 1100
Jeff Garzikd12341f2007-10-19 15:45:35 -04003510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 write_reg(info, CHA + RFC, 0x5c);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 /* RLCR Receive length check register
3514 *
3515 * Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003516 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 /* XBCH Transmit Byte Count High
3520 *
3521 * 07 DMA mode, 0 = interrupt driven
3522 * 06 NRM, 0=ABM (ignored)
3523 * 05 CAS Carrier Auto Start
3524 * 04 XC Transmit Continuously (ignored)
3525 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3526 *
3527 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003528 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 val = 0x00;
3530 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3531 val |= BIT5;
3532 write_reg(info, CHA + XBCH, val);
3533 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3534 irq_enable(info, CHA, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003535
3536 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 set_reg_bits(info, CHA + MODE, BIT3);
3538 enable_auxclk(info);
3539 if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
3540 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003541 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 set_reg_bits(info, CHA + PVR, BIT3);
3543 } else
3544 clear_reg_bits(info, CHA + PVR, BIT3);
3545 irq_enable(info, CHA,
3546 IRQ_RXEOM + IRQ_RXFIFO + IRQ_BREAK_ON + IRQ_RXTIME +
3547 IRQ_ALLSENT + IRQ_TXFIFO);
3548 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3549 wait_command_complete(info, CHA);
3550 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3551}
3552
3553/* Set the HDLC idle mode for the transmitter.
3554 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003555static void tx_set_idle(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003557 /* Note: ESCC2 only supports flags and one idle modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 if (info->idle_mode == HDLC_TXIDLE_FLAGS)
3559 set_reg_bits(info, CHA + CCR1, BIT3);
3560 else
3561 clear_reg_bits(info, CHA + CCR1, BIT3);
3562}
3563
3564/* get state of the V24 status (input) signals.
3565 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003566static void get_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567{
3568 unsigned char status = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003569
3570 /* preserve DTR and RTS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
3572
3573 if (read_reg(info, CHB + VSTR) & BIT7)
3574 info->serial_signals |= SerialSignal_DCD;
3575 if (read_reg(info, CHB + STAR) & BIT1)
3576 info->serial_signals |= SerialSignal_CTS;
3577
3578 status = read_reg(info, CHA + PVR);
3579 if (!(status & PVR_RI))
3580 info->serial_signals |= SerialSignal_RI;
3581 if (!(status & PVR_DSR))
3582 info->serial_signals |= SerialSignal_DSR;
3583}
3584
3585/* Set the state of DTR and RTS based on contents of
3586 * serial_signals member of device extension.
3587 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003588static void set_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589{
3590 unsigned char val;
3591
3592 val = read_reg(info, CHA + MODE);
3593 if (info->params.mode == MGSL_MODE_ASYNC) {
3594 if (info->serial_signals & SerialSignal_RTS)
3595 val &= ~BIT6;
3596 else
3597 val |= BIT6;
3598 } else {
3599 if (info->serial_signals & SerialSignal_RTS)
3600 val |= BIT2;
3601 else
3602 val &= ~BIT2;
3603 }
3604 write_reg(info, CHA + MODE, val);
3605
3606 if (info->serial_signals & SerialSignal_DTR)
3607 clear_reg_bits(info, CHA + PVR, PVR_DTR);
3608 else
3609 set_reg_bits(info, CHA + PVR, PVR_DTR);
3610}
3611
Peter Hagervallcdaad342006-06-23 02:06:04 -07003612static void rx_reset_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613{
3614 RXBUF *buf;
3615 int i;
3616
3617 info->rx_put = 0;
3618 info->rx_get = 0;
3619 info->rx_frame_count = 0;
3620 for (i=0 ; i < info->rx_buf_count ; i++) {
3621 buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
3622 buf->status = buf->count = 0;
3623 }
3624}
3625
3626/* Attempt to return a received HDLC frame
3627 * Only frames received without errors are returned.
3628 *
Joe Perches0fab6de2008-04-28 02:14:02 -07003629 * Returns true if frame returned, otherwise false
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 */
Alan Coxeeb46132009-01-02 13:48:47 +00003631static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632{
3633 unsigned short status;
3634 RXBUF *buf;
3635 unsigned int framesize = 0;
3636 unsigned long flags;
Joe Perches0fab6de2008-04-28 02:14:02 -07003637 bool return_frame = false;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003638
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 if (info->rx_frame_count == 0)
Joe Perches0fab6de2008-04-28 02:14:02 -07003640 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
3642 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));
3643
3644 status = buf->status;
3645
3646 /* 07 VFR 1=valid frame
3647 * 06 RDO 1=data overrun
3648 * 05 CRC 1=OK, 0=error
3649 * 04 RAB 1=frame aborted
3650 */
3651 if ((status & 0xf0) != 0xA0) {
3652 if (!(status & BIT7) || (status & BIT4))
3653 info->icount.rxabort++;
3654 else if (status & BIT6)
3655 info->icount.rxover++;
3656 else if (!(status & BIT5)) {
3657 info->icount.rxcrc++;
3658 if (info->params.crc_type & HDLC_CRC_RETURN_EX)
Joe Perches0fab6de2008-04-28 02:14:02 -07003659 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 }
3661 framesize = 0;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003662#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 {
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003664 info->netdev->stats.rx_errors++;
3665 info->netdev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 }
3667#endif
3668 } else
Joe Perches0fab6de2008-04-28 02:14:02 -07003669 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
3671 if (return_frame)
3672 framesize = buf->count;
3673
3674 if (debug_level >= DEBUG_LEVEL_BH)
3675 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
3676 __FILE__,__LINE__,info->device_name,status,framesize);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003677
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 if (debug_level >= DEBUG_LEVEL_DATA)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003679 trace_block(info, buf->data, framesize, 0);
3680
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 if (framesize) {
3682 if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
3683 framesize+1 > info->max_frame_size) ||
3684 framesize > info->max_frame_size)
3685 info->icount.rxlong++;
3686 else {
3687 if (status & BIT5)
3688 info->icount.rxok++;
3689
3690 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
3691 *(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
3692 ++framesize;
3693 }
3694
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003695#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 if (info->netcount)
3697 hdlcdev_rx(info, buf->data, framesize);
3698 else
3699#endif
3700 ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
3701 }
3702 }
3703
3704 spin_lock_irqsave(&info->lock,flags);
3705 buf->status = buf->count = 0;
3706 info->rx_frame_count--;
3707 info->rx_get++;
3708 if (info->rx_get >= info->rx_buf_count)
3709 info->rx_get = 0;
3710 spin_unlock_irqrestore(&info->lock,flags);
3711
Joe Perches0fab6de2008-04-28 02:14:02 -07003712 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713}
3714
Joe Perches0fab6de2008-04-28 02:14:02 -07003715static bool register_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003717 static unsigned char patterns[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
Tobias Klauserfe971072006-01-09 20:54:02 -08003719 static unsigned int count = ARRAY_SIZE(patterns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 unsigned int i;
Joe Perches0fab6de2008-04-28 02:14:02 -07003721 bool rc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 unsigned long flags;
3723
3724 spin_lock_irqsave(&info->lock,flags);
3725 reset_device(info);
3726
3727 for (i = 0; i < count; i++) {
3728 write_reg(info, XAD1, patterns[i]);
3729 write_reg(info, XAD2, patterns[(i + 1) % count]);
Tobias Klauserfe971072006-01-09 20:54:02 -08003730 if ((read_reg(info, XAD1) != patterns[i]) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003732 rc = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 break;
3734 }
3735 }
3736
3737 spin_unlock_irqrestore(&info->lock,flags);
3738 return rc;
3739}
3740
Joe Perches0fab6de2008-04-28 02:14:02 -07003741static bool irq_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742{
3743 unsigned long end_time;
3744 unsigned long flags;
3745
3746 spin_lock_irqsave(&info->lock,flags);
3747 reset_device(info);
3748
Joe Perches0fab6de2008-04-28 02:14:02 -07003749 info->testing_irq = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 hdlc_mode(info);
3751
Joe Perches0fab6de2008-04-28 02:14:02 -07003752 info->irq_occurred = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
3754 /* init hdlc mode */
3755
3756 irq_enable(info, CHA, IRQ_TIMER);
3757 write_reg(info, CHA + TIMR, 0); /* 512 cycles */
3758 issue_command(info, CHA, CMD_START_TIMER);
3759
3760 spin_unlock_irqrestore(&info->lock,flags);
3761
3762 end_time=100;
3763 while(end_time-- && !info->irq_occurred) {
3764 msleep_interruptible(10);
3765 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003766
Joe Perches0fab6de2008-04-28 02:14:02 -07003767 info->testing_irq = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
3769 spin_lock_irqsave(&info->lock,flags);
3770 reset_device(info);
3771 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003772
Joe Perches0fab6de2008-04-28 02:14:02 -07003773 return info->irq_occurred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774}
3775
Peter Hagervallcdaad342006-06-23 02:06:04 -07003776static int adapter_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777{
3778 if (!register_test(info)) {
3779 info->init_error = DiagStatus_AddressFailure;
3780 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
3781 __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
3782 return -ENODEV;
3783 }
3784
3785 if (!irq_test(info)) {
3786 info->init_error = DiagStatus_IrqFailure;
3787 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
3788 __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
3789 return -ENODEV;
3790 }
3791
3792 if (debug_level >= DEBUG_LEVEL_INFO)
3793 printk("%s(%d):device %s passed diagnostics\n",
3794 __FILE__,__LINE__,info->device_name);
3795 return 0;
3796}
3797
Peter Hagervallcdaad342006-06-23 02:06:04 -07003798static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799{
3800 int i;
3801 int linecount;
3802 if (xmit)
3803 printk("%s tx data:\n",info->device_name);
3804 else
3805 printk("%s rx data:\n",info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 while(count) {
3808 if (count > 16)
3809 linecount = 16;
3810 else
3811 linecount = count;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003812
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 for(i=0;i<linecount;i++)
3814 printk("%02X ",(unsigned char)data[i]);
3815 for(;i<17;i++)
3816 printk(" ");
3817 for(i=0;i<linecount;i++) {
3818 if (data[i]>=040 && data[i]<=0176)
3819 printk("%c",data[i]);
3820 else
3821 printk(".");
3822 }
3823 printk("\n");
Jeff Garzikd12341f2007-10-19 15:45:35 -04003824
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 data += linecount;
3826 count -= linecount;
3827 }
3828}
3829
3830/* HDLC frame time out
3831 * update stats and do tx completion processing
3832 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003833static void tx_timeout(unsigned long context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834{
3835 MGSLPC_INFO *info = (MGSLPC_INFO*)context;
3836 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003837
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 if ( debug_level >= DEBUG_LEVEL_INFO )
3839 printk( "%s(%d):tx_timeout(%s)\n",
3840 __FILE__,__LINE__,info->device_name);
3841 if(info->tx_active &&
3842 info->params.mode == MGSL_MODE_HDLC) {
3843 info->icount.txtimeout++;
3844 }
3845 spin_lock_irqsave(&info->lock,flags);
Joe Perches0fab6de2008-04-28 02:14:02 -07003846 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 info->tx_count = info->tx_put = info->tx_get = 0;
3848
3849 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003850
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003851#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 if (info->netcount)
3853 hdlcdev_tx_done(info);
3854 else
3855#endif
Alan Coxeeb46132009-01-02 13:48:47 +00003856 {
3857 struct tty_struct *tty = tty_port_tty_get(&info->port);
3858 bh_transmit(info, tty);
3859 tty_kref_put(tty);
3860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861}
3862
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003863#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
3865/**
3866 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
3867 * set encoding and frame check sequence (FCS) options
3868 *
3869 * dev pointer to network device structure
3870 * encoding serial encoding setting
3871 * parity FCS setting
3872 *
3873 * returns 0 if success, otherwise error code
3874 */
3875static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
3876 unsigned short parity)
3877{
3878 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00003879 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 unsigned char new_encoding;
3881 unsigned short new_crctype;
3882
3883 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00003884 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 return -EBUSY;
3886
3887 switch (encoding)
3888 {
3889 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
3890 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
3891 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
3892 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
3893 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
3894 default: return -EINVAL;
3895 }
3896
3897 switch (parity)
3898 {
3899 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
3900 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
3901 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
3902 default: return -EINVAL;
3903 }
3904
3905 info->params.encoding = new_encoding;
Alexey Dobriyan53b35312006-03-24 03:16:13 -08003906 info->params.crc_type = new_crctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00003909 if (info->netcount) {
3910 tty = tty_port_tty_get(&info->port);
3911 mgslpc_program_hw(info, tty);
3912 tty_kref_put(tty);
3913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
3915 return 0;
3916}
3917
3918/**
3919 * called by generic HDLC layer to send frame
3920 *
3921 * skb socket buffer containing HDLC frame
3922 * dev pointer to network device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 */
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003924static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
3925 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926{
3927 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 unsigned long flags;
3929
3930 if (debug_level >= DEBUG_LEVEL_INFO)
3931 printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);
3932
3933 /* stop sending until this frame completes */
3934 netif_stop_queue(dev);
3935
3936 /* copy data to device buffers */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003937 skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 info->tx_get = 0;
3939 info->tx_put = info->tx_count = skb->len;
3940
3941 /* update network statistics */
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003942 dev->stats.tx_packets++;
3943 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
3945 /* done with socket buffer, so free it */
3946 dev_kfree_skb(skb);
3947
3948 /* save start time for transmit timeout detection */
3949 dev->trans_start = jiffies;
3950
3951 /* start hardware transmitter if necessary */
3952 spin_lock_irqsave(&info->lock,flags);
Alan Coxeeb46132009-01-02 13:48:47 +00003953 if (!info->tx_active) {
3954 struct tty_struct *tty = tty_port_tty_get(&info->port);
3955 tx_start(info, tty);
3956 tty_kref_put(tty);
3957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 spin_unlock_irqrestore(&info->lock,flags);
3959
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003960 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961}
3962
3963/**
3964 * called by network layer when interface enabled
3965 * claim resources and initialize hardware
3966 *
3967 * dev pointer to network device structure
3968 *
3969 * returns 0 if success, otherwise error code
3970 */
3971static int hdlcdev_open(struct net_device *dev)
3972{
3973 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00003974 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 int rc;
3976 unsigned long flags;
3977
3978 if (debug_level >= DEBUG_LEVEL_INFO)
3979 printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);
3980
3981 /* generic HDLC layer open processing */
3982 if ((rc = hdlc_open(dev)))
3983 return rc;
3984
3985 /* arbitrate between network and tty opens */
3986 spin_lock_irqsave(&info->netlock, flags);
Alan Coxeeb46132009-01-02 13:48:47 +00003987 if (info->port.count != 0 || info->netcount != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
3989 spin_unlock_irqrestore(&info->netlock, flags);
3990 return -EBUSY;
3991 }
3992 info->netcount=1;
3993 spin_unlock_irqrestore(&info->netlock, flags);
3994
Alan Coxeeb46132009-01-02 13:48:47 +00003995 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 /* claim resources and init adapter */
Alan Coxeeb46132009-01-02 13:48:47 +00003997 if ((rc = startup(info, tty)) != 0) {
3998 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 spin_lock_irqsave(&info->netlock, flags);
4000 info->netcount=0;
4001 spin_unlock_irqrestore(&info->netlock, flags);
4002 return rc;
4003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 /* assert DTR and RTS, apply hardware settings */
4005 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00004006 mgslpc_program_hw(info, tty);
4007 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
4009 /* enable network layer transmit */
4010 dev->trans_start = jiffies;
4011 netif_start_queue(dev);
4012
4013 /* inform generic HDLC layer of current DCD status */
4014 spin_lock_irqsave(&info->lock, flags);
4015 get_signals(info);
4016 spin_unlock_irqrestore(&info->lock, flags);
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07004017 if (info->serial_signals & SerialSignal_DCD)
4018 netif_carrier_on(dev);
4019 else
4020 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 return 0;
4022}
4023
4024/**
4025 * called by network layer when interface is disabled
4026 * shutdown hardware and release resources
4027 *
4028 * dev pointer to network device structure
4029 *
4030 * returns 0 if success, otherwise error code
4031 */
4032static int hdlcdev_close(struct net_device *dev)
4033{
4034 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00004035 struct tty_struct *tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 unsigned long flags;
4037
4038 if (debug_level >= DEBUG_LEVEL_INFO)
4039 printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);
4040
4041 netif_stop_queue(dev);
4042
4043 /* shutdown adapter and release resources */
Alan Coxeeb46132009-01-02 13:48:47 +00004044 shutdown(info, tty);
4045 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 hdlc_close(dev);
4047
4048 spin_lock_irqsave(&info->netlock, flags);
4049 info->netcount=0;
4050 spin_unlock_irqrestore(&info->netlock, flags);
4051
4052 return 0;
4053}
4054
4055/**
4056 * called by network layer to process IOCTL call to network device
4057 *
4058 * dev pointer to network device structure
4059 * ifr pointer to network interface request structure
4060 * cmd IOCTL command code
4061 *
4062 * returns 0 if success, otherwise error code
4063 */
4064static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4065{
4066 const size_t size = sizeof(sync_serial_settings);
4067 sync_serial_settings new_line;
4068 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
4069 MGSLPC_INFO *info = dev_to_port(dev);
4070 unsigned int flags;
4071
4072 if (debug_level >= DEBUG_LEVEL_INFO)
4073 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);
4074
4075 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00004076 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 return -EBUSY;
4078
4079 if (cmd != SIOCWANDEV)
4080 return hdlc_ioctl(dev, ifr, cmd);
4081
Vasiliy Kulikov5b917a12010-10-17 18:41:24 +04004082 memset(&new_line, 0, size);
4083
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 switch(ifr->ifr_settings.type) {
4085 case IF_GET_IFACE: /* return current sync_serial_settings */
4086
4087 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
4088 if (ifr->ifr_settings.size < size) {
4089 ifr->ifr_settings.size = size; /* data size wanted */
4090 return -ENOBUFS;
4091 }
4092
4093 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4094 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4095 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4096 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4097
4098 switch (flags){
4099 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
4100 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
4101 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
4102 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
4103 default: new_line.clock_type = CLOCK_DEFAULT;
4104 }
4105
4106 new_line.clock_rate = info->params.clock_speed;
4107 new_line.loopback = info->params.loopback ? 1:0;
4108
4109 if (copy_to_user(line, &new_line, size))
4110 return -EFAULT;
4111 return 0;
4112
4113 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
4114
4115 if(!capable(CAP_NET_ADMIN))
4116 return -EPERM;
4117 if (copy_from_user(&new_line, line, size))
4118 return -EFAULT;
4119
4120 switch (new_line.clock_type)
4121 {
4122 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
4123 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
4124 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
4125 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
4126 case CLOCK_DEFAULT: flags = info->params.flags &
4127 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4128 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4129 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4130 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
4131 default: return -EINVAL;
4132 }
4133
4134 if (new_line.loopback != 0 && new_line.loopback != 1)
4135 return -EINVAL;
4136
4137 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4138 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4139 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4140 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4141 info->params.flags |= flags;
4142
4143 info->params.loopback = new_line.loopback;
4144
4145 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
4146 info->params.clock_speed = new_line.clock_rate;
4147 else
4148 info->params.clock_speed = 0;
4149
4150 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00004151 if (info->netcount) {
4152 struct tty_struct *tty = tty_port_tty_get(&info->port);
4153 mgslpc_program_hw(info, tty);
4154 tty_kref_put(tty);
4155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 return 0;
4157
4158 default:
4159 return hdlc_ioctl(dev, ifr, cmd);
4160 }
4161}
4162
4163/**
4164 * called by network layer when transmit timeout is detected
4165 *
4166 * dev pointer to network device structure
4167 */
4168static void hdlcdev_tx_timeout(struct net_device *dev)
4169{
4170 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 unsigned long flags;
4172
4173 if (debug_level >= DEBUG_LEVEL_INFO)
4174 printk("hdlcdev_tx_timeout(%s)\n",dev->name);
4175
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004176 dev->stats.tx_errors++;
4177 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
4179 spin_lock_irqsave(&info->lock,flags);
4180 tx_stop(info);
4181 spin_unlock_irqrestore(&info->lock,flags);
4182
4183 netif_wake_queue(dev);
4184}
4185
4186/**
4187 * called by device driver when transmit completes
4188 * reenable network layer transmit if stopped
4189 *
4190 * info pointer to device instance information
4191 */
4192static void hdlcdev_tx_done(MGSLPC_INFO *info)
4193{
4194 if (netif_queue_stopped(info->netdev))
4195 netif_wake_queue(info->netdev);
4196}
4197
4198/**
4199 * called by device driver when frame received
4200 * pass frame to network layer
4201 *
4202 * info pointer to device instance information
4203 * buf pointer to buffer contianing frame data
4204 * size count of data bytes in buf
4205 */
4206static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size)
4207{
4208 struct sk_buff *skb = dev_alloc_skb(size);
4209 struct net_device *dev = info->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
4211 if (debug_level >= DEBUG_LEVEL_INFO)
4212 printk("hdlcdev_rx(%s)\n",dev->name);
4213
4214 if (skb == NULL) {
4215 printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n", dev->name);
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004216 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 return;
4218 }
4219
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004220 memcpy(skb_put(skb, size), buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004222 skb->protocol = hdlc_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004224 dev->stats.rx_packets++;
4225 dev->stats.rx_bytes += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
4227 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228}
4229
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004230static const struct net_device_ops hdlcdev_ops = {
4231 .ndo_open = hdlcdev_open,
4232 .ndo_stop = hdlcdev_close,
4233 .ndo_change_mtu = hdlc_change_mtu,
4234 .ndo_start_xmit = hdlc_start_xmit,
4235 .ndo_do_ioctl = hdlcdev_ioctl,
4236 .ndo_tx_timeout = hdlcdev_tx_timeout,
4237};
4238
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239/**
4240 * called by device driver when adding device instance
4241 * do generic HDLC initialization
4242 *
4243 * info pointer to device instance information
4244 *
4245 * returns 0 if success, otherwise error code
4246 */
4247static int hdlcdev_init(MGSLPC_INFO *info)
4248{
4249 int rc;
4250 struct net_device *dev;
4251 hdlc_device *hdlc;
4252
4253 /* allocate and initialize network and HDLC layer objects */
4254
4255 if (!(dev = alloc_hdlcdev(info))) {
4256 printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
4257 return -ENOMEM;
4258 }
4259
4260 /* for network layer reporting purposes only */
4261 dev->base_addr = info->io_base;
4262 dev->irq = info->irq_level;
4263
4264 /* network layer callbacks and settings */
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004265 dev->netdev_ops = &hdlcdev_ops;
4266 dev->watchdog_timeo = 10 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 dev->tx_queue_len = 50;
4268
4269 /* generic HDLC layer callbacks and settings */
4270 hdlc = dev_to_hdlc(dev);
4271 hdlc->attach = hdlcdev_attach;
4272 hdlc->xmit = hdlcdev_xmit;
4273
4274 /* register objects with HDLC layer */
4275 if ((rc = register_hdlc_device(dev))) {
4276 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
4277 free_netdev(dev);
4278 return rc;
4279 }
4280
4281 info->netdev = dev;
4282 return 0;
4283}
4284
4285/**
4286 * called by device driver when removing device instance
4287 * do generic HDLC cleanup
4288 *
4289 * info pointer to device instance information
4290 */
4291static void hdlcdev_exit(MGSLPC_INFO *info)
4292{
4293 unregister_hdlc_device(info->netdev);
4294 free_netdev(info->netdev);
4295 info->netdev = NULL;
4296}
4297
4298#endif /* CONFIG_HDLC */
4299