blob: a343b8f817e499a05651eba8bdb1488c64478dda [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
63#include <asm/system.h>
64#include <asm/io.h>
65#include <asm/irq.h>
66#include <asm/dma.h>
67#include <linux/bitops.h>
68#include <asm/types.h>
69#include <linux/termios.h>
70#include <linux/workqueue.h>
71#include <linux/hdlc.h>
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <pcmcia/cistpl.h>
74#include <pcmcia/cisreg.h>
75#include <pcmcia/ds.h>
76
Paul Fulghumaf69c7f2006-12-06 20:40:24 -080077#if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_CS_MODULE))
78#define SYNCLINK_GENERIC_HDLC 1
79#else
80#define SYNCLINK_GENERIC_HDLC 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82
83#define GET_USER(error,value,addr) error = get_user(value,addr)
84#define COPY_FROM_USER(error,dest,src,size) error = copy_from_user(dest,src,size) ? -EFAULT : 0
85#define PUT_USER(error,value,addr) error = put_user(value,addr)
86#define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
87
88#include <asm/uaccess.h>
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static MGSL_PARAMS default_params = {
91 MGSL_MODE_HDLC, /* unsigned long mode */
92 0, /* unsigned char loopback; */
93 HDLC_FLAG_UNDERRUN_ABORT15, /* unsigned short flags; */
94 HDLC_ENCODING_NRZI_SPACE, /* unsigned char encoding; */
95 0, /* unsigned long clock_speed; */
96 0xff, /* unsigned char addr_filter; */
97 HDLC_CRC_16_CCITT, /* unsigned short crc_type; */
98 HDLC_PREAMBLE_LENGTH_8BITS, /* unsigned char preamble_length; */
99 HDLC_PREAMBLE_PATTERN_NONE, /* unsigned char preamble; */
100 9600, /* unsigned long data_rate; */
101 8, /* unsigned char data_bits; */
102 1, /* unsigned char stop_bits; */
103 ASYNC_PARITY_NONE /* unsigned char parity; */
104};
105
106typedef struct
107{
108 int count;
109 unsigned char status;
110 char data[1];
111} RXBUF;
112
113/* The queue of BH actions to be performed */
114
115#define BH_RECEIVE 1
116#define BH_TRANSMIT 2
117#define BH_STATUS 4
118
119#define IO_PIN_SHUTDOWN_LIMIT 100
120
121#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
122
123struct _input_signal_events {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400124 int ri_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 int ri_down;
126 int dsr_up;
127 int dsr_down;
128 int dcd_up;
129 int dcd_down;
130 int cts_up;
131 int cts_down;
132};
133
134
135/*
136 * Device instance data structure
137 */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139typedef struct _mgslpc_info {
Alan Coxeeb46132009-01-02 13:48:47 +0000140 struct tty_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 void *if_ptr; /* General purpose pointer (used by SPPP) */
142 int magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int line;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct mgsl_icount icount;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 int timeout;
148 int x_char; /* xon/xoff character */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 unsigned char read_status_mask;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400150 unsigned char ignore_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 unsigned char *tx_buf;
153 int tx_put;
154 int tx_get;
155 int tx_count;
156
157 /* circular list of fixed length rx buffers */
158
159 unsigned char *rx_buf; /* memory allocated for all rx buffers */
160 int rx_buf_total_size; /* size of memory allocated for rx buffers */
161 int rx_put; /* index of next empty rx buffer */
162 int rx_get; /* index of next full rx buffer */
163 int rx_buf_size; /* size in bytes of single rx buffer */
164 int rx_buf_count; /* total number of rx buffers */
165 int rx_frame_count; /* number of full rx buffers */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 wait_queue_head_t status_event_wait_q;
168 wait_queue_head_t event_wait_q;
169 struct timer_list tx_timer; /* HDLC transmit timeout timer */
170 struct _mgslpc_info *next_device; /* device list link */
171
172 unsigned short imra_value;
173 unsigned short imrb_value;
174 unsigned char pim_value;
175
176 spinlock_t lock;
177 struct work_struct task; /* task structure for scheduling bh */
178
179 u32 max_frame_size;
180
181 u32 pending_bh;
182
Joe Perches0fab6de2008-04-28 02:14:02 -0700183 bool bh_running;
184 bool bh_requested;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int dcd_chkcount; /* check counts to prevent */
187 int cts_chkcount; /* too many IRQs if a signal */
188 int dsr_chkcount; /* is floating */
189 int ri_chkcount;
190
Joe Perches0fab6de2008-04-28 02:14:02 -0700191 bool rx_enabled;
192 bool rx_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Joe Perches0fab6de2008-04-28 02:14:02 -0700194 bool tx_enabled;
195 bool tx_active;
196 bool tx_aborting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 u32 idle_mode;
198
199 int if_mode; /* serial interface selection (RS-232, v.35 etc) */
200
201 char device_name[25]; /* device instance name */
202
203 unsigned int io_base; /* base I/O address of adapter */
204 unsigned int irq_level;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 MGSL_PARAMS params; /* communications parameters */
207
208 unsigned char serial_signals; /* current serial signal states */
209
Joe Perches0fab6de2008-04-28 02:14:02 -0700210 bool irq_occurred; /* for diagnostics use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 char testing_irq;
212 unsigned int init_error; /* startup error (DIAGS) */
213
214 char flag_buf[MAX_ASYNC_BUFFER_SIZE];
Joe Perches0fab6de2008-04-28 02:14:02 -0700215 bool drop_rts_on_tx_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 struct _input_signal_events input_signal_events;
218
219 /* PCMCIA support */
Dominik Brodowskifd238232006-03-05 10:45:09 +0100220 struct pcmcia_device *p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 int stop;
222
223 /* SPPP/Cisco HDLC device parts */
224 int netcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 spinlock_t netlock;
226
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800227#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 struct net_device *netdev;
229#endif
230
231} MGSLPC_INFO;
232
233#define MGSLPC_MAGIC 0x5402
234
235/*
236 * The size of the serial xmit buffer is 1 page, or 4096 bytes
237 */
238#define TXBUFSIZE 4096
239
Jeff Garzikd12341f2007-10-19 15:45:35 -0400240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#define CHA 0x00 /* channel A offset */
242#define CHB 0x40 /* channel B offset */
243
244/*
245 * FIXME: PPC has PVR defined in asm/reg.h. For now we just undef it.
246 */
247#undef PVR
248
249#define RXFIFO 0
250#define TXFIFO 0
251#define STAR 0x20
252#define CMDR 0x20
253#define RSTA 0x21
254#define PRE 0x21
255#define MODE 0x22
256#define TIMR 0x23
257#define XAD1 0x24
258#define XAD2 0x25
259#define RAH1 0x26
260#define RAH2 0x27
261#define DAFO 0x27
262#define RAL1 0x28
263#define RFC 0x28
264#define RHCR 0x29
265#define RAL2 0x29
266#define RBCL 0x2a
267#define XBCL 0x2a
268#define RBCH 0x2b
269#define XBCH 0x2b
270#define CCR0 0x2c
271#define CCR1 0x2d
272#define CCR2 0x2e
273#define CCR3 0x2f
274#define VSTR 0x34
275#define BGR 0x34
276#define RLCR 0x35
277#define AML 0x36
278#define AMH 0x37
279#define GIS 0x38
280#define IVA 0x38
281#define IPC 0x39
282#define ISR 0x3a
283#define IMR 0x3a
284#define PVR 0x3c
285#define PIS 0x3d
286#define PIM 0x3d
287#define PCR 0x3e
288#define CCR4 0x3f
Jeff Garzikd12341f2007-10-19 15:45:35 -0400289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290// IMR/ISR
Jeff Garzikd12341f2007-10-19 15:45:35 -0400291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#define IRQ_BREAK_ON BIT15 // rx break detected
293#define IRQ_DATAOVERRUN BIT14 // receive data overflow
294#define IRQ_ALLSENT BIT13 // all sent
295#define IRQ_UNDERRUN BIT12 // transmit data underrun
296#define IRQ_TIMER BIT11 // timer interrupt
297#define IRQ_CTS BIT10 // CTS status change
298#define IRQ_TXREPEAT BIT9 // tx message repeat
299#define IRQ_TXFIFO BIT8 // transmit pool ready
300#define IRQ_RXEOM BIT7 // receive message end
301#define IRQ_EXITHUNT BIT6 // receive frame start
302#define IRQ_RXTIME BIT6 // rx char timeout
303#define IRQ_DCD BIT2 // carrier detect status change
304#define IRQ_OVERRUN BIT1 // receive frame overflow
305#define IRQ_RXFIFO BIT0 // receive pool full
Jeff Garzikd12341f2007-10-19 15:45:35 -0400306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307// STAR
Jeff Garzikd12341f2007-10-19 15:45:35 -0400308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#define XFW BIT6 // transmit FIFO write enable
310#define CEC BIT2 // command executing
311#define CTS BIT1 // CTS state
Jeff Garzikd12341f2007-10-19 15:45:35 -0400312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#define PVR_DTR BIT0
314#define PVR_DSR BIT1
315#define PVR_RI BIT2
316#define PVR_AUTOCTS BIT3
317#define PVR_RS232 0x20 /* 0010b */
318#define PVR_V35 0xe0 /* 1110b */
319#define PVR_RS422 0x40 /* 0100b */
Jeff Garzikd12341f2007-10-19 15:45:35 -0400320
321/* Register access functions */
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323#define write_reg(info, reg, val) outb((val),(info)->io_base + (reg))
324#define read_reg(info, reg) inb((info)->io_base + (reg))
325
Jeff Garzikd12341f2007-10-19 15:45:35 -0400326#define read_reg16(info, reg) inw((info)->io_base + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#define write_reg16(info, reg, val) outw((val), (info)->io_base + (reg))
Jeff Garzikd12341f2007-10-19 15:45:35 -0400328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#define set_reg_bits(info, reg, mask) \
330 write_reg(info, (reg), \
Jeff Garzikd12341f2007-10-19 15:45:35 -0400331 (unsigned char) (read_reg(info, (reg)) | (mask)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332#define clear_reg_bits(info, reg, mask) \
333 write_reg(info, (reg), \
Jeff Garzikd12341f2007-10-19 15:45:35 -0400334 (unsigned char) (read_reg(info, (reg)) & ~(mask)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
336 * interrupt enable/disable routines
Jeff Garzikd12341f2007-10-19 15:45:35 -0400337 */
338static void irq_disable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 if (channel == CHA) {
341 info->imra_value |= mask;
342 write_reg16(info, CHA + IMR, info->imra_value);
343 } else {
344 info->imrb_value |= mask;
345 write_reg16(info, CHB + IMR, info->imrb_value);
346 }
347}
Jeff Garzikd12341f2007-10-19 15:45:35 -0400348static void irq_enable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 if (channel == CHA) {
351 info->imra_value &= ~mask;
352 write_reg16(info, CHA + IMR, info->imra_value);
353 } else {
354 info->imrb_value &= ~mask;
355 write_reg16(info, CHB + IMR, info->imrb_value);
356 }
357}
358
359#define port_irq_disable(info, mask) \
360 { info->pim_value |= (mask); write_reg(info, PIM, info->pim_value); }
361
362#define port_irq_enable(info, mask) \
363 { info->pim_value &= ~(mask); write_reg(info, PIM, info->pim_value); }
364
365static void rx_start(MGSLPC_INFO *info);
366static void rx_stop(MGSLPC_INFO *info);
367
Alan Coxeeb46132009-01-02 13:48:47 +0000368static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369static void tx_stop(MGSLPC_INFO *info);
370static void tx_set_idle(MGSLPC_INFO *info);
371
372static void get_signals(MGSLPC_INFO *info);
373static void set_signals(MGSLPC_INFO *info);
374
375static void reset_device(MGSLPC_INFO *info);
376
377static void hdlc_mode(MGSLPC_INFO *info);
378static void async_mode(MGSLPC_INFO *info);
379
380static void tx_timeout(unsigned long context);
381
Alan Coxeeb46132009-01-02 13:48:47 +0000382static int carrier_raised(struct tty_port *port);
Alan Coxfcc8ac12009-06-11 12:24:17 +0100383static void dtr_rts(struct tty_port *port, int onoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800385#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#define dev_to_port(D) (dev_to_hdlc(D)->priv)
387static void hdlcdev_tx_done(MGSLPC_INFO *info);
388static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size);
389static int hdlcdev_init(MGSLPC_INFO *info);
390static void hdlcdev_exit(MGSLPC_INFO *info);
391#endif
392
393static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit);
394
Joe Perches0fab6de2008-04-28 02:14:02 -0700395static bool register_test(MGSLPC_INFO *info);
396static bool irq_test(MGSLPC_INFO *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397static int adapter_test(MGSLPC_INFO *info);
398
399static int claim_resources(MGSLPC_INFO *info);
400static void release_resources(MGSLPC_INFO *info);
401static void mgslpc_add_device(MGSLPC_INFO *info);
402static void mgslpc_remove_device(MGSLPC_INFO *info);
403
Alan Coxeeb46132009-01-02 13:48:47 +0000404static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405static void rx_reset_buffers(MGSLPC_INFO *info);
406static int rx_alloc_buffers(MGSLPC_INFO *info);
407static void rx_free_buffers(MGSLPC_INFO *info);
408
David Howells7d12e782006-10-05 14:55:46 +0100409static irqreturn_t mgslpc_isr(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411/*
412 * Bottom half interrupt handlers
413 */
David Howellsc4028952006-11-22 14:57:56 +0000414static void bh_handler(struct work_struct *work);
Alan Coxeeb46132009-01-02 13:48:47 +0000415static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416static void bh_status(MGSLPC_INFO *info);
417
418/*
419 * ioctl handlers
420 */
421static int tiocmget(struct tty_struct *tty, struct file *file);
422static int tiocmset(struct tty_struct *tty, struct file *file,
423 unsigned int set, unsigned int clear);
424static int get_stats(MGSLPC_INFO *info, struct mgsl_icount __user *user_icount);
425static int get_params(MGSLPC_INFO *info, MGSL_PARAMS __user *user_params);
Alan Coxeeb46132009-01-02 13:48:47 +0000426static int set_params(MGSLPC_INFO *info, MGSL_PARAMS __user *new_params, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static int get_txidle(MGSLPC_INFO *info, int __user *idle_mode);
428static int set_txidle(MGSLPC_INFO *info, int idle_mode);
Alan Coxeeb46132009-01-02 13:48:47 +0000429static int set_txenable(MGSLPC_INFO *info, int enable, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430static int tx_abort(MGSLPC_INFO *info);
431static int set_rxenable(MGSLPC_INFO *info, int enable);
432static int wait_events(MGSLPC_INFO *info, int __user *mask);
433
434static MGSLPC_INFO *mgslpc_device_list = NULL;
435static int mgslpc_device_count = 0;
436
437/*
438 * Set this param to non-zero to load eax with the
439 * .text section address and breakpoint on module load.
440 * This is useful for use with gdb and add-symbol-file command.
441 */
442static int break_on_load=0;
443
444/*
445 * Driver major number, defaults to zero to get auto
446 * assigned major number. May be forced as module parameter.
447 */
448static int ttymajor=0;
449
450static int debug_level = 0;
451static int maxframe[MAX_DEVICE_COUNT] = {0,};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453module_param(break_on_load, bool, 0);
454module_param(ttymajor, int, 0);
455module_param(debug_level, int, 0);
456module_param_array(maxframe, int, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458MODULE_LICENSE("GPL");
459
460static char *driver_name = "SyncLink PC Card driver";
Paul Fulghuma7482a22005-09-10 00:26:07 -0700461static char *driver_version = "$Revision: 4.34 $";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463static struct tty_driver *serial_driver;
464
465/* number of characters left in xmit buffer before we ask for more */
466#define WAKEUP_CHARS 256
467
Alan Coxeeb46132009-01-02 13:48:47 +0000468static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout);
470
471/* PCMCIA prototypes */
472
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200473static int mgslpc_config(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474static void mgslpc_release(u_long arg);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100475static void mgslpc_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477/*
478 * 1st function defined in .text section. Calling this function in
479 * init_module() followed by a breakpoint allows a remote debugger
480 * (gdb) to get the .text address for the add-symbol-file command.
481 * This allows remote debugging of dynamically loadable modules.
482 */
483static void* mgslpc_get_text_ptr(void)
484{
485 return mgslpc_get_text_ptr;
486}
487
488/**
489 * line discipline callback wrappers
490 *
491 * The wrappers maintain line discipline references
492 * while calling into the line discipline.
493 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 * ldisc_receive_buf - pass receive data to line discipline
495 */
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static void ldisc_receive_buf(struct tty_struct *tty,
498 const __u8 *data, char *flags, int count)
499{
500 struct tty_ldisc *ld;
501 if (!tty)
502 return;
503 ld = tty_ldisc_ref(tty);
504 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100505 if (ld->ops->receive_buf)
506 ld->ops->receive_buf(tty, data, flags, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 tty_ldisc_deref(ld);
508 }
509}
510
Alan Coxeeb46132009-01-02 13:48:47 +0000511static const struct tty_port_operations mgslpc_port_ops = {
512 .carrier_raised = carrier_raised,
Alan Coxfcc8ac12009-06-11 12:24:17 +0100513 .dtr_rts = dtr_rts
Alan Coxeeb46132009-01-02 13:48:47 +0000514};
515
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200516static int mgslpc_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 MGSLPC_INFO *info;
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200519 int ret;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (debug_level >= DEBUG_LEVEL_INFO)
522 printk("mgslpc_attach\n");
Dominik Brodowskifd238232006-03-05 10:45:09 +0100523
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700524 info = kzalloc(sizeof(MGSLPC_INFO), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (!info) {
526 printk("Error can't allocate device instance data\n");
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100527 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 info->magic = MGSLPC_MAGIC;
Alan Coxeeb46132009-01-02 13:48:47 +0000531 tty_port_init(&info->port);
532 info->port.ops = &mgslpc_port_ops;
David Howellsc4028952006-11-22 14:57:56 +0000533 INIT_WORK(&info->task, bh_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 info->max_frame_size = 4096;
Alan Coxeeb46132009-01-02 13:48:47 +0000535 info->port.close_delay = 5*HZ/10;
536 info->port.closing_wait = 30*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 init_waitqueue_head(&info->status_event_wait_q);
538 init_waitqueue_head(&info->event_wait_q);
539 spin_lock_init(&info->lock);
540 spin_lock_init(&info->netlock);
541 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
Jeff Garzikd12341f2007-10-19 15:45:35 -0400542 info->idle_mode = HDLC_TXIDLE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 info->imra_value = 0xffff;
544 info->imrb_value = 0xffff;
545 info->pim_value = 0xff;
546
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200547 info->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 link->priv = info;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100549
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200550 /* Initialize the struct pcmcia_device structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200552 ret = mgslpc_config(link);
553 if (ret)
554 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 mgslpc_add_device(info);
557
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
561/* Card has been inserted.
562 */
563
Dominik Brodowski00990e72010-07-30 13:13:46 +0200564static int mgslpc_ioprobe(struct pcmcia_device *p_dev, void *priv_data)
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200565{
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200566 return pcmcia_request_io(p_dev);
Dominik Brodowskiaaa8cfd2009-10-18 18:28:39 +0200567}
568
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200569static int mgslpc_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 MGSLPC_INFO *info = link->priv;
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200572 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (debug_level >= DEBUG_LEVEL_INFO)
575 printk("mgslpc_config(0x%p)\n", link);
576
Dominik Brodowski00990e72010-07-30 13:13:46 +0200577 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
578
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200579 ret = pcmcia_loop_config(link, mgslpc_ioprobe, NULL);
580 if (ret != 0)
581 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Dominik Brodowski7feabb62010-07-29 18:35:47 +0200583 link->config_index = 8;
584 link->config_regs = PRESENT_OPTION;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400585
Dominik Brodowskieb141202010-03-07 12:21:16 +0100586 ret = pcmcia_request_irq(link, mgslpc_isr);
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200587 if (ret)
588 goto failed;
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200589 ret = pcmcia_enable_device(link);
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200590 if (ret)
591 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200593 info->io_base = link->resource[0]->start;
Dominik Brodowskieb141202010-03-07 12:21:16 +0100594 info->irq_level = link->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Dominik Brodowskided6a1a2010-03-20 19:35:12 +0100596 dev_info(&link->dev, "index 0x%02x:",
Dominik Brodowski7feabb62010-07-29 18:35:47 +0200597 link->config_index);
Dominik Brodowski1ac71e52010-07-29 19:27:09 +0200598 printk(", irq %d", link->irq);
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200599 if (link->resource[0])
600 printk(", io %pR", link->resource[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 printk("\n");
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Dominik Brodowskicbf624f2009-10-24 15:47:29 +0200604failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 mgslpc_release((u_long)link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200606 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/* Card has been removed.
610 * Unregister device and release PCMCIA configuration.
611 * If device is open, postpone until it is closed.
612 */
613static void mgslpc_release(u_long arg)
614{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100615 struct pcmcia_device *link = (struct pcmcia_device *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100617 if (debug_level >= DEBUG_LEVEL_INFO)
618 printk("mgslpc_release(0x%p)\n", link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100620 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200623static void mgslpc_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100625 if (debug_level >= DEBUG_LEVEL_INFO)
626 printk("mgslpc_detach(0x%p)\n", link);
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100627
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100628 ((MGSLPC_INFO *)link->priv)->stop = 1;
629 mgslpc_release((u_long)link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100631 mgslpc_remove_device((MGSLPC_INFO *)link->priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200634static int mgslpc_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100635{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100636 MGSLPC_INFO *info = link->priv;
637
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100638 info->stop = 1;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100639
640 return 0;
641}
642
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200643static int mgslpc_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100644{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100645 MGSLPC_INFO *info = link->priv;
646
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100647 info->stop = 0;
648
649 return 0;
650}
651
652
Joe Perches0fab6de2008-04-28 02:14:02 -0700653static inline bool mgslpc_paranoia_check(MGSLPC_INFO *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 char *name, const char *routine)
655{
656#ifdef MGSLPC_PARANOIA_CHECK
657 static const char *badmagic =
658 "Warning: bad magic number for mgsl struct (%s) in %s\n";
659 static const char *badinfo =
660 "Warning: null mgslpc_info for (%s) in %s\n";
661
662 if (!info) {
663 printk(badinfo, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700664 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 if (info->magic != MGSLPC_MAGIC) {
667 printk(badmagic, name, routine);
Joe Perches0fab6de2008-04-28 02:14:02 -0700668 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670#else
671 if (!info)
Joe Perches0fab6de2008-04-28 02:14:02 -0700672 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673#endif
Joe Perches0fab6de2008-04-28 02:14:02 -0700674 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
677
678#define CMD_RXFIFO BIT7 // release current rx FIFO
679#define CMD_RXRESET BIT6 // receiver reset
680#define CMD_RXFIFO_READ BIT5
681#define CMD_START_TIMER BIT4
682#define CMD_TXFIFO BIT3 // release current tx FIFO
683#define CMD_TXEOM BIT1 // transmit end message
684#define CMD_TXRESET BIT0 // transmit reset
685
Joe Perches0fab6de2008-04-28 02:14:02 -0700686static bool wait_command_complete(MGSLPC_INFO *info, unsigned char channel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 int i = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400689 /* wait for command completion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 while (read_reg(info, (unsigned char)(channel+STAR)) & BIT2) {
691 udelay(1);
692 if (i++ == 1000)
Joe Perches0fab6de2008-04-28 02:14:02 -0700693 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700695 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Jeff Garzikd12341f2007-10-19 15:45:35 -0400698static void issue_command(MGSLPC_INFO *info, unsigned char channel, unsigned char cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 wait_command_complete(info, channel);
701 write_reg(info, (unsigned char) (channel + CMDR), cmd);
702}
703
704static void tx_pause(struct tty_struct *tty)
705{
706 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
707 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (mgslpc_paranoia_check(info, tty->name, "tx_pause"))
710 return;
711 if (debug_level >= DEBUG_LEVEL_INFO)
Jeff Garzikd12341f2007-10-19 15:45:35 -0400712 printk("tx_pause(%s)\n",info->device_name);
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 spin_lock_irqsave(&info->lock,flags);
715 if (info->tx_enabled)
716 tx_stop(info);
717 spin_unlock_irqrestore(&info->lock,flags);
718}
719
720static void tx_release(struct tty_struct *tty)
721{
722 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
723 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (mgslpc_paranoia_check(info, tty->name, "tx_release"))
726 return;
727 if (debug_level >= DEBUG_LEVEL_INFO)
Jeff Garzikd12341f2007-10-19 15:45:35 -0400728 printk("tx_release(%s)\n",info->device_name);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 spin_lock_irqsave(&info->lock,flags);
731 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +0000732 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 spin_unlock_irqrestore(&info->lock,flags);
734}
735
736/* Return next bottom half action to perform.
737 * or 0 if nothing to do.
738 */
739static int bh_action(MGSLPC_INFO *info)
740{
741 unsigned long flags;
742 int rc = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 spin_lock_irqsave(&info->lock,flags);
745
746 if (info->pending_bh & BH_RECEIVE) {
747 info->pending_bh &= ~BH_RECEIVE;
748 rc = BH_RECEIVE;
749 } else if (info->pending_bh & BH_TRANSMIT) {
750 info->pending_bh &= ~BH_TRANSMIT;
751 rc = BH_TRANSMIT;
752 } else if (info->pending_bh & BH_STATUS) {
753 info->pending_bh &= ~BH_STATUS;
754 rc = BH_STATUS;
755 }
756
757 if (!rc) {
758 /* Mark BH routine as complete */
Joe Perches0fab6de2008-04-28 02:14:02 -0700759 info->bh_running = false;
760 info->bh_requested = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return rc;
766}
767
David Howellsc4028952006-11-22 14:57:56 +0000768static void bh_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
David Howellsc4028952006-11-22 14:57:56 +0000770 MGSLPC_INFO *info = container_of(work, MGSLPC_INFO, task);
Alan Coxeeb46132009-01-02 13:48:47 +0000771 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 int action;
773
774 if (!info)
775 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (debug_level >= DEBUG_LEVEL_BH)
778 printk( "%s(%d):bh_handler(%s) entry\n",
779 __FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400780
Joe Perches0fab6de2008-04-28 02:14:02 -0700781 info->bh_running = true;
Alan Coxeeb46132009-01-02 13:48:47 +0000782 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 while((action = bh_action(info)) != 0) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* Process work item */
787 if ( debug_level >= DEBUG_LEVEL_BH )
788 printk( "%s(%d):bh_handler() work item action=%d\n",
789 __FILE__,__LINE__,action);
790
791 switch (action) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 case BH_RECEIVE:
Alan Coxeeb46132009-01-02 13:48:47 +0000794 while(rx_get_frame(info, tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 break;
796 case BH_TRANSMIT:
Alan Coxeeb46132009-01-02 13:48:47 +0000797 bh_transmit(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 break;
799 case BH_STATUS:
800 bh_status(info);
801 break;
802 default:
803 /* unknown work item ID */
804 printk("Unknown work item ID=%08X!\n", action);
805 break;
806 }
807 }
808
Alan Coxeeb46132009-01-02 13:48:47 +0000809 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (debug_level >= DEBUG_LEVEL_BH)
811 printk( "%s(%d):bh_handler(%s) exit\n",
812 __FILE__,__LINE__,info->device_name);
813}
814
Alan Coxeeb46132009-01-02 13:48:47 +0000815static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (debug_level >= DEBUG_LEVEL_BH)
818 printk("bh_transmit() entry on %s\n", info->device_name);
819
Jiri Slabyb963a842007-02-10 01:44:55 -0800820 if (tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Peter Hagervallcdaad342006-06-23 02:06:04 -0700824static void bh_status(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 info->ri_chkcount = 0;
827 info->dsr_chkcount = 0;
828 info->dcd_chkcount = 0;
829 info->cts_chkcount = 0;
830}
831
Jeff Garzikd12341f2007-10-19 15:45:35 -0400832/* eom: non-zero = end of frame */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833static void rx_ready_hdlc(MGSLPC_INFO *info, int eom)
834{
835 unsigned char data[2];
836 unsigned char fifo_count, read_count, i;
837 RXBUF *buf = (RXBUF*)(info->rx_buf + (info->rx_put * info->rx_buf_size));
838
839 if (debug_level >= DEBUG_LEVEL_ISR)
840 printk("%s(%d):rx_ready_hdlc(eom=%d)\n",__FILE__,__LINE__,eom);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (!info->rx_enabled)
843 return;
844
845 if (info->rx_frame_count >= info->rx_buf_count) {
846 /* no more free buffers */
847 issue_command(info, CHA, CMD_RXRESET);
848 info->pending_bh |= BH_RECEIVE;
Joe Perches0fab6de2008-04-28 02:14:02 -0700849 info->rx_overflow = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 info->icount.buf_overrun++;
851 return;
852 }
853
854 if (eom) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400855 /* end of frame, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (!(fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f)))
857 fifo_count = 32;
858 } else
859 fifo_count = 32;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 do {
862 if (fifo_count == 1) {
863 read_count = 1;
864 data[0] = read_reg(info, CHA + RXFIFO);
865 } else {
866 read_count = 2;
867 *((unsigned short *) data) = read_reg16(info, CHA + RXFIFO);
868 }
869 fifo_count -= read_count;
870 if (!fifo_count && eom)
871 buf->status = data[--read_count];
872
873 for (i = 0; i < read_count; i++) {
874 if (buf->count >= info->max_frame_size) {
875 /* frame too large, reset receiver and reset current buffer */
876 issue_command(info, CHA, CMD_RXRESET);
877 buf->count = 0;
878 return;
879 }
880 *(buf->data + buf->count) = data[i];
881 buf->count++;
882 }
883 } while (fifo_count);
884
885 if (eom) {
886 info->pending_bh |= BH_RECEIVE;
887 info->rx_frame_count++;
888 info->rx_put++;
889 if (info->rx_put >= info->rx_buf_count)
890 info->rx_put = 0;
891 }
892 issue_command(info, CHA, CMD_RXFIFO);
893}
894
Alan Coxeeb46132009-01-02 13:48:47 +0000895static void rx_ready_async(MGSLPC_INFO *info, int tcd, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Alan Cox33f0f882006-01-09 20:54:13 -0800897 unsigned char data, status, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 int fifo_count;
Alan Cox33f0f882006-01-09 20:54:13 -0800899 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct mgsl_icount *icount = &info->icount;
901
902 if (tcd) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400903 /* early termination, get FIFO count from RBCL register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
905
906 /* Zero fifo count could mean 0 or 32 bytes available.
907 * If BIT5 of STAR is set then at least 1 byte is available.
908 */
909 if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
910 fifo_count = 32;
911 } else
912 fifo_count = 32;
Alan Cox33f0f882006-01-09 20:54:13 -0800913
914 tty_buffer_request_room(tty, fifo_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400915 /* Flush received async data to receive data buffer. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 while (fifo_count) {
917 data = read_reg(info, CHA + RXFIFO);
918 status = read_reg(info, CHA + RXFIFO);
919 fifo_count -= 2;
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 icount->rx++;
Alan Cox33f0f882006-01-09 20:54:13 -0800922 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 // if no frameing/crc error then save data
925 // BIT7:parity error
926 // BIT6:framing error
927
928 if (status & (BIT7 + BIT6)) {
Jeff Garzikd12341f2007-10-19 15:45:35 -0400929 if (status & BIT7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 icount->parity++;
931 else
932 icount->frame++;
933
934 /* discard char if tty control flags say so */
935 if (status & info->ignore_status_mask)
936 continue;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 status &= info->read_status_mask;
939
940 if (status & BIT7)
Alan Cox33f0f882006-01-09 20:54:13 -0800941 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 else if (status & BIT6)
Alan Cox33f0f882006-01-09 20:54:13 -0800943 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Alan Cox33f0f882006-01-09 20:54:13 -0800945 work += tty_insert_flip_char(tty, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947 issue_command(info, CHA, CMD_RXFIFO);
948
949 if (debug_level >= DEBUG_LEVEL_ISR) {
Alan Cox33f0f882006-01-09 20:54:13 -0800950 printk("%s(%d):rx_ready_async",
951 __FILE__,__LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
953 __FILE__,__LINE__,icount->rx,icount->brk,
954 icount->parity,icount->frame,icount->overrun);
955 }
Jeff Garzikd12341f2007-10-19 15:45:35 -0400956
Alan Cox33f0f882006-01-09 20:54:13 -0800957 if (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 tty_flip_buffer_push(tty);
959}
960
961
Alan Coxeeb46132009-01-02 13:48:47 +0000962static void tx_done(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 if (!info->tx_active)
965 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400966
Joe Perches0fab6de2008-04-28 02:14:02 -0700967 info->tx_active = false;
968 info->tx_aborting = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (info->params.mode == MGSL_MODE_ASYNC)
971 return;
972
973 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -0400974 del_timer(&info->tx_timer);
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (info->drop_rts_on_tx_done) {
977 get_signals(info);
978 if (info->serial_signals & SerialSignal_RTS) {
979 info->serial_signals &= ~SerialSignal_RTS;
980 set_signals(info);
981 }
Joe Perches0fab6de2008-04-28 02:14:02 -0700982 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984
Paul Fulghumaf69c7f2006-12-06 20:40:24 -0800985#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (info->netcount)
987 hdlcdev_tx_done(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -0400988 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989#endif
990 {
Alan Coxeeb46132009-01-02 13:48:47 +0000991 if (tty->stopped || tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 tx_stop(info);
993 return;
994 }
995 info->pending_bh |= BH_TRANSMIT;
996 }
997}
998
Alan Coxeeb46132009-01-02 13:48:47 +0000999static void tx_ready(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 unsigned char fifo_count = 32;
1002 int c;
1003
1004 if (debug_level >= DEBUG_LEVEL_ISR)
1005 printk("%s(%d):tx_ready(%s)\n", __FILE__,__LINE__,info->device_name);
1006
1007 if (info->params.mode == MGSL_MODE_HDLC) {
1008 if (!info->tx_active)
1009 return;
1010 } else {
Alan Coxeeb46132009-01-02 13:48:47 +00001011 if (tty->stopped || tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 tx_stop(info);
1013 return;
1014 }
1015 if (!info->tx_count)
Joe Perches0fab6de2008-04-28 02:14:02 -07001016 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
1019 if (!info->tx_count)
1020 return;
1021
1022 while (info->tx_count && fifo_count) {
1023 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (c == 1) {
1026 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
1027 } else {
1028 write_reg16(info, CHA + TXFIFO,
1029 *((unsigned short*)(info->tx_buf + info->tx_get)));
1030 }
1031 info->tx_count -= c;
1032 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1033 fifo_count -= c;
1034 }
1035
1036 if (info->params.mode == MGSL_MODE_ASYNC) {
1037 if (info->tx_count < WAKEUP_CHARS)
1038 info->pending_bh |= BH_TRANSMIT;
1039 issue_command(info, CHA, CMD_TXFIFO);
1040 } else {
1041 if (info->tx_count)
1042 issue_command(info, CHA, CMD_TXFIFO);
1043 else
1044 issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
1045 }
1046}
1047
Alan Coxeeb46132009-01-02 13:48:47 +00001048static void cts_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 get_signals(info);
1051 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1052 irq_disable(info, CHB, IRQ_CTS);
1053 info->icount.cts++;
1054 if (info->serial_signals & SerialSignal_CTS)
1055 info->input_signal_events.cts_up++;
1056 else
1057 info->input_signal_events.cts_down++;
1058 wake_up_interruptible(&info->status_event_wait_q);
1059 wake_up_interruptible(&info->event_wait_q);
1060
Alan Coxeeb46132009-01-02 13:48:47 +00001061 if (info->port.flags & ASYNC_CTS_FLOW) {
1062 if (tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (info->serial_signals & SerialSignal_CTS) {
1064 if (debug_level >= DEBUG_LEVEL_ISR)
1065 printk("CTS tx start...");
Alan Coxeeb46132009-01-02 13:48:47 +00001066 if (tty)
1067 tty->hw_stopped = 0;
1068 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 info->pending_bh |= BH_TRANSMIT;
1070 return;
1071 }
1072 } else {
1073 if (!(info->serial_signals & SerialSignal_CTS)) {
1074 if (debug_level >= DEBUG_LEVEL_ISR)
1075 printk("CTS tx stop...");
Alan Coxeeb46132009-01-02 13:48:47 +00001076 if (tty)
1077 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 tx_stop(info);
1079 }
1080 }
1081 }
1082 info->pending_bh |= BH_STATUS;
1083}
1084
Alan Coxeeb46132009-01-02 13:48:47 +00001085static void dcd_change(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 get_signals(info);
1088 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1089 irq_disable(info, CHB, IRQ_DCD);
1090 info->icount.dcd++;
1091 if (info->serial_signals & SerialSignal_DCD) {
1092 info->input_signal_events.dcd_up++;
1093 }
1094 else
1095 info->input_signal_events.dcd_down++;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08001096#if SYNCLINK_GENERIC_HDLC
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07001097 if (info->netcount) {
1098 if (info->serial_signals & SerialSignal_DCD)
1099 netif_carrier_on(info->netdev);
1100 else
1101 netif_carrier_off(info->netdev);
1102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103#endif
1104 wake_up_interruptible(&info->status_event_wait_q);
1105 wake_up_interruptible(&info->event_wait_q);
1106
Alan Coxeeb46132009-01-02 13:48:47 +00001107 if (info->port.flags & ASYNC_CHECK_CD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (debug_level >= DEBUG_LEVEL_ISR)
1109 printk("%s CD now %s...", info->device_name,
1110 (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
1111 if (info->serial_signals & SerialSignal_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001112 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 else {
1114 if (debug_level >= DEBUG_LEVEL_ISR)
1115 printk("doing serial hangup...");
Alan Coxeeb46132009-01-02 13:48:47 +00001116 if (tty)
1117 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 }
1120 info->pending_bh |= BH_STATUS;
1121}
1122
1123static void dsr_change(MGSLPC_INFO *info)
1124{
1125 get_signals(info);
1126 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1127 port_irq_disable(info, PVR_DSR);
1128 info->icount.dsr++;
1129 if (info->serial_signals & SerialSignal_DSR)
1130 info->input_signal_events.dsr_up++;
1131 else
1132 info->input_signal_events.dsr_down++;
1133 wake_up_interruptible(&info->status_event_wait_q);
1134 wake_up_interruptible(&info->event_wait_q);
1135 info->pending_bh |= BH_STATUS;
1136}
1137
1138static void ri_change(MGSLPC_INFO *info)
1139{
1140 get_signals(info);
1141 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1142 port_irq_disable(info, PVR_RI);
1143 info->icount.rng++;
1144 if (info->serial_signals & SerialSignal_RI)
1145 info->input_signal_events.ri_up++;
1146 else
1147 info->input_signal_events.ri_down++;
1148 wake_up_interruptible(&info->status_event_wait_q);
1149 wake_up_interruptible(&info->event_wait_q);
1150 info->pending_bh |= BH_STATUS;
1151}
1152
1153/* Interrupt service routine entry point.
Jeff Garzikd12341f2007-10-19 15:45:35 -04001154 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001156 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 * irq interrupt number that caused interrupt
1158 * dev_id device ID supplied during interrupt registration
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 */
Jeff Garzika6f97b22007-10-31 05:20:49 -04001160static irqreturn_t mgslpc_isr(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Jeff Garzika6f97b22007-10-31 05:20:49 -04001162 MGSLPC_INFO *info = dev_id;
Alan Coxeeb46132009-01-02 13:48:47 +00001163 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 unsigned short isr;
1165 unsigned char gis, pis;
1166 int count=0;
1167
Jeff Garzikd12341f2007-10-19 15:45:35 -04001168 if (debug_level >= DEBUG_LEVEL_ISR)
Jeff Garzika6f97b22007-10-31 05:20:49 -04001169 printk("mgslpc_isr(%d) entry.\n", info->irq_level);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001170
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001171 if (!(info->p_dev->_locked))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return IRQ_HANDLED;
1173
Alan Coxeeb46132009-01-02 13:48:47 +00001174 tty = tty_port_tty_get(&info->port);
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 spin_lock(&info->lock);
1177
1178 while ((gis = read_reg(info, CHA + GIS))) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001179 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);
1181
1182 if ((gis & 0x70) || count > 1000) {
1183 printk("synclink_cs:hardware failed or ejected\n");
1184 break;
1185 }
1186 count++;
1187
1188 if (gis & (BIT1 + BIT0)) {
1189 isr = read_reg16(info, CHB + ISR);
1190 if (isr & IRQ_DCD)
Alan Coxeeb46132009-01-02 13:48:47 +00001191 dcd_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (isr & IRQ_CTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001193 cts_change(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
1195 if (gis & (BIT3 + BIT2))
1196 {
1197 isr = read_reg16(info, CHA + ISR);
1198 if (isr & IRQ_TIMER) {
Joe Perches0fab6de2008-04-28 02:14:02 -07001199 info->irq_occurred = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 irq_disable(info, CHA, IRQ_TIMER);
1201 }
1202
Jeff Garzikd12341f2007-10-19 15:45:35 -04001203 /* receive IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if (isr & IRQ_EXITHUNT) {
1205 info->icount.exithunt++;
1206 wake_up_interruptible(&info->event_wait_q);
1207 }
1208 if (isr & IRQ_BREAK_ON) {
1209 info->icount.brk++;
Alan Coxeeb46132009-01-02 13:48:47 +00001210 if (info->port.flags & ASYNC_SAK)
1211 do_SAK(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213 if (isr & IRQ_RXTIME) {
1214 issue_command(info, CHA, CMD_RXFIFO_READ);
1215 }
1216 if (isr & (IRQ_RXEOM + IRQ_RXFIFO)) {
1217 if (info->params.mode == MGSL_MODE_HDLC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04001218 rx_ready_hdlc(info, isr & IRQ_RXEOM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 else
Alan Coxeeb46132009-01-02 13:48:47 +00001220 rx_ready_async(info, isr & IRQ_RXEOM, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 }
1222
Jeff Garzikd12341f2007-10-19 15:45:35 -04001223 /* transmit IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (isr & IRQ_UNDERRUN) {
1225 if (info->tx_aborting)
1226 info->icount.txabort++;
1227 else
1228 info->icount.txunder++;
Alan Coxeeb46132009-01-02 13:48:47 +00001229 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231 else if (isr & IRQ_ALLSENT) {
1232 info->icount.txok++;
Alan Coxeeb46132009-01-02 13:48:47 +00001233 tx_done(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235 else if (isr & IRQ_TXFIFO)
Alan Coxeeb46132009-01-02 13:48:47 +00001236 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238 if (gis & BIT7) {
1239 pis = read_reg(info, CHA + PIS);
1240 if (pis & BIT1)
1241 dsr_change(info);
1242 if (pis & BIT2)
1243 ri_change(info);
1244 }
1245 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001246
1247 /* Request bottom half processing if there's something
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 * for it to do and the bh is not already running
1249 */
1250
1251 if (info->pending_bh && !info->bh_running && !info->bh_requested) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001252 if ( debug_level >= DEBUG_LEVEL_ISR )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 printk("%s(%d):%s queueing bh task.\n",
1254 __FILE__,__LINE__,info->device_name);
1255 schedule_work(&info->task);
Joe Perches0fab6de2008-04-28 02:14:02 -07001256 info->bh_requested = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258
1259 spin_unlock(&info->lock);
Alan Coxeeb46132009-01-02 13:48:47 +00001260 tty_kref_put(tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001261
1262 if (debug_level >= DEBUG_LEVEL_ISR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 printk("%s(%d):mgslpc_isr(%d)exit.\n",
Jeff Garzika6f97b22007-10-31 05:20:49 -04001264 __FILE__, __LINE__, info->irq_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 return IRQ_HANDLED;
1267}
1268
1269/* Initialize and start device.
1270 */
Alan Coxeeb46132009-01-02 13:48:47 +00001271static int startup(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
1273 int retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (debug_level >= DEBUG_LEVEL_INFO)
1276 printk("%s(%d):startup(%s)\n",__FILE__,__LINE__,info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001277
Alan Coxeeb46132009-01-02 13:48:47 +00001278 if (info->port.flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (!info->tx_buf) {
1282 /* allocate a page of memory for a transmit buffer */
1283 info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1284 if (!info->tx_buf) {
1285 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
1286 __FILE__,__LINE__,info->device_name);
1287 return -ENOMEM;
1288 }
1289 }
1290
1291 info->pending_bh = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001292
Paul Fulghuma7482a22005-09-10 00:26:07 -07001293 memset(&info->icount, 0, sizeof(info->icount));
1294
Jiri Slaby40565f12007-02-12 00:52:31 -08001295 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 /* Allocate and claim adapter resources */
1298 retval = claim_resources(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 /* perform existance check and diagnostics */
1301 if ( !retval )
1302 retval = adapter_test(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if ( retval ) {
Alan Coxeeb46132009-01-02 13:48:47 +00001305 if (capable(CAP_SYS_ADMIN) && tty)
1306 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 release_resources(info);
1308 return retval;
1309 }
1310
1311 /* program hardware for current parameters */
Alan Coxeeb46132009-01-02 13:48:47 +00001312 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001313
Alan Coxeeb46132009-01-02 13:48:47 +00001314 if (tty)
1315 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Alan Coxeeb46132009-01-02 13:48:47 +00001317 info->port.flags |= ASYNC_INITIALIZED;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return 0;
1320}
1321
1322/* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1323 */
Alan Coxeeb46132009-01-02 13:48:47 +00001324static void shutdown(MGSLPC_INFO * info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001327
Alan Coxeeb46132009-01-02 13:48:47 +00001328 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return;
1330
1331 if (debug_level >= DEBUG_LEVEL_INFO)
1332 printk("%s(%d):mgslpc_shutdown(%s)\n",
1333 __FILE__,__LINE__, info->device_name );
1334
1335 /* clear status wait queue because status changes */
1336 /* can't happen after shutting down the hardware */
1337 wake_up_interruptible(&info->status_event_wait_q);
1338 wake_up_interruptible(&info->event_wait_q);
1339
Jiri Slaby40565f12007-02-12 00:52:31 -08001340 del_timer_sync(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 if (info->tx_buf) {
1343 free_page((unsigned long) info->tx_buf);
1344 info->tx_buf = NULL;
1345 }
1346
1347 spin_lock_irqsave(&info->lock,flags);
1348
1349 rx_stop(info);
1350 tx_stop(info);
1351
1352 /* TODO:disable interrupts instead of reset to preserve signal states */
1353 reset_device(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001354
Alan Coxeeb46132009-01-02 13:48:47 +00001355 if (!tty || tty->termios->c_cflag & HUPCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
1357 set_signals(info);
1358 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 spin_unlock_irqrestore(&info->lock,flags);
1361
Jeff Garzikd12341f2007-10-19 15:45:35 -04001362 release_resources(info);
1363
Alan Coxeeb46132009-01-02 13:48:47 +00001364 if (tty)
1365 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Alan Coxeeb46132009-01-02 13:48:47 +00001367 info->port.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Alan Coxeeb46132009-01-02 13:48:47 +00001370static void mgslpc_program_hw(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
1372 unsigned long flags;
1373
1374 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 rx_stop(info);
1377 tx_stop(info);
1378 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
1381 hdlc_mode(info);
1382 else
1383 async_mode(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 set_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 info->dcd_chkcount = 0;
1388 info->cts_chkcount = 0;
1389 info->ri_chkcount = 0;
1390 info->dsr_chkcount = 0;
1391
1392 irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
1393 port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
1394 get_signals(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001395
Alan Coxeeb46132009-01-02 13:48:47 +00001396 if (info->netcount || (tty && (tty->termios->c_cflag & CREAD)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 rx_start(info);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 spin_unlock_irqrestore(&info->lock,flags);
1400}
1401
1402/* Reconfigure adapter based on new parameters
1403 */
Alan Coxeeb46132009-01-02 13:48:47 +00001404static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
1406 unsigned cflag;
1407 int bits_per_char;
1408
Alan Coxeeb46132009-01-02 13:48:47 +00001409 if (!tty || !tty->termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (debug_level >= DEBUG_LEVEL_INFO)
1413 printk("%s(%d):mgslpc_change_params(%s)\n",
1414 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001415
Alan Coxeeb46132009-01-02 13:48:47 +00001416 cflag = tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 /* if B0 rate (hangup) specified then negate DTR and RTS */
1419 /* otherwise assert DTR and RTS */
1420 if (cflag & CBAUD)
1421 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
1422 else
1423 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 /* byte size and parity */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 switch (cflag & CSIZE) {
1428 case CS5: info->params.data_bits = 5; break;
1429 case CS6: info->params.data_bits = 6; break;
1430 case CS7: info->params.data_bits = 7; break;
1431 case CS8: info->params.data_bits = 8; break;
1432 default: info->params.data_bits = 7; break;
1433 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (cflag & CSTOPB)
1436 info->params.stop_bits = 2;
1437 else
1438 info->params.stop_bits = 1;
1439
1440 info->params.parity = ASYNC_PARITY_NONE;
1441 if (cflag & PARENB) {
1442 if (cflag & PARODD)
1443 info->params.parity = ASYNC_PARITY_ODD;
1444 else
1445 info->params.parity = ASYNC_PARITY_EVEN;
1446#ifdef CMSPAR
1447 if (cflag & CMSPAR)
1448 info->params.parity = ASYNC_PARITY_SPACE;
1449#endif
1450 }
1451
1452 /* calculate number of jiffies to transmit a full
1453 * FIFO (32 bytes) at specified data rate
1454 */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001455 bits_per_char = info->params.data_bits +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 info->params.stop_bits + 1;
1457
1458 /* if port data rate is set to 460800 or less then
1459 * allow tty settings to override, otherwise keep the
1460 * current data rate.
1461 */
1462 if (info->params.data_rate <= 460800) {
Alan Coxeeb46132009-01-02 13:48:47 +00001463 info->params.data_rate = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if ( info->params.data_rate ) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04001467 info->timeout = (32*HZ*bits_per_char) /
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 info->params.data_rate;
1469 }
1470 info->timeout += HZ/50; /* Add .02 seconds of slop */
1471
1472 if (cflag & CRTSCTS)
Alan Coxeeb46132009-01-02 13:48:47 +00001473 info->port.flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 else
Alan Coxeeb46132009-01-02 13:48:47 +00001475 info->port.flags &= ~ASYNC_CTS_FLOW;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (cflag & CLOCAL)
Alan Coxeeb46132009-01-02 13:48:47 +00001478 info->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 else
Alan Coxeeb46132009-01-02 13:48:47 +00001480 info->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 /* process tty input control flags */
Jeff Garzikd12341f2007-10-19 15:45:35 -04001483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 info->read_status_mask = 0;
Alan Coxeeb46132009-01-02 13:48:47 +00001485 if (I_INPCK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 info->read_status_mask |= BIT7 | BIT6;
Alan Coxeeb46132009-01-02 13:48:47 +00001487 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 info->ignore_status_mask |= BIT7 | BIT6;
1489
Alan Coxeeb46132009-01-02 13:48:47 +00001490 mgslpc_program_hw(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
1493/* Add a character to the transmit buffer
1494 */
Alan Coxd7e752e2008-04-30 00:54:04 -07001495static int mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
1497 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1498 unsigned long flags;
1499
1500 if (debug_level >= DEBUG_LEVEL_INFO) {
1501 printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
1502 __FILE__,__LINE__,ch,info->device_name);
1503 }
1504
1505 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
Alan Coxd7e752e2008-04-30 00:54:04 -07001506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001508 if (!info->tx_buf)
Alan Coxd7e752e2008-04-30 00:54:04 -07001509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 spin_lock_irqsave(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
1514 if (info->tx_count < TXBUFSIZE - 1) {
1515 info->tx_buf[info->tx_put++] = ch;
1516 info->tx_put &= TXBUFSIZE-1;
1517 info->tx_count++;
1518 }
1519 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 spin_unlock_irqrestore(&info->lock,flags);
Alan Coxd7e752e2008-04-30 00:54:04 -07001522 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
1525/* Enable transmitter so remaining characters in the
1526 * transmit buffer are sent.
1527 */
1528static void mgslpc_flush_chars(struct tty_struct *tty)
1529{
1530 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1531 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (debug_level >= DEBUG_LEVEL_INFO)
1534 printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1535 __FILE__,__LINE__,info->device_name,info->tx_count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
1538 return;
1539
1540 if (info->tx_count <= 0 || tty->stopped ||
1541 tty->hw_stopped || !info->tx_buf)
1542 return;
1543
1544 if (debug_level >= DEBUG_LEVEL_INFO)
1545 printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1546 __FILE__,__LINE__,info->device_name);
1547
1548 spin_lock_irqsave(&info->lock,flags);
1549 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001550 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 spin_unlock_irqrestore(&info->lock,flags);
1552}
1553
1554/* Send a block of data
Jeff Garzikd12341f2007-10-19 15:45:35 -04001555 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001557 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 * tty pointer to tty information structure
1559 * buf pointer to buffer containing send data
1560 * count size of send data in bytes
Jeff Garzikd12341f2007-10-19 15:45:35 -04001561 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 * Returns: number of characters written
1563 */
1564static int mgslpc_write(struct tty_struct * tty,
1565 const unsigned char *buf, int count)
1566{
1567 int c, ret = 0;
1568 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1569 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (debug_level >= DEBUG_LEVEL_INFO)
1572 printk( "%s(%d):mgslpc_write(%s) count=%d\n",
1573 __FILE__,__LINE__,info->device_name,count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
Eric Sesterhenn326f28e92006-06-25 05:48:48 -07001576 !info->tx_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 goto cleanup;
1578
1579 if (info->params.mode == MGSL_MODE_HDLC) {
1580 if (count > TXBUFSIZE) {
1581 ret = -EIO;
1582 goto cleanup;
1583 }
1584 if (info->tx_active)
1585 goto cleanup;
1586 else if (info->tx_count)
1587 goto start;
1588 }
1589
1590 for (;;) {
1591 c = min(count,
1592 min(TXBUFSIZE - info->tx_count - 1,
1593 TXBUFSIZE - info->tx_put));
1594 if (c <= 0)
1595 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 memcpy(info->tx_buf + info->tx_put, buf, c);
1598
1599 spin_lock_irqsave(&info->lock,flags);
1600 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1601 info->tx_count += c;
1602 spin_unlock_irqrestore(&info->lock,flags);
1603
1604 buf += c;
1605 count -= c;
1606 ret += c;
1607 }
1608start:
1609 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
1610 spin_lock_irqsave(&info->lock,flags);
1611 if (!info->tx_active)
Alan Coxeeb46132009-01-02 13:48:47 +00001612 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 spin_unlock_irqrestore(&info->lock,flags);
1614 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001615cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (debug_level >= DEBUG_LEVEL_INFO)
1617 printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
1618 __FILE__,__LINE__,info->device_name,ret);
1619 return ret;
1620}
1621
1622/* Return the count of free bytes in transmit buffer
1623 */
1624static int mgslpc_write_room(struct tty_struct *tty)
1625{
1626 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1627 int ret;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
1630 return 0;
1631
1632 if (info->params.mode == MGSL_MODE_HDLC) {
1633 /* HDLC (frame oriented) mode */
1634 if (info->tx_active)
1635 return 0;
1636 else
1637 return HDLC_MAX_FRAME_SIZE;
1638 } else {
1639 ret = TXBUFSIZE - info->tx_count - 1;
1640 if (ret < 0)
1641 ret = 0;
1642 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (debug_level >= DEBUG_LEVEL_INFO)
1645 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
1646 __FILE__,__LINE__, info->device_name, ret);
1647 return ret;
1648}
1649
1650/* Return the count of bytes in transmit buffer
1651 */
1652static int mgslpc_chars_in_buffer(struct tty_struct *tty)
1653{
1654 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1655 int rc;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (debug_level >= DEBUG_LEVEL_INFO)
1658 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
1659 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
1662 return 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (info->params.mode == MGSL_MODE_HDLC)
1665 rc = info->tx_active ? info->max_frame_size : 0;
1666 else
1667 rc = info->tx_count;
1668
1669 if (debug_level >= DEBUG_LEVEL_INFO)
1670 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
1671 __FILE__,__LINE__, info->device_name, rc);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return rc;
1674}
1675
1676/* Discard all data in the send buffer
1677 */
1678static void mgslpc_flush_buffer(struct tty_struct *tty)
1679{
1680 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1681 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (debug_level >= DEBUG_LEVEL_INFO)
1684 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
1685 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
1688 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001689
1690 spin_lock_irqsave(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 info->tx_count = info->tx_put = info->tx_get = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001692 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 spin_unlock_irqrestore(&info->lock,flags);
1694
1695 wake_up_interruptible(&tty->write_wait);
1696 tty_wakeup(tty);
1697}
1698
1699/* Send a high-priority XON/XOFF character
1700 */
1701static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
1702{
1703 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1704 unsigned long flags;
1705
1706 if (debug_level >= DEBUG_LEVEL_INFO)
1707 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
1708 __FILE__,__LINE__, info->device_name, ch );
Jeff Garzikd12341f2007-10-19 15:45:35 -04001709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
1711 return;
1712
1713 info->x_char = ch;
1714 if (ch) {
1715 spin_lock_irqsave(&info->lock,flags);
1716 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001717 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 spin_unlock_irqrestore(&info->lock,flags);
1719 }
1720}
1721
1722/* Signal remote device to throttle send data (our receive data)
1723 */
1724static void mgslpc_throttle(struct tty_struct * tty)
1725{
1726 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1727 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (debug_level >= DEBUG_LEVEL_INFO)
1730 printk("%s(%d):mgslpc_throttle(%s) entry\n",
1731 __FILE__,__LINE__, info->device_name );
1732
1733 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
1734 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (I_IXOFF(tty))
1737 mgslpc_send_xchar(tty, STOP_CHAR(tty));
Jeff Garzikd12341f2007-10-19 15:45:35 -04001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (tty->termios->c_cflag & CRTSCTS) {
1740 spin_lock_irqsave(&info->lock,flags);
1741 info->serial_signals &= ~SerialSignal_RTS;
1742 set_signals(info);
1743 spin_unlock_irqrestore(&info->lock,flags);
1744 }
1745}
1746
1747/* Signal remote device to stop throttling send data (our receive data)
1748 */
1749static void mgslpc_unthrottle(struct tty_struct * tty)
1750{
1751 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1752 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (debug_level >= DEBUG_LEVEL_INFO)
1755 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
1756 __FILE__,__LINE__, info->device_name );
1757
1758 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
1759 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (I_IXOFF(tty)) {
1762 if (info->x_char)
1763 info->x_char = 0;
1764 else
1765 mgslpc_send_xchar(tty, START_CHAR(tty));
1766 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (tty->termios->c_cflag & CRTSCTS) {
1769 spin_lock_irqsave(&info->lock,flags);
1770 info->serial_signals |= SerialSignal_RTS;
1771 set_signals(info);
1772 spin_unlock_irqrestore(&info->lock,flags);
1773 }
1774}
1775
1776/* get the current serial statistics
1777 */
1778static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
1779{
1780 int err;
1781 if (debug_level >= DEBUG_LEVEL_INFO)
1782 printk("get_params(%s)\n", info->device_name);
Paul Fulghuma7482a22005-09-10 00:26:07 -07001783 if (!user_icount) {
1784 memset(&info->icount, 0, sizeof(info->icount));
1785 } else {
1786 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
1787 if (err)
1788 return -EFAULT;
1789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return 0;
1791}
1792
1793/* get the current serial parameters
1794 */
1795static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
1796{
1797 int err;
1798 if (debug_level >= DEBUG_LEVEL_INFO)
1799 printk("get_params(%s)\n", info->device_name);
1800 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
1801 if (err)
1802 return -EFAULT;
1803 return 0;
1804}
1805
1806/* set the serial parameters
Jeff Garzikd12341f2007-10-19 15:45:35 -04001807 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04001809 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 * info pointer to device instance data
1811 * new_params user buffer containing new serial params
1812 *
1813 * Returns: 0 if success, otherwise error code
1814 */
Alan Coxeeb46132009-01-02 13:48:47 +00001815static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
1817 unsigned long flags;
1818 MGSL_PARAMS tmp_params;
1819 int err;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (debug_level >= DEBUG_LEVEL_INFO)
1822 printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
1823 info->device_name );
1824 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
1825 if (err) {
1826 if ( debug_level >= DEBUG_LEVEL_INFO )
1827 printk( "%s(%d):set_params(%s) user buffer copy failed\n",
1828 __FILE__,__LINE__,info->device_name);
1829 return -EFAULT;
1830 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 spin_lock_irqsave(&info->lock,flags);
1833 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
1834 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001835
Alan Coxeeb46132009-01-02 13:48:47 +00001836 mgslpc_change_params(info, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return 0;
1839}
1840
1841static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
1842{
1843 int err;
1844 if (debug_level >= DEBUG_LEVEL_INFO)
1845 printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
1846 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
1847 if (err)
1848 return -EFAULT;
1849 return 0;
1850}
1851
1852static int set_txidle(MGSLPC_INFO * info, int idle_mode)
1853{
1854 unsigned long flags;
1855 if (debug_level >= DEBUG_LEVEL_INFO)
1856 printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
1857 spin_lock_irqsave(&info->lock,flags);
1858 info->idle_mode = idle_mode;
1859 tx_set_idle(info);
1860 spin_unlock_irqrestore(&info->lock,flags);
1861 return 0;
1862}
1863
1864static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
1865{
1866 int err;
1867 if (debug_level >= DEBUG_LEVEL_INFO)
1868 printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
1869 COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
1870 if (err)
1871 return -EFAULT;
1872 return 0;
1873}
1874
1875static int set_interface(MGSLPC_INFO * info, int if_mode)
1876{
1877 unsigned long flags;
1878 unsigned char val;
1879 if (debug_level >= DEBUG_LEVEL_INFO)
1880 printk("set_interface(%s,%d)\n", info->device_name, if_mode);
1881 spin_lock_irqsave(&info->lock,flags);
1882 info->if_mode = if_mode;
1883
1884 val = read_reg(info, PVR) & 0x0f;
1885 switch (info->if_mode)
1886 {
1887 case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
1888 case MGSL_INTERFACE_V35: val |= PVR_V35; break;
1889 case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
1890 }
1891 write_reg(info, PVR, val);
1892
1893 spin_unlock_irqrestore(&info->lock,flags);
1894 return 0;
1895}
1896
Alan Coxeeb46132009-01-02 13:48:47 +00001897static int set_txenable(MGSLPC_INFO * info, int enable, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
1899 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (debug_level >= DEBUG_LEVEL_INFO)
1902 printk("set_txenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 spin_lock_irqsave(&info->lock,flags);
1905 if (enable) {
1906 if (!info->tx_enabled)
Alan Coxeeb46132009-01-02 13:48:47 +00001907 tx_start(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 } else {
1909 if (info->tx_enabled)
1910 tx_stop(info);
1911 }
1912 spin_unlock_irqrestore(&info->lock,flags);
1913 return 0;
1914}
1915
1916static int tx_abort(MGSLPC_INFO * info)
1917{
1918 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (debug_level >= DEBUG_LEVEL_INFO)
1921 printk("tx_abort(%s)\n", info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 spin_lock_irqsave(&info->lock,flags);
1924 if (info->tx_active && info->tx_count &&
1925 info->params.mode == MGSL_MODE_HDLC) {
1926 /* clear data count so FIFO is not filled on next IRQ.
1927 * This results in underrun and abort transmission.
1928 */
1929 info->tx_count = info->tx_put = info->tx_get = 0;
Joe Perches0fab6de2008-04-28 02:14:02 -07001930 info->tx_aborting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932 spin_unlock_irqrestore(&info->lock,flags);
1933 return 0;
1934}
1935
1936static int set_rxenable(MGSLPC_INFO * info, int enable)
1937{
1938 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (debug_level >= DEBUG_LEVEL_INFO)
1941 printk("set_rxenable(%s,%d)\n", info->device_name, enable);
Jeff Garzikd12341f2007-10-19 15:45:35 -04001942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 spin_lock_irqsave(&info->lock,flags);
1944 if (enable) {
1945 if (!info->rx_enabled)
1946 rx_start(info);
1947 } else {
1948 if (info->rx_enabled)
1949 rx_stop(info);
1950 }
1951 spin_unlock_irqrestore(&info->lock,flags);
1952 return 0;
1953}
1954
1955/* wait for specified event to occur
Jeff Garzikd12341f2007-10-19 15:45:35 -04001956 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 * Arguments: info pointer to device instance data
1958 * mask pointer to bitmask of events to wait for
1959 * Return Value: 0 if successful and bit mask updated with
1960 * of events triggerred,
1961 * otherwise error code
1962 */
1963static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
1964{
1965 unsigned long flags;
1966 int s;
1967 int rc=0;
1968 struct mgsl_icount cprev, cnow;
1969 int events;
1970 int mask;
1971 struct _input_signal_events oldsigs, newsigs;
1972 DECLARE_WAITQUEUE(wait, current);
1973
1974 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
1975 if (rc)
1976 return -EFAULT;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (debug_level >= DEBUG_LEVEL_INFO)
1979 printk("wait_events(%s,%d)\n", info->device_name, mask);
1980
1981 spin_lock_irqsave(&info->lock,flags);
1982
1983 /* return immediately if state matches requested events */
1984 get_signals(info);
1985 s = info->serial_signals;
1986 events = mask &
1987 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
1988 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
1989 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
1990 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
1991 if (events) {
1992 spin_unlock_irqrestore(&info->lock,flags);
1993 goto exit;
1994 }
1995
1996 /* save current irq counts */
1997 cprev = info->icount;
1998 oldsigs = info->input_signal_events;
Jeff Garzikd12341f2007-10-19 15:45:35 -04001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if ((info->params.mode == MGSL_MODE_HDLC) &&
2001 (mask & MgslEvent_ExitHuntMode))
2002 irq_enable(info, CHA, IRQ_EXITHUNT);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 set_current_state(TASK_INTERRUPTIBLE);
2005 add_wait_queue(&info->event_wait_q, &wait);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002008
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 for(;;) {
2011 schedule();
2012 if (signal_pending(current)) {
2013 rc = -ERESTARTSYS;
2014 break;
2015 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 /* get current irq counts */
2018 spin_lock_irqsave(&info->lock,flags);
2019 cnow = info->icount;
2020 newsigs = info->input_signal_events;
2021 set_current_state(TASK_INTERRUPTIBLE);
2022 spin_unlock_irqrestore(&info->lock,flags);
2023
2024 /* if no change, wait aborted for some reason */
2025 if (newsigs.dsr_up == oldsigs.dsr_up &&
2026 newsigs.dsr_down == oldsigs.dsr_down &&
2027 newsigs.dcd_up == oldsigs.dcd_up &&
2028 newsigs.dcd_down == oldsigs.dcd_down &&
2029 newsigs.cts_up == oldsigs.cts_up &&
2030 newsigs.cts_down == oldsigs.cts_down &&
2031 newsigs.ri_up == oldsigs.ri_up &&
2032 newsigs.ri_down == oldsigs.ri_down &&
2033 cnow.exithunt == cprev.exithunt &&
2034 cnow.rxidle == cprev.rxidle) {
2035 rc = -EIO;
2036 break;
2037 }
2038
2039 events = mask &
2040 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2041 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2042 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2043 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2044 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2045 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2046 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2047 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2048 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2049 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2050 if (events)
2051 break;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 cprev = cnow;
2054 oldsigs = newsigs;
2055 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 remove_wait_queue(&info->event_wait_q, &wait);
2058 set_current_state(TASK_RUNNING);
2059
2060 if (mask & MgslEvent_ExitHuntMode) {
2061 spin_lock_irqsave(&info->lock,flags);
2062 if (!waitqueue_active(&info->event_wait_q))
2063 irq_disable(info, CHA, IRQ_EXITHUNT);
2064 spin_unlock_irqrestore(&info->lock,flags);
2065 }
2066exit:
2067 if (rc == 0)
2068 PUT_USER(rc, events, mask_ptr);
2069 return rc;
2070}
2071
2072static int modem_input_wait(MGSLPC_INFO *info,int arg)
2073{
2074 unsigned long flags;
2075 int rc;
2076 struct mgsl_icount cprev, cnow;
2077 DECLARE_WAITQUEUE(wait, current);
2078
2079 /* save current irq counts */
2080 spin_lock_irqsave(&info->lock,flags);
2081 cprev = info->icount;
2082 add_wait_queue(&info->status_event_wait_q, &wait);
2083 set_current_state(TASK_INTERRUPTIBLE);
2084 spin_unlock_irqrestore(&info->lock,flags);
2085
2086 for(;;) {
2087 schedule();
2088 if (signal_pending(current)) {
2089 rc = -ERESTARTSYS;
2090 break;
2091 }
2092
2093 /* get new irq counts */
2094 spin_lock_irqsave(&info->lock,flags);
2095 cnow = info->icount;
2096 set_current_state(TASK_INTERRUPTIBLE);
2097 spin_unlock_irqrestore(&info->lock,flags);
2098
2099 /* if no change, wait aborted for some reason */
2100 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2101 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2102 rc = -EIO;
2103 break;
2104 }
2105
2106 /* check for change in caller specified modem input */
2107 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2108 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2109 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2110 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2111 rc = 0;
2112 break;
2113 }
2114
2115 cprev = cnow;
2116 }
2117 remove_wait_queue(&info->status_event_wait_q, &wait);
2118 set_current_state(TASK_RUNNING);
2119 return rc;
2120}
2121
2122/* return the state of the serial control and status signals
2123 */
2124static int tiocmget(struct tty_struct *tty, struct file *file)
2125{
2126 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2127 unsigned int result;
2128 unsigned long flags;
2129
2130 spin_lock_irqsave(&info->lock,flags);
2131 get_signals(info);
2132 spin_unlock_irqrestore(&info->lock,flags);
2133
2134 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2135 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2136 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2137 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2138 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2139 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2140
2141 if (debug_level >= DEBUG_LEVEL_INFO)
2142 printk("%s(%d):%s tiocmget() value=%08X\n",
2143 __FILE__,__LINE__, info->device_name, result );
2144 return result;
2145}
2146
2147/* set modem control signals (DTR/RTS)
2148 */
2149static int tiocmset(struct tty_struct *tty, struct file *file,
2150 unsigned int set, unsigned int clear)
2151{
2152 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2153 unsigned long flags;
2154
2155 if (debug_level >= DEBUG_LEVEL_INFO)
2156 printk("%s(%d):%s tiocmset(%x,%x)\n",
2157 __FILE__,__LINE__,info->device_name, set, clear);
2158
2159 if (set & TIOCM_RTS)
2160 info->serial_signals |= SerialSignal_RTS;
2161 if (set & TIOCM_DTR)
2162 info->serial_signals |= SerialSignal_DTR;
2163 if (clear & TIOCM_RTS)
2164 info->serial_signals &= ~SerialSignal_RTS;
2165 if (clear & TIOCM_DTR)
2166 info->serial_signals &= ~SerialSignal_DTR;
2167
2168 spin_lock_irqsave(&info->lock,flags);
2169 set_signals(info);
2170 spin_unlock_irqrestore(&info->lock,flags);
2171
2172 return 0;
2173}
2174
2175/* Set or clear transmit break condition
2176 *
2177 * Arguments: tty pointer to tty instance data
2178 * break_state -1=set break condition, 0=clear
2179 */
Alan Cox9e989662008-07-22 11:18:03 +01002180static int mgslpc_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2183 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (debug_level >= DEBUG_LEVEL_INFO)
2186 printk("%s(%d):mgslpc_break(%s,%d)\n",
2187 __FILE__,__LINE__, info->device_name, break_state);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
Alan Cox9e989662008-07-22 11:18:03 +01002190 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 spin_lock_irqsave(&info->lock,flags);
2193 if (break_state == -1)
2194 set_reg_bits(info, CHA+DAFO, BIT6);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002195 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 clear_reg_bits(info, CHA+DAFO, BIT6);
2197 spin_unlock_irqrestore(&info->lock,flags);
Alan Cox9e989662008-07-22 11:18:03 +01002198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
2201/* Service an IOCTL request
Jeff Garzikd12341f2007-10-19 15:45:35 -04002202 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002204 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 * tty pointer to tty instance data
2206 * file pointer to associated file object for device
2207 * cmd IOCTL command code
2208 * arg command argument/context
Jeff Garzikd12341f2007-10-19 15:45:35 -04002209 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 * Return Value: 0 if success, otherwise error code
2211 */
2212static int mgslpc_ioctl(struct tty_struct *tty, struct file * file,
2213 unsigned int cmd, unsigned long arg)
2214{
2215 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002216 int error;
2217 struct mgsl_icount cnow; /* kernel counter temps */
2218 struct serial_icounter_struct __user *p_cuser; /* user space */
2219 void __user *argp = (void __user *)arg;
2220 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (debug_level >= DEBUG_LEVEL_INFO)
2223 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
2224 info->device_name, cmd );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
2227 return -ENODEV;
2228
2229 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
2230 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
2231 if (tty->flags & (1 << TTY_IO_ERROR))
2232 return -EIO;
2233 }
2234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 switch (cmd) {
2236 case MGSL_IOCGPARAMS:
2237 return get_params(info, argp);
2238 case MGSL_IOCSPARAMS:
Alan Coxeeb46132009-01-02 13:48:47 +00002239 return set_params(info, argp, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 case MGSL_IOCGTXIDLE:
2241 return get_txidle(info, argp);
2242 case MGSL_IOCSTXIDLE:
2243 return set_txidle(info, (int)arg);
2244 case MGSL_IOCGIF:
2245 return get_interface(info, argp);
2246 case MGSL_IOCSIF:
2247 return set_interface(info,(int)arg);
2248 case MGSL_IOCTXENABLE:
Alan Coxeeb46132009-01-02 13:48:47 +00002249 return set_txenable(info,(int)arg, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 case MGSL_IOCRXENABLE:
2251 return set_rxenable(info,(int)arg);
2252 case MGSL_IOCTXABORT:
2253 return tx_abort(info);
2254 case MGSL_IOCGSTATS:
2255 return get_stats(info, argp);
2256 case MGSL_IOCWAITEVENT:
2257 return wait_events(info, argp);
2258 case TIOCMIWAIT:
2259 return modem_input_wait(info,(int)arg);
2260 case TIOCGICOUNT:
2261 spin_lock_irqsave(&info->lock,flags);
2262 cnow = info->icount;
2263 spin_unlock_irqrestore(&info->lock,flags);
2264 p_cuser = argp;
2265 PUT_USER(error,cnow.cts, &p_cuser->cts);
2266 if (error) return error;
2267 PUT_USER(error,cnow.dsr, &p_cuser->dsr);
2268 if (error) return error;
2269 PUT_USER(error,cnow.rng, &p_cuser->rng);
2270 if (error) return error;
2271 PUT_USER(error,cnow.dcd, &p_cuser->dcd);
2272 if (error) return error;
2273 PUT_USER(error,cnow.rx, &p_cuser->rx);
2274 if (error) return error;
2275 PUT_USER(error,cnow.tx, &p_cuser->tx);
2276 if (error) return error;
2277 PUT_USER(error,cnow.frame, &p_cuser->frame);
2278 if (error) return error;
2279 PUT_USER(error,cnow.overrun, &p_cuser->overrun);
2280 if (error) return error;
2281 PUT_USER(error,cnow.parity, &p_cuser->parity);
2282 if (error) return error;
2283 PUT_USER(error,cnow.brk, &p_cuser->brk);
2284 if (error) return error;
2285 PUT_USER(error,cnow.buf_overrun, &p_cuser->buf_overrun);
2286 if (error) return error;
2287 return 0;
2288 default:
2289 return -ENOIOCTLCMD;
2290 }
2291 return 0;
2292}
2293
2294/* Set new termios settings
Jeff Garzikd12341f2007-10-19 15:45:35 -04002295 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 * Arguments:
Jeff Garzikd12341f2007-10-19 15:45:35 -04002297 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 * tty pointer to tty structure
2299 * termios pointer to buffer to hold returned old termios
2300 */
Alan Cox606d0992006-12-08 02:38:45 -08002301static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
2303 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2304 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (debug_level >= DEBUG_LEVEL_INFO)
2307 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__,__LINE__,
2308 tty->driver->name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /* just return if nothing has changed */
2311 if ((tty->termios->c_cflag == old_termios->c_cflag)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002312 && (RELEVANT_IFLAG(tty->termios->c_iflag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 == RELEVANT_IFLAG(old_termios->c_iflag)))
2314 return;
2315
Alan Coxeeb46132009-01-02 13:48:47 +00002316 mgslpc_change_params(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 /* Handle transition to B0 status */
2319 if (old_termios->c_cflag & CBAUD &&
2320 !(tty->termios->c_cflag & CBAUD)) {
2321 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2322 spin_lock_irqsave(&info->lock,flags);
2323 set_signals(info);
2324 spin_unlock_irqrestore(&info->lock,flags);
2325 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 /* Handle transition away from B0 status */
2328 if (!(old_termios->c_cflag & CBAUD) &&
2329 tty->termios->c_cflag & CBAUD) {
2330 info->serial_signals |= SerialSignal_DTR;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002331 if (!(tty->termios->c_cflag & CRTSCTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 !test_bit(TTY_THROTTLED, &tty->flags)) {
2333 info->serial_signals |= SerialSignal_RTS;
2334 }
2335 spin_lock_irqsave(&info->lock,flags);
2336 set_signals(info);
2337 spin_unlock_irqrestore(&info->lock,flags);
2338 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 /* Handle turning off CRTSCTS */
2341 if (old_termios->c_cflag & CRTSCTS &&
2342 !(tty->termios->c_cflag & CRTSCTS)) {
2343 tty->hw_stopped = 0;
2344 tx_release(tty);
2345 }
2346}
2347
2348static void mgslpc_close(struct tty_struct *tty, struct file * filp)
2349{
2350 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Alan Coxeeb46132009-01-02 13:48:47 +00002351 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
2354 return;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (debug_level >= DEBUG_LEVEL_INFO)
2357 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002358 __FILE__,__LINE__, info->device_name, port->count);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002359
Alan Coxeeb46132009-01-02 13:48:47 +00002360 WARN_ON(!port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Alan Coxeeb46132009-01-02 13:48:47 +00002362 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 goto cleanup;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002364
Alan Coxeeb46132009-01-02 13:48:47 +00002365 if (port->flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 mgslpc_wait_until_sent(tty, info->timeout);
2367
Alan Cox978e5952008-04-30 00:53:59 -07002368 mgslpc_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Alan Cox978e5952008-04-30 00:53:59 -07002370 tty_ldisc_flush(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002371 shutdown(info, tty);
2372
2373 tty_port_close_end(port, tty);
2374 tty_port_tty_set(port, NULL);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002375cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 if (debug_level >= DEBUG_LEVEL_INFO)
2377 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__,__LINE__,
Alan Coxeeb46132009-01-02 13:48:47 +00002378 tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
2381/* Wait until the transmitter is empty.
2382 */
2383static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
2384{
2385 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2386 unsigned long orig_jiffies, char_time;
2387
2388 if (!info )
2389 return;
2390
2391 if (debug_level >= DEBUG_LEVEL_INFO)
2392 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
2393 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
2396 return;
2397
Alan Coxeeb46132009-01-02 13:48:47 +00002398 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 goto exit;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 orig_jiffies = jiffies;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 /* Set check interval to 1/5 of estimated time to
2404 * send a character, and make it at least 1. The check
2405 * interval should also be less than the timeout.
2406 * Note: use tight timings here to satisfy the NIST-PCTS.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002407 */
2408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if ( info->params.data_rate ) {
2410 char_time = info->timeout/(32 * 5);
2411 if (!char_time)
2412 char_time++;
2413 } else
2414 char_time = 1;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (timeout)
2417 char_time = min_t(unsigned long, char_time, timeout);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 if (info->params.mode == MGSL_MODE_HDLC) {
2420 while (info->tx_active) {
2421 msleep_interruptible(jiffies_to_msecs(char_time));
2422 if (signal_pending(current))
2423 break;
2424 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2425 break;
2426 }
2427 } else {
2428 while ((info->tx_count || info->tx_active) &&
2429 info->tx_enabled) {
2430 msleep_interruptible(jiffies_to_msecs(char_time));
2431 if (signal_pending(current))
2432 break;
2433 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2434 break;
2435 }
2436 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438exit:
2439 if (debug_level >= DEBUG_LEVEL_INFO)
2440 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
2441 __FILE__,__LINE__, info->device_name );
2442}
2443
2444/* Called by tty_hangup() when a hangup is signaled.
2445 * This is the same as closing all open files for the port.
2446 */
2447static void mgslpc_hangup(struct tty_struct *tty)
2448{
2449 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 if (debug_level >= DEBUG_LEVEL_INFO)
2452 printk("%s(%d):mgslpc_hangup(%s)\n",
2453 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04002454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
2456 return;
2457
2458 mgslpc_flush_buffer(tty);
Alan Coxeeb46132009-01-02 13:48:47 +00002459 shutdown(info, tty);
2460 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
Alan Coxeeb46132009-01-02 13:48:47 +00002463static int carrier_raised(struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
Alan Coxeeb46132009-01-02 13:48:47 +00002465 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2466 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002467
Alan Coxeeb46132009-01-02 13:48:47 +00002468 spin_lock_irqsave(&info->lock,flags);
2469 get_signals(info);
2470 spin_unlock_irqrestore(&info->lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Alan Coxeeb46132009-01-02 13:48:47 +00002472 if (info->serial_signals & SerialSignal_DCD)
2473 return 1;
2474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
Alan Coxfcc8ac12009-06-11 12:24:17 +01002477static void dtr_rts(struct tty_port *port, int onoff)
Alan Coxeeb46132009-01-02 13:48:47 +00002478{
2479 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2480 unsigned long flags;
2481
2482 spin_lock_irqsave(&info->lock,flags);
Alan Coxfcc8ac12009-06-11 12:24:17 +01002483 if (onoff)
2484 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
2485 else
2486 info->serial_signals &= ~SerialSignal_RTS + SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00002487 set_signals(info);
2488 spin_unlock_irqrestore(&info->lock,flags);
2489}
2490
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2493{
2494 MGSLPC_INFO *info;
Alan Coxeeb46132009-01-02 13:48:47 +00002495 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 int retval, line;
2497 unsigned long flags;
2498
Jeff Garzikd12341f2007-10-19 15:45:35 -04002499 /* verify range of specified line number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 line = tty->index;
2501 if ((line < 0) || (line >= mgslpc_device_count)) {
2502 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
2503 __FILE__,__LINE__,line);
2504 return -ENODEV;
2505 }
2506
2507 /* find the info structure for the specified line */
2508 info = mgslpc_device_list;
2509 while(info && info->line != line)
2510 info = info->next_device;
2511 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
2512 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002513
Alan Coxeeb46132009-01-02 13:48:47 +00002514 port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 tty->driver_data = info;
Alan Coxeeb46132009-01-02 13:48:47 +00002516 tty_port_tty_set(port, tty);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 if (debug_level >= DEBUG_LEVEL_INFO)
2519 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
Alan Coxeeb46132009-01-02 13:48:47 +00002520 __FILE__,__LINE__,tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 /* If port is closing, signal caller to try again */
Alan Coxeeb46132009-01-02 13:48:47 +00002523 if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING){
2524 if (port->flags & ASYNC_CLOSING)
2525 interruptible_sleep_on(&port->close_wait);
2526 retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 -EAGAIN : -ERESTARTSYS);
2528 goto cleanup;
2529 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002530
Alan Coxeeb46132009-01-02 13:48:47 +00002531 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 spin_lock_irqsave(&info->netlock, flags);
2534 if (info->netcount) {
2535 retval = -EBUSY;
2536 spin_unlock_irqrestore(&info->netlock, flags);
2537 goto cleanup;
2538 }
Alan Coxeeb46132009-01-02 13:48:47 +00002539 spin_lock(&port->lock);
2540 port->count++;
2541 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 spin_unlock_irqrestore(&info->netlock, flags);
2543
Alan Coxeeb46132009-01-02 13:48:47 +00002544 if (port->count == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 /* 1st open on this device, init hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00002546 retval = startup(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 if (retval < 0)
2548 goto cleanup;
2549 }
2550
Alan Coxeeb46132009-01-02 13:48:47 +00002551 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (retval) {
2553 if (debug_level >= DEBUG_LEVEL_INFO)
2554 printk("%s(%d):block_til_ready(%s) returned %d\n",
2555 __FILE__,__LINE__, info->device_name, retval);
2556 goto cleanup;
2557 }
2558
2559 if (debug_level >= DEBUG_LEVEL_INFO)
2560 printk("%s(%d):mgslpc_open(%s) success\n",
2561 __FILE__,__LINE__, info->device_name);
2562 retval = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002563
2564cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return retval;
2566}
2567
2568/*
2569 * /proc fs routines....
2570 */
2571
Alexey Dobriyan87687142009-03-31 15:19:17 -07002572static inline void line_info(struct seq_file *m, MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
2574 char stat_buf[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 unsigned long flags;
2576
Alexey Dobriyan87687142009-03-31 15:19:17 -07002577 seq_printf(m, "%s:io:%04X irq:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 info->device_name, info->io_base, info->irq_level);
2579
2580 /* output current serial signal states */
2581 spin_lock_irqsave(&info->lock,flags);
2582 get_signals(info);
2583 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 stat_buf[0] = 0;
2586 stat_buf[1] = 0;
2587 if (info->serial_signals & SerialSignal_RTS)
2588 strcat(stat_buf, "|RTS");
2589 if (info->serial_signals & SerialSignal_CTS)
2590 strcat(stat_buf, "|CTS");
2591 if (info->serial_signals & SerialSignal_DTR)
2592 strcat(stat_buf, "|DTR");
2593 if (info->serial_signals & SerialSignal_DSR)
2594 strcat(stat_buf, "|DSR");
2595 if (info->serial_signals & SerialSignal_DCD)
2596 strcat(stat_buf, "|CD");
2597 if (info->serial_signals & SerialSignal_RI)
2598 strcat(stat_buf, "|RI");
2599
2600 if (info->params.mode == MGSL_MODE_HDLC) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002601 seq_printf(m, " HDLC txok:%d rxok:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 info->icount.txok, info->icount.rxok);
2603 if (info->icount.txunder)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002604 seq_printf(m, " txunder:%d", info->icount.txunder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (info->icount.txabort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002606 seq_printf(m, " txabort:%d", info->icount.txabort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 if (info->icount.rxshort)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002608 seq_printf(m, " rxshort:%d", info->icount.rxshort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 if (info->icount.rxlong)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002610 seq_printf(m, " rxlong:%d", info->icount.rxlong);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (info->icount.rxover)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002612 seq_printf(m, " rxover:%d", info->icount.rxover);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (info->icount.rxcrc)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002614 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 } else {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002616 seq_printf(m, " ASYNC tx:%d rx:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 info->icount.tx, info->icount.rx);
2618 if (info->icount.frame)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002619 seq_printf(m, " fe:%d", info->icount.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 if (info->icount.parity)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002621 seq_printf(m, " pe:%d", info->icount.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (info->icount.brk)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002623 seq_printf(m, " brk:%d", info->icount.brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 if (info->icount.overrun)
Alexey Dobriyan87687142009-03-31 15:19:17 -07002625 seq_printf(m, " oe:%d", info->icount.overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 /* Append serial signal status to end */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002629 seq_printf(m, " %s\n", stat_buf+1);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002630
Alexey Dobriyan87687142009-03-31 15:19:17 -07002631 seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 info->tx_active,info->bh_requested,info->bh_running,
2633 info->pending_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634}
2635
2636/* Called to print information about devices
2637 */
Alexey Dobriyan87687142009-03-31 15:19:17 -07002638static int mgslpc_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 MGSLPC_INFO *info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002641
Alexey Dobriyan87687142009-03-31 15:19:17 -07002642 seq_printf(m, "synclink driver:%s\n", driver_version);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 info = mgslpc_device_list;
2645 while( info ) {
Alexey Dobriyan87687142009-03-31 15:19:17 -07002646 line_info(m, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 info = info->next_device;
2648 }
Alexey Dobriyan87687142009-03-31 15:19:17 -07002649 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
2651
Alexey Dobriyan87687142009-03-31 15:19:17 -07002652static int mgslpc_proc_open(struct inode *inode, struct file *file)
2653{
2654 return single_open(file, mgslpc_proc_show, NULL);
2655}
2656
2657static const struct file_operations mgslpc_proc_fops = {
2658 .owner = THIS_MODULE,
2659 .open = mgslpc_proc_open,
2660 .read = seq_read,
2661 .llseek = seq_lseek,
2662 .release = single_release,
2663};
2664
Peter Hagervallcdaad342006-06-23 02:06:04 -07002665static int rx_alloc_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
2667 /* each buffer has header and data */
2668 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;
2669
2670 /* calculate total allocation size for 8 buffers */
2671 info->rx_buf_total_size = info->rx_buf_size * 8;
2672
2673 /* limit total allocated memory */
2674 if (info->rx_buf_total_size > 0x10000)
2675 info->rx_buf_total_size = 0x10000;
2676
2677 /* calculate number of buffers */
2678 info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;
2679
2680 info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
2681 if (info->rx_buf == NULL)
2682 return -ENOMEM;
2683
2684 rx_reset_buffers(info);
2685 return 0;
2686}
2687
Peter Hagervallcdaad342006-06-23 02:06:04 -07002688static void rx_free_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
Jesper Juhl735d5662005-11-07 01:01:29 -08002690 kfree(info->rx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 info->rx_buf = NULL;
2692}
2693
Peter Hagervallcdaad342006-06-23 02:06:04 -07002694static int claim_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 if (rx_alloc_buffers(info) < 0 ) {
2697 printk( "Cant allocate rx buffer %s\n", info->device_name);
2698 release_resources(info);
2699 return -ENODEV;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 return 0;
2702}
2703
Peter Hagervallcdaad342006-06-23 02:06:04 -07002704static void release_resources(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
2706 if (debug_level >= DEBUG_LEVEL_INFO)
2707 printk("release_resources(%s)\n", info->device_name);
2708 rx_free_buffers(info);
2709}
2710
2711/* Add the specified device instance data structure to the
2712 * global linked list of devices and increment the device count.
Jeff Garzikd12341f2007-10-19 15:45:35 -04002713 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 * Arguments: info pointer to device instance data
2715 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07002716static void mgslpc_add_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
2718 info->next_device = NULL;
2719 info->line = mgslpc_device_count;
2720 sprintf(info->device_name,"ttySLP%d",info->line);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 if (info->line < MAX_DEVICE_COUNT) {
2723 if (maxframe[info->line])
2724 info->max_frame_size = maxframe[info->line];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 }
2726
2727 mgslpc_device_count++;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 if (!mgslpc_device_list)
2730 mgslpc_device_list = info;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002731 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 MGSLPC_INFO *current_dev = mgslpc_device_list;
2733 while( current_dev->next_device )
2734 current_dev = current_dev->next_device;
2735 current_dev->next_device = info;
2736 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (info->max_frame_size < 4096)
2739 info->max_frame_size = 4096;
2740 else if (info->max_frame_size > 65535)
2741 info->max_frame_size = 65535;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
2744 info->device_name, info->io_base, info->irq_level);
2745
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002746#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 hdlcdev_init(info);
2748#endif
2749}
2750
Peter Hagervallcdaad342006-06-23 02:06:04 -07002751static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752{
2753 MGSLPC_INFO *info = mgslpc_device_list;
2754 MGSLPC_INFO *last = NULL;
2755
2756 while(info) {
2757 if (info == remove_info) {
2758 if (last)
2759 last->next_device = info->next_device;
2760 else
2761 mgslpc_device_list = info->next_device;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08002762#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 hdlcdev_exit(info);
2764#endif
2765 release_resources(info);
2766 kfree(info);
2767 mgslpc_device_count--;
2768 return;
2769 }
2770 last = info;
2771 info = info->next_device;
2772 }
2773}
2774
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002775static struct pcmcia_device_id mgslpc_ids[] = {
2776 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2777 PCMCIA_DEVICE_NULL
2778};
2779MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781static struct pcmcia_driver mgslpc_driver = {
2782 .owner = THIS_MODULE,
2783 .drv = {
2784 .name = "synclink_cs",
2785 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02002786 .probe = mgslpc_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01002787 .remove = mgslpc_detach,
Dominik Brodowski4af48c82005-06-27 16:28:42 -07002788 .id_table = mgslpc_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01002789 .suspend = mgslpc_suspend,
2790 .resume = mgslpc_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791};
2792
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002793static const struct tty_operations mgslpc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 .open = mgslpc_open,
2795 .close = mgslpc_close,
2796 .write = mgslpc_write,
2797 .put_char = mgslpc_put_char,
2798 .flush_chars = mgslpc_flush_chars,
2799 .write_room = mgslpc_write_room,
2800 .chars_in_buffer = mgslpc_chars_in_buffer,
2801 .flush_buffer = mgslpc_flush_buffer,
2802 .ioctl = mgslpc_ioctl,
2803 .throttle = mgslpc_throttle,
2804 .unthrottle = mgslpc_unthrottle,
2805 .send_xchar = mgslpc_send_xchar,
2806 .break_ctl = mgslpc_break,
2807 .wait_until_sent = mgslpc_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 .set_termios = mgslpc_set_termios,
2809 .stop = tx_pause,
2810 .start = tx_release,
2811 .hangup = mgslpc_hangup,
2812 .tiocmget = tiocmget,
2813 .tiocmset = tiocmset,
Alexey Dobriyan87687142009-03-31 15:19:17 -07002814 .proc_fops = &mgslpc_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815};
2816
2817static void synclink_cs_cleanup(void)
2818{
2819 int rc;
2820
2821 printk("Unloading %s: version %s\n", driver_name, driver_version);
2822
2823 while(mgslpc_device_list)
2824 mgslpc_remove_device(mgslpc_device_list);
2825
2826 if (serial_driver) {
2827 if ((rc = tty_unregister_driver(serial_driver)))
2828 printk("%s(%d) failed to unregister tty driver err=%d\n",
2829 __FILE__,__LINE__,rc);
2830 put_tty_driver(serial_driver);
2831 }
2832
2833 pcmcia_unregister_driver(&mgslpc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
2835
2836static int __init synclink_cs_init(void)
2837{
2838 int rc;
2839
2840 if (break_on_load) {
2841 mgslpc_get_text_ptr();
2842 BREAKPOINT();
2843 }
2844
2845 printk("%s %s\n", driver_name, driver_version);
2846
2847 if ((rc = pcmcia_register_driver(&mgslpc_driver)) < 0)
2848 return rc;
2849
2850 serial_driver = alloc_tty_driver(MAX_DEVICE_COUNT);
2851 if (!serial_driver) {
2852 rc = -ENOMEM;
2853 goto error;
2854 }
2855
2856 /* Initialize the tty_driver structure */
Jeff Garzikd12341f2007-10-19 15:45:35 -04002857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 serial_driver->owner = THIS_MODULE;
2859 serial_driver->driver_name = "synclink_cs";
2860 serial_driver->name = "ttySLP";
2861 serial_driver->major = ttymajor;
2862 serial_driver->minor_start = 64;
2863 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
2864 serial_driver->subtype = SERIAL_TYPE_NORMAL;
2865 serial_driver->init_termios = tty_std_termios;
2866 serial_driver->init_termios.c_cflag =
2867 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2868 serial_driver->flags = TTY_DRIVER_REAL_RAW;
2869 tty_set_operations(serial_driver, &mgslpc_ops);
2870
2871 if ((rc = tty_register_driver(serial_driver)) < 0) {
2872 printk("%s(%d):Couldn't register serial driver\n",
2873 __FILE__,__LINE__);
2874 put_tty_driver(serial_driver);
2875 serial_driver = NULL;
2876 goto error;
2877 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04002878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 printk("%s %s, tty major#%d\n",
2880 driver_name, driver_version,
2881 serial_driver->major);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return 0;
2884
2885error:
2886 synclink_cs_cleanup();
2887 return rc;
2888}
2889
Jeff Garzikd12341f2007-10-19 15:45:35 -04002890static void __exit synclink_cs_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
2892 synclink_cs_cleanup();
2893}
2894
2895module_init(synclink_cs_init);
2896module_exit(synclink_cs_exit);
2897
2898static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
2899{
2900 unsigned int M, N;
2901 unsigned char val;
2902
Jeff Garzikd12341f2007-10-19 15:45:35 -04002903 /* note:standard BRG mode is broken in V3.2 chip
2904 * so enhanced mode is always used
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 */
2906
2907 if (rate) {
2908 N = 3686400 / rate;
2909 if (!N)
2910 N = 1;
2911 N >>= 1;
2912 for (M = 1; N > 64 && M < 16; M++)
2913 N >>= 1;
2914 N--;
2915
2916 /* BGR[5..0] = N
2917 * BGR[9..6] = M
2918 * BGR[7..0] contained in BGR register
2919 * BGR[9..8] contained in CCR2[7..6]
2920 * divisor = (N+1)*2^M
2921 *
2922 * Note: M *must* not be zero (causes asymetric duty cycle)
Jeff Garzikd12341f2007-10-19 15:45:35 -04002923 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 write_reg(info, (unsigned char) (channel + BGR),
2925 (unsigned char) ((M << 6) + N));
2926 val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
2927 val |= ((M << 4) & 0xc0);
2928 write_reg(info, (unsigned char) (channel + CCR2), val);
2929 }
2930}
2931
2932/* Enabled the AUX clock output at the specified frequency.
2933 */
2934static void enable_auxclk(MGSLPC_INFO *info)
2935{
2936 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 /* MODE
2939 *
2940 * 07..06 MDS[1..0] 10 = transparent HDLC mode
2941 * 05 ADM Address Mode, 0 = no addr recognition
2942 * 04 TMD Timer Mode, 0 = external
2943 * 03 RAC Receiver Active, 0 = inactive
2944 * 02 RTS 0=RTS active during xmit, 1=RTS always active
2945 * 01 TRS Timer Resolution, 1=512
2946 * 00 TLP Test Loop, 0 = no loop
2947 *
2948 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04002949 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 val = 0x82;
Jeff Garzikd12341f2007-10-19 15:45:35 -04002951
2952 /* channel B RTS is used to enable AUXCLK driver on SP505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2954 val |= BIT2;
2955 write_reg(info, CHB + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002956
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 /* CCR0
2958 *
2959 * 07 PU Power Up, 1=active, 0=power down
2960 * 06 MCE Master Clock Enable, 1=enabled
2961 * 05 Reserved, 0
2962 * 04..02 SC[2..0] Encoding
2963 * 01..00 SM[1..0] Serial Mode, 00=HDLC
2964 *
2965 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002966 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 write_reg(info, CHB + CCR0, 0xc0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 /* CCR1
2970 *
2971 * 07 SFLG Shared Flag, 0 = disable shared flags
2972 * 06 GALP Go Active On Loop, 0 = not used
2973 * 05 GLP Go On Loop, 0 = not used
2974 * 04 ODS Output Driver Select, 1=TxD is push-pull output
2975 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
2976 * 02..00 CM[2..0] Clock Mode
2977 *
2978 * 0001 0111
Jeff Garzikd12341f2007-10-19 15:45:35 -04002979 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 write_reg(info, CHB + CCR1, 0x17);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 /* CCR2 (Channel B)
2983 *
2984 * 07..06 BGR[9..8] Baud rate bits 9..8
2985 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
2986 * 04 SSEL Clock source select, 1=submode b
2987 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
2988 * 02 RWX Read/Write Exchange 0=disabled
2989 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
2990 * 00 DIV, data inversion 0=disabled, 1=enabled
2991 *
2992 * 0011 1000
Jeff Garzikd12341f2007-10-19 15:45:35 -04002993 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2995 write_reg(info, CHB + CCR2, 0x38);
2996 else
2997 write_reg(info, CHB + CCR2, 0x30);
Jeff Garzikd12341f2007-10-19 15:45:35 -04002998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 /* CCR4
3000 *
3001 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3002 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3003 * 05 TST1 Test Pin, 0=normal operation
3004 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3005 * 03..02 Reserved, must be 0
3006 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3007 *
3008 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 write_reg(info, CHB + CCR4, 0x50);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 /* if auxclk not enabled, set internal BRG so
3013 * CTS transitions can be detected (requires TxC)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003014 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3016 mgslpc_set_rate(info, CHB, info->params.clock_speed);
3017 else
3018 mgslpc_set_rate(info, CHB, 921600);
3019}
3020
Jeff Garzikd12341f2007-10-19 15:45:35 -04003021static void loopback_enable(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
3023 unsigned char val;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003024
3025 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 val = read_reg(info, CHA + CCR1) | (BIT2 + BIT1 + BIT0);
3027 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003028
3029 /* CCR2:04 SSEL Clock source select, 1=submode b */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 val = read_reg(info, CHA + CCR2) | (BIT4 + BIT5);
3031 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003032
3033 /* set LinkSpeed if available, otherwise default to 2Mbps */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 if (info->params.clock_speed)
3035 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3036 else
3037 mgslpc_set_rate(info, CHA, 1843200);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003038
3039 /* MODE:00 TLP Test Loop, 1=loopback enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 val = read_reg(info, CHA + MODE) | BIT0;
3041 write_reg(info, CHA + MODE, val);
3042}
3043
Peter Hagervallcdaad342006-06-23 02:06:04 -07003044static void hdlc_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045{
3046 unsigned char val;
3047 unsigned char clkmode, clksubmode;
3048
Jeff Garzikd12341f2007-10-19 15:45:35 -04003049 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 irq_disable(info, CHA, 0xffff);
3051 irq_disable(info, CHB, 0xffff);
3052 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003053
3054 /* assume clock mode 0a, rcv=RxC xmt=TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 clkmode = clksubmode = 0;
3056 if (info->params.flags & HDLC_FLAG_RXC_DPLL
3057 && info->params.flags & HDLC_FLAG_TXC_DPLL) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003058 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 clkmode = 7;
3060 } else if (info->params.flags & HDLC_FLAG_RXC_BRG
3061 && info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003062 /* clock mode 7b, rcv = BRG, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 clkmode = 7;
3064 clksubmode = 1;
3065 } else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
3066 if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003067 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 clkmode = 6;
3069 clksubmode = 1;
3070 } else {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003071 /* clock mode 6a, rcv = DPLL, xmt = TxC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 clkmode = 6;
3073 }
3074 } else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
Jeff Garzikd12341f2007-10-19 15:45:35 -04003075 /* clock mode 0b, rcv = RxC, xmt = BRG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 clksubmode = 1;
3077 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 /* MODE
3080 *
3081 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3082 * 05 ADM Address Mode, 0 = no addr recognition
3083 * 04 TMD Timer Mode, 0 = external
3084 * 03 RAC Receiver Active, 0 = inactive
3085 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3086 * 01 TRS Timer Resolution, 1=512
3087 * 00 TLP Test Loop, 0 = no loop
3088 *
3089 * 1000 0010
Jeff Garzikd12341f2007-10-19 15:45:35 -04003090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 val = 0x82;
3092 if (info->params.loopback)
3093 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003094
3095 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 if (info->serial_signals & SerialSignal_RTS)
3097 val |= BIT2;
3098 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003099
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 /* CCR0
3101 *
3102 * 07 PU Power Up, 1=active, 0=power down
3103 * 06 MCE Master Clock Enable, 1=enabled
3104 * 05 Reserved, 0
3105 * 04..02 SC[2..0] Encoding
3106 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3107 *
3108 * 11000000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 val = 0xc0;
3111 switch (info->params.encoding)
3112 {
3113 case HDLC_ENCODING_NRZI:
3114 val |= BIT3;
3115 break;
3116 case HDLC_ENCODING_BIPHASE_SPACE:
3117 val |= BIT4;
3118 break; // FM0
3119 case HDLC_ENCODING_BIPHASE_MARK:
3120 val |= BIT4 + BIT2;
3121 break; // FM1
3122 case HDLC_ENCODING_BIPHASE_LEVEL:
3123 val |= BIT4 + BIT3;
3124 break; // Manchester
3125 }
3126 write_reg(info, CHA + CCR0, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 /* CCR1
3129 *
3130 * 07 SFLG Shared Flag, 0 = disable shared flags
3131 * 06 GALP Go Active On Loop, 0 = not used
3132 * 05 GLP Go On Loop, 0 = not used
3133 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3134 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3135 * 02..00 CM[2..0] Clock Mode
3136 *
3137 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003138 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 val = 0x10 + clkmode;
3140 write_reg(info, CHA + CCR1, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 /* CCR2
3143 *
3144 * 07..06 BGR[9..8] Baud rate bits 9..8
3145 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3146 * 04 SSEL Clock source select, 1=submode b
3147 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3148 * 02 RWX Read/Write Exchange 0=disabled
3149 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3150 * 00 DIV, data inversion 0=disabled, 1=enabled
3151 *
3152 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003153 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 val = 0x00;
3155 if (clkmode == 2 || clkmode == 3 || clkmode == 6
3156 || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
3157 val |= BIT5;
3158 if (clksubmode)
3159 val |= BIT4;
3160 if (info->params.crc_type == HDLC_CRC_32_CCITT)
3161 val |= BIT1;
3162 if (info->params.encoding == HDLC_ENCODING_NRZB)
3163 val |= BIT0;
3164 write_reg(info, CHA + CCR2, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 /* CCR3
3167 *
3168 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3169 * 05 EPT Enable preamble transmission, 1=enabled
3170 * 04 RADD Receive address pushed to FIFO, 0=disabled
3171 * 03 CRL CRC Reset Level, 0=FFFF
3172 * 02 RCRC Rx CRC 0=On 1=Off
3173 * 01 TCRC Tx CRC 0=On 1=Off
3174 * 00 PSD DPLL Phase Shift Disable
3175 *
3176 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 val = 0x00;
3179 if (info->params.crc_type == HDLC_CRC_NONE)
3180 val |= BIT2 + BIT1;
3181 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
3182 val |= BIT5;
3183 switch (info->params.preamble_length)
3184 {
3185 case HDLC_PREAMBLE_LENGTH_16BITS:
3186 val |= BIT6;
3187 break;
3188 case HDLC_PREAMBLE_LENGTH_32BITS:
3189 val |= BIT6;
3190 break;
3191 case HDLC_PREAMBLE_LENGTH_64BITS:
3192 val |= BIT7 + BIT6;
3193 break;
3194 }
3195 write_reg(info, CHA + CCR3, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003196
3197 /* PRE - Preamble pattern */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 val = 0;
3199 switch (info->params.preamble)
3200 {
3201 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
3202 case HDLC_PREAMBLE_PATTERN_10: val = 0xaa; break;
3203 case HDLC_PREAMBLE_PATTERN_01: val = 0x55; break;
3204 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
3205 }
3206 write_reg(info, CHA + PRE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003207
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 /* CCR4
3209 *
3210 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3211 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3212 * 05 TST1 Test Pin, 0=normal operation
3213 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3214 * 03..02 Reserved, must be 0
3215 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3216 *
3217 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 val = 0x50;
3220 write_reg(info, CHA + CCR4, val);
3221 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
3222 mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
3223 else
3224 mgslpc_set_rate(info, CHA, info->params.clock_speed);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 /* RLCR Receive length check register
3227 *
3228 * 7 1=enable receive length check
3229 * 6..0 Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003230 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 /* XBCH Transmit Byte Count High
3234 *
3235 * 07 DMA mode, 0 = interrupt driven
3236 * 06 NRM, 0=ABM (ignored)
3237 * 05 CAS Carrier Auto Start
3238 * 04 XC Transmit Continuously (ignored)
3239 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3240 *
3241 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003242 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 val = 0x00;
3244 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3245 val |= BIT5;
3246 write_reg(info, CHA + XBCH, val);
3247 enable_auxclk(info);
3248 if (info->params.loopback || info->testing_irq)
3249 loopback_enable(info);
3250 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3251 {
3252 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003253 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 set_reg_bits(info, CHA + PVR, BIT3);
3255 } else
3256 clear_reg_bits(info, CHA + PVR, BIT3);
3257
3258 irq_enable(info, CHA,
3259 IRQ_RXEOM + IRQ_RXFIFO + IRQ_ALLSENT +
3260 IRQ_UNDERRUN + IRQ_TXFIFO);
3261 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3262 wait_command_complete(info, CHA);
3263 read_reg16(info, CHA + ISR); /* clear pending IRQs */
Jeff Garzikd12341f2007-10-19 15:45:35 -04003264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 /* Master clock mode enabled above to allow reset commands
3266 * to complete even if no data clocks are present.
3267 *
3268 * Disable master clock mode for normal communications because
3269 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3270 * IRQ when in master clock mode.
3271 *
3272 * Leave master clock mode enabled for IRQ test because the
3273 * timer IRQ used by the test can only happen in master clock mode.
Jeff Garzikd12341f2007-10-19 15:45:35 -04003274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 if (!info->testing_irq)
3276 clear_reg_bits(info, CHA + CCR0, BIT6);
3277
3278 tx_set_idle(info);
3279
3280 tx_stop(info);
3281 rx_stop(info);
3282}
3283
Peter Hagervallcdaad342006-06-23 02:06:04 -07003284static void rx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
3286 if (debug_level >= DEBUG_LEVEL_ISR)
3287 printk("%s(%d):rx_stop(%s)\n",
3288 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003289
3290 /* MODE:03 RAC Receiver Active, 0=inactive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 clear_reg_bits(info, CHA + MODE, BIT3);
3292
Joe Perches0fab6de2008-04-28 02:14:02 -07003293 info->rx_enabled = false;
3294 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295}
3296
Peter Hagervallcdaad342006-06-23 02:06:04 -07003297static void rx_start(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298{
3299 if (debug_level >= DEBUG_LEVEL_ISR)
3300 printk("%s(%d):rx_start(%s)\n",
3301 __FILE__,__LINE__, info->device_name );
3302
3303 rx_reset_buffers(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003304 info->rx_enabled = false;
3305 info->rx_overflow = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Jeff Garzikd12341f2007-10-19 15:45:35 -04003307 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 set_reg_bits(info, CHA + MODE, BIT3);
3309
Joe Perches0fab6de2008-04-28 02:14:02 -07003310 info->rx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311}
3312
Alan Coxeeb46132009-01-02 13:48:47 +00003313static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314{
3315 if (debug_level >= DEBUG_LEVEL_ISR)
3316 printk("%s(%d):tx_start(%s)\n",
3317 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 if (info->tx_count) {
3320 /* If auto RTS enabled and RTS is inactive, then assert */
3321 /* RTS and set a flag indicating that the driver should */
3322 /* negate RTS when the transmission completes. */
Joe Perches0fab6de2008-04-28 02:14:02 -07003323 info->drop_rts_on_tx_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
3325 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3326 get_signals(info);
3327 if (!(info->serial_signals & SerialSignal_RTS)) {
3328 info->serial_signals |= SerialSignal_RTS;
3329 set_signals(info);
Joe Perches0fab6de2008-04-28 02:14:02 -07003330 info->drop_rts_on_tx_done = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 }
3332 }
3333
3334 if (info->params.mode == MGSL_MODE_ASYNC) {
3335 if (!info->tx_active) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003336 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003337 tx_ready(info, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 }
3339 } else {
Joe Perches0fab6de2008-04-28 02:14:02 -07003340 info->tx_active = true;
Alan Coxeeb46132009-01-02 13:48:47 +00003341 tx_ready(info, tty);
Jiri Slaby40565f12007-02-12 00:52:31 -08003342 mod_timer(&info->tx_timer, jiffies +
3343 msecs_to_jiffies(5000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 }
3345 }
3346
3347 if (!info->tx_enabled)
Joe Perches0fab6de2008-04-28 02:14:02 -07003348 info->tx_enabled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349}
3350
Peter Hagervallcdaad342006-06-23 02:06:04 -07003351static void tx_stop(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352{
3353 if (debug_level >= DEBUG_LEVEL_ISR)
3354 printk("%s(%d):tx_stop(%s)\n",
3355 __FILE__,__LINE__, info->device_name );
Jeff Garzikd12341f2007-10-19 15:45:35 -04003356
3357 del_timer(&info->tx_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
Joe Perches0fab6de2008-04-28 02:14:02 -07003359 info->tx_enabled = false;
3360 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361}
3362
3363/* Reset the adapter to a known state and prepare it for further use.
3364 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003365static void reset_device(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003367 /* power up both channels (set BIT7) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 write_reg(info, CHA + CCR0, 0x80);
3369 write_reg(info, CHB + CCR0, 0x80);
3370 write_reg(info, CHA + MODE, 0);
3371 write_reg(info, CHB + MODE, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003372
3373 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 irq_disable(info, CHA, 0xffff);
3375 irq_disable(info, CHB, 0xffff);
3376 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 /* PCR Port Configuration Register
3379 *
3380 * 07..04 DEC[3..0] Serial I/F select outputs
3381 * 03 output, 1=AUTO CTS control enabled
3382 * 02 RI Ring Indicator input 0=active
3383 * 01 DSR input 0=active
3384 * 00 DTR output 0=active
3385 *
3386 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003387 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 write_reg(info, PCR, 0x06);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 /* PVR Port Value Register
3391 *
3392 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3393 * 03 AUTO CTS output 1=enabled
3394 * 02 RI Ring Indicator input
3395 * 01 DSR input
3396 * 00 DTR output (1=inactive)
3397 *
3398 * 0000 0001
3399 */
3400// write_reg(info, PVR, PVR_DTR);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 /* IPC Interrupt Port Configuration
3403 *
3404 * 07 VIS 1=Masked interrupts visible
3405 * 06..05 Reserved, 0
3406 * 04..03 SLA Slave address, 00 ignored
3407 * 02 CASM Cascading Mode, 1=daisy chain
3408 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3409 *
3410 * 0000 0101
Jeff Garzikd12341f2007-10-19 15:45:35 -04003411 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 write_reg(info, IPC, 0x05);
3413}
3414
Peter Hagervallcdaad342006-06-23 02:06:04 -07003415static void async_mode(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416{
3417 unsigned char val;
3418
Jeff Garzikd12341f2007-10-19 15:45:35 -04003419 /* disable all interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 irq_disable(info, CHA, 0xffff);
3421 irq_disable(info, CHB, 0xffff);
3422 port_irq_disable(info, 0xff);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 /* MODE
3425 *
3426 * 07 Reserved, 0
3427 * 06 FRTS RTS State, 0=active
3428 * 05 FCTS Flow Control on CTS
3429 * 04 FLON Flow Control Enable
3430 * 03 RAC Receiver Active, 0 = inactive
3431 * 02 RTS 0=Auto RTS, 1=manual RTS
3432 * 01 TRS Timer Resolution, 1=512
3433 * 00 TLP Test Loop, 0 = no loop
3434 *
3435 * 0000 0110
Jeff Garzikd12341f2007-10-19 15:45:35 -04003436 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 val = 0x06;
3438 if (info->params.loopback)
3439 val |= BIT0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003440
3441 /* preserve RTS state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 if (!(info->serial_signals & SerialSignal_RTS))
3443 val |= BIT6;
3444 write_reg(info, CHA + MODE, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003445
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 /* CCR0
3447 *
3448 * 07 PU Power Up, 1=active, 0=power down
3449 * 06 MCE Master Clock Enable, 1=enabled
3450 * 05 Reserved, 0
3451 * 04..02 SC[2..0] Encoding, 000=NRZ
3452 * 01..00 SM[1..0] Serial Mode, 11=Async
3453 *
3454 * 1000 0011
Jeff Garzikd12341f2007-10-19 15:45:35 -04003455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 write_reg(info, CHA + CCR0, 0x83);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003457
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 /* CCR1
3459 *
3460 * 07..05 Reserved, 0
3461 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3462 * 03 BCR Bit Clock Rate, 1=16x
3463 * 02..00 CM[2..0] Clock Mode, 111=BRG
3464 *
3465 * 0001 1111
Jeff Garzikd12341f2007-10-19 15:45:35 -04003466 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 write_reg(info, CHA + CCR1, 0x1f);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 /* CCR2 (channel A)
3470 *
3471 * 07..06 BGR[9..8] Baud rate bits 9..8
3472 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3473 * 04 SSEL Clock source select, 1=submode b
3474 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3475 * 02 RWX Read/Write Exchange 0=disabled
3476 * 01 Reserved, 0
3477 * 00 DIV, data inversion 0=disabled, 1=enabled
3478 *
3479 * 0001 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 write_reg(info, CHA + CCR2, 0x10);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 /* CCR3
3484 *
3485 * 07..01 Reserved, 0
3486 * 00 PSD DPLL Phase Shift Disable
3487 *
3488 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003489 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 write_reg(info, CHA + CCR3, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 /* CCR4
3493 *
3494 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3495 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3496 * 05 TST1 Test Pin, 0=normal operation
3497 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3498 * 03..00 Reserved, must be 0
3499 *
3500 * 0101 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003501 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 write_reg(info, CHA + CCR4, 0x50);
3503 mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003504
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 /* DAFO Data Format
3506 *
3507 * 07 Reserved, 0
3508 * 06 XBRK transmit break, 0=normal operation
3509 * 05 Stop bits (0=1, 1=2)
3510 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3511 * 02 PAREN Parity Enable
3512 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3513 *
Jeff Garzikd12341f2007-10-19 15:45:35 -04003514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 val = 0x00;
3516 if (info->params.data_bits != 8)
3517 val |= BIT0; /* 7 bits */
3518 if (info->params.stop_bits != 1)
3519 val |= BIT5;
3520 if (info->params.parity != ASYNC_PARITY_NONE)
3521 {
3522 val |= BIT2; /* Parity enable */
3523 if (info->params.parity == ASYNC_PARITY_ODD)
3524 val |= BIT3;
3525 else
3526 val |= BIT4;
3527 }
3528 write_reg(info, CHA + DAFO, val);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 /* RFC Rx FIFO Control
3531 *
3532 * 07 Reserved, 0
3533 * 06 DPS, 1=parity bit not stored in data byte
3534 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3535 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3536 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3537 * 01 Reserved, 0
3538 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3539 *
3540 * 0101 1100
Jeff Garzikd12341f2007-10-19 15:45:35 -04003541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 write_reg(info, CHA + RFC, 0x5c);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 /* RLCR Receive length check register
3545 *
3546 * Max frame length = (RL + 1) * 32
Jeff Garzikd12341f2007-10-19 15:45:35 -04003547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 write_reg(info, CHA + RLCR, 0);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 /* XBCH Transmit Byte Count High
3551 *
3552 * 07 DMA mode, 0 = interrupt driven
3553 * 06 NRM, 0=ABM (ignored)
3554 * 05 CAS Carrier Auto Start
3555 * 04 XC Transmit Continuously (ignored)
3556 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3557 *
3558 * 0000 0000
Jeff Garzikd12341f2007-10-19 15:45:35 -04003559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 val = 0x00;
3561 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3562 val |= BIT5;
3563 write_reg(info, CHA + XBCH, val);
3564 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3565 irq_enable(info, CHA, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003566
3567 /* MODE:03 RAC Receiver Active, 1=active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 set_reg_bits(info, CHA + MODE, BIT3);
3569 enable_auxclk(info);
3570 if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
3571 irq_enable(info, CHB, IRQ_CTS);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003572 /* PVR[3] 1=AUTO CTS active */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 set_reg_bits(info, CHA + PVR, BIT3);
3574 } else
3575 clear_reg_bits(info, CHA + PVR, BIT3);
3576 irq_enable(info, CHA,
3577 IRQ_RXEOM + IRQ_RXFIFO + IRQ_BREAK_ON + IRQ_RXTIME +
3578 IRQ_ALLSENT + IRQ_TXFIFO);
3579 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3580 wait_command_complete(info, CHA);
3581 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3582}
3583
3584/* Set the HDLC idle mode for the transmitter.
3585 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003586static void tx_set_idle(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003588 /* Note: ESCC2 only supports flags and one idle modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 if (info->idle_mode == HDLC_TXIDLE_FLAGS)
3590 set_reg_bits(info, CHA + CCR1, BIT3);
3591 else
3592 clear_reg_bits(info, CHA + CCR1, BIT3);
3593}
3594
3595/* get state of the V24 status (input) signals.
3596 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003597static void get_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598{
3599 unsigned char status = 0;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003600
3601 /* preserve DTR and RTS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
3603
3604 if (read_reg(info, CHB + VSTR) & BIT7)
3605 info->serial_signals |= SerialSignal_DCD;
3606 if (read_reg(info, CHB + STAR) & BIT1)
3607 info->serial_signals |= SerialSignal_CTS;
3608
3609 status = read_reg(info, CHA + PVR);
3610 if (!(status & PVR_RI))
3611 info->serial_signals |= SerialSignal_RI;
3612 if (!(status & PVR_DSR))
3613 info->serial_signals |= SerialSignal_DSR;
3614}
3615
3616/* Set the state of DTR and RTS based on contents of
3617 * serial_signals member of device extension.
3618 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003619static void set_signals(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620{
3621 unsigned char val;
3622
3623 val = read_reg(info, CHA + MODE);
3624 if (info->params.mode == MGSL_MODE_ASYNC) {
3625 if (info->serial_signals & SerialSignal_RTS)
3626 val &= ~BIT6;
3627 else
3628 val |= BIT6;
3629 } else {
3630 if (info->serial_signals & SerialSignal_RTS)
3631 val |= BIT2;
3632 else
3633 val &= ~BIT2;
3634 }
3635 write_reg(info, CHA + MODE, val);
3636
3637 if (info->serial_signals & SerialSignal_DTR)
3638 clear_reg_bits(info, CHA + PVR, PVR_DTR);
3639 else
3640 set_reg_bits(info, CHA + PVR, PVR_DTR);
3641}
3642
Peter Hagervallcdaad342006-06-23 02:06:04 -07003643static void rx_reset_buffers(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644{
3645 RXBUF *buf;
3646 int i;
3647
3648 info->rx_put = 0;
3649 info->rx_get = 0;
3650 info->rx_frame_count = 0;
3651 for (i=0 ; i < info->rx_buf_count ; i++) {
3652 buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
3653 buf->status = buf->count = 0;
3654 }
3655}
3656
3657/* Attempt to return a received HDLC frame
3658 * Only frames received without errors are returned.
3659 *
Joe Perches0fab6de2008-04-28 02:14:02 -07003660 * Returns true if frame returned, otherwise false
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 */
Alan Coxeeb46132009-01-02 13:48:47 +00003662static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663{
3664 unsigned short status;
3665 RXBUF *buf;
3666 unsigned int framesize = 0;
3667 unsigned long flags;
Joe Perches0fab6de2008-04-28 02:14:02 -07003668 bool return_frame = false;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 if (info->rx_frame_count == 0)
Joe Perches0fab6de2008-04-28 02:14:02 -07003671 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
3673 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));
3674
3675 status = buf->status;
3676
3677 /* 07 VFR 1=valid frame
3678 * 06 RDO 1=data overrun
3679 * 05 CRC 1=OK, 0=error
3680 * 04 RAB 1=frame aborted
3681 */
3682 if ((status & 0xf0) != 0xA0) {
3683 if (!(status & BIT7) || (status & BIT4))
3684 info->icount.rxabort++;
3685 else if (status & BIT6)
3686 info->icount.rxover++;
3687 else if (!(status & BIT5)) {
3688 info->icount.rxcrc++;
3689 if (info->params.crc_type & HDLC_CRC_RETURN_EX)
Joe Perches0fab6de2008-04-28 02:14:02 -07003690 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 }
3692 framesize = 0;
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003693#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 {
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003695 info->netdev->stats.rx_errors++;
3696 info->netdev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 }
3698#endif
3699 } else
Joe Perches0fab6de2008-04-28 02:14:02 -07003700 return_frame = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
3702 if (return_frame)
3703 framesize = buf->count;
3704
3705 if (debug_level >= DEBUG_LEVEL_BH)
3706 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
3707 __FILE__,__LINE__,info->device_name,status,framesize);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003708
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 if (debug_level >= DEBUG_LEVEL_DATA)
Jeff Garzikd12341f2007-10-19 15:45:35 -04003710 trace_block(info, buf->data, framesize, 0);
3711
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 if (framesize) {
3713 if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
3714 framesize+1 > info->max_frame_size) ||
3715 framesize > info->max_frame_size)
3716 info->icount.rxlong++;
3717 else {
3718 if (status & BIT5)
3719 info->icount.rxok++;
3720
3721 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
3722 *(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
3723 ++framesize;
3724 }
3725
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003726#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 if (info->netcount)
3728 hdlcdev_rx(info, buf->data, framesize);
3729 else
3730#endif
3731 ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
3732 }
3733 }
3734
3735 spin_lock_irqsave(&info->lock,flags);
3736 buf->status = buf->count = 0;
3737 info->rx_frame_count--;
3738 info->rx_get++;
3739 if (info->rx_get >= info->rx_buf_count)
3740 info->rx_get = 0;
3741 spin_unlock_irqrestore(&info->lock,flags);
3742
Joe Perches0fab6de2008-04-28 02:14:02 -07003743 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744}
3745
Joe Perches0fab6de2008-04-28 02:14:02 -07003746static bool register_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747{
Jeff Garzikd12341f2007-10-19 15:45:35 -04003748 static unsigned char patterns[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
Tobias Klauserfe971072006-01-09 20:54:02 -08003750 static unsigned int count = ARRAY_SIZE(patterns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 unsigned int i;
Joe Perches0fab6de2008-04-28 02:14:02 -07003752 bool rc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 unsigned long flags;
3754
3755 spin_lock_irqsave(&info->lock,flags);
3756 reset_device(info);
3757
3758 for (i = 0; i < count; i++) {
3759 write_reg(info, XAD1, patterns[i]);
3760 write_reg(info, XAD2, patterns[(i + 1) % count]);
Tobias Klauserfe971072006-01-09 20:54:02 -08003761 if ((read_reg(info, XAD1) != patterns[i]) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
Joe Perches0fab6de2008-04-28 02:14:02 -07003763 rc = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 break;
3765 }
3766 }
3767
3768 spin_unlock_irqrestore(&info->lock,flags);
3769 return rc;
3770}
3771
Joe Perches0fab6de2008-04-28 02:14:02 -07003772static bool irq_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773{
3774 unsigned long end_time;
3775 unsigned long flags;
3776
3777 spin_lock_irqsave(&info->lock,flags);
3778 reset_device(info);
3779
Joe Perches0fab6de2008-04-28 02:14:02 -07003780 info->testing_irq = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 hdlc_mode(info);
3782
Joe Perches0fab6de2008-04-28 02:14:02 -07003783 info->irq_occurred = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 /* init hdlc mode */
3786
3787 irq_enable(info, CHA, IRQ_TIMER);
3788 write_reg(info, CHA + TIMR, 0); /* 512 cycles */
3789 issue_command(info, CHA, CMD_START_TIMER);
3790
3791 spin_unlock_irqrestore(&info->lock,flags);
3792
3793 end_time=100;
3794 while(end_time-- && !info->irq_occurred) {
3795 msleep_interruptible(10);
3796 }
Jeff Garzikd12341f2007-10-19 15:45:35 -04003797
Joe Perches0fab6de2008-04-28 02:14:02 -07003798 info->testing_irq = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
3800 spin_lock_irqsave(&info->lock,flags);
3801 reset_device(info);
3802 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003803
Joe Perches0fab6de2008-04-28 02:14:02 -07003804 return info->irq_occurred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805}
3806
Peter Hagervallcdaad342006-06-23 02:06:04 -07003807static int adapter_test(MGSLPC_INFO *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808{
3809 if (!register_test(info)) {
3810 info->init_error = DiagStatus_AddressFailure;
3811 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
3812 __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
3813 return -ENODEV;
3814 }
3815
3816 if (!irq_test(info)) {
3817 info->init_error = DiagStatus_IrqFailure;
3818 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
3819 __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
3820 return -ENODEV;
3821 }
3822
3823 if (debug_level >= DEBUG_LEVEL_INFO)
3824 printk("%s(%d):device %s passed diagnostics\n",
3825 __FILE__,__LINE__,info->device_name);
3826 return 0;
3827}
3828
Peter Hagervallcdaad342006-06-23 02:06:04 -07003829static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830{
3831 int i;
3832 int linecount;
3833 if (xmit)
3834 printk("%s tx data:\n",info->device_name);
3835 else
3836 printk("%s rx data:\n",info->device_name);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003837
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 while(count) {
3839 if (count > 16)
3840 linecount = 16;
3841 else
3842 linecount = count;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 for(i=0;i<linecount;i++)
3845 printk("%02X ",(unsigned char)data[i]);
3846 for(;i<17;i++)
3847 printk(" ");
3848 for(i=0;i<linecount;i++) {
3849 if (data[i]>=040 && data[i]<=0176)
3850 printk("%c",data[i]);
3851 else
3852 printk(".");
3853 }
3854 printk("\n");
Jeff Garzikd12341f2007-10-19 15:45:35 -04003855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 data += linecount;
3857 count -= linecount;
3858 }
3859}
3860
3861/* HDLC frame time out
3862 * update stats and do tx completion processing
3863 */
Peter Hagervallcdaad342006-06-23 02:06:04 -07003864static void tx_timeout(unsigned long context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865{
3866 MGSLPC_INFO *info = (MGSLPC_INFO*)context;
3867 unsigned long flags;
Jeff Garzikd12341f2007-10-19 15:45:35 -04003868
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 if ( debug_level >= DEBUG_LEVEL_INFO )
3870 printk( "%s(%d):tx_timeout(%s)\n",
3871 __FILE__,__LINE__,info->device_name);
3872 if(info->tx_active &&
3873 info->params.mode == MGSL_MODE_HDLC) {
3874 info->icount.txtimeout++;
3875 }
3876 spin_lock_irqsave(&info->lock,flags);
Joe Perches0fab6de2008-04-28 02:14:02 -07003877 info->tx_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 info->tx_count = info->tx_put = info->tx_get = 0;
3879
3880 spin_unlock_irqrestore(&info->lock,flags);
Jeff Garzikd12341f2007-10-19 15:45:35 -04003881
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003882#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 if (info->netcount)
3884 hdlcdev_tx_done(info);
3885 else
3886#endif
Alan Coxeeb46132009-01-02 13:48:47 +00003887 {
3888 struct tty_struct *tty = tty_port_tty_get(&info->port);
3889 bh_transmit(info, tty);
3890 tty_kref_put(tty);
3891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892}
3893
Paul Fulghumaf69c7f2006-12-06 20:40:24 -08003894#if SYNCLINK_GENERIC_HDLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
3896/**
3897 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
3898 * set encoding and frame check sequence (FCS) options
3899 *
3900 * dev pointer to network device structure
3901 * encoding serial encoding setting
3902 * parity FCS setting
3903 *
3904 * returns 0 if success, otherwise error code
3905 */
3906static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
3907 unsigned short parity)
3908{
3909 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00003910 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 unsigned char new_encoding;
3912 unsigned short new_crctype;
3913
3914 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00003915 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 return -EBUSY;
3917
3918 switch (encoding)
3919 {
3920 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
3921 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
3922 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
3923 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
3924 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
3925 default: return -EINVAL;
3926 }
3927
3928 switch (parity)
3929 {
3930 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
3931 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
3932 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
3933 default: return -EINVAL;
3934 }
3935
3936 info->params.encoding = new_encoding;
Alexey Dobriyan53b35312006-03-24 03:16:13 -08003937 info->params.crc_type = new_crctype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
3939 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00003940 if (info->netcount) {
3941 tty = tty_port_tty_get(&info->port);
3942 mgslpc_program_hw(info, tty);
3943 tty_kref_put(tty);
3944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
3946 return 0;
3947}
3948
3949/**
3950 * called by generic HDLC layer to send frame
3951 *
3952 * skb socket buffer containing HDLC frame
3953 * dev pointer to network device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 */
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003955static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
3956 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957{
3958 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 unsigned long flags;
3960
3961 if (debug_level >= DEBUG_LEVEL_INFO)
3962 printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);
3963
3964 /* stop sending until this frame completes */
3965 netif_stop_queue(dev);
3966
3967 /* copy data to device buffers */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003968 skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 info->tx_get = 0;
3970 info->tx_put = info->tx_count = skb->len;
3971
3972 /* update network statistics */
Krzysztof Halasa198191c2008-06-30 23:26:53 +02003973 dev->stats.tx_packets++;
3974 dev->stats.tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
3976 /* done with socket buffer, so free it */
3977 dev_kfree_skb(skb);
3978
3979 /* save start time for transmit timeout detection */
3980 dev->trans_start = jiffies;
3981
3982 /* start hardware transmitter if necessary */
3983 spin_lock_irqsave(&info->lock,flags);
Alan Coxeeb46132009-01-02 13:48:47 +00003984 if (!info->tx_active) {
3985 struct tty_struct *tty = tty_port_tty_get(&info->port);
3986 tx_start(info, tty);
3987 tty_kref_put(tty);
3988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 spin_unlock_irqrestore(&info->lock,flags);
3990
Stephen Hemminger4c5d5022009-08-31 19:50:48 +00003991 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992}
3993
3994/**
3995 * called by network layer when interface enabled
3996 * claim resources and initialize hardware
3997 *
3998 * dev pointer to network device structure
3999 *
4000 * returns 0 if success, otherwise error code
4001 */
4002static int hdlcdev_open(struct net_device *dev)
4003{
4004 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00004005 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 int rc;
4007 unsigned long flags;
4008
4009 if (debug_level >= DEBUG_LEVEL_INFO)
4010 printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);
4011
4012 /* generic HDLC layer open processing */
4013 if ((rc = hdlc_open(dev)))
4014 return rc;
4015
4016 /* arbitrate between network and tty opens */
4017 spin_lock_irqsave(&info->netlock, flags);
Alan Coxeeb46132009-01-02 13:48:47 +00004018 if (info->port.count != 0 || info->netcount != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
4020 spin_unlock_irqrestore(&info->netlock, flags);
4021 return -EBUSY;
4022 }
4023 info->netcount=1;
4024 spin_unlock_irqrestore(&info->netlock, flags);
4025
Alan Coxeeb46132009-01-02 13:48:47 +00004026 tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 /* claim resources and init adapter */
Alan Coxeeb46132009-01-02 13:48:47 +00004028 if ((rc = startup(info, tty)) != 0) {
4029 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 spin_lock_irqsave(&info->netlock, flags);
4031 info->netcount=0;
4032 spin_unlock_irqrestore(&info->netlock, flags);
4033 return rc;
4034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 /* assert DTR and RTS, apply hardware settings */
4036 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
Alan Coxeeb46132009-01-02 13:48:47 +00004037 mgslpc_program_hw(info, tty);
4038 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
4040 /* enable network layer transmit */
4041 dev->trans_start = jiffies;
4042 netif_start_queue(dev);
4043
4044 /* inform generic HDLC layer of current DCD status */
4045 spin_lock_irqsave(&info->lock, flags);
4046 get_signals(info);
4047 spin_unlock_irqrestore(&info->lock, flags);
Krzysztof Halasafbeff3c2006-07-21 14:44:55 -07004048 if (info->serial_signals & SerialSignal_DCD)
4049 netif_carrier_on(dev);
4050 else
4051 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 return 0;
4053}
4054
4055/**
4056 * called by network layer when interface is disabled
4057 * shutdown hardware and release resources
4058 *
4059 * dev pointer to network device structure
4060 *
4061 * returns 0 if success, otherwise error code
4062 */
4063static int hdlcdev_close(struct net_device *dev)
4064{
4065 MGSLPC_INFO *info = dev_to_port(dev);
Alan Coxeeb46132009-01-02 13:48:47 +00004066 struct tty_struct *tty = tty_port_tty_get(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 unsigned long flags;
4068
4069 if (debug_level >= DEBUG_LEVEL_INFO)
4070 printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);
4071
4072 netif_stop_queue(dev);
4073
4074 /* shutdown adapter and release resources */
Alan Coxeeb46132009-01-02 13:48:47 +00004075 shutdown(info, tty);
4076 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 hdlc_close(dev);
4078
4079 spin_lock_irqsave(&info->netlock, flags);
4080 info->netcount=0;
4081 spin_unlock_irqrestore(&info->netlock, flags);
4082
4083 return 0;
4084}
4085
4086/**
4087 * called by network layer to process IOCTL call to network device
4088 *
4089 * dev pointer to network device structure
4090 * ifr pointer to network interface request structure
4091 * cmd IOCTL command code
4092 *
4093 * returns 0 if success, otherwise error code
4094 */
4095static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4096{
4097 const size_t size = sizeof(sync_serial_settings);
4098 sync_serial_settings new_line;
4099 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
4100 MGSLPC_INFO *info = dev_to_port(dev);
4101 unsigned int flags;
4102
4103 if (debug_level >= DEBUG_LEVEL_INFO)
4104 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);
4105
4106 /* return error if TTY interface open */
Alan Coxeeb46132009-01-02 13:48:47 +00004107 if (info->port.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 return -EBUSY;
4109
4110 if (cmd != SIOCWANDEV)
4111 return hdlc_ioctl(dev, ifr, cmd);
4112
4113 switch(ifr->ifr_settings.type) {
4114 case IF_GET_IFACE: /* return current sync_serial_settings */
4115
4116 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
4117 if (ifr->ifr_settings.size < size) {
4118 ifr->ifr_settings.size = size; /* data size wanted */
4119 return -ENOBUFS;
4120 }
4121
4122 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4123 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4124 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4125 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4126
4127 switch (flags){
4128 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
4129 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
4130 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
4131 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
4132 default: new_line.clock_type = CLOCK_DEFAULT;
4133 }
4134
4135 new_line.clock_rate = info->params.clock_speed;
4136 new_line.loopback = info->params.loopback ? 1:0;
4137
4138 if (copy_to_user(line, &new_line, size))
4139 return -EFAULT;
4140 return 0;
4141
4142 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
4143
4144 if(!capable(CAP_NET_ADMIN))
4145 return -EPERM;
4146 if (copy_from_user(&new_line, line, size))
4147 return -EFAULT;
4148
4149 switch (new_line.clock_type)
4150 {
4151 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
4152 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
4153 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
4154 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
4155 case CLOCK_DEFAULT: flags = info->params.flags &
4156 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4157 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4158 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4159 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
4160 default: return -EINVAL;
4161 }
4162
4163 if (new_line.loopback != 0 && new_line.loopback != 1)
4164 return -EINVAL;
4165
4166 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4167 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4168 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4169 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4170 info->params.flags |= flags;
4171
4172 info->params.loopback = new_line.loopback;
4173
4174 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
4175 info->params.clock_speed = new_line.clock_rate;
4176 else
4177 info->params.clock_speed = 0;
4178
4179 /* if network interface up, reprogram hardware */
Alan Coxeeb46132009-01-02 13:48:47 +00004180 if (info->netcount) {
4181 struct tty_struct *tty = tty_port_tty_get(&info->port);
4182 mgslpc_program_hw(info, tty);
4183 tty_kref_put(tty);
4184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 return 0;
4186
4187 default:
4188 return hdlc_ioctl(dev, ifr, cmd);
4189 }
4190}
4191
4192/**
4193 * called by network layer when transmit timeout is detected
4194 *
4195 * dev pointer to network device structure
4196 */
4197static void hdlcdev_tx_timeout(struct net_device *dev)
4198{
4199 MGSLPC_INFO *info = dev_to_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 unsigned long flags;
4201
4202 if (debug_level >= DEBUG_LEVEL_INFO)
4203 printk("hdlcdev_tx_timeout(%s)\n",dev->name);
4204
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004205 dev->stats.tx_errors++;
4206 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
4208 spin_lock_irqsave(&info->lock,flags);
4209 tx_stop(info);
4210 spin_unlock_irqrestore(&info->lock,flags);
4211
4212 netif_wake_queue(dev);
4213}
4214
4215/**
4216 * called by device driver when transmit completes
4217 * reenable network layer transmit if stopped
4218 *
4219 * info pointer to device instance information
4220 */
4221static void hdlcdev_tx_done(MGSLPC_INFO *info)
4222{
4223 if (netif_queue_stopped(info->netdev))
4224 netif_wake_queue(info->netdev);
4225}
4226
4227/**
4228 * called by device driver when frame received
4229 * pass frame to network layer
4230 *
4231 * info pointer to device instance information
4232 * buf pointer to buffer contianing frame data
4233 * size count of data bytes in buf
4234 */
4235static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size)
4236{
4237 struct sk_buff *skb = dev_alloc_skb(size);
4238 struct net_device *dev = info->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
4240 if (debug_level >= DEBUG_LEVEL_INFO)
4241 printk("hdlcdev_rx(%s)\n",dev->name);
4242
4243 if (skb == NULL) {
4244 printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n", dev->name);
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004245 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 return;
4247 }
4248
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004249 memcpy(skb_put(skb, size), buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004251 skb->protocol = hdlc_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
Krzysztof Halasa198191c2008-06-30 23:26:53 +02004253 dev->stats.rx_packets++;
4254 dev->stats.rx_bytes += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
4256 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257}
4258
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004259static const struct net_device_ops hdlcdev_ops = {
4260 .ndo_open = hdlcdev_open,
4261 .ndo_stop = hdlcdev_close,
4262 .ndo_change_mtu = hdlc_change_mtu,
4263 .ndo_start_xmit = hdlc_start_xmit,
4264 .ndo_do_ioctl = hdlcdev_ioctl,
4265 .ndo_tx_timeout = hdlcdev_tx_timeout,
4266};
4267
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268/**
4269 * called by device driver when adding device instance
4270 * do generic HDLC initialization
4271 *
4272 * info pointer to device instance information
4273 *
4274 * returns 0 if success, otherwise error code
4275 */
4276static int hdlcdev_init(MGSLPC_INFO *info)
4277{
4278 int rc;
4279 struct net_device *dev;
4280 hdlc_device *hdlc;
4281
4282 /* allocate and initialize network and HDLC layer objects */
4283
4284 if (!(dev = alloc_hdlcdev(info))) {
4285 printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
4286 return -ENOMEM;
4287 }
4288
4289 /* for network layer reporting purposes only */
4290 dev->base_addr = info->io_base;
4291 dev->irq = info->irq_level;
4292
4293 /* network layer callbacks and settings */
Krzysztof Hałasa991990a2009-01-08 22:52:11 +01004294 dev->netdev_ops = &hdlcdev_ops;
4295 dev->watchdog_timeo = 10 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 dev->tx_queue_len = 50;
4297
4298 /* generic HDLC layer callbacks and settings */
4299 hdlc = dev_to_hdlc(dev);
4300 hdlc->attach = hdlcdev_attach;
4301 hdlc->xmit = hdlcdev_xmit;
4302
4303 /* register objects with HDLC layer */
4304 if ((rc = register_hdlc_device(dev))) {
4305 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
4306 free_netdev(dev);
4307 return rc;
4308 }
4309
4310 info->netdev = dev;
4311 return 0;
4312}
4313
4314/**
4315 * called by device driver when removing device instance
4316 * do generic HDLC cleanup
4317 *
4318 * info pointer to device instance information
4319 */
4320static void hdlcdev_exit(MGSLPC_INFO *info)
4321{
4322 unregister_hdlc_device(info->netdev);
4323 free_netdev(info->netdev);
4324 info->netdev = NULL;
4325}
4326
4327#endif /* CONFIG_HDLC */
4328