pcmcia: remove the "Finally, report what we've done" message
[deliverable/linux.git] / drivers / char / pcmcia / synclink_cs.c
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/char/pcmcia/synclink_cs.c
3 *
a7482a2e 4 * $Id: synclink_cs.c,v 4.34 2005/09/08 13:20:54 paulkf Exp $
1da177e4
LT
5 *
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
1da177e4
LT
38#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>
1da177e4
LT
45#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>
87687144 54#include <linux/seq_file.h>
1da177e4
LT
55#include <linux/slab.h>
56#include <linux/netdevice.h>
57#include <linux/vmalloc.h>
58#include <linux/init.h>
1da177e4
LT
59#include <linux/delay.h>
60#include <linux/ioctl.h>
3dd1247f 61#include <linux/synclink.h>
1da177e4
LT
62
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
1da177e4
LT
73#include <pcmcia/cistpl.h>
74#include <pcmcia/cisreg.h>
75#include <pcmcia/ds.h>
76
af69c7f9
PF
77#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
1da177e4
LT
81#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
1da177e4
LT
90static 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 {
d12341f9 124 int ri_up;
1da177e4
LT
125 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 */
d12341f9 138
1da177e4 139typedef struct _mgslpc_info {
eeb46134 140 struct tty_port port;
1da177e4
LT
141 void *if_ptr; /* General purpose pointer (used by SPPP) */
142 int magic;
1da177e4 143 int line;
d12341f9 144
1da177e4 145 struct mgsl_icount icount;
d12341f9 146
1da177e4
LT
147 int timeout;
148 int x_char; /* xon/xoff character */
1da177e4 149 unsigned char read_status_mask;
d12341f9 150 unsigned char ignore_status_mask;
1da177e4
LT
151
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 */
d12341f9 166
1da177e4
LT
167 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
0fab6de0
JP
183 bool bh_running;
184 bool bh_requested;
d12341f9 185
1da177e4
LT
186 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
0fab6de0
JP
191 bool rx_enabled;
192 bool rx_overflow;
1da177e4 193
0fab6de0
JP
194 bool tx_enabled;
195 bool tx_active;
196 bool tx_aborting;
1da177e4
LT
197 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;
d12341f9 205
1da177e4
LT
206 MGSL_PARAMS params; /* communications parameters */
207
208 unsigned char serial_signals; /* current serial signal states */
209
0fab6de0 210 bool irq_occurred; /* for diagnostics use */
1da177e4
LT
211 char testing_irq;
212 unsigned int init_error; /* startup error (DIAGS) */
213
214 char flag_buf[MAX_ASYNC_BUFFER_SIZE];
0fab6de0 215 bool drop_rts_on_tx_done;
1da177e4
LT
216
217 struct _input_signal_events input_signal_events;
218
219 /* PCMCIA support */
fd238232 220 struct pcmcia_device *p_dev;
1da177e4
LT
221 int stop;
222
223 /* SPPP/Cisco HDLC device parts */
224 int netcount;
1da177e4
LT
225 spinlock_t netlock;
226
af69c7f9 227#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
228 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
d12341f9 240
1da177e4
LT
241#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
d12341f9 289
1da177e4 290// IMR/ISR
d12341f9 291
1da177e4
LT
292#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
d12341f9 306
1da177e4 307// STAR
d12341f9 308
1da177e4
LT
309#define XFW BIT6 // transmit FIFO write enable
310#define CEC BIT2 // command executing
311#define CTS BIT1 // CTS state
d12341f9 312
1da177e4
LT
313#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 */
d12341f9
JG
320
321/* Register access functions */
322
1da177e4
LT
323#define write_reg(info, reg, val) outb((val),(info)->io_base + (reg))
324#define read_reg(info, reg) inb((info)->io_base + (reg))
325
d12341f9 326#define read_reg16(info, reg) inw((info)->io_base + (reg))
1da177e4 327#define write_reg16(info, reg, val) outw((val), (info)->io_base + (reg))
d12341f9 328
1da177e4
LT
329#define set_reg_bits(info, reg, mask) \
330 write_reg(info, (reg), \
d12341f9 331 (unsigned char) (read_reg(info, (reg)) | (mask)))
1da177e4
LT
332#define clear_reg_bits(info, reg, mask) \
333 write_reg(info, (reg), \
d12341f9 334 (unsigned char) (read_reg(info, (reg)) & ~(mask)))
1da177e4
LT
335/*
336 * interrupt enable/disable routines
d12341f9
JG
337 */
338static void irq_disable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
1da177e4
LT
339{
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}
d12341f9 348static void irq_enable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
1da177e4
LT
349{
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
eeb46134 368static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty);
1da177e4
LT
369static 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
eeb46134 382static int carrier_raised(struct tty_port *port);
fcc8ac18 383static void dtr_rts(struct tty_port *port, int onoff);
1da177e4 384
af69c7f9 385#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
386#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
0fab6de0
JP
395static bool register_test(MGSLPC_INFO *info);
396static bool irq_test(MGSLPC_INFO *info);
1da177e4
LT
397static 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
eeb46134 404static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty);
1da177e4
LT
405static void rx_reset_buffers(MGSLPC_INFO *info);
406static int rx_alloc_buffers(MGSLPC_INFO *info);
407static void rx_free_buffers(MGSLPC_INFO *info);
408
7d12e780 409static irqreturn_t mgslpc_isr(int irq, void *dev_id);
1da177e4
LT
410
411/*
412 * Bottom half interrupt handlers
413 */
c4028958 414static void bh_handler(struct work_struct *work);
eeb46134 415static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty);
1da177e4
LT
416static 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);
eeb46134 426static int set_params(MGSLPC_INFO *info, MGSL_PARAMS __user *new_params, struct tty_struct *tty);
1da177e4
LT
427static int get_txidle(MGSLPC_INFO *info, int __user *idle_mode);
428static int set_txidle(MGSLPC_INFO *info, int idle_mode);
eeb46134 429static int set_txenable(MGSLPC_INFO *info, int enable, struct tty_struct *tty);
1da177e4
LT
430static 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,};
1da177e4
LT
452
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);
1da177e4
LT
457
458MODULE_LICENSE("GPL");
459
460static char *driver_name = "SyncLink PC Card driver";
a7482a2e 461static char *driver_version = "$Revision: 4.34 $";
1da177e4
LT
462
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
eeb46134 468static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty);
1da177e4
LT
469static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout);
470
471/* PCMCIA prototypes */
472
15b99ac1 473static int mgslpc_config(struct pcmcia_device *link);
1da177e4 474static void mgslpc_release(u_long arg);
cc3b4866 475static void mgslpc_detach(struct pcmcia_device *p_dev);
1da177e4 476
1da177e4
LT
477/*
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 *
1da177e4
LT
494 * ldisc_receive_buf - pass receive data to line discipline
495 */
496
1da177e4
LT
497static 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) {
a352def2
AC
505 if (ld->ops->receive_buf)
506 ld->ops->receive_buf(tty, data, flags, count);
1da177e4
LT
507 tty_ldisc_deref(ld);
508 }
509}
510
eeb46134
AC
511static const struct tty_port_operations mgslpc_port_ops = {
512 .carrier_raised = carrier_raised,
fcc8ac18 513 .dtr_rts = dtr_rts
eeb46134
AC
514};
515
15b99ac1 516static int mgslpc_probe(struct pcmcia_device *link)
1da177e4
LT
517{
518 MGSLPC_INFO *info;
15b99ac1 519 int ret;
fd238232 520
1da177e4
LT
521 if (debug_level >= DEBUG_LEVEL_INFO)
522 printk("mgslpc_attach\n");
fd238232 523
dd00cc48 524 info = kzalloc(sizeof(MGSLPC_INFO), GFP_KERNEL);
1da177e4
LT
525 if (!info) {
526 printk("Error can't allocate device instance data\n");
f8cfa618 527 return -ENOMEM;
1da177e4
LT
528 }
529
1da177e4 530 info->magic = MGSLPC_MAGIC;
eeb46134
AC
531 tty_port_init(&info->port);
532 info->port.ops = &mgslpc_port_ops;
c4028958 533 INIT_WORK(&info->task, bh_handler);
1da177e4 534 info->max_frame_size = 4096;
eeb46134
AC
535 info->port.close_delay = 5*HZ/10;
536 info->port.closing_wait = 30*HZ;
1da177e4
LT
537 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));
d12341f9 542 info->idle_mode = HDLC_TXIDLE_FLAGS;
1da177e4
LT
543 info->imra_value = 0xffff;
544 info->imrb_value = 0xffff;
545 info->pim_value = 0xff;
546
fba395ee 547 info->p_dev = link;
1da177e4 548 link->priv = info;
fd238232 549
fba395ee 550 /* Initialize the struct pcmcia_device structure */
1da177e4 551
15b99ac1
DB
552 ret = mgslpc_config(link);
553 if (ret)
554 return ret;
1da177e4
LT
555
556 mgslpc_add_device(info);
557
f8cfa618 558 return 0;
1da177e4
LT
559}
560
561/* Card has been inserted.
562 */
563
00990e7c 564static int mgslpc_ioprobe(struct pcmcia_device *p_dev, void *priv_data)
aaa8cfda 565{
90abdc3b 566 return pcmcia_request_io(p_dev);
aaa8cfda
DB
567}
568
15b99ac1 569static int mgslpc_config(struct pcmcia_device *link)
1da177e4 570{
1da177e4 571 MGSLPC_INFO *info = link->priv;
cbf624f0 572 int ret;
d12341f9 573
1da177e4
LT
574 if (debug_level >= DEBUG_LEVEL_INFO)
575 printk("mgslpc_config(0x%p)\n", link);
576
00990e7c
DB
577 link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
578
cbf624f0
DB
579 ret = pcmcia_loop_config(link, mgslpc_ioprobe, NULL);
580 if (ret != 0)
581 goto failed;
1da177e4 582
7feabb64
DB
583 link->config_index = 8;
584 link->config_regs = PRESENT_OPTION;
d12341f9 585
eb14120f 586 ret = pcmcia_request_irq(link, mgslpc_isr);
cbf624f0
DB
587 if (ret)
588 goto failed;
1ac71e5a 589 ret = pcmcia_enable_device(link);
cbf624f0
DB
590 if (ret)
591 goto failed;
1da177e4 592
9a017a91 593 info->io_base = link->resource[0]->start;
eb14120f 594 info->irq_level = link->irq;
15b99ac1 595 return 0;
1da177e4 596
cbf624f0 597failed:
1da177e4 598 mgslpc_release((u_long)link);
15b99ac1 599 return -ENODEV;
1da177e4
LT
600}
601
602/* Card has been removed.
603 * Unregister device and release PCMCIA configuration.
604 * If device is open, postpone until it is closed.
605 */
606static void mgslpc_release(u_long arg)
607{
e2d40963 608 struct pcmcia_device *link = (struct pcmcia_device *)arg;
1da177e4 609
e2d40963
DB
610 if (debug_level >= DEBUG_LEVEL_INFO)
611 printk("mgslpc_release(0x%p)\n", link);
1da177e4 612
e2d40963 613 pcmcia_disable_device(link);
1da177e4
LT
614}
615
fba395ee 616static void mgslpc_detach(struct pcmcia_device *link)
1da177e4 617{
e2d40963
DB
618 if (debug_level >= DEBUG_LEVEL_INFO)
619 printk("mgslpc_detach(0x%p)\n", link);
cc3b4866 620
e2d40963
DB
621 ((MGSLPC_INFO *)link->priv)->stop = 1;
622 mgslpc_release((u_long)link);
1da177e4 623
e2d40963 624 mgslpc_remove_device((MGSLPC_INFO *)link->priv);
1da177e4
LT
625}
626
fba395ee 627static int mgslpc_suspend(struct pcmcia_device *link)
98e4c28b 628{
98e4c28b
DB
629 MGSLPC_INFO *info = link->priv;
630
98e4c28b 631 info->stop = 1;
98e4c28b
DB
632
633 return 0;
634}
635
fba395ee 636static int mgslpc_resume(struct pcmcia_device *link)
98e4c28b 637{
98e4c28b
DB
638 MGSLPC_INFO *info = link->priv;
639
98e4c28b
DB
640 info->stop = 0;
641
642 return 0;
643}
644
645
0fab6de0 646static inline bool mgslpc_paranoia_check(MGSLPC_INFO *info,
1da177e4
LT
647 char *name, const char *routine)
648{
649#ifdef MGSLPC_PARANOIA_CHECK
650 static const char *badmagic =
651 "Warning: bad magic number for mgsl struct (%s) in %s\n";
652 static const char *badinfo =
653 "Warning: null mgslpc_info for (%s) in %s\n";
654
655 if (!info) {
656 printk(badinfo, name, routine);
0fab6de0 657 return true;
1da177e4
LT
658 }
659 if (info->magic != MGSLPC_MAGIC) {
660 printk(badmagic, name, routine);
0fab6de0 661 return true;
1da177e4
LT
662 }
663#else
664 if (!info)
0fab6de0 665 return true;
1da177e4 666#endif
0fab6de0 667 return false;
1da177e4
LT
668}
669
670
671#define CMD_RXFIFO BIT7 // release current rx FIFO
672#define CMD_RXRESET BIT6 // receiver reset
673#define CMD_RXFIFO_READ BIT5
674#define CMD_START_TIMER BIT4
675#define CMD_TXFIFO BIT3 // release current tx FIFO
676#define CMD_TXEOM BIT1 // transmit end message
677#define CMD_TXRESET BIT0 // transmit reset
678
0fab6de0 679static bool wait_command_complete(MGSLPC_INFO *info, unsigned char channel)
1da177e4
LT
680{
681 int i = 0;
d12341f9 682 /* wait for command completion */
1da177e4
LT
683 while (read_reg(info, (unsigned char)(channel+STAR)) & BIT2) {
684 udelay(1);
685 if (i++ == 1000)
0fab6de0 686 return false;
1da177e4 687 }
0fab6de0 688 return true;
1da177e4
LT
689}
690
d12341f9 691static void issue_command(MGSLPC_INFO *info, unsigned char channel, unsigned char cmd)
1da177e4
LT
692{
693 wait_command_complete(info, channel);
694 write_reg(info, (unsigned char) (channel + CMDR), cmd);
695}
696
697static void tx_pause(struct tty_struct *tty)
698{
699 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
700 unsigned long flags;
d12341f9 701
1da177e4
LT
702 if (mgslpc_paranoia_check(info, tty->name, "tx_pause"))
703 return;
704 if (debug_level >= DEBUG_LEVEL_INFO)
d12341f9
JG
705 printk("tx_pause(%s)\n",info->device_name);
706
1da177e4
LT
707 spin_lock_irqsave(&info->lock,flags);
708 if (info->tx_enabled)
709 tx_stop(info);
710 spin_unlock_irqrestore(&info->lock,flags);
711}
712
713static void tx_release(struct tty_struct *tty)
714{
715 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
716 unsigned long flags;
d12341f9 717
1da177e4
LT
718 if (mgslpc_paranoia_check(info, tty->name, "tx_release"))
719 return;
720 if (debug_level >= DEBUG_LEVEL_INFO)
d12341f9
JG
721 printk("tx_release(%s)\n",info->device_name);
722
1da177e4
LT
723 spin_lock_irqsave(&info->lock,flags);
724 if (!info->tx_enabled)
eeb46134 725 tx_start(info, tty);
1da177e4
LT
726 spin_unlock_irqrestore(&info->lock,flags);
727}
728
729/* Return next bottom half action to perform.
730 * or 0 if nothing to do.
731 */
732static int bh_action(MGSLPC_INFO *info)
733{
734 unsigned long flags;
735 int rc = 0;
d12341f9 736
1da177e4
LT
737 spin_lock_irqsave(&info->lock,flags);
738
739 if (info->pending_bh & BH_RECEIVE) {
740 info->pending_bh &= ~BH_RECEIVE;
741 rc = BH_RECEIVE;
742 } else if (info->pending_bh & BH_TRANSMIT) {
743 info->pending_bh &= ~BH_TRANSMIT;
744 rc = BH_TRANSMIT;
745 } else if (info->pending_bh & BH_STATUS) {
746 info->pending_bh &= ~BH_STATUS;
747 rc = BH_STATUS;
748 }
749
750 if (!rc) {
751 /* Mark BH routine as complete */
0fab6de0
JP
752 info->bh_running = false;
753 info->bh_requested = false;
1da177e4 754 }
d12341f9 755
1da177e4 756 spin_unlock_irqrestore(&info->lock,flags);
d12341f9 757
1da177e4
LT
758 return rc;
759}
760
c4028958 761static void bh_handler(struct work_struct *work)
1da177e4 762{
c4028958 763 MGSLPC_INFO *info = container_of(work, MGSLPC_INFO, task);
eeb46134 764 struct tty_struct *tty;
1da177e4
LT
765 int action;
766
767 if (!info)
768 return;
d12341f9 769
1da177e4
LT
770 if (debug_level >= DEBUG_LEVEL_BH)
771 printk( "%s(%d):bh_handler(%s) entry\n",
772 __FILE__,__LINE__,info->device_name);
d12341f9 773
0fab6de0 774 info->bh_running = true;
eeb46134 775 tty = tty_port_tty_get(&info->port);
1da177e4
LT
776
777 while((action = bh_action(info)) != 0) {
d12341f9 778
1da177e4
LT
779 /* Process work item */
780 if ( debug_level >= DEBUG_LEVEL_BH )
781 printk( "%s(%d):bh_handler() work item action=%d\n",
782 __FILE__,__LINE__,action);
783
784 switch (action) {
d12341f9 785
1da177e4 786 case BH_RECEIVE:
eeb46134 787 while(rx_get_frame(info, tty));
1da177e4
LT
788 break;
789 case BH_TRANSMIT:
eeb46134 790 bh_transmit(info, tty);
1da177e4
LT
791 break;
792 case BH_STATUS:
793 bh_status(info);
794 break;
795 default:
796 /* unknown work item ID */
797 printk("Unknown work item ID=%08X!\n", action);
798 break;
799 }
800 }
801
eeb46134 802 tty_kref_put(tty);
1da177e4
LT
803 if (debug_level >= DEBUG_LEVEL_BH)
804 printk( "%s(%d):bh_handler(%s) exit\n",
805 __FILE__,__LINE__,info->device_name);
806}
807
eeb46134 808static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4 809{
1da177e4
LT
810 if (debug_level >= DEBUG_LEVEL_BH)
811 printk("bh_transmit() entry on %s\n", info->device_name);
812
b963a844 813 if (tty)
1da177e4 814 tty_wakeup(tty);
1da177e4
LT
815}
816
cdaad343 817static void bh_status(MGSLPC_INFO *info)
1da177e4
LT
818{
819 info->ri_chkcount = 0;
820 info->dsr_chkcount = 0;
821 info->dcd_chkcount = 0;
822 info->cts_chkcount = 0;
823}
824
d12341f9 825/* eom: non-zero = end of frame */
1da177e4
LT
826static void rx_ready_hdlc(MGSLPC_INFO *info, int eom)
827{
828 unsigned char data[2];
829 unsigned char fifo_count, read_count, i;
830 RXBUF *buf = (RXBUF*)(info->rx_buf + (info->rx_put * info->rx_buf_size));
831
832 if (debug_level >= DEBUG_LEVEL_ISR)
833 printk("%s(%d):rx_ready_hdlc(eom=%d)\n",__FILE__,__LINE__,eom);
d12341f9 834
1da177e4
LT
835 if (!info->rx_enabled)
836 return;
837
838 if (info->rx_frame_count >= info->rx_buf_count) {
839 /* no more free buffers */
840 issue_command(info, CHA, CMD_RXRESET);
841 info->pending_bh |= BH_RECEIVE;
0fab6de0 842 info->rx_overflow = true;
1da177e4
LT
843 info->icount.buf_overrun++;
844 return;
845 }
846
847 if (eom) {
d12341f9 848 /* end of frame, get FIFO count from RBCL register */
1da177e4
LT
849 if (!(fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f)))
850 fifo_count = 32;
851 } else
852 fifo_count = 32;
d12341f9 853
1da177e4
LT
854 do {
855 if (fifo_count == 1) {
856 read_count = 1;
857 data[0] = read_reg(info, CHA + RXFIFO);
858 } else {
859 read_count = 2;
860 *((unsigned short *) data) = read_reg16(info, CHA + RXFIFO);
861 }
862 fifo_count -= read_count;
863 if (!fifo_count && eom)
864 buf->status = data[--read_count];
865
866 for (i = 0; i < read_count; i++) {
867 if (buf->count >= info->max_frame_size) {
868 /* frame too large, reset receiver and reset current buffer */
869 issue_command(info, CHA, CMD_RXRESET);
870 buf->count = 0;
871 return;
872 }
873 *(buf->data + buf->count) = data[i];
874 buf->count++;
875 }
876 } while (fifo_count);
877
878 if (eom) {
879 info->pending_bh |= BH_RECEIVE;
880 info->rx_frame_count++;
881 info->rx_put++;
882 if (info->rx_put >= info->rx_buf_count)
883 info->rx_put = 0;
884 }
885 issue_command(info, CHA, CMD_RXFIFO);
886}
887
eeb46134 888static void rx_ready_async(MGSLPC_INFO *info, int tcd, struct tty_struct *tty)
1da177e4 889{
33f0f88f 890 unsigned char data, status, flag;
1da177e4 891 int fifo_count;
33f0f88f 892 int work = 0;
1da177e4
LT
893 struct mgsl_icount *icount = &info->icount;
894
895 if (tcd) {
d12341f9 896 /* early termination, get FIFO count from RBCL register */
1da177e4
LT
897 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
898
899 /* Zero fifo count could mean 0 or 32 bytes available.
900 * If BIT5 of STAR is set then at least 1 byte is available.
901 */
902 if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
903 fifo_count = 32;
904 } else
905 fifo_count = 32;
33f0f88f
AC
906
907 tty_buffer_request_room(tty, fifo_count);
d12341f9 908 /* Flush received async data to receive data buffer. */
1da177e4
LT
909 while (fifo_count) {
910 data = read_reg(info, CHA + RXFIFO);
911 status = read_reg(info, CHA + RXFIFO);
912 fifo_count -= 2;
913
1da177e4 914 icount->rx++;
33f0f88f 915 flag = TTY_NORMAL;
1da177e4
LT
916
917 // if no frameing/crc error then save data
918 // BIT7:parity error
919 // BIT6:framing error
920
921 if (status & (BIT7 + BIT6)) {
d12341f9 922 if (status & BIT7)
1da177e4
LT
923 icount->parity++;
924 else
925 icount->frame++;
926
927 /* discard char if tty control flags say so */
928 if (status & info->ignore_status_mask)
929 continue;
d12341f9 930
1da177e4
LT
931 status &= info->read_status_mask;
932
933 if (status & BIT7)
33f0f88f 934 flag = TTY_PARITY;
1da177e4 935 else if (status & BIT6)
33f0f88f 936 flag = TTY_FRAME;
1da177e4 937 }
33f0f88f 938 work += tty_insert_flip_char(tty, data, flag);
1da177e4
LT
939 }
940 issue_command(info, CHA, CMD_RXFIFO);
941
942 if (debug_level >= DEBUG_LEVEL_ISR) {
33f0f88f
AC
943 printk("%s(%d):rx_ready_async",
944 __FILE__,__LINE__);
1da177e4
LT
945 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
946 __FILE__,__LINE__,icount->rx,icount->brk,
947 icount->parity,icount->frame,icount->overrun);
948 }
d12341f9 949
33f0f88f 950 if (work)
1da177e4
LT
951 tty_flip_buffer_push(tty);
952}
953
954
eeb46134 955static void tx_done(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
956{
957 if (!info->tx_active)
958 return;
d12341f9 959
0fab6de0
JP
960 info->tx_active = false;
961 info->tx_aborting = false;
1da177e4
LT
962
963 if (info->params.mode == MGSL_MODE_ASYNC)
964 return;
965
966 info->tx_count = info->tx_put = info->tx_get = 0;
d12341f9
JG
967 del_timer(&info->tx_timer);
968
1da177e4
LT
969 if (info->drop_rts_on_tx_done) {
970 get_signals(info);
971 if (info->serial_signals & SerialSignal_RTS) {
972 info->serial_signals &= ~SerialSignal_RTS;
973 set_signals(info);
974 }
0fab6de0 975 info->drop_rts_on_tx_done = false;
1da177e4
LT
976 }
977
af69c7f9 978#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
979 if (info->netcount)
980 hdlcdev_tx_done(info);
d12341f9 981 else
1da177e4
LT
982#endif
983 {
eeb46134 984 if (tty->stopped || tty->hw_stopped) {
1da177e4
LT
985 tx_stop(info);
986 return;
987 }
988 info->pending_bh |= BH_TRANSMIT;
989 }
990}
991
eeb46134 992static void tx_ready(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
993{
994 unsigned char fifo_count = 32;
995 int c;
996
997 if (debug_level >= DEBUG_LEVEL_ISR)
998 printk("%s(%d):tx_ready(%s)\n", __FILE__,__LINE__,info->device_name);
999
1000 if (info->params.mode == MGSL_MODE_HDLC) {
1001 if (!info->tx_active)
1002 return;
1003 } else {
eeb46134 1004 if (tty->stopped || tty->hw_stopped) {
1da177e4
LT
1005 tx_stop(info);
1006 return;
1007 }
1008 if (!info->tx_count)
0fab6de0 1009 info->tx_active = false;
1da177e4
LT
1010 }
1011
1012 if (!info->tx_count)
1013 return;
1014
1015 while (info->tx_count && fifo_count) {
1016 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
d12341f9 1017
1da177e4
LT
1018 if (c == 1) {
1019 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
1020 } else {
1021 write_reg16(info, CHA + TXFIFO,
1022 *((unsigned short*)(info->tx_buf + info->tx_get)));
1023 }
1024 info->tx_count -= c;
1025 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1026 fifo_count -= c;
1027 }
1028
1029 if (info->params.mode == MGSL_MODE_ASYNC) {
1030 if (info->tx_count < WAKEUP_CHARS)
1031 info->pending_bh |= BH_TRANSMIT;
1032 issue_command(info, CHA, CMD_TXFIFO);
1033 } else {
1034 if (info->tx_count)
1035 issue_command(info, CHA, CMD_TXFIFO);
1036 else
1037 issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
1038 }
1039}
1040
eeb46134 1041static void cts_change(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
1042{
1043 get_signals(info);
1044 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1045 irq_disable(info, CHB, IRQ_CTS);
1046 info->icount.cts++;
1047 if (info->serial_signals & SerialSignal_CTS)
1048 info->input_signal_events.cts_up++;
1049 else
1050 info->input_signal_events.cts_down++;
1051 wake_up_interruptible(&info->status_event_wait_q);
1052 wake_up_interruptible(&info->event_wait_q);
1053
eeb46134
AC
1054 if (info->port.flags & ASYNC_CTS_FLOW) {
1055 if (tty->hw_stopped) {
1da177e4
LT
1056 if (info->serial_signals & SerialSignal_CTS) {
1057 if (debug_level >= DEBUG_LEVEL_ISR)
1058 printk("CTS tx start...");
eeb46134
AC
1059 if (tty)
1060 tty->hw_stopped = 0;
1061 tx_start(info, tty);
1da177e4
LT
1062 info->pending_bh |= BH_TRANSMIT;
1063 return;
1064 }
1065 } else {
1066 if (!(info->serial_signals & SerialSignal_CTS)) {
1067 if (debug_level >= DEBUG_LEVEL_ISR)
1068 printk("CTS tx stop...");
eeb46134
AC
1069 if (tty)
1070 tty->hw_stopped = 1;
1da177e4
LT
1071 tx_stop(info);
1072 }
1073 }
1074 }
1075 info->pending_bh |= BH_STATUS;
1076}
1077
eeb46134 1078static void dcd_change(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
1079{
1080 get_signals(info);
1081 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1082 irq_disable(info, CHB, IRQ_DCD);
1083 info->icount.dcd++;
1084 if (info->serial_signals & SerialSignal_DCD) {
1085 info->input_signal_events.dcd_up++;
1086 }
1087 else
1088 info->input_signal_events.dcd_down++;
af69c7f9 1089#if SYNCLINK_GENERIC_HDLC
fbeff3c1
KH
1090 if (info->netcount) {
1091 if (info->serial_signals & SerialSignal_DCD)
1092 netif_carrier_on(info->netdev);
1093 else
1094 netif_carrier_off(info->netdev);
1095 }
1da177e4
LT
1096#endif
1097 wake_up_interruptible(&info->status_event_wait_q);
1098 wake_up_interruptible(&info->event_wait_q);
1099
eeb46134 1100 if (info->port.flags & ASYNC_CHECK_CD) {
1da177e4
LT
1101 if (debug_level >= DEBUG_LEVEL_ISR)
1102 printk("%s CD now %s...", info->device_name,
1103 (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
1104 if (info->serial_signals & SerialSignal_DCD)
eeb46134 1105 wake_up_interruptible(&info->port.open_wait);
1da177e4
LT
1106 else {
1107 if (debug_level >= DEBUG_LEVEL_ISR)
1108 printk("doing serial hangup...");
eeb46134
AC
1109 if (tty)
1110 tty_hangup(tty);
1da177e4
LT
1111 }
1112 }
1113 info->pending_bh |= BH_STATUS;
1114}
1115
1116static void dsr_change(MGSLPC_INFO *info)
1117{
1118 get_signals(info);
1119 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1120 port_irq_disable(info, PVR_DSR);
1121 info->icount.dsr++;
1122 if (info->serial_signals & SerialSignal_DSR)
1123 info->input_signal_events.dsr_up++;
1124 else
1125 info->input_signal_events.dsr_down++;
1126 wake_up_interruptible(&info->status_event_wait_q);
1127 wake_up_interruptible(&info->event_wait_q);
1128 info->pending_bh |= BH_STATUS;
1129}
1130
1131static void ri_change(MGSLPC_INFO *info)
1132{
1133 get_signals(info);
1134 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1135 port_irq_disable(info, PVR_RI);
1136 info->icount.rng++;
1137 if (info->serial_signals & SerialSignal_RI)
1138 info->input_signal_events.ri_up++;
1139 else
1140 info->input_signal_events.ri_down++;
1141 wake_up_interruptible(&info->status_event_wait_q);
1142 wake_up_interruptible(&info->event_wait_q);
1143 info->pending_bh |= BH_STATUS;
1144}
1145
1146/* Interrupt service routine entry point.
d12341f9 1147 *
1da177e4 1148 * Arguments:
d12341f9 1149 *
1da177e4
LT
1150 * irq interrupt number that caused interrupt
1151 * dev_id device ID supplied during interrupt registration
1da177e4 1152 */
a6f97b29 1153static irqreturn_t mgslpc_isr(int dummy, void *dev_id)
1da177e4 1154{
a6f97b29 1155 MGSLPC_INFO *info = dev_id;
eeb46134 1156 struct tty_struct *tty;
1da177e4
LT
1157 unsigned short isr;
1158 unsigned char gis, pis;
1159 int count=0;
1160
d12341f9 1161 if (debug_level >= DEBUG_LEVEL_ISR)
a6f97b29 1162 printk("mgslpc_isr(%d) entry.\n", info->irq_level);
d12341f9 1163
e2d40963 1164 if (!(info->p_dev->_locked))
1da177e4
LT
1165 return IRQ_HANDLED;
1166
eeb46134
AC
1167 tty = tty_port_tty_get(&info->port);
1168
1da177e4
LT
1169 spin_lock(&info->lock);
1170
1171 while ((gis = read_reg(info, CHA + GIS))) {
d12341f9 1172 if (debug_level >= DEBUG_LEVEL_ISR)
1da177e4
LT
1173 printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);
1174
1175 if ((gis & 0x70) || count > 1000) {
1176 printk("synclink_cs:hardware failed or ejected\n");
1177 break;
1178 }
1179 count++;
1180
1181 if (gis & (BIT1 + BIT0)) {
1182 isr = read_reg16(info, CHB + ISR);
1183 if (isr & IRQ_DCD)
eeb46134 1184 dcd_change(info, tty);
1da177e4 1185 if (isr & IRQ_CTS)
eeb46134 1186 cts_change(info, tty);
1da177e4
LT
1187 }
1188 if (gis & (BIT3 + BIT2))
1189 {
1190 isr = read_reg16(info, CHA + ISR);
1191 if (isr & IRQ_TIMER) {
0fab6de0 1192 info->irq_occurred = true;
1da177e4
LT
1193 irq_disable(info, CHA, IRQ_TIMER);
1194 }
1195
d12341f9 1196 /* receive IRQs */
1da177e4
LT
1197 if (isr & IRQ_EXITHUNT) {
1198 info->icount.exithunt++;
1199 wake_up_interruptible(&info->event_wait_q);
1200 }
1201 if (isr & IRQ_BREAK_ON) {
1202 info->icount.brk++;
eeb46134
AC
1203 if (info->port.flags & ASYNC_SAK)
1204 do_SAK(tty);
1da177e4
LT
1205 }
1206 if (isr & IRQ_RXTIME) {
1207 issue_command(info, CHA, CMD_RXFIFO_READ);
1208 }
1209 if (isr & (IRQ_RXEOM + IRQ_RXFIFO)) {
1210 if (info->params.mode == MGSL_MODE_HDLC)
d12341f9 1211 rx_ready_hdlc(info, isr & IRQ_RXEOM);
1da177e4 1212 else
eeb46134 1213 rx_ready_async(info, isr & IRQ_RXEOM, tty);
1da177e4
LT
1214 }
1215
d12341f9 1216 /* transmit IRQs */
1da177e4
LT
1217 if (isr & IRQ_UNDERRUN) {
1218 if (info->tx_aborting)
1219 info->icount.txabort++;
1220 else
1221 info->icount.txunder++;
eeb46134 1222 tx_done(info, tty);
1da177e4
LT
1223 }
1224 else if (isr & IRQ_ALLSENT) {
1225 info->icount.txok++;
eeb46134 1226 tx_done(info, tty);
1da177e4
LT
1227 }
1228 else if (isr & IRQ_TXFIFO)
eeb46134 1229 tx_ready(info, tty);
1da177e4
LT
1230 }
1231 if (gis & BIT7) {
1232 pis = read_reg(info, CHA + PIS);
1233 if (pis & BIT1)
1234 dsr_change(info);
1235 if (pis & BIT2)
1236 ri_change(info);
1237 }
1238 }
d12341f9
JG
1239
1240 /* Request bottom half processing if there's something
1da177e4
LT
1241 * for it to do and the bh is not already running
1242 */
1243
1244 if (info->pending_bh && !info->bh_running && !info->bh_requested) {
d12341f9 1245 if ( debug_level >= DEBUG_LEVEL_ISR )
1da177e4
LT
1246 printk("%s(%d):%s queueing bh task.\n",
1247 __FILE__,__LINE__,info->device_name);
1248 schedule_work(&info->task);
0fab6de0 1249 info->bh_requested = true;
1da177e4
LT
1250 }
1251
1252 spin_unlock(&info->lock);
eeb46134 1253 tty_kref_put(tty);
d12341f9
JG
1254
1255 if (debug_level >= DEBUG_LEVEL_ISR)
1da177e4 1256 printk("%s(%d):mgslpc_isr(%d)exit.\n",
a6f97b29 1257 __FILE__, __LINE__, info->irq_level);
1da177e4
LT
1258
1259 return IRQ_HANDLED;
1260}
1261
1262/* Initialize and start device.
1263 */
eeb46134 1264static int startup(MGSLPC_INFO * info, struct tty_struct *tty)
1da177e4
LT
1265{
1266 int retval = 0;
d12341f9 1267
1da177e4
LT
1268 if (debug_level >= DEBUG_LEVEL_INFO)
1269 printk("%s(%d):startup(%s)\n",__FILE__,__LINE__,info->device_name);
d12341f9 1270
eeb46134 1271 if (info->port.flags & ASYNC_INITIALIZED)
1da177e4 1272 return 0;
d12341f9 1273
1da177e4
LT
1274 if (!info->tx_buf) {
1275 /* allocate a page of memory for a transmit buffer */
1276 info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1277 if (!info->tx_buf) {
1278 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
1279 __FILE__,__LINE__,info->device_name);
1280 return -ENOMEM;
1281 }
1282 }
1283
1284 info->pending_bh = 0;
d12341f9 1285
a7482a2e
PF
1286 memset(&info->icount, 0, sizeof(info->icount));
1287
40565f19 1288 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
1da177e4
LT
1289
1290 /* Allocate and claim adapter resources */
1291 retval = claim_resources(info);
d12341f9 1292
1da177e4
LT
1293 /* perform existance check and diagnostics */
1294 if ( !retval )
1295 retval = adapter_test(info);
d12341f9 1296
1da177e4 1297 if ( retval ) {
eeb46134
AC
1298 if (capable(CAP_SYS_ADMIN) && tty)
1299 set_bit(TTY_IO_ERROR, &tty->flags);
1da177e4
LT
1300 release_resources(info);
1301 return retval;
1302 }
1303
1304 /* program hardware for current parameters */
eeb46134 1305 mgslpc_change_params(info, tty);
d12341f9 1306
eeb46134
AC
1307 if (tty)
1308 clear_bit(TTY_IO_ERROR, &tty->flags);
1da177e4 1309
eeb46134 1310 info->port.flags |= ASYNC_INITIALIZED;
d12341f9 1311
1da177e4
LT
1312 return 0;
1313}
1314
1315/* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1316 */
eeb46134 1317static void shutdown(MGSLPC_INFO * info, struct tty_struct *tty)
1da177e4
LT
1318{
1319 unsigned long flags;
d12341f9 1320
eeb46134 1321 if (!(info->port.flags & ASYNC_INITIALIZED))
1da177e4
LT
1322 return;
1323
1324 if (debug_level >= DEBUG_LEVEL_INFO)
1325 printk("%s(%d):mgslpc_shutdown(%s)\n",
1326 __FILE__,__LINE__, info->device_name );
1327
1328 /* clear status wait queue because status changes */
1329 /* can't happen after shutting down the hardware */
1330 wake_up_interruptible(&info->status_event_wait_q);
1331 wake_up_interruptible(&info->event_wait_q);
1332
40565f19 1333 del_timer_sync(&info->tx_timer);
1da177e4
LT
1334
1335 if (info->tx_buf) {
1336 free_page((unsigned long) info->tx_buf);
1337 info->tx_buf = NULL;
1338 }
1339
1340 spin_lock_irqsave(&info->lock,flags);
1341
1342 rx_stop(info);
1343 tx_stop(info);
1344
1345 /* TODO:disable interrupts instead of reset to preserve signal states */
1346 reset_device(info);
d12341f9 1347
eeb46134 1348 if (!tty || tty->termios->c_cflag & HUPCL) {
1da177e4
LT
1349 info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
1350 set_signals(info);
1351 }
d12341f9 1352
1da177e4
LT
1353 spin_unlock_irqrestore(&info->lock,flags);
1354
d12341f9
JG
1355 release_resources(info);
1356
eeb46134
AC
1357 if (tty)
1358 set_bit(TTY_IO_ERROR, &tty->flags);
1da177e4 1359
eeb46134 1360 info->port.flags &= ~ASYNC_INITIALIZED;
1da177e4
LT
1361}
1362
eeb46134 1363static void mgslpc_program_hw(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
1364{
1365 unsigned long flags;
1366
1367 spin_lock_irqsave(&info->lock,flags);
d12341f9 1368
1da177e4
LT
1369 rx_stop(info);
1370 tx_stop(info);
1371 info->tx_count = info->tx_put = info->tx_get = 0;
d12341f9 1372
1da177e4
LT
1373 if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
1374 hdlc_mode(info);
1375 else
1376 async_mode(info);
d12341f9 1377
1da177e4 1378 set_signals(info);
d12341f9 1379
1da177e4
LT
1380 info->dcd_chkcount = 0;
1381 info->cts_chkcount = 0;
1382 info->ri_chkcount = 0;
1383 info->dsr_chkcount = 0;
1384
1385 irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
1386 port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
1387 get_signals(info);
d12341f9 1388
eeb46134 1389 if (info->netcount || (tty && (tty->termios->c_cflag & CREAD)))
1da177e4 1390 rx_start(info);
d12341f9 1391
1da177e4
LT
1392 spin_unlock_irqrestore(&info->lock,flags);
1393}
1394
1395/* Reconfigure adapter based on new parameters
1396 */
eeb46134 1397static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
1398{
1399 unsigned cflag;
1400 int bits_per_char;
1401
eeb46134 1402 if (!tty || !tty->termios)
1da177e4 1403 return;
d12341f9 1404
1da177e4
LT
1405 if (debug_level >= DEBUG_LEVEL_INFO)
1406 printk("%s(%d):mgslpc_change_params(%s)\n",
1407 __FILE__,__LINE__, info->device_name );
d12341f9 1408
eeb46134 1409 cflag = tty->termios->c_cflag;
1da177e4
LT
1410
1411 /* if B0 rate (hangup) specified then negate DTR and RTS */
1412 /* otherwise assert DTR and RTS */
1413 if (cflag & CBAUD)
1414 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
1415 else
1416 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
d12341f9 1417
1da177e4 1418 /* byte size and parity */
d12341f9 1419
1da177e4
LT
1420 switch (cflag & CSIZE) {
1421 case CS5: info->params.data_bits = 5; break;
1422 case CS6: info->params.data_bits = 6; break;
1423 case CS7: info->params.data_bits = 7; break;
1424 case CS8: info->params.data_bits = 8; break;
1425 default: info->params.data_bits = 7; break;
1426 }
d12341f9 1427
1da177e4
LT
1428 if (cflag & CSTOPB)
1429 info->params.stop_bits = 2;
1430 else
1431 info->params.stop_bits = 1;
1432
1433 info->params.parity = ASYNC_PARITY_NONE;
1434 if (cflag & PARENB) {
1435 if (cflag & PARODD)
1436 info->params.parity = ASYNC_PARITY_ODD;
1437 else
1438 info->params.parity = ASYNC_PARITY_EVEN;
1439#ifdef CMSPAR
1440 if (cflag & CMSPAR)
1441 info->params.parity = ASYNC_PARITY_SPACE;
1442#endif
1443 }
1444
1445 /* calculate number of jiffies to transmit a full
1446 * FIFO (32 bytes) at specified data rate
1447 */
d12341f9 1448 bits_per_char = info->params.data_bits +
1da177e4
LT
1449 info->params.stop_bits + 1;
1450
1451 /* if port data rate is set to 460800 or less then
1452 * allow tty settings to override, otherwise keep the
1453 * current data rate.
1454 */
1455 if (info->params.data_rate <= 460800) {
eeb46134 1456 info->params.data_rate = tty_get_baud_rate(tty);
1da177e4 1457 }
d12341f9 1458
1da177e4 1459 if ( info->params.data_rate ) {
d12341f9 1460 info->timeout = (32*HZ*bits_per_char) /
1da177e4
LT
1461 info->params.data_rate;
1462 }
1463 info->timeout += HZ/50; /* Add .02 seconds of slop */
1464
1465 if (cflag & CRTSCTS)
eeb46134 1466 info->port.flags |= ASYNC_CTS_FLOW;
1da177e4 1467 else
eeb46134 1468 info->port.flags &= ~ASYNC_CTS_FLOW;
d12341f9 1469
1da177e4 1470 if (cflag & CLOCAL)
eeb46134 1471 info->port.flags &= ~ASYNC_CHECK_CD;
1da177e4 1472 else
eeb46134 1473 info->port.flags |= ASYNC_CHECK_CD;
1da177e4
LT
1474
1475 /* process tty input control flags */
d12341f9 1476
1da177e4 1477 info->read_status_mask = 0;
eeb46134 1478 if (I_INPCK(tty))
1da177e4 1479 info->read_status_mask |= BIT7 | BIT6;
eeb46134 1480 if (I_IGNPAR(tty))
1da177e4
LT
1481 info->ignore_status_mask |= BIT7 | BIT6;
1482
eeb46134 1483 mgslpc_program_hw(info, tty);
1da177e4
LT
1484}
1485
1486/* Add a character to the transmit buffer
1487 */
d7e752e2 1488static int mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
1da177e4
LT
1489{
1490 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1491 unsigned long flags;
1492
1493 if (debug_level >= DEBUG_LEVEL_INFO) {
1494 printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
1495 __FILE__,__LINE__,ch,info->device_name);
1496 }
1497
1498 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
d7e752e2 1499 return 0;
1da177e4 1500
326f28e9 1501 if (!info->tx_buf)
d7e752e2 1502 return 0;
1da177e4
LT
1503
1504 spin_lock_irqsave(&info->lock,flags);
d12341f9 1505
1da177e4
LT
1506 if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
1507 if (info->tx_count < TXBUFSIZE - 1) {
1508 info->tx_buf[info->tx_put++] = ch;
1509 info->tx_put &= TXBUFSIZE-1;
1510 info->tx_count++;
1511 }
1512 }
d12341f9 1513
1da177e4 1514 spin_unlock_irqrestore(&info->lock,flags);
d7e752e2 1515 return 1;
1da177e4
LT
1516}
1517
1518/* Enable transmitter so remaining characters in the
1519 * transmit buffer are sent.
1520 */
1521static void mgslpc_flush_chars(struct tty_struct *tty)
1522{
1523 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1524 unsigned long flags;
d12341f9 1525
1da177e4
LT
1526 if (debug_level >= DEBUG_LEVEL_INFO)
1527 printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1528 __FILE__,__LINE__,info->device_name,info->tx_count);
d12341f9 1529
1da177e4
LT
1530 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
1531 return;
1532
1533 if (info->tx_count <= 0 || tty->stopped ||
1534 tty->hw_stopped || !info->tx_buf)
1535 return;
1536
1537 if (debug_level >= DEBUG_LEVEL_INFO)
1538 printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1539 __FILE__,__LINE__,info->device_name);
1540
1541 spin_lock_irqsave(&info->lock,flags);
1542 if (!info->tx_active)
eeb46134 1543 tx_start(info, tty);
1da177e4
LT
1544 spin_unlock_irqrestore(&info->lock,flags);
1545}
1546
1547/* Send a block of data
d12341f9 1548 *
1da177e4 1549 * Arguments:
d12341f9 1550 *
1da177e4
LT
1551 * tty pointer to tty information structure
1552 * buf pointer to buffer containing send data
1553 * count size of send data in bytes
d12341f9 1554 *
1da177e4
LT
1555 * Returns: number of characters written
1556 */
1557static int mgslpc_write(struct tty_struct * tty,
1558 const unsigned char *buf, int count)
1559{
1560 int c, ret = 0;
1561 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1562 unsigned long flags;
d12341f9 1563
1da177e4
LT
1564 if (debug_level >= DEBUG_LEVEL_INFO)
1565 printk( "%s(%d):mgslpc_write(%s) count=%d\n",
1566 __FILE__,__LINE__,info->device_name,count);
d12341f9 1567
1da177e4 1568 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
326f28e9 1569 !info->tx_buf)
1da177e4
LT
1570 goto cleanup;
1571
1572 if (info->params.mode == MGSL_MODE_HDLC) {
1573 if (count > TXBUFSIZE) {
1574 ret = -EIO;
1575 goto cleanup;
1576 }
1577 if (info->tx_active)
1578 goto cleanup;
1579 else if (info->tx_count)
1580 goto start;
1581 }
1582
1583 for (;;) {
1584 c = min(count,
1585 min(TXBUFSIZE - info->tx_count - 1,
1586 TXBUFSIZE - info->tx_put));
1587 if (c <= 0)
1588 break;
d12341f9 1589
1da177e4
LT
1590 memcpy(info->tx_buf + info->tx_put, buf, c);
1591
1592 spin_lock_irqsave(&info->lock,flags);
1593 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1594 info->tx_count += c;
1595 spin_unlock_irqrestore(&info->lock,flags);
1596
1597 buf += c;
1598 count -= c;
1599 ret += c;
1600 }
1601start:
1602 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
1603 spin_lock_irqsave(&info->lock,flags);
1604 if (!info->tx_active)
eeb46134 1605 tx_start(info, tty);
1da177e4
LT
1606 spin_unlock_irqrestore(&info->lock,flags);
1607 }
d12341f9 1608cleanup:
1da177e4
LT
1609 if (debug_level >= DEBUG_LEVEL_INFO)
1610 printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
1611 __FILE__,__LINE__,info->device_name,ret);
1612 return ret;
1613}
1614
1615/* Return the count of free bytes in transmit buffer
1616 */
1617static int mgslpc_write_room(struct tty_struct *tty)
1618{
1619 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1620 int ret;
d12341f9 1621
1da177e4
LT
1622 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
1623 return 0;
1624
1625 if (info->params.mode == MGSL_MODE_HDLC) {
1626 /* HDLC (frame oriented) mode */
1627 if (info->tx_active)
1628 return 0;
1629 else
1630 return HDLC_MAX_FRAME_SIZE;
1631 } else {
1632 ret = TXBUFSIZE - info->tx_count - 1;
1633 if (ret < 0)
1634 ret = 0;
1635 }
d12341f9 1636
1da177e4
LT
1637 if (debug_level >= DEBUG_LEVEL_INFO)
1638 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
1639 __FILE__,__LINE__, info->device_name, ret);
1640 return ret;
1641}
1642
1643/* Return the count of bytes in transmit buffer
1644 */
1645static int mgslpc_chars_in_buffer(struct tty_struct *tty)
1646{
1647 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1648 int rc;
d12341f9 1649
1da177e4
LT
1650 if (debug_level >= DEBUG_LEVEL_INFO)
1651 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
1652 __FILE__,__LINE__, info->device_name );
d12341f9 1653
1da177e4
LT
1654 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
1655 return 0;
d12341f9 1656
1da177e4
LT
1657 if (info->params.mode == MGSL_MODE_HDLC)
1658 rc = info->tx_active ? info->max_frame_size : 0;
1659 else
1660 rc = info->tx_count;
1661
1662 if (debug_level >= DEBUG_LEVEL_INFO)
1663 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
1664 __FILE__,__LINE__, info->device_name, rc);
d12341f9 1665
1da177e4
LT
1666 return rc;
1667}
1668
1669/* Discard all data in the send buffer
1670 */
1671static void mgslpc_flush_buffer(struct tty_struct *tty)
1672{
1673 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1674 unsigned long flags;
d12341f9 1675
1da177e4
LT
1676 if (debug_level >= DEBUG_LEVEL_INFO)
1677 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
1678 __FILE__,__LINE__, info->device_name );
d12341f9 1679
1da177e4
LT
1680 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
1681 return;
d12341f9
JG
1682
1683 spin_lock_irqsave(&info->lock,flags);
1da177e4 1684 info->tx_count = info->tx_put = info->tx_get = 0;
d12341f9 1685 del_timer(&info->tx_timer);
1da177e4
LT
1686 spin_unlock_irqrestore(&info->lock,flags);
1687
1688 wake_up_interruptible(&tty->write_wait);
1689 tty_wakeup(tty);
1690}
1691
1692/* Send a high-priority XON/XOFF character
1693 */
1694static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
1695{
1696 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1697 unsigned long flags;
1698
1699 if (debug_level >= DEBUG_LEVEL_INFO)
1700 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
1701 __FILE__,__LINE__, info->device_name, ch );
d12341f9 1702
1da177e4
LT
1703 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
1704 return;
1705
1706 info->x_char = ch;
1707 if (ch) {
1708 spin_lock_irqsave(&info->lock,flags);
1709 if (!info->tx_enabled)
eeb46134 1710 tx_start(info, tty);
1da177e4
LT
1711 spin_unlock_irqrestore(&info->lock,flags);
1712 }
1713}
1714
1715/* Signal remote device to throttle send data (our receive data)
1716 */
1717static void mgslpc_throttle(struct tty_struct * tty)
1718{
1719 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1720 unsigned long flags;
d12341f9 1721
1da177e4
LT
1722 if (debug_level >= DEBUG_LEVEL_INFO)
1723 printk("%s(%d):mgslpc_throttle(%s) entry\n",
1724 __FILE__,__LINE__, info->device_name );
1725
1726 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
1727 return;
d12341f9 1728
1da177e4
LT
1729 if (I_IXOFF(tty))
1730 mgslpc_send_xchar(tty, STOP_CHAR(tty));
d12341f9 1731
1da177e4
LT
1732 if (tty->termios->c_cflag & CRTSCTS) {
1733 spin_lock_irqsave(&info->lock,flags);
1734 info->serial_signals &= ~SerialSignal_RTS;
1735 set_signals(info);
1736 spin_unlock_irqrestore(&info->lock,flags);
1737 }
1738}
1739
1740/* Signal remote device to stop throttling send data (our receive data)
1741 */
1742static void mgslpc_unthrottle(struct tty_struct * tty)
1743{
1744 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1745 unsigned long flags;
d12341f9 1746
1da177e4
LT
1747 if (debug_level >= DEBUG_LEVEL_INFO)
1748 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
1749 __FILE__,__LINE__, info->device_name );
1750
1751 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
1752 return;
d12341f9 1753
1da177e4
LT
1754 if (I_IXOFF(tty)) {
1755 if (info->x_char)
1756 info->x_char = 0;
1757 else
1758 mgslpc_send_xchar(tty, START_CHAR(tty));
1759 }
d12341f9 1760
1da177e4
LT
1761 if (tty->termios->c_cflag & CRTSCTS) {
1762 spin_lock_irqsave(&info->lock,flags);
1763 info->serial_signals |= SerialSignal_RTS;
1764 set_signals(info);
1765 spin_unlock_irqrestore(&info->lock,flags);
1766 }
1767}
1768
1769/* get the current serial statistics
1770 */
1771static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
1772{
1773 int err;
1774 if (debug_level >= DEBUG_LEVEL_INFO)
1775 printk("get_params(%s)\n", info->device_name);
a7482a2e
PF
1776 if (!user_icount) {
1777 memset(&info->icount, 0, sizeof(info->icount));
1778 } else {
1779 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
1780 if (err)
1781 return -EFAULT;
1782 }
1da177e4
LT
1783 return 0;
1784}
1785
1786/* get the current serial parameters
1787 */
1788static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
1789{
1790 int err;
1791 if (debug_level >= DEBUG_LEVEL_INFO)
1792 printk("get_params(%s)\n", info->device_name);
1793 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
1794 if (err)
1795 return -EFAULT;
1796 return 0;
1797}
1798
1799/* set the serial parameters
d12341f9 1800 *
1da177e4 1801 * Arguments:
d12341f9 1802 *
1da177e4
LT
1803 * info pointer to device instance data
1804 * new_params user buffer containing new serial params
1805 *
1806 * Returns: 0 if success, otherwise error code
1807 */
eeb46134 1808static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params, struct tty_struct *tty)
1da177e4
LT
1809{
1810 unsigned long flags;
1811 MGSL_PARAMS tmp_params;
1812 int err;
d12341f9 1813
1da177e4
LT
1814 if (debug_level >= DEBUG_LEVEL_INFO)
1815 printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
1816 info->device_name );
1817 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
1818 if (err) {
1819 if ( debug_level >= DEBUG_LEVEL_INFO )
1820 printk( "%s(%d):set_params(%s) user buffer copy failed\n",
1821 __FILE__,__LINE__,info->device_name);
1822 return -EFAULT;
1823 }
d12341f9 1824
1da177e4
LT
1825 spin_lock_irqsave(&info->lock,flags);
1826 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
1827 spin_unlock_irqrestore(&info->lock,flags);
d12341f9 1828
eeb46134 1829 mgslpc_change_params(info, tty);
d12341f9 1830
1da177e4
LT
1831 return 0;
1832}
1833
1834static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
1835{
1836 int err;
1837 if (debug_level >= DEBUG_LEVEL_INFO)
1838 printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
1839 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
1840 if (err)
1841 return -EFAULT;
1842 return 0;
1843}
1844
1845static int set_txidle(MGSLPC_INFO * info, int idle_mode)
1846{
1847 unsigned long flags;
1848 if (debug_level >= DEBUG_LEVEL_INFO)
1849 printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
1850 spin_lock_irqsave(&info->lock,flags);
1851 info->idle_mode = idle_mode;
1852 tx_set_idle(info);
1853 spin_unlock_irqrestore(&info->lock,flags);
1854 return 0;
1855}
1856
1857static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
1858{
1859 int err;
1860 if (debug_level >= DEBUG_LEVEL_INFO)
1861 printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
1862 COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
1863 if (err)
1864 return -EFAULT;
1865 return 0;
1866}
1867
1868static int set_interface(MGSLPC_INFO * info, int if_mode)
1869{
1870 unsigned long flags;
1871 unsigned char val;
1872 if (debug_level >= DEBUG_LEVEL_INFO)
1873 printk("set_interface(%s,%d)\n", info->device_name, if_mode);
1874 spin_lock_irqsave(&info->lock,flags);
1875 info->if_mode = if_mode;
1876
1877 val = read_reg(info, PVR) & 0x0f;
1878 switch (info->if_mode)
1879 {
1880 case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
1881 case MGSL_INTERFACE_V35: val |= PVR_V35; break;
1882 case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
1883 }
1884 write_reg(info, PVR, val);
1885
1886 spin_unlock_irqrestore(&info->lock,flags);
1887 return 0;
1888}
1889
eeb46134 1890static int set_txenable(MGSLPC_INFO * info, int enable, struct tty_struct *tty)
1da177e4
LT
1891{
1892 unsigned long flags;
d12341f9 1893
1da177e4
LT
1894 if (debug_level >= DEBUG_LEVEL_INFO)
1895 printk("set_txenable(%s,%d)\n", info->device_name, enable);
d12341f9 1896
1da177e4
LT
1897 spin_lock_irqsave(&info->lock,flags);
1898 if (enable) {
1899 if (!info->tx_enabled)
eeb46134 1900 tx_start(info, tty);
1da177e4
LT
1901 } else {
1902 if (info->tx_enabled)
1903 tx_stop(info);
1904 }
1905 spin_unlock_irqrestore(&info->lock,flags);
1906 return 0;
1907}
1908
1909static int tx_abort(MGSLPC_INFO * info)
1910{
1911 unsigned long flags;
d12341f9 1912
1da177e4
LT
1913 if (debug_level >= DEBUG_LEVEL_INFO)
1914 printk("tx_abort(%s)\n", info->device_name);
d12341f9 1915
1da177e4
LT
1916 spin_lock_irqsave(&info->lock,flags);
1917 if (info->tx_active && info->tx_count &&
1918 info->params.mode == MGSL_MODE_HDLC) {
1919 /* clear data count so FIFO is not filled on next IRQ.
1920 * This results in underrun and abort transmission.
1921 */
1922 info->tx_count = info->tx_put = info->tx_get = 0;
0fab6de0 1923 info->tx_aborting = true;
1da177e4
LT
1924 }
1925 spin_unlock_irqrestore(&info->lock,flags);
1926 return 0;
1927}
1928
1929static int set_rxenable(MGSLPC_INFO * info, int enable)
1930{
1931 unsigned long flags;
d12341f9 1932
1da177e4
LT
1933 if (debug_level >= DEBUG_LEVEL_INFO)
1934 printk("set_rxenable(%s,%d)\n", info->device_name, enable);
d12341f9 1935
1da177e4
LT
1936 spin_lock_irqsave(&info->lock,flags);
1937 if (enable) {
1938 if (!info->rx_enabled)
1939 rx_start(info);
1940 } else {
1941 if (info->rx_enabled)
1942 rx_stop(info);
1943 }
1944 spin_unlock_irqrestore(&info->lock,flags);
1945 return 0;
1946}
1947
1948/* wait for specified event to occur
d12341f9 1949 *
1da177e4
LT
1950 * Arguments: info pointer to device instance data
1951 * mask pointer to bitmask of events to wait for
1952 * Return Value: 0 if successful and bit mask updated with
1953 * of events triggerred,
1954 * otherwise error code
1955 */
1956static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
1957{
1958 unsigned long flags;
1959 int s;
1960 int rc=0;
1961 struct mgsl_icount cprev, cnow;
1962 int events;
1963 int mask;
1964 struct _input_signal_events oldsigs, newsigs;
1965 DECLARE_WAITQUEUE(wait, current);
1966
1967 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
1968 if (rc)
1969 return -EFAULT;
d12341f9 1970
1da177e4
LT
1971 if (debug_level >= DEBUG_LEVEL_INFO)
1972 printk("wait_events(%s,%d)\n", info->device_name, mask);
1973
1974 spin_lock_irqsave(&info->lock,flags);
1975
1976 /* return immediately if state matches requested events */
1977 get_signals(info);
1978 s = info->serial_signals;
1979 events = mask &
1980 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
1981 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
1982 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
1983 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
1984 if (events) {
1985 spin_unlock_irqrestore(&info->lock,flags);
1986 goto exit;
1987 }
1988
1989 /* save current irq counts */
1990 cprev = info->icount;
1991 oldsigs = info->input_signal_events;
d12341f9 1992
1da177e4
LT
1993 if ((info->params.mode == MGSL_MODE_HDLC) &&
1994 (mask & MgslEvent_ExitHuntMode))
1995 irq_enable(info, CHA, IRQ_EXITHUNT);
d12341f9 1996
1da177e4
LT
1997 set_current_state(TASK_INTERRUPTIBLE);
1998 add_wait_queue(&info->event_wait_q, &wait);
d12341f9 1999
1da177e4 2000 spin_unlock_irqrestore(&info->lock,flags);
d12341f9
JG
2001
2002
1da177e4
LT
2003 for(;;) {
2004 schedule();
2005 if (signal_pending(current)) {
2006 rc = -ERESTARTSYS;
2007 break;
2008 }
d12341f9 2009
1da177e4
LT
2010 /* get current irq counts */
2011 spin_lock_irqsave(&info->lock,flags);
2012 cnow = info->icount;
2013 newsigs = info->input_signal_events;
2014 set_current_state(TASK_INTERRUPTIBLE);
2015 spin_unlock_irqrestore(&info->lock,flags);
2016
2017 /* if no change, wait aborted for some reason */
2018 if (newsigs.dsr_up == oldsigs.dsr_up &&
2019 newsigs.dsr_down == oldsigs.dsr_down &&
2020 newsigs.dcd_up == oldsigs.dcd_up &&
2021 newsigs.dcd_down == oldsigs.dcd_down &&
2022 newsigs.cts_up == oldsigs.cts_up &&
2023 newsigs.cts_down == oldsigs.cts_down &&
2024 newsigs.ri_up == oldsigs.ri_up &&
2025 newsigs.ri_down == oldsigs.ri_down &&
2026 cnow.exithunt == cprev.exithunt &&
2027 cnow.rxidle == cprev.rxidle) {
2028 rc = -EIO;
2029 break;
2030 }
2031
2032 events = mask &
2033 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2034 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2035 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2036 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2037 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2038 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2039 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2040 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2041 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2042 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2043 if (events)
2044 break;
d12341f9 2045
1da177e4
LT
2046 cprev = cnow;
2047 oldsigs = newsigs;
2048 }
d12341f9 2049
1da177e4
LT
2050 remove_wait_queue(&info->event_wait_q, &wait);
2051 set_current_state(TASK_RUNNING);
2052
2053 if (mask & MgslEvent_ExitHuntMode) {
2054 spin_lock_irqsave(&info->lock,flags);
2055 if (!waitqueue_active(&info->event_wait_q))
2056 irq_disable(info, CHA, IRQ_EXITHUNT);
2057 spin_unlock_irqrestore(&info->lock,flags);
2058 }
2059exit:
2060 if (rc == 0)
2061 PUT_USER(rc, events, mask_ptr);
2062 return rc;
2063}
2064
2065static int modem_input_wait(MGSLPC_INFO *info,int arg)
2066{
2067 unsigned long flags;
2068 int rc;
2069 struct mgsl_icount cprev, cnow;
2070 DECLARE_WAITQUEUE(wait, current);
2071
2072 /* save current irq counts */
2073 spin_lock_irqsave(&info->lock,flags);
2074 cprev = info->icount;
2075 add_wait_queue(&info->status_event_wait_q, &wait);
2076 set_current_state(TASK_INTERRUPTIBLE);
2077 spin_unlock_irqrestore(&info->lock,flags);
2078
2079 for(;;) {
2080 schedule();
2081 if (signal_pending(current)) {
2082 rc = -ERESTARTSYS;
2083 break;
2084 }
2085
2086 /* get new irq counts */
2087 spin_lock_irqsave(&info->lock,flags);
2088 cnow = info->icount;
2089 set_current_state(TASK_INTERRUPTIBLE);
2090 spin_unlock_irqrestore(&info->lock,flags);
2091
2092 /* if no change, wait aborted for some reason */
2093 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2094 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2095 rc = -EIO;
2096 break;
2097 }
2098
2099 /* check for change in caller specified modem input */
2100 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2101 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2102 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2103 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2104 rc = 0;
2105 break;
2106 }
2107
2108 cprev = cnow;
2109 }
2110 remove_wait_queue(&info->status_event_wait_q, &wait);
2111 set_current_state(TASK_RUNNING);
2112 return rc;
2113}
2114
2115/* return the state of the serial control and status signals
2116 */
2117static int tiocmget(struct tty_struct *tty, struct file *file)
2118{
2119 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2120 unsigned int result;
2121 unsigned long flags;
2122
2123 spin_lock_irqsave(&info->lock,flags);
2124 get_signals(info);
2125 spin_unlock_irqrestore(&info->lock,flags);
2126
2127 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2128 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2129 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2130 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2131 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2132 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2133
2134 if (debug_level >= DEBUG_LEVEL_INFO)
2135 printk("%s(%d):%s tiocmget() value=%08X\n",
2136 __FILE__,__LINE__, info->device_name, result );
2137 return result;
2138}
2139
2140/* set modem control signals (DTR/RTS)
2141 */
2142static int tiocmset(struct tty_struct *tty, struct file *file,
2143 unsigned int set, unsigned int clear)
2144{
2145 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2146 unsigned long flags;
2147
2148 if (debug_level >= DEBUG_LEVEL_INFO)
2149 printk("%s(%d):%s tiocmset(%x,%x)\n",
2150 __FILE__,__LINE__,info->device_name, set, clear);
2151
2152 if (set & TIOCM_RTS)
2153 info->serial_signals |= SerialSignal_RTS;
2154 if (set & TIOCM_DTR)
2155 info->serial_signals |= SerialSignal_DTR;
2156 if (clear & TIOCM_RTS)
2157 info->serial_signals &= ~SerialSignal_RTS;
2158 if (clear & TIOCM_DTR)
2159 info->serial_signals &= ~SerialSignal_DTR;
2160
2161 spin_lock_irqsave(&info->lock,flags);
2162 set_signals(info);
2163 spin_unlock_irqrestore(&info->lock,flags);
2164
2165 return 0;
2166}
2167
2168/* Set or clear transmit break condition
2169 *
2170 * Arguments: tty pointer to tty instance data
2171 * break_state -1=set break condition, 0=clear
2172 */
9e98966c 2173static int mgslpc_break(struct tty_struct *tty, int break_state)
1da177e4
LT
2174{
2175 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2176 unsigned long flags;
d12341f9 2177
1da177e4
LT
2178 if (debug_level >= DEBUG_LEVEL_INFO)
2179 printk("%s(%d):mgslpc_break(%s,%d)\n",
2180 __FILE__,__LINE__, info->device_name, break_state);
d12341f9 2181
1da177e4 2182 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
9e98966c 2183 return -EINVAL;
1da177e4
LT
2184
2185 spin_lock_irqsave(&info->lock,flags);
2186 if (break_state == -1)
2187 set_reg_bits(info, CHA+DAFO, BIT6);
d12341f9 2188 else
1da177e4
LT
2189 clear_reg_bits(info, CHA+DAFO, BIT6);
2190 spin_unlock_irqrestore(&info->lock,flags);
9e98966c 2191 return 0;
1da177e4
LT
2192}
2193
2194/* Service an IOCTL request
d12341f9 2195 *
1da177e4 2196 * Arguments:
d12341f9 2197 *
1da177e4
LT
2198 * tty pointer to tty instance data
2199 * file pointer to associated file object for device
2200 * cmd IOCTL command code
2201 * arg command argument/context
d12341f9 2202 *
1da177e4
LT
2203 * Return Value: 0 if success, otherwise error code
2204 */
2205static int mgslpc_ioctl(struct tty_struct *tty, struct file * file,
2206 unsigned int cmd, unsigned long arg)
2207{
2208 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
eeb46134
AC
2209 int error;
2210 struct mgsl_icount cnow; /* kernel counter temps */
2211 struct serial_icounter_struct __user *p_cuser; /* user space */
2212 void __user *argp = (void __user *)arg;
2213 unsigned long flags;
d12341f9 2214
1da177e4
LT
2215 if (debug_level >= DEBUG_LEVEL_INFO)
2216 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
2217 info->device_name, cmd );
d12341f9 2218
1da177e4
LT
2219 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
2220 return -ENODEV;
2221
2222 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
2223 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
2224 if (tty->flags & (1 << TTY_IO_ERROR))
2225 return -EIO;
2226 }
2227
1da177e4
LT
2228 switch (cmd) {
2229 case MGSL_IOCGPARAMS:
2230 return get_params(info, argp);
2231 case MGSL_IOCSPARAMS:
eeb46134 2232 return set_params(info, argp, tty);
1da177e4
LT
2233 case MGSL_IOCGTXIDLE:
2234 return get_txidle(info, argp);
2235 case MGSL_IOCSTXIDLE:
2236 return set_txidle(info, (int)arg);
2237 case MGSL_IOCGIF:
2238 return get_interface(info, argp);
2239 case MGSL_IOCSIF:
2240 return set_interface(info,(int)arg);
2241 case MGSL_IOCTXENABLE:
eeb46134 2242 return set_txenable(info,(int)arg, tty);
1da177e4
LT
2243 case MGSL_IOCRXENABLE:
2244 return set_rxenable(info,(int)arg);
2245 case MGSL_IOCTXABORT:
2246 return tx_abort(info);
2247 case MGSL_IOCGSTATS:
2248 return get_stats(info, argp);
2249 case MGSL_IOCWAITEVENT:
2250 return wait_events(info, argp);
2251 case TIOCMIWAIT:
2252 return modem_input_wait(info,(int)arg);
2253 case TIOCGICOUNT:
2254 spin_lock_irqsave(&info->lock,flags);
2255 cnow = info->icount;
2256 spin_unlock_irqrestore(&info->lock,flags);
2257 p_cuser = argp;
2258 PUT_USER(error,cnow.cts, &p_cuser->cts);
2259 if (error) return error;
2260 PUT_USER(error,cnow.dsr, &p_cuser->dsr);
2261 if (error) return error;
2262 PUT_USER(error,cnow.rng, &p_cuser->rng);
2263 if (error) return error;
2264 PUT_USER(error,cnow.dcd, &p_cuser->dcd);
2265 if (error) return error;
2266 PUT_USER(error,cnow.rx, &p_cuser->rx);
2267 if (error) return error;
2268 PUT_USER(error,cnow.tx, &p_cuser->tx);
2269 if (error) return error;
2270 PUT_USER(error,cnow.frame, &p_cuser->frame);
2271 if (error) return error;
2272 PUT_USER(error,cnow.overrun, &p_cuser->overrun);
2273 if (error) return error;
2274 PUT_USER(error,cnow.parity, &p_cuser->parity);
2275 if (error) return error;
2276 PUT_USER(error,cnow.brk, &p_cuser->brk);
2277 if (error) return error;
2278 PUT_USER(error,cnow.buf_overrun, &p_cuser->buf_overrun);
2279 if (error) return error;
2280 return 0;
2281 default:
2282 return -ENOIOCTLCMD;
2283 }
2284 return 0;
2285}
2286
2287/* Set new termios settings
d12341f9 2288 *
1da177e4 2289 * Arguments:
d12341f9 2290 *
1da177e4
LT
2291 * tty pointer to tty structure
2292 * termios pointer to buffer to hold returned old termios
2293 */
606d099c 2294static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1da177e4
LT
2295{
2296 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2297 unsigned long flags;
d12341f9 2298
1da177e4
LT
2299 if (debug_level >= DEBUG_LEVEL_INFO)
2300 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__,__LINE__,
2301 tty->driver->name );
d12341f9 2302
1da177e4
LT
2303 /* just return if nothing has changed */
2304 if ((tty->termios->c_cflag == old_termios->c_cflag)
d12341f9 2305 && (RELEVANT_IFLAG(tty->termios->c_iflag)
1da177e4
LT
2306 == RELEVANT_IFLAG(old_termios->c_iflag)))
2307 return;
2308
eeb46134 2309 mgslpc_change_params(info, tty);
1da177e4
LT
2310
2311 /* Handle transition to B0 status */
2312 if (old_termios->c_cflag & CBAUD &&
2313 !(tty->termios->c_cflag & CBAUD)) {
2314 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2315 spin_lock_irqsave(&info->lock,flags);
2316 set_signals(info);
2317 spin_unlock_irqrestore(&info->lock,flags);
2318 }
d12341f9 2319
1da177e4
LT
2320 /* Handle transition away from B0 status */
2321 if (!(old_termios->c_cflag & CBAUD) &&
2322 tty->termios->c_cflag & CBAUD) {
2323 info->serial_signals |= SerialSignal_DTR;
d12341f9 2324 if (!(tty->termios->c_cflag & CRTSCTS) ||
1da177e4
LT
2325 !test_bit(TTY_THROTTLED, &tty->flags)) {
2326 info->serial_signals |= SerialSignal_RTS;
2327 }
2328 spin_lock_irqsave(&info->lock,flags);
2329 set_signals(info);
2330 spin_unlock_irqrestore(&info->lock,flags);
2331 }
d12341f9 2332
1da177e4
LT
2333 /* Handle turning off CRTSCTS */
2334 if (old_termios->c_cflag & CRTSCTS &&
2335 !(tty->termios->c_cflag & CRTSCTS)) {
2336 tty->hw_stopped = 0;
2337 tx_release(tty);
2338 }
2339}
2340
2341static void mgslpc_close(struct tty_struct *tty, struct file * filp)
2342{
2343 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
eeb46134 2344 struct tty_port *port = &info->port;
1da177e4
LT
2345
2346 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
2347 return;
d12341f9 2348
1da177e4
LT
2349 if (debug_level >= DEBUG_LEVEL_INFO)
2350 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
eeb46134 2351 __FILE__,__LINE__, info->device_name, port->count);
1da177e4 2352
eeb46134 2353 WARN_ON(!port->count);
d12341f9 2354
eeb46134 2355 if (tty_port_close_start(port, tty, filp) == 0)
1da177e4 2356 goto cleanup;
d12341f9 2357
eeb46134 2358 if (port->flags & ASYNC_INITIALIZED)
1da177e4
LT
2359 mgslpc_wait_until_sent(tty, info->timeout);
2360
978e595f 2361 mgslpc_flush_buffer(tty);
1da177e4 2362
978e595f 2363 tty_ldisc_flush(tty);
eeb46134
AC
2364 shutdown(info, tty);
2365
2366 tty_port_close_end(port, tty);
2367 tty_port_tty_set(port, NULL);
d12341f9 2368cleanup:
1da177e4
LT
2369 if (debug_level >= DEBUG_LEVEL_INFO)
2370 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__,__LINE__,
eeb46134 2371 tty->driver->name, port->count);
1da177e4
LT
2372}
2373
2374/* Wait until the transmitter is empty.
2375 */
2376static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
2377{
2378 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2379 unsigned long orig_jiffies, char_time;
2380
2381 if (!info )
2382 return;
2383
2384 if (debug_level >= DEBUG_LEVEL_INFO)
2385 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
2386 __FILE__,__LINE__, info->device_name );
d12341f9 2387
1da177e4
LT
2388 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
2389 return;
2390
eeb46134 2391 if (!(info->port.flags & ASYNC_INITIALIZED))
1da177e4 2392 goto exit;
d12341f9 2393
1da177e4 2394 orig_jiffies = jiffies;
d12341f9 2395
1da177e4
LT
2396 /* Set check interval to 1/5 of estimated time to
2397 * send a character, and make it at least 1. The check
2398 * interval should also be less than the timeout.
2399 * Note: use tight timings here to satisfy the NIST-PCTS.
d12341f9
JG
2400 */
2401
1da177e4
LT
2402 if ( info->params.data_rate ) {
2403 char_time = info->timeout/(32 * 5);
2404 if (!char_time)
2405 char_time++;
2406 } else
2407 char_time = 1;
d12341f9 2408
1da177e4
LT
2409 if (timeout)
2410 char_time = min_t(unsigned long, char_time, timeout);
d12341f9 2411
1da177e4
LT
2412 if (info->params.mode == MGSL_MODE_HDLC) {
2413 while (info->tx_active) {
2414 msleep_interruptible(jiffies_to_msecs(char_time));
2415 if (signal_pending(current))
2416 break;
2417 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2418 break;
2419 }
2420 } else {
2421 while ((info->tx_count || info->tx_active) &&
2422 info->tx_enabled) {
2423 msleep_interruptible(jiffies_to_msecs(char_time));
2424 if (signal_pending(current))
2425 break;
2426 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2427 break;
2428 }
2429 }
d12341f9 2430
1da177e4
LT
2431exit:
2432 if (debug_level >= DEBUG_LEVEL_INFO)
2433 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
2434 __FILE__,__LINE__, info->device_name );
2435}
2436
2437/* Called by tty_hangup() when a hangup is signaled.
2438 * This is the same as closing all open files for the port.
2439 */
2440static void mgslpc_hangup(struct tty_struct *tty)
2441{
2442 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
d12341f9 2443
1da177e4
LT
2444 if (debug_level >= DEBUG_LEVEL_INFO)
2445 printk("%s(%d):mgslpc_hangup(%s)\n",
2446 __FILE__,__LINE__, info->device_name );
d12341f9 2447
1da177e4
LT
2448 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
2449 return;
2450
2451 mgslpc_flush_buffer(tty);
eeb46134
AC
2452 shutdown(info, tty);
2453 tty_port_hangup(&info->port);
1da177e4
LT
2454}
2455
eeb46134 2456static int carrier_raised(struct tty_port *port)
1da177e4 2457{
eeb46134
AC
2458 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2459 unsigned long flags;
d12341f9 2460
eeb46134
AC
2461 spin_lock_irqsave(&info->lock,flags);
2462 get_signals(info);
2463 spin_unlock_irqrestore(&info->lock,flags);
d12341f9 2464
eeb46134
AC
2465 if (info->serial_signals & SerialSignal_DCD)
2466 return 1;
2467 return 0;
2468}
d12341f9 2469
fcc8ac18 2470static void dtr_rts(struct tty_port *port, int onoff)
eeb46134
AC
2471{
2472 MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
2473 unsigned long flags;
d12341f9 2474
eeb46134 2475 spin_lock_irqsave(&info->lock,flags);
fcc8ac18
AC
2476 if (onoff)
2477 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
2478 else
2479 info->serial_signals &= ~SerialSignal_RTS + SerialSignal_DTR;
eeb46134
AC
2480 set_signals(info);
2481 spin_unlock_irqrestore(&info->lock,flags);
1da177e4
LT
2482}
2483
eeb46134 2484
1da177e4
LT
2485static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2486{
2487 MGSLPC_INFO *info;
eeb46134 2488 struct tty_port *port;
1da177e4
LT
2489 int retval, line;
2490 unsigned long flags;
2491
d12341f9 2492 /* verify range of specified line number */
1da177e4
LT
2493 line = tty->index;
2494 if ((line < 0) || (line >= mgslpc_device_count)) {
2495 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
2496 __FILE__,__LINE__,line);
2497 return -ENODEV;
2498 }
2499
2500 /* find the info structure for the specified line */
2501 info = mgslpc_device_list;
2502 while(info && info->line != line)
2503 info = info->next_device;
2504 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
2505 return -ENODEV;
d12341f9 2506
eeb46134 2507 port = &info->port;
1da177e4 2508 tty->driver_data = info;
eeb46134 2509 tty_port_tty_set(port, tty);
d12341f9 2510
1da177e4
LT
2511 if (debug_level >= DEBUG_LEVEL_INFO)
2512 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
eeb46134 2513 __FILE__,__LINE__,tty->driver->name, port->count);
1da177e4
LT
2514
2515 /* If port is closing, signal caller to try again */
eeb46134
AC
2516 if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING){
2517 if (port->flags & ASYNC_CLOSING)
2518 interruptible_sleep_on(&port->close_wait);
2519 retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
1da177e4
LT
2520 -EAGAIN : -ERESTARTSYS);
2521 goto cleanup;
2522 }
d12341f9 2523
eeb46134 2524 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
1da177e4
LT
2525
2526 spin_lock_irqsave(&info->netlock, flags);
2527 if (info->netcount) {
2528 retval = -EBUSY;
2529 spin_unlock_irqrestore(&info->netlock, flags);
2530 goto cleanup;
2531 }
eeb46134
AC
2532 spin_lock(&port->lock);
2533 port->count++;
2534 spin_unlock(&port->lock);
1da177e4
LT
2535 spin_unlock_irqrestore(&info->netlock, flags);
2536
eeb46134 2537 if (port->count == 1) {
1da177e4 2538 /* 1st open on this device, init hardware */
eeb46134 2539 retval = startup(info, tty);
1da177e4
LT
2540 if (retval < 0)
2541 goto cleanup;
2542 }
2543
eeb46134 2544 retval = tty_port_block_til_ready(&info->port, tty, filp);
1da177e4
LT
2545 if (retval) {
2546 if (debug_level >= DEBUG_LEVEL_INFO)
2547 printk("%s(%d):block_til_ready(%s) returned %d\n",
2548 __FILE__,__LINE__, info->device_name, retval);
2549 goto cleanup;
2550 }
2551
2552 if (debug_level >= DEBUG_LEVEL_INFO)
2553 printk("%s(%d):mgslpc_open(%s) success\n",
2554 __FILE__,__LINE__, info->device_name);
2555 retval = 0;
d12341f9
JG
2556
2557cleanup:
1da177e4
LT
2558 return retval;
2559}
2560
2561/*
2562 * /proc fs routines....
2563 */
2564
87687144 2565static inline void line_info(struct seq_file *m, MGSLPC_INFO *info)
1da177e4
LT
2566{
2567 char stat_buf[30];
1da177e4
LT
2568 unsigned long flags;
2569
87687144 2570 seq_printf(m, "%s:io:%04X irq:%d",
1da177e4
LT
2571 info->device_name, info->io_base, info->irq_level);
2572
2573 /* output current serial signal states */
2574 spin_lock_irqsave(&info->lock,flags);
2575 get_signals(info);
2576 spin_unlock_irqrestore(&info->lock,flags);
d12341f9 2577
1da177e4
LT
2578 stat_buf[0] = 0;
2579 stat_buf[1] = 0;
2580 if (info->serial_signals & SerialSignal_RTS)
2581 strcat(stat_buf, "|RTS");
2582 if (info->serial_signals & SerialSignal_CTS)
2583 strcat(stat_buf, "|CTS");
2584 if (info->serial_signals & SerialSignal_DTR)
2585 strcat(stat_buf, "|DTR");
2586 if (info->serial_signals & SerialSignal_DSR)
2587 strcat(stat_buf, "|DSR");
2588 if (info->serial_signals & SerialSignal_DCD)
2589 strcat(stat_buf, "|CD");
2590 if (info->serial_signals & SerialSignal_RI)
2591 strcat(stat_buf, "|RI");
2592
2593 if (info->params.mode == MGSL_MODE_HDLC) {
87687144 2594 seq_printf(m, " HDLC txok:%d rxok:%d",
1da177e4
LT
2595 info->icount.txok, info->icount.rxok);
2596 if (info->icount.txunder)
87687144 2597 seq_printf(m, " txunder:%d", info->icount.txunder);
1da177e4 2598 if (info->icount.txabort)
87687144 2599 seq_printf(m, " txabort:%d", info->icount.txabort);
1da177e4 2600 if (info->icount.rxshort)
87687144 2601 seq_printf(m, " rxshort:%d", info->icount.rxshort);
1da177e4 2602 if (info->icount.rxlong)
87687144 2603 seq_printf(m, " rxlong:%d", info->icount.rxlong);
1da177e4 2604 if (info->icount.rxover)
87687144 2605 seq_printf(m, " rxover:%d", info->icount.rxover);
1da177e4 2606 if (info->icount.rxcrc)
87687144 2607 seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
1da177e4 2608 } else {
87687144 2609 seq_printf(m, " ASYNC tx:%d rx:%d",
1da177e4
LT
2610 info->icount.tx, info->icount.rx);
2611 if (info->icount.frame)
87687144 2612 seq_printf(m, " fe:%d", info->icount.frame);
1da177e4 2613 if (info->icount.parity)
87687144 2614 seq_printf(m, " pe:%d", info->icount.parity);
1da177e4 2615 if (info->icount.brk)
87687144 2616 seq_printf(m, " brk:%d", info->icount.brk);
1da177e4 2617 if (info->icount.overrun)
87687144 2618 seq_printf(m, " oe:%d", info->icount.overrun);
1da177e4 2619 }
d12341f9 2620
1da177e4 2621 /* Append serial signal status to end */
87687144 2622 seq_printf(m, " %s\n", stat_buf+1);
d12341f9 2623
87687144 2624 seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
1da177e4
LT
2625 info->tx_active,info->bh_requested,info->bh_running,
2626 info->pending_bh);
1da177e4
LT
2627}
2628
2629/* Called to print information about devices
2630 */
87687144 2631static int mgslpc_proc_show(struct seq_file *m, void *v)
1da177e4 2632{
1da177e4 2633 MGSLPC_INFO *info;
d12341f9 2634
87687144 2635 seq_printf(m, "synclink driver:%s\n", driver_version);
d12341f9 2636
1da177e4
LT
2637 info = mgslpc_device_list;
2638 while( info ) {
87687144 2639 line_info(m, info);
1da177e4
LT
2640 info = info->next_device;
2641 }
87687144
AD
2642 return 0;
2643}
1da177e4 2644
87687144
AD
2645static int mgslpc_proc_open(struct inode *inode, struct file *file)
2646{
2647 return single_open(file, mgslpc_proc_show, NULL);
1da177e4
LT
2648}
2649
87687144
AD
2650static const struct file_operations mgslpc_proc_fops = {
2651 .owner = THIS_MODULE,
2652 .open = mgslpc_proc_open,
2653 .read = seq_read,
2654 .llseek = seq_lseek,
2655 .release = single_release,
2656};
2657
cdaad343 2658static int rx_alloc_buffers(MGSLPC_INFO *info)
1da177e4
LT
2659{
2660 /* each buffer has header and data */
2661 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;
2662
2663 /* calculate total allocation size for 8 buffers */
2664 info->rx_buf_total_size = info->rx_buf_size * 8;
2665
2666 /* limit total allocated memory */
2667 if (info->rx_buf_total_size > 0x10000)
2668 info->rx_buf_total_size = 0x10000;
2669
2670 /* calculate number of buffers */
2671 info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;
2672
2673 info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
2674 if (info->rx_buf == NULL)
2675 return -ENOMEM;
2676
2677 rx_reset_buffers(info);
2678 return 0;
2679}
2680
cdaad343 2681static void rx_free_buffers(MGSLPC_INFO *info)
1da177e4 2682{
735d5661 2683 kfree(info->rx_buf);
1da177e4
LT
2684 info->rx_buf = NULL;
2685}
2686
cdaad343 2687static int claim_resources(MGSLPC_INFO *info)
1da177e4
LT
2688{
2689 if (rx_alloc_buffers(info) < 0 ) {
2690 printk( "Cant allocate rx buffer %s\n", info->device_name);
2691 release_resources(info);
2692 return -ENODEV;
d12341f9 2693 }
1da177e4
LT
2694 return 0;
2695}
2696
cdaad343 2697static void release_resources(MGSLPC_INFO *info)
1da177e4
LT
2698{
2699 if (debug_level >= DEBUG_LEVEL_INFO)
2700 printk("release_resources(%s)\n", info->device_name);
2701 rx_free_buffers(info);
2702}
2703
2704/* Add the specified device instance data structure to the
2705 * global linked list of devices and increment the device count.
d12341f9 2706 *
1da177e4
LT
2707 * Arguments: info pointer to device instance data
2708 */
cdaad343 2709static void mgslpc_add_device(MGSLPC_INFO *info)
1da177e4
LT
2710{
2711 info->next_device = NULL;
2712 info->line = mgslpc_device_count;
2713 sprintf(info->device_name,"ttySLP%d",info->line);
d12341f9 2714
1da177e4
LT
2715 if (info->line < MAX_DEVICE_COUNT) {
2716 if (maxframe[info->line])
2717 info->max_frame_size = maxframe[info->line];
1da177e4
LT
2718 }
2719
2720 mgslpc_device_count++;
d12341f9 2721
1da177e4
LT
2722 if (!mgslpc_device_list)
2723 mgslpc_device_list = info;
d12341f9 2724 else {
1da177e4
LT
2725 MGSLPC_INFO *current_dev = mgslpc_device_list;
2726 while( current_dev->next_device )
2727 current_dev = current_dev->next_device;
2728 current_dev->next_device = info;
2729 }
d12341f9 2730
1da177e4
LT
2731 if (info->max_frame_size < 4096)
2732 info->max_frame_size = 4096;
2733 else if (info->max_frame_size > 65535)
2734 info->max_frame_size = 65535;
d12341f9 2735
1da177e4
LT
2736 printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
2737 info->device_name, info->io_base, info->irq_level);
2738
af69c7f9 2739#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
2740 hdlcdev_init(info);
2741#endif
2742}
2743
cdaad343 2744static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
1da177e4
LT
2745{
2746 MGSLPC_INFO *info = mgslpc_device_list;
2747 MGSLPC_INFO *last = NULL;
2748
2749 while(info) {
2750 if (info == remove_info) {
2751 if (last)
2752 last->next_device = info->next_device;
2753 else
2754 mgslpc_device_list = info->next_device;
af69c7f9 2755#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
2756 hdlcdev_exit(info);
2757#endif
2758 release_resources(info);
2759 kfree(info);
2760 mgslpc_device_count--;
2761 return;
2762 }
2763 last = info;
2764 info = info->next_device;
2765 }
2766}
2767
4af48c8c
DB
2768static struct pcmcia_device_id mgslpc_ids[] = {
2769 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2770 PCMCIA_DEVICE_NULL
2771};
2772MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
2773
1da177e4
LT
2774static struct pcmcia_driver mgslpc_driver = {
2775 .owner = THIS_MODULE,
2776 .drv = {
2777 .name = "synclink_cs",
2778 },
15b99ac1 2779 .probe = mgslpc_probe,
cc3b4866 2780 .remove = mgslpc_detach,
4af48c8c 2781 .id_table = mgslpc_ids,
98e4c28b
DB
2782 .suspend = mgslpc_suspend,
2783 .resume = mgslpc_resume,
1da177e4
LT
2784};
2785
b68e31d0 2786static const struct tty_operations mgslpc_ops = {
1da177e4
LT
2787 .open = mgslpc_open,
2788 .close = mgslpc_close,
2789 .write = mgslpc_write,
2790 .put_char = mgslpc_put_char,
2791 .flush_chars = mgslpc_flush_chars,
2792 .write_room = mgslpc_write_room,
2793 .chars_in_buffer = mgslpc_chars_in_buffer,
2794 .flush_buffer = mgslpc_flush_buffer,
2795 .ioctl = mgslpc_ioctl,
2796 .throttle = mgslpc_throttle,
2797 .unthrottle = mgslpc_unthrottle,
2798 .send_xchar = mgslpc_send_xchar,
2799 .break_ctl = mgslpc_break,
2800 .wait_until_sent = mgslpc_wait_until_sent,
1da177e4
LT
2801 .set_termios = mgslpc_set_termios,
2802 .stop = tx_pause,
2803 .start = tx_release,
2804 .hangup = mgslpc_hangup,
2805 .tiocmget = tiocmget,
2806 .tiocmset = tiocmset,
87687144 2807 .proc_fops = &mgslpc_proc_fops,
1da177e4
LT
2808};
2809
2810static void synclink_cs_cleanup(void)
2811{
2812 int rc;
2813
2814 printk("Unloading %s: version %s\n", driver_name, driver_version);
2815
2816 while(mgslpc_device_list)
2817 mgslpc_remove_device(mgslpc_device_list);
2818
2819 if (serial_driver) {
2820 if ((rc = tty_unregister_driver(serial_driver)))
2821 printk("%s(%d) failed to unregister tty driver err=%d\n",
2822 __FILE__,__LINE__,rc);
2823 put_tty_driver(serial_driver);
2824 }
2825
2826 pcmcia_unregister_driver(&mgslpc_driver);
1da177e4
LT
2827}
2828
2829static int __init synclink_cs_init(void)
2830{
2831 int rc;
2832
2833 if (break_on_load) {
2834 mgslpc_get_text_ptr();
2835 BREAKPOINT();
2836 }
2837
2838 printk("%s %s\n", driver_name, driver_version);
2839
2840 if ((rc = pcmcia_register_driver(&mgslpc_driver)) < 0)
2841 return rc;
2842
2843 serial_driver = alloc_tty_driver(MAX_DEVICE_COUNT);
2844 if (!serial_driver) {
2845 rc = -ENOMEM;
2846 goto error;
2847 }
2848
2849 /* Initialize the tty_driver structure */
d12341f9 2850
1da177e4
LT
2851 serial_driver->owner = THIS_MODULE;
2852 serial_driver->driver_name = "synclink_cs";
2853 serial_driver->name = "ttySLP";
2854 serial_driver->major = ttymajor;
2855 serial_driver->minor_start = 64;
2856 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
2857 serial_driver->subtype = SERIAL_TYPE_NORMAL;
2858 serial_driver->init_termios = tty_std_termios;
2859 serial_driver->init_termios.c_cflag =
2860 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2861 serial_driver->flags = TTY_DRIVER_REAL_RAW;
2862 tty_set_operations(serial_driver, &mgslpc_ops);
2863
2864 if ((rc = tty_register_driver(serial_driver)) < 0) {
2865 printk("%s(%d):Couldn't register serial driver\n",
2866 __FILE__,__LINE__);
2867 put_tty_driver(serial_driver);
2868 serial_driver = NULL;
2869 goto error;
2870 }
d12341f9 2871
1da177e4
LT
2872 printk("%s %s, tty major#%d\n",
2873 driver_name, driver_version,
2874 serial_driver->major);
d12341f9 2875
1da177e4
LT
2876 return 0;
2877
2878error:
2879 synclink_cs_cleanup();
2880 return rc;
2881}
2882
d12341f9 2883static void __exit synclink_cs_exit(void)
1da177e4
LT
2884{
2885 synclink_cs_cleanup();
2886}
2887
2888module_init(synclink_cs_init);
2889module_exit(synclink_cs_exit);
2890
2891static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
2892{
2893 unsigned int M, N;
2894 unsigned char val;
2895
d12341f9
JG
2896 /* note:standard BRG mode is broken in V3.2 chip
2897 * so enhanced mode is always used
1da177e4
LT
2898 */
2899
2900 if (rate) {
2901 N = 3686400 / rate;
2902 if (!N)
2903 N = 1;
2904 N >>= 1;
2905 for (M = 1; N > 64 && M < 16; M++)
2906 N >>= 1;
2907 N--;
2908
2909 /* BGR[5..0] = N
2910 * BGR[9..6] = M
2911 * BGR[7..0] contained in BGR register
2912 * BGR[9..8] contained in CCR2[7..6]
2913 * divisor = (N+1)*2^M
2914 *
2915 * Note: M *must* not be zero (causes asymetric duty cycle)
d12341f9 2916 */
1da177e4
LT
2917 write_reg(info, (unsigned char) (channel + BGR),
2918 (unsigned char) ((M << 6) + N));
2919 val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
2920 val |= ((M << 4) & 0xc0);
2921 write_reg(info, (unsigned char) (channel + CCR2), val);
2922 }
2923}
2924
2925/* Enabled the AUX clock output at the specified frequency.
2926 */
2927static void enable_auxclk(MGSLPC_INFO *info)
2928{
2929 unsigned char val;
d12341f9 2930
1da177e4
LT
2931 /* MODE
2932 *
2933 * 07..06 MDS[1..0] 10 = transparent HDLC mode
2934 * 05 ADM Address Mode, 0 = no addr recognition
2935 * 04 TMD Timer Mode, 0 = external
2936 * 03 RAC Receiver Active, 0 = inactive
2937 * 02 RTS 0=RTS active during xmit, 1=RTS always active
2938 * 01 TRS Timer Resolution, 1=512
2939 * 00 TLP Test Loop, 0 = no loop
2940 *
2941 * 1000 0010
d12341f9 2942 */
1da177e4 2943 val = 0x82;
d12341f9
JG
2944
2945 /* channel B RTS is used to enable AUXCLK driver on SP505 */
1da177e4
LT
2946 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2947 val |= BIT2;
2948 write_reg(info, CHB + MODE, val);
d12341f9 2949
1da177e4
LT
2950 /* CCR0
2951 *
2952 * 07 PU Power Up, 1=active, 0=power down
2953 * 06 MCE Master Clock Enable, 1=enabled
2954 * 05 Reserved, 0
2955 * 04..02 SC[2..0] Encoding
2956 * 01..00 SM[1..0] Serial Mode, 00=HDLC
2957 *
2958 * 11000000
d12341f9 2959 */
1da177e4 2960 write_reg(info, CHB + CCR0, 0xc0);
d12341f9 2961
1da177e4
LT
2962 /* CCR1
2963 *
2964 * 07 SFLG Shared Flag, 0 = disable shared flags
2965 * 06 GALP Go Active On Loop, 0 = not used
2966 * 05 GLP Go On Loop, 0 = not used
2967 * 04 ODS Output Driver Select, 1=TxD is push-pull output
2968 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
2969 * 02..00 CM[2..0] Clock Mode
2970 *
2971 * 0001 0111
d12341f9 2972 */
1da177e4 2973 write_reg(info, CHB + CCR1, 0x17);
d12341f9 2974
1da177e4
LT
2975 /* CCR2 (Channel B)
2976 *
2977 * 07..06 BGR[9..8] Baud rate bits 9..8
2978 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
2979 * 04 SSEL Clock source select, 1=submode b
2980 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
2981 * 02 RWX Read/Write Exchange 0=disabled
2982 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
2983 * 00 DIV, data inversion 0=disabled, 1=enabled
2984 *
2985 * 0011 1000
d12341f9 2986 */
1da177e4
LT
2987 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
2988 write_reg(info, CHB + CCR2, 0x38);
2989 else
2990 write_reg(info, CHB + CCR2, 0x30);
d12341f9 2991
1da177e4
LT
2992 /* CCR4
2993 *
2994 * 07 MCK4 Master Clock Divide by 4, 1=enabled
2995 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
2996 * 05 TST1 Test Pin, 0=normal operation
2997 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
2998 * 03..02 Reserved, must be 0
2999 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3000 *
3001 * 0101 0000
d12341f9 3002 */
1da177e4 3003 write_reg(info, CHB + CCR4, 0x50);
d12341f9 3004
1da177e4
LT
3005 /* if auxclk not enabled, set internal BRG so
3006 * CTS transitions can be detected (requires TxC)
d12341f9 3007 */
1da177e4
LT
3008 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3009 mgslpc_set_rate(info, CHB, info->params.clock_speed);
3010 else
3011 mgslpc_set_rate(info, CHB, 921600);
3012}
3013
d12341f9 3014static void loopback_enable(MGSLPC_INFO *info)
1da177e4
LT
3015{
3016 unsigned char val;
d12341f9
JG
3017
3018 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
1da177e4
LT
3019 val = read_reg(info, CHA + CCR1) | (BIT2 + BIT1 + BIT0);
3020 write_reg(info, CHA + CCR1, val);
d12341f9
JG
3021
3022 /* CCR2:04 SSEL Clock source select, 1=submode b */
1da177e4
LT
3023 val = read_reg(info, CHA + CCR2) | (BIT4 + BIT5);
3024 write_reg(info, CHA + CCR2, val);
d12341f9
JG
3025
3026 /* set LinkSpeed if available, otherwise default to 2Mbps */
1da177e4
LT
3027 if (info->params.clock_speed)
3028 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3029 else
3030 mgslpc_set_rate(info, CHA, 1843200);
d12341f9
JG
3031
3032 /* MODE:00 TLP Test Loop, 1=loopback enabled */
1da177e4
LT
3033 val = read_reg(info, CHA + MODE) | BIT0;
3034 write_reg(info, CHA + MODE, val);
3035}
3036
cdaad343 3037static void hdlc_mode(MGSLPC_INFO *info)
1da177e4
LT
3038{
3039 unsigned char val;
3040 unsigned char clkmode, clksubmode;
3041
d12341f9 3042 /* disable all interrupts */
1da177e4
LT
3043 irq_disable(info, CHA, 0xffff);
3044 irq_disable(info, CHB, 0xffff);
3045 port_irq_disable(info, 0xff);
d12341f9
JG
3046
3047 /* assume clock mode 0a, rcv=RxC xmt=TxC */
1da177e4
LT
3048 clkmode = clksubmode = 0;
3049 if (info->params.flags & HDLC_FLAG_RXC_DPLL
3050 && info->params.flags & HDLC_FLAG_TXC_DPLL) {
d12341f9 3051 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
1da177e4
LT
3052 clkmode = 7;
3053 } else if (info->params.flags & HDLC_FLAG_RXC_BRG
3054 && info->params.flags & HDLC_FLAG_TXC_BRG) {
d12341f9 3055 /* clock mode 7b, rcv = BRG, xmt = BRG */
1da177e4
LT
3056 clkmode = 7;
3057 clksubmode = 1;
3058 } else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
3059 if (info->params.flags & HDLC_FLAG_TXC_BRG) {
d12341f9 3060 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
1da177e4
LT
3061 clkmode = 6;
3062 clksubmode = 1;
3063 } else {
d12341f9 3064 /* clock mode 6a, rcv = DPLL, xmt = TxC */
1da177e4
LT
3065 clkmode = 6;
3066 }
3067 } else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
d12341f9 3068 /* clock mode 0b, rcv = RxC, xmt = BRG */
1da177e4
LT
3069 clksubmode = 1;
3070 }
d12341f9 3071
1da177e4
LT
3072 /* MODE
3073 *
3074 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3075 * 05 ADM Address Mode, 0 = no addr recognition
3076 * 04 TMD Timer Mode, 0 = external
3077 * 03 RAC Receiver Active, 0 = inactive
3078 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3079 * 01 TRS Timer Resolution, 1=512
3080 * 00 TLP Test Loop, 0 = no loop
3081 *
3082 * 1000 0010
d12341f9 3083 */
1da177e4
LT
3084 val = 0x82;
3085 if (info->params.loopback)
3086 val |= BIT0;
d12341f9
JG
3087
3088 /* preserve RTS state */
1da177e4
LT
3089 if (info->serial_signals & SerialSignal_RTS)
3090 val |= BIT2;
3091 write_reg(info, CHA + MODE, val);
d12341f9 3092
1da177e4
LT
3093 /* CCR0
3094 *
3095 * 07 PU Power Up, 1=active, 0=power down
3096 * 06 MCE Master Clock Enable, 1=enabled
3097 * 05 Reserved, 0
3098 * 04..02 SC[2..0] Encoding
3099 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3100 *
3101 * 11000000
d12341f9 3102 */
1da177e4
LT
3103 val = 0xc0;
3104 switch (info->params.encoding)
3105 {
3106 case HDLC_ENCODING_NRZI:
3107 val |= BIT3;
3108 break;
3109 case HDLC_ENCODING_BIPHASE_SPACE:
3110 val |= BIT4;
3111 break; // FM0
3112 case HDLC_ENCODING_BIPHASE_MARK:
3113 val |= BIT4 + BIT2;
3114 break; // FM1
3115 case HDLC_ENCODING_BIPHASE_LEVEL:
3116 val |= BIT4 + BIT3;
3117 break; // Manchester
3118 }
3119 write_reg(info, CHA + CCR0, val);
d12341f9 3120
1da177e4
LT
3121 /* CCR1
3122 *
3123 * 07 SFLG Shared Flag, 0 = disable shared flags
3124 * 06 GALP Go Active On Loop, 0 = not used
3125 * 05 GLP Go On Loop, 0 = not used
3126 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3127 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3128 * 02..00 CM[2..0] Clock Mode
3129 *
3130 * 0001 0000
d12341f9 3131 */
1da177e4
LT
3132 val = 0x10 + clkmode;
3133 write_reg(info, CHA + CCR1, val);
d12341f9 3134
1da177e4
LT
3135 /* CCR2
3136 *
3137 * 07..06 BGR[9..8] Baud rate bits 9..8
3138 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3139 * 04 SSEL Clock source select, 1=submode b
3140 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3141 * 02 RWX Read/Write Exchange 0=disabled
3142 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3143 * 00 DIV, data inversion 0=disabled, 1=enabled
3144 *
3145 * 0000 0000
d12341f9 3146 */
1da177e4
LT
3147 val = 0x00;
3148 if (clkmode == 2 || clkmode == 3 || clkmode == 6
3149 || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
3150 val |= BIT5;
3151 if (clksubmode)
3152 val |= BIT4;
3153 if (info->params.crc_type == HDLC_CRC_32_CCITT)
3154 val |= BIT1;
3155 if (info->params.encoding == HDLC_ENCODING_NRZB)
3156 val |= BIT0;
3157 write_reg(info, CHA + CCR2, val);
d12341f9 3158
1da177e4
LT
3159 /* CCR3
3160 *
3161 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3162 * 05 EPT Enable preamble transmission, 1=enabled
3163 * 04 RADD Receive address pushed to FIFO, 0=disabled
3164 * 03 CRL CRC Reset Level, 0=FFFF
3165 * 02 RCRC Rx CRC 0=On 1=Off
3166 * 01 TCRC Tx CRC 0=On 1=Off
3167 * 00 PSD DPLL Phase Shift Disable
3168 *
3169 * 0000 0000
d12341f9 3170 */
1da177e4
LT
3171 val = 0x00;
3172 if (info->params.crc_type == HDLC_CRC_NONE)
3173 val |= BIT2 + BIT1;
3174 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
3175 val |= BIT5;
3176 switch (info->params.preamble_length)
3177 {
3178 case HDLC_PREAMBLE_LENGTH_16BITS:
3179 val |= BIT6;
3180 break;
3181 case HDLC_PREAMBLE_LENGTH_32BITS:
3182 val |= BIT6;
3183 break;
3184 case HDLC_PREAMBLE_LENGTH_64BITS:
3185 val |= BIT7 + BIT6;
3186 break;
3187 }
3188 write_reg(info, CHA + CCR3, val);
d12341f9
JG
3189
3190 /* PRE - Preamble pattern */
1da177e4
LT
3191 val = 0;
3192 switch (info->params.preamble)
3193 {
3194 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
3195 case HDLC_PREAMBLE_PATTERN_10: val = 0xaa; break;
3196 case HDLC_PREAMBLE_PATTERN_01: val = 0x55; break;
3197 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
3198 }
3199 write_reg(info, CHA + PRE, val);
d12341f9 3200
1da177e4
LT
3201 /* CCR4
3202 *
3203 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3204 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3205 * 05 TST1 Test Pin, 0=normal operation
3206 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3207 * 03..02 Reserved, must be 0
3208 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3209 *
3210 * 0101 0000
d12341f9 3211 */
1da177e4
LT
3212 val = 0x50;
3213 write_reg(info, CHA + CCR4, val);
3214 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
3215 mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
3216 else
3217 mgslpc_set_rate(info, CHA, info->params.clock_speed);
d12341f9 3218
1da177e4
LT
3219 /* RLCR Receive length check register
3220 *
3221 * 7 1=enable receive length check
3222 * 6..0 Max frame length = (RL + 1) * 32
d12341f9 3223 */
1da177e4 3224 write_reg(info, CHA + RLCR, 0);
d12341f9 3225
1da177e4
LT
3226 /* XBCH Transmit Byte Count High
3227 *
3228 * 07 DMA mode, 0 = interrupt driven
3229 * 06 NRM, 0=ABM (ignored)
3230 * 05 CAS Carrier Auto Start
3231 * 04 XC Transmit Continuously (ignored)
3232 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3233 *
3234 * 0000 0000
d12341f9 3235 */
1da177e4
LT
3236 val = 0x00;
3237 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3238 val |= BIT5;
3239 write_reg(info, CHA + XBCH, val);
3240 enable_auxclk(info);
3241 if (info->params.loopback || info->testing_irq)
3242 loopback_enable(info);
3243 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3244 {
3245 irq_enable(info, CHB, IRQ_CTS);
d12341f9 3246 /* PVR[3] 1=AUTO CTS active */
1da177e4
LT
3247 set_reg_bits(info, CHA + PVR, BIT3);
3248 } else
3249 clear_reg_bits(info, CHA + PVR, BIT3);
3250
3251 irq_enable(info, CHA,
3252 IRQ_RXEOM + IRQ_RXFIFO + IRQ_ALLSENT +
3253 IRQ_UNDERRUN + IRQ_TXFIFO);
3254 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3255 wait_command_complete(info, CHA);
3256 read_reg16(info, CHA + ISR); /* clear pending IRQs */
d12341f9 3257
1da177e4
LT
3258 /* Master clock mode enabled above to allow reset commands
3259 * to complete even if no data clocks are present.
3260 *
3261 * Disable master clock mode for normal communications because
3262 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3263 * IRQ when in master clock mode.
3264 *
3265 * Leave master clock mode enabled for IRQ test because the
3266 * timer IRQ used by the test can only happen in master clock mode.
d12341f9 3267 */
1da177e4
LT
3268 if (!info->testing_irq)
3269 clear_reg_bits(info, CHA + CCR0, BIT6);
3270
3271 tx_set_idle(info);
3272
3273 tx_stop(info);
3274 rx_stop(info);
3275}
3276
cdaad343 3277static void rx_stop(MGSLPC_INFO *info)
1da177e4
LT
3278{
3279 if (debug_level >= DEBUG_LEVEL_ISR)
3280 printk("%s(%d):rx_stop(%s)\n",
3281 __FILE__,__LINE__, info->device_name );
d12341f9
JG
3282
3283 /* MODE:03 RAC Receiver Active, 0=inactive */
1da177e4
LT
3284 clear_reg_bits(info, CHA + MODE, BIT3);
3285
0fab6de0
JP
3286 info->rx_enabled = false;
3287 info->rx_overflow = false;
1da177e4
LT
3288}
3289
cdaad343 3290static void rx_start(MGSLPC_INFO *info)
1da177e4
LT
3291{
3292 if (debug_level >= DEBUG_LEVEL_ISR)
3293 printk("%s(%d):rx_start(%s)\n",
3294 __FILE__,__LINE__, info->device_name );
3295
3296 rx_reset_buffers(info);
0fab6de0
JP
3297 info->rx_enabled = false;
3298 info->rx_overflow = false;
1da177e4 3299
d12341f9 3300 /* MODE:03 RAC Receiver Active, 1=active */
1da177e4
LT
3301 set_reg_bits(info, CHA + MODE, BIT3);
3302
0fab6de0 3303 info->rx_enabled = true;
1da177e4
LT
3304}
3305
eeb46134 3306static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
3307{
3308 if (debug_level >= DEBUG_LEVEL_ISR)
3309 printk("%s(%d):tx_start(%s)\n",
3310 __FILE__,__LINE__, info->device_name );
d12341f9 3311
1da177e4
LT
3312 if (info->tx_count) {
3313 /* If auto RTS enabled and RTS is inactive, then assert */
3314 /* RTS and set a flag indicating that the driver should */
3315 /* negate RTS when the transmission completes. */
0fab6de0 3316 info->drop_rts_on_tx_done = false;
1da177e4
LT
3317
3318 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3319 get_signals(info);
3320 if (!(info->serial_signals & SerialSignal_RTS)) {
3321 info->serial_signals |= SerialSignal_RTS;
3322 set_signals(info);
0fab6de0 3323 info->drop_rts_on_tx_done = true;
1da177e4
LT
3324 }
3325 }
3326
3327 if (info->params.mode == MGSL_MODE_ASYNC) {
3328 if (!info->tx_active) {
0fab6de0 3329 info->tx_active = true;
eeb46134 3330 tx_ready(info, tty);
1da177e4
LT
3331 }
3332 } else {
0fab6de0 3333 info->tx_active = true;
eeb46134 3334 tx_ready(info, tty);
40565f19
JS
3335 mod_timer(&info->tx_timer, jiffies +
3336 msecs_to_jiffies(5000));
1da177e4
LT
3337 }
3338 }
3339
3340 if (!info->tx_enabled)
0fab6de0 3341 info->tx_enabled = true;
1da177e4
LT
3342}
3343
cdaad343 3344static void tx_stop(MGSLPC_INFO *info)
1da177e4
LT
3345{
3346 if (debug_level >= DEBUG_LEVEL_ISR)
3347 printk("%s(%d):tx_stop(%s)\n",
3348 __FILE__,__LINE__, info->device_name );
d12341f9
JG
3349
3350 del_timer(&info->tx_timer);
1da177e4 3351
0fab6de0
JP
3352 info->tx_enabled = false;
3353 info->tx_active = false;
1da177e4
LT
3354}
3355
3356/* Reset the adapter to a known state and prepare it for further use.
3357 */
cdaad343 3358static void reset_device(MGSLPC_INFO *info)
1da177e4 3359{
d12341f9 3360 /* power up both channels (set BIT7) */
1da177e4
LT
3361 write_reg(info, CHA + CCR0, 0x80);
3362 write_reg(info, CHB + CCR0, 0x80);
3363 write_reg(info, CHA + MODE, 0);
3364 write_reg(info, CHB + MODE, 0);
d12341f9
JG
3365
3366 /* disable all interrupts */
1da177e4
LT
3367 irq_disable(info, CHA, 0xffff);
3368 irq_disable(info, CHB, 0xffff);
3369 port_irq_disable(info, 0xff);
d12341f9 3370
1da177e4
LT
3371 /* PCR Port Configuration Register
3372 *
3373 * 07..04 DEC[3..0] Serial I/F select outputs
3374 * 03 output, 1=AUTO CTS control enabled
3375 * 02 RI Ring Indicator input 0=active
3376 * 01 DSR input 0=active
3377 * 00 DTR output 0=active
3378 *
3379 * 0000 0110
d12341f9 3380 */
1da177e4 3381 write_reg(info, PCR, 0x06);
d12341f9 3382
1da177e4
LT
3383 /* PVR Port Value Register
3384 *
3385 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3386 * 03 AUTO CTS output 1=enabled
3387 * 02 RI Ring Indicator input
3388 * 01 DSR input
3389 * 00 DTR output (1=inactive)
3390 *
3391 * 0000 0001
3392 */
3393// write_reg(info, PVR, PVR_DTR);
d12341f9 3394
1da177e4
LT
3395 /* IPC Interrupt Port Configuration
3396 *
3397 * 07 VIS 1=Masked interrupts visible
3398 * 06..05 Reserved, 0
3399 * 04..03 SLA Slave address, 00 ignored
3400 * 02 CASM Cascading Mode, 1=daisy chain
3401 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3402 *
3403 * 0000 0101
d12341f9 3404 */
1da177e4
LT
3405 write_reg(info, IPC, 0x05);
3406}
3407
cdaad343 3408static void async_mode(MGSLPC_INFO *info)
1da177e4
LT
3409{
3410 unsigned char val;
3411
d12341f9 3412 /* disable all interrupts */
1da177e4
LT
3413 irq_disable(info, CHA, 0xffff);
3414 irq_disable(info, CHB, 0xffff);
3415 port_irq_disable(info, 0xff);
d12341f9 3416
1da177e4
LT
3417 /* MODE
3418 *
3419 * 07 Reserved, 0
3420 * 06 FRTS RTS State, 0=active
3421 * 05 FCTS Flow Control on CTS
3422 * 04 FLON Flow Control Enable
3423 * 03 RAC Receiver Active, 0 = inactive
3424 * 02 RTS 0=Auto RTS, 1=manual RTS
3425 * 01 TRS Timer Resolution, 1=512
3426 * 00 TLP Test Loop, 0 = no loop
3427 *
3428 * 0000 0110
d12341f9 3429 */
1da177e4
LT
3430 val = 0x06;
3431 if (info->params.loopback)
3432 val |= BIT0;
d12341f9
JG
3433
3434 /* preserve RTS state */
1da177e4
LT
3435 if (!(info->serial_signals & SerialSignal_RTS))
3436 val |= BIT6;
3437 write_reg(info, CHA + MODE, val);
d12341f9 3438
1da177e4
LT
3439 /* CCR0
3440 *
3441 * 07 PU Power Up, 1=active, 0=power down
3442 * 06 MCE Master Clock Enable, 1=enabled
3443 * 05 Reserved, 0
3444 * 04..02 SC[2..0] Encoding, 000=NRZ
3445 * 01..00 SM[1..0] Serial Mode, 11=Async
3446 *
3447 * 1000 0011
d12341f9 3448 */
1da177e4 3449 write_reg(info, CHA + CCR0, 0x83);
d12341f9 3450
1da177e4
LT
3451 /* CCR1
3452 *
3453 * 07..05 Reserved, 0
3454 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3455 * 03 BCR Bit Clock Rate, 1=16x
3456 * 02..00 CM[2..0] Clock Mode, 111=BRG
3457 *
3458 * 0001 1111
d12341f9 3459 */
1da177e4 3460 write_reg(info, CHA + CCR1, 0x1f);
d12341f9 3461
1da177e4
LT
3462 /* CCR2 (channel A)
3463 *
3464 * 07..06 BGR[9..8] Baud rate bits 9..8
3465 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3466 * 04 SSEL Clock source select, 1=submode b
3467 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3468 * 02 RWX Read/Write Exchange 0=disabled
3469 * 01 Reserved, 0
3470 * 00 DIV, data inversion 0=disabled, 1=enabled
3471 *
3472 * 0001 0000
d12341f9 3473 */
1da177e4 3474 write_reg(info, CHA + CCR2, 0x10);
d12341f9 3475
1da177e4
LT
3476 /* CCR3
3477 *
3478 * 07..01 Reserved, 0
3479 * 00 PSD DPLL Phase Shift Disable
3480 *
3481 * 0000 0000
d12341f9 3482 */
1da177e4 3483 write_reg(info, CHA + CCR3, 0);
d12341f9 3484
1da177e4
LT
3485 /* CCR4
3486 *
3487 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3488 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3489 * 05 TST1 Test Pin, 0=normal operation
3490 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3491 * 03..00 Reserved, must be 0
3492 *
3493 * 0101 0000
d12341f9 3494 */
1da177e4
LT
3495 write_reg(info, CHA + CCR4, 0x50);
3496 mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
d12341f9 3497
1da177e4
LT
3498 /* DAFO Data Format
3499 *
3500 * 07 Reserved, 0
3501 * 06 XBRK transmit break, 0=normal operation
3502 * 05 Stop bits (0=1, 1=2)
3503 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3504 * 02 PAREN Parity Enable
3505 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3506 *
d12341f9 3507 */
1da177e4
LT
3508 val = 0x00;
3509 if (info->params.data_bits != 8)
3510 val |= BIT0; /* 7 bits */
3511 if (info->params.stop_bits != 1)
3512 val |= BIT5;
3513 if (info->params.parity != ASYNC_PARITY_NONE)
3514 {
3515 val |= BIT2; /* Parity enable */
3516 if (info->params.parity == ASYNC_PARITY_ODD)
3517 val |= BIT3;
3518 else
3519 val |= BIT4;
3520 }
3521 write_reg(info, CHA + DAFO, val);
d12341f9 3522
1da177e4
LT
3523 /* RFC Rx FIFO Control
3524 *
3525 * 07 Reserved, 0
3526 * 06 DPS, 1=parity bit not stored in data byte
3527 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3528 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3529 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3530 * 01 Reserved, 0
3531 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3532 *
3533 * 0101 1100
d12341f9 3534 */
1da177e4 3535 write_reg(info, CHA + RFC, 0x5c);
d12341f9 3536
1da177e4
LT
3537 /* RLCR Receive length check register
3538 *
3539 * Max frame length = (RL + 1) * 32
d12341f9 3540 */
1da177e4 3541 write_reg(info, CHA + RLCR, 0);
d12341f9 3542
1da177e4
LT
3543 /* XBCH Transmit Byte Count High
3544 *
3545 * 07 DMA mode, 0 = interrupt driven
3546 * 06 NRM, 0=ABM (ignored)
3547 * 05 CAS Carrier Auto Start
3548 * 04 XC Transmit Continuously (ignored)
3549 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3550 *
3551 * 0000 0000
d12341f9 3552 */
1da177e4
LT
3553 val = 0x00;
3554 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3555 val |= BIT5;
3556 write_reg(info, CHA + XBCH, val);
3557 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3558 irq_enable(info, CHA, IRQ_CTS);
d12341f9
JG
3559
3560 /* MODE:03 RAC Receiver Active, 1=active */
1da177e4
LT
3561 set_reg_bits(info, CHA + MODE, BIT3);
3562 enable_auxclk(info);
3563 if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
3564 irq_enable(info, CHB, IRQ_CTS);
d12341f9 3565 /* PVR[3] 1=AUTO CTS active */
1da177e4
LT
3566 set_reg_bits(info, CHA + PVR, BIT3);
3567 } else
3568 clear_reg_bits(info, CHA + PVR, BIT3);
3569 irq_enable(info, CHA,
3570 IRQ_RXEOM + IRQ_RXFIFO + IRQ_BREAK_ON + IRQ_RXTIME +
3571 IRQ_ALLSENT + IRQ_TXFIFO);
3572 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3573 wait_command_complete(info, CHA);
3574 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3575}
3576
3577/* Set the HDLC idle mode for the transmitter.
3578 */
cdaad343 3579static void tx_set_idle(MGSLPC_INFO *info)
1da177e4 3580{
d12341f9 3581 /* Note: ESCC2 only supports flags and one idle modes */
1da177e4
LT
3582 if (info->idle_mode == HDLC_TXIDLE_FLAGS)
3583 set_reg_bits(info, CHA + CCR1, BIT3);
3584 else
3585 clear_reg_bits(info, CHA + CCR1, BIT3);
3586}
3587
3588/* get state of the V24 status (input) signals.
3589 */
cdaad343 3590static void get_signals(MGSLPC_INFO *info)
1da177e4
LT
3591{
3592 unsigned char status = 0;
d12341f9
JG
3593
3594 /* preserve DTR and RTS */
1da177e4
LT
3595 info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
3596
3597 if (read_reg(info, CHB + VSTR) & BIT7)
3598 info->serial_signals |= SerialSignal_DCD;
3599 if (read_reg(info, CHB + STAR) & BIT1)
3600 info->serial_signals |= SerialSignal_CTS;
3601
3602 status = read_reg(info, CHA + PVR);
3603 if (!(status & PVR_RI))
3604 info->serial_signals |= SerialSignal_RI;
3605 if (!(status & PVR_DSR))
3606 info->serial_signals |= SerialSignal_DSR;
3607}
3608
3609/* Set the state of DTR and RTS based on contents of
3610 * serial_signals member of device extension.
3611 */
cdaad343 3612static void set_signals(MGSLPC_INFO *info)
1da177e4
LT
3613{
3614 unsigned char val;
3615
3616 val = read_reg(info, CHA + MODE);
3617 if (info->params.mode == MGSL_MODE_ASYNC) {
3618 if (info->serial_signals & SerialSignal_RTS)
3619 val &= ~BIT6;
3620 else
3621 val |= BIT6;
3622 } else {
3623 if (info->serial_signals & SerialSignal_RTS)
3624 val |= BIT2;
3625 else
3626 val &= ~BIT2;
3627 }
3628 write_reg(info, CHA + MODE, val);
3629
3630 if (info->serial_signals & SerialSignal_DTR)
3631 clear_reg_bits(info, CHA + PVR, PVR_DTR);
3632 else
3633 set_reg_bits(info, CHA + PVR, PVR_DTR);
3634}
3635
cdaad343 3636static void rx_reset_buffers(MGSLPC_INFO *info)
1da177e4
LT
3637{
3638 RXBUF *buf;
3639 int i;
3640
3641 info->rx_put = 0;
3642 info->rx_get = 0;
3643 info->rx_frame_count = 0;
3644 for (i=0 ; i < info->rx_buf_count ; i++) {
3645 buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
3646 buf->status = buf->count = 0;
3647 }
3648}
3649
3650/* Attempt to return a received HDLC frame
3651 * Only frames received without errors are returned.
3652 *
0fab6de0 3653 * Returns true if frame returned, otherwise false
1da177e4 3654 */
eeb46134 3655static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty)
1da177e4
LT
3656{
3657 unsigned short status;
3658 RXBUF *buf;
3659 unsigned int framesize = 0;
3660 unsigned long flags;
0fab6de0 3661 bool return_frame = false;
d12341f9 3662
1da177e4 3663 if (info->rx_frame_count == 0)
0fab6de0 3664 return false;
1da177e4
LT
3665
3666 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));
3667
3668 status = buf->status;
3669
3670 /* 07 VFR 1=valid frame
3671 * 06 RDO 1=data overrun
3672 * 05 CRC 1=OK, 0=error
3673 * 04 RAB 1=frame aborted
3674 */
3675 if ((status & 0xf0) != 0xA0) {
3676 if (!(status & BIT7) || (status & BIT4))
3677 info->icount.rxabort++;
3678 else if (status & BIT6)
3679 info->icount.rxover++;
3680 else if (!(status & BIT5)) {
3681 info->icount.rxcrc++;
3682 if (info->params.crc_type & HDLC_CRC_RETURN_EX)
0fab6de0 3683 return_frame = true;
1da177e4
LT
3684 }
3685 framesize = 0;
af69c7f9 3686#if SYNCLINK_GENERIC_HDLC
1da177e4 3687 {
198191c4
KH
3688 info->netdev->stats.rx_errors++;
3689 info->netdev->stats.rx_frame_errors++;
1da177e4
LT
3690 }
3691#endif
3692 } else
0fab6de0 3693 return_frame = true;
1da177e4
LT
3694
3695 if (return_frame)
3696 framesize = buf->count;
3697
3698 if (debug_level >= DEBUG_LEVEL_BH)
3699 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
3700 __FILE__,__LINE__,info->device_name,status,framesize);
d12341f9 3701
1da177e4 3702 if (debug_level >= DEBUG_LEVEL_DATA)
d12341f9
JG
3703 trace_block(info, buf->data, framesize, 0);
3704
1da177e4
LT
3705 if (framesize) {
3706 if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
3707 framesize+1 > info->max_frame_size) ||
3708 framesize > info->max_frame_size)
3709 info->icount.rxlong++;
3710 else {
3711 if (status & BIT5)
3712 info->icount.rxok++;
3713
3714 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
3715 *(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
3716 ++framesize;
3717 }
3718
af69c7f9 3719#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
3720 if (info->netcount)
3721 hdlcdev_rx(info, buf->data, framesize);
3722 else
3723#endif
3724 ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
3725 }
3726 }
3727
3728 spin_lock_irqsave(&info->lock,flags);
3729 buf->status = buf->count = 0;
3730 info->rx_frame_count--;
3731 info->rx_get++;
3732 if (info->rx_get >= info->rx_buf_count)
3733 info->rx_get = 0;
3734 spin_unlock_irqrestore(&info->lock,flags);
3735
0fab6de0 3736 return true;
1da177e4
LT
3737}
3738
0fab6de0 3739static bool register_test(MGSLPC_INFO *info)
1da177e4 3740{
d12341f9 3741 static unsigned char patterns[] =
1da177e4 3742 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
fe971071 3743 static unsigned int count = ARRAY_SIZE(patterns);
1da177e4 3744 unsigned int i;
0fab6de0 3745 bool rc = true;
1da177e4
LT
3746 unsigned long flags;
3747
3748 spin_lock_irqsave(&info->lock,flags);
3749 reset_device(info);
3750
3751 for (i = 0; i < count; i++) {
3752 write_reg(info, XAD1, patterns[i]);
3753 write_reg(info, XAD2, patterns[(i + 1) % count]);
fe971071 3754 if ((read_reg(info, XAD1) != patterns[i]) ||
1da177e4 3755 (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
0fab6de0 3756 rc = false;
1da177e4
LT
3757 break;
3758 }
3759 }
3760
3761 spin_unlock_irqrestore(&info->lock,flags);
3762 return rc;
3763}
3764
0fab6de0 3765static bool irq_test(MGSLPC_INFO *info)
1da177e4
LT
3766{
3767 unsigned long end_time;
3768 unsigned long flags;
3769
3770 spin_lock_irqsave(&info->lock,flags);
3771 reset_device(info);
3772
0fab6de0 3773 info->testing_irq = true;
1da177e4
LT
3774 hdlc_mode(info);
3775
0fab6de0 3776 info->irq_occurred = false;
1da177e4
LT
3777
3778 /* init hdlc mode */
3779
3780 irq_enable(info, CHA, IRQ_TIMER);
3781 write_reg(info, CHA + TIMR, 0); /* 512 cycles */
3782 issue_command(info, CHA, CMD_START_TIMER);
3783
3784 spin_unlock_irqrestore(&info->lock,flags);
3785
3786 end_time=100;
3787 while(end_time-- && !info->irq_occurred) {
3788 msleep_interruptible(10);
3789 }
d12341f9 3790
0fab6de0 3791 info->testing_irq = false;
1da177e4
LT
3792
3793 spin_lock_irqsave(&info->lock,flags);
3794 reset_device(info);
3795 spin_unlock_irqrestore(&info->lock,flags);
d12341f9 3796
0fab6de0 3797 return info->irq_occurred;
1da177e4
LT
3798}
3799
cdaad343 3800static int adapter_test(MGSLPC_INFO *info)
1da177e4
LT
3801{
3802 if (!register_test(info)) {
3803 info->init_error = DiagStatus_AddressFailure;
3804 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
3805 __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
3806 return -ENODEV;
3807 }
3808
3809 if (!irq_test(info)) {
3810 info->init_error = DiagStatus_IrqFailure;
3811 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
3812 __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
3813 return -ENODEV;
3814 }
3815
3816 if (debug_level >= DEBUG_LEVEL_INFO)
3817 printk("%s(%d):device %s passed diagnostics\n",
3818 __FILE__,__LINE__,info->device_name);
3819 return 0;
3820}
3821
cdaad343 3822static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
1da177e4
LT
3823{
3824 int i;
3825 int linecount;
3826 if (xmit)
3827 printk("%s tx data:\n",info->device_name);
3828 else
3829 printk("%s rx data:\n",info->device_name);
d12341f9 3830
1da177e4
LT
3831 while(count) {
3832 if (count > 16)
3833 linecount = 16;
3834 else
3835 linecount = count;
d12341f9 3836
1da177e4
LT
3837 for(i=0;i<linecount;i++)
3838 printk("%02X ",(unsigned char)data[i]);
3839 for(;i<17;i++)
3840 printk(" ");
3841 for(i=0;i<linecount;i++) {
3842 if (data[i]>=040 && data[i]<=0176)
3843 printk("%c",data[i]);
3844 else
3845 printk(".");
3846 }
3847 printk("\n");
d12341f9 3848
1da177e4
LT
3849 data += linecount;
3850 count -= linecount;
3851 }
3852}
3853
3854/* HDLC frame time out
3855 * update stats and do tx completion processing
3856 */
cdaad343 3857static void tx_timeout(unsigned long context)
1da177e4
LT
3858{
3859 MGSLPC_INFO *info = (MGSLPC_INFO*)context;
3860 unsigned long flags;
d12341f9 3861
1da177e4
LT
3862 if ( debug_level >= DEBUG_LEVEL_INFO )
3863 printk( "%s(%d):tx_timeout(%s)\n",
3864 __FILE__,__LINE__,info->device_name);
3865 if(info->tx_active &&
3866 info->params.mode == MGSL_MODE_HDLC) {
3867 info->icount.txtimeout++;
3868 }
3869 spin_lock_irqsave(&info->lock,flags);
0fab6de0 3870 info->tx_active = false;
1da177e4
LT
3871 info->tx_count = info->tx_put = info->tx_get = 0;
3872
3873 spin_unlock_irqrestore(&info->lock,flags);
d12341f9 3874
af69c7f9 3875#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
3876 if (info->netcount)
3877 hdlcdev_tx_done(info);
3878 else
3879#endif
eeb46134
AC
3880 {
3881 struct tty_struct *tty = tty_port_tty_get(&info->port);
3882 bh_transmit(info, tty);
3883 tty_kref_put(tty);
3884 }
1da177e4
LT
3885}
3886
af69c7f9 3887#if SYNCLINK_GENERIC_HDLC
1da177e4
LT
3888
3889/**
3890 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
3891 * set encoding and frame check sequence (FCS) options
3892 *
3893 * dev pointer to network device structure
3894 * encoding serial encoding setting
3895 * parity FCS setting
3896 *
3897 * returns 0 if success, otherwise error code
3898 */
3899static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
3900 unsigned short parity)
3901{
3902 MGSLPC_INFO *info = dev_to_port(dev);
eeb46134 3903 struct tty_struct *tty;
1da177e4
LT
3904 unsigned char new_encoding;
3905 unsigned short new_crctype;
3906
3907 /* return error if TTY interface open */
eeb46134 3908 if (info->port.count)
1da177e4
LT
3909 return -EBUSY;
3910
3911 switch (encoding)
3912 {
3913 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
3914 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
3915 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
3916 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
3917 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
3918 default: return -EINVAL;
3919 }
3920
3921 switch (parity)
3922 {
3923 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
3924 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
3925 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
3926 default: return -EINVAL;
3927 }
3928
3929 info->params.encoding = new_encoding;
53b3531b 3930 info->params.crc_type = new_crctype;
1da177e4
LT
3931
3932 /* if network interface up, reprogram hardware */
eeb46134
AC
3933 if (info->netcount) {
3934 tty = tty_port_tty_get(&info->port);
3935 mgslpc_program_hw(info, tty);
3936 tty_kref_put(tty);
3937 }
1da177e4
LT
3938
3939 return 0;
3940}
3941
3942/**
3943 * called by generic HDLC layer to send frame
3944 *
3945 * skb socket buffer containing HDLC frame
3946 * dev pointer to network device structure
1da177e4 3947 */
4c5d502d
SH
3948static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
3949 struct net_device *dev)
1da177e4
LT
3950{
3951 MGSLPC_INFO *info = dev_to_port(dev);
1da177e4
LT
3952 unsigned long flags;
3953
3954 if (debug_level >= DEBUG_LEVEL_INFO)
3955 printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);
3956
3957 /* stop sending until this frame completes */
3958 netif_stop_queue(dev);
3959
3960 /* copy data to device buffers */
d626f62b 3961 skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
1da177e4
LT
3962 info->tx_get = 0;
3963 info->tx_put = info->tx_count = skb->len;
3964
3965 /* update network statistics */
198191c4
KH
3966 dev->stats.tx_packets++;
3967 dev->stats.tx_bytes += skb->len;
1da177e4
LT
3968
3969 /* done with socket buffer, so free it */
3970 dev_kfree_skb(skb);
3971
3972 /* save start time for transmit timeout detection */
3973 dev->trans_start = jiffies;
3974
3975 /* start hardware transmitter if necessary */
3976 spin_lock_irqsave(&info->lock,flags);
eeb46134
AC
3977 if (!info->tx_active) {
3978 struct tty_struct *tty = tty_port_tty_get(&info->port);
3979 tx_start(info, tty);
3980 tty_kref_put(tty);
3981 }
1da177e4
LT
3982 spin_unlock_irqrestore(&info->lock,flags);
3983
4c5d502d 3984 return NETDEV_TX_OK;
1da177e4
LT
3985}
3986
3987/**
3988 * called by network layer when interface enabled
3989 * claim resources and initialize hardware
3990 *
3991 * dev pointer to network device structure
3992 *
3993 * returns 0 if success, otherwise error code
3994 */
3995static int hdlcdev_open(struct net_device *dev)
3996{
3997 MGSLPC_INFO *info = dev_to_port(dev);
eeb46134 3998 struct tty_struct *tty;
1da177e4
LT
3999 int rc;
4000 unsigned long flags;
4001
4002 if (debug_level >= DEBUG_LEVEL_INFO)
4003 printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);
4004
4005 /* generic HDLC layer open processing */
4006 if ((rc = hdlc_open(dev)))
4007 return rc;
4008
4009 /* arbitrate between network and tty opens */
4010 spin_lock_irqsave(&info->netlock, flags);
eeb46134 4011 if (info->port.count != 0 || info->netcount != 0) {
1da177e4
LT
4012 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
4013 spin_unlock_irqrestore(&info->netlock, flags);
4014 return -EBUSY;
4015 }
4016 info->netcount=1;
4017 spin_unlock_irqrestore(&info->netlock, flags);
4018
eeb46134 4019 tty = tty_port_tty_get(&info->port);
1da177e4 4020 /* claim resources and init adapter */
eeb46134
AC
4021 if ((rc = startup(info, tty)) != 0) {
4022 tty_kref_put(tty);
1da177e4
LT
4023 spin_lock_irqsave(&info->netlock, flags);
4024 info->netcount=0;
4025 spin_unlock_irqrestore(&info->netlock, flags);
4026 return rc;
4027 }
1da177e4
LT
4028 /* assert DTR and RTS, apply hardware settings */
4029 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
eeb46134
AC
4030 mgslpc_program_hw(info, tty);
4031 tty_kref_put(tty);
1da177e4
LT
4032
4033 /* enable network layer transmit */
4034 dev->trans_start = jiffies;
4035 netif_start_queue(dev);
4036
4037 /* inform generic HDLC layer of current DCD status */
4038 spin_lock_irqsave(&info->lock, flags);
4039 get_signals(info);
4040 spin_unlock_irqrestore(&info->lock, flags);
fbeff3c1
KH
4041 if (info->serial_signals & SerialSignal_DCD)
4042 netif_carrier_on(dev);
4043 else
4044 netif_carrier_off(dev);
1da177e4
LT
4045 return 0;
4046}
4047
4048/**
4049 * called by network layer when interface is disabled
4050 * shutdown hardware and release resources
4051 *
4052 * dev pointer to network device structure
4053 *
4054 * returns 0 if success, otherwise error code
4055 */
4056static int hdlcdev_close(struct net_device *dev)
4057{
4058 MGSLPC_INFO *info = dev_to_port(dev);
eeb46134 4059 struct tty_struct *tty = tty_port_tty_get(&info->port);
1da177e4
LT
4060 unsigned long flags;
4061
4062 if (debug_level >= DEBUG_LEVEL_INFO)
4063 printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);
4064
4065 netif_stop_queue(dev);
4066
4067 /* shutdown adapter and release resources */
eeb46134
AC
4068 shutdown(info, tty);
4069 tty_kref_put(tty);
1da177e4
LT
4070 hdlc_close(dev);
4071
4072 spin_lock_irqsave(&info->netlock, flags);
4073 info->netcount=0;
4074 spin_unlock_irqrestore(&info->netlock, flags);
4075
4076 return 0;
4077}
4078
4079/**
4080 * called by network layer to process IOCTL call to network device
4081 *
4082 * dev pointer to network device structure
4083 * ifr pointer to network interface request structure
4084 * cmd IOCTL command code
4085 *
4086 * returns 0 if success, otherwise error code
4087 */
4088static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4089{
4090 const size_t size = sizeof(sync_serial_settings);
4091 sync_serial_settings new_line;
4092 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
4093 MGSLPC_INFO *info = dev_to_port(dev);
4094 unsigned int flags;
4095
4096 if (debug_level >= DEBUG_LEVEL_INFO)
4097 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);
4098
4099 /* return error if TTY interface open */
eeb46134 4100 if (info->port.count)
1da177e4
LT
4101 return -EBUSY;
4102
4103 if (cmd != SIOCWANDEV)
4104 return hdlc_ioctl(dev, ifr, cmd);
4105
4106 switch(ifr->ifr_settings.type) {
4107 case IF_GET_IFACE: /* return current sync_serial_settings */
4108
4109 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
4110 if (ifr->ifr_settings.size < size) {
4111 ifr->ifr_settings.size = size; /* data size wanted */
4112 return -ENOBUFS;
4113 }
4114
4115 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4116 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4117 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4118 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4119
4120 switch (flags){
4121 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
4122 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
4123 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
4124 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
4125 default: new_line.clock_type = CLOCK_DEFAULT;
4126 }
4127
4128 new_line.clock_rate = info->params.clock_speed;
4129 new_line.loopback = info->params.loopback ? 1:0;
4130
4131 if (copy_to_user(line, &new_line, size))
4132 return -EFAULT;
4133 return 0;
4134
4135 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
4136
4137 if(!capable(CAP_NET_ADMIN))
4138 return -EPERM;
4139 if (copy_from_user(&new_line, line, size))
4140 return -EFAULT;
4141
4142 switch (new_line.clock_type)
4143 {
4144 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
4145 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
4146 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
4147 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
4148 case CLOCK_DEFAULT: flags = info->params.flags &
4149 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4150 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4151 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4152 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
4153 default: return -EINVAL;
4154 }
4155
4156 if (new_line.loopback != 0 && new_line.loopback != 1)
4157 return -EINVAL;
4158
4159 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4160 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4161 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4162 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4163 info->params.flags |= flags;
4164
4165 info->params.loopback = new_line.loopback;
4166
4167 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
4168 info->params.clock_speed = new_line.clock_rate;
4169 else
4170 info->params.clock_speed = 0;
4171
4172 /* if network interface up, reprogram hardware */
eeb46134
AC
4173 if (info->netcount) {
4174 struct tty_struct *tty = tty_port_tty_get(&info->port);
4175 mgslpc_program_hw(info, tty);
4176 tty_kref_put(tty);
4177 }
1da177e4
LT
4178 return 0;
4179
4180 default:
4181 return hdlc_ioctl(dev, ifr, cmd);
4182 }
4183}
4184
4185/**
4186 * called by network layer when transmit timeout is detected
4187 *
4188 * dev pointer to network device structure
4189 */
4190static void hdlcdev_tx_timeout(struct net_device *dev)
4191{
4192 MGSLPC_INFO *info = dev_to_port(dev);
1da177e4
LT
4193 unsigned long flags;
4194
4195 if (debug_level >= DEBUG_LEVEL_INFO)
4196 printk("hdlcdev_tx_timeout(%s)\n",dev->name);
4197
198191c4
KH
4198 dev->stats.tx_errors++;
4199 dev->stats.tx_aborted_errors++;
1da177e4
LT
4200
4201 spin_lock_irqsave(&info->lock,flags);
4202 tx_stop(info);
4203 spin_unlock_irqrestore(&info->lock,flags);
4204
4205 netif_wake_queue(dev);
4206}
4207
4208/**
4209 * called by device driver when transmit completes
4210 * reenable network layer transmit if stopped
4211 *
4212 * info pointer to device instance information
4213 */
4214static void hdlcdev_tx_done(MGSLPC_INFO *info)
4215{
4216 if (netif_queue_stopped(info->netdev))
4217 netif_wake_queue(info->netdev);
4218}
4219
4220/**
4221 * called by device driver when frame received
4222 * pass frame to network layer
4223 *
4224 * info pointer to device instance information
4225 * buf pointer to buffer contianing frame data
4226 * size count of data bytes in buf
4227 */
4228static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size)
4229{
4230 struct sk_buff *skb = dev_alloc_skb(size);
4231 struct net_device *dev = info->netdev;
1da177e4
LT
4232
4233 if (debug_level >= DEBUG_LEVEL_INFO)
4234 printk("hdlcdev_rx(%s)\n",dev->name);
4235
4236 if (skb == NULL) {
4237 printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n", dev->name);
198191c4 4238 dev->stats.rx_dropped++;
1da177e4
LT
4239 return;
4240 }
4241
198191c4 4242 memcpy(skb_put(skb, size), buf, size);
1da177e4 4243
198191c4 4244 skb->protocol = hdlc_type_trans(skb, dev);
1da177e4 4245
198191c4
KH
4246 dev->stats.rx_packets++;
4247 dev->stats.rx_bytes += size;
1da177e4
LT
4248
4249 netif_rx(skb);
1da177e4
LT
4250}
4251
991990a1
KH
4252static const struct net_device_ops hdlcdev_ops = {
4253 .ndo_open = hdlcdev_open,
4254 .ndo_stop = hdlcdev_close,
4255 .ndo_change_mtu = hdlc_change_mtu,
4256 .ndo_start_xmit = hdlc_start_xmit,
4257 .ndo_do_ioctl = hdlcdev_ioctl,
4258 .ndo_tx_timeout = hdlcdev_tx_timeout,
4259};
4260
1da177e4
LT
4261/**
4262 * called by device driver when adding device instance
4263 * do generic HDLC initialization
4264 *
4265 * info pointer to device instance information
4266 *
4267 * returns 0 if success, otherwise error code
4268 */
4269static int hdlcdev_init(MGSLPC_INFO *info)
4270{
4271 int rc;
4272 struct net_device *dev;
4273 hdlc_device *hdlc;
4274
4275 /* allocate and initialize network and HDLC layer objects */
4276
4277 if (!(dev = alloc_hdlcdev(info))) {
4278 printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
4279 return -ENOMEM;
4280 }
4281
4282 /* for network layer reporting purposes only */
4283 dev->base_addr = info->io_base;
4284 dev->irq = info->irq_level;
4285
4286 /* network layer callbacks and settings */
991990a1
KH
4287 dev->netdev_ops = &hdlcdev_ops;
4288 dev->watchdog_timeo = 10 * HZ;
1da177e4
LT
4289 dev->tx_queue_len = 50;
4290
4291 /* generic HDLC layer callbacks and settings */
4292 hdlc = dev_to_hdlc(dev);
4293 hdlc->attach = hdlcdev_attach;
4294 hdlc->xmit = hdlcdev_xmit;
4295
4296 /* register objects with HDLC layer */
4297 if ((rc = register_hdlc_device(dev))) {
4298 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
4299 free_netdev(dev);
4300 return rc;
4301 }
4302
4303 info->netdev = dev;
4304 return 0;
4305}
4306
4307/**
4308 * called by device driver when removing device instance
4309 * do generic HDLC cleanup
4310 *
4311 * info pointer to device instance information
4312 */
4313static void hdlcdev_exit(MGSLPC_INFO *info)
4314{
4315 unregister_hdlc_device(info->netdev);
4316 free_netdev(info->netdev);
4317 info->netdev = NULL;
4318}
4319
4320#endif /* CONFIG_HDLC */
4321
This page took 0.815599 seconds and 5 git commands to generate.